composer.lock 227 KB

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