composer.lock 232 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "737ab95b51e9dc94546cdcb8d490a56e",
  8. "packages": [
  9. {
  10. "name": "2amigos/yii2-file-upload-widget",
  11. "version": "1.0.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/2amigos/yii2-file-upload-widget.git",
  15. "reference": "2da8054d5eb598820b9e070fcfeaa5b2b2c0cd46"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/2amigos/yii2-file-upload-widget/zipball/2da8054d5eb598820b9e070fcfeaa5b2b2c0cd46",
  20. "reference": "2da8054d5eb598820b9e070fcfeaa5b2b2c0cd46",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "2amigos/yii2-gallery-widget": "^1.0",
  25. "bower-asset/blueimp-file-upload": "^9.9",
  26. "yiisoft/yii2": "^2.0.0",
  27. "yiisoft/yii2-bootstrap": "^2.0.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "~4.0"
  31. },
  32. "type": "yii2-extension",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "dosamigos\\fileupload\\": "src"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "BSD-3-Clause"
  46. ],
  47. "authors": [
  48. {
  49. "name": "2amigOS! Consulting Group",
  50. "email": "hola@2amigos.us",
  51. "homepage": "http://2amigos.us",
  52. "role": "Developer"
  53. }
  54. ],
  55. "description": "Blueimp file upload widget for the Yii framework",
  56. "homepage": "https://github.com/2amigos/yii2-file-upload-widget",
  57. "keywords": [
  58. "2amigos",
  59. "upload",
  60. "widget",
  61. "yii",
  62. "yii 2",
  63. "yii2"
  64. ],
  65. "abandoned": true,
  66. "time": "2018-09-06T19:15:49+00:00"
  67. },
  68. {
  69. "name": "2amigos/yii2-gallery-widget",
  70. "version": "1.1.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/2amigos/yii2-gallery-widget.git",
  74. "reference": "0ce7de28d05a4662da7698773993b5a0245a6136"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/2amigos/yii2-gallery-widget/zipball/0ce7de28d05a4662da7698773993b5a0245a6136",
  79. "reference": "0ce7de28d05a4662da7698773993b5a0245a6136",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "bower-asset/blueimp-gallery": "~2.17.0",
  84. "yiisoft/yii2": "~2.0.0"
  85. },
  86. "require-dev": {
  87. "phpunit/phpunit": "~4.0",
  88. "scrutinizer/ocular": "~1.1"
  89. },
  90. "type": "yii2-extension",
  91. "extra": {
  92. "asset-installer-paths": {
  93. "npm-asset-library": "vendor/npm",
  94. "bower-asset-library": "vendor/bower"
  95. },
  96. "branch-alias": {
  97. "dev-master": "1.0-dev"
  98. }
  99. },
  100. "autoload": {
  101. "psr-4": {
  102. "dosamigos\\gallery\\": "src"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "BSD-3-Clause"
  108. ],
  109. "authors": [
  110. {
  111. "name": "2amigOS! Consulting Group",
  112. "email": "hola@2amigos.us",
  113. "homepage": "http://2amigos.us",
  114. "role": "Developer"
  115. }
  116. ],
  117. "description": "Blueimp gallery widget for the Yii framework",
  118. "homepage": "https://github.com/2amigos/yii2-gallery-widget",
  119. "keywords": [
  120. "2amigos",
  121. "gallery",
  122. "widget",
  123. "yii",
  124. "yii 2",
  125. "yii2"
  126. ],
  127. "abandoned": true,
  128. "time": "2017-09-09T16:01:44+00:00"
  129. },
  130. {
  131. "name": "alexandernst/yii2-device-detect",
  132. "version": "0.0.12",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/alexandernst/yii2-device-detect.git",
  136. "reference": "ae9557fb9b04abf8ad9ed8cf7e1b5daa7bdf10ec"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/alexandernst/yii2-device-detect/zipball/ae9557fb9b04abf8ad9ed8cf7e1b5daa7bdf10ec",
  141. "reference": "ae9557fb9b04abf8ad9ed8cf7e1b5daa7bdf10ec",
  142. "shasum": ""
  143. },
  144. "require": {
  145. "mobiledetect/mobiledetectlib": "~2.8",
  146. "yiisoft/yii2": "*"
  147. },
  148. "type": "yii2-extension",
  149. "autoload": {
  150. "psr-4": {
  151. "alexandernst\\devicedetect\\": ""
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "GNU General Public License v3"
  157. ],
  158. "authors": [
  159. {
  160. "name": "Alexander Nestorov",
  161. "email": "alexandernst@gmail.com"
  162. }
  163. ],
  164. "description": "Yii2 extension for Mobile-Detect library",
  165. "keywords": [
  166. "desktop",
  167. "detect",
  168. "device",
  169. "extension",
  170. "mobile",
  171. "phone",
  172. "tablet",
  173. "widget",
  174. "yii2"
  175. ],
  176. "time": "2017-08-07T16:37:25+00:00"
  177. },
  178. {
  179. "name": "almasaeed2010/adminlte",
  180. "version": "v3.2.0",
  181. "source": {
  182. "type": "git",
  183. "url": "https://github.com/ColorlibHQ/AdminLTE.git",
  184. "reference": "bd4d9c72931f1dd28601b6bfb387554a381ad540"
  185. },
  186. "dist": {
  187. "type": "zip",
  188. "url": "https://api.github.com/repos/ColorlibHQ/AdminLTE/zipball/bd4d9c72931f1dd28601b6bfb387554a381ad540",
  189. "reference": "bd4d9c72931f1dd28601b6bfb387554a381ad540",
  190. "shasum": ""
  191. },
  192. "type": "library",
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Colorlib"
  200. }
  201. ],
  202. "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 4",
  203. "homepage": "https://adminlte.io/",
  204. "keywords": [
  205. "JS",
  206. "admin",
  207. "back-end",
  208. "css",
  209. "less",
  210. "responsive",
  211. "template",
  212. "theme",
  213. "web"
  214. ],
  215. "time": "2022-02-07T20:33:09+00:00"
  216. },
  217. {
  218. "name": "bower-asset/blueimp-canvas-to-blob",
  219. "version": "v3.29.0",
  220. "source": {
  221. "type": "git",
  222. "url": "git@github.com:blueimp/JavaScript-Canvas-to-Blob.git",
  223. "reference": "5b0fb1d0be3dfe300ee67a0c115d15a8d289c860"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/blueimp/JavaScript-Canvas-to-Blob/zipball/5b0fb1d0be3dfe300ee67a0c115d15a8d289c860",
  228. "reference": "5b0fb1d0be3dfe300ee67a0c115d15a8d289c860"
  229. },
  230. "type": "bower-asset"
  231. },
  232. {
  233. "name": "bower-asset/blueimp-file-upload",
  234. "version": "v9.34.0",
  235. "source": {
  236. "type": "git",
  237. "url": "git@github.com:blueimp/jQuery-File-Upload.git",
  238. "reference": "bb52d3493d725175fcf5554da034a317aaaea0e2"
  239. },
  240. "dist": {
  241. "type": "zip",
  242. "url": "https://api.github.com/repos/blueimp/jQuery-File-Upload/zipball/bb52d3493d725175fcf5554da034a317aaaea0e2",
  243. "reference": "bb52d3493d725175fcf5554da034a317aaaea0e2"
  244. },
  245. "require": {
  246. "bower-asset/blueimp-canvas-to-blob": ">=2.1.1",
  247. "bower-asset/blueimp-load-image": ">=1.13.0",
  248. "bower-asset/blueimp-tmpl": ">=2.5.4",
  249. "bower-asset/jquery": ">=1.6"
  250. },
  251. "type": "bower-asset",
  252. "license": [
  253. "MIT"
  254. ]
  255. },
  256. {
  257. "name": "bower-asset/blueimp-gallery",
  258. "version": "v2.17.0",
  259. "source": {
  260. "type": "git",
  261. "url": "git@github.com:blueimp/Gallery.git",
  262. "reference": "8336bb5934cb623608808601129db3fbf9201a09"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/blueimp/Gallery/zipball/8336bb5934cb623608808601129db3fbf9201a09",
  267. "reference": "8336bb5934cb623608808601129db3fbf9201a09"
  268. },
  269. "type": "bower-asset"
  270. },
  271. {
  272. "name": "bower-asset/blueimp-load-image",
  273. "version": "v5.16.0",
  274. "source": {
  275. "type": "git",
  276. "url": "git@github.com:blueimp/JavaScript-Load-Image.git",
  277. "reference": "5d34ed4ce3472ecb22d920c66cc4d7604526ff24"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/blueimp/JavaScript-Load-Image/zipball/5d34ed4ce3472ecb22d920c66cc4d7604526ff24",
  282. "reference": "5d34ed4ce3472ecb22d920c66cc4d7604526ff24"
  283. },
  284. "type": "bower-asset"
  285. },
  286. {
  287. "name": "bower-asset/blueimp-tmpl",
  288. "version": "v3.20.0",
  289. "source": {
  290. "type": "git",
  291. "url": "git@github.com:blueimp/JavaScript-Templates.git",
  292. "reference": "2272bed00e4e0f536ff6958e58def31882207d98"
  293. },
  294. "dist": {
  295. "type": "zip",
  296. "url": "https://api.github.com/repos/blueimp/JavaScript-Templates/zipball/2272bed00e4e0f536ff6958e58def31882207d98",
  297. "reference": "2272bed00e4e0f536ff6958e58def31882207d98"
  298. },
  299. "type": "bower-asset"
  300. },
  301. {
  302. "name": "bower-asset/bootstrap",
  303. "version": "v3.4.1",
  304. "source": {
  305. "type": "git",
  306. "url": "git@github.com:twbs/bootstrap.git",
  307. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  312. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  313. },
  314. "require": {
  315. "bower-asset/jquery": ">=1.9.1,<4.0"
  316. },
  317. "type": "bower-asset",
  318. "license": [
  319. "MIT"
  320. ]
  321. },
  322. {
  323. "name": "bower-asset/inputmask",
  324. "version": "3.3.11",
  325. "source": {
  326. "type": "git",
  327. "url": "git@github.com:RobinHerbots/Inputmask.git",
  328. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  333. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  334. },
  335. "require": {
  336. "bower-asset/jquery": ">=1.7"
  337. },
  338. "type": "bower-asset",
  339. "license": [
  340. "http://opensource.org/licenses/mit-license.php"
  341. ]
  342. },
  343. {
  344. "name": "bower-asset/jquery",
  345. "version": "3.6.4",
  346. "source": {
  347. "type": "git",
  348. "url": "git@github.com:jquery/jquery-dist.git",
  349. "reference": "91ef2d8836342875f2519b5815197ea0f23613cf"
  350. },
  351. "dist": {
  352. "type": "zip",
  353. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/91ef2d8836342875f2519b5815197ea0f23613cf",
  354. "reference": "91ef2d8836342875f2519b5815197ea0f23613cf"
  355. },
  356. "type": "bower-asset",
  357. "license": [
  358. "MIT"
  359. ]
  360. },
  361. {
  362. "name": "bower-asset/jquery-ui",
  363. "version": "1.12.1",
  364. "source": {
  365. "type": "git",
  366. "url": "git@github.com:components/jqueryui.git",
  367. "reference": "44ecf3794cc56b65954cc19737234a3119d036cc"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/components/jqueryui/zipball/44ecf3794cc56b65954cc19737234a3119d036cc",
  372. "reference": "44ecf3794cc56b65954cc19737234a3119d036cc"
  373. },
  374. "require": {
  375. "bower-asset/jquery": ">=1.6"
  376. },
  377. "type": "bower-asset",
  378. "license": [
  379. "MIT"
  380. ]
  381. },
  382. {
  383. "name": "bower-asset/punycode",
  384. "version": "v1.3.2",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/mathiasbynens/punycode.js.git",
  388. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/mathiasbynens/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  393. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  394. },
  395. "type": "bower-asset"
  396. },
  397. {
  398. "name": "bower-asset/yii2-pjax",
  399. "version": "2.0.8",
  400. "source": {
  401. "type": "git",
  402. "url": "git@github.com:yiisoft/jquery-pjax.git",
  403. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  404. },
  405. "dist": {
  406. "type": "zip",
  407. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/a9298d57da63d14a950f1b94366a864bc62264fb",
  408. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  409. },
  410. "require": {
  411. "bower-asset/jquery": ">=1.8"
  412. },
  413. "type": "bower-asset",
  414. "license": [
  415. "MIT"
  416. ]
  417. },
  418. {
  419. "name": "cebe/markdown",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/cebe/markdown.git",
  424. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  429. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "lib-pcre": "*",
  434. "php": ">=5.4.0"
  435. },
  436. "require-dev": {
  437. "cebe/indent": "*",
  438. "facebook/xhprof": "*@dev",
  439. "phpunit/phpunit": "4.1.*"
  440. },
  441. "bin": [
  442. "bin/markdown"
  443. ],
  444. "type": "library",
  445. "extra": {
  446. "branch-alias": {
  447. "dev-master": "1.2.x-dev"
  448. }
  449. },
  450. "autoload": {
  451. "psr-4": {
  452. "cebe\\markdown\\": ""
  453. }
  454. },
  455. "notification-url": "https://packagist.org/downloads/",
  456. "license": [
  457. "MIT"
  458. ],
  459. "authors": [
  460. {
  461. "name": "Carsten Brandt",
  462. "email": "mail@cebe.cc",
  463. "homepage": "http://cebe.cc/",
  464. "role": "Creator"
  465. }
  466. ],
  467. "description": "A super fast, highly extensible markdown parser for PHP",
  468. "homepage": "https://github.com/cebe/markdown#readme",
  469. "keywords": [
  470. "extensible",
  471. "fast",
  472. "gfm",
  473. "markdown",
  474. "markdown-extra"
  475. ],
  476. "time": "2018-03-26T11:24:36+00:00"
  477. },
  478. {
  479. "name": "dektrium/yii2-rbac",
  480. "version": "1.0.0-alpha",
  481. "source": {
  482. "type": "git",
  483. "url": "https://github.com/dektrium/yii2-rbac.git",
  484. "reference": "0943e66c450132b306584a37caefc2aa04258372"
  485. },
  486. "dist": {
  487. "type": "zip",
  488. "url": "https://api.github.com/repos/dektrium/yii2-rbac/zipball/0943e66c450132b306584a37caefc2aa04258372",
  489. "reference": "0943e66c450132b306584a37caefc2aa04258372",
  490. "shasum": ""
  491. },
  492. "require": {
  493. "kartik-v/yii2-widget-select2": "^2.0",
  494. "yiisoft/yii2": "^2.0.8"
  495. },
  496. "type": "yii2-extension",
  497. "extra": {
  498. "bootstrap": "dektrium\\rbac\\Bootstrap",
  499. "branch-alias": {
  500. "dev-master": "1.0.x-dev"
  501. }
  502. },
  503. "autoload": {
  504. "psr-4": {
  505. "dektrium\\rbac\\": ""
  506. }
  507. },
  508. "notification-url": "https://packagist.org/downloads/",
  509. "license": [
  510. "MIT"
  511. ],
  512. "authors": [
  513. {
  514. "name": "Dmitry Erofeev",
  515. "email": "dmeroff@gmail.com",
  516. "homepage": "http://dmeroff.ru"
  517. }
  518. ],
  519. "description": "RBAC management module for Yii2",
  520. "keywords": [
  521. "dektrium",
  522. "rbac gui",
  523. "rbac management",
  524. "rbac module",
  525. "yii rbac",
  526. "yii2",
  527. "yii2-rbac"
  528. ],
  529. "support": {
  530. "issues": "https://github.com/dektrium/yii2-rbac/issues?state=open",
  531. "source": "https://github.com/dektrium/yii2-rbac"
  532. },
  533. "time": "2016-08-15T15:49:54+00:00"
  534. },
  535. {
  536. "name": "dektrium/yii2-user",
  537. "version": "0.9.14",
  538. "source": {
  539. "type": "git",
  540. "url": "https://github.com/dektrium/yii2-user.git",
  541. "reference": "8f2daea532f7efefc3f808e50d74a91c0de71ff4"
  542. },
  543. "dist": {
  544. "type": "zip",
  545. "url": "https://api.github.com/repos/dektrium/yii2-user/zipball/8f2daea532f7efefc3f808e50d74a91c0de71ff4",
  546. "reference": "8f2daea532f7efefc3f808e50d74a91c0de71ff4",
  547. "shasum": ""
  548. },
  549. "require": {
  550. "php": ">=5.4.0",
  551. "yiisoft/yii2": "^2.0.13",
  552. "yiisoft/yii2-authclient": "^2.1.0",
  553. "yiisoft/yii2-bootstrap": "^2.0.0",
  554. "yiisoft/yii2-swiftmailer": "^2.0.0"
  555. },
  556. "require-dev": {
  557. "codeception/specify": "^0.4.3",
  558. "codeception/verify": "^0.3.1",
  559. "yiisoft/yii2-codeception": "^2.0.0"
  560. },
  561. "type": "yii2-extension",
  562. "extra": {
  563. "bootstrap": "dektrium\\user\\Bootstrap",
  564. "branch-alias": {
  565. "dev-master": "0.9.x-dev",
  566. "dev-develop": "1.0.x-dev"
  567. }
  568. },
  569. "autoload": {
  570. "psr-4": {
  571. "dektrium\\user\\": ""
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Dmitry Erofeev",
  581. "email": "dmeroff@gmail.com",
  582. "homepage": "http://dmeroff.ru"
  583. }
  584. ],
  585. "description": "Flexible user registration and authentication module for Yii2",
  586. "keywords": [
  587. "User management",
  588. "dektrium",
  589. "yii2",
  590. "yii2-user"
  591. ],
  592. "support": {
  593. "forum": "https://gitter.im/dektrium/yii2-user",
  594. "issues": "https://github.com/dektrium/yii2-user/issues?state=open",
  595. "source": "https://github.com/dektrium/yii2-user"
  596. },
  597. "time": "2018-04-03T12:24:41+00:00"
  598. },
  599. {
  600. "name": "doctrine/deprecations",
  601. "version": "1.1.2",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/doctrine/deprecations.git",
  605. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  610. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "php": "^7.1 || ^8.0"
  615. },
  616. "require-dev": {
  617. "doctrine/coding-standard": "^9",
  618. "phpstan/phpstan": "1.4.10 || 1.10.15",
  619. "phpstan/phpstan-phpunit": "^1.0",
  620. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  621. "psalm/plugin-phpunit": "0.18.4",
  622. "psr/log": "^1 || ^2 || ^3",
  623. "vimeo/psalm": "4.30.0 || 5.12.0"
  624. },
  625. "suggest": {
  626. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  627. },
  628. "type": "library",
  629. "autoload": {
  630. "psr-4": {
  631. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  639. "homepage": "https://www.doctrine-project.org/",
  640. "time": "2023-09-27T20:04:15+00:00"
  641. },
  642. {
  643. "name": "doctrine/lexer",
  644. "version": "2.1.0",
  645. "source": {
  646. "type": "git",
  647. "url": "https://github.com/doctrine/lexer.git",
  648. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  649. },
  650. "dist": {
  651. "type": "zip",
  652. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  653. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  654. "shasum": ""
  655. },
  656. "require": {
  657. "doctrine/deprecations": "^1.0",
  658. "php": "^7.1 || ^8.0"
  659. },
  660. "require-dev": {
  661. "doctrine/coding-standard": "^9 || ^10",
  662. "phpstan/phpstan": "^1.3",
  663. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  664. "psalm/plugin-phpunit": "^0.18.3",
  665. "vimeo/psalm": "^4.11 || ^5.0"
  666. },
  667. "type": "library",
  668. "autoload": {
  669. "psr-4": {
  670. "Doctrine\\Common\\Lexer\\": "src"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Guilherme Blanco",
  680. "email": "guilhermeblanco@gmail.com"
  681. },
  682. {
  683. "name": "Roman Borschel",
  684. "email": "roman@code-factory.org"
  685. },
  686. {
  687. "name": "Johannes Schmitt",
  688. "email": "schmittjoh@gmail.com"
  689. }
  690. ],
  691. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  692. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  693. "keywords": [
  694. "annotations",
  695. "docblock",
  696. "lexer",
  697. "parser",
  698. "php"
  699. ],
  700. "funding": [
  701. {
  702. "url": "https://www.doctrine-project.org/sponsorship.html",
  703. "type": "custom"
  704. },
  705. {
  706. "url": "https://www.patreon.com/phpdoctrine",
  707. "type": "patreon"
  708. },
  709. {
  710. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  711. "type": "tidelift"
  712. }
  713. ],
  714. "time": "2022-12-14T08:49:07+00:00"
  715. },
  716. {
  717. "name": "egulias/email-validator",
  718. "version": "3.2.6",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/egulias/EmailValidator.git",
  722. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  727. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  728. "shasum": ""
  729. },
  730. "require": {
  731. "doctrine/lexer": "^1.2|^2",
  732. "php": ">=7.2",
  733. "symfony/polyfill-intl-idn": "^1.15"
  734. },
  735. "require-dev": {
  736. "phpunit/phpunit": "^8.5.8|^9.3.3",
  737. "vimeo/psalm": "^4"
  738. },
  739. "suggest": {
  740. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  741. },
  742. "type": "library",
  743. "extra": {
  744. "branch-alias": {
  745. "dev-master": "3.0.x-dev"
  746. }
  747. },
  748. "autoload": {
  749. "psr-4": {
  750. "Egulias\\EmailValidator\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Eduardo Gulias Davis"
  760. }
  761. ],
  762. "description": "A library for validating emails against several RFCs",
  763. "homepage": "https://github.com/egulias/EmailValidator",
  764. "keywords": [
  765. "email",
  766. "emailvalidation",
  767. "emailvalidator",
  768. "validation",
  769. "validator"
  770. ],
  771. "funding": [
  772. {
  773. "url": "https://github.com/egulias",
  774. "type": "github"
  775. }
  776. ],
  777. "time": "2023-06-01T07:04:22+00:00"
  778. },
  779. {
  780. "name": "ezyang/htmlpurifier",
  781. "version": "v4.17.0",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/ezyang/htmlpurifier.git",
  785. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  790. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  795. },
  796. "require-dev": {
  797. "cerdic/css-tidy": "^1.7 || ^2.0",
  798. "simpletest/simpletest": "dev-master"
  799. },
  800. "suggest": {
  801. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  802. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  803. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  804. "ext-tidy": "Used for pretty-printing HTML"
  805. },
  806. "type": "library",
  807. "autoload": {
  808. "files": [
  809. "library/HTMLPurifier.composer.php"
  810. ],
  811. "psr-0": {
  812. "HTMLPurifier": "library/"
  813. },
  814. "exclude-from-classmap": [
  815. "/library/HTMLPurifier/Language/"
  816. ]
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "LGPL-2.1-or-later"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Edward Z. Yang",
  825. "email": "admin@htmlpurifier.org",
  826. "homepage": "http://ezyang.com"
  827. }
  828. ],
  829. "description": "Standards compliant HTML filter written in PHP",
  830. "homepage": "http://htmlpurifier.org/",
  831. "keywords": [
  832. "html"
  833. ],
  834. "time": "2023-11-17T15:01:25+00:00"
  835. },
  836. {
  837. "name": "fasterimage/fasterimage",
  838. "version": "v1.5.0",
  839. "source": {
  840. "type": "git",
  841. "url": "https://github.com/willwashburn/fasterimage.git",
  842. "reference": "42d125a15dc124520aff2157bbed9a4b2d4f310a"
  843. },
  844. "dist": {
  845. "type": "zip",
  846. "url": "https://api.github.com/repos/willwashburn/fasterimage/zipball/42d125a15dc124520aff2157bbed9a4b2d4f310a",
  847. "reference": "42d125a15dc124520aff2157bbed9a4b2d4f310a",
  848. "shasum": ""
  849. },
  850. "require": {
  851. "php": ">=5.4.0",
  852. "willwashburn/stream": ">=1.0"
  853. },
  854. "require-dev": {
  855. "php-coveralls/php-coveralls": "^2.1",
  856. "php-mock/php-mock-phpunit": "^2.3",
  857. "phpunit/phpunit": "~6.0"
  858. },
  859. "type": "library",
  860. "autoload": {
  861. "classmap": [
  862. "src"
  863. ]
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "MIT"
  868. ],
  869. "authors": [
  870. {
  871. "name": "Will Washburn",
  872. "email": "will@tailwindapp.com"
  873. },
  874. {
  875. "name": "Weston Ruter"
  876. }
  877. ],
  878. "description": "FasterImage finds the size or type of a set of images given their uris by fetching as little as needed, in parallel. Originally ported by Tom Moor.",
  879. "homepage": "https://github.com/willwashburn/fasterimage",
  880. "keywords": [
  881. "fast image",
  882. "faster image",
  883. "fasterimage",
  884. "fastimage",
  885. "getimagesize",
  886. "image size",
  887. "parallel"
  888. ],
  889. "time": "2019-05-25T14:33:33+00:00"
  890. },
  891. {
  892. "name": "hail812/yii2-adminlte-widgets",
  893. "version": "v1.0.5",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/hail812/yii2-adminlte-widgets.git",
  897. "reference": "bc942430d7a5f5636f6c492553b5f444bf4a6df6"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/hail812/yii2-adminlte-widgets/zipball/bc942430d7a5f5636f6c492553b5f444bf4a6df6",
  902. "reference": "bc942430d7a5f5636f6c492553b5f444bf4a6df6",
  903. "shasum": ""
  904. },
  905. "require": {
  906. "yiisoft/yii2": "~2.0.0",
  907. "yiisoft/yii2-bootstrap4": "~2.0.8"
  908. },
  909. "type": "yii2-extension",
  910. "autoload": {
  911. "psr-4": {
  912. "hail812\\adminlte\\widgets\\": "src"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "BSD-3-Clause"
  918. ],
  919. "authors": [
  920. {
  921. "name": "hail",
  922. "email": "hail812@163.com"
  923. }
  924. ],
  925. "description": "yii2 adminlte widgets",
  926. "keywords": [
  927. "extension",
  928. "yii2"
  929. ],
  930. "time": "2022-05-25T05:58:29+00:00"
  931. },
  932. {
  933. "name": "hail812/yii2-adminlte3",
  934. "version": "v1.1.9",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/hail812/yii2-adminlte3.git",
  938. "reference": "bcdec8f5e2f9caf7f3a34fad8cdfdd5dbc3a9c31"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/hail812/yii2-adminlte3/zipball/bcdec8f5e2f9caf7f3a34fad8cdfdd5dbc3a9c31",
  943. "reference": "bcdec8f5e2f9caf7f3a34fad8cdfdd5dbc3a9c31",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "almasaeed2010/adminlte": "~3.1",
  948. "hail812/yii2-adminlte-widgets": "~1.0.2",
  949. "php": ">=7.0",
  950. "yiisoft/yii2": "~2.0.0",
  951. "yiisoft/yii2-bootstrap4": "~2.0.8"
  952. },
  953. "type": "yii2-extension",
  954. "autoload": {
  955. "psr-4": {
  956. "hail812\\adminlte3\\": "src"
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "BSD-3-Clause"
  962. ],
  963. "authors": [
  964. {
  965. "name": "hail",
  966. "email": "hail812@163.com"
  967. }
  968. ],
  969. "description": "adminlte3 for yii2",
  970. "keywords": [
  971. "AdminLTE",
  972. "extension",
  973. "yii2"
  974. ],
  975. "time": "2023-10-23T05:58:30+00:00"
  976. },
  977. {
  978. "name": "imagine/imagine",
  979. "version": "1.3.5",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/php-imagine/Imagine.git",
  983. "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/7151d553edec4dc2bbac60419f7a74ff34700e7f",
  988. "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "php": ">=5.5"
  993. },
  994. "require-dev": {
  995. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
  996. },
  997. "suggest": {
  998. "ext-exif": "to read EXIF metadata",
  999. "ext-gd": "to use the GD implementation",
  1000. "ext-gmagick": "to use the Gmagick implementation",
  1001. "ext-imagick": "to use the Imagick implementation"
  1002. },
  1003. "type": "library",
  1004. "extra": {
  1005. "branch-alias": {
  1006. "dev-develop": "1.x-dev"
  1007. }
  1008. },
  1009. "autoload": {
  1010. "psr-4": {
  1011. "Imagine\\": "src/"
  1012. }
  1013. },
  1014. "notification-url": "https://packagist.org/downloads/",
  1015. "license": [
  1016. "MIT"
  1017. ],
  1018. "authors": [
  1019. {
  1020. "name": "Bulat Shakirzyanov",
  1021. "email": "mallluhuct@gmail.com",
  1022. "homepage": "http://avalanche123.com"
  1023. }
  1024. ],
  1025. "description": "Image processing for PHP 5.3",
  1026. "homepage": "http://imagine.readthedocs.org/",
  1027. "keywords": [
  1028. "drawing",
  1029. "graphics",
  1030. "image manipulation",
  1031. "image processing"
  1032. ],
  1033. "time": "2023-06-07T14:49:52+00:00"
  1034. },
  1035. {
  1036. "name": "kartik-v/yii2-krajee-base",
  1037. "version": "v3.0.5",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/kartik-v/yii2-krajee-base.git",
  1041. "reference": "5c095126d1be47e0bb1f92779b7dc099f6feae31"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/5c095126d1be47e0bb1f92779b7dc099f6feae31",
  1046. "reference": "5c095126d1be47e0bb1f92779b7dc099f6feae31",
  1047. "shasum": ""
  1048. },
  1049. "suggest": {
  1050. "yiisoft/yii2-bootstrap": "for Krajee extensions to work with Bootstrap 3.x version",
  1051. "yiisoft/yii2-bootstrap4": "for Krajee extensions to work with Bootstrap 4.x version",
  1052. "yiisoft/yii2-bootstrap5": "for Krajee extensions to work with Bootstrap 5.x version"
  1053. },
  1054. "type": "yii2-extension",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-master": "3.0.x-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "psr-4": {
  1062. "kartik\\base\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "BSD-3-Clause"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Kartik Visweswaran",
  1072. "email": "kartikv2@gmail.com",
  1073. "homepage": "http://www.krajee.com/"
  1074. }
  1075. ],
  1076. "description": "Base library and foundation components for all Yii2 Krajee extensions.",
  1077. "homepage": "https://github.com/kartik-v/yii2-krajee-base",
  1078. "keywords": [
  1079. "base",
  1080. "extension",
  1081. "foundation",
  1082. "krajee",
  1083. "widget",
  1084. "yii2"
  1085. ],
  1086. "support": {
  1087. "issues": "https://github.com/kartik-v/yii2-krajee-base/issues",
  1088. "source": "https://github.com/kartik-v/yii2-krajee-base/tree/v3.0.5"
  1089. },
  1090. "time": "2022-06-01T14:05:39+00:00"
  1091. },
  1092. {
  1093. "name": "kartik-v/yii2-widget-datetimepicker",
  1094. "version": "v1.5.1",
  1095. "source": {
  1096. "type": "git",
  1097. "url": "https://github.com/kartik-v/yii2-widget-datetimepicker.git",
  1098. "reference": "85b22d38553ca207f86be198f37e6531347e9a23"
  1099. },
  1100. "dist": {
  1101. "type": "zip",
  1102. "url": "https://api.github.com/repos/kartik-v/yii2-widget-datetimepicker/zipball/85b22d38553ca207f86be198f37e6531347e9a23",
  1103. "reference": "85b22d38553ca207f86be198f37e6531347e9a23",
  1104. "shasum": ""
  1105. },
  1106. "require": {
  1107. "kartik-v/yii2-krajee-base": ">=3.0.4"
  1108. },
  1109. "type": "yii2-extension",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-master": "1.5.x-dev"
  1113. }
  1114. },
  1115. "autoload": {
  1116. "psr-4": {
  1117. "kartik\\datetime\\": "src"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "BSD-3-Clause"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Kartik Visweswaran",
  1127. "email": "kartikv2@gmail.com",
  1128. "homepage": "http://www.krajee.com/"
  1129. }
  1130. ],
  1131. "description": "Enhanced Yii2 wrapper for the bootstrap datetimepicker plugin (sub repo split from yii2-widgets)",
  1132. "homepage": "https://github.com/kartik-v/yii2-widget-datetimepicker",
  1133. "keywords": [
  1134. "datetime",
  1135. "extension",
  1136. "form",
  1137. "jquery",
  1138. "picker",
  1139. "plugin",
  1140. "select2",
  1141. "widget",
  1142. "yii2"
  1143. ],
  1144. "time": "2022-03-18T17:42:22+00:00"
  1145. },
  1146. {
  1147. "name": "kartik-v/yii2-widget-select2",
  1148. "version": "v2.2.5",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/kartik-v/yii2-widget-select2.git",
  1152. "reference": "4b8ef7dd9780531fc997fa23a53a38a1f7674bec"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/kartik-v/yii2-widget-select2/zipball/4b8ef7dd9780531fc997fa23a53a38a1f7674bec",
  1157. "reference": "4b8ef7dd9780531fc997fa23a53a38a1f7674bec",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "kartik-v/yii2-krajee-base": ">=3.0.4",
  1162. "select2/select2": ">=4.0.0"
  1163. },
  1164. "type": "yii2-extension",
  1165. "extra": {
  1166. "branch-alias": {
  1167. "dev-master": "2.2.x-dev"
  1168. }
  1169. },
  1170. "autoload": {
  1171. "psr-4": {
  1172. "kartik\\select2\\": "src"
  1173. }
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "BSD-3-Clause"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Kartik Visweswaran",
  1182. "email": "kartikv2@gmail.com",
  1183. "homepage": "http://www.krajee.com/"
  1184. }
  1185. ],
  1186. "description": "Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).",
  1187. "homepage": "https://github.com/kartik-v/yii2-widget-select2",
  1188. "keywords": [
  1189. "dropdown",
  1190. "extension",
  1191. "form",
  1192. "jquery",
  1193. "plugin",
  1194. "select2",
  1195. "widget",
  1196. "yii2"
  1197. ],
  1198. "funding": [
  1199. {
  1200. "url": "https://opencollective.com/yii2-widget-select2",
  1201. "type": "open_collective"
  1202. }
  1203. ],
  1204. "time": "2023-06-22T07:43:31+00:00"
  1205. },
  1206. {
  1207. "name": "magyarandras/amp-converter",
  1208. "version": "v1.0.8",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/magyarandras/amp-converter.git",
  1212. "reference": "52d8a3107fd01ddbd3bb288cd7291f362afa334b"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/magyarandras/amp-converter/zipball/52d8a3107fd01ddbd3bb288cd7291f362afa334b",
  1217. "reference": "52d8a3107fd01ddbd3bb288cd7291f362afa334b",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "ext-dom": "*",
  1222. "fasterimage/fasterimage": "^1.5",
  1223. "masterminds/html5": "^2.6"
  1224. },
  1225. "require-dev": {
  1226. "phpspec/phpspec": "^7.3"
  1227. },
  1228. "type": "library",
  1229. "autoload": {
  1230. "psr-4": {
  1231. "magyarandras\\AMPConverter\\": "src/"
  1232. }
  1233. },
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "license": [
  1236. "MIT"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "András Magyar",
  1241. "email": "magyarandrasistvan@gmail.com"
  1242. }
  1243. ],
  1244. "description": "A library to convert HTML articles, blog posts or similar content to AMP (Accelerated Mobile Pages).",
  1245. "keywords": [
  1246. "AMPHTML",
  1247. "amp",
  1248. "amp-html",
  1249. "converter",
  1250. "html"
  1251. ],
  1252. "time": "2023-01-03T23:12:16+00:00"
  1253. },
  1254. {
  1255. "name": "masterminds/html5",
  1256. "version": "2.8.1",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/Masterminds/html5-php.git",
  1260. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  1265. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  1266. "shasum": ""
  1267. },
  1268. "require": {
  1269. "ext-dom": "*",
  1270. "php": ">=5.3.0"
  1271. },
  1272. "require-dev": {
  1273. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  1274. },
  1275. "type": "library",
  1276. "extra": {
  1277. "branch-alias": {
  1278. "dev-master": "2.7-dev"
  1279. }
  1280. },
  1281. "autoload": {
  1282. "psr-4": {
  1283. "Masterminds\\": "src"
  1284. }
  1285. },
  1286. "notification-url": "https://packagist.org/downloads/",
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Matt Butcher",
  1293. "email": "technosophos@gmail.com"
  1294. },
  1295. {
  1296. "name": "Matt Farina",
  1297. "email": "matt@mattfarina.com"
  1298. },
  1299. {
  1300. "name": "Asmir Mustafic",
  1301. "email": "goetas@gmail.com"
  1302. }
  1303. ],
  1304. "description": "An HTML5 parser and serializer.",
  1305. "homepage": "http://masterminds.github.io/html5-php",
  1306. "keywords": [
  1307. "HTML5",
  1308. "dom",
  1309. "html",
  1310. "parser",
  1311. "querypath",
  1312. "serializer",
  1313. "xml"
  1314. ],
  1315. "time": "2023-05-10T11:58:31+00:00"
  1316. },
  1317. {
  1318. "name": "mobiledetect/mobiledetectlib",
  1319. "version": "2.8.45",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  1323. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  1328. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "php": ">=5.0.0"
  1333. },
  1334. "require-dev": {
  1335. "phpunit/phpunit": "~4.8.36"
  1336. },
  1337. "type": "library",
  1338. "autoload": {
  1339. "psr-0": {
  1340. "Detection": "namespaced/"
  1341. },
  1342. "classmap": [
  1343. "Mobile_Detect.php"
  1344. ]
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "MIT"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Serban Ghita",
  1353. "email": "serbanghita@gmail.com",
  1354. "homepage": "http://mobiledetect.net",
  1355. "role": "Developer"
  1356. }
  1357. ],
  1358. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  1359. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  1360. "keywords": [
  1361. "detect mobile devices",
  1362. "mobile",
  1363. "mobile detect",
  1364. "mobile detector",
  1365. "php mobile detect"
  1366. ],
  1367. "funding": [
  1368. {
  1369. "url": "https://github.com/serbanghita",
  1370. "type": "github"
  1371. }
  1372. ],
  1373. "time": "2023-11-07T21:57:25+00:00"
  1374. },
  1375. {
  1376. "name": "npm-asset/bootstrap",
  1377. "version": "4.6.2",
  1378. "dist": {
  1379. "type": "tar",
  1380. "url": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz"
  1381. },
  1382. "type": "npm-asset",
  1383. "license": [
  1384. "MIT"
  1385. ]
  1386. },
  1387. {
  1388. "name": "paragonie/random_compat",
  1389. "version": "v9.99.100",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/paragonie/random_compat.git",
  1393. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1398. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "php": ">= 7"
  1403. },
  1404. "require-dev": {
  1405. "phpunit/phpunit": "4.*|5.*",
  1406. "vimeo/psalm": "^1"
  1407. },
  1408. "suggest": {
  1409. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1410. },
  1411. "type": "library",
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Paragon Initiative Enterprises",
  1419. "email": "security@paragonie.com",
  1420. "homepage": "https://paragonie.com"
  1421. }
  1422. ],
  1423. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1424. "keywords": [
  1425. "csprng",
  1426. "polyfill",
  1427. "pseudorandom",
  1428. "random"
  1429. ],
  1430. "time": "2020-10-15T08:29:30+00:00"
  1431. },
  1432. {
  1433. "name": "select2/select2",
  1434. "version": "4.0.13",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/select2/select2.git",
  1438. "reference": "45f2b83ceed5231afa7b3d5b12b58ad335edd82e"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/select2/select2/zipball/45f2b83ceed5231afa7b3d5b12b58ad335edd82e",
  1443. "reference": "45f2b83ceed5231afa7b3d5b12b58ad335edd82e",
  1444. "shasum": ""
  1445. },
  1446. "type": "component",
  1447. "extra": {
  1448. "component": {
  1449. "scripts": [
  1450. "dist/js/select2.js"
  1451. ],
  1452. "styles": [
  1453. "dist/css/select2.css"
  1454. ],
  1455. "files": [
  1456. "dist/js/select2.js",
  1457. "dist/js/i18n/*.js",
  1458. "dist/css/select2.css"
  1459. ]
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "description": "Select2 is a jQuery based replacement for select boxes.",
  1467. "homepage": "https://select2.org/",
  1468. "support": {
  1469. "issues": "https://github.com/select2/select2/issues",
  1470. "source": "https://github.com/select2/select2/tree/4.0.13"
  1471. },
  1472. "time": "2020-01-28T05:01:22+00:00"
  1473. },
  1474. {
  1475. "name": "swiftmailer/swiftmailer",
  1476. "version": "v6.3.0",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1480. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1485. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "egulias/email-validator": "^2.0|^3.1",
  1490. "php": ">=7.0.0",
  1491. "symfony/polyfill-iconv": "^1.0",
  1492. "symfony/polyfill-intl-idn": "^1.10",
  1493. "symfony/polyfill-mbstring": "^1.0"
  1494. },
  1495. "require-dev": {
  1496. "mockery/mockery": "^1.0",
  1497. "symfony/phpunit-bridge": "^4.4|^5.4"
  1498. },
  1499. "suggest": {
  1500. "ext-intl": "Needed to support internationalized email addresses"
  1501. },
  1502. "type": "library",
  1503. "extra": {
  1504. "branch-alias": {
  1505. "dev-master": "6.2-dev"
  1506. }
  1507. },
  1508. "autoload": {
  1509. "files": [
  1510. "lib/swift_required.php"
  1511. ]
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Chris Corbyn"
  1520. },
  1521. {
  1522. "name": "Fabien Potencier",
  1523. "email": "fabien@symfony.com"
  1524. }
  1525. ],
  1526. "description": "Swiftmailer, free feature-rich PHP mailer",
  1527. "homepage": "https://swiftmailer.symfony.com",
  1528. "keywords": [
  1529. "email",
  1530. "mail",
  1531. "mailer"
  1532. ],
  1533. "funding": [
  1534. {
  1535. "url": "https://github.com/fabpot",
  1536. "type": "github"
  1537. },
  1538. {
  1539. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  1540. "type": "tidelift"
  1541. }
  1542. ],
  1543. "abandoned": "symfony/mailer",
  1544. "time": "2021-10-18T15:26:12+00:00"
  1545. },
  1546. {
  1547. "name": "symfony/polyfill-iconv",
  1548. "version": "v1.28.0",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/symfony/polyfill-iconv.git",
  1552. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  1557. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "php": ">=7.1"
  1562. },
  1563. "provide": {
  1564. "ext-iconv": "*"
  1565. },
  1566. "suggest": {
  1567. "ext-iconv": "For best performance"
  1568. },
  1569. "type": "library",
  1570. "extra": {
  1571. "branch-alias": {
  1572. "dev-main": "1.28-dev"
  1573. },
  1574. "thanks": {
  1575. "name": "symfony/polyfill",
  1576. "url": "https://github.com/symfony/polyfill"
  1577. }
  1578. },
  1579. "autoload": {
  1580. "files": [
  1581. "bootstrap.php"
  1582. ],
  1583. "psr-4": {
  1584. "Symfony\\Polyfill\\Iconv\\": ""
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Nicolas Grekas",
  1594. "email": "p@tchwork.com"
  1595. },
  1596. {
  1597. "name": "Symfony Community",
  1598. "homepage": "https://symfony.com/contributors"
  1599. }
  1600. ],
  1601. "description": "Symfony polyfill for the Iconv extension",
  1602. "homepage": "https://symfony.com",
  1603. "keywords": [
  1604. "compatibility",
  1605. "iconv",
  1606. "polyfill",
  1607. "portable",
  1608. "shim"
  1609. ],
  1610. "funding": [
  1611. {
  1612. "url": "https://symfony.com/sponsor",
  1613. "type": "custom"
  1614. },
  1615. {
  1616. "url": "https://github.com/fabpot",
  1617. "type": "github"
  1618. },
  1619. {
  1620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1621. "type": "tidelift"
  1622. }
  1623. ],
  1624. "time": "2023-01-26T09:26:14+00:00"
  1625. },
  1626. {
  1627. "name": "symfony/polyfill-intl-idn",
  1628. "version": "v1.28.0",
  1629. "source": {
  1630. "type": "git",
  1631. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1632. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  1633. },
  1634. "dist": {
  1635. "type": "zip",
  1636. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  1637. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  1638. "shasum": ""
  1639. },
  1640. "require": {
  1641. "php": ">=7.1",
  1642. "symfony/polyfill-intl-normalizer": "^1.10",
  1643. "symfony/polyfill-php72": "^1.10"
  1644. },
  1645. "suggest": {
  1646. "ext-intl": "For best performance"
  1647. },
  1648. "type": "library",
  1649. "extra": {
  1650. "branch-alias": {
  1651. "dev-main": "1.28-dev"
  1652. },
  1653. "thanks": {
  1654. "name": "symfony/polyfill",
  1655. "url": "https://github.com/symfony/polyfill"
  1656. }
  1657. },
  1658. "autoload": {
  1659. "files": [
  1660. "bootstrap.php"
  1661. ],
  1662. "psr-4": {
  1663. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Laurent Bassin",
  1673. "email": "laurent@bassin.info"
  1674. },
  1675. {
  1676. "name": "Trevor Rowbotham",
  1677. "email": "trevor.rowbotham@pm.me"
  1678. },
  1679. {
  1680. "name": "Symfony Community",
  1681. "homepage": "https://symfony.com/contributors"
  1682. }
  1683. ],
  1684. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1685. "homepage": "https://symfony.com",
  1686. "keywords": [
  1687. "compatibility",
  1688. "idn",
  1689. "intl",
  1690. "polyfill",
  1691. "portable",
  1692. "shim"
  1693. ],
  1694. "funding": [
  1695. {
  1696. "url": "https://symfony.com/sponsor",
  1697. "type": "custom"
  1698. },
  1699. {
  1700. "url": "https://github.com/fabpot",
  1701. "type": "github"
  1702. },
  1703. {
  1704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1705. "type": "tidelift"
  1706. }
  1707. ],
  1708. "time": "2023-01-26T09:30:37+00:00"
  1709. },
  1710. {
  1711. "name": "symfony/polyfill-intl-normalizer",
  1712. "version": "v1.28.0",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1716. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  1721. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  1722. "shasum": ""
  1723. },
  1724. "require": {
  1725. "php": ">=7.1"
  1726. },
  1727. "suggest": {
  1728. "ext-intl": "For best performance"
  1729. },
  1730. "type": "library",
  1731. "extra": {
  1732. "branch-alias": {
  1733. "dev-main": "1.28-dev"
  1734. },
  1735. "thanks": {
  1736. "name": "symfony/polyfill",
  1737. "url": "https://github.com/symfony/polyfill"
  1738. }
  1739. },
  1740. "autoload": {
  1741. "files": [
  1742. "bootstrap.php"
  1743. ],
  1744. "psr-4": {
  1745. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1746. },
  1747. "classmap": [
  1748. "Resources/stubs"
  1749. ]
  1750. },
  1751. "notification-url": "https://packagist.org/downloads/",
  1752. "license": [
  1753. "MIT"
  1754. ],
  1755. "authors": [
  1756. {
  1757. "name": "Nicolas Grekas",
  1758. "email": "p@tchwork.com"
  1759. },
  1760. {
  1761. "name": "Symfony Community",
  1762. "homepage": "https://symfony.com/contributors"
  1763. }
  1764. ],
  1765. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1766. "homepage": "https://symfony.com",
  1767. "keywords": [
  1768. "compatibility",
  1769. "intl",
  1770. "normalizer",
  1771. "polyfill",
  1772. "portable",
  1773. "shim"
  1774. ],
  1775. "funding": [
  1776. {
  1777. "url": "https://symfony.com/sponsor",
  1778. "type": "custom"
  1779. },
  1780. {
  1781. "url": "https://github.com/fabpot",
  1782. "type": "github"
  1783. },
  1784. {
  1785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1786. "type": "tidelift"
  1787. }
  1788. ],
  1789. "time": "2023-01-26T09:26:14+00:00"
  1790. },
  1791. {
  1792. "name": "symfony/polyfill-mbstring",
  1793. "version": "v1.28.0",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1797. "reference": "42292d99c55abe617799667f454222c54c60e229"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  1802. "reference": "42292d99c55abe617799667f454222c54c60e229",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "php": ">=7.1"
  1807. },
  1808. "provide": {
  1809. "ext-mbstring": "*"
  1810. },
  1811. "suggest": {
  1812. "ext-mbstring": "For best performance"
  1813. },
  1814. "type": "library",
  1815. "extra": {
  1816. "branch-alias": {
  1817. "dev-main": "1.28-dev"
  1818. },
  1819. "thanks": {
  1820. "name": "symfony/polyfill",
  1821. "url": "https://github.com/symfony/polyfill"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "files": [
  1826. "bootstrap.php"
  1827. ],
  1828. "psr-4": {
  1829. "Symfony\\Polyfill\\Mbstring\\": ""
  1830. }
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "Nicolas Grekas",
  1839. "email": "p@tchwork.com"
  1840. },
  1841. {
  1842. "name": "Symfony Community",
  1843. "homepage": "https://symfony.com/contributors"
  1844. }
  1845. ],
  1846. "description": "Symfony polyfill for the Mbstring extension",
  1847. "homepage": "https://symfony.com",
  1848. "keywords": [
  1849. "compatibility",
  1850. "mbstring",
  1851. "polyfill",
  1852. "portable",
  1853. "shim"
  1854. ],
  1855. "funding": [
  1856. {
  1857. "url": "https://symfony.com/sponsor",
  1858. "type": "custom"
  1859. },
  1860. {
  1861. "url": "https://github.com/fabpot",
  1862. "type": "github"
  1863. },
  1864. {
  1865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1866. "type": "tidelift"
  1867. }
  1868. ],
  1869. "time": "2023-07-28T09:04:16+00:00"
  1870. },
  1871. {
  1872. "name": "symfony/polyfill-php72",
  1873. "version": "v1.28.0",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "https://github.com/symfony/polyfill-php72.git",
  1877. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  1882. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": ">=7.1"
  1887. },
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-main": "1.28-dev"
  1892. },
  1893. "thanks": {
  1894. "name": "symfony/polyfill",
  1895. "url": "https://github.com/symfony/polyfill"
  1896. }
  1897. },
  1898. "autoload": {
  1899. "files": [
  1900. "bootstrap.php"
  1901. ],
  1902. "psr-4": {
  1903. "Symfony\\Polyfill\\Php72\\": ""
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Nicolas Grekas",
  1913. "email": "p@tchwork.com"
  1914. },
  1915. {
  1916. "name": "Symfony Community",
  1917. "homepage": "https://symfony.com/contributors"
  1918. }
  1919. ],
  1920. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1921. "homepage": "https://symfony.com",
  1922. "keywords": [
  1923. "compatibility",
  1924. "polyfill",
  1925. "portable",
  1926. "shim"
  1927. ],
  1928. "funding": [
  1929. {
  1930. "url": "https://symfony.com/sponsor",
  1931. "type": "custom"
  1932. },
  1933. {
  1934. "url": "https://github.com/fabpot",
  1935. "type": "github"
  1936. },
  1937. {
  1938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1939. "type": "tidelift"
  1940. }
  1941. ],
  1942. "time": "2023-01-26T09:26:14+00:00"
  1943. },
  1944. {
  1945. "name": "willwashburn/stream",
  1946. "version": "v1.0.0",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/willwashburn/stream.git",
  1950. "reference": "345b3062493e3899d987dbdd1fec1c13ee28c903"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/willwashburn/stream/zipball/345b3062493e3899d987dbdd1fec1c13ee28c903",
  1955. "reference": "345b3062493e3899d987dbdd1fec1c13ee28c903",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": ">=5.4.0"
  1960. },
  1961. "require-dev": {
  1962. "mockery/mockery": "~0.9",
  1963. "phpunit/phpunit": "~4.0"
  1964. },
  1965. "type": "library",
  1966. "autoload": {
  1967. "psr-4": {
  1968. "WillWashburn\\": "src/"
  1969. }
  1970. },
  1971. "notification-url": "https://packagist.org/downloads/",
  1972. "license": [
  1973. "MIT"
  1974. ],
  1975. "authors": [
  1976. {
  1977. "name": "Will Washburn",
  1978. "email": "will.washburn@gmail.com"
  1979. }
  1980. ],
  1981. "description": "model a sequence of data elements made available over time ",
  1982. "homepage": "https://github.com/willwashburn/stream",
  1983. "keywords": [
  1984. "peek",
  1985. "read",
  1986. "stream",
  1987. "streamable"
  1988. ],
  1989. "time": "2016-03-15T10:54:35+00:00"
  1990. },
  1991. {
  1992. "name": "yiisoft/yii2",
  1993. "version": "2.0.49.3",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/yiisoft/yii2-framework.git",
  1997. "reference": "783f65c9a743dfd7484b6026f1aa6f25e37159d9"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/783f65c9a743dfd7484b6026f1aa6f25e37159d9",
  2002. "reference": "783f65c9a743dfd7484b6026f1aa6f25e37159d9",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  2007. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  2008. "bower-asset/punycode": "1.3.*",
  2009. "bower-asset/yii2-pjax": "~2.0.1",
  2010. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  2011. "ext-ctype": "*",
  2012. "ext-mbstring": "*",
  2013. "ezyang/htmlpurifier": "^4.6",
  2014. "lib-pcre": "*",
  2015. "paragonie/random_compat": ">=1",
  2016. "php": ">=5.4.0",
  2017. "yiisoft/yii2-composer": "~2.0.4"
  2018. },
  2019. "bin": [
  2020. "yii"
  2021. ],
  2022. "type": "library",
  2023. "extra": {
  2024. "branch-alias": {
  2025. "dev-master": "2.0.x-dev"
  2026. }
  2027. },
  2028. "autoload": {
  2029. "psr-4": {
  2030. "yii\\": ""
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "BSD-3-Clause"
  2036. ],
  2037. "authors": [
  2038. {
  2039. "name": "Qiang Xue",
  2040. "email": "qiang.xue@gmail.com",
  2041. "homepage": "https://www.yiiframework.com/",
  2042. "role": "Founder and project lead"
  2043. },
  2044. {
  2045. "name": "Alexander Makarov",
  2046. "email": "sam@rmcreative.ru",
  2047. "homepage": "https://rmcreative.ru/",
  2048. "role": "Core framework development"
  2049. },
  2050. {
  2051. "name": "Maurizio Domba",
  2052. "homepage": "http://mdomba.info/",
  2053. "role": "Core framework development"
  2054. },
  2055. {
  2056. "name": "Carsten Brandt",
  2057. "email": "mail@cebe.cc",
  2058. "homepage": "https://www.cebe.cc/",
  2059. "role": "Core framework development"
  2060. },
  2061. {
  2062. "name": "Timur Ruziev",
  2063. "email": "resurtm@gmail.com",
  2064. "homepage": "http://resurtm.com/",
  2065. "role": "Core framework development"
  2066. },
  2067. {
  2068. "name": "Paul Klimov",
  2069. "email": "klimov.paul@gmail.com",
  2070. "role": "Core framework development"
  2071. },
  2072. {
  2073. "name": "Dmitry Naumenko",
  2074. "email": "d.naumenko.a@gmail.com",
  2075. "role": "Core framework development"
  2076. },
  2077. {
  2078. "name": "Boudewijn Vahrmeijer",
  2079. "email": "info@dynasource.eu",
  2080. "homepage": "http://dynasource.eu",
  2081. "role": "Core framework development"
  2082. }
  2083. ],
  2084. "description": "Yii PHP Framework Version 2",
  2085. "homepage": "https://www.yiiframework.com/",
  2086. "keywords": [
  2087. "framework",
  2088. "yii2"
  2089. ],
  2090. "funding": [
  2091. {
  2092. "url": "https://github.com/yiisoft",
  2093. "type": "github"
  2094. },
  2095. {
  2096. "url": "https://opencollective.com/yiisoft",
  2097. "type": "open_collective"
  2098. },
  2099. {
  2100. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  2101. "type": "tidelift"
  2102. }
  2103. ],
  2104. "time": "2023-10-31T15:39:08+00:00"
  2105. },
  2106. {
  2107. "name": "yiisoft/yii2-authclient",
  2108. "version": "2.2.14",
  2109. "source": {
  2110. "type": "git",
  2111. "url": "https://github.com/yiisoft/yii2-authclient.git",
  2112. "reference": "6bd4b4efc60db2b31bb957a473442900c704857e"
  2113. },
  2114. "dist": {
  2115. "type": "zip",
  2116. "url": "https://api.github.com/repos/yiisoft/yii2-authclient/zipball/6bd4b4efc60db2b31bb957a473442900c704857e",
  2117. "reference": "6bd4b4efc60db2b31bb957a473442900c704857e",
  2118. "shasum": ""
  2119. },
  2120. "require": {
  2121. "paragonie/random_compat": ">=1",
  2122. "yiisoft/yii2": "~2.0.13",
  2123. "yiisoft/yii2-httpclient": "~2.0.5"
  2124. },
  2125. "require-dev": {
  2126. "cweagans/composer-patches": "^1.7",
  2127. "phpunit/phpunit": "4.8.34"
  2128. },
  2129. "suggest": {
  2130. "web-token/jwt-checker": "required for JWS, JWT or JWK related flows like OpenIDConnect",
  2131. "web-token/jwt-key-mgmt": "required for JWS, JWT or JWK related flows like OpenIDConnect",
  2132. "web-token/jwt-signature": "required for JWS, JWT or JWK related flows like OpenIDConnect",
  2133. "web-token/jwt-signature-algorithm-ecdsa": "required for JWS, JWT or JWK related flows like OpenIDConnect",
  2134. "web-token/jwt-signature-algorithm-hmac": "required for JWS, JWT or JWK related flows like OpenIDConnect",
  2135. "web-token/jwt-signature-algorithm-rsa": "required for JWS, JWT or JWK related flows like OpenIDConnect"
  2136. },
  2137. "type": "yii2-extension",
  2138. "extra": {
  2139. "branch-alias": {
  2140. "dev-master": "2.0.x-dev"
  2141. },
  2142. "patches": {
  2143. "phpunit/phpunit-mock-objects": {
  2144. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2145. },
  2146. "phpunit/phpunit": {
  2147. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2148. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2149. }
  2150. }
  2151. },
  2152. "autoload": {
  2153. "psr-4": {
  2154. "yii\\authclient\\": "src"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "BSD-3-Clause"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Paul Klimov",
  2164. "email": "klimov.paul@gmail.com"
  2165. }
  2166. ],
  2167. "description": "External authentication via OAuth and OpenID for the Yii framework",
  2168. "keywords": [
  2169. "OpenID Connect",
  2170. "OpenId",
  2171. "api",
  2172. "auth",
  2173. "oauth",
  2174. "yii2"
  2175. ],
  2176. "support": {
  2177. "forum": "http://www.yiiframework.com/forum/",
  2178. "irc": "irc://irc.freenode.net/yii",
  2179. "issues": "https://github.com/yiisoft/yii2-authclient/issues",
  2180. "source": "https://github.com/yiisoft/yii2-authclient",
  2181. "wiki": "http://www.yiiframework.com/wiki/"
  2182. },
  2183. "funding": [
  2184. {
  2185. "url": "https://github.com/yiisoft",
  2186. "type": "github"
  2187. },
  2188. {
  2189. "url": "https://opencollective.com/yiisoft",
  2190. "type": "open_collective"
  2191. },
  2192. {
  2193. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-authclient",
  2194. "type": "tidelift"
  2195. }
  2196. ],
  2197. "time": "2022-11-18T17:23:56+00:00"
  2198. },
  2199. {
  2200. "name": "yiisoft/yii2-bootstrap",
  2201. "version": "2.0.11",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  2205. "reference": "83d144f4089adaa7064ad60dc4c1436daa2eb30e"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/83d144f4089adaa7064ad60dc4c1436daa2eb30e",
  2210. "reference": "83d144f4089adaa7064ad60dc4c1436daa2eb30e",
  2211. "shasum": ""
  2212. },
  2213. "require": {
  2214. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  2215. "yiisoft/yii2": "~2.0.6"
  2216. },
  2217. "require-dev": {
  2218. "cweagans/composer-patches": "^1.7",
  2219. "phpunit/phpunit": "4.8.34"
  2220. },
  2221. "type": "yii2-extension",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "2.0.x-dev"
  2225. },
  2226. "patches": {
  2227. "phpunit/phpunit-mock-objects": {
  2228. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2229. },
  2230. "phpunit/phpunit": {
  2231. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2232. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2233. }
  2234. }
  2235. },
  2236. "autoload": {
  2237. "psr-4": {
  2238. "yii\\bootstrap\\": "src"
  2239. }
  2240. },
  2241. "notification-url": "https://packagist.org/downloads/",
  2242. "license": [
  2243. "BSD-3-Clause"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "Qiang Xue",
  2248. "email": "qiang.xue@gmail.com",
  2249. "homepage": "http://www.yiiframework.com/"
  2250. },
  2251. {
  2252. "name": "Alexander Makarov",
  2253. "email": "sam@rmcreative.ru",
  2254. "homepage": "http://rmcreative.ru/"
  2255. },
  2256. {
  2257. "name": "Antonio Ramirez",
  2258. "email": "amigo.cobos@gmail.com"
  2259. },
  2260. {
  2261. "name": "Paul Klimov",
  2262. "email": "klimov.paul@gmail.com"
  2263. }
  2264. ],
  2265. "description": "The Twitter Bootstrap extension for the Yii framework",
  2266. "keywords": [
  2267. "bootstrap",
  2268. "yii2"
  2269. ],
  2270. "funding": [
  2271. {
  2272. "url": "https://github.com/yiisoft",
  2273. "type": "github"
  2274. },
  2275. {
  2276. "url": "https://opencollective.com/yiisoft",
  2277. "type": "open_collective"
  2278. },
  2279. {
  2280. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap",
  2281. "type": "tidelift"
  2282. }
  2283. ],
  2284. "time": "2021-08-09T20:54:06+00:00"
  2285. },
  2286. {
  2287. "name": "yiisoft/yii2-bootstrap4",
  2288. "version": "2.0.11",
  2289. "source": {
  2290. "type": "git",
  2291. "url": "https://github.com/yiisoft/yii2-bootstrap4.git",
  2292. "reference": "6681a7ca2319499c1c35f09e803c5337e56b3dae"
  2293. },
  2294. "dist": {
  2295. "type": "zip",
  2296. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap4/zipball/6681a7ca2319499c1c35f09e803c5337e56b3dae",
  2297. "reference": "6681a7ca2319499c1c35f09e803c5337e56b3dae",
  2298. "shasum": ""
  2299. },
  2300. "require": {
  2301. "npm-asset/bootstrap": "^4.3",
  2302. "yiisoft/yii2": "^2.0.43"
  2303. },
  2304. "require-dev": {
  2305. "cweagans/composer-patches": "^1.7",
  2306. "phpunit/phpunit": "4.8.34",
  2307. "yiisoft/yii2-coding-standards": "~2.0"
  2308. },
  2309. "type": "yii2-extension",
  2310. "extra": {
  2311. "branch-alias": {
  2312. "dev-master": "1.0.x-dev"
  2313. },
  2314. "patches": {
  2315. "phpunit/phpunit-mock-objects": {
  2316. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2317. },
  2318. "phpunit/phpunit": {
  2319. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2320. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2321. }
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "yii\\bootstrap4\\": "src"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "BSD-3-Clause"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Qiang Xue",
  2336. "email": "qiang.xue@gmail.com",
  2337. "homepage": "https://www.yiiframework.com/"
  2338. },
  2339. {
  2340. "name": "Alexander Makarov",
  2341. "email": "sam@rmcreative.ru",
  2342. "homepage": "https://rmcreative.ru/"
  2343. },
  2344. {
  2345. "name": "Antonio Ramirez",
  2346. "email": "amigo.cobos@gmail.com"
  2347. },
  2348. {
  2349. "name": "Paul Klimov",
  2350. "email": "klimov.paul@gmail.com"
  2351. },
  2352. {
  2353. "name": "Simon Karlen",
  2354. "email": "simi.albi@outlook.com"
  2355. }
  2356. ],
  2357. "description": "The Twitter Bootstrap extension for the Yii framework",
  2358. "keywords": [
  2359. "bootstrap",
  2360. "bootstrap4",
  2361. "yii2"
  2362. ],
  2363. "funding": [
  2364. {
  2365. "url": "https://github.com/yiisoft",
  2366. "type": "github"
  2367. },
  2368. {
  2369. "url": "https://opencollective.com/yiisoft",
  2370. "type": "open_collective"
  2371. },
  2372. {
  2373. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap4",
  2374. "type": "tidelift"
  2375. }
  2376. ],
  2377. "time": "2023-05-22T18:39:25+00:00"
  2378. },
  2379. {
  2380. "name": "yiisoft/yii2-composer",
  2381. "version": "2.0.10",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/yiisoft/yii2-composer.git",
  2385. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  2390. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "composer-plugin-api": "^1.0 | ^2.0"
  2395. },
  2396. "require-dev": {
  2397. "composer/composer": "^1.0 | ^2.0@dev",
  2398. "phpunit/phpunit": "<7"
  2399. },
  2400. "type": "composer-plugin",
  2401. "extra": {
  2402. "class": "yii\\composer\\Plugin",
  2403. "branch-alias": {
  2404. "dev-master": "2.0.x-dev"
  2405. }
  2406. },
  2407. "autoload": {
  2408. "psr-4": {
  2409. "yii\\composer\\": ""
  2410. }
  2411. },
  2412. "notification-url": "https://packagist.org/downloads/",
  2413. "license": [
  2414. "BSD-3-Clause"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "Qiang Xue",
  2419. "email": "qiang.xue@gmail.com"
  2420. },
  2421. {
  2422. "name": "Carsten Brandt",
  2423. "email": "mail@cebe.cc"
  2424. }
  2425. ],
  2426. "description": "The composer plugin for Yii extension installer",
  2427. "keywords": [
  2428. "composer",
  2429. "extension installer",
  2430. "yii2"
  2431. ],
  2432. "funding": [
  2433. {
  2434. "url": "https://github.com/yiisoft",
  2435. "type": "github"
  2436. },
  2437. {
  2438. "url": "https://opencollective.com/yiisoft",
  2439. "type": "open_collective"
  2440. },
  2441. {
  2442. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  2443. "type": "tidelift"
  2444. }
  2445. ],
  2446. "time": "2020-06-24T00:04:01+00:00"
  2447. },
  2448. {
  2449. "name": "yiisoft/yii2-httpclient",
  2450. "version": "2.0.15",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/yiisoft/yii2-httpclient.git",
  2454. "reference": "5a8350e15f2db3555ba52830c9c701587c136e87"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/yiisoft/yii2-httpclient/zipball/5a8350e15f2db3555ba52830c9c701587c136e87",
  2459. "reference": "5a8350e15f2db3555ba52830c9c701587c136e87",
  2460. "shasum": ""
  2461. },
  2462. "require": {
  2463. "paragonie/random_compat": ">=1",
  2464. "yiisoft/yii2": "~2.0.13"
  2465. },
  2466. "require-dev": {
  2467. "cweagans/composer-patches": "^1.7",
  2468. "phpunit/phpunit": "4.8.34"
  2469. },
  2470. "type": "yii2-extension",
  2471. "extra": {
  2472. "branch-alias": {
  2473. "dev-master": "2.0.x-dev"
  2474. },
  2475. "composer-exit-on-patch-failure": true,
  2476. "patches": {
  2477. "phpunit/phpunit-mock-objects": {
  2478. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2479. },
  2480. "phpunit/phpunit": {
  2481. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2482. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2483. }
  2484. }
  2485. },
  2486. "autoload": {
  2487. "psr-4": {
  2488. "yii\\httpclient\\": "src"
  2489. }
  2490. },
  2491. "notification-url": "https://packagist.org/downloads/",
  2492. "license": [
  2493. "BSD-3-Clause"
  2494. ],
  2495. "authors": [
  2496. {
  2497. "name": "Paul Klimov",
  2498. "email": "klimov.paul@gmail.com"
  2499. }
  2500. ],
  2501. "description": "HTTP client extension for the Yii framework",
  2502. "keywords": [
  2503. "curl",
  2504. "http",
  2505. "httpclient",
  2506. "yii2"
  2507. ],
  2508. "funding": [
  2509. {
  2510. "url": "https://github.com/yiisoft",
  2511. "type": "github"
  2512. },
  2513. {
  2514. "url": "https://opencollective.com/yiisoft",
  2515. "type": "open_collective"
  2516. },
  2517. {
  2518. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-httpclient",
  2519. "type": "tidelift"
  2520. }
  2521. ],
  2522. "time": "2023-05-22T18:32:24+00:00"
  2523. },
  2524. {
  2525. "name": "yiisoft/yii2-imagine",
  2526. "version": "2.3.1",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://github.com/yiisoft/yii2-imagine.git",
  2530. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  2535. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  2536. "shasum": ""
  2537. },
  2538. "require": {
  2539. "imagine/imagine": "^1.0",
  2540. "yiisoft/yii2": "~2.0.0"
  2541. },
  2542. "require-dev": {
  2543. "cweagans/composer-patches": "^1.7",
  2544. "phpunit/phpunit": "4.8.34"
  2545. },
  2546. "type": "yii2-extension",
  2547. "extra": {
  2548. "branch-alias": {
  2549. "dev-master": "2.0.x-dev"
  2550. },
  2551. "composer-exit-on-patch-failure": true,
  2552. "patches": {
  2553. "phpunit/phpunit-mock-objects": {
  2554. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2555. },
  2556. "phpunit/phpunit": {
  2557. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2558. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2559. }
  2560. }
  2561. },
  2562. "autoload": {
  2563. "psr-4": {
  2564. "yii\\imagine\\": "src"
  2565. }
  2566. },
  2567. "notification-url": "https://packagist.org/downloads/",
  2568. "license": [
  2569. "BSD-3-Clause"
  2570. ],
  2571. "authors": [
  2572. {
  2573. "name": "Antonio Ramirez",
  2574. "email": "amigo.cobos@gmail.com"
  2575. }
  2576. ],
  2577. "description": "The Imagine integration for the Yii framework",
  2578. "keywords": [
  2579. "helper",
  2580. "image",
  2581. "imagine",
  2582. "yii2"
  2583. ],
  2584. "funding": [
  2585. {
  2586. "url": "https://github.com/yiisoft",
  2587. "type": "github"
  2588. },
  2589. {
  2590. "url": "https://opencollective.com/yiisoft",
  2591. "type": "open_collective"
  2592. },
  2593. {
  2594. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-imagine",
  2595. "type": "tidelift"
  2596. }
  2597. ],
  2598. "time": "2022-09-04T10:06:40+00:00"
  2599. },
  2600. {
  2601. "name": "yiisoft/yii2-jui",
  2602. "version": "2.0.7",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/yiisoft/yii2-jui.git",
  2606. "reference": "ce45c16d4fbbe7d1c516d8d0e8311e07f6138eed"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/yiisoft/yii2-jui/zipball/ce45c16d4fbbe7d1c516d8d0e8311e07f6138eed",
  2611. "reference": "ce45c16d4fbbe7d1c516d8d0e8311e07f6138eed",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "bower-asset/jquery-ui": "~1.12.1",
  2616. "yiisoft/yii2": "~2.0.4"
  2617. },
  2618. "type": "yii2-extension",
  2619. "extra": {
  2620. "branch-alias": {
  2621. "dev-master": "2.0.x-dev"
  2622. }
  2623. },
  2624. "autoload": {
  2625. "psr-4": {
  2626. "yii\\jui\\": ""
  2627. }
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "BSD-3-Clause"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "Qiang Xue",
  2636. "email": "qiang.xue@gmail.com"
  2637. }
  2638. ],
  2639. "description": "The Jquery UI extension for the Yii framework",
  2640. "keywords": [
  2641. "jQuery UI",
  2642. "yii2"
  2643. ],
  2644. "time": "2017-11-25T15:32:29+00:00"
  2645. },
  2646. {
  2647. "name": "yiisoft/yii2-sphinx",
  2648. "version": "2.0.15",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/yiisoft/yii2-sphinx.git",
  2652. "reference": "7493de45fe76fbe25e3945824aa2b4664491394e"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/yiisoft/yii2-sphinx/zipball/7493de45fe76fbe25e3945824aa2b4664491394e",
  2657. "reference": "7493de45fe76fbe25e3945824aa2b4664491394e",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "ext-pdo": "*",
  2662. "ext-pdo_mysql": "*",
  2663. "yiisoft/yii2": "~2.0.13"
  2664. },
  2665. "require-dev": {
  2666. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  2667. },
  2668. "type": "yii2-extension",
  2669. "extra": {
  2670. "branch-alias": {
  2671. "dev-master": "2.0.x-dev"
  2672. }
  2673. },
  2674. "autoload": {
  2675. "psr-4": {
  2676. "yii\\sphinx\\": "src"
  2677. }
  2678. },
  2679. "notification-url": "https://packagist.org/downloads/",
  2680. "license": [
  2681. "BSD-3-Clause"
  2682. ],
  2683. "authors": [
  2684. {
  2685. "name": "Paul Klimov",
  2686. "email": "klimov.paul@gmail.com"
  2687. }
  2688. ],
  2689. "description": "Sphinx full text search engine extension for the Yii framework",
  2690. "keywords": [
  2691. "active-record",
  2692. "fulltext",
  2693. "search",
  2694. "sphinx",
  2695. "yii2"
  2696. ],
  2697. "support": {
  2698. "forum": "http://www.yiiframework.com/forum/",
  2699. "irc": "irc://irc.freenode.net/yii",
  2700. "issues": "https://github.com/yiisoft/yii2-sphinx/issues",
  2701. "source": "https://github.com/yiisoft/yii2-sphinx",
  2702. "wiki": "http://www.yiiframework.com/wiki/"
  2703. },
  2704. "funding": [
  2705. {
  2706. "url": "https://github.com/yiisoft",
  2707. "type": "github"
  2708. },
  2709. {
  2710. "url": "https://opencollective.com/yiisoft",
  2711. "type": "open_collective"
  2712. },
  2713. {
  2714. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-sphinx",
  2715. "type": "tidelift"
  2716. }
  2717. ],
  2718. "time": "2022-11-18T17:10:21+00:00"
  2719. },
  2720. {
  2721. "name": "yiisoft/yii2-swiftmailer",
  2722. "version": "2.1.3",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  2726. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  2731. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "swiftmailer/swiftmailer": "~6.0",
  2736. "yiisoft/yii2": ">=2.0.4"
  2737. },
  2738. "require-dev": {
  2739. "cweagans/composer-patches": "^1.7",
  2740. "phpunit/phpunit": "4.8.34"
  2741. },
  2742. "type": "yii2-extension",
  2743. "extra": {
  2744. "branch-alias": {
  2745. "dev-master": "2.1.x-dev"
  2746. },
  2747. "composer-exit-on-patch-failure": true,
  2748. "patches": {
  2749. "phpunit/phpunit-mock-objects": {
  2750. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2751. },
  2752. "phpunit/phpunit": {
  2753. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2754. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2755. }
  2756. }
  2757. },
  2758. "autoload": {
  2759. "psr-4": {
  2760. "yii\\swiftmailer\\": "src"
  2761. }
  2762. },
  2763. "notification-url": "https://packagist.org/downloads/",
  2764. "license": [
  2765. "BSD-3-Clause"
  2766. ],
  2767. "authors": [
  2768. {
  2769. "name": "Paul Klimov",
  2770. "email": "klimov.paul@gmail.com"
  2771. }
  2772. ],
  2773. "description": "The SwiftMailer integration for the Yii framework",
  2774. "keywords": [
  2775. "email",
  2776. "mail",
  2777. "mailer",
  2778. "swift",
  2779. "swiftmailer",
  2780. "yii2"
  2781. ],
  2782. "funding": [
  2783. {
  2784. "url": "https://github.com/yiisoft",
  2785. "type": "github"
  2786. },
  2787. {
  2788. "url": "https://opencollective.com/yiisoft",
  2789. "type": "open_collective"
  2790. },
  2791. {
  2792. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-swiftmailer",
  2793. "type": "tidelift"
  2794. }
  2795. ],
  2796. "time": "2021-12-30T08:48:48+00:00"
  2797. },
  2798. {
  2799. "name": "zxbodya/yii2-gallery-manager",
  2800. "version": "dev-master",
  2801. "source": {
  2802. "type": "git",
  2803. "url": "https://github.com/zxbodya/yii2-gallery-manager.git",
  2804. "reference": "72f9891dc81d04fd65c1dc1baff39ade06cf6783"
  2805. },
  2806. "dist": {
  2807. "type": "zip",
  2808. "url": "https://api.github.com/repos/zxbodya/yii2-gallery-manager/zipball/72f9891dc81d04fd65c1dc1baff39ade06cf6783",
  2809. "reference": "72f9891dc81d04fd65c1dc1baff39ade06cf6783",
  2810. "shasum": ""
  2811. },
  2812. "require": {
  2813. "yiisoft/yii2-imagine": "*",
  2814. "yiisoft/yii2-jui": "*"
  2815. },
  2816. "type": "yii2-extension",
  2817. "autoload": {
  2818. "psr-4": {
  2819. "zxbodya\\yii2\\galleryManager\\": ""
  2820. }
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Bogdan Savluk",
  2829. "email": "savluk.bogdan@gmail.com"
  2830. }
  2831. ],
  2832. "description": "Extension for yii, that allows to manage image galleries",
  2833. "keywords": [
  2834. "extension",
  2835. "gallery",
  2836. "image",
  2837. "yii2"
  2838. ],
  2839. "time": "2020-12-07T22:26:14+00:00"
  2840. }
  2841. ],
  2842. "packages-dev": [
  2843. {
  2844. "name": "behat/gherkin",
  2845. "version": "v4.9.0",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/Behat/Gherkin.git",
  2849. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  2854. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "php": "~7.2|~8.0"
  2859. },
  2860. "require-dev": {
  2861. "cucumber/cucumber": "dev-gherkin-22.0.0",
  2862. "phpunit/phpunit": "~8|~9",
  2863. "symfony/yaml": "~3|~4|~5"
  2864. },
  2865. "suggest": {
  2866. "symfony/yaml": "If you want to parse features, represented in YAML files"
  2867. },
  2868. "type": "library",
  2869. "extra": {
  2870. "branch-alias": {
  2871. "dev-master": "4.x-dev"
  2872. }
  2873. },
  2874. "autoload": {
  2875. "psr-0": {
  2876. "Behat\\Gherkin": "src/"
  2877. }
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "authors": [
  2884. {
  2885. "name": "Konstantin Kudryashov",
  2886. "email": "ever.zet@gmail.com",
  2887. "homepage": "http://everzet.com"
  2888. }
  2889. ],
  2890. "description": "Gherkin DSL parser for PHP",
  2891. "homepage": "http://behat.org/",
  2892. "keywords": [
  2893. "BDD",
  2894. "Behat",
  2895. "Cucumber",
  2896. "DSL",
  2897. "gherkin",
  2898. "parser"
  2899. ],
  2900. "time": "2021-10-12T13:05:09+00:00"
  2901. },
  2902. {
  2903. "name": "codeception/codeception",
  2904. "version": "4.2.2",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/Codeception/Codeception.git",
  2908. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b88014f3348c93f3df99dc6d0967b0dbfa804474",
  2913. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "behat/gherkin": "^4.4.0",
  2918. "codeception/lib-asserts": "^1.0 | 2.0.*@dev",
  2919. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  2920. "codeception/stub": "^2.0 | ^3.0 | ^4.0",
  2921. "ext-curl": "*",
  2922. "ext-json": "*",
  2923. "ext-mbstring": "*",
  2924. "guzzlehttp/psr7": "^1.4 | ^2.0",
  2925. "php": ">=5.6.0 <9.0",
  2926. "symfony/console": ">=2.7 <6.0",
  2927. "symfony/css-selector": ">=2.7 <6.0",
  2928. "symfony/event-dispatcher": ">=2.7 <6.0",
  2929. "symfony/finder": ">=2.7 <6.0",
  2930. "symfony/yaml": ">=2.7 <6.0"
  2931. },
  2932. "require-dev": {
  2933. "codeception/module-asserts": "^1.0 | 2.0.*@dev",
  2934. "codeception/module-cli": "^1.0 | 2.0.*@dev",
  2935. "codeception/module-db": "^1.0 | 2.0.*@dev",
  2936. "codeception/module-filesystem": "^1.0 | 2.0.*@dev",
  2937. "codeception/module-phpbrowser": "^1.0 | 2.0.*@dev",
  2938. "codeception/specify": "~0.3",
  2939. "codeception/util-universalframework": "*@dev",
  2940. "monolog/monolog": "~1.8",
  2941. "squizlabs/php_codesniffer": "~2.0",
  2942. "symfony/process": ">=2.7 <6.0",
  2943. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  2944. },
  2945. "suggest": {
  2946. "codeception/specify": "BDD-style code blocks",
  2947. "codeception/verify": "BDD-style assertions",
  2948. "hoa/console": "For interactive console functionality",
  2949. "stecman/symfony-console-completion": "For BASH autocompletion",
  2950. "symfony/phpunit-bridge": "For phpunit-bridge support"
  2951. },
  2952. "bin": [
  2953. "codecept"
  2954. ],
  2955. "type": "library",
  2956. "extra": {
  2957. "branch-alias": []
  2958. },
  2959. "autoload": {
  2960. "files": [
  2961. "functions.php"
  2962. ],
  2963. "psr-4": {
  2964. "Codeception\\": "src/Codeception",
  2965. "Codeception\\Extension\\": "ext"
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Michael Bodnarchuk",
  2975. "email": "davert@mail.ua",
  2976. "homepage": "https://codegyre.com"
  2977. }
  2978. ],
  2979. "description": "BDD-style testing framework",
  2980. "homepage": "https://codeception.com/",
  2981. "keywords": [
  2982. "BDD",
  2983. "TDD",
  2984. "acceptance testing",
  2985. "functional testing",
  2986. "unit testing"
  2987. ],
  2988. "funding": [
  2989. {
  2990. "url": "https://opencollective.com/codeception",
  2991. "type": "open_collective"
  2992. }
  2993. ],
  2994. "time": "2022-08-13T13:28:25+00:00"
  2995. },
  2996. {
  2997. "name": "codeception/lib-asserts",
  2998. "version": "1.13.2",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/Codeception/lib-asserts.git",
  3002. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  3007. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  3012. "ext-dom": "*",
  3013. "php": ">=5.6.0 <9.0"
  3014. },
  3015. "type": "library",
  3016. "autoload": {
  3017. "classmap": [
  3018. "src/"
  3019. ]
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Michael Bodnarchuk",
  3028. "email": "davert@mail.ua",
  3029. "homepage": "http://codegyre.com"
  3030. },
  3031. {
  3032. "name": "Gintautas Miselis"
  3033. },
  3034. {
  3035. "name": "Gustavo Nieves",
  3036. "homepage": "https://medium.com/@ganieves"
  3037. }
  3038. ],
  3039. "description": "Assertion methods used by Codeception core and Asserts module",
  3040. "homepage": "https://codeception.com/",
  3041. "keywords": [
  3042. "codeception"
  3043. ],
  3044. "time": "2020-10-21T16:26:20+00:00"
  3045. },
  3046. {
  3047. "name": "codeception/lib-innerbrowser",
  3048. "version": "1.5.1",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  3052. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3057. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3058. "shasum": ""
  3059. },
  3060. "require": {
  3061. "codeception/codeception": "4.*@dev",
  3062. "ext-dom": "*",
  3063. "ext-json": "*",
  3064. "ext-mbstring": "*",
  3065. "php": ">=5.6.0 <9.0",
  3066. "symfony/browser-kit": ">=2.7 <6.0",
  3067. "symfony/dom-crawler": ">=2.7 <6.0"
  3068. },
  3069. "conflict": {
  3070. "codeception/codeception": "<4.0"
  3071. },
  3072. "require-dev": {
  3073. "codeception/util-universalframework": "dev-master"
  3074. },
  3075. "type": "library",
  3076. "autoload": {
  3077. "classmap": [
  3078. "src/"
  3079. ]
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "MIT"
  3084. ],
  3085. "authors": [
  3086. {
  3087. "name": "Michael Bodnarchuk",
  3088. "email": "davert@mail.ua",
  3089. "homepage": "http://codegyre.com"
  3090. },
  3091. {
  3092. "name": "Gintautas Miselis"
  3093. }
  3094. ],
  3095. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  3096. "homepage": "https://codeception.com/",
  3097. "keywords": [
  3098. "codeception"
  3099. ],
  3100. "time": "2021-08-30T15:21:42+00:00"
  3101. },
  3102. {
  3103. "name": "codeception/module-asserts",
  3104. "version": "1.3.1",
  3105. "source": {
  3106. "type": "git",
  3107. "url": "https://github.com/Codeception/module-asserts.git",
  3108. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  3109. },
  3110. "dist": {
  3111. "type": "zip",
  3112. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3113. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3114. "shasum": ""
  3115. },
  3116. "require": {
  3117. "codeception/codeception": "*@dev",
  3118. "codeception/lib-asserts": "^1.13.1",
  3119. "php": ">=5.6.0 <9.0"
  3120. },
  3121. "conflict": {
  3122. "codeception/codeception": "<4.0"
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "classmap": [
  3127. "src/"
  3128. ]
  3129. },
  3130. "notification-url": "https://packagist.org/downloads/",
  3131. "license": [
  3132. "MIT"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "Michael Bodnarchuk"
  3137. },
  3138. {
  3139. "name": "Gintautas Miselis"
  3140. },
  3141. {
  3142. "name": "Gustavo Nieves",
  3143. "homepage": "https://medium.com/@ganieves"
  3144. }
  3145. ],
  3146. "description": "Codeception module containing various assertions",
  3147. "homepage": "https://codeception.com/",
  3148. "keywords": [
  3149. "assertions",
  3150. "asserts",
  3151. "codeception"
  3152. ],
  3153. "time": "2020-10-21T16:48:15+00:00"
  3154. },
  3155. {
  3156. "name": "codeception/module-filesystem",
  3157. "version": "1.0.3",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/Codeception/module-filesystem.git",
  3161. "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/781be167fb1557bfc9b61e0a4eac60a32c534ec1",
  3166. "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "codeception/codeception": "^4.0",
  3171. "php": ">=5.6.0 <9.0",
  3172. "symfony/finder": ">=2.7 <6.0"
  3173. },
  3174. "conflict": {
  3175. "codeception/codeception": "<4.0"
  3176. },
  3177. "type": "library",
  3178. "autoload": {
  3179. "classmap": [
  3180. "src/"
  3181. ]
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "MIT"
  3186. ],
  3187. "authors": [
  3188. {
  3189. "name": "Michael Bodnarchuk"
  3190. },
  3191. {
  3192. "name": "Gintautas Miselis"
  3193. }
  3194. ],
  3195. "description": "Codeception module for testing local filesystem",
  3196. "homepage": "http://codeception.com/",
  3197. "keywords": [
  3198. "codeception",
  3199. "filesystem"
  3200. ],
  3201. "time": "2020-10-24T14:46:40+00:00"
  3202. },
  3203. {
  3204. "name": "codeception/module-yii2",
  3205. "version": "1.1.5",
  3206. "source": {
  3207. "type": "git",
  3208. "url": "https://github.com/Codeception/module-yii2.git",
  3209. "reference": "14269d059b8eaedf3d414a673907bd874cd4ed04"
  3210. },
  3211. "dist": {
  3212. "type": "zip",
  3213. "url": "https://api.github.com/repos/Codeception/module-yii2/zipball/14269d059b8eaedf3d414a673907bd874cd4ed04",
  3214. "reference": "14269d059b8eaedf3d414a673907bd874cd4ed04",
  3215. "shasum": ""
  3216. },
  3217. "require": {
  3218. "codeception/codeception": "^4.0",
  3219. "codeception/lib-innerbrowser": "^1.0",
  3220. "php": ">=5.6.0 <=8.1 | ~8.1.0"
  3221. },
  3222. "require-dev": {
  3223. "codeception/module-asserts": "^1.3",
  3224. "codeception/module-filesystem": "^1.0",
  3225. "codeception/verify": "<2",
  3226. "codemix/yii2-localeurls": "^1.7",
  3227. "yiisoft/yii2": "dev-master",
  3228. "yiisoft/yii2-app-advanced": "dev-master"
  3229. },
  3230. "type": "library",
  3231. "autoload": {
  3232. "classmap": [
  3233. "src/"
  3234. ]
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "MIT"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "Alexander Makarov"
  3243. },
  3244. {
  3245. "name": "Sam Mouse"
  3246. },
  3247. {
  3248. "name": "Michael Bodnarchuk"
  3249. }
  3250. ],
  3251. "description": "Codeception module for Yii2 framework",
  3252. "homepage": "http://codeception.com/",
  3253. "keywords": [
  3254. "codeception",
  3255. "yii2"
  3256. ],
  3257. "time": "2021-12-30T09:16:01+00:00"
  3258. },
  3259. {
  3260. "name": "codeception/phpunit-wrapper",
  3261. "version": "8.1.6",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  3265. "reference": "7d3479bab7e2b6349044db8af11cd05d57809f9c"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7d3479bab7e2b6349044db8af11cd05d57809f9c",
  3270. "reference": "7d3479bab7e2b6349044db8af11cd05d57809f9c",
  3271. "shasum": ""
  3272. },
  3273. "require": {
  3274. "php": ">=7.2",
  3275. "phpunit/php-code-coverage": "^7.0",
  3276. "phpunit/phpunit": "^8.0",
  3277. "sebastian/comparator": "^3.0",
  3278. "sebastian/diff": "^3.0"
  3279. },
  3280. "require-dev": {
  3281. "codeception/specify": "*",
  3282. "vlucas/phpdotenv": "^3.0"
  3283. },
  3284. "type": "library",
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Codeception\\PHPUnit\\": "src/"
  3288. }
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Davert",
  3297. "email": "davert.php@resend.cc"
  3298. }
  3299. ],
  3300. "description": "PHPUnit classes used by Codeception",
  3301. "time": "2022-05-23T06:22:33+00:00"
  3302. },
  3303. {
  3304. "name": "codeception/specify",
  3305. "version": "0.4.6",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/Codeception/Specify.git",
  3309. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://api.github.com/repos/Codeception/Specify/zipball/21b586f503ca444aa519dd9cafb32f113a05f286",
  3314. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "myclabs/deep-copy": "~1.1",
  3319. "php": ">=5.4.0"
  3320. },
  3321. "require-dev": {
  3322. "phpunit/phpunit": "~4.0"
  3323. },
  3324. "type": "library",
  3325. "autoload": {
  3326. "psr-0": {
  3327. "Codeception\\": "src/"
  3328. }
  3329. },
  3330. "notification-url": "https://packagist.org/downloads/",
  3331. "license": [
  3332. "MIT"
  3333. ],
  3334. "authors": [
  3335. {
  3336. "name": "Michael Bodnarchuk",
  3337. "email": "davert.php@mailican.com"
  3338. }
  3339. ],
  3340. "description": "BDD code blocks for PHPUnit and Codeception",
  3341. "time": "2016-10-21T09:42:00+00:00"
  3342. },
  3343. {
  3344. "name": "codeception/stub",
  3345. "version": "4.0.2",
  3346. "source": {
  3347. "type": "git",
  3348. "url": "https://github.com/Codeception/Stub.git",
  3349. "reference": "18a148dacd293fc7b044042f5aa63a82b08bff5d"
  3350. },
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://api.github.com/repos/Codeception/Stub/zipball/18a148dacd293fc7b044042f5aa63a82b08bff5d",
  3354. "reference": "18a148dacd293fc7b044042f5aa63a82b08bff5d",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "php": "^7.4 | ^8.0",
  3359. "phpunit/phpunit": "^8.4 | ^9.0 | ^10.0 | 10.0.x-dev"
  3360. },
  3361. "require-dev": {
  3362. "consolidation/robo": "^3.0"
  3363. },
  3364. "type": "library",
  3365. "autoload": {
  3366. "psr-4": {
  3367. "Codeception\\": "src/"
  3368. }
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "MIT"
  3373. ],
  3374. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  3375. "time": "2022-01-31T19:25:15+00:00"
  3376. },
  3377. {
  3378. "name": "codeception/verify",
  3379. "version": "1.1.0",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/Codeception/Verify.git",
  3383. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/Codeception/Verify/zipball/fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  3388. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.4",
  3393. "php": ">= 7.0",
  3394. "phpunit/phpunit": "> 6.0"
  3395. },
  3396. "type": "library",
  3397. "autoload": {
  3398. "files": [
  3399. "src/Codeception/function.php"
  3400. ],
  3401. "psr-4": {
  3402. "Codeception\\": "src\\Codeception"
  3403. }
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "MIT"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Michael Bodnarchuk",
  3412. "email": "davert@codeception.com"
  3413. }
  3414. ],
  3415. "description": "BDD assertion library for PHPUnit",
  3416. "time": "2019-07-30T18:21:46+00:00"
  3417. },
  3418. {
  3419. "name": "doctrine/instantiator",
  3420. "version": "1.5.0",
  3421. "source": {
  3422. "type": "git",
  3423. "url": "https://github.com/doctrine/instantiator.git",
  3424. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  3425. },
  3426. "dist": {
  3427. "type": "zip",
  3428. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  3429. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  3430. "shasum": ""
  3431. },
  3432. "require": {
  3433. "php": "^7.1 || ^8.0"
  3434. },
  3435. "require-dev": {
  3436. "doctrine/coding-standard": "^9 || ^11",
  3437. "ext-pdo": "*",
  3438. "ext-phar": "*",
  3439. "phpbench/phpbench": "^0.16 || ^1",
  3440. "phpstan/phpstan": "^1.4",
  3441. "phpstan/phpstan-phpunit": "^1",
  3442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  3443. "vimeo/psalm": "^4.30 || ^5.4"
  3444. },
  3445. "type": "library",
  3446. "autoload": {
  3447. "psr-4": {
  3448. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3449. }
  3450. },
  3451. "notification-url": "https://packagist.org/downloads/",
  3452. "license": [
  3453. "MIT"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "Marco Pivetta",
  3458. "email": "ocramius@gmail.com",
  3459. "homepage": "https://ocramius.github.io/"
  3460. }
  3461. ],
  3462. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3463. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3464. "keywords": [
  3465. "constructor",
  3466. "instantiate"
  3467. ],
  3468. "funding": [
  3469. {
  3470. "url": "https://www.doctrine-project.org/sponsorship.html",
  3471. "type": "custom"
  3472. },
  3473. {
  3474. "url": "https://www.patreon.com/phpdoctrine",
  3475. "type": "patreon"
  3476. },
  3477. {
  3478. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3479. "type": "tidelift"
  3480. }
  3481. ],
  3482. "time": "2022-12-30T00:15:36+00:00"
  3483. },
  3484. {
  3485. "name": "fakerphp/faker",
  3486. "version": "v1.23.0",
  3487. "source": {
  3488. "type": "git",
  3489. "url": "https://github.com/FakerPHP/Faker.git",
  3490. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  3491. },
  3492. "dist": {
  3493. "type": "zip",
  3494. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  3495. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  3496. "shasum": ""
  3497. },
  3498. "require": {
  3499. "php": "^7.4 || ^8.0",
  3500. "psr/container": "^1.0 || ^2.0",
  3501. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  3502. },
  3503. "conflict": {
  3504. "fzaninotto/faker": "*"
  3505. },
  3506. "require-dev": {
  3507. "bamarni/composer-bin-plugin": "^1.4.1",
  3508. "doctrine/persistence": "^1.3 || ^2.0",
  3509. "ext-intl": "*",
  3510. "phpunit/phpunit": "^9.5.26",
  3511. "symfony/phpunit-bridge": "^5.4.16"
  3512. },
  3513. "suggest": {
  3514. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  3515. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  3516. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  3517. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  3518. "ext-mbstring": "Required for multibyte Unicode string functionality."
  3519. },
  3520. "type": "library",
  3521. "extra": {
  3522. "branch-alias": {
  3523. "dev-main": "v1.21-dev"
  3524. }
  3525. },
  3526. "autoload": {
  3527. "psr-4": {
  3528. "Faker\\": "src/Faker/"
  3529. }
  3530. },
  3531. "notification-url": "https://packagist.org/downloads/",
  3532. "license": [
  3533. "MIT"
  3534. ],
  3535. "authors": [
  3536. {
  3537. "name": "François Zaninotto"
  3538. }
  3539. ],
  3540. "description": "Faker is a PHP library that generates fake data for you.",
  3541. "keywords": [
  3542. "data",
  3543. "faker",
  3544. "fixtures"
  3545. ],
  3546. "time": "2023-06-12T08:44:38+00:00"
  3547. },
  3548. {
  3549. "name": "guzzlehttp/psr7",
  3550. "version": "2.6.1",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://github.com/guzzle/psr7.git",
  3554. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  3559. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  3560. "shasum": ""
  3561. },
  3562. "require": {
  3563. "php": "^7.2.5 || ^8.0",
  3564. "psr/http-factory": "^1.0",
  3565. "psr/http-message": "^1.1 || ^2.0",
  3566. "ralouphie/getallheaders": "^3.0"
  3567. },
  3568. "provide": {
  3569. "psr/http-factory-implementation": "1.0",
  3570. "psr/http-message-implementation": "1.0"
  3571. },
  3572. "require-dev": {
  3573. "bamarni/composer-bin-plugin": "^1.8.1",
  3574. "http-interop/http-factory-tests": "^0.9",
  3575. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  3576. },
  3577. "suggest": {
  3578. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  3579. },
  3580. "type": "library",
  3581. "extra": {
  3582. "bamarni-bin": {
  3583. "bin-links": true,
  3584. "forward-command": false
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "GuzzleHttp\\Psr7\\": "src/"
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Graham Campbell",
  3599. "email": "hello@gjcampbell.co.uk",
  3600. "homepage": "https://github.com/GrahamCampbell"
  3601. },
  3602. {
  3603. "name": "Michael Dowling",
  3604. "email": "mtdowling@gmail.com",
  3605. "homepage": "https://github.com/mtdowling"
  3606. },
  3607. {
  3608. "name": "George Mponos",
  3609. "email": "gmponos@gmail.com",
  3610. "homepage": "https://github.com/gmponos"
  3611. },
  3612. {
  3613. "name": "Tobias Nyholm",
  3614. "email": "tobias.nyholm@gmail.com",
  3615. "homepage": "https://github.com/Nyholm"
  3616. },
  3617. {
  3618. "name": "Márk Sági-Kazár",
  3619. "email": "mark.sagikazar@gmail.com",
  3620. "homepage": "https://github.com/sagikazarmark"
  3621. },
  3622. {
  3623. "name": "Tobias Schultze",
  3624. "email": "webmaster@tubo-world.de",
  3625. "homepage": "https://github.com/Tobion"
  3626. },
  3627. {
  3628. "name": "Márk Sági-Kazár",
  3629. "email": "mark.sagikazar@gmail.com",
  3630. "homepage": "https://sagikazarmark.hu"
  3631. }
  3632. ],
  3633. "description": "PSR-7 message implementation that also provides common utility methods",
  3634. "keywords": [
  3635. "http",
  3636. "message",
  3637. "psr-7",
  3638. "request",
  3639. "response",
  3640. "stream",
  3641. "uri",
  3642. "url"
  3643. ],
  3644. "funding": [
  3645. {
  3646. "url": "https://github.com/GrahamCampbell",
  3647. "type": "github"
  3648. },
  3649. {
  3650. "url": "https://github.com/Nyholm",
  3651. "type": "github"
  3652. },
  3653. {
  3654. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  3655. "type": "tidelift"
  3656. }
  3657. ],
  3658. "time": "2023-08-27T10:13:57+00:00"
  3659. },
  3660. {
  3661. "name": "insolita/yii2-migration-generator",
  3662. "version": "3.2",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/Insolita/yii2-migrik.git",
  3666. "reference": "f7584aba1d0d0879f566189812c988b4fc7f2cb8"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/Insolita/yii2-migrik/zipball/f7584aba1d0d0879f566189812c988b4fc7f2cb8",
  3671. "reference": "f7584aba1d0d0879f566189812c988b4fc7f2cb8",
  3672. "shasum": ""
  3673. },
  3674. "require": {
  3675. "yiisoft/yii2": ">=2.0.14"
  3676. },
  3677. "require-dev": {
  3678. "yiisoft/yii2-gii": "*"
  3679. },
  3680. "suggest": {
  3681. "nesbot/carbon": "for testing ",
  3682. "vlucas/phpdotenv": "for testing"
  3683. },
  3684. "type": "yii2-extension",
  3685. "extra": {
  3686. "bootstrap": "insolita\\migrik\\Bootstrap"
  3687. },
  3688. "autoload": {
  3689. "psr-4": {
  3690. "insolita\\migrik\\": ""
  3691. }
  3692. },
  3693. "notification-url": "https://packagist.org/downloads/",
  3694. "license": [
  3695. "MIT"
  3696. ],
  3697. "authors": [
  3698. {
  3699. "name": "insolita",
  3700. "email": "donnainsolita@gmail.com"
  3701. }
  3702. ],
  3703. "description": "Set of gii tools for generating files for migration by schema of table , phpdoc or table data",
  3704. "keywords": [
  3705. "extension",
  3706. "yii2"
  3707. ],
  3708. "time": "2019-07-26T10:58:40+00:00"
  3709. },
  3710. {
  3711. "name": "myclabs/deep-copy",
  3712. "version": "1.11.1",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/myclabs/DeepCopy.git",
  3716. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  3721. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": "^7.1 || ^8.0"
  3726. },
  3727. "conflict": {
  3728. "doctrine/collections": "<1.6.8",
  3729. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  3730. },
  3731. "require-dev": {
  3732. "doctrine/collections": "^1.6.8",
  3733. "doctrine/common": "^2.13.3 || ^3.2.2",
  3734. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3735. },
  3736. "type": "library",
  3737. "autoload": {
  3738. "files": [
  3739. "src/DeepCopy/deep_copy.php"
  3740. ],
  3741. "psr-4": {
  3742. "DeepCopy\\": "src/DeepCopy/"
  3743. }
  3744. },
  3745. "notification-url": "https://packagist.org/downloads/",
  3746. "license": [
  3747. "MIT"
  3748. ],
  3749. "description": "Create deep copies (clones) of your objects",
  3750. "keywords": [
  3751. "clone",
  3752. "copy",
  3753. "duplicate",
  3754. "object",
  3755. "object graph"
  3756. ],
  3757. "funding": [
  3758. {
  3759. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3760. "type": "tidelift"
  3761. }
  3762. ],
  3763. "time": "2023-03-08T13:26:56+00:00"
  3764. },
  3765. {
  3766. "name": "phar-io/manifest",
  3767. "version": "2.0.3",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/phar-io/manifest.git",
  3771. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  3776. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  3777. "shasum": ""
  3778. },
  3779. "require": {
  3780. "ext-dom": "*",
  3781. "ext-phar": "*",
  3782. "ext-xmlwriter": "*",
  3783. "phar-io/version": "^3.0.1",
  3784. "php": "^7.2 || ^8.0"
  3785. },
  3786. "type": "library",
  3787. "extra": {
  3788. "branch-alias": {
  3789. "dev-master": "2.0.x-dev"
  3790. }
  3791. },
  3792. "autoload": {
  3793. "classmap": [
  3794. "src/"
  3795. ]
  3796. },
  3797. "notification-url": "https://packagist.org/downloads/",
  3798. "license": [
  3799. "BSD-3-Clause"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "Arne Blankerts",
  3804. "email": "arne@blankerts.de",
  3805. "role": "Developer"
  3806. },
  3807. {
  3808. "name": "Sebastian Heuer",
  3809. "email": "sebastian@phpeople.de",
  3810. "role": "Developer"
  3811. },
  3812. {
  3813. "name": "Sebastian Bergmann",
  3814. "email": "sebastian@phpunit.de",
  3815. "role": "Developer"
  3816. }
  3817. ],
  3818. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3819. "time": "2021-07-20T11:28:43+00:00"
  3820. },
  3821. {
  3822. "name": "phar-io/version",
  3823. "version": "3.2.1",
  3824. "source": {
  3825. "type": "git",
  3826. "url": "https://github.com/phar-io/version.git",
  3827. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  3828. },
  3829. "dist": {
  3830. "type": "zip",
  3831. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3832. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3833. "shasum": ""
  3834. },
  3835. "require": {
  3836. "php": "^7.2 || ^8.0"
  3837. },
  3838. "type": "library",
  3839. "autoload": {
  3840. "classmap": [
  3841. "src/"
  3842. ]
  3843. },
  3844. "notification-url": "https://packagist.org/downloads/",
  3845. "license": [
  3846. "BSD-3-Clause"
  3847. ],
  3848. "authors": [
  3849. {
  3850. "name": "Arne Blankerts",
  3851. "email": "arne@blankerts.de",
  3852. "role": "Developer"
  3853. },
  3854. {
  3855. "name": "Sebastian Heuer",
  3856. "email": "sebastian@phpeople.de",
  3857. "role": "Developer"
  3858. },
  3859. {
  3860. "name": "Sebastian Bergmann",
  3861. "email": "sebastian@phpunit.de",
  3862. "role": "Developer"
  3863. }
  3864. ],
  3865. "description": "Library for handling version information and constraints",
  3866. "time": "2022-02-21T01:04:05+00:00"
  3867. },
  3868. {
  3869. "name": "phpspec/php-diff",
  3870. "version": "v1.1.3",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/phpspec/php-diff.git",
  3874. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  3879. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  3880. "shasum": ""
  3881. },
  3882. "type": "library",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-master": "1.0.x-dev"
  3886. }
  3887. },
  3888. "autoload": {
  3889. "psr-0": {
  3890. "Diff": "lib/"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "BSD-3-Clause"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Chris Boulton",
  3900. "homepage": "http://github.com/chrisboulton"
  3901. }
  3902. ],
  3903. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  3904. "time": "2020-09-18T13:47:07+00:00"
  3905. },
  3906. {
  3907. "name": "phpunit/php-code-coverage",
  3908. "version": "7.0.15",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3912. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  3917. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  3918. "shasum": ""
  3919. },
  3920. "require": {
  3921. "ext-dom": "*",
  3922. "ext-xmlwriter": "*",
  3923. "php": ">=7.2",
  3924. "phpunit/php-file-iterator": "^2.0.2",
  3925. "phpunit/php-text-template": "^1.2.1",
  3926. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  3927. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3928. "sebastian/environment": "^4.2.2",
  3929. "sebastian/version": "^2.0.1",
  3930. "theseer/tokenizer": "^1.1.3"
  3931. },
  3932. "require-dev": {
  3933. "phpunit/phpunit": "^8.2.2"
  3934. },
  3935. "suggest": {
  3936. "ext-xdebug": "^2.7.2"
  3937. },
  3938. "type": "library",
  3939. "extra": {
  3940. "branch-alias": {
  3941. "dev-master": "7.0-dev"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "classmap": [
  3946. "src/"
  3947. ]
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "BSD-3-Clause"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Sebastian Bergmann",
  3956. "email": "sebastian@phpunit.de",
  3957. "role": "lead"
  3958. }
  3959. ],
  3960. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3961. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3962. "keywords": [
  3963. "coverage",
  3964. "testing",
  3965. "xunit"
  3966. ],
  3967. "funding": [
  3968. {
  3969. "url": "https://github.com/sebastianbergmann",
  3970. "type": "github"
  3971. }
  3972. ],
  3973. "time": "2021-07-26T12:20:09+00:00"
  3974. },
  3975. {
  3976. "name": "phpunit/php-file-iterator",
  3977. "version": "2.0.5",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3981. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  3986. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  3987. "shasum": ""
  3988. },
  3989. "require": {
  3990. "php": ">=7.1"
  3991. },
  3992. "require-dev": {
  3993. "phpunit/phpunit": "^8.5"
  3994. },
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "2.0.x-dev"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "classmap": [
  4003. "src/"
  4004. ]
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "BSD-3-Clause"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Sebastian Bergmann",
  4013. "email": "sebastian@phpunit.de",
  4014. "role": "lead"
  4015. }
  4016. ],
  4017. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4018. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4019. "keywords": [
  4020. "filesystem",
  4021. "iterator"
  4022. ],
  4023. "funding": [
  4024. {
  4025. "url": "https://github.com/sebastianbergmann",
  4026. "type": "github"
  4027. }
  4028. ],
  4029. "time": "2021-12-02T12:42:26+00:00"
  4030. },
  4031. {
  4032. "name": "phpunit/php-text-template",
  4033. "version": "1.2.1",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4037. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4042. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4043. "shasum": ""
  4044. },
  4045. "require": {
  4046. "php": ">=5.3.3"
  4047. },
  4048. "type": "library",
  4049. "autoload": {
  4050. "classmap": [
  4051. "src/"
  4052. ]
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "BSD-3-Clause"
  4057. ],
  4058. "authors": [
  4059. {
  4060. "name": "Sebastian Bergmann",
  4061. "email": "sebastian@phpunit.de",
  4062. "role": "lead"
  4063. }
  4064. ],
  4065. "description": "Simple template engine.",
  4066. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4067. "keywords": [
  4068. "template"
  4069. ],
  4070. "time": "2015-06-21T13:50:34+00:00"
  4071. },
  4072. {
  4073. "name": "phpunit/php-timer",
  4074. "version": "2.1.3",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4078. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  4083. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  4084. "shasum": ""
  4085. },
  4086. "require": {
  4087. "php": ">=7.1"
  4088. },
  4089. "require-dev": {
  4090. "phpunit/phpunit": "^8.5"
  4091. },
  4092. "type": "library",
  4093. "extra": {
  4094. "branch-alias": {
  4095. "dev-master": "2.1-dev"
  4096. }
  4097. },
  4098. "autoload": {
  4099. "classmap": [
  4100. "src/"
  4101. ]
  4102. },
  4103. "notification-url": "https://packagist.org/downloads/",
  4104. "license": [
  4105. "BSD-3-Clause"
  4106. ],
  4107. "authors": [
  4108. {
  4109. "name": "Sebastian Bergmann",
  4110. "email": "sebastian@phpunit.de",
  4111. "role": "lead"
  4112. }
  4113. ],
  4114. "description": "Utility class for timing",
  4115. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4116. "keywords": [
  4117. "timer"
  4118. ],
  4119. "funding": [
  4120. {
  4121. "url": "https://github.com/sebastianbergmann",
  4122. "type": "github"
  4123. }
  4124. ],
  4125. "time": "2020-11-30T08:20:02+00:00"
  4126. },
  4127. {
  4128. "name": "phpunit/php-token-stream",
  4129. "version": "4.0.4",
  4130. "source": {
  4131. "type": "git",
  4132. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4133. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  4134. },
  4135. "dist": {
  4136. "type": "zip",
  4137. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  4138. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  4139. "shasum": ""
  4140. },
  4141. "require": {
  4142. "ext-tokenizer": "*",
  4143. "php": "^7.3 || ^8.0"
  4144. },
  4145. "require-dev": {
  4146. "phpunit/phpunit": "^9.0"
  4147. },
  4148. "type": "library",
  4149. "extra": {
  4150. "branch-alias": {
  4151. "dev-master": "4.0-dev"
  4152. }
  4153. },
  4154. "autoload": {
  4155. "classmap": [
  4156. "src/"
  4157. ]
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "BSD-3-Clause"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "Sebastian Bergmann",
  4166. "email": "sebastian@phpunit.de"
  4167. }
  4168. ],
  4169. "description": "Wrapper around PHP's tokenizer extension.",
  4170. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4171. "keywords": [
  4172. "tokenizer"
  4173. ],
  4174. "funding": [
  4175. {
  4176. "url": "https://github.com/sebastianbergmann",
  4177. "type": "github"
  4178. }
  4179. ],
  4180. "abandoned": true,
  4181. "time": "2020-08-04T08:28:15+00:00"
  4182. },
  4183. {
  4184. "name": "phpunit/phpunit",
  4185. "version": "8.5.34",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4189. "reference": "622d0186707f39a4ae71df3bcf42d759bb868854"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/622d0186707f39a4ae71df3bcf42d759bb868854",
  4194. "reference": "622d0186707f39a4ae71df3bcf42d759bb868854",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "doctrine/instantiator": "^1.3.1",
  4199. "ext-dom": "*",
  4200. "ext-json": "*",
  4201. "ext-libxml": "*",
  4202. "ext-mbstring": "*",
  4203. "ext-xml": "*",
  4204. "ext-xmlwriter": "*",
  4205. "myclabs/deep-copy": "^1.10.0",
  4206. "phar-io/manifest": "^2.0.3",
  4207. "phar-io/version": "^3.0.2",
  4208. "php": ">=7.2",
  4209. "phpunit/php-code-coverage": "^7.0.12",
  4210. "phpunit/php-file-iterator": "^2.0.4",
  4211. "phpunit/php-text-template": "^1.2.1",
  4212. "phpunit/php-timer": "^2.1.2",
  4213. "sebastian/comparator": "^3.0.5",
  4214. "sebastian/diff": "^3.0.2",
  4215. "sebastian/environment": "^4.2.3",
  4216. "sebastian/exporter": "^3.1.5",
  4217. "sebastian/global-state": "^3.0.0",
  4218. "sebastian/object-enumerator": "^3.0.3",
  4219. "sebastian/resource-operations": "^2.0.1",
  4220. "sebastian/type": "^1.1.3",
  4221. "sebastian/version": "^2.0.1"
  4222. },
  4223. "suggest": {
  4224. "ext-soap": "To be able to generate mocks based on WSDL files",
  4225. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage",
  4226. "phpunit/php-invoker": "To allow enforcing time limits"
  4227. },
  4228. "bin": [
  4229. "phpunit"
  4230. ],
  4231. "type": "library",
  4232. "extra": {
  4233. "branch-alias": {
  4234. "dev-master": "8.5-dev"
  4235. }
  4236. },
  4237. "autoload": {
  4238. "classmap": [
  4239. "src/"
  4240. ]
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "BSD-3-Clause"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "Sebastian Bergmann",
  4249. "email": "sebastian@phpunit.de",
  4250. "role": "lead"
  4251. }
  4252. ],
  4253. "description": "The PHP Unit Testing framework.",
  4254. "homepage": "https://phpunit.de/",
  4255. "keywords": [
  4256. "phpunit",
  4257. "testing",
  4258. "xunit"
  4259. ],
  4260. "funding": [
  4261. {
  4262. "url": "https://phpunit.de/sponsors.html",
  4263. "type": "custom"
  4264. },
  4265. {
  4266. "url": "https://github.com/sebastianbergmann",
  4267. "type": "github"
  4268. },
  4269. {
  4270. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4271. "type": "tidelift"
  4272. }
  4273. ],
  4274. "time": "2023-09-19T05:20:51+00:00"
  4275. },
  4276. {
  4277. "name": "psr/container",
  4278. "version": "1.1.2",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://github.com/php-fig/container.git",
  4282. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4287. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4288. "shasum": ""
  4289. },
  4290. "require": {
  4291. "php": ">=7.4.0"
  4292. },
  4293. "type": "library",
  4294. "autoload": {
  4295. "psr-4": {
  4296. "Psr\\Container\\": "src/"
  4297. }
  4298. },
  4299. "notification-url": "https://packagist.org/downloads/",
  4300. "license": [
  4301. "MIT"
  4302. ],
  4303. "authors": [
  4304. {
  4305. "name": "PHP-FIG",
  4306. "homepage": "https://www.php-fig.org/"
  4307. }
  4308. ],
  4309. "description": "Common Container Interface (PHP FIG PSR-11)",
  4310. "homepage": "https://github.com/php-fig/container",
  4311. "keywords": [
  4312. "PSR-11",
  4313. "container",
  4314. "container-interface",
  4315. "container-interop",
  4316. "psr"
  4317. ],
  4318. "time": "2021-11-05T16:50:12+00:00"
  4319. },
  4320. {
  4321. "name": "psr/event-dispatcher",
  4322. "version": "1.0.0",
  4323. "source": {
  4324. "type": "git",
  4325. "url": "https://github.com/php-fig/event-dispatcher.git",
  4326. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4327. },
  4328. "dist": {
  4329. "type": "zip",
  4330. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4331. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4332. "shasum": ""
  4333. },
  4334. "require": {
  4335. "php": ">=7.2.0"
  4336. },
  4337. "type": "library",
  4338. "extra": {
  4339. "branch-alias": {
  4340. "dev-master": "1.0.x-dev"
  4341. }
  4342. },
  4343. "autoload": {
  4344. "psr-4": {
  4345. "Psr\\EventDispatcher\\": "src/"
  4346. }
  4347. },
  4348. "notification-url": "https://packagist.org/downloads/",
  4349. "license": [
  4350. "MIT"
  4351. ],
  4352. "authors": [
  4353. {
  4354. "name": "PHP-FIG",
  4355. "homepage": "http://www.php-fig.org/"
  4356. }
  4357. ],
  4358. "description": "Standard interfaces for event handling.",
  4359. "keywords": [
  4360. "events",
  4361. "psr",
  4362. "psr-14"
  4363. ],
  4364. "time": "2019-01-08T18:20:26+00:00"
  4365. },
  4366. {
  4367. "name": "psr/http-factory",
  4368. "version": "1.0.2",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://github.com/php-fig/http-factory.git",
  4372. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4377. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4378. "shasum": ""
  4379. },
  4380. "require": {
  4381. "php": ">=7.0.0",
  4382. "psr/http-message": "^1.0 || ^2.0"
  4383. },
  4384. "type": "library",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-master": "1.0.x-dev"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "psr-4": {
  4392. "Psr\\Http\\Message\\": "src/"
  4393. }
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "PHP-FIG",
  4402. "homepage": "https://www.php-fig.org/"
  4403. }
  4404. ],
  4405. "description": "Common interfaces for PSR-7 HTTP message factories",
  4406. "keywords": [
  4407. "factory",
  4408. "http",
  4409. "message",
  4410. "psr",
  4411. "psr-17",
  4412. "psr-7",
  4413. "request",
  4414. "response"
  4415. ],
  4416. "time": "2023-04-10T20:10:41+00:00"
  4417. },
  4418. {
  4419. "name": "psr/http-message",
  4420. "version": "2.0",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://github.com/php-fig/http-message.git",
  4424. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4429. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4430. "shasum": ""
  4431. },
  4432. "require": {
  4433. "php": "^7.2 || ^8.0"
  4434. },
  4435. "type": "library",
  4436. "extra": {
  4437. "branch-alias": {
  4438. "dev-master": "2.0.x-dev"
  4439. }
  4440. },
  4441. "autoload": {
  4442. "psr-4": {
  4443. "Psr\\Http\\Message\\": "src/"
  4444. }
  4445. },
  4446. "notification-url": "https://packagist.org/downloads/",
  4447. "license": [
  4448. "MIT"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "PHP-FIG",
  4453. "homepage": "https://www.php-fig.org/"
  4454. }
  4455. ],
  4456. "description": "Common interface for HTTP messages",
  4457. "homepage": "https://github.com/php-fig/http-message",
  4458. "keywords": [
  4459. "http",
  4460. "http-message",
  4461. "psr",
  4462. "psr-7",
  4463. "request",
  4464. "response"
  4465. ],
  4466. "time": "2023-04-04T09:54:51+00:00"
  4467. },
  4468. {
  4469. "name": "ralouphie/getallheaders",
  4470. "version": "3.0.3",
  4471. "source": {
  4472. "type": "git",
  4473. "url": "https://github.com/ralouphie/getallheaders.git",
  4474. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4475. },
  4476. "dist": {
  4477. "type": "zip",
  4478. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4479. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4480. "shasum": ""
  4481. },
  4482. "require": {
  4483. "php": ">=5.6"
  4484. },
  4485. "require-dev": {
  4486. "php-coveralls/php-coveralls": "^2.1",
  4487. "phpunit/phpunit": "^5 || ^6.5"
  4488. },
  4489. "type": "library",
  4490. "autoload": {
  4491. "files": [
  4492. "src/getallheaders.php"
  4493. ]
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "Ralph Khattar",
  4502. "email": "ralph.khattar@gmail.com"
  4503. }
  4504. ],
  4505. "description": "A polyfill for getallheaders.",
  4506. "time": "2019-03-08T08:55:37+00:00"
  4507. },
  4508. {
  4509. "name": "sebastian/code-unit-reverse-lookup",
  4510. "version": "1.0.2",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4514. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  4519. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "php": ">=5.6"
  4524. },
  4525. "require-dev": {
  4526. "phpunit/phpunit": "^8.5"
  4527. },
  4528. "type": "library",
  4529. "extra": {
  4530. "branch-alias": {
  4531. "dev-master": "1.0.x-dev"
  4532. }
  4533. },
  4534. "autoload": {
  4535. "classmap": [
  4536. "src/"
  4537. ]
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "BSD-3-Clause"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Sebastian Bergmann",
  4546. "email": "sebastian@phpunit.de"
  4547. }
  4548. ],
  4549. "description": "Looks up which function or method a line of code belongs to",
  4550. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4551. "funding": [
  4552. {
  4553. "url": "https://github.com/sebastianbergmann",
  4554. "type": "github"
  4555. }
  4556. ],
  4557. "time": "2020-11-30T08:15:22+00:00"
  4558. },
  4559. {
  4560. "name": "sebastian/comparator",
  4561. "version": "3.0.5",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://github.com/sebastianbergmann/comparator.git",
  4565. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  4570. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  4571. "shasum": ""
  4572. },
  4573. "require": {
  4574. "php": ">=7.1",
  4575. "sebastian/diff": "^3.0",
  4576. "sebastian/exporter": "^3.1"
  4577. },
  4578. "require-dev": {
  4579. "phpunit/phpunit": "^8.5"
  4580. },
  4581. "type": "library",
  4582. "extra": {
  4583. "branch-alias": {
  4584. "dev-master": "3.0-dev"
  4585. }
  4586. },
  4587. "autoload": {
  4588. "classmap": [
  4589. "src/"
  4590. ]
  4591. },
  4592. "notification-url": "https://packagist.org/downloads/",
  4593. "license": [
  4594. "BSD-3-Clause"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "Sebastian Bergmann",
  4599. "email": "sebastian@phpunit.de"
  4600. },
  4601. {
  4602. "name": "Jeff Welch",
  4603. "email": "whatthejeff@gmail.com"
  4604. },
  4605. {
  4606. "name": "Volker Dusch",
  4607. "email": "github@wallbash.com"
  4608. },
  4609. {
  4610. "name": "Bernhard Schussek",
  4611. "email": "bschussek@2bepublished.at"
  4612. }
  4613. ],
  4614. "description": "Provides the functionality to compare PHP values for equality",
  4615. "homepage": "https://github.com/sebastianbergmann/comparator",
  4616. "keywords": [
  4617. "comparator",
  4618. "compare",
  4619. "equality"
  4620. ],
  4621. "funding": [
  4622. {
  4623. "url": "https://github.com/sebastianbergmann",
  4624. "type": "github"
  4625. }
  4626. ],
  4627. "time": "2022-09-14T12:31:48+00:00"
  4628. },
  4629. {
  4630. "name": "sebastian/diff",
  4631. "version": "3.0.4",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/sebastianbergmann/diff.git",
  4635. "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/6296a0c086dd0117c1b78b059374d7fcbe7545ae",
  4640. "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": ">=7.1"
  4645. },
  4646. "require-dev": {
  4647. "phpunit/phpunit": "^7.5 || ^8.0",
  4648. "symfony/process": "^2 || ^3.3 || ^4"
  4649. },
  4650. "type": "library",
  4651. "extra": {
  4652. "branch-alias": {
  4653. "dev-master": "3.0-dev"
  4654. }
  4655. },
  4656. "autoload": {
  4657. "classmap": [
  4658. "src/"
  4659. ]
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "BSD-3-Clause"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Sebastian Bergmann",
  4668. "email": "sebastian@phpunit.de"
  4669. },
  4670. {
  4671. "name": "Kore Nordmann",
  4672. "email": "mail@kore-nordmann.de"
  4673. }
  4674. ],
  4675. "description": "Diff implementation",
  4676. "homepage": "https://github.com/sebastianbergmann/diff",
  4677. "keywords": [
  4678. "diff",
  4679. "udiff",
  4680. "unidiff",
  4681. "unified diff"
  4682. ],
  4683. "funding": [
  4684. {
  4685. "url": "https://github.com/sebastianbergmann",
  4686. "type": "github"
  4687. }
  4688. ],
  4689. "time": "2023-05-07T05:30:20+00:00"
  4690. },
  4691. {
  4692. "name": "sebastian/environment",
  4693. "version": "4.2.4",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/sebastianbergmann/environment.git",
  4697. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  4702. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  4703. "shasum": ""
  4704. },
  4705. "require": {
  4706. "php": ">=7.1"
  4707. },
  4708. "require-dev": {
  4709. "phpunit/phpunit": "^7.5"
  4710. },
  4711. "suggest": {
  4712. "ext-posix": "*"
  4713. },
  4714. "type": "library",
  4715. "extra": {
  4716. "branch-alias": {
  4717. "dev-master": "4.2-dev"
  4718. }
  4719. },
  4720. "autoload": {
  4721. "classmap": [
  4722. "src/"
  4723. ]
  4724. },
  4725. "notification-url": "https://packagist.org/downloads/",
  4726. "license": [
  4727. "BSD-3-Clause"
  4728. ],
  4729. "authors": [
  4730. {
  4731. "name": "Sebastian Bergmann",
  4732. "email": "sebastian@phpunit.de"
  4733. }
  4734. ],
  4735. "description": "Provides functionality to handle HHVM/PHP environments",
  4736. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4737. "keywords": [
  4738. "Xdebug",
  4739. "environment",
  4740. "hhvm"
  4741. ],
  4742. "funding": [
  4743. {
  4744. "url": "https://github.com/sebastianbergmann",
  4745. "type": "github"
  4746. }
  4747. ],
  4748. "time": "2020-11-30T07:53:42+00:00"
  4749. },
  4750. {
  4751. "name": "sebastian/exporter",
  4752. "version": "3.1.5",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/sebastianbergmann/exporter.git",
  4756. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6",
  4761. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6",
  4762. "shasum": ""
  4763. },
  4764. "require": {
  4765. "php": ">=7.0",
  4766. "sebastian/recursion-context": "^3.0"
  4767. },
  4768. "require-dev": {
  4769. "ext-mbstring": "*",
  4770. "phpunit/phpunit": "^8.5"
  4771. },
  4772. "type": "library",
  4773. "extra": {
  4774. "branch-alias": {
  4775. "dev-master": "3.1.x-dev"
  4776. }
  4777. },
  4778. "autoload": {
  4779. "classmap": [
  4780. "src/"
  4781. ]
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "BSD-3-Clause"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Sebastian Bergmann",
  4790. "email": "sebastian@phpunit.de"
  4791. },
  4792. {
  4793. "name": "Jeff Welch",
  4794. "email": "whatthejeff@gmail.com"
  4795. },
  4796. {
  4797. "name": "Volker Dusch",
  4798. "email": "github@wallbash.com"
  4799. },
  4800. {
  4801. "name": "Adam Harvey",
  4802. "email": "aharvey@php.net"
  4803. },
  4804. {
  4805. "name": "Bernhard Schussek",
  4806. "email": "bschussek@gmail.com"
  4807. }
  4808. ],
  4809. "description": "Provides the functionality to export PHP variables for visualization",
  4810. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4811. "keywords": [
  4812. "export",
  4813. "exporter"
  4814. ],
  4815. "funding": [
  4816. {
  4817. "url": "https://github.com/sebastianbergmann",
  4818. "type": "github"
  4819. }
  4820. ],
  4821. "time": "2022-09-14T06:00:17+00:00"
  4822. },
  4823. {
  4824. "name": "sebastian/global-state",
  4825. "version": "3.0.3",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://github.com/sebastianbergmann/global-state.git",
  4829. "reference": "66783ce213de415b451b904bfef9dda0cf9aeae0"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/66783ce213de415b451b904bfef9dda0cf9aeae0",
  4834. "reference": "66783ce213de415b451b904bfef9dda0cf9aeae0",
  4835. "shasum": ""
  4836. },
  4837. "require": {
  4838. "php": ">=7.2",
  4839. "sebastian/object-reflector": "^1.1.1",
  4840. "sebastian/recursion-context": "^3.0"
  4841. },
  4842. "require-dev": {
  4843. "ext-dom": "*",
  4844. "phpunit/phpunit": "^8.0"
  4845. },
  4846. "suggest": {
  4847. "ext-uopz": "*"
  4848. },
  4849. "type": "library",
  4850. "extra": {
  4851. "branch-alias": {
  4852. "dev-master": "3.0-dev"
  4853. }
  4854. },
  4855. "autoload": {
  4856. "classmap": [
  4857. "src/"
  4858. ]
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "BSD-3-Clause"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Sebastian Bergmann",
  4867. "email": "sebastian@phpunit.de"
  4868. }
  4869. ],
  4870. "description": "Snapshotting of global state",
  4871. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4872. "keywords": [
  4873. "global state"
  4874. ],
  4875. "funding": [
  4876. {
  4877. "url": "https://github.com/sebastianbergmann",
  4878. "type": "github"
  4879. }
  4880. ],
  4881. "time": "2023-08-02T09:23:32+00:00"
  4882. },
  4883. {
  4884. "name": "sebastian/object-enumerator",
  4885. "version": "3.0.4",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4889. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  4894. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "php": ">=7.0",
  4899. "sebastian/object-reflector": "^1.1.1",
  4900. "sebastian/recursion-context": "^3.0"
  4901. },
  4902. "require-dev": {
  4903. "phpunit/phpunit": "^6.0"
  4904. },
  4905. "type": "library",
  4906. "extra": {
  4907. "branch-alias": {
  4908. "dev-master": "3.0.x-dev"
  4909. }
  4910. },
  4911. "autoload": {
  4912. "classmap": [
  4913. "src/"
  4914. ]
  4915. },
  4916. "notification-url": "https://packagist.org/downloads/",
  4917. "license": [
  4918. "BSD-3-Clause"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Sebastian Bergmann",
  4923. "email": "sebastian@phpunit.de"
  4924. }
  4925. ],
  4926. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4927. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4928. "funding": [
  4929. {
  4930. "url": "https://github.com/sebastianbergmann",
  4931. "type": "github"
  4932. }
  4933. ],
  4934. "time": "2020-11-30T07:40:27+00:00"
  4935. },
  4936. {
  4937. "name": "sebastian/object-reflector",
  4938. "version": "1.1.2",
  4939. "source": {
  4940. "type": "git",
  4941. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4942. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  4943. },
  4944. "dist": {
  4945. "type": "zip",
  4946. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  4947. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  4948. "shasum": ""
  4949. },
  4950. "require": {
  4951. "php": ">=7.0"
  4952. },
  4953. "require-dev": {
  4954. "phpunit/phpunit": "^6.0"
  4955. },
  4956. "type": "library",
  4957. "extra": {
  4958. "branch-alias": {
  4959. "dev-master": "1.1-dev"
  4960. }
  4961. },
  4962. "autoload": {
  4963. "classmap": [
  4964. "src/"
  4965. ]
  4966. },
  4967. "notification-url": "https://packagist.org/downloads/",
  4968. "license": [
  4969. "BSD-3-Clause"
  4970. ],
  4971. "authors": [
  4972. {
  4973. "name": "Sebastian Bergmann",
  4974. "email": "sebastian@phpunit.de"
  4975. }
  4976. ],
  4977. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4978. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4979. "funding": [
  4980. {
  4981. "url": "https://github.com/sebastianbergmann",
  4982. "type": "github"
  4983. }
  4984. ],
  4985. "time": "2020-11-30T07:37:18+00:00"
  4986. },
  4987. {
  4988. "name": "sebastian/recursion-context",
  4989. "version": "3.0.1",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4993. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  4998. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  4999. "shasum": ""
  5000. },
  5001. "require": {
  5002. "php": ">=7.0"
  5003. },
  5004. "require-dev": {
  5005. "phpunit/phpunit": "^6.0"
  5006. },
  5007. "type": "library",
  5008. "extra": {
  5009. "branch-alias": {
  5010. "dev-master": "3.0.x-dev"
  5011. }
  5012. },
  5013. "autoload": {
  5014. "classmap": [
  5015. "src/"
  5016. ]
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "BSD-3-Clause"
  5021. ],
  5022. "authors": [
  5023. {
  5024. "name": "Sebastian Bergmann",
  5025. "email": "sebastian@phpunit.de"
  5026. },
  5027. {
  5028. "name": "Jeff Welch",
  5029. "email": "whatthejeff@gmail.com"
  5030. },
  5031. {
  5032. "name": "Adam Harvey",
  5033. "email": "aharvey@php.net"
  5034. }
  5035. ],
  5036. "description": "Provides functionality to recursively process PHP variables",
  5037. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5038. "funding": [
  5039. {
  5040. "url": "https://github.com/sebastianbergmann",
  5041. "type": "github"
  5042. }
  5043. ],
  5044. "time": "2020-11-30T07:34:24+00:00"
  5045. },
  5046. {
  5047. "name": "sebastian/resource-operations",
  5048. "version": "2.0.2",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5052. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  5057. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "php": ">=7.1"
  5062. },
  5063. "type": "library",
  5064. "extra": {
  5065. "branch-alias": {
  5066. "dev-master": "2.0-dev"
  5067. }
  5068. },
  5069. "autoload": {
  5070. "classmap": [
  5071. "src/"
  5072. ]
  5073. },
  5074. "notification-url": "https://packagist.org/downloads/",
  5075. "license": [
  5076. "BSD-3-Clause"
  5077. ],
  5078. "authors": [
  5079. {
  5080. "name": "Sebastian Bergmann",
  5081. "email": "sebastian@phpunit.de"
  5082. }
  5083. ],
  5084. "description": "Provides a list of PHP built-in functions that operate on resources",
  5085. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5086. "funding": [
  5087. {
  5088. "url": "https://github.com/sebastianbergmann",
  5089. "type": "github"
  5090. }
  5091. ],
  5092. "time": "2020-11-30T07:30:19+00:00"
  5093. },
  5094. {
  5095. "name": "sebastian/type",
  5096. "version": "1.1.4",
  5097. "source": {
  5098. "type": "git",
  5099. "url": "https://github.com/sebastianbergmann/type.git",
  5100. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  5101. },
  5102. "dist": {
  5103. "type": "zip",
  5104. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  5105. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  5106. "shasum": ""
  5107. },
  5108. "require": {
  5109. "php": ">=7.2"
  5110. },
  5111. "require-dev": {
  5112. "phpunit/phpunit": "^8.2"
  5113. },
  5114. "type": "library",
  5115. "extra": {
  5116. "branch-alias": {
  5117. "dev-master": "1.1-dev"
  5118. }
  5119. },
  5120. "autoload": {
  5121. "classmap": [
  5122. "src/"
  5123. ]
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "BSD-3-Clause"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Sebastian Bergmann",
  5132. "email": "sebastian@phpunit.de",
  5133. "role": "lead"
  5134. }
  5135. ],
  5136. "description": "Collection of value objects that represent the types of the PHP type system",
  5137. "homepage": "https://github.com/sebastianbergmann/type",
  5138. "funding": [
  5139. {
  5140. "url": "https://github.com/sebastianbergmann",
  5141. "type": "github"
  5142. }
  5143. ],
  5144. "time": "2020-11-30T07:25:11+00:00"
  5145. },
  5146. {
  5147. "name": "sebastian/version",
  5148. "version": "2.0.1",
  5149. "source": {
  5150. "type": "git",
  5151. "url": "https://github.com/sebastianbergmann/version.git",
  5152. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5153. },
  5154. "dist": {
  5155. "type": "zip",
  5156. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5157. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5158. "shasum": ""
  5159. },
  5160. "require": {
  5161. "php": ">=5.6"
  5162. },
  5163. "type": "library",
  5164. "extra": {
  5165. "branch-alias": {
  5166. "dev-master": "2.0.x-dev"
  5167. }
  5168. },
  5169. "autoload": {
  5170. "classmap": [
  5171. "src/"
  5172. ]
  5173. },
  5174. "notification-url": "https://packagist.org/downloads/",
  5175. "license": [
  5176. "BSD-3-Clause"
  5177. ],
  5178. "authors": [
  5179. {
  5180. "name": "Sebastian Bergmann",
  5181. "email": "sebastian@phpunit.de",
  5182. "role": "lead"
  5183. }
  5184. ],
  5185. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5186. "homepage": "https://github.com/sebastianbergmann/version",
  5187. "time": "2016-10-03T07:35:21+00:00"
  5188. },
  5189. {
  5190. "name": "symfony/browser-kit",
  5191. "version": "v4.2.4",
  5192. "source": {
  5193. "type": "git",
  5194. "url": "https://github.com/symfony/browser-kit.git",
  5195. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0"
  5196. },
  5197. "dist": {
  5198. "type": "zip",
  5199. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/61d85c5af2fc058014c7c89504c3944e73a086f0",
  5200. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0",
  5201. "shasum": ""
  5202. },
  5203. "require": {
  5204. "php": "^7.1.3",
  5205. "symfony/dom-crawler": "~3.4|~4.0"
  5206. },
  5207. "require-dev": {
  5208. "symfony/css-selector": "~3.4|~4.0",
  5209. "symfony/process": "~3.4|~4.0"
  5210. },
  5211. "suggest": {
  5212. "symfony/process": ""
  5213. },
  5214. "type": "library",
  5215. "extra": {
  5216. "branch-alias": {
  5217. "dev-master": "4.2-dev"
  5218. }
  5219. },
  5220. "autoload": {
  5221. "psr-4": {
  5222. "Symfony\\Component\\BrowserKit\\": ""
  5223. },
  5224. "exclude-from-classmap": [
  5225. "/Tests/"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Fabien Potencier",
  5235. "email": "fabien@symfony.com"
  5236. },
  5237. {
  5238. "name": "Symfony Community",
  5239. "homepage": "https://symfony.com/contributors"
  5240. }
  5241. ],
  5242. "description": "Symfony BrowserKit Component",
  5243. "homepage": "https://symfony.com",
  5244. "time": "2019-02-23T15:17:42+00:00"
  5245. },
  5246. {
  5247. "name": "symfony/console",
  5248. "version": "v5.4.31",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/symfony/console.git",
  5252. "reference": "11ac5f154e0e5c4c77af83ad11ead9165280b92a"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/symfony/console/zipball/11ac5f154e0e5c4c77af83ad11ead9165280b92a",
  5257. "reference": "11ac5f154e0e5c4c77af83ad11ead9165280b92a",
  5258. "shasum": ""
  5259. },
  5260. "require": {
  5261. "php": ">=7.2.5",
  5262. "symfony/deprecation-contracts": "^2.1|^3",
  5263. "symfony/polyfill-mbstring": "~1.0",
  5264. "symfony/polyfill-php73": "^1.9",
  5265. "symfony/polyfill-php80": "^1.16",
  5266. "symfony/service-contracts": "^1.1|^2|^3",
  5267. "symfony/string": "^5.1|^6.0"
  5268. },
  5269. "conflict": {
  5270. "psr/log": ">=3",
  5271. "symfony/dependency-injection": "<4.4",
  5272. "symfony/dotenv": "<5.1",
  5273. "symfony/event-dispatcher": "<4.4",
  5274. "symfony/lock": "<4.4",
  5275. "symfony/process": "<4.4"
  5276. },
  5277. "provide": {
  5278. "psr/log-implementation": "1.0|2.0"
  5279. },
  5280. "require-dev": {
  5281. "psr/log": "^1|^2",
  5282. "symfony/config": "^4.4|^5.0|^6.0",
  5283. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5284. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5285. "symfony/lock": "^4.4|^5.0|^6.0",
  5286. "symfony/process": "^4.4|^5.0|^6.0",
  5287. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5288. },
  5289. "suggest": {
  5290. "psr/log": "For using the console logger",
  5291. "symfony/event-dispatcher": "",
  5292. "symfony/lock": "",
  5293. "symfony/process": ""
  5294. },
  5295. "type": "library",
  5296. "autoload": {
  5297. "psr-4": {
  5298. "Symfony\\Component\\Console\\": ""
  5299. },
  5300. "exclude-from-classmap": [
  5301. "/Tests/"
  5302. ]
  5303. },
  5304. "notification-url": "https://packagist.org/downloads/",
  5305. "license": [
  5306. "MIT"
  5307. ],
  5308. "authors": [
  5309. {
  5310. "name": "Fabien Potencier",
  5311. "email": "fabien@symfony.com"
  5312. },
  5313. {
  5314. "name": "Symfony Community",
  5315. "homepage": "https://symfony.com/contributors"
  5316. }
  5317. ],
  5318. "description": "Eases the creation of beautiful and testable command line interfaces",
  5319. "homepage": "https://symfony.com",
  5320. "keywords": [
  5321. "cli",
  5322. "command-line",
  5323. "console",
  5324. "terminal"
  5325. ],
  5326. "funding": [
  5327. {
  5328. "url": "https://symfony.com/sponsor",
  5329. "type": "custom"
  5330. },
  5331. {
  5332. "url": "https://github.com/fabpot",
  5333. "type": "github"
  5334. },
  5335. {
  5336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5337. "type": "tidelift"
  5338. }
  5339. ],
  5340. "time": "2023-10-31T07:58:33+00:00"
  5341. },
  5342. {
  5343. "name": "symfony/css-selector",
  5344. "version": "v5.4.26",
  5345. "source": {
  5346. "type": "git",
  5347. "url": "https://github.com/symfony/css-selector.git",
  5348. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  5349. },
  5350. "dist": {
  5351. "type": "zip",
  5352. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5353. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5354. "shasum": ""
  5355. },
  5356. "require": {
  5357. "php": ">=7.2.5",
  5358. "symfony/polyfill-php80": "^1.16"
  5359. },
  5360. "type": "library",
  5361. "autoload": {
  5362. "psr-4": {
  5363. "Symfony\\Component\\CssSelector\\": ""
  5364. },
  5365. "exclude-from-classmap": [
  5366. "/Tests/"
  5367. ]
  5368. },
  5369. "notification-url": "https://packagist.org/downloads/",
  5370. "license": [
  5371. "MIT"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "Fabien Potencier",
  5376. "email": "fabien@symfony.com"
  5377. },
  5378. {
  5379. "name": "Jean-François Simon",
  5380. "email": "jeanfrancois.simon@sensiolabs.com"
  5381. },
  5382. {
  5383. "name": "Symfony Community",
  5384. "homepage": "https://symfony.com/contributors"
  5385. }
  5386. ],
  5387. "description": "Converts CSS selectors to XPath expressions",
  5388. "homepage": "https://symfony.com",
  5389. "funding": [
  5390. {
  5391. "url": "https://symfony.com/sponsor",
  5392. "type": "custom"
  5393. },
  5394. {
  5395. "url": "https://github.com/fabpot",
  5396. "type": "github"
  5397. },
  5398. {
  5399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5400. "type": "tidelift"
  5401. }
  5402. ],
  5403. "time": "2023-07-07T06:10:25+00:00"
  5404. },
  5405. {
  5406. "name": "symfony/deprecation-contracts",
  5407. "version": "v2.5.2",
  5408. "source": {
  5409. "type": "git",
  5410. "url": "https://github.com/symfony/deprecation-contracts.git",
  5411. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5412. },
  5413. "dist": {
  5414. "type": "zip",
  5415. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5416. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5417. "shasum": ""
  5418. },
  5419. "require": {
  5420. "php": ">=7.1"
  5421. },
  5422. "type": "library",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-main": "2.5-dev"
  5426. },
  5427. "thanks": {
  5428. "name": "symfony/contracts",
  5429. "url": "https://github.com/symfony/contracts"
  5430. }
  5431. },
  5432. "autoload": {
  5433. "files": [
  5434. "function.php"
  5435. ]
  5436. },
  5437. "notification-url": "https://packagist.org/downloads/",
  5438. "license": [
  5439. "MIT"
  5440. ],
  5441. "authors": [
  5442. {
  5443. "name": "Nicolas Grekas",
  5444. "email": "p@tchwork.com"
  5445. },
  5446. {
  5447. "name": "Symfony Community",
  5448. "homepage": "https://symfony.com/contributors"
  5449. }
  5450. ],
  5451. "description": "A generic function and convention to trigger deprecation notices",
  5452. "homepage": "https://symfony.com",
  5453. "funding": [
  5454. {
  5455. "url": "https://symfony.com/sponsor",
  5456. "type": "custom"
  5457. },
  5458. {
  5459. "url": "https://github.com/fabpot",
  5460. "type": "github"
  5461. },
  5462. {
  5463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5464. "type": "tidelift"
  5465. }
  5466. ],
  5467. "time": "2022-01-02T09:53:40+00:00"
  5468. },
  5469. {
  5470. "name": "symfony/dom-crawler",
  5471. "version": "v4.4.45",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/symfony/dom-crawler.git",
  5475. "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4b8daf6c56801e6d664224261cb100b73edc78a5",
  5480. "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5",
  5481. "shasum": ""
  5482. },
  5483. "require": {
  5484. "php": ">=7.1.3",
  5485. "symfony/polyfill-ctype": "~1.8",
  5486. "symfony/polyfill-mbstring": "~1.0",
  5487. "symfony/polyfill-php80": "^1.16"
  5488. },
  5489. "conflict": {
  5490. "masterminds/html5": "<2.6"
  5491. },
  5492. "require-dev": {
  5493. "masterminds/html5": "^2.6",
  5494. "symfony/css-selector": "^3.4|^4.0|^5.0"
  5495. },
  5496. "suggest": {
  5497. "symfony/css-selector": ""
  5498. },
  5499. "type": "library",
  5500. "autoload": {
  5501. "psr-4": {
  5502. "Symfony\\Component\\DomCrawler\\": ""
  5503. },
  5504. "exclude-from-classmap": [
  5505. "/Tests/"
  5506. ]
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Fabien Potencier",
  5515. "email": "fabien@symfony.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Eases DOM navigation for HTML and XML documents",
  5523. "homepage": "https://symfony.com",
  5524. "funding": [
  5525. {
  5526. "url": "https://symfony.com/sponsor",
  5527. "type": "custom"
  5528. },
  5529. {
  5530. "url": "https://github.com/fabpot",
  5531. "type": "github"
  5532. },
  5533. {
  5534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5535. "type": "tidelift"
  5536. }
  5537. ],
  5538. "time": "2022-08-03T12:57:57+00:00"
  5539. },
  5540. {
  5541. "name": "symfony/event-dispatcher",
  5542. "version": "v5.4.26",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/symfony/event-dispatcher.git",
  5546. "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5dcc00e03413f05c1e7900090927bb7247cb0aac",
  5551. "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=7.2.5",
  5556. "symfony/deprecation-contracts": "^2.1|^3",
  5557. "symfony/event-dispatcher-contracts": "^2|^3",
  5558. "symfony/polyfill-php80": "^1.16"
  5559. },
  5560. "conflict": {
  5561. "symfony/dependency-injection": "<4.4"
  5562. },
  5563. "provide": {
  5564. "psr/event-dispatcher-implementation": "1.0",
  5565. "symfony/event-dispatcher-implementation": "2.0"
  5566. },
  5567. "require-dev": {
  5568. "psr/log": "^1|^2|^3",
  5569. "symfony/config": "^4.4|^5.0|^6.0",
  5570. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5571. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5572. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5573. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5574. "symfony/service-contracts": "^1.1|^2|^3",
  5575. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5576. },
  5577. "suggest": {
  5578. "symfony/dependency-injection": "",
  5579. "symfony/http-kernel": ""
  5580. },
  5581. "type": "library",
  5582. "autoload": {
  5583. "psr-4": {
  5584. "Symfony\\Component\\EventDispatcher\\": ""
  5585. },
  5586. "exclude-from-classmap": [
  5587. "/Tests/"
  5588. ]
  5589. },
  5590. "notification-url": "https://packagist.org/downloads/",
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Fabien Potencier",
  5597. "email": "fabien@symfony.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5605. "homepage": "https://symfony.com",
  5606. "funding": [
  5607. {
  5608. "url": "https://symfony.com/sponsor",
  5609. "type": "custom"
  5610. },
  5611. {
  5612. "url": "https://github.com/fabpot",
  5613. "type": "github"
  5614. },
  5615. {
  5616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5617. "type": "tidelift"
  5618. }
  5619. ],
  5620. "time": "2023-07-06T06:34:20+00:00"
  5621. },
  5622. {
  5623. "name": "symfony/event-dispatcher-contracts",
  5624. "version": "v2.5.2",
  5625. "source": {
  5626. "type": "git",
  5627. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5628. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5629. },
  5630. "dist": {
  5631. "type": "zip",
  5632. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5633. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5634. "shasum": ""
  5635. },
  5636. "require": {
  5637. "php": ">=7.2.5",
  5638. "psr/event-dispatcher": "^1"
  5639. },
  5640. "suggest": {
  5641. "symfony/event-dispatcher-implementation": ""
  5642. },
  5643. "type": "library",
  5644. "extra": {
  5645. "branch-alias": {
  5646. "dev-main": "2.5-dev"
  5647. },
  5648. "thanks": {
  5649. "name": "symfony/contracts",
  5650. "url": "https://github.com/symfony/contracts"
  5651. }
  5652. },
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Symfony\\Contracts\\EventDispatcher\\": ""
  5656. }
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Nicolas Grekas",
  5665. "email": "p@tchwork.com"
  5666. },
  5667. {
  5668. "name": "Symfony Community",
  5669. "homepage": "https://symfony.com/contributors"
  5670. }
  5671. ],
  5672. "description": "Generic abstractions related to dispatching event",
  5673. "homepage": "https://symfony.com",
  5674. "keywords": [
  5675. "abstractions",
  5676. "contracts",
  5677. "decoupling",
  5678. "interfaces",
  5679. "interoperability",
  5680. "standards"
  5681. ],
  5682. "funding": [
  5683. {
  5684. "url": "https://symfony.com/sponsor",
  5685. "type": "custom"
  5686. },
  5687. {
  5688. "url": "https://github.com/fabpot",
  5689. "type": "github"
  5690. },
  5691. {
  5692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5693. "type": "tidelift"
  5694. }
  5695. ],
  5696. "time": "2022-01-02T09:53:40+00:00"
  5697. },
  5698. {
  5699. "name": "symfony/finder",
  5700. "version": "v5.4.27",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/symfony/finder.git",
  5704. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5709. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "php": ">=7.2.5",
  5714. "symfony/deprecation-contracts": "^2.1|^3",
  5715. "symfony/polyfill-php80": "^1.16"
  5716. },
  5717. "type": "library",
  5718. "autoload": {
  5719. "psr-4": {
  5720. "Symfony\\Component\\Finder\\": ""
  5721. },
  5722. "exclude-from-classmap": [
  5723. "/Tests/"
  5724. ]
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Fabien Potencier",
  5733. "email": "fabien@symfony.com"
  5734. },
  5735. {
  5736. "name": "Symfony Community",
  5737. "homepage": "https://symfony.com/contributors"
  5738. }
  5739. ],
  5740. "description": "Finds files and directories via an intuitive fluent interface",
  5741. "homepage": "https://symfony.com",
  5742. "funding": [
  5743. {
  5744. "url": "https://symfony.com/sponsor",
  5745. "type": "custom"
  5746. },
  5747. {
  5748. "url": "https://github.com/fabpot",
  5749. "type": "github"
  5750. },
  5751. {
  5752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5753. "type": "tidelift"
  5754. }
  5755. ],
  5756. "time": "2023-07-31T08:02:31+00:00"
  5757. },
  5758. {
  5759. "name": "symfony/polyfill-ctype",
  5760. "version": "v1.28.0",
  5761. "source": {
  5762. "type": "git",
  5763. "url": "https://github.com/symfony/polyfill-ctype.git",
  5764. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  5765. },
  5766. "dist": {
  5767. "type": "zip",
  5768. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5769. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5770. "shasum": ""
  5771. },
  5772. "require": {
  5773. "php": ">=7.1"
  5774. },
  5775. "provide": {
  5776. "ext-ctype": "*"
  5777. },
  5778. "suggest": {
  5779. "ext-ctype": "For best performance"
  5780. },
  5781. "type": "library",
  5782. "extra": {
  5783. "branch-alias": {
  5784. "dev-main": "1.28-dev"
  5785. },
  5786. "thanks": {
  5787. "name": "symfony/polyfill",
  5788. "url": "https://github.com/symfony/polyfill"
  5789. }
  5790. },
  5791. "autoload": {
  5792. "files": [
  5793. "bootstrap.php"
  5794. ],
  5795. "psr-4": {
  5796. "Symfony\\Polyfill\\Ctype\\": ""
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Gert de Pagter",
  5806. "email": "BackEndTea@gmail.com"
  5807. },
  5808. {
  5809. "name": "Symfony Community",
  5810. "homepage": "https://symfony.com/contributors"
  5811. }
  5812. ],
  5813. "description": "Symfony polyfill for ctype functions",
  5814. "homepage": "https://symfony.com",
  5815. "keywords": [
  5816. "compatibility",
  5817. "ctype",
  5818. "polyfill",
  5819. "portable"
  5820. ],
  5821. "funding": [
  5822. {
  5823. "url": "https://symfony.com/sponsor",
  5824. "type": "custom"
  5825. },
  5826. {
  5827. "url": "https://github.com/fabpot",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5832. "type": "tidelift"
  5833. }
  5834. ],
  5835. "time": "2023-01-26T09:26:14+00:00"
  5836. },
  5837. {
  5838. "name": "symfony/polyfill-intl-grapheme",
  5839. "version": "v1.28.0",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5843. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5848. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "php": ">=7.1"
  5853. },
  5854. "suggest": {
  5855. "ext-intl": "For best performance"
  5856. },
  5857. "type": "library",
  5858. "extra": {
  5859. "branch-alias": {
  5860. "dev-main": "1.28-dev"
  5861. },
  5862. "thanks": {
  5863. "name": "symfony/polyfill",
  5864. "url": "https://github.com/symfony/polyfill"
  5865. }
  5866. },
  5867. "autoload": {
  5868. "files": [
  5869. "bootstrap.php"
  5870. ],
  5871. "psr-4": {
  5872. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5873. }
  5874. },
  5875. "notification-url": "https://packagist.org/downloads/",
  5876. "license": [
  5877. "MIT"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Nicolas Grekas",
  5882. "email": "p@tchwork.com"
  5883. },
  5884. {
  5885. "name": "Symfony Community",
  5886. "homepage": "https://symfony.com/contributors"
  5887. }
  5888. ],
  5889. "description": "Symfony polyfill for intl's grapheme_* functions",
  5890. "homepage": "https://symfony.com",
  5891. "keywords": [
  5892. "compatibility",
  5893. "grapheme",
  5894. "intl",
  5895. "polyfill",
  5896. "portable",
  5897. "shim"
  5898. ],
  5899. "funding": [
  5900. {
  5901. "url": "https://symfony.com/sponsor",
  5902. "type": "custom"
  5903. },
  5904. {
  5905. "url": "https://github.com/fabpot",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5910. "type": "tidelift"
  5911. }
  5912. ],
  5913. "time": "2023-01-26T09:26:14+00:00"
  5914. },
  5915. {
  5916. "name": "symfony/polyfill-php73",
  5917. "version": "v1.28.0",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/symfony/polyfill-php73.git",
  5921. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  5926. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  5927. "shasum": ""
  5928. },
  5929. "require": {
  5930. "php": ">=7.1"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-main": "1.28-dev"
  5936. },
  5937. "thanks": {
  5938. "name": "symfony/polyfill",
  5939. "url": "https://github.com/symfony/polyfill"
  5940. }
  5941. },
  5942. "autoload": {
  5943. "files": [
  5944. "bootstrap.php"
  5945. ],
  5946. "psr-4": {
  5947. "Symfony\\Polyfill\\Php73\\": ""
  5948. },
  5949. "classmap": [
  5950. "Resources/stubs"
  5951. ]
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "MIT"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Nicolas Grekas",
  5960. "email": "p@tchwork.com"
  5961. },
  5962. {
  5963. "name": "Symfony Community",
  5964. "homepage": "https://symfony.com/contributors"
  5965. }
  5966. ],
  5967. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5968. "homepage": "https://symfony.com",
  5969. "keywords": [
  5970. "compatibility",
  5971. "polyfill",
  5972. "portable",
  5973. "shim"
  5974. ],
  5975. "funding": [
  5976. {
  5977. "url": "https://symfony.com/sponsor",
  5978. "type": "custom"
  5979. },
  5980. {
  5981. "url": "https://github.com/fabpot",
  5982. "type": "github"
  5983. },
  5984. {
  5985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5986. "type": "tidelift"
  5987. }
  5988. ],
  5989. "time": "2023-01-26T09:26:14+00:00"
  5990. },
  5991. {
  5992. "name": "symfony/polyfill-php80",
  5993. "version": "v1.28.0",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/symfony/polyfill-php80.git",
  5997. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6002. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "php": ">=7.1"
  6007. },
  6008. "type": "library",
  6009. "extra": {
  6010. "branch-alias": {
  6011. "dev-main": "1.28-dev"
  6012. },
  6013. "thanks": {
  6014. "name": "symfony/polyfill",
  6015. "url": "https://github.com/symfony/polyfill"
  6016. }
  6017. },
  6018. "autoload": {
  6019. "files": [
  6020. "bootstrap.php"
  6021. ],
  6022. "psr-4": {
  6023. "Symfony\\Polyfill\\Php80\\": ""
  6024. },
  6025. "classmap": [
  6026. "Resources/stubs"
  6027. ]
  6028. },
  6029. "notification-url": "https://packagist.org/downloads/",
  6030. "license": [
  6031. "MIT"
  6032. ],
  6033. "authors": [
  6034. {
  6035. "name": "Ion Bazan",
  6036. "email": "ion.bazan@gmail.com"
  6037. },
  6038. {
  6039. "name": "Nicolas Grekas",
  6040. "email": "p@tchwork.com"
  6041. },
  6042. {
  6043. "name": "Symfony Community",
  6044. "homepage": "https://symfony.com/contributors"
  6045. }
  6046. ],
  6047. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6048. "homepage": "https://symfony.com",
  6049. "keywords": [
  6050. "compatibility",
  6051. "polyfill",
  6052. "portable",
  6053. "shim"
  6054. ],
  6055. "funding": [
  6056. {
  6057. "url": "https://symfony.com/sponsor",
  6058. "type": "custom"
  6059. },
  6060. {
  6061. "url": "https://github.com/fabpot",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6066. "type": "tidelift"
  6067. }
  6068. ],
  6069. "time": "2023-01-26T09:26:14+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/service-contracts",
  6073. "version": "v2.5.2",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/service-contracts.git",
  6077. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6082. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=7.2.5",
  6087. "psr/container": "^1.1",
  6088. "symfony/deprecation-contracts": "^2.1|^3"
  6089. },
  6090. "conflict": {
  6091. "ext-psr": "<1.1|>=2"
  6092. },
  6093. "suggest": {
  6094. "symfony/service-implementation": ""
  6095. },
  6096. "type": "library",
  6097. "extra": {
  6098. "branch-alias": {
  6099. "dev-main": "2.5-dev"
  6100. },
  6101. "thanks": {
  6102. "name": "symfony/contracts",
  6103. "url": "https://github.com/symfony/contracts"
  6104. }
  6105. },
  6106. "autoload": {
  6107. "psr-4": {
  6108. "Symfony\\Contracts\\Service\\": ""
  6109. }
  6110. },
  6111. "notification-url": "https://packagist.org/downloads/",
  6112. "license": [
  6113. "MIT"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Nicolas Grekas",
  6118. "email": "p@tchwork.com"
  6119. },
  6120. {
  6121. "name": "Symfony Community",
  6122. "homepage": "https://symfony.com/contributors"
  6123. }
  6124. ],
  6125. "description": "Generic abstractions related to writing services",
  6126. "homepage": "https://symfony.com",
  6127. "keywords": [
  6128. "abstractions",
  6129. "contracts",
  6130. "decoupling",
  6131. "interfaces",
  6132. "interoperability",
  6133. "standards"
  6134. ],
  6135. "funding": [
  6136. {
  6137. "url": "https://symfony.com/sponsor",
  6138. "type": "custom"
  6139. },
  6140. {
  6141. "url": "https://github.com/fabpot",
  6142. "type": "github"
  6143. },
  6144. {
  6145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6146. "type": "tidelift"
  6147. }
  6148. ],
  6149. "time": "2022-05-30T19:17:29+00:00"
  6150. },
  6151. {
  6152. "name": "symfony/string",
  6153. "version": "v5.4.31",
  6154. "source": {
  6155. "type": "git",
  6156. "url": "https://github.com/symfony/string.git",
  6157. "reference": "2765096c03f39ddf54f6af532166e42aaa05b24b"
  6158. },
  6159. "dist": {
  6160. "type": "zip",
  6161. "url": "https://api.github.com/repos/symfony/string/zipball/2765096c03f39ddf54f6af532166e42aaa05b24b",
  6162. "reference": "2765096c03f39ddf54f6af532166e42aaa05b24b",
  6163. "shasum": ""
  6164. },
  6165. "require": {
  6166. "php": ">=7.2.5",
  6167. "symfony/polyfill-ctype": "~1.8",
  6168. "symfony/polyfill-intl-grapheme": "~1.0",
  6169. "symfony/polyfill-intl-normalizer": "~1.0",
  6170. "symfony/polyfill-mbstring": "~1.0",
  6171. "symfony/polyfill-php80": "~1.15"
  6172. },
  6173. "conflict": {
  6174. "symfony/translation-contracts": ">=3.0"
  6175. },
  6176. "require-dev": {
  6177. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6178. "symfony/http-client": "^4.4|^5.0|^6.0",
  6179. "symfony/translation-contracts": "^1.1|^2",
  6180. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6181. },
  6182. "type": "library",
  6183. "autoload": {
  6184. "files": [
  6185. "Resources/functions.php"
  6186. ],
  6187. "psr-4": {
  6188. "Symfony\\Component\\String\\": ""
  6189. },
  6190. "exclude-from-classmap": [
  6191. "/Tests/"
  6192. ]
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "Nicolas Grekas",
  6201. "email": "p@tchwork.com"
  6202. },
  6203. {
  6204. "name": "Symfony Community",
  6205. "homepage": "https://symfony.com/contributors"
  6206. }
  6207. ],
  6208. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6209. "homepage": "https://symfony.com",
  6210. "keywords": [
  6211. "grapheme",
  6212. "i18n",
  6213. "string",
  6214. "unicode",
  6215. "utf-8",
  6216. "utf8"
  6217. ],
  6218. "funding": [
  6219. {
  6220. "url": "https://symfony.com/sponsor",
  6221. "type": "custom"
  6222. },
  6223. {
  6224. "url": "https://github.com/fabpot",
  6225. "type": "github"
  6226. },
  6227. {
  6228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6229. "type": "tidelift"
  6230. }
  6231. ],
  6232. "time": "2023-11-09T08:19:44+00:00"
  6233. },
  6234. {
  6235. "name": "symfony/yaml",
  6236. "version": "v5.4.31",
  6237. "source": {
  6238. "type": "git",
  6239. "url": "https://github.com/symfony/yaml.git",
  6240. "reference": "f387675d7f5fc4231f7554baa70681f222f73563"
  6241. },
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://api.github.com/repos/symfony/yaml/zipball/f387675d7f5fc4231f7554baa70681f222f73563",
  6245. "reference": "f387675d7f5fc4231f7554baa70681f222f73563",
  6246. "shasum": ""
  6247. },
  6248. "require": {
  6249. "php": ">=7.2.5",
  6250. "symfony/deprecation-contracts": "^2.1|^3",
  6251. "symfony/polyfill-ctype": "^1.8"
  6252. },
  6253. "conflict": {
  6254. "symfony/console": "<5.3"
  6255. },
  6256. "require-dev": {
  6257. "symfony/console": "^5.3|^6.0"
  6258. },
  6259. "suggest": {
  6260. "symfony/console": "For validating YAML files using the lint command"
  6261. },
  6262. "bin": [
  6263. "Resources/bin/yaml-lint"
  6264. ],
  6265. "type": "library",
  6266. "autoload": {
  6267. "psr-4": {
  6268. "Symfony\\Component\\Yaml\\": ""
  6269. },
  6270. "exclude-from-classmap": [
  6271. "/Tests/"
  6272. ]
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Fabien Potencier",
  6281. "email": "fabien@symfony.com"
  6282. },
  6283. {
  6284. "name": "Symfony Community",
  6285. "homepage": "https://symfony.com/contributors"
  6286. }
  6287. ],
  6288. "description": "Loads and dumps YAML files",
  6289. "homepage": "https://symfony.com",
  6290. "funding": [
  6291. {
  6292. "url": "https://symfony.com/sponsor",
  6293. "type": "custom"
  6294. },
  6295. {
  6296. "url": "https://github.com/fabpot",
  6297. "type": "github"
  6298. },
  6299. {
  6300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6301. "type": "tidelift"
  6302. }
  6303. ],
  6304. "time": "2023-11-03T14:41:28+00:00"
  6305. },
  6306. {
  6307. "name": "theseer/tokenizer",
  6308. "version": "1.2.2",
  6309. "source": {
  6310. "type": "git",
  6311. "url": "https://github.com/theseer/tokenizer.git",
  6312. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  6313. },
  6314. "dist": {
  6315. "type": "zip",
  6316. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  6317. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  6318. "shasum": ""
  6319. },
  6320. "require": {
  6321. "ext-dom": "*",
  6322. "ext-tokenizer": "*",
  6323. "ext-xmlwriter": "*",
  6324. "php": "^7.2 || ^8.0"
  6325. },
  6326. "type": "library",
  6327. "autoload": {
  6328. "classmap": [
  6329. "src/"
  6330. ]
  6331. },
  6332. "notification-url": "https://packagist.org/downloads/",
  6333. "license": [
  6334. "BSD-3-Clause"
  6335. ],
  6336. "authors": [
  6337. {
  6338. "name": "Arne Blankerts",
  6339. "email": "arne@blankerts.de",
  6340. "role": "Developer"
  6341. }
  6342. ],
  6343. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6344. "funding": [
  6345. {
  6346. "url": "https://github.com/theseer",
  6347. "type": "github"
  6348. }
  6349. ],
  6350. "time": "2023-11-20T00:12:19+00:00"
  6351. },
  6352. {
  6353. "name": "yiisoft/yii2-debug",
  6354. "version": "2.1.25",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/yiisoft/yii2-debug.git",
  6358. "reference": "4d011b9bfc83bde71cde43c9f6837f5a74685ea7"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/4d011b9bfc83bde71cde43c9f6837f5a74685ea7",
  6363. "reference": "4d011b9bfc83bde71cde43c9f6837f5a74685ea7",
  6364. "shasum": ""
  6365. },
  6366. "require": {
  6367. "ext-mbstring": "*",
  6368. "php": ">=5.4",
  6369. "yiisoft/yii2": "~2.0.13"
  6370. },
  6371. "require-dev": {
  6372. "cweagans/composer-patches": "^1.7",
  6373. "phpunit/phpunit": "4.8.34",
  6374. "yiisoft/yii2-coding-standards": "~2.0",
  6375. "yiisoft/yii2-swiftmailer": "*"
  6376. },
  6377. "type": "yii2-extension",
  6378. "extra": {
  6379. "branch-alias": {
  6380. "dev-master": "2.0.x-dev"
  6381. },
  6382. "composer-exit-on-patch-failure": true,
  6383. "patches": {
  6384. "phpunit/phpunit-mock-objects": {
  6385. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  6386. },
  6387. "phpunit/phpunit": {
  6388. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  6389. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  6390. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  6391. }
  6392. }
  6393. },
  6394. "autoload": {
  6395. "psr-4": {
  6396. "yii\\debug\\": "src"
  6397. }
  6398. },
  6399. "notification-url": "https://packagist.org/downloads/",
  6400. "license": [
  6401. "BSD-3-Clause"
  6402. ],
  6403. "authors": [
  6404. {
  6405. "name": "Qiang Xue",
  6406. "email": "qiang.xue@gmail.com"
  6407. },
  6408. {
  6409. "name": "Simon Karlen",
  6410. "email": "simi.albi@outlook.com"
  6411. }
  6412. ],
  6413. "description": "The debugger extension for the Yii framework",
  6414. "keywords": [
  6415. "debug",
  6416. "debugger",
  6417. "yii2"
  6418. ],
  6419. "funding": [
  6420. {
  6421. "url": "https://github.com/yiisoft",
  6422. "type": "github"
  6423. },
  6424. {
  6425. "url": "https://opencollective.com/yiisoft",
  6426. "type": "open_collective"
  6427. },
  6428. {
  6429. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-debug",
  6430. "type": "tidelift"
  6431. }
  6432. ],
  6433. "time": "2023-09-26T15:50:00+00:00"
  6434. },
  6435. {
  6436. "name": "yiisoft/yii2-faker",
  6437. "version": "2.0.5",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/yiisoft/yii2-faker.git",
  6441. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  6446. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "fakerphp/faker": "~1.9|~1.10",
  6451. "yiisoft/yii2": "~2.0.0"
  6452. },
  6453. "require-dev": {
  6454. "cweagans/composer-patches": "^1.7",
  6455. "phpunit/phpunit": "4.8.34"
  6456. },
  6457. "type": "yii2-extension",
  6458. "extra": {
  6459. "branch-alias": {
  6460. "dev-master": "2.0.x-dev"
  6461. },
  6462. "composer-exit-on-patch-failure": true,
  6463. "patches": {
  6464. "phpunit/phpunit-mock-objects": {
  6465. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  6466. },
  6467. "phpunit/phpunit": {
  6468. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  6469. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  6470. }
  6471. }
  6472. },
  6473. "autoload": {
  6474. "psr-4": {
  6475. "yii\\faker\\": "src"
  6476. }
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "BSD-3-Clause"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Mark Jebri",
  6485. "email": "mark.github@yandex.ru"
  6486. }
  6487. ],
  6488. "description": "Fixture generator. The Faker integration for the Yii framework.",
  6489. "keywords": [
  6490. "Fixture",
  6491. "faker",
  6492. "yii2"
  6493. ],
  6494. "funding": [
  6495. {
  6496. "url": "https://github.com/yiisoft",
  6497. "type": "github"
  6498. },
  6499. {
  6500. "url": "https://opencollective.com/yiisoft",
  6501. "type": "open_collective"
  6502. },
  6503. {
  6504. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-faker",
  6505. "type": "tidelift"
  6506. }
  6507. ],
  6508. "time": "2020-11-10T12:27:35+00:00"
  6509. },
  6510. {
  6511. "name": "yiisoft/yii2-gii",
  6512. "version": "2.2.6",
  6513. "source": {
  6514. "type": "git",
  6515. "url": "https://github.com/yiisoft/yii2-gii.git",
  6516. "reference": "ac574e7e2c29fd865145c8688719f252d19aae23"
  6517. },
  6518. "dist": {
  6519. "type": "zip",
  6520. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/ac574e7e2c29fd865145c8688719f252d19aae23",
  6521. "reference": "ac574e7e2c29fd865145c8688719f252d19aae23",
  6522. "shasum": ""
  6523. },
  6524. "require": {
  6525. "phpspec/php-diff": "^1.1.0",
  6526. "yiisoft/yii2": "~2.0.46"
  6527. },
  6528. "require-dev": {
  6529. "cweagans/composer-patches": "^1.7",
  6530. "phpunit/phpunit": "4.8.34",
  6531. "yiisoft/yii2-coding-standards": "~2.0"
  6532. },
  6533. "type": "yii2-extension",
  6534. "extra": {
  6535. "branch-alias": {
  6536. "dev-master": "2.0.x-dev"
  6537. },
  6538. "composer-exit-on-patch-failure": true,
  6539. "patches": {
  6540. "phpunit/phpunit-mock-objects": {
  6541. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  6542. },
  6543. "phpunit/php-file-iterator": {
  6544. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_path_file_iterator.patch"
  6545. },
  6546. "phpunit/phpunit": {
  6547. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  6548. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  6549. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  6550. }
  6551. }
  6552. },
  6553. "autoload": {
  6554. "psr-4": {
  6555. "yii\\gii\\": "src"
  6556. }
  6557. },
  6558. "notification-url": "https://packagist.org/downloads/",
  6559. "license": [
  6560. "BSD-3-Clause"
  6561. ],
  6562. "authors": [
  6563. {
  6564. "name": "Qiang Xue",
  6565. "email": "qiang.xue@gmail.com"
  6566. }
  6567. ],
  6568. "description": "The Gii extension for the Yii framework",
  6569. "keywords": [
  6570. "code generator",
  6571. "gii",
  6572. "yii2"
  6573. ],
  6574. "funding": [
  6575. {
  6576. "url": "https://github.com/yiisoft",
  6577. "type": "github"
  6578. },
  6579. {
  6580. "url": "https://opencollective.com/yiisoft",
  6581. "type": "open_collective"
  6582. },
  6583. {
  6584. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-gii",
  6585. "type": "tidelift"
  6586. }
  6587. ],
  6588. "time": "2023-05-22T20:55:37+00:00"
  6589. }
  6590. ],
  6591. "aliases": [],
  6592. "minimum-stability": "dev",
  6593. "stability-flags": {
  6594. "dektrium/yii2-rbac": 20,
  6595. "zxbodya/yii2-gallery-manager": 20
  6596. },
  6597. "prefer-stable": true,
  6598. "prefer-lowest": false,
  6599. "platform": {
  6600. "php": ">=5.6.0"
  6601. },
  6602. "platform-dev": [],
  6603. "plugin-api-version": "1.1.0"
  6604. }