composer.lock 232 KB

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