composer.lock 236 KB

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