composer.lock 227 KB

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