composer.lock 253 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107
  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": "180f2a670b99a3c40aca759079cad74e",
  8. "packages": [
  9. {
  10. "name": "cakephp/chronos",
  11. "version": "3.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/cakephp/chronos.git",
  15. "reference": "e6e777b534244911566face8a5dbdbd7f7bda5a6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/cakephp/chronos/zipball/e6e777b534244911566face8a5dbdbd7f7bda5a6",
  20. "reference": "e6e777b534244911566face8a5dbdbd7f7bda5a6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=8.1",
  25. "psr/clock": "^1.0"
  26. },
  27. "provide": {
  28. "psr/clock-implementation": "1.0"
  29. },
  30. "require-dev": {
  31. "cakephp/cakephp-codesniffer": "^5.0",
  32. "phpunit/phpunit": "^10.5.58 || ^11.5.3 || ^12.1.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Cake\\Chronos\\": "src/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Brian Nesbitt",
  47. "email": "brian@nesbot.com",
  48. "homepage": "http://nesbot.com"
  49. },
  50. {
  51. "name": "The CakePHP Team",
  52. "homepage": "https://cakephp.org"
  53. }
  54. ],
  55. "description": "A simple API extension for DateTime.",
  56. "homepage": "https://cakephp.org",
  57. "keywords": [
  58. "date",
  59. "datetime",
  60. "time"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/cakephp/chronos/issues",
  64. "source": "https://github.com/cakephp/chronos"
  65. },
  66. "time": "2026-04-10T02:50:39+00:00"
  67. },
  68. {
  69. "name": "cakephp/core",
  70. "version": "5.3.4",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/cakephp/core.git",
  74. "reference": "eb012517900ed288f580aa3487e9a09f28ea85f9"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/cakephp/core/zipball/eb012517900ed288f580aa3487e9a09f28ea85f9",
  79. "reference": "eb012517900ed288f580aa3487e9a09f28ea85f9",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "cakephp/utility": "^5.3.0",
  84. "league/container": "^5.1",
  85. "php": ">=8.2",
  86. "psr/container": "^1.1 || ^2.0"
  87. },
  88. "provide": {
  89. "psr/container-implementation": "^2.0"
  90. },
  91. "suggest": {
  92. "cakephp/cache": "To use Configure::store() and restore().",
  93. "cakephp/event": "To use PluginApplicationInterface or plugin applications.",
  94. "league/container": "To use Container and ServiceProvider classes"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-5.next": "5.4.x-dev"
  100. }
  101. },
  102. "autoload": {
  103. "files": [
  104. "functions.php"
  105. ],
  106. "psr-4": {
  107. "Cake\\Core\\": "."
  108. }
  109. },
  110. "notification-url": "https://packagist.org/downloads/",
  111. "license": [
  112. "MIT"
  113. ],
  114. "authors": [
  115. {
  116. "name": "CakePHP Community",
  117. "homepage": "https://github.com/cakephp/core/graphs/contributors"
  118. }
  119. ],
  120. "description": "CakePHP Framework Core classes",
  121. "homepage": "https://cakephp.org",
  122. "keywords": [
  123. "cakephp",
  124. "core",
  125. "framework"
  126. ],
  127. "support": {
  128. "forum": "https://stackoverflow.com/tags/cakephp",
  129. "irc": "irc://irc.freenode.org/cakephp",
  130. "issues": "https://github.com/cakephp/cakephp/issues",
  131. "source": "https://github.com/cakephp/core"
  132. },
  133. "time": "2026-03-31T06:25:23+00:00"
  134. },
  135. {
  136. "name": "cakephp/database",
  137. "version": "5.3.4",
  138. "source": {
  139. "type": "git",
  140. "url": "https://github.com/cakephp/database.git",
  141. "reference": "cf94dcb57c54a1a308fd866b038cd6995910e36e"
  142. },
  143. "dist": {
  144. "type": "zip",
  145. "url": "https://api.github.com/repos/cakephp/database/zipball/cf94dcb57c54a1a308fd866b038cd6995910e36e",
  146. "reference": "cf94dcb57c54a1a308fd866b038cd6995910e36e",
  147. "shasum": ""
  148. },
  149. "require": {
  150. "cakephp/chronos": "^3.3",
  151. "cakephp/core": "^5.3.0",
  152. "cakephp/datasource": "^5.3.0",
  153. "php": ">=8.2",
  154. "psr/log": "^3.0"
  155. },
  156. "require-dev": {
  157. "cakephp/i18n": "^5.3.0",
  158. "cakephp/log": "^5.3.0"
  159. },
  160. "suggest": {
  161. "cakephp/i18n": "If you are using locale-aware datetime formats.",
  162. "cakephp/log": "If you want to use query logging without providing a logger yourself."
  163. },
  164. "type": "library",
  165. "extra": {
  166. "branch-alias": {
  167. "dev-5.next": "5.4.x-dev"
  168. }
  169. },
  170. "autoload": {
  171. "psr-4": {
  172. "Cake\\Database\\": "."
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "CakePHP Community",
  182. "homepage": "https://github.com/cakephp/database/graphs/contributors"
  183. }
  184. ],
  185. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  186. "homepage": "https://cakephp.org",
  187. "keywords": [
  188. "abstraction",
  189. "cakephp",
  190. "database",
  191. "database abstraction",
  192. "pdo"
  193. ],
  194. "support": {
  195. "forum": "https://stackoverflow.com/tags/cakephp",
  196. "irc": "irc://irc.freenode.org/cakephp",
  197. "issues": "https://github.com/cakephp/cakephp/issues",
  198. "source": "https://github.com/cakephp/database"
  199. },
  200. "time": "2026-03-31T06:25:23+00:00"
  201. },
  202. {
  203. "name": "cakephp/datasource",
  204. "version": "5.3.4",
  205. "source": {
  206. "type": "git",
  207. "url": "https://github.com/cakephp/datasource.git",
  208. "reference": "512464eb27b19316b515ec338089b83822c9ab5a"
  209. },
  210. "dist": {
  211. "type": "zip",
  212. "url": "https://api.github.com/repos/cakephp/datasource/zipball/512464eb27b19316b515ec338089b83822c9ab5a",
  213. "reference": "512464eb27b19316b515ec338089b83822c9ab5a",
  214. "shasum": ""
  215. },
  216. "require": {
  217. "cakephp/core": "^5.3.0",
  218. "php": ">=8.2",
  219. "psr/simple-cache": "^2.0 || ^3.0"
  220. },
  221. "require-dev": {
  222. "cakephp/cache": "^5.3.0",
  223. "cakephp/collection": "^5.3.0",
  224. "cakephp/utility": "^5.3.0"
  225. },
  226. "suggest": {
  227. "cakephp/cache": "If you decide to use Query caching.",
  228. "cakephp/collection": "If you decide to use ResultSetInterface.",
  229. "cakephp/utility": "If you decide to use EntityTrait."
  230. },
  231. "type": "library",
  232. "extra": {
  233. "branch-alias": {
  234. "dev-5.next": "5.4.x-dev"
  235. }
  236. },
  237. "autoload": {
  238. "psr-4": {
  239. "Cake\\Datasource\\": "."
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "authors": [
  247. {
  248. "name": "CakePHP Community",
  249. "homepage": "https://github.com/cakephp/datasource/graphs/contributors"
  250. }
  251. ],
  252. "description": "Provides connection managing and traits for Entities and Queries that can be reused for different datastores",
  253. "homepage": "https://cakephp.org",
  254. "keywords": [
  255. "cakephp",
  256. "connection management",
  257. "datasource",
  258. "entity",
  259. "query"
  260. ],
  261. "support": {
  262. "forum": "https://stackoverflow.com/tags/cakephp",
  263. "irc": "irc://irc.freenode.org/cakephp",
  264. "issues": "https://github.com/cakephp/cakephp/issues",
  265. "source": "https://github.com/cakephp/datasource"
  266. },
  267. "time": "2026-04-04T08:08:42+00:00"
  268. },
  269. {
  270. "name": "cakephp/utility",
  271. "version": "5.3.4",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/cakephp/utility.git",
  275. "reference": "4ac9826fe5faa1505ec5aa3c171d6b58b6ab4e99"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/cakephp/utility/zipball/4ac9826fe5faa1505ec5aa3c171d6b58b6ab4e99",
  280. "reference": "4ac9826fe5faa1505ec5aa3c171d6b58b6ab4e99",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "cakephp/core": "^5.3.0",
  285. "php": ">=8.2"
  286. },
  287. "suggest": {
  288. "ext-intl": "To use Text::transliterate() or Text::slug()",
  289. "lib-ICU": "To use Text::transliterate() or Text::slug()"
  290. },
  291. "type": "library",
  292. "extra": {
  293. "branch-alias": {
  294. "dev-5.next": "5.4.x-dev"
  295. }
  296. },
  297. "autoload": {
  298. "files": [
  299. "bootstrap.php"
  300. ],
  301. "psr-4": {
  302. "Cake\\Utility\\": "."
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "CakePHP Community",
  312. "homepage": "https://github.com/cakephp/utility/graphs/contributors"
  313. }
  314. ],
  315. "description": "CakePHP Utility classes such as Inflector, String, Hash, and Security",
  316. "homepage": "https://cakephp.org",
  317. "keywords": [
  318. "cakephp",
  319. "hash",
  320. "inflector",
  321. "security",
  322. "string",
  323. "utility"
  324. ],
  325. "support": {
  326. "forum": "https://stackoverflow.com/tags/cakephp",
  327. "irc": "irc://irc.freenode.org/cakephp",
  328. "issues": "https://github.com/cakephp/cakephp/issues",
  329. "source": "https://github.com/cakephp/utility"
  330. },
  331. "time": "2026-03-09T09:38:36+00:00"
  332. },
  333. {
  334. "name": "composer/ca-bundle",
  335. "version": "1.5.11",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/composer/ca-bundle.git",
  339. "reference": "68ff39175e8e94a4bb1d259407ce51a6a60f09e6"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/68ff39175e8e94a4bb1d259407ce51a6a60f09e6",
  344. "reference": "68ff39175e8e94a4bb1d259407ce51a6a60f09e6",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "ext-openssl": "*",
  349. "ext-pcre": "*",
  350. "php": "^7.2 || ^8.0"
  351. },
  352. "require-dev": {
  353. "phpstan/phpstan": "^1.10",
  354. "phpunit/phpunit": "^8 || ^9",
  355. "psr/log": "^1.0 || ^2.0 || ^3.0",
  356. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  357. },
  358. "type": "library",
  359. "extra": {
  360. "branch-alias": {
  361. "dev-main": "1.x-dev"
  362. }
  363. },
  364. "autoload": {
  365. "psr-4": {
  366. "Composer\\CaBundle\\": "src"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "authors": [
  374. {
  375. "name": "Jordi Boggiano",
  376. "email": "j.boggiano@seld.be",
  377. "homepage": "http://seld.be"
  378. }
  379. ],
  380. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  381. "keywords": [
  382. "cabundle",
  383. "cacert",
  384. "certificate",
  385. "ssl",
  386. "tls"
  387. ],
  388. "support": {
  389. "irc": "irc://irc.freenode.org/composer",
  390. "issues": "https://github.com/composer/ca-bundle/issues",
  391. "source": "https://github.com/composer/ca-bundle/tree/1.5.11"
  392. },
  393. "funding": [
  394. {
  395. "url": "https://packagist.com",
  396. "type": "custom"
  397. },
  398. {
  399. "url": "https://github.com/composer",
  400. "type": "github"
  401. }
  402. ],
  403. "time": "2026-03-30T09:16:10+00:00"
  404. },
  405. {
  406. "name": "doctrine/dbal",
  407. "version": "4.4.3",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/doctrine/dbal.git",
  411. "reference": "61e730f1658814821a85f2402c945f3883407dec"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61e730f1658814821a85f2402c945f3883407dec",
  416. "reference": "61e730f1658814821a85f2402c945f3883407dec",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "doctrine/deprecations": "^1.1.5",
  421. "php": "^8.2",
  422. "psr/cache": "^1|^2|^3",
  423. "psr/log": "^1|^2|^3"
  424. },
  425. "require-dev": {
  426. "doctrine/coding-standard": "14.0.0",
  427. "fig/log-test": "^1",
  428. "jetbrains/phpstorm-stubs": "2023.2",
  429. "phpstan/phpstan": "2.1.30",
  430. "phpstan/phpstan-phpunit": "2.0.7",
  431. "phpstan/phpstan-strict-rules": "^2",
  432. "phpunit/phpunit": "11.5.50",
  433. "slevomat/coding-standard": "8.27.1",
  434. "squizlabs/php_codesniffer": "4.0.1",
  435. "symfony/cache": "^6.3.8|^7.0|^8.0",
  436. "symfony/console": "^5.4|^6.3|^7.0|^8.0"
  437. },
  438. "suggest": {
  439. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "Doctrine\\DBAL\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Guilherme Blanco",
  454. "email": "guilhermeblanco@gmail.com"
  455. },
  456. {
  457. "name": "Roman Borschel",
  458. "email": "roman@code-factory.org"
  459. },
  460. {
  461. "name": "Benjamin Eberlei",
  462. "email": "kontakt@beberlei.de"
  463. },
  464. {
  465. "name": "Jonathan Wage",
  466. "email": "jonwage@gmail.com"
  467. }
  468. ],
  469. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  470. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  471. "keywords": [
  472. "abstraction",
  473. "database",
  474. "db2",
  475. "dbal",
  476. "mariadb",
  477. "mssql",
  478. "mysql",
  479. "oci8",
  480. "oracle",
  481. "pdo",
  482. "pgsql",
  483. "postgresql",
  484. "queryobject",
  485. "sasql",
  486. "sql",
  487. "sqlite",
  488. "sqlserver",
  489. "sqlsrv"
  490. ],
  491. "support": {
  492. "issues": "https://github.com/doctrine/dbal/issues",
  493. "source": "https://github.com/doctrine/dbal/tree/4.4.3"
  494. },
  495. "funding": [
  496. {
  497. "url": "https://www.doctrine-project.org/sponsorship.html",
  498. "type": "custom"
  499. },
  500. {
  501. "url": "https://www.patreon.com/phpdoctrine",
  502. "type": "patreon"
  503. },
  504. {
  505. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  506. "type": "tidelift"
  507. }
  508. ],
  509. "time": "2026-03-20T08:52:12+00:00"
  510. },
  511. {
  512. "name": "doctrine/deprecations",
  513. "version": "1.1.6",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/doctrine/deprecations.git",
  517. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  522. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "php": "^7.1 || ^8.0"
  527. },
  528. "conflict": {
  529. "phpunit/phpunit": "<=7.5 || >=14"
  530. },
  531. "require-dev": {
  532. "doctrine/coding-standard": "^9 || ^12 || ^14",
  533. "phpstan/phpstan": "1.4.10 || 2.1.30",
  534. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  535. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  536. "psr/log": "^1 || ^2 || ^3"
  537. },
  538. "suggest": {
  539. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  540. },
  541. "type": "library",
  542. "autoload": {
  543. "psr-4": {
  544. "Doctrine\\Deprecations\\": "src"
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "MIT"
  550. ],
  551. "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.",
  552. "homepage": "https://www.doctrine-project.org/",
  553. "support": {
  554. "issues": "https://github.com/doctrine/deprecations/issues",
  555. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  556. },
  557. "time": "2026-02-07T07:09:04+00:00"
  558. },
  559. {
  560. "name": "fig/http-message-util",
  561. "version": "1.1.5",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/php-fig/http-message-util.git",
  565. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  570. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "php": "^5.3 || ^7.0 || ^8.0"
  575. },
  576. "suggest": {
  577. "psr/http-message": "The package containing the PSR-7 interfaces"
  578. },
  579. "type": "library",
  580. "extra": {
  581. "branch-alias": {
  582. "dev-master": "1.1.x-dev"
  583. }
  584. },
  585. "autoload": {
  586. "psr-4": {
  587. "Fig\\Http\\Message\\": "src/"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "PHP-FIG",
  597. "homepage": "https://www.php-fig.org/"
  598. }
  599. ],
  600. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  601. "keywords": [
  602. "http",
  603. "http-message",
  604. "psr",
  605. "psr-7",
  606. "request",
  607. "response"
  608. ],
  609. "support": {
  610. "issues": "https://github.com/php-fig/http-message-util/issues",
  611. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  612. },
  613. "time": "2020-11-24T22:02:12+00:00"
  614. },
  615. {
  616. "name": "geoip2/geoip2",
  617. "version": "v3.3.0",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/maxmind/GeoIP2-php.git",
  621. "reference": "49fceddd694295e76e970a32848e03bb19e56b42"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/49fceddd694295e76e970a32848e03bb19e56b42",
  626. "reference": "49fceddd694295e76e970a32848e03bb19e56b42",
  627. "shasum": ""
  628. },
  629. "require": {
  630. "ext-json": "*",
  631. "maxmind-db/reader": "^1.13.0",
  632. "maxmind/web-service-common": "~0.11",
  633. "php": ">=8.1"
  634. },
  635. "require-dev": {
  636. "friendsofphp/php-cs-fixer": "3.*",
  637. "phpstan/phpstan": "*",
  638. "phpunit/phpunit": "^10.0",
  639. "squizlabs/php_codesniffer": "4.*"
  640. },
  641. "type": "library",
  642. "autoload": {
  643. "psr-4": {
  644. "GeoIp2\\": "src"
  645. }
  646. },
  647. "notification-url": "https://packagist.org/downloads/",
  648. "license": [
  649. "Apache-2.0"
  650. ],
  651. "authors": [
  652. {
  653. "name": "Gregory J. Oschwald",
  654. "email": "goschwald@maxmind.com",
  655. "homepage": "https://www.maxmind.com/"
  656. }
  657. ],
  658. "description": "MaxMind GeoIP2 PHP API",
  659. "homepage": "https://github.com/maxmind/GeoIP2-php",
  660. "keywords": [
  661. "IP",
  662. "geoip",
  663. "geoip2",
  664. "geolocation",
  665. "maxmind"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  669. "source": "https://github.com/maxmind/GeoIP2-php/tree/v3.3.0"
  670. },
  671. "time": "2025-11-20T18:50:15+00:00"
  672. },
  673. {
  674. "name": "guzzlehttp/guzzle",
  675. "version": "7.10.0",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/guzzle/guzzle.git",
  679. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  684. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "ext-json": "*",
  689. "guzzlehttp/promises": "^2.3",
  690. "guzzlehttp/psr7": "^2.8",
  691. "php": "^7.2.5 || ^8.0",
  692. "psr/http-client": "^1.0",
  693. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  694. },
  695. "provide": {
  696. "psr/http-client-implementation": "1.0"
  697. },
  698. "require-dev": {
  699. "bamarni/composer-bin-plugin": "^1.8.2",
  700. "ext-curl": "*",
  701. "guzzle/client-integration-tests": "3.0.2",
  702. "php-http/message-factory": "^1.1",
  703. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  704. "psr/log": "^1.1 || ^2.0 || ^3.0"
  705. },
  706. "suggest": {
  707. "ext-curl": "Required for CURL handler support",
  708. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  709. "psr/log": "Required for using the Log middleware"
  710. },
  711. "type": "library",
  712. "extra": {
  713. "bamarni-bin": {
  714. "bin-links": true,
  715. "forward-command": false
  716. }
  717. },
  718. "autoload": {
  719. "files": [
  720. "src/functions_include.php"
  721. ],
  722. "psr-4": {
  723. "GuzzleHttp\\": "src/"
  724. }
  725. },
  726. "notification-url": "https://packagist.org/downloads/",
  727. "license": [
  728. "MIT"
  729. ],
  730. "authors": [
  731. {
  732. "name": "Graham Campbell",
  733. "email": "hello@gjcampbell.co.uk",
  734. "homepage": "https://github.com/GrahamCampbell"
  735. },
  736. {
  737. "name": "Michael Dowling",
  738. "email": "mtdowling@gmail.com",
  739. "homepage": "https://github.com/mtdowling"
  740. },
  741. {
  742. "name": "Jeremy Lindblom",
  743. "email": "jeremeamia@gmail.com",
  744. "homepage": "https://github.com/jeremeamia"
  745. },
  746. {
  747. "name": "George Mponos",
  748. "email": "gmponos@gmail.com",
  749. "homepage": "https://github.com/gmponos"
  750. },
  751. {
  752. "name": "Tobias Nyholm",
  753. "email": "tobias.nyholm@gmail.com",
  754. "homepage": "https://github.com/Nyholm"
  755. },
  756. {
  757. "name": "Márk Sági-Kazár",
  758. "email": "mark.sagikazar@gmail.com",
  759. "homepage": "https://github.com/sagikazarmark"
  760. },
  761. {
  762. "name": "Tobias Schultze",
  763. "email": "webmaster@tubo-world.de",
  764. "homepage": "https://github.com/Tobion"
  765. }
  766. ],
  767. "description": "Guzzle is a PHP HTTP client library",
  768. "keywords": [
  769. "client",
  770. "curl",
  771. "framework",
  772. "http",
  773. "http client",
  774. "psr-18",
  775. "psr-7",
  776. "rest",
  777. "web service"
  778. ],
  779. "support": {
  780. "issues": "https://github.com/guzzle/guzzle/issues",
  781. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  782. },
  783. "funding": [
  784. {
  785. "url": "https://github.com/GrahamCampbell",
  786. "type": "github"
  787. },
  788. {
  789. "url": "https://github.com/Nyholm",
  790. "type": "github"
  791. },
  792. {
  793. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  794. "type": "tidelift"
  795. }
  796. ],
  797. "time": "2025-08-23T22:36:01+00:00"
  798. },
  799. {
  800. "name": "guzzlehttp/promises",
  801. "version": "2.3.0",
  802. "source": {
  803. "type": "git",
  804. "url": "https://github.com/guzzle/promises.git",
  805. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  806. },
  807. "dist": {
  808. "type": "zip",
  809. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  810. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  811. "shasum": ""
  812. },
  813. "require": {
  814. "php": "^7.2.5 || ^8.0"
  815. },
  816. "require-dev": {
  817. "bamarni/composer-bin-plugin": "^1.8.2",
  818. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  819. },
  820. "type": "library",
  821. "extra": {
  822. "bamarni-bin": {
  823. "bin-links": true,
  824. "forward-command": false
  825. }
  826. },
  827. "autoload": {
  828. "psr-4": {
  829. "GuzzleHttp\\Promise\\": "src/"
  830. }
  831. },
  832. "notification-url": "https://packagist.org/downloads/",
  833. "license": [
  834. "MIT"
  835. ],
  836. "authors": [
  837. {
  838. "name": "Graham Campbell",
  839. "email": "hello@gjcampbell.co.uk",
  840. "homepage": "https://github.com/GrahamCampbell"
  841. },
  842. {
  843. "name": "Michael Dowling",
  844. "email": "mtdowling@gmail.com",
  845. "homepage": "https://github.com/mtdowling"
  846. },
  847. {
  848. "name": "Tobias Nyholm",
  849. "email": "tobias.nyholm@gmail.com",
  850. "homepage": "https://github.com/Nyholm"
  851. },
  852. {
  853. "name": "Tobias Schultze",
  854. "email": "webmaster@tubo-world.de",
  855. "homepage": "https://github.com/Tobion"
  856. }
  857. ],
  858. "description": "Guzzle promises library",
  859. "keywords": [
  860. "promise"
  861. ],
  862. "support": {
  863. "issues": "https://github.com/guzzle/promises/issues",
  864. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  865. },
  866. "funding": [
  867. {
  868. "url": "https://github.com/GrahamCampbell",
  869. "type": "github"
  870. },
  871. {
  872. "url": "https://github.com/Nyholm",
  873. "type": "github"
  874. },
  875. {
  876. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  877. "type": "tidelift"
  878. }
  879. ],
  880. "time": "2025-08-22T14:34:08+00:00"
  881. },
  882. {
  883. "name": "guzzlehttp/psr7",
  884. "version": "2.9.0",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/guzzle/psr7.git",
  888. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884",
  893. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "php": "^7.2.5 || ^8.0",
  898. "psr/http-factory": "^1.0",
  899. "psr/http-message": "^1.1 || ^2.0",
  900. "ralouphie/getallheaders": "^3.0"
  901. },
  902. "provide": {
  903. "psr/http-factory-implementation": "1.0",
  904. "psr/http-message-implementation": "1.0"
  905. },
  906. "require-dev": {
  907. "bamarni/composer-bin-plugin": "^1.8.2",
  908. "http-interop/http-factory-tests": "0.9.0",
  909. "jshttp/mime-db": "1.54.0.1",
  910. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  911. },
  912. "suggest": {
  913. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  914. },
  915. "type": "library",
  916. "extra": {
  917. "bamarni-bin": {
  918. "bin-links": true,
  919. "forward-command": false
  920. }
  921. },
  922. "autoload": {
  923. "psr-4": {
  924. "GuzzleHttp\\Psr7\\": "src/"
  925. }
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Graham Campbell",
  934. "email": "hello@gjcampbell.co.uk",
  935. "homepage": "https://github.com/GrahamCampbell"
  936. },
  937. {
  938. "name": "Michael Dowling",
  939. "email": "mtdowling@gmail.com",
  940. "homepage": "https://github.com/mtdowling"
  941. },
  942. {
  943. "name": "George Mponos",
  944. "email": "gmponos@gmail.com",
  945. "homepage": "https://github.com/gmponos"
  946. },
  947. {
  948. "name": "Tobias Nyholm",
  949. "email": "tobias.nyholm@gmail.com",
  950. "homepage": "https://github.com/Nyholm"
  951. },
  952. {
  953. "name": "Márk Sági-Kazár",
  954. "email": "mark.sagikazar@gmail.com",
  955. "homepage": "https://github.com/sagikazarmark"
  956. },
  957. {
  958. "name": "Tobias Schultze",
  959. "email": "webmaster@tubo-world.de",
  960. "homepage": "https://github.com/Tobion"
  961. },
  962. {
  963. "name": "Márk Sági-Kazár",
  964. "email": "mark.sagikazar@gmail.com",
  965. "homepage": "https://sagikazarmark.hu"
  966. }
  967. ],
  968. "description": "PSR-7 message implementation that also provides common utility methods",
  969. "keywords": [
  970. "http",
  971. "message",
  972. "psr-7",
  973. "request",
  974. "response",
  975. "stream",
  976. "uri",
  977. "url"
  978. ],
  979. "support": {
  980. "issues": "https://github.com/guzzle/psr7/issues",
  981. "source": "https://github.com/guzzle/psr7/tree/2.9.0"
  982. },
  983. "funding": [
  984. {
  985. "url": "https://github.com/GrahamCampbell",
  986. "type": "github"
  987. },
  988. {
  989. "url": "https://github.com/Nyholm",
  990. "type": "github"
  991. },
  992. {
  993. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  994. "type": "tidelift"
  995. }
  996. ],
  997. "time": "2026-03-10T16:41:02+00:00"
  998. },
  999. {
  1000. "name": "laravel/serializable-closure",
  1001. "version": "v2.0.12",
  1002. "source": {
  1003. "type": "git",
  1004. "url": "https://github.com/laravel/serializable-closure.git",
  1005. "reference": "a6abb4e54f6fcd3138120b9ad497f0bd146f9919"
  1006. },
  1007. "dist": {
  1008. "type": "zip",
  1009. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/a6abb4e54f6fcd3138120b9ad497f0bd146f9919",
  1010. "reference": "a6abb4e54f6fcd3138120b9ad497f0bd146f9919",
  1011. "shasum": ""
  1012. },
  1013. "require": {
  1014. "php": "^8.1"
  1015. },
  1016. "require-dev": {
  1017. "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
  1018. "nesbot/carbon": "^2.67|^3.0",
  1019. "pestphp/pest": "^2.36|^3.0|^4.0",
  1020. "phpstan/phpstan": "^2.0",
  1021. "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "branch-alias": {
  1026. "dev-master": "2.x-dev"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "Laravel\\SerializableClosure\\": "src/"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "Taylor Otwell",
  1041. "email": "taylor@laravel.com"
  1042. },
  1043. {
  1044. "name": "Nuno Maduro",
  1045. "email": "nuno@laravel.com"
  1046. }
  1047. ],
  1048. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1049. "keywords": [
  1050. "closure",
  1051. "laravel",
  1052. "serializable"
  1053. ],
  1054. "support": {
  1055. "issues": "https://github.com/laravel/serializable-closure/issues",
  1056. "source": "https://github.com/laravel/serializable-closure"
  1057. },
  1058. "time": "2026-04-14T13:33:34+00:00"
  1059. },
  1060. {
  1061. "name": "league/container",
  1062. "version": "5.2.0",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/thephpleague/container.git",
  1066. "reference": "58accbc032f0090a9bd08326f93062c5a658b2c5"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/thephpleague/container/zipball/58accbc032f0090a9bd08326f93062c5a658b2c5",
  1071. "reference": "58accbc032f0090a9bd08326f93062c5a658b2c5",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": "^8.1",
  1076. "psr/container": "^2.0.2",
  1077. "psr/event-dispatcher": "^1.0"
  1078. },
  1079. "provide": {
  1080. "psr/container-implementation": "^1.0"
  1081. },
  1082. "replace": {
  1083. "orno/di": "~2.0"
  1084. },
  1085. "require-dev": {
  1086. "nette/php-generator": "^4.1",
  1087. "nikic/php-parser": "^5.0",
  1088. "phpstan/phpstan": "^2.1.11",
  1089. "phpunit/phpunit": "^10.5.45|^11.5.15|^12.0",
  1090. "roave/security-advisories": "dev-latest",
  1091. "scrutinizer/ocular": "^1.9",
  1092. "squizlabs/php_codesniffer": "^3.9"
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-1.x": "1.x-dev",
  1098. "dev-2.x": "2.x-dev",
  1099. "dev-3.x": "3.x-dev",
  1100. "dev-4.x": "4.x-dev",
  1101. "dev-5.x": "5.x-dev",
  1102. "dev-master": "5.x-dev"
  1103. }
  1104. },
  1105. "autoload": {
  1106. "psr-4": {
  1107. "League\\Container\\": "src"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Phil Bennett",
  1117. "email": "mail@philbennett.co.uk",
  1118. "role": "Developer"
  1119. }
  1120. ],
  1121. "description": "A fast and intuitive dependency injection container.",
  1122. "homepage": "https://github.com/thephpleague/container",
  1123. "keywords": [
  1124. "container",
  1125. "dependency",
  1126. "di",
  1127. "injection",
  1128. "league",
  1129. "provider",
  1130. "service"
  1131. ],
  1132. "support": {
  1133. "issues": "https://github.com/thephpleague/container/issues",
  1134. "source": "https://github.com/thephpleague/container/tree/5.2.0"
  1135. },
  1136. "funding": [
  1137. {
  1138. "url": "https://github.com/philipobenito",
  1139. "type": "github"
  1140. }
  1141. ],
  1142. "time": "2026-03-19T18:52:39+00:00"
  1143. },
  1144. {
  1145. "name": "maxmind-db/reader",
  1146. "version": "v1.13.1",
  1147. "source": {
  1148. "type": "git",
  1149. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  1150. "reference": "2194f58d0f024ce923e685cdf92af3daf9951908"
  1151. },
  1152. "dist": {
  1153. "type": "zip",
  1154. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/2194f58d0f024ce923e685cdf92af3daf9951908",
  1155. "reference": "2194f58d0f024ce923e685cdf92af3daf9951908",
  1156. "shasum": ""
  1157. },
  1158. "require": {
  1159. "php": ">=7.2"
  1160. },
  1161. "conflict": {
  1162. "ext-maxminddb": "<1.11.1 || >=2.0.0"
  1163. },
  1164. "require-dev": {
  1165. "friendsofphp/php-cs-fixer": "3.*",
  1166. "phpstan/phpstan": "*",
  1167. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  1168. "squizlabs/php_codesniffer": "4.*"
  1169. },
  1170. "suggest": {
  1171. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  1172. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  1173. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups",
  1174. "maxmind-db/reader-ext": "C extension for significantly faster IP lookups (install via PIE: pie install maxmind-db/reader-ext)"
  1175. },
  1176. "type": "library",
  1177. "autoload": {
  1178. "psr-4": {
  1179. "MaxMind\\Db\\": "src/MaxMind/Db"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "Apache-2.0"
  1185. ],
  1186. "authors": [
  1187. {
  1188. "name": "Gregory J. Oschwald",
  1189. "email": "goschwald@maxmind.com",
  1190. "homepage": "https://www.maxmind.com/"
  1191. }
  1192. ],
  1193. "description": "MaxMind DB Reader API",
  1194. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  1195. "keywords": [
  1196. "database",
  1197. "geoip",
  1198. "geoip2",
  1199. "geolocation",
  1200. "maxmind"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  1204. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.13.1"
  1205. },
  1206. "time": "2025-11-21T22:24:26+00:00"
  1207. },
  1208. {
  1209. "name": "maxmind/web-service-common",
  1210. "version": "v0.11.1",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/maxmind/web-service-common-php.git",
  1214. "reference": "c309236b5a5555b96cf560089ec3cead12d845d2"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/c309236b5a5555b96cf560089ec3cead12d845d2",
  1219. "reference": "c309236b5a5555b96cf560089ec3cead12d845d2",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "composer/ca-bundle": "^1.0.3",
  1224. "ext-curl": "*",
  1225. "ext-json": "*",
  1226. "php": ">=8.1"
  1227. },
  1228. "require-dev": {
  1229. "friendsofphp/php-cs-fixer": "3.*",
  1230. "phpstan/phpstan": "*",
  1231. "phpunit/phpunit": "^10.0",
  1232. "squizlabs/php_codesniffer": "4.*"
  1233. },
  1234. "type": "library",
  1235. "autoload": {
  1236. "psr-4": {
  1237. "MaxMind\\Exception\\": "src/Exception",
  1238. "MaxMind\\WebService\\": "src/WebService"
  1239. }
  1240. },
  1241. "notification-url": "https://packagist.org/downloads/",
  1242. "license": [
  1243. "Apache-2.0"
  1244. ],
  1245. "authors": [
  1246. {
  1247. "name": "Gregory Oschwald",
  1248. "email": "goschwald@maxmind.com"
  1249. }
  1250. ],
  1251. "description": "Internal MaxMind Web Service API",
  1252. "homepage": "https://github.com/maxmind/web-service-common-php",
  1253. "support": {
  1254. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  1255. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.11.1"
  1256. },
  1257. "time": "2026-01-13T17:56:03+00:00"
  1258. },
  1259. {
  1260. "name": "monolog/monolog",
  1261. "version": "3.10.0",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/Seldaek/monolog.git",
  1265. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1270. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "php": ">=8.1",
  1275. "psr/log": "^2.0 || ^3.0"
  1276. },
  1277. "provide": {
  1278. "psr/log-implementation": "3.0.0"
  1279. },
  1280. "require-dev": {
  1281. "aws/aws-sdk-php": "^3.0",
  1282. "doctrine/couchdb": "~1.0@dev",
  1283. "elasticsearch/elasticsearch": "^7 || ^8",
  1284. "ext-json": "*",
  1285. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1286. "guzzlehttp/guzzle": "^7.4.5",
  1287. "guzzlehttp/psr7": "^2.2",
  1288. "mongodb/mongodb": "^1.8 || ^2.0",
  1289. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1290. "php-console/php-console": "^3.1.8",
  1291. "phpstan/phpstan": "^2",
  1292. "phpstan/phpstan-deprecation-rules": "^2",
  1293. "phpstan/phpstan-strict-rules": "^2",
  1294. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1295. "predis/predis": "^1.1 || ^2",
  1296. "rollbar/rollbar": "^4.0",
  1297. "ruflin/elastica": "^7 || ^8",
  1298. "symfony/mailer": "^5.4 || ^6",
  1299. "symfony/mime": "^5.4 || ^6"
  1300. },
  1301. "suggest": {
  1302. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1303. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1304. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1305. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1306. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1307. "ext-mbstring": "Allow to work properly with unicode symbols",
  1308. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1309. "ext-openssl": "Required to send log messages using SSL",
  1310. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1311. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1312. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1313. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1314. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1315. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1316. },
  1317. "type": "library",
  1318. "extra": {
  1319. "branch-alias": {
  1320. "dev-main": "3.x-dev"
  1321. }
  1322. },
  1323. "autoload": {
  1324. "psr-4": {
  1325. "Monolog\\": "src/Monolog"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Jordi Boggiano",
  1335. "email": "j.boggiano@seld.be",
  1336. "homepage": "https://seld.be"
  1337. }
  1338. ],
  1339. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1340. "homepage": "https://github.com/Seldaek/monolog",
  1341. "keywords": [
  1342. "log",
  1343. "logging",
  1344. "psr-3"
  1345. ],
  1346. "support": {
  1347. "issues": "https://github.com/Seldaek/monolog/issues",
  1348. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  1349. },
  1350. "funding": [
  1351. {
  1352. "url": "https://github.com/Seldaek",
  1353. "type": "github"
  1354. },
  1355. {
  1356. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1357. "type": "tidelift"
  1358. }
  1359. ],
  1360. "time": "2026-01-02T08:56:05+00:00"
  1361. },
  1362. {
  1363. "name": "nikic/fast-route",
  1364. "version": "v1.3.0",
  1365. "source": {
  1366. "type": "git",
  1367. "url": "https://github.com/nikic/FastRoute.git",
  1368. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1369. },
  1370. "dist": {
  1371. "type": "zip",
  1372. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1373. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1374. "shasum": ""
  1375. },
  1376. "require": {
  1377. "php": ">=5.4.0"
  1378. },
  1379. "require-dev": {
  1380. "phpunit/phpunit": "^4.8.35|~5.7"
  1381. },
  1382. "type": "library",
  1383. "autoload": {
  1384. "files": [
  1385. "src/functions.php"
  1386. ],
  1387. "psr-4": {
  1388. "FastRoute\\": "src/"
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "BSD-3-Clause"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Nikita Popov",
  1398. "email": "nikic@php.net"
  1399. }
  1400. ],
  1401. "description": "Fast request router for PHP",
  1402. "keywords": [
  1403. "router",
  1404. "routing"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/nikic/FastRoute/issues",
  1408. "source": "https://github.com/nikic/FastRoute/tree/master"
  1409. },
  1410. "time": "2018-02-13T20:26:39+00:00"
  1411. },
  1412. {
  1413. "name": "php-di/invoker",
  1414. "version": "2.3.7",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/PHP-DI/Invoker.git",
  1418. "reference": "3c1ddfdef181431fbc4be83378f6d036d59e81e1"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/3c1ddfdef181431fbc4be83378f6d036d59e81e1",
  1423. "reference": "3c1ddfdef181431fbc4be83378f6d036d59e81e1",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": ">=7.3",
  1428. "psr/container": "^1.0|^2.0"
  1429. },
  1430. "require-dev": {
  1431. "athletic/athletic": "~0.1.8",
  1432. "mnapoli/hard-mode": "~0.3.0",
  1433. "phpunit/phpunit": "^9.0 || ^10 || ^11 || ^12"
  1434. },
  1435. "type": "library",
  1436. "autoload": {
  1437. "psr-4": {
  1438. "Invoker\\": "src/"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "description": "Generic and extensible callable invoker",
  1446. "homepage": "https://github.com/PHP-DI/Invoker",
  1447. "keywords": [
  1448. "callable",
  1449. "dependency",
  1450. "dependency-injection",
  1451. "injection",
  1452. "invoke",
  1453. "invoker"
  1454. ],
  1455. "support": {
  1456. "issues": "https://github.com/PHP-DI/Invoker/issues",
  1457. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.7"
  1458. },
  1459. "funding": [
  1460. {
  1461. "url": "https://github.com/mnapoli",
  1462. "type": "github"
  1463. }
  1464. ],
  1465. "time": "2025-08-30T10:22:22+00:00"
  1466. },
  1467. {
  1468. "name": "php-di/php-di",
  1469. "version": "7.1.1",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/PHP-DI/PHP-DI.git",
  1473. "reference": "f88054cc052e40dbe7b383c8817c19442d480352"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/f88054cc052e40dbe7b383c8817c19442d480352",
  1478. "reference": "f88054cc052e40dbe7b383c8817c19442d480352",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "laravel/serializable-closure": "^1.0 || ^2.0",
  1483. "php": ">=8.0",
  1484. "php-di/invoker": "^2.0",
  1485. "psr/container": "^1.1 || ^2.0"
  1486. },
  1487. "provide": {
  1488. "psr/container-implementation": "^1.0"
  1489. },
  1490. "require-dev": {
  1491. "friendsofphp/php-cs-fixer": "^3",
  1492. "friendsofphp/proxy-manager-lts": "^1",
  1493. "mnapoli/phpunit-easymock": "^1.3",
  1494. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  1495. "vimeo/psalm": "^5|^6"
  1496. },
  1497. "suggest": {
  1498. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  1499. },
  1500. "type": "library",
  1501. "autoload": {
  1502. "files": [
  1503. "src/functions.php"
  1504. ],
  1505. "psr-4": {
  1506. "DI\\": "src/"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "description": "The dependency injection container for humans",
  1514. "homepage": "https://php-di.org/",
  1515. "keywords": [
  1516. "PSR-11",
  1517. "container",
  1518. "container-interop",
  1519. "dependency injection",
  1520. "di",
  1521. "ioc",
  1522. "psr11"
  1523. ],
  1524. "support": {
  1525. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  1526. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.1.1"
  1527. },
  1528. "funding": [
  1529. {
  1530. "url": "https://github.com/mnapoli",
  1531. "type": "github"
  1532. },
  1533. {
  1534. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  1535. "type": "tidelift"
  1536. }
  1537. ],
  1538. "time": "2025-08-16T11:10:48+00:00"
  1539. },
  1540. {
  1541. "name": "psr/cache",
  1542. "version": "3.0.0",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/php-fig/cache.git",
  1546. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1551. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1552. "shasum": ""
  1553. },
  1554. "require": {
  1555. "php": ">=8.0.0"
  1556. },
  1557. "type": "library",
  1558. "extra": {
  1559. "branch-alias": {
  1560. "dev-master": "1.0.x-dev"
  1561. }
  1562. },
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Psr\\Cache\\": "src/"
  1566. }
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "PHP-FIG",
  1575. "homepage": "https://www.php-fig.org/"
  1576. }
  1577. ],
  1578. "description": "Common interface for caching libraries",
  1579. "keywords": [
  1580. "cache",
  1581. "psr",
  1582. "psr-6"
  1583. ],
  1584. "support": {
  1585. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1586. },
  1587. "time": "2021-02-03T23:26:27+00:00"
  1588. },
  1589. {
  1590. "name": "psr/clock",
  1591. "version": "1.0.0",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/php-fig/clock.git",
  1595. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1600. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "php": "^7.0 || ^8.0"
  1605. },
  1606. "type": "library",
  1607. "autoload": {
  1608. "psr-4": {
  1609. "Psr\\Clock\\": "src/"
  1610. }
  1611. },
  1612. "notification-url": "https://packagist.org/downloads/",
  1613. "license": [
  1614. "MIT"
  1615. ],
  1616. "authors": [
  1617. {
  1618. "name": "PHP-FIG",
  1619. "homepage": "https://www.php-fig.org/"
  1620. }
  1621. ],
  1622. "description": "Common interface for reading the clock.",
  1623. "homepage": "https://github.com/php-fig/clock",
  1624. "keywords": [
  1625. "clock",
  1626. "now",
  1627. "psr",
  1628. "psr-20",
  1629. "time"
  1630. ],
  1631. "support": {
  1632. "issues": "https://github.com/php-fig/clock/issues",
  1633. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1634. },
  1635. "time": "2022-11-25T14:36:26+00:00"
  1636. },
  1637. {
  1638. "name": "psr/container",
  1639. "version": "2.0.2",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/php-fig/container.git",
  1643. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1648. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "php": ">=7.4.0"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "branch-alias": {
  1657. "dev-master": "2.0.x-dev"
  1658. }
  1659. },
  1660. "autoload": {
  1661. "psr-4": {
  1662. "Psr\\Container\\": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "PHP-FIG",
  1672. "homepage": "https://www.php-fig.org/"
  1673. }
  1674. ],
  1675. "description": "Common Container Interface (PHP FIG PSR-11)",
  1676. "homepage": "https://github.com/php-fig/container",
  1677. "keywords": [
  1678. "PSR-11",
  1679. "container",
  1680. "container-interface",
  1681. "container-interop",
  1682. "psr"
  1683. ],
  1684. "support": {
  1685. "issues": "https://github.com/php-fig/container/issues",
  1686. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1687. },
  1688. "time": "2021-11-05T16:47:00+00:00"
  1689. },
  1690. {
  1691. "name": "psr/event-dispatcher",
  1692. "version": "1.0.0",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/php-fig/event-dispatcher.git",
  1696. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1701. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1702. "shasum": ""
  1703. },
  1704. "require": {
  1705. "php": ">=7.2.0"
  1706. },
  1707. "type": "library",
  1708. "extra": {
  1709. "branch-alias": {
  1710. "dev-master": "1.0.x-dev"
  1711. }
  1712. },
  1713. "autoload": {
  1714. "psr-4": {
  1715. "Psr\\EventDispatcher\\": "src/"
  1716. }
  1717. },
  1718. "notification-url": "https://packagist.org/downloads/",
  1719. "license": [
  1720. "MIT"
  1721. ],
  1722. "authors": [
  1723. {
  1724. "name": "PHP-FIG",
  1725. "homepage": "http://www.php-fig.org/"
  1726. }
  1727. ],
  1728. "description": "Standard interfaces for event handling.",
  1729. "keywords": [
  1730. "events",
  1731. "psr",
  1732. "psr-14"
  1733. ],
  1734. "support": {
  1735. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1736. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1737. },
  1738. "time": "2019-01-08T18:20:26+00:00"
  1739. },
  1740. {
  1741. "name": "psr/http-client",
  1742. "version": "1.0.3",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/php-fig/http-client.git",
  1746. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1751. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1752. "shasum": ""
  1753. },
  1754. "require": {
  1755. "php": "^7.0 || ^8.0",
  1756. "psr/http-message": "^1.0 || ^2.0"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "1.0.x-dev"
  1762. }
  1763. },
  1764. "autoload": {
  1765. "psr-4": {
  1766. "Psr\\Http\\Client\\": "src/"
  1767. }
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "MIT"
  1772. ],
  1773. "authors": [
  1774. {
  1775. "name": "PHP-FIG",
  1776. "homepage": "https://www.php-fig.org/"
  1777. }
  1778. ],
  1779. "description": "Common interface for HTTP clients",
  1780. "homepage": "https://github.com/php-fig/http-client",
  1781. "keywords": [
  1782. "http",
  1783. "http-client",
  1784. "psr",
  1785. "psr-18"
  1786. ],
  1787. "support": {
  1788. "source": "https://github.com/php-fig/http-client"
  1789. },
  1790. "time": "2023-09-23T14:17:50+00:00"
  1791. },
  1792. {
  1793. "name": "psr/http-factory",
  1794. "version": "1.1.0",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/php-fig/http-factory.git",
  1798. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1803. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1804. "shasum": ""
  1805. },
  1806. "require": {
  1807. "php": ">=7.1",
  1808. "psr/http-message": "^1.0 || ^2.0"
  1809. },
  1810. "type": "library",
  1811. "extra": {
  1812. "branch-alias": {
  1813. "dev-master": "1.0.x-dev"
  1814. }
  1815. },
  1816. "autoload": {
  1817. "psr-4": {
  1818. "Psr\\Http\\Message\\": "src/"
  1819. }
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "PHP-FIG",
  1828. "homepage": "https://www.php-fig.org/"
  1829. }
  1830. ],
  1831. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  1832. "keywords": [
  1833. "factory",
  1834. "http",
  1835. "message",
  1836. "psr",
  1837. "psr-17",
  1838. "psr-7",
  1839. "request",
  1840. "response"
  1841. ],
  1842. "support": {
  1843. "source": "https://github.com/php-fig/http-factory"
  1844. },
  1845. "time": "2024-04-15T12:06:14+00:00"
  1846. },
  1847. {
  1848. "name": "psr/http-message",
  1849. "version": "2.0",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/php-fig/http-message.git",
  1853. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1858. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1859. "shasum": ""
  1860. },
  1861. "require": {
  1862. "php": "^7.2 || ^8.0"
  1863. },
  1864. "type": "library",
  1865. "extra": {
  1866. "branch-alias": {
  1867. "dev-master": "2.0.x-dev"
  1868. }
  1869. },
  1870. "autoload": {
  1871. "psr-4": {
  1872. "Psr\\Http\\Message\\": "src/"
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "PHP-FIG",
  1882. "homepage": "https://www.php-fig.org/"
  1883. }
  1884. ],
  1885. "description": "Common interface for HTTP messages",
  1886. "homepage": "https://github.com/php-fig/http-message",
  1887. "keywords": [
  1888. "http",
  1889. "http-message",
  1890. "psr",
  1891. "psr-7",
  1892. "request",
  1893. "response"
  1894. ],
  1895. "support": {
  1896. "source": "https://github.com/php-fig/http-message/tree/2.0"
  1897. },
  1898. "time": "2023-04-04T09:54:51+00:00"
  1899. },
  1900. {
  1901. "name": "psr/http-server-handler",
  1902. "version": "1.0.2",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://github.com/php-fig/http-server-handler.git",
  1906. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  1911. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  1912. "shasum": ""
  1913. },
  1914. "require": {
  1915. "php": ">=7.0",
  1916. "psr/http-message": "^1.0 || ^2.0"
  1917. },
  1918. "type": "library",
  1919. "extra": {
  1920. "branch-alias": {
  1921. "dev-master": "1.0.x-dev"
  1922. }
  1923. },
  1924. "autoload": {
  1925. "psr-4": {
  1926. "Psr\\Http\\Server\\": "src/"
  1927. }
  1928. },
  1929. "notification-url": "https://packagist.org/downloads/",
  1930. "license": [
  1931. "MIT"
  1932. ],
  1933. "authors": [
  1934. {
  1935. "name": "PHP-FIG",
  1936. "homepage": "https://www.php-fig.org/"
  1937. }
  1938. ],
  1939. "description": "Common interface for HTTP server-side request handler",
  1940. "keywords": [
  1941. "handler",
  1942. "http",
  1943. "http-interop",
  1944. "psr",
  1945. "psr-15",
  1946. "psr-7",
  1947. "request",
  1948. "response",
  1949. "server"
  1950. ],
  1951. "support": {
  1952. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  1953. },
  1954. "time": "2023-04-10T20:06:20+00:00"
  1955. },
  1956. {
  1957. "name": "psr/http-server-middleware",
  1958. "version": "1.0.2",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/php-fig/http-server-middleware.git",
  1962. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  1967. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  1968. "shasum": ""
  1969. },
  1970. "require": {
  1971. "php": ">=7.0",
  1972. "psr/http-message": "^1.0 || ^2.0",
  1973. "psr/http-server-handler": "^1.0"
  1974. },
  1975. "type": "library",
  1976. "extra": {
  1977. "branch-alias": {
  1978. "dev-master": "1.0.x-dev"
  1979. }
  1980. },
  1981. "autoload": {
  1982. "psr-4": {
  1983. "Psr\\Http\\Server\\": "src/"
  1984. }
  1985. },
  1986. "notification-url": "https://packagist.org/downloads/",
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "PHP-FIG",
  1993. "homepage": "https://www.php-fig.org/"
  1994. }
  1995. ],
  1996. "description": "Common interface for HTTP server-side middleware",
  1997. "keywords": [
  1998. "http",
  1999. "http-interop",
  2000. "middleware",
  2001. "psr",
  2002. "psr-15",
  2003. "psr-7",
  2004. "request",
  2005. "response"
  2006. ],
  2007. "support": {
  2008. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  2009. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  2010. },
  2011. "time": "2023-04-11T06:14:47+00:00"
  2012. },
  2013. {
  2014. "name": "psr/log",
  2015. "version": "3.0.2",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/php-fig/log.git",
  2019. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2024. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "php": ">=8.0.0"
  2029. },
  2030. "type": "library",
  2031. "extra": {
  2032. "branch-alias": {
  2033. "dev-master": "3.x-dev"
  2034. }
  2035. },
  2036. "autoload": {
  2037. "psr-4": {
  2038. "Psr\\Log\\": "src"
  2039. }
  2040. },
  2041. "notification-url": "https://packagist.org/downloads/",
  2042. "license": [
  2043. "MIT"
  2044. ],
  2045. "authors": [
  2046. {
  2047. "name": "PHP-FIG",
  2048. "homepage": "https://www.php-fig.org/"
  2049. }
  2050. ],
  2051. "description": "Common interface for logging libraries",
  2052. "homepage": "https://github.com/php-fig/log",
  2053. "keywords": [
  2054. "log",
  2055. "psr",
  2056. "psr-3"
  2057. ],
  2058. "support": {
  2059. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2060. },
  2061. "time": "2024-09-11T13:17:53+00:00"
  2062. },
  2063. {
  2064. "name": "psr/simple-cache",
  2065. "version": "3.0.0",
  2066. "source": {
  2067. "type": "git",
  2068. "url": "https://github.com/php-fig/simple-cache.git",
  2069. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  2070. },
  2071. "dist": {
  2072. "type": "zip",
  2073. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2074. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2075. "shasum": ""
  2076. },
  2077. "require": {
  2078. "php": ">=8.0.0"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-master": "3.0.x-dev"
  2084. }
  2085. },
  2086. "autoload": {
  2087. "psr-4": {
  2088. "Psr\\SimpleCache\\": "src/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "PHP-FIG",
  2098. "homepage": "https://www.php-fig.org/"
  2099. }
  2100. ],
  2101. "description": "Common interfaces for simple caching",
  2102. "keywords": [
  2103. "cache",
  2104. "caching",
  2105. "psr",
  2106. "psr-16",
  2107. "simple-cache"
  2108. ],
  2109. "support": {
  2110. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  2111. },
  2112. "time": "2021-10-29T13:26:27+00:00"
  2113. },
  2114. {
  2115. "name": "ralouphie/getallheaders",
  2116. "version": "3.0.3",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/ralouphie/getallheaders.git",
  2120. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2125. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "php": ">=5.6"
  2130. },
  2131. "require-dev": {
  2132. "php-coveralls/php-coveralls": "^2.1",
  2133. "phpunit/phpunit": "^5 || ^6.5"
  2134. },
  2135. "type": "library",
  2136. "autoload": {
  2137. "files": [
  2138. "src/getallheaders.php"
  2139. ]
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Ralph Khattar",
  2148. "email": "ralph.khattar@gmail.com"
  2149. }
  2150. ],
  2151. "description": "A polyfill for getallheaders.",
  2152. "support": {
  2153. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2154. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2155. },
  2156. "time": "2019-03-08T08:55:37+00:00"
  2157. },
  2158. {
  2159. "name": "robmorgan/phinx",
  2160. "version": "0.16.11",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/cakephp/phinx.git",
  2164. "reference": "a03014fea316ba021fc0776982e5bed2d10228d4"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/cakephp/phinx/zipball/a03014fea316ba021fc0776982e5bed2d10228d4",
  2169. "reference": "a03014fea316ba021fc0776982e5bed2d10228d4",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "cakephp/database": "^5.0.2",
  2174. "composer-runtime-api": "^2.0",
  2175. "php-64bit": ">=8.1",
  2176. "psr/container": "^1.1|^2.0",
  2177. "symfony/config": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2178. "symfony/console": "^6.0|^7.0|^8.0"
  2179. },
  2180. "require-dev": {
  2181. "cakephp/cakephp-codesniffer": "^5.0",
  2182. "cakephp/i18n": "^5.0",
  2183. "ext-json": "*",
  2184. "ext-pdo": "*",
  2185. "phpunit/phpunit": "^10.5",
  2186. "symfony/yaml": "^4.0|^5.0|^6.0|^7.0|^8.0"
  2187. },
  2188. "suggest": {
  2189. "ext-json": "Install if using JSON configuration format",
  2190. "ext-pdo": "PDO extension is needed",
  2191. "symfony/yaml": "Install if using YAML configuration format"
  2192. },
  2193. "bin": [
  2194. "bin/phinx"
  2195. ],
  2196. "type": "library",
  2197. "autoload": {
  2198. "psr-4": {
  2199. "Phinx\\": "src/Phinx/"
  2200. }
  2201. },
  2202. "notification-url": "https://packagist.org/downloads/",
  2203. "license": [
  2204. "MIT"
  2205. ],
  2206. "authors": [
  2207. {
  2208. "name": "Rob Morgan",
  2209. "email": "robbym@gmail.com",
  2210. "homepage": "https://robmorgan.id.au",
  2211. "role": "Lead Developer"
  2212. },
  2213. {
  2214. "name": "Woody Gilk",
  2215. "email": "woody.gilk@gmail.com",
  2216. "homepage": "https://shadowhand.me",
  2217. "role": "Developer"
  2218. },
  2219. {
  2220. "name": "Richard Quadling",
  2221. "email": "rquadling@gmail.com",
  2222. "role": "Developer"
  2223. },
  2224. {
  2225. "name": "CakePHP Community",
  2226. "homepage": "https://github.com/cakephp/phinx/graphs/contributors",
  2227. "role": "Developer"
  2228. }
  2229. ],
  2230. "description": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app.",
  2231. "homepage": "https://phinx.org",
  2232. "keywords": [
  2233. "database",
  2234. "database migrations",
  2235. "db",
  2236. "migrations",
  2237. "phinx"
  2238. ],
  2239. "support": {
  2240. "issues": "https://github.com/cakephp/phinx/issues",
  2241. "source": "https://github.com/cakephp/phinx/tree/0.16.11"
  2242. },
  2243. "time": "2026-03-15T00:04:32+00:00"
  2244. },
  2245. {
  2246. "name": "slim/psr7",
  2247. "version": "1.8.0",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/slimphp/Slim-Psr7.git",
  2251. "reference": "76e7e3b1cdfd583e9035c4c966c08e01e45ce959"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/76e7e3b1cdfd583e9035c4c966c08e01e45ce959",
  2256. "reference": "76e7e3b1cdfd583e9035c4c966c08e01e45ce959",
  2257. "shasum": ""
  2258. },
  2259. "require": {
  2260. "fig/http-message-util": "^1.1.5",
  2261. "php": "^8.0",
  2262. "psr/http-factory": "^1.1",
  2263. "psr/http-message": "^1.0 || ^2.0",
  2264. "ralouphie/getallheaders": "^3.0"
  2265. },
  2266. "provide": {
  2267. "psr/http-factory-implementation": "^1.0",
  2268. "psr/http-message-implementation": "^1.0 || ^2.0"
  2269. },
  2270. "require-dev": {
  2271. "adriansuter/php-autoload-override": "^1.5|| ^2.0",
  2272. "ext-json": "*",
  2273. "http-interop/http-factory-tests": "^1.0 || ^2.0",
  2274. "php-http/psr7-integration-tests": "^1.5",
  2275. "phpstan/phpstan": "^2.1",
  2276. "phpunit/phpunit": "^9.6 || ^10",
  2277. "squizlabs/php_codesniffer": "^3.13"
  2278. },
  2279. "type": "library",
  2280. "autoload": {
  2281. "psr-4": {
  2282. "Slim\\Psr7\\": "src"
  2283. }
  2284. },
  2285. "notification-url": "https://packagist.org/downloads/",
  2286. "license": [
  2287. "MIT"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Josh Lockhart",
  2292. "email": "hello@joshlockhart.com",
  2293. "homepage": "https://joshlockhart.com"
  2294. },
  2295. {
  2296. "name": "Andrew Smith",
  2297. "email": "a.smith@silentworks.co.uk",
  2298. "homepage": "https://silentworks.co.uk"
  2299. },
  2300. {
  2301. "name": "Rob Allen",
  2302. "email": "rob@akrabat.com",
  2303. "homepage": "https://akrabat.com"
  2304. },
  2305. {
  2306. "name": "Pierre Berube",
  2307. "email": "pierre@lgse.com",
  2308. "homepage": "https://www.lgse.com"
  2309. }
  2310. ],
  2311. "description": "Strict PSR-7 implementation",
  2312. "homepage": "https://www.slimframework.com",
  2313. "keywords": [
  2314. "http",
  2315. "psr-7",
  2316. "psr7"
  2317. ],
  2318. "support": {
  2319. "issues": "https://github.com/slimphp/Slim-Psr7/issues",
  2320. "source": "https://github.com/slimphp/Slim-Psr7/tree/1.8.0"
  2321. },
  2322. "time": "2025-11-02T17:51:19+00:00"
  2323. },
  2324. {
  2325. "name": "slim/slim",
  2326. "version": "4.15.1",
  2327. "source": {
  2328. "type": "git",
  2329. "url": "https://github.com/slimphp/Slim.git",
  2330. "reference": "887893516557506f254d950425ce7f5387a26970"
  2331. },
  2332. "dist": {
  2333. "type": "zip",
  2334. "url": "https://api.github.com/repos/slimphp/Slim/zipball/887893516557506f254d950425ce7f5387a26970",
  2335. "reference": "887893516557506f254d950425ce7f5387a26970",
  2336. "shasum": ""
  2337. },
  2338. "require": {
  2339. "ext-json": "*",
  2340. "nikic/fast-route": "^1.3",
  2341. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  2342. "psr/container": "^1.0 || ^2.0",
  2343. "psr/http-factory": "^1.1",
  2344. "psr/http-message": "^1.1 || ^2.0",
  2345. "psr/http-server-handler": "^1.0",
  2346. "psr/http-server-middleware": "^1.0",
  2347. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2348. },
  2349. "require-dev": {
  2350. "adriansuter/php-autoload-override": "^1.4 || ^2",
  2351. "ext-simplexml": "*",
  2352. "guzzlehttp/psr7": "^2.6",
  2353. "httpsoft/http-message": "^1.1",
  2354. "httpsoft/http-server-request": "^1.1",
  2355. "laminas/laminas-diactoros": "^2.17 || ^3",
  2356. "nyholm/psr7": "^1.8",
  2357. "nyholm/psr7-server": "^1.1",
  2358. "phpspec/prophecy": "^1.19",
  2359. "phpspec/prophecy-phpunit": "^2.1",
  2360. "phpstan/phpstan": "^1 || ^2",
  2361. "phpunit/phpunit": "^9.6 || ^10 || ^11 || ^12",
  2362. "slim/http": "^1.3",
  2363. "slim/psr7": "^1.6",
  2364. "squizlabs/php_codesniffer": "^3.10",
  2365. "vimeo/psalm": "^5 || ^6"
  2366. },
  2367. "suggest": {
  2368. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  2369. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  2370. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  2371. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  2372. },
  2373. "type": "library",
  2374. "autoload": {
  2375. "psr-4": {
  2376. "Slim\\": "Slim"
  2377. }
  2378. },
  2379. "notification-url": "https://packagist.org/downloads/",
  2380. "license": [
  2381. "MIT"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "Josh Lockhart",
  2386. "email": "hello@joshlockhart.com",
  2387. "homepage": "https://joshlockhart.com"
  2388. },
  2389. {
  2390. "name": "Andrew Smith",
  2391. "email": "a.smith@silentworks.co.uk",
  2392. "homepage": "https://silentworks.co.uk"
  2393. },
  2394. {
  2395. "name": "Rob Allen",
  2396. "email": "rob@akrabat.com",
  2397. "homepage": "https://akrabat.com"
  2398. },
  2399. {
  2400. "name": "Pierre Berube",
  2401. "email": "pierre@lgse.com",
  2402. "homepage": "https://www.lgse.com"
  2403. },
  2404. {
  2405. "name": "Gabriel Manricks",
  2406. "email": "gmanricks@me.com",
  2407. "homepage": "http://gabrielmanricks.com"
  2408. }
  2409. ],
  2410. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  2411. "homepage": "https://www.slimframework.com",
  2412. "keywords": [
  2413. "api",
  2414. "framework",
  2415. "micro",
  2416. "router"
  2417. ],
  2418. "support": {
  2419. "docs": "https://www.slimframework.com/docs/v4/",
  2420. "forum": "https://discourse.slimframework.com/",
  2421. "irc": "irc://irc.freenode.net:6667/slimphp",
  2422. "issues": "https://github.com/slimphp/Slim/issues",
  2423. "rss": "https://www.slimframework.com/blog/feed.rss",
  2424. "slack": "https://slimphp.slack.com/",
  2425. "source": "https://github.com/slimphp/Slim",
  2426. "wiki": "https://github.com/slimphp/Slim/wiki"
  2427. },
  2428. "funding": [
  2429. {
  2430. "url": "https://opencollective.com/slimphp",
  2431. "type": "open_collective"
  2432. },
  2433. {
  2434. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  2435. "type": "tidelift"
  2436. }
  2437. ],
  2438. "time": "2025-11-21T12:23:44+00:00"
  2439. },
  2440. {
  2441. "name": "symfony/config",
  2442. "version": "v7.4.8",
  2443. "source": {
  2444. "type": "git",
  2445. "url": "https://github.com/symfony/config.git",
  2446. "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b"
  2447. },
  2448. "dist": {
  2449. "type": "zip",
  2450. "url": "https://api.github.com/repos/symfony/config/zipball/2d19dde43fa2ff720b9a40763ace7226594f503b",
  2451. "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b",
  2452. "shasum": ""
  2453. },
  2454. "require": {
  2455. "php": ">=8.2",
  2456. "symfony/deprecation-contracts": "^2.5|^3",
  2457. "symfony/filesystem": "^7.1|^8.0",
  2458. "symfony/polyfill-ctype": "~1.8"
  2459. },
  2460. "conflict": {
  2461. "symfony/finder": "<6.4",
  2462. "symfony/service-contracts": "<2.5"
  2463. },
  2464. "require-dev": {
  2465. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  2466. "symfony/finder": "^6.4|^7.0|^8.0",
  2467. "symfony/messenger": "^6.4|^7.0|^8.0",
  2468. "symfony/service-contracts": "^2.5|^3",
  2469. "symfony/yaml": "^6.4|^7.0|^8.0"
  2470. },
  2471. "type": "library",
  2472. "autoload": {
  2473. "psr-4": {
  2474. "Symfony\\Component\\Config\\": ""
  2475. },
  2476. "exclude-from-classmap": [
  2477. "/Tests/"
  2478. ]
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "authors": [
  2485. {
  2486. "name": "Fabien Potencier",
  2487. "email": "fabien@symfony.com"
  2488. },
  2489. {
  2490. "name": "Symfony Community",
  2491. "homepage": "https://symfony.com/contributors"
  2492. }
  2493. ],
  2494. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2495. "homepage": "https://symfony.com",
  2496. "support": {
  2497. "source": "https://github.com/symfony/config/tree/v7.4.8"
  2498. },
  2499. "funding": [
  2500. {
  2501. "url": "https://symfony.com/sponsor",
  2502. "type": "custom"
  2503. },
  2504. {
  2505. "url": "https://github.com/fabpot",
  2506. "type": "github"
  2507. },
  2508. {
  2509. "url": "https://github.com/nicolas-grekas",
  2510. "type": "github"
  2511. },
  2512. {
  2513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2514. "type": "tidelift"
  2515. }
  2516. ],
  2517. "time": "2026-03-24T13:12:05+00:00"
  2518. },
  2519. {
  2520. "name": "symfony/console",
  2521. "version": "v7.4.8",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/symfony/console.git",
  2525. "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/symfony/console/zipball/1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707",
  2530. "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": ">=8.2",
  2535. "symfony/deprecation-contracts": "^2.5|^3",
  2536. "symfony/polyfill-mbstring": "~1.0",
  2537. "symfony/service-contracts": "^2.5|^3",
  2538. "symfony/string": "^7.2|^8.0"
  2539. },
  2540. "conflict": {
  2541. "symfony/dependency-injection": "<6.4",
  2542. "symfony/dotenv": "<6.4",
  2543. "symfony/event-dispatcher": "<6.4",
  2544. "symfony/lock": "<6.4",
  2545. "symfony/process": "<6.4"
  2546. },
  2547. "provide": {
  2548. "psr/log-implementation": "1.0|2.0|3.0"
  2549. },
  2550. "require-dev": {
  2551. "psr/log": "^1|^2|^3",
  2552. "symfony/config": "^6.4|^7.0|^8.0",
  2553. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  2554. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  2555. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  2556. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  2557. "symfony/lock": "^6.4|^7.0|^8.0",
  2558. "symfony/messenger": "^6.4|^7.0|^8.0",
  2559. "symfony/process": "^6.4|^7.0|^8.0",
  2560. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  2561. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  2562. },
  2563. "type": "library",
  2564. "autoload": {
  2565. "psr-4": {
  2566. "Symfony\\Component\\Console\\": ""
  2567. },
  2568. "exclude-from-classmap": [
  2569. "/Tests/"
  2570. ]
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "MIT"
  2575. ],
  2576. "authors": [
  2577. {
  2578. "name": "Fabien Potencier",
  2579. "email": "fabien@symfony.com"
  2580. },
  2581. {
  2582. "name": "Symfony Community",
  2583. "homepage": "https://symfony.com/contributors"
  2584. }
  2585. ],
  2586. "description": "Eases the creation of beautiful and testable command line interfaces",
  2587. "homepage": "https://symfony.com",
  2588. "keywords": [
  2589. "cli",
  2590. "command-line",
  2591. "console",
  2592. "terminal"
  2593. ],
  2594. "support": {
  2595. "source": "https://github.com/symfony/console/tree/v7.4.8"
  2596. },
  2597. "funding": [
  2598. {
  2599. "url": "https://symfony.com/sponsor",
  2600. "type": "custom"
  2601. },
  2602. {
  2603. "url": "https://github.com/fabpot",
  2604. "type": "github"
  2605. },
  2606. {
  2607. "url": "https://github.com/nicolas-grekas",
  2608. "type": "github"
  2609. },
  2610. {
  2611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2612. "type": "tidelift"
  2613. }
  2614. ],
  2615. "time": "2026-03-30T13:54:39+00:00"
  2616. },
  2617. {
  2618. "name": "symfony/deprecation-contracts",
  2619. "version": "v3.6.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/symfony/deprecation-contracts.git",
  2623. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2628. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "php": ">=8.1"
  2633. },
  2634. "type": "library",
  2635. "extra": {
  2636. "thanks": {
  2637. "url": "https://github.com/symfony/contracts",
  2638. "name": "symfony/contracts"
  2639. },
  2640. "branch-alias": {
  2641. "dev-main": "3.6-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "files": [
  2646. "function.php"
  2647. ]
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Nicolas Grekas",
  2656. "email": "p@tchwork.com"
  2657. },
  2658. {
  2659. "name": "Symfony Community",
  2660. "homepage": "https://symfony.com/contributors"
  2661. }
  2662. ],
  2663. "description": "A generic function and convention to trigger deprecation notices",
  2664. "homepage": "https://symfony.com",
  2665. "support": {
  2666. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://symfony.com/sponsor",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://github.com/fabpot",
  2675. "type": "github"
  2676. },
  2677. {
  2678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2679. "type": "tidelift"
  2680. }
  2681. ],
  2682. "time": "2024-09-25T14:21:43+00:00"
  2683. },
  2684. {
  2685. "name": "symfony/filesystem",
  2686. "version": "v7.4.8",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://github.com/symfony/filesystem.git",
  2690. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5",
  2695. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5",
  2696. "shasum": ""
  2697. },
  2698. "require": {
  2699. "php": ">=8.2",
  2700. "symfony/polyfill-ctype": "~1.8",
  2701. "symfony/polyfill-mbstring": "~1.8"
  2702. },
  2703. "require-dev": {
  2704. "symfony/process": "^6.4|^7.0|^8.0"
  2705. },
  2706. "type": "library",
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Symfony\\Component\\Filesystem\\": ""
  2710. },
  2711. "exclude-from-classmap": [
  2712. "/Tests/"
  2713. ]
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "Fabien Potencier",
  2722. "email": "fabien@symfony.com"
  2723. },
  2724. {
  2725. "name": "Symfony Community",
  2726. "homepage": "https://symfony.com/contributors"
  2727. }
  2728. ],
  2729. "description": "Provides basic utilities for the filesystem",
  2730. "homepage": "https://symfony.com",
  2731. "support": {
  2732. "source": "https://github.com/symfony/filesystem/tree/v7.4.8"
  2733. },
  2734. "funding": [
  2735. {
  2736. "url": "https://symfony.com/sponsor",
  2737. "type": "custom"
  2738. },
  2739. {
  2740. "url": "https://github.com/fabpot",
  2741. "type": "github"
  2742. },
  2743. {
  2744. "url": "https://github.com/nicolas-grekas",
  2745. "type": "github"
  2746. },
  2747. {
  2748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2749. "type": "tidelift"
  2750. }
  2751. ],
  2752. "time": "2026-03-24T13:12:05+00:00"
  2753. },
  2754. {
  2755. "name": "symfony/polyfill-ctype",
  2756. "version": "v1.37.0",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://github.com/symfony/polyfill-ctype.git",
  2760. "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
  2765. "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
  2766. "shasum": ""
  2767. },
  2768. "require": {
  2769. "php": ">=7.2"
  2770. },
  2771. "provide": {
  2772. "ext-ctype": "*"
  2773. },
  2774. "suggest": {
  2775. "ext-ctype": "For best performance"
  2776. },
  2777. "type": "library",
  2778. "extra": {
  2779. "thanks": {
  2780. "url": "https://github.com/symfony/polyfill",
  2781. "name": "symfony/polyfill"
  2782. }
  2783. },
  2784. "autoload": {
  2785. "files": [
  2786. "bootstrap.php"
  2787. ],
  2788. "psr-4": {
  2789. "Symfony\\Polyfill\\Ctype\\": ""
  2790. }
  2791. },
  2792. "notification-url": "https://packagist.org/downloads/",
  2793. "license": [
  2794. "MIT"
  2795. ],
  2796. "authors": [
  2797. {
  2798. "name": "Gert de Pagter",
  2799. "email": "BackEndTea@gmail.com"
  2800. },
  2801. {
  2802. "name": "Symfony Community",
  2803. "homepage": "https://symfony.com/contributors"
  2804. }
  2805. ],
  2806. "description": "Symfony polyfill for ctype functions",
  2807. "homepage": "https://symfony.com",
  2808. "keywords": [
  2809. "compatibility",
  2810. "ctype",
  2811. "polyfill",
  2812. "portable"
  2813. ],
  2814. "support": {
  2815. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
  2816. },
  2817. "funding": [
  2818. {
  2819. "url": "https://symfony.com/sponsor",
  2820. "type": "custom"
  2821. },
  2822. {
  2823. "url": "https://github.com/fabpot",
  2824. "type": "github"
  2825. },
  2826. {
  2827. "url": "https://github.com/nicolas-grekas",
  2828. "type": "github"
  2829. },
  2830. {
  2831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2832. "type": "tidelift"
  2833. }
  2834. ],
  2835. "time": "2026-04-10T16:19:22+00:00"
  2836. },
  2837. {
  2838. "name": "symfony/polyfill-intl-grapheme",
  2839. "version": "v1.37.0",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2843. "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/4864388bfbd3001ce88e234fab652acd91fdc57e",
  2848. "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "php": ">=7.2"
  2853. },
  2854. "suggest": {
  2855. "ext-intl": "For best performance"
  2856. },
  2857. "type": "library",
  2858. "extra": {
  2859. "thanks": {
  2860. "url": "https://github.com/symfony/polyfill",
  2861. "name": "symfony/polyfill"
  2862. }
  2863. },
  2864. "autoload": {
  2865. "files": [
  2866. "bootstrap.php"
  2867. ],
  2868. "psr-4": {
  2869. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2870. }
  2871. },
  2872. "notification-url": "https://packagist.org/downloads/",
  2873. "license": [
  2874. "MIT"
  2875. ],
  2876. "authors": [
  2877. {
  2878. "name": "Nicolas Grekas",
  2879. "email": "p@tchwork.com"
  2880. },
  2881. {
  2882. "name": "Symfony Community",
  2883. "homepage": "https://symfony.com/contributors"
  2884. }
  2885. ],
  2886. "description": "Symfony polyfill for intl's grapheme_* functions",
  2887. "homepage": "https://symfony.com",
  2888. "keywords": [
  2889. "compatibility",
  2890. "grapheme",
  2891. "intl",
  2892. "polyfill",
  2893. "portable",
  2894. "shim"
  2895. ],
  2896. "support": {
  2897. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.37.0"
  2898. },
  2899. "funding": [
  2900. {
  2901. "url": "https://symfony.com/sponsor",
  2902. "type": "custom"
  2903. },
  2904. {
  2905. "url": "https://github.com/fabpot",
  2906. "type": "github"
  2907. },
  2908. {
  2909. "url": "https://github.com/nicolas-grekas",
  2910. "type": "github"
  2911. },
  2912. {
  2913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2914. "type": "tidelift"
  2915. }
  2916. ],
  2917. "time": "2026-04-26T13:13:48+00:00"
  2918. },
  2919. {
  2920. "name": "symfony/polyfill-intl-normalizer",
  2921. "version": "v1.37.0",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2925. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  2930. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "php": ">=7.2"
  2935. },
  2936. "suggest": {
  2937. "ext-intl": "For best performance"
  2938. },
  2939. "type": "library",
  2940. "extra": {
  2941. "thanks": {
  2942. "url": "https://github.com/symfony/polyfill",
  2943. "name": "symfony/polyfill"
  2944. }
  2945. },
  2946. "autoload": {
  2947. "files": [
  2948. "bootstrap.php"
  2949. ],
  2950. "psr-4": {
  2951. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2952. },
  2953. "classmap": [
  2954. "Resources/stubs"
  2955. ]
  2956. },
  2957. "notification-url": "https://packagist.org/downloads/",
  2958. "license": [
  2959. "MIT"
  2960. ],
  2961. "authors": [
  2962. {
  2963. "name": "Nicolas Grekas",
  2964. "email": "p@tchwork.com"
  2965. },
  2966. {
  2967. "name": "Symfony Community",
  2968. "homepage": "https://symfony.com/contributors"
  2969. }
  2970. ],
  2971. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2972. "homepage": "https://symfony.com",
  2973. "keywords": [
  2974. "compatibility",
  2975. "intl",
  2976. "normalizer",
  2977. "polyfill",
  2978. "portable",
  2979. "shim"
  2980. ],
  2981. "support": {
  2982. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.37.0"
  2983. },
  2984. "funding": [
  2985. {
  2986. "url": "https://symfony.com/sponsor",
  2987. "type": "custom"
  2988. },
  2989. {
  2990. "url": "https://github.com/fabpot",
  2991. "type": "github"
  2992. },
  2993. {
  2994. "url": "https://github.com/nicolas-grekas",
  2995. "type": "github"
  2996. },
  2997. {
  2998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2999. "type": "tidelift"
  3000. }
  3001. ],
  3002. "time": "2024-09-09T11:45:10+00:00"
  3003. },
  3004. {
  3005. "name": "symfony/polyfill-mbstring",
  3006. "version": "v1.37.0",
  3007. "source": {
  3008. "type": "git",
  3009. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3010. "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315"
  3011. },
  3012. "dist": {
  3013. "type": "zip",
  3014. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315",
  3015. "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315",
  3016. "shasum": ""
  3017. },
  3018. "require": {
  3019. "ext-iconv": "*",
  3020. "php": ">=7.2"
  3021. },
  3022. "provide": {
  3023. "ext-mbstring": "*"
  3024. },
  3025. "suggest": {
  3026. "ext-mbstring": "For best performance"
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "thanks": {
  3031. "url": "https://github.com/symfony/polyfill",
  3032. "name": "symfony/polyfill"
  3033. }
  3034. },
  3035. "autoload": {
  3036. "files": [
  3037. "bootstrap.php"
  3038. ],
  3039. "psr-4": {
  3040. "Symfony\\Polyfill\\Mbstring\\": ""
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Nicolas Grekas",
  3050. "email": "p@tchwork.com"
  3051. },
  3052. {
  3053. "name": "Symfony Community",
  3054. "homepage": "https://symfony.com/contributors"
  3055. }
  3056. ],
  3057. "description": "Symfony polyfill for the Mbstring extension",
  3058. "homepage": "https://symfony.com",
  3059. "keywords": [
  3060. "compatibility",
  3061. "mbstring",
  3062. "polyfill",
  3063. "portable",
  3064. "shim"
  3065. ],
  3066. "support": {
  3067. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.37.0"
  3068. },
  3069. "funding": [
  3070. {
  3071. "url": "https://symfony.com/sponsor",
  3072. "type": "custom"
  3073. },
  3074. {
  3075. "url": "https://github.com/fabpot",
  3076. "type": "github"
  3077. },
  3078. {
  3079. "url": "https://github.com/nicolas-grekas",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3084. "type": "tidelift"
  3085. }
  3086. ],
  3087. "time": "2026-04-10T17:25:58+00:00"
  3088. },
  3089. {
  3090. "name": "symfony/service-contracts",
  3091. "version": "v3.6.1",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/symfony/service-contracts.git",
  3095. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  3100. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=8.1",
  3105. "psr/container": "^1.1|^2.0",
  3106. "symfony/deprecation-contracts": "^2.5|^3"
  3107. },
  3108. "conflict": {
  3109. "ext-psr": "<1.1|>=2"
  3110. },
  3111. "type": "library",
  3112. "extra": {
  3113. "thanks": {
  3114. "url": "https://github.com/symfony/contracts",
  3115. "name": "symfony/contracts"
  3116. },
  3117. "branch-alias": {
  3118. "dev-main": "3.6-dev"
  3119. }
  3120. },
  3121. "autoload": {
  3122. "psr-4": {
  3123. "Symfony\\Contracts\\Service\\": ""
  3124. },
  3125. "exclude-from-classmap": [
  3126. "/Test/"
  3127. ]
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "Nicolas Grekas",
  3136. "email": "p@tchwork.com"
  3137. },
  3138. {
  3139. "name": "Symfony Community",
  3140. "homepage": "https://symfony.com/contributors"
  3141. }
  3142. ],
  3143. "description": "Generic abstractions related to writing services",
  3144. "homepage": "https://symfony.com",
  3145. "keywords": [
  3146. "abstractions",
  3147. "contracts",
  3148. "decoupling",
  3149. "interfaces",
  3150. "interoperability",
  3151. "standards"
  3152. ],
  3153. "support": {
  3154. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  3155. },
  3156. "funding": [
  3157. {
  3158. "url": "https://symfony.com/sponsor",
  3159. "type": "custom"
  3160. },
  3161. {
  3162. "url": "https://github.com/fabpot",
  3163. "type": "github"
  3164. },
  3165. {
  3166. "url": "https://github.com/nicolas-grekas",
  3167. "type": "github"
  3168. },
  3169. {
  3170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3171. "type": "tidelift"
  3172. }
  3173. ],
  3174. "time": "2025-07-15T11:30:57+00:00"
  3175. },
  3176. {
  3177. "name": "symfony/string",
  3178. "version": "v7.4.8",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://github.com/symfony/string.git",
  3182. "reference": "114ac57257d75df748eda23dd003878080b8e688"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688",
  3187. "reference": "114ac57257d75df748eda23dd003878080b8e688",
  3188. "shasum": ""
  3189. },
  3190. "require": {
  3191. "php": ">=8.2",
  3192. "symfony/deprecation-contracts": "^2.5|^3.0",
  3193. "symfony/polyfill-ctype": "~1.8",
  3194. "symfony/polyfill-intl-grapheme": "~1.33",
  3195. "symfony/polyfill-intl-normalizer": "~1.0",
  3196. "symfony/polyfill-mbstring": "~1.0"
  3197. },
  3198. "conflict": {
  3199. "symfony/translation-contracts": "<2.5"
  3200. },
  3201. "require-dev": {
  3202. "symfony/emoji": "^7.1|^8.0",
  3203. "symfony/http-client": "^6.4|^7.0|^8.0",
  3204. "symfony/intl": "^6.4|^7.0|^8.0",
  3205. "symfony/translation-contracts": "^2.5|^3.0",
  3206. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  3207. },
  3208. "type": "library",
  3209. "autoload": {
  3210. "files": [
  3211. "Resources/functions.php"
  3212. ],
  3213. "psr-4": {
  3214. "Symfony\\Component\\String\\": ""
  3215. },
  3216. "exclude-from-classmap": [
  3217. "/Tests/"
  3218. ]
  3219. },
  3220. "notification-url": "https://packagist.org/downloads/",
  3221. "license": [
  3222. "MIT"
  3223. ],
  3224. "authors": [
  3225. {
  3226. "name": "Nicolas Grekas",
  3227. "email": "p@tchwork.com"
  3228. },
  3229. {
  3230. "name": "Symfony Community",
  3231. "homepage": "https://symfony.com/contributors"
  3232. }
  3233. ],
  3234. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  3235. "homepage": "https://symfony.com",
  3236. "keywords": [
  3237. "grapheme",
  3238. "i18n",
  3239. "string",
  3240. "unicode",
  3241. "utf-8",
  3242. "utf8"
  3243. ],
  3244. "support": {
  3245. "source": "https://github.com/symfony/string/tree/v7.4.8"
  3246. },
  3247. "funding": [
  3248. {
  3249. "url": "https://symfony.com/sponsor",
  3250. "type": "custom"
  3251. },
  3252. {
  3253. "url": "https://github.com/fabpot",
  3254. "type": "github"
  3255. },
  3256. {
  3257. "url": "https://github.com/nicolas-grekas",
  3258. "type": "github"
  3259. },
  3260. {
  3261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3262. "type": "tidelift"
  3263. }
  3264. ],
  3265. "time": "2026-03-24T13:12:05+00:00"
  3266. }
  3267. ],
  3268. "packages-dev": [
  3269. {
  3270. "name": "clue/ndjson-react",
  3271. "version": "v1.3.0",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://github.com/clue/reactphp-ndjson.git",
  3275. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  3280. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  3281. "shasum": ""
  3282. },
  3283. "require": {
  3284. "php": ">=5.3",
  3285. "react/stream": "^1.2"
  3286. },
  3287. "require-dev": {
  3288. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  3289. "react/event-loop": "^1.2"
  3290. },
  3291. "type": "library",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Clue\\React\\NDJson\\": "src/"
  3295. }
  3296. },
  3297. "notification-url": "https://packagist.org/downloads/",
  3298. "license": [
  3299. "MIT"
  3300. ],
  3301. "authors": [
  3302. {
  3303. "name": "Christian Lück",
  3304. "email": "christian@clue.engineering"
  3305. }
  3306. ],
  3307. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  3308. "homepage": "https://github.com/clue/reactphp-ndjson",
  3309. "keywords": [
  3310. "NDJSON",
  3311. "json",
  3312. "jsonlines",
  3313. "newline",
  3314. "reactphp",
  3315. "streaming"
  3316. ],
  3317. "support": {
  3318. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  3319. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  3320. },
  3321. "funding": [
  3322. {
  3323. "url": "https://clue.engineering/support",
  3324. "type": "custom"
  3325. },
  3326. {
  3327. "url": "https://github.com/clue",
  3328. "type": "github"
  3329. }
  3330. ],
  3331. "time": "2022-12-23T10:58:28+00:00"
  3332. },
  3333. {
  3334. "name": "composer/pcre",
  3335. "version": "3.3.2",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/composer/pcre.git",
  3339. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  3344. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "php": "^7.4 || ^8.0"
  3349. },
  3350. "conflict": {
  3351. "phpstan/phpstan": "<1.11.10"
  3352. },
  3353. "require-dev": {
  3354. "phpstan/phpstan": "^1.12 || ^2",
  3355. "phpstan/phpstan-strict-rules": "^1 || ^2",
  3356. "phpunit/phpunit": "^8 || ^9"
  3357. },
  3358. "type": "library",
  3359. "extra": {
  3360. "phpstan": {
  3361. "includes": [
  3362. "extension.neon"
  3363. ]
  3364. },
  3365. "branch-alias": {
  3366. "dev-main": "3.x-dev"
  3367. }
  3368. },
  3369. "autoload": {
  3370. "psr-4": {
  3371. "Composer\\Pcre\\": "src"
  3372. }
  3373. },
  3374. "notification-url": "https://packagist.org/downloads/",
  3375. "license": [
  3376. "MIT"
  3377. ],
  3378. "authors": [
  3379. {
  3380. "name": "Jordi Boggiano",
  3381. "email": "j.boggiano@seld.be",
  3382. "homepage": "http://seld.be"
  3383. }
  3384. ],
  3385. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  3386. "keywords": [
  3387. "PCRE",
  3388. "preg",
  3389. "regex",
  3390. "regular expression"
  3391. ],
  3392. "support": {
  3393. "issues": "https://github.com/composer/pcre/issues",
  3394. "source": "https://github.com/composer/pcre/tree/3.3.2"
  3395. },
  3396. "funding": [
  3397. {
  3398. "url": "https://packagist.com",
  3399. "type": "custom"
  3400. },
  3401. {
  3402. "url": "https://github.com/composer",
  3403. "type": "github"
  3404. },
  3405. {
  3406. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  3407. "type": "tidelift"
  3408. }
  3409. ],
  3410. "time": "2024-11-12T16:29:46+00:00"
  3411. },
  3412. {
  3413. "name": "composer/semver",
  3414. "version": "3.4.4",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/composer/semver.git",
  3418. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  3423. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "php": "^5.3.2 || ^7.0 || ^8.0"
  3428. },
  3429. "require-dev": {
  3430. "phpstan/phpstan": "^1.11",
  3431. "symfony/phpunit-bridge": "^3 || ^7"
  3432. },
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-main": "3.x-dev"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Composer\\Semver\\": "src"
  3442. }
  3443. },
  3444. "notification-url": "https://packagist.org/downloads/",
  3445. "license": [
  3446. "MIT"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "Nils Adermann",
  3451. "email": "naderman@naderman.de",
  3452. "homepage": "http://www.naderman.de"
  3453. },
  3454. {
  3455. "name": "Jordi Boggiano",
  3456. "email": "j.boggiano@seld.be",
  3457. "homepage": "http://seld.be"
  3458. },
  3459. {
  3460. "name": "Rob Bast",
  3461. "email": "rob.bast@gmail.com",
  3462. "homepage": "http://robbast.nl"
  3463. }
  3464. ],
  3465. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  3466. "keywords": [
  3467. "semantic",
  3468. "semver",
  3469. "validation",
  3470. "versioning"
  3471. ],
  3472. "support": {
  3473. "irc": "ircs://irc.libera.chat:6697/composer",
  3474. "issues": "https://github.com/composer/semver/issues",
  3475. "source": "https://github.com/composer/semver/tree/3.4.4"
  3476. },
  3477. "funding": [
  3478. {
  3479. "url": "https://packagist.com",
  3480. "type": "custom"
  3481. },
  3482. {
  3483. "url": "https://github.com/composer",
  3484. "type": "github"
  3485. }
  3486. ],
  3487. "time": "2025-08-20T19:15:30+00:00"
  3488. },
  3489. {
  3490. "name": "composer/xdebug-handler",
  3491. "version": "3.0.5",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/composer/xdebug-handler.git",
  3495. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  3500. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "composer/pcre": "^1 || ^2 || ^3",
  3505. "php": "^7.2.5 || ^8.0",
  3506. "psr/log": "^1 || ^2 || ^3"
  3507. },
  3508. "require-dev": {
  3509. "phpstan/phpstan": "^1.0",
  3510. "phpstan/phpstan-strict-rules": "^1.1",
  3511. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  3512. },
  3513. "type": "library",
  3514. "autoload": {
  3515. "psr-4": {
  3516. "Composer\\XdebugHandler\\": "src"
  3517. }
  3518. },
  3519. "notification-url": "https://packagist.org/downloads/",
  3520. "license": [
  3521. "MIT"
  3522. ],
  3523. "authors": [
  3524. {
  3525. "name": "John Stevenson",
  3526. "email": "john-stevenson@blueyonder.co.uk"
  3527. }
  3528. ],
  3529. "description": "Restarts a process without Xdebug.",
  3530. "keywords": [
  3531. "Xdebug",
  3532. "performance"
  3533. ],
  3534. "support": {
  3535. "irc": "ircs://irc.libera.chat:6697/composer",
  3536. "issues": "https://github.com/composer/xdebug-handler/issues",
  3537. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  3538. },
  3539. "funding": [
  3540. {
  3541. "url": "https://packagist.com",
  3542. "type": "custom"
  3543. },
  3544. {
  3545. "url": "https://github.com/composer",
  3546. "type": "github"
  3547. },
  3548. {
  3549. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  3550. "type": "tidelift"
  3551. }
  3552. ],
  3553. "time": "2024-05-06T16:37:16+00:00"
  3554. },
  3555. {
  3556. "name": "ergebnis/agent-detector",
  3557. "version": "1.1.1",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/ergebnis/agent-detector.git",
  3561. "reference": "5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/ergebnis/agent-detector/zipball/5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64",
  3566. "reference": "5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0 || ~8.6.0"
  3571. },
  3572. "require-dev": {
  3573. "ergebnis/composer-normalize": "^2.50.0",
  3574. "ergebnis/license": "^2.7.0",
  3575. "ergebnis/php-cs-fixer-config": "^6.60.2",
  3576. "ergebnis/phpstan-rules": "^2.13.1",
  3577. "ergebnis/phpunit-slow-test-detector": "^2.24.0",
  3578. "ergebnis/rector-rules": "^1.16.0",
  3579. "fakerphp/faker": "^1.24.1",
  3580. "infection/infection": "^0.26.6",
  3581. "phpstan/extension-installer": "^1.4.3",
  3582. "phpstan/phpstan": "^2.1.46",
  3583. "phpstan/phpstan-deprecation-rules": "^2.0.4",
  3584. "phpstan/phpstan-phpunit": "^2.0.16",
  3585. "phpstan/phpstan-strict-rules": "^2.0.10",
  3586. "phpunit/phpunit": "^9.6.34",
  3587. "rector/rector": "^2.4.1"
  3588. },
  3589. "type": "library",
  3590. "extra": {
  3591. "branch-alias": {
  3592. "dev-main": "1.0-dev"
  3593. },
  3594. "composer-normalize": {
  3595. "indent-size": 2,
  3596. "indent-style": "space"
  3597. }
  3598. },
  3599. "autoload": {
  3600. "psr-4": {
  3601. "Ergebnis\\AgentDetector\\": "src/"
  3602. }
  3603. },
  3604. "notification-url": "https://packagist.org/downloads/",
  3605. "license": [
  3606. "MIT"
  3607. ],
  3608. "authors": [
  3609. {
  3610. "name": "Andreas Möller",
  3611. "email": "am@localheinz.com",
  3612. "homepage": "https://localheinz.com"
  3613. }
  3614. ],
  3615. "description": "Provides a detector for detecting the presence of an agent.",
  3616. "homepage": "https://github.com/ergebnis/agent-detector",
  3617. "support": {
  3618. "issues": "https://github.com/ergebnis/agent-detector/issues",
  3619. "security": "https://github.com/ergebnis/agent-detector/blob/main/.github/SECURITY.md",
  3620. "source": "https://github.com/ergebnis/agent-detector"
  3621. },
  3622. "time": "2026-04-10T13:45:13+00:00"
  3623. },
  3624. {
  3625. "name": "evenement/evenement",
  3626. "version": "v3.0.2",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/igorw/evenement.git",
  3630. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  3635. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  3636. "shasum": ""
  3637. },
  3638. "require": {
  3639. "php": ">=7.0"
  3640. },
  3641. "require-dev": {
  3642. "phpunit/phpunit": "^9 || ^6"
  3643. },
  3644. "type": "library",
  3645. "autoload": {
  3646. "psr-4": {
  3647. "Evenement\\": "src/"
  3648. }
  3649. },
  3650. "notification-url": "https://packagist.org/downloads/",
  3651. "license": [
  3652. "MIT"
  3653. ],
  3654. "authors": [
  3655. {
  3656. "name": "Igor Wiedler",
  3657. "email": "igor@wiedler.ch"
  3658. }
  3659. ],
  3660. "description": "Événement is a very simple event dispatching library for PHP",
  3661. "keywords": [
  3662. "event-dispatcher",
  3663. "event-emitter"
  3664. ],
  3665. "support": {
  3666. "issues": "https://github.com/igorw/evenement/issues",
  3667. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  3668. },
  3669. "time": "2023-08-08T05:53:35+00:00"
  3670. },
  3671. {
  3672. "name": "fidry/cpu-core-counter",
  3673. "version": "1.3.0",
  3674. "source": {
  3675. "type": "git",
  3676. "url": "https://github.com/theofidry/cpu-core-counter.git",
  3677. "reference": "db9508f7b1474469d9d3c53b86f817e344732678"
  3678. },
  3679. "dist": {
  3680. "type": "zip",
  3681. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678",
  3682. "reference": "db9508f7b1474469d9d3c53b86f817e344732678",
  3683. "shasum": ""
  3684. },
  3685. "require": {
  3686. "php": "^7.2 || ^8.0"
  3687. },
  3688. "require-dev": {
  3689. "fidry/makefile": "^0.2.0",
  3690. "fidry/php-cs-fixer-config": "^1.1.2",
  3691. "phpstan/extension-installer": "^1.2.0",
  3692. "phpstan/phpstan": "^2.0",
  3693. "phpstan/phpstan-deprecation-rules": "^2.0.0",
  3694. "phpstan/phpstan-phpunit": "^2.0",
  3695. "phpstan/phpstan-strict-rules": "^2.0",
  3696. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  3697. "webmozarts/strict-phpunit": "^7.5"
  3698. },
  3699. "type": "library",
  3700. "autoload": {
  3701. "psr-4": {
  3702. "Fidry\\CpuCoreCounter\\": "src/"
  3703. }
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "MIT"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Théo FIDRY",
  3712. "email": "theo.fidry@gmail.com"
  3713. }
  3714. ],
  3715. "description": "Tiny utility to get the number of CPU cores.",
  3716. "keywords": [
  3717. "CPU",
  3718. "core"
  3719. ],
  3720. "support": {
  3721. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  3722. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0"
  3723. },
  3724. "funding": [
  3725. {
  3726. "url": "https://github.com/theofidry",
  3727. "type": "github"
  3728. }
  3729. ],
  3730. "time": "2025-08-14T07:29:31+00:00"
  3731. },
  3732. {
  3733. "name": "friendsofphp/php-cs-fixer",
  3734. "version": "v3.95.1",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  3738. "reference": "a9727678fbd12997f1d9de8f4a37824ed9df1065"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a9727678fbd12997f1d9de8f4a37824ed9df1065",
  3743. "reference": "a9727678fbd12997f1d9de8f4a37824ed9df1065",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "clue/ndjson-react": "^1.3",
  3748. "composer/semver": "^3.4",
  3749. "composer/xdebug-handler": "^3.0.5",
  3750. "ergebnis/agent-detector": "^1.1.1",
  3751. "ext-filter": "*",
  3752. "ext-hash": "*",
  3753. "ext-json": "*",
  3754. "ext-tokenizer": "*",
  3755. "fidry/cpu-core-counter": "^1.3",
  3756. "php": "^7.4 || ^8.0",
  3757. "react/child-process": "^0.6.6",
  3758. "react/event-loop": "^1.5",
  3759. "react/socket": "^1.16",
  3760. "react/stream": "^1.4",
  3761. "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0 || ^8.0",
  3762. "symfony/console": "^5.4.47 || ^6.4.24 || ^7.0 || ^8.0",
  3763. "symfony/event-dispatcher": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3764. "symfony/filesystem": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3765. "symfony/finder": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3766. "symfony/options-resolver": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3767. "symfony/polyfill-mbstring": "^1.33",
  3768. "symfony/polyfill-php80": "^1.33",
  3769. "symfony/polyfill-php81": "^1.33",
  3770. "symfony/polyfill-php84": "^1.33",
  3771. "symfony/process": "^5.4.47 || ^6.4.24 || ^7.2 || ^8.0",
  3772. "symfony/stopwatch": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0"
  3773. },
  3774. "require-dev": {
  3775. "facile-it/paraunit": "^1.3.1 || ^2.8.0",
  3776. "infection/infection": "^0.32.6",
  3777. "justinrainbow/json-schema": "^6.8.0",
  3778. "keradus/cli-executor": "^2.3",
  3779. "mikey179/vfsstream": "^1.6.12",
  3780. "php-coveralls/php-coveralls": "^2.9.1",
  3781. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.8",
  3782. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.8",
  3783. "phpunit/phpunit": "^9.6.34 || ^10.5.63 || ^11.5.55",
  3784. "symfony/polyfill-php85": "^1.33",
  3785. "symfony/var-dumper": "^5.4.48 || ^6.4.32 || ^7.4.4 || ^8.0.8",
  3786. "symfony/yaml": "^5.4.45 || ^6.4.30 || ^7.4.1 || ^8.0.8"
  3787. },
  3788. "suggest": {
  3789. "ext-dom": "For handling output formats in XML",
  3790. "ext-mbstring": "For handling non-UTF8 characters."
  3791. },
  3792. "bin": [
  3793. "php-cs-fixer"
  3794. ],
  3795. "type": "application",
  3796. "autoload": {
  3797. "psr-4": {
  3798. "PhpCsFixer\\": "src/"
  3799. },
  3800. "exclude-from-classmap": [
  3801. "src/**/Internal/"
  3802. ]
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "Fabien Potencier",
  3811. "email": "fabien@symfony.com"
  3812. },
  3813. {
  3814. "name": "Dariusz Rumiński",
  3815. "email": "dariusz.ruminski@gmail.com"
  3816. }
  3817. ],
  3818. "description": "A tool to automatically fix PHP code style",
  3819. "keywords": [
  3820. "Static code analysis",
  3821. "fixer",
  3822. "standards",
  3823. "static analysis"
  3824. ],
  3825. "support": {
  3826. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  3827. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.95.1"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://github.com/keradus",
  3832. "type": "github"
  3833. }
  3834. ],
  3835. "time": "2026-04-12T17:00:09+00:00"
  3836. },
  3837. {
  3838. "name": "graham-campbell/result-type",
  3839. "version": "v1.1.4",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  3843. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  3848. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "php": "^7.2.5 || ^8.0",
  3853. "phpoption/phpoption": "^1.9.5"
  3854. },
  3855. "require-dev": {
  3856. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  3857. },
  3858. "type": "library",
  3859. "autoload": {
  3860. "psr-4": {
  3861. "GrahamCampbell\\ResultType\\": "src/"
  3862. }
  3863. },
  3864. "notification-url": "https://packagist.org/downloads/",
  3865. "license": [
  3866. "MIT"
  3867. ],
  3868. "authors": [
  3869. {
  3870. "name": "Graham Campbell",
  3871. "email": "hello@gjcampbell.co.uk",
  3872. "homepage": "https://github.com/GrahamCampbell"
  3873. }
  3874. ],
  3875. "description": "An Implementation Of The Result Type",
  3876. "keywords": [
  3877. "Graham Campbell",
  3878. "GrahamCampbell",
  3879. "Result Type",
  3880. "Result-Type",
  3881. "result"
  3882. ],
  3883. "support": {
  3884. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  3885. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  3886. },
  3887. "funding": [
  3888. {
  3889. "url": "https://github.com/GrahamCampbell",
  3890. "type": "github"
  3891. },
  3892. {
  3893. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  3894. "type": "tidelift"
  3895. }
  3896. ],
  3897. "time": "2025-12-27T19:43:20+00:00"
  3898. },
  3899. {
  3900. "name": "myclabs/deep-copy",
  3901. "version": "1.13.4",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/myclabs/DeepCopy.git",
  3905. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  3910. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "php": "^7.1 || ^8.0"
  3915. },
  3916. "conflict": {
  3917. "doctrine/collections": "<1.6.8",
  3918. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  3919. },
  3920. "require-dev": {
  3921. "doctrine/collections": "^1.6.8",
  3922. "doctrine/common": "^2.13.3 || ^3.2.2",
  3923. "phpspec/prophecy": "^1.10",
  3924. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3925. },
  3926. "type": "library",
  3927. "autoload": {
  3928. "files": [
  3929. "src/DeepCopy/deep_copy.php"
  3930. ],
  3931. "psr-4": {
  3932. "DeepCopy\\": "src/DeepCopy/"
  3933. }
  3934. },
  3935. "notification-url": "https://packagist.org/downloads/",
  3936. "license": [
  3937. "MIT"
  3938. ],
  3939. "description": "Create deep copies (clones) of your objects",
  3940. "keywords": [
  3941. "clone",
  3942. "copy",
  3943. "duplicate",
  3944. "object",
  3945. "object graph"
  3946. ],
  3947. "support": {
  3948. "issues": "https://github.com/myclabs/DeepCopy/issues",
  3949. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  3950. },
  3951. "funding": [
  3952. {
  3953. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3954. "type": "tidelift"
  3955. }
  3956. ],
  3957. "time": "2025-08-01T08:46:24+00:00"
  3958. },
  3959. {
  3960. "name": "nikic/php-parser",
  3961. "version": "v5.7.0",
  3962. "source": {
  3963. "type": "git",
  3964. "url": "https://github.com/nikic/PHP-Parser.git",
  3965. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3966. },
  3967. "dist": {
  3968. "type": "zip",
  3969. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3970. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3971. "shasum": ""
  3972. },
  3973. "require": {
  3974. "ext-ctype": "*",
  3975. "ext-json": "*",
  3976. "ext-tokenizer": "*",
  3977. "php": ">=7.4"
  3978. },
  3979. "require-dev": {
  3980. "ircmaxell/php-yacc": "^0.0.7",
  3981. "phpunit/phpunit": "^9.0"
  3982. },
  3983. "bin": [
  3984. "bin/php-parse"
  3985. ],
  3986. "type": "library",
  3987. "extra": {
  3988. "branch-alias": {
  3989. "dev-master": "5.x-dev"
  3990. }
  3991. },
  3992. "autoload": {
  3993. "psr-4": {
  3994. "PhpParser\\": "lib/PhpParser"
  3995. }
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "BSD-3-Clause"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Nikita Popov"
  4004. }
  4005. ],
  4006. "description": "A PHP parser written in PHP",
  4007. "keywords": [
  4008. "parser",
  4009. "php"
  4010. ],
  4011. "support": {
  4012. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4013. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  4014. },
  4015. "time": "2025-12-06T11:56:16+00:00"
  4016. },
  4017. {
  4018. "name": "phar-io/manifest",
  4019. "version": "2.0.4",
  4020. "source": {
  4021. "type": "git",
  4022. "url": "https://github.com/phar-io/manifest.git",
  4023. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  4024. },
  4025. "dist": {
  4026. "type": "zip",
  4027. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  4028. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  4029. "shasum": ""
  4030. },
  4031. "require": {
  4032. "ext-dom": "*",
  4033. "ext-libxml": "*",
  4034. "ext-phar": "*",
  4035. "ext-xmlwriter": "*",
  4036. "phar-io/version": "^3.0.1",
  4037. "php": "^7.2 || ^8.0"
  4038. },
  4039. "type": "library",
  4040. "extra": {
  4041. "branch-alias": {
  4042. "dev-master": "2.0.x-dev"
  4043. }
  4044. },
  4045. "autoload": {
  4046. "classmap": [
  4047. "src/"
  4048. ]
  4049. },
  4050. "notification-url": "https://packagist.org/downloads/",
  4051. "license": [
  4052. "BSD-3-Clause"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "Arne Blankerts",
  4057. "email": "arne@blankerts.de",
  4058. "role": "Developer"
  4059. },
  4060. {
  4061. "name": "Sebastian Heuer",
  4062. "email": "sebastian@phpeople.de",
  4063. "role": "Developer"
  4064. },
  4065. {
  4066. "name": "Sebastian Bergmann",
  4067. "email": "sebastian@phpunit.de",
  4068. "role": "Developer"
  4069. }
  4070. ],
  4071. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4072. "support": {
  4073. "issues": "https://github.com/phar-io/manifest/issues",
  4074. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  4075. },
  4076. "funding": [
  4077. {
  4078. "url": "https://github.com/theseer",
  4079. "type": "github"
  4080. }
  4081. ],
  4082. "time": "2024-03-03T12:33:53+00:00"
  4083. },
  4084. {
  4085. "name": "phar-io/version",
  4086. "version": "3.2.1",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://github.com/phar-io/version.git",
  4090. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  4091. },
  4092. "dist": {
  4093. "type": "zip",
  4094. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4095. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4096. "shasum": ""
  4097. },
  4098. "require": {
  4099. "php": "^7.2 || ^8.0"
  4100. },
  4101. "type": "library",
  4102. "autoload": {
  4103. "classmap": [
  4104. "src/"
  4105. ]
  4106. },
  4107. "notification-url": "https://packagist.org/downloads/",
  4108. "license": [
  4109. "BSD-3-Clause"
  4110. ],
  4111. "authors": [
  4112. {
  4113. "name": "Arne Blankerts",
  4114. "email": "arne@blankerts.de",
  4115. "role": "Developer"
  4116. },
  4117. {
  4118. "name": "Sebastian Heuer",
  4119. "email": "sebastian@phpeople.de",
  4120. "role": "Developer"
  4121. },
  4122. {
  4123. "name": "Sebastian Bergmann",
  4124. "email": "sebastian@phpunit.de",
  4125. "role": "Developer"
  4126. }
  4127. ],
  4128. "description": "Library for handling version information and constraints",
  4129. "support": {
  4130. "issues": "https://github.com/phar-io/version/issues",
  4131. "source": "https://github.com/phar-io/version/tree/3.2.1"
  4132. },
  4133. "time": "2022-02-21T01:04:05+00:00"
  4134. },
  4135. {
  4136. "name": "phpoption/phpoption",
  4137. "version": "1.9.5",
  4138. "source": {
  4139. "type": "git",
  4140. "url": "https://github.com/schmittjoh/php-option.git",
  4141. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
  4142. },
  4143. "dist": {
  4144. "type": "zip",
  4145. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
  4146. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  4147. "shasum": ""
  4148. },
  4149. "require": {
  4150. "php": "^7.2.5 || ^8.0"
  4151. },
  4152. "require-dev": {
  4153. "bamarni/composer-bin-plugin": "^1.8.2",
  4154. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  4155. },
  4156. "type": "library",
  4157. "extra": {
  4158. "bamarni-bin": {
  4159. "bin-links": true,
  4160. "forward-command": false
  4161. },
  4162. "branch-alias": {
  4163. "dev-master": "1.9-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "PhpOption\\": "src/PhpOption/"
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "Apache-2.0"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Johannes M. Schmitt",
  4178. "email": "schmittjoh@gmail.com",
  4179. "homepage": "https://github.com/schmittjoh"
  4180. },
  4181. {
  4182. "name": "Graham Campbell",
  4183. "email": "hello@gjcampbell.co.uk",
  4184. "homepage": "https://github.com/GrahamCampbell"
  4185. }
  4186. ],
  4187. "description": "Option Type for PHP",
  4188. "keywords": [
  4189. "language",
  4190. "option",
  4191. "php",
  4192. "type"
  4193. ],
  4194. "support": {
  4195. "issues": "https://github.com/schmittjoh/php-option/issues",
  4196. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  4197. },
  4198. "funding": [
  4199. {
  4200. "url": "https://github.com/GrahamCampbell",
  4201. "type": "github"
  4202. },
  4203. {
  4204. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4205. "type": "tidelift"
  4206. }
  4207. ],
  4208. "time": "2025-12-27T19:41:33+00:00"
  4209. },
  4210. {
  4211. "name": "phpstan/phpstan",
  4212. "version": "1.12.33",
  4213. "dist": {
  4214. "type": "zip",
  4215. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/37982d6fc7cbb746dda7773530cda557cdf119e1",
  4216. "reference": "37982d6fc7cbb746dda7773530cda557cdf119e1",
  4217. "shasum": ""
  4218. },
  4219. "require": {
  4220. "php": "^7.2|^8.0"
  4221. },
  4222. "conflict": {
  4223. "phpstan/phpstan-shim": "*"
  4224. },
  4225. "bin": [
  4226. "phpstan",
  4227. "phpstan.phar"
  4228. ],
  4229. "type": "library",
  4230. "autoload": {
  4231. "files": [
  4232. "bootstrap.php"
  4233. ]
  4234. },
  4235. "notification-url": "https://packagist.org/downloads/",
  4236. "license": [
  4237. "MIT"
  4238. ],
  4239. "description": "PHPStan - PHP Static Analysis Tool",
  4240. "keywords": [
  4241. "dev",
  4242. "static analysis"
  4243. ],
  4244. "support": {
  4245. "docs": "https://phpstan.org/user-guide/getting-started",
  4246. "forum": "https://github.com/phpstan/phpstan/discussions",
  4247. "issues": "https://github.com/phpstan/phpstan/issues",
  4248. "security": "https://github.com/phpstan/phpstan/security/policy",
  4249. "source": "https://github.com/phpstan/phpstan-src"
  4250. },
  4251. "funding": [
  4252. {
  4253. "url": "https://github.com/ondrejmirtes",
  4254. "type": "github"
  4255. },
  4256. {
  4257. "url": "https://github.com/phpstan",
  4258. "type": "github"
  4259. }
  4260. ],
  4261. "time": "2026-02-28T20:30:03+00:00"
  4262. },
  4263. {
  4264. "name": "phpunit/php-code-coverage",
  4265. "version": "11.0.12",
  4266. "source": {
  4267. "type": "git",
  4268. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4269. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
  4270. },
  4271. "dist": {
  4272. "type": "zip",
  4273. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
  4274. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
  4275. "shasum": ""
  4276. },
  4277. "require": {
  4278. "ext-dom": "*",
  4279. "ext-libxml": "*",
  4280. "ext-xmlwriter": "*",
  4281. "nikic/php-parser": "^5.7.0",
  4282. "php": ">=8.2",
  4283. "phpunit/php-file-iterator": "^5.1.0",
  4284. "phpunit/php-text-template": "^4.0.1",
  4285. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  4286. "sebastian/complexity": "^4.0.1",
  4287. "sebastian/environment": "^7.2.1",
  4288. "sebastian/lines-of-code": "^3.0.1",
  4289. "sebastian/version": "^5.0.2",
  4290. "theseer/tokenizer": "^1.3.1"
  4291. },
  4292. "require-dev": {
  4293. "phpunit/phpunit": "^11.5.46"
  4294. },
  4295. "suggest": {
  4296. "ext-pcov": "PHP extension that provides line coverage",
  4297. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  4298. },
  4299. "type": "library",
  4300. "extra": {
  4301. "branch-alias": {
  4302. "dev-main": "11.0.x-dev"
  4303. }
  4304. },
  4305. "autoload": {
  4306. "classmap": [
  4307. "src/"
  4308. ]
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "BSD-3-Clause"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Sebastian Bergmann",
  4317. "email": "sebastian@phpunit.de",
  4318. "role": "lead"
  4319. }
  4320. ],
  4321. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4322. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4323. "keywords": [
  4324. "coverage",
  4325. "testing",
  4326. "xunit"
  4327. ],
  4328. "support": {
  4329. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4330. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  4331. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
  4332. },
  4333. "funding": [
  4334. {
  4335. "url": "https://github.com/sebastianbergmann",
  4336. "type": "github"
  4337. },
  4338. {
  4339. "url": "https://liberapay.com/sebastianbergmann",
  4340. "type": "liberapay"
  4341. },
  4342. {
  4343. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4344. "type": "thanks_dev"
  4345. },
  4346. {
  4347. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  4348. "type": "tidelift"
  4349. }
  4350. ],
  4351. "time": "2025-12-24T07:01:01+00:00"
  4352. },
  4353. {
  4354. "name": "phpunit/php-file-iterator",
  4355. "version": "5.1.1",
  4356. "source": {
  4357. "type": "git",
  4358. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4359. "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903"
  4360. },
  4361. "dist": {
  4362. "type": "zip",
  4363. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/2f3a64888c814fc235386b7387dd5b5ed92ad903",
  4364. "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903",
  4365. "shasum": ""
  4366. },
  4367. "require": {
  4368. "php": ">=8.2"
  4369. },
  4370. "require-dev": {
  4371. "phpunit/phpunit": "^11.3"
  4372. },
  4373. "type": "library",
  4374. "extra": {
  4375. "branch-alias": {
  4376. "dev-main": "5.1-dev"
  4377. }
  4378. },
  4379. "autoload": {
  4380. "classmap": [
  4381. "src/"
  4382. ]
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "BSD-3-Clause"
  4387. ],
  4388. "authors": [
  4389. {
  4390. "name": "Sebastian Bergmann",
  4391. "email": "sebastian@phpunit.de",
  4392. "role": "lead"
  4393. }
  4394. ],
  4395. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4396. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4397. "keywords": [
  4398. "filesystem",
  4399. "iterator"
  4400. ],
  4401. "support": {
  4402. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4403. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  4404. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.1"
  4405. },
  4406. "funding": [
  4407. {
  4408. "url": "https://github.com/sebastianbergmann",
  4409. "type": "github"
  4410. },
  4411. {
  4412. "url": "https://liberapay.com/sebastianbergmann",
  4413. "type": "liberapay"
  4414. },
  4415. {
  4416. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4417. "type": "thanks_dev"
  4418. },
  4419. {
  4420. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator",
  4421. "type": "tidelift"
  4422. }
  4423. ],
  4424. "time": "2026-02-02T13:52:54+00:00"
  4425. },
  4426. {
  4427. "name": "phpunit/php-invoker",
  4428. "version": "5.0.1",
  4429. "source": {
  4430. "type": "git",
  4431. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  4432. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  4433. },
  4434. "dist": {
  4435. "type": "zip",
  4436. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  4437. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  4438. "shasum": ""
  4439. },
  4440. "require": {
  4441. "php": ">=8.2"
  4442. },
  4443. "require-dev": {
  4444. "ext-pcntl": "*",
  4445. "phpunit/phpunit": "^11.0"
  4446. },
  4447. "suggest": {
  4448. "ext-pcntl": "*"
  4449. },
  4450. "type": "library",
  4451. "extra": {
  4452. "branch-alias": {
  4453. "dev-main": "5.0-dev"
  4454. }
  4455. },
  4456. "autoload": {
  4457. "classmap": [
  4458. "src/"
  4459. ]
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "BSD-3-Clause"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "Sebastian Bergmann",
  4468. "email": "sebastian@phpunit.de",
  4469. "role": "lead"
  4470. }
  4471. ],
  4472. "description": "Invoke callables with a timeout",
  4473. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  4474. "keywords": [
  4475. "process"
  4476. ],
  4477. "support": {
  4478. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  4479. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  4480. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  4481. },
  4482. "funding": [
  4483. {
  4484. "url": "https://github.com/sebastianbergmann",
  4485. "type": "github"
  4486. }
  4487. ],
  4488. "time": "2024-07-03T05:07:44+00:00"
  4489. },
  4490. {
  4491. "name": "phpunit/php-text-template",
  4492. "version": "4.0.1",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4496. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  4497. },
  4498. "dist": {
  4499. "type": "zip",
  4500. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  4501. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  4502. "shasum": ""
  4503. },
  4504. "require": {
  4505. "php": ">=8.2"
  4506. },
  4507. "require-dev": {
  4508. "phpunit/phpunit": "^11.0"
  4509. },
  4510. "type": "library",
  4511. "extra": {
  4512. "branch-alias": {
  4513. "dev-main": "4.0-dev"
  4514. }
  4515. },
  4516. "autoload": {
  4517. "classmap": [
  4518. "src/"
  4519. ]
  4520. },
  4521. "notification-url": "https://packagist.org/downloads/",
  4522. "license": [
  4523. "BSD-3-Clause"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "Sebastian Bergmann",
  4528. "email": "sebastian@phpunit.de",
  4529. "role": "lead"
  4530. }
  4531. ],
  4532. "description": "Simple template engine.",
  4533. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4534. "keywords": [
  4535. "template"
  4536. ],
  4537. "support": {
  4538. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4539. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  4540. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  4541. },
  4542. "funding": [
  4543. {
  4544. "url": "https://github.com/sebastianbergmann",
  4545. "type": "github"
  4546. }
  4547. ],
  4548. "time": "2024-07-03T05:08:43+00:00"
  4549. },
  4550. {
  4551. "name": "phpunit/php-timer",
  4552. "version": "7.0.1",
  4553. "source": {
  4554. "type": "git",
  4555. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4556. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  4557. },
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  4561. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "php": ">=8.2"
  4566. },
  4567. "require-dev": {
  4568. "phpunit/phpunit": "^11.0"
  4569. },
  4570. "type": "library",
  4571. "extra": {
  4572. "branch-alias": {
  4573. "dev-main": "7.0-dev"
  4574. }
  4575. },
  4576. "autoload": {
  4577. "classmap": [
  4578. "src/"
  4579. ]
  4580. },
  4581. "notification-url": "https://packagist.org/downloads/",
  4582. "license": [
  4583. "BSD-3-Clause"
  4584. ],
  4585. "authors": [
  4586. {
  4587. "name": "Sebastian Bergmann",
  4588. "email": "sebastian@phpunit.de",
  4589. "role": "lead"
  4590. }
  4591. ],
  4592. "description": "Utility class for timing",
  4593. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4594. "keywords": [
  4595. "timer"
  4596. ],
  4597. "support": {
  4598. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4599. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  4600. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  4601. },
  4602. "funding": [
  4603. {
  4604. "url": "https://github.com/sebastianbergmann",
  4605. "type": "github"
  4606. }
  4607. ],
  4608. "time": "2024-07-03T05:09:35+00:00"
  4609. },
  4610. {
  4611. "name": "phpunit/phpunit",
  4612. "version": "11.5.55",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4616. "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/adc7262fccc12de2b30f12a8aa0b33775d814f00",
  4621. "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00",
  4622. "shasum": ""
  4623. },
  4624. "require": {
  4625. "ext-dom": "*",
  4626. "ext-json": "*",
  4627. "ext-libxml": "*",
  4628. "ext-mbstring": "*",
  4629. "ext-xml": "*",
  4630. "ext-xmlwriter": "*",
  4631. "myclabs/deep-copy": "^1.13.4",
  4632. "phar-io/manifest": "^2.0.4",
  4633. "phar-io/version": "^3.2.1",
  4634. "php": ">=8.2",
  4635. "phpunit/php-code-coverage": "^11.0.12",
  4636. "phpunit/php-file-iterator": "^5.1.1",
  4637. "phpunit/php-invoker": "^5.0.1",
  4638. "phpunit/php-text-template": "^4.0.1",
  4639. "phpunit/php-timer": "^7.0.1",
  4640. "sebastian/cli-parser": "^3.0.2",
  4641. "sebastian/code-unit": "^3.0.3",
  4642. "sebastian/comparator": "^6.3.3",
  4643. "sebastian/diff": "^6.0.2",
  4644. "sebastian/environment": "^7.2.1",
  4645. "sebastian/exporter": "^6.3.2",
  4646. "sebastian/global-state": "^7.0.2",
  4647. "sebastian/object-enumerator": "^6.0.1",
  4648. "sebastian/recursion-context": "^6.0.3",
  4649. "sebastian/type": "^5.1.3",
  4650. "sebastian/version": "^5.0.2",
  4651. "staabm/side-effects-detector": "^1.0.5"
  4652. },
  4653. "suggest": {
  4654. "ext-soap": "To be able to generate mocks based on WSDL files"
  4655. },
  4656. "bin": [
  4657. "phpunit"
  4658. ],
  4659. "type": "library",
  4660. "extra": {
  4661. "branch-alias": {
  4662. "dev-main": "11.5-dev"
  4663. }
  4664. },
  4665. "autoload": {
  4666. "files": [
  4667. "src/Framework/Assert/Functions.php"
  4668. ],
  4669. "classmap": [
  4670. "src/"
  4671. ]
  4672. },
  4673. "notification-url": "https://packagist.org/downloads/",
  4674. "license": [
  4675. "BSD-3-Clause"
  4676. ],
  4677. "authors": [
  4678. {
  4679. "name": "Sebastian Bergmann",
  4680. "email": "sebastian@phpunit.de",
  4681. "role": "lead"
  4682. }
  4683. ],
  4684. "description": "The PHP Unit Testing framework.",
  4685. "homepage": "https://phpunit.de/",
  4686. "keywords": [
  4687. "phpunit",
  4688. "testing",
  4689. "xunit"
  4690. ],
  4691. "support": {
  4692. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4693. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  4694. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.55"
  4695. },
  4696. "funding": [
  4697. {
  4698. "url": "https://phpunit.de/sponsors.html",
  4699. "type": "custom"
  4700. },
  4701. {
  4702. "url": "https://github.com/sebastianbergmann",
  4703. "type": "github"
  4704. },
  4705. {
  4706. "url": "https://liberapay.com/sebastianbergmann",
  4707. "type": "liberapay"
  4708. },
  4709. {
  4710. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4711. "type": "thanks_dev"
  4712. },
  4713. {
  4714. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4715. "type": "tidelift"
  4716. }
  4717. ],
  4718. "time": "2026-02-18T12:37:06+00:00"
  4719. },
  4720. {
  4721. "name": "react/cache",
  4722. "version": "v1.2.0",
  4723. "source": {
  4724. "type": "git",
  4725. "url": "https://github.com/reactphp/cache.git",
  4726. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4727. },
  4728. "dist": {
  4729. "type": "zip",
  4730. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4731. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4732. "shasum": ""
  4733. },
  4734. "require": {
  4735. "php": ">=5.3.0",
  4736. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4737. },
  4738. "require-dev": {
  4739. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4740. },
  4741. "type": "library",
  4742. "autoload": {
  4743. "psr-4": {
  4744. "React\\Cache\\": "src/"
  4745. }
  4746. },
  4747. "notification-url": "https://packagist.org/downloads/",
  4748. "license": [
  4749. "MIT"
  4750. ],
  4751. "authors": [
  4752. {
  4753. "name": "Christian Lück",
  4754. "email": "christian@clue.engineering",
  4755. "homepage": "https://clue.engineering/"
  4756. },
  4757. {
  4758. "name": "Cees-Jan Kiewiet",
  4759. "email": "reactphp@ceesjankiewiet.nl",
  4760. "homepage": "https://wyrihaximus.net/"
  4761. },
  4762. {
  4763. "name": "Jan Sorgalla",
  4764. "email": "jsorgalla@gmail.com",
  4765. "homepage": "https://sorgalla.com/"
  4766. },
  4767. {
  4768. "name": "Chris Boden",
  4769. "email": "cboden@gmail.com",
  4770. "homepage": "https://cboden.dev/"
  4771. }
  4772. ],
  4773. "description": "Async, Promise-based cache interface for ReactPHP",
  4774. "keywords": [
  4775. "cache",
  4776. "caching",
  4777. "promise",
  4778. "reactphp"
  4779. ],
  4780. "support": {
  4781. "issues": "https://github.com/reactphp/cache/issues",
  4782. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4783. },
  4784. "funding": [
  4785. {
  4786. "url": "https://opencollective.com/reactphp",
  4787. "type": "open_collective"
  4788. }
  4789. ],
  4790. "time": "2022-11-30T15:59:55+00:00"
  4791. },
  4792. {
  4793. "name": "react/child-process",
  4794. "version": "v0.6.7",
  4795. "source": {
  4796. "type": "git",
  4797. "url": "https://github.com/reactphp/child-process.git",
  4798. "reference": "970f0e71945556422ee4570ccbabaedc3cf04ad3"
  4799. },
  4800. "dist": {
  4801. "type": "zip",
  4802. "url": "https://api.github.com/repos/reactphp/child-process/zipball/970f0e71945556422ee4570ccbabaedc3cf04ad3",
  4803. "reference": "970f0e71945556422ee4570ccbabaedc3cf04ad3",
  4804. "shasum": ""
  4805. },
  4806. "require": {
  4807. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4808. "php": ">=5.3.0",
  4809. "react/event-loop": "^1.2",
  4810. "react/stream": "^1.4"
  4811. },
  4812. "require-dev": {
  4813. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4814. "react/socket": "^1.16",
  4815. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  4816. },
  4817. "type": "library",
  4818. "autoload": {
  4819. "psr-4": {
  4820. "React\\ChildProcess\\": "src/"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Christian Lück",
  4830. "email": "christian@clue.engineering",
  4831. "homepage": "https://clue.engineering/"
  4832. },
  4833. {
  4834. "name": "Cees-Jan Kiewiet",
  4835. "email": "reactphp@ceesjankiewiet.nl",
  4836. "homepage": "https://wyrihaximus.net/"
  4837. },
  4838. {
  4839. "name": "Jan Sorgalla",
  4840. "email": "jsorgalla@gmail.com",
  4841. "homepage": "https://sorgalla.com/"
  4842. },
  4843. {
  4844. "name": "Chris Boden",
  4845. "email": "cboden@gmail.com",
  4846. "homepage": "https://cboden.dev/"
  4847. }
  4848. ],
  4849. "description": "Event-driven library for executing child processes with ReactPHP.",
  4850. "keywords": [
  4851. "event-driven",
  4852. "process",
  4853. "reactphp"
  4854. ],
  4855. "support": {
  4856. "issues": "https://github.com/reactphp/child-process/issues",
  4857. "source": "https://github.com/reactphp/child-process/tree/v0.6.7"
  4858. },
  4859. "funding": [
  4860. {
  4861. "url": "https://opencollective.com/reactphp",
  4862. "type": "open_collective"
  4863. }
  4864. ],
  4865. "time": "2025-12-23T15:25:20+00:00"
  4866. },
  4867. {
  4868. "name": "react/dns",
  4869. "version": "v1.14.0",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/reactphp/dns.git",
  4873. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3",
  4878. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "php": ">=5.3.0",
  4883. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4884. "react/event-loop": "^1.2",
  4885. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4886. },
  4887. "require-dev": {
  4888. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4889. "react/async": "^4.3 || ^3 || ^2",
  4890. "react/promise-timer": "^1.11"
  4891. },
  4892. "type": "library",
  4893. "autoload": {
  4894. "psr-4": {
  4895. "React\\Dns\\": "src/"
  4896. }
  4897. },
  4898. "notification-url": "https://packagist.org/downloads/",
  4899. "license": [
  4900. "MIT"
  4901. ],
  4902. "authors": [
  4903. {
  4904. "name": "Christian Lück",
  4905. "email": "christian@clue.engineering",
  4906. "homepage": "https://clue.engineering/"
  4907. },
  4908. {
  4909. "name": "Cees-Jan Kiewiet",
  4910. "email": "reactphp@ceesjankiewiet.nl",
  4911. "homepage": "https://wyrihaximus.net/"
  4912. },
  4913. {
  4914. "name": "Jan Sorgalla",
  4915. "email": "jsorgalla@gmail.com",
  4916. "homepage": "https://sorgalla.com/"
  4917. },
  4918. {
  4919. "name": "Chris Boden",
  4920. "email": "cboden@gmail.com",
  4921. "homepage": "https://cboden.dev/"
  4922. }
  4923. ],
  4924. "description": "Async DNS resolver for ReactPHP",
  4925. "keywords": [
  4926. "async",
  4927. "dns",
  4928. "dns-resolver",
  4929. "reactphp"
  4930. ],
  4931. "support": {
  4932. "issues": "https://github.com/reactphp/dns/issues",
  4933. "source": "https://github.com/reactphp/dns/tree/v1.14.0"
  4934. },
  4935. "funding": [
  4936. {
  4937. "url": "https://opencollective.com/reactphp",
  4938. "type": "open_collective"
  4939. }
  4940. ],
  4941. "time": "2025-11-18T19:34:28+00:00"
  4942. },
  4943. {
  4944. "name": "react/event-loop",
  4945. "version": "v1.6.0",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://github.com/reactphp/event-loop.git",
  4949. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4954. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4955. "shasum": ""
  4956. },
  4957. "require": {
  4958. "php": ">=5.3.0"
  4959. },
  4960. "require-dev": {
  4961. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4962. },
  4963. "suggest": {
  4964. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4965. },
  4966. "type": "library",
  4967. "autoload": {
  4968. "psr-4": {
  4969. "React\\EventLoop\\": "src/"
  4970. }
  4971. },
  4972. "notification-url": "https://packagist.org/downloads/",
  4973. "license": [
  4974. "MIT"
  4975. ],
  4976. "authors": [
  4977. {
  4978. "name": "Christian Lück",
  4979. "email": "christian@clue.engineering",
  4980. "homepage": "https://clue.engineering/"
  4981. },
  4982. {
  4983. "name": "Cees-Jan Kiewiet",
  4984. "email": "reactphp@ceesjankiewiet.nl",
  4985. "homepage": "https://wyrihaximus.net/"
  4986. },
  4987. {
  4988. "name": "Jan Sorgalla",
  4989. "email": "jsorgalla@gmail.com",
  4990. "homepage": "https://sorgalla.com/"
  4991. },
  4992. {
  4993. "name": "Chris Boden",
  4994. "email": "cboden@gmail.com",
  4995. "homepage": "https://cboden.dev/"
  4996. }
  4997. ],
  4998. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4999. "keywords": [
  5000. "asynchronous",
  5001. "event-loop"
  5002. ],
  5003. "support": {
  5004. "issues": "https://github.com/reactphp/event-loop/issues",
  5005. "source": "https://github.com/reactphp/event-loop/tree/v1.6.0"
  5006. },
  5007. "funding": [
  5008. {
  5009. "url": "https://opencollective.com/reactphp",
  5010. "type": "open_collective"
  5011. }
  5012. ],
  5013. "time": "2025-11-17T20:46:25+00:00"
  5014. },
  5015. {
  5016. "name": "react/promise",
  5017. "version": "v3.3.0",
  5018. "source": {
  5019. "type": "git",
  5020. "url": "https://github.com/reactphp/promise.git",
  5021. "reference": "23444f53a813a3296c1368bb104793ce8d88f04a"
  5022. },
  5023. "dist": {
  5024. "type": "zip",
  5025. "url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a",
  5026. "reference": "23444f53a813a3296c1368bb104793ce8d88f04a",
  5027. "shasum": ""
  5028. },
  5029. "require": {
  5030. "php": ">=7.1.0"
  5031. },
  5032. "require-dev": {
  5033. "phpstan/phpstan": "1.12.28 || 1.4.10",
  5034. "phpunit/phpunit": "^9.6 || ^7.5"
  5035. },
  5036. "type": "library",
  5037. "autoload": {
  5038. "files": [
  5039. "src/functions_include.php"
  5040. ],
  5041. "psr-4": {
  5042. "React\\Promise\\": "src/"
  5043. }
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Jan Sorgalla",
  5052. "email": "jsorgalla@gmail.com",
  5053. "homepage": "https://sorgalla.com/"
  5054. },
  5055. {
  5056. "name": "Christian Lück",
  5057. "email": "christian@clue.engineering",
  5058. "homepage": "https://clue.engineering/"
  5059. },
  5060. {
  5061. "name": "Cees-Jan Kiewiet",
  5062. "email": "reactphp@ceesjankiewiet.nl",
  5063. "homepage": "https://wyrihaximus.net/"
  5064. },
  5065. {
  5066. "name": "Chris Boden",
  5067. "email": "cboden@gmail.com",
  5068. "homepage": "https://cboden.dev/"
  5069. }
  5070. ],
  5071. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5072. "keywords": [
  5073. "promise",
  5074. "promises"
  5075. ],
  5076. "support": {
  5077. "issues": "https://github.com/reactphp/promise/issues",
  5078. "source": "https://github.com/reactphp/promise/tree/v3.3.0"
  5079. },
  5080. "funding": [
  5081. {
  5082. "url": "https://opencollective.com/reactphp",
  5083. "type": "open_collective"
  5084. }
  5085. ],
  5086. "time": "2025-08-19T18:57:03+00:00"
  5087. },
  5088. {
  5089. "name": "react/socket",
  5090. "version": "v1.17.0",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/reactphp/socket.git",
  5094. "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08",
  5099. "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5104. "php": ">=5.3.0",
  5105. "react/dns": "^1.13",
  5106. "react/event-loop": "^1.2",
  5107. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5108. "react/stream": "^1.4"
  5109. },
  5110. "require-dev": {
  5111. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5112. "react/async": "^4.3 || ^3.3 || ^2",
  5113. "react/promise-stream": "^1.4",
  5114. "react/promise-timer": "^1.11"
  5115. },
  5116. "type": "library",
  5117. "autoload": {
  5118. "psr-4": {
  5119. "React\\Socket\\": "src/"
  5120. }
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "MIT"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Christian Lück",
  5129. "email": "christian@clue.engineering",
  5130. "homepage": "https://clue.engineering/"
  5131. },
  5132. {
  5133. "name": "Cees-Jan Kiewiet",
  5134. "email": "reactphp@ceesjankiewiet.nl",
  5135. "homepage": "https://wyrihaximus.net/"
  5136. },
  5137. {
  5138. "name": "Jan Sorgalla",
  5139. "email": "jsorgalla@gmail.com",
  5140. "homepage": "https://sorgalla.com/"
  5141. },
  5142. {
  5143. "name": "Chris Boden",
  5144. "email": "cboden@gmail.com",
  5145. "homepage": "https://cboden.dev/"
  5146. }
  5147. ],
  5148. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5149. "keywords": [
  5150. "Connection",
  5151. "Socket",
  5152. "async",
  5153. "reactphp",
  5154. "stream"
  5155. ],
  5156. "support": {
  5157. "issues": "https://github.com/reactphp/socket/issues",
  5158. "source": "https://github.com/reactphp/socket/tree/v1.17.0"
  5159. },
  5160. "funding": [
  5161. {
  5162. "url": "https://opencollective.com/reactphp",
  5163. "type": "open_collective"
  5164. }
  5165. ],
  5166. "time": "2025-11-19T20:47:34+00:00"
  5167. },
  5168. {
  5169. "name": "react/stream",
  5170. "version": "v1.4.0",
  5171. "source": {
  5172. "type": "git",
  5173. "url": "https://github.com/reactphp/stream.git",
  5174. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  5175. },
  5176. "dist": {
  5177. "type": "zip",
  5178. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5179. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5180. "shasum": ""
  5181. },
  5182. "require": {
  5183. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5184. "php": ">=5.3.8",
  5185. "react/event-loop": "^1.2"
  5186. },
  5187. "require-dev": {
  5188. "clue/stream-filter": "~1.2",
  5189. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5190. },
  5191. "type": "library",
  5192. "autoload": {
  5193. "psr-4": {
  5194. "React\\Stream\\": "src/"
  5195. }
  5196. },
  5197. "notification-url": "https://packagist.org/downloads/",
  5198. "license": [
  5199. "MIT"
  5200. ],
  5201. "authors": [
  5202. {
  5203. "name": "Christian Lück",
  5204. "email": "christian@clue.engineering",
  5205. "homepage": "https://clue.engineering/"
  5206. },
  5207. {
  5208. "name": "Cees-Jan Kiewiet",
  5209. "email": "reactphp@ceesjankiewiet.nl",
  5210. "homepage": "https://wyrihaximus.net/"
  5211. },
  5212. {
  5213. "name": "Jan Sorgalla",
  5214. "email": "jsorgalla@gmail.com",
  5215. "homepage": "https://sorgalla.com/"
  5216. },
  5217. {
  5218. "name": "Chris Boden",
  5219. "email": "cboden@gmail.com",
  5220. "homepage": "https://cboden.dev/"
  5221. }
  5222. ],
  5223. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5224. "keywords": [
  5225. "event-driven",
  5226. "io",
  5227. "non-blocking",
  5228. "pipe",
  5229. "reactphp",
  5230. "readable",
  5231. "stream",
  5232. "writable"
  5233. ],
  5234. "support": {
  5235. "issues": "https://github.com/reactphp/stream/issues",
  5236. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  5237. },
  5238. "funding": [
  5239. {
  5240. "url": "https://opencollective.com/reactphp",
  5241. "type": "open_collective"
  5242. }
  5243. ],
  5244. "time": "2024-06-11T12:45:25+00:00"
  5245. },
  5246. {
  5247. "name": "sebastian/cli-parser",
  5248. "version": "3.0.2",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  5252. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  5257. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  5258. "shasum": ""
  5259. },
  5260. "require": {
  5261. "php": ">=8.2"
  5262. },
  5263. "require-dev": {
  5264. "phpunit/phpunit": "^11.0"
  5265. },
  5266. "type": "library",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-main": "3.0-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "classmap": [
  5274. "src/"
  5275. ]
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "BSD-3-Clause"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Sebastian Bergmann",
  5284. "email": "sebastian@phpunit.de",
  5285. "role": "lead"
  5286. }
  5287. ],
  5288. "description": "Library for parsing CLI options",
  5289. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  5290. "support": {
  5291. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  5292. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  5293. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://github.com/sebastianbergmann",
  5298. "type": "github"
  5299. }
  5300. ],
  5301. "time": "2024-07-03T04:41:36+00:00"
  5302. },
  5303. {
  5304. "name": "sebastian/code-unit",
  5305. "version": "3.0.3",
  5306. "source": {
  5307. "type": "git",
  5308. "url": "https://github.com/sebastianbergmann/code-unit.git",
  5309. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  5310. },
  5311. "dist": {
  5312. "type": "zip",
  5313. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  5314. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  5315. "shasum": ""
  5316. },
  5317. "require": {
  5318. "php": ">=8.2"
  5319. },
  5320. "require-dev": {
  5321. "phpunit/phpunit": "^11.5"
  5322. },
  5323. "type": "library",
  5324. "extra": {
  5325. "branch-alias": {
  5326. "dev-main": "3.0-dev"
  5327. }
  5328. },
  5329. "autoload": {
  5330. "classmap": [
  5331. "src/"
  5332. ]
  5333. },
  5334. "notification-url": "https://packagist.org/downloads/",
  5335. "license": [
  5336. "BSD-3-Clause"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Sebastian Bergmann",
  5341. "email": "sebastian@phpunit.de",
  5342. "role": "lead"
  5343. }
  5344. ],
  5345. "description": "Collection of value objects that represent the PHP code units",
  5346. "homepage": "https://github.com/sebastianbergmann/code-unit",
  5347. "support": {
  5348. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  5349. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  5350. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  5351. },
  5352. "funding": [
  5353. {
  5354. "url": "https://github.com/sebastianbergmann",
  5355. "type": "github"
  5356. }
  5357. ],
  5358. "time": "2025-03-19T07:56:08+00:00"
  5359. },
  5360. {
  5361. "name": "sebastian/code-unit-reverse-lookup",
  5362. "version": "4.0.1",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5366. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  5371. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=8.2"
  5376. },
  5377. "require-dev": {
  5378. "phpunit/phpunit": "^11.0"
  5379. },
  5380. "type": "library",
  5381. "extra": {
  5382. "branch-alias": {
  5383. "dev-main": "4.0-dev"
  5384. }
  5385. },
  5386. "autoload": {
  5387. "classmap": [
  5388. "src/"
  5389. ]
  5390. },
  5391. "notification-url": "https://packagist.org/downloads/",
  5392. "license": [
  5393. "BSD-3-Clause"
  5394. ],
  5395. "authors": [
  5396. {
  5397. "name": "Sebastian Bergmann",
  5398. "email": "sebastian@phpunit.de"
  5399. }
  5400. ],
  5401. "description": "Looks up which function or method a line of code belongs to",
  5402. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5403. "support": {
  5404. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5405. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  5406. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  5407. },
  5408. "funding": [
  5409. {
  5410. "url": "https://github.com/sebastianbergmann",
  5411. "type": "github"
  5412. }
  5413. ],
  5414. "time": "2024-07-03T04:45:54+00:00"
  5415. },
  5416. {
  5417. "name": "sebastian/comparator",
  5418. "version": "6.3.3",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://github.com/sebastianbergmann/comparator.git",
  5422. "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
  5427. "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
  5428. "shasum": ""
  5429. },
  5430. "require": {
  5431. "ext-dom": "*",
  5432. "ext-mbstring": "*",
  5433. "php": ">=8.2",
  5434. "sebastian/diff": "^6.0",
  5435. "sebastian/exporter": "^6.0"
  5436. },
  5437. "require-dev": {
  5438. "phpunit/phpunit": "^11.4"
  5439. },
  5440. "suggest": {
  5441. "ext-bcmath": "For comparing BcMath\\Number objects"
  5442. },
  5443. "type": "library",
  5444. "extra": {
  5445. "branch-alias": {
  5446. "dev-main": "6.3-dev"
  5447. }
  5448. },
  5449. "autoload": {
  5450. "classmap": [
  5451. "src/"
  5452. ]
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "BSD-3-Clause"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Sebastian Bergmann",
  5461. "email": "sebastian@phpunit.de"
  5462. },
  5463. {
  5464. "name": "Jeff Welch",
  5465. "email": "whatthejeff@gmail.com"
  5466. },
  5467. {
  5468. "name": "Volker Dusch",
  5469. "email": "github@wallbash.com"
  5470. },
  5471. {
  5472. "name": "Bernhard Schussek",
  5473. "email": "bschussek@2bepublished.at"
  5474. }
  5475. ],
  5476. "description": "Provides the functionality to compare PHP values for equality",
  5477. "homepage": "https://github.com/sebastianbergmann/comparator",
  5478. "keywords": [
  5479. "comparator",
  5480. "compare",
  5481. "equality"
  5482. ],
  5483. "support": {
  5484. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5485. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  5486. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.3"
  5487. },
  5488. "funding": [
  5489. {
  5490. "url": "https://github.com/sebastianbergmann",
  5491. "type": "github"
  5492. },
  5493. {
  5494. "url": "https://liberapay.com/sebastianbergmann",
  5495. "type": "liberapay"
  5496. },
  5497. {
  5498. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5499. "type": "thanks_dev"
  5500. },
  5501. {
  5502. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  5503. "type": "tidelift"
  5504. }
  5505. ],
  5506. "time": "2026-01-24T09:26:40+00:00"
  5507. },
  5508. {
  5509. "name": "sebastian/complexity",
  5510. "version": "4.0.1",
  5511. "source": {
  5512. "type": "git",
  5513. "url": "https://github.com/sebastianbergmann/complexity.git",
  5514. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  5515. },
  5516. "dist": {
  5517. "type": "zip",
  5518. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  5519. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  5520. "shasum": ""
  5521. },
  5522. "require": {
  5523. "nikic/php-parser": "^5.0",
  5524. "php": ">=8.2"
  5525. },
  5526. "require-dev": {
  5527. "phpunit/phpunit": "^11.0"
  5528. },
  5529. "type": "library",
  5530. "extra": {
  5531. "branch-alias": {
  5532. "dev-main": "4.0-dev"
  5533. }
  5534. },
  5535. "autoload": {
  5536. "classmap": [
  5537. "src/"
  5538. ]
  5539. },
  5540. "notification-url": "https://packagist.org/downloads/",
  5541. "license": [
  5542. "BSD-3-Clause"
  5543. ],
  5544. "authors": [
  5545. {
  5546. "name": "Sebastian Bergmann",
  5547. "email": "sebastian@phpunit.de",
  5548. "role": "lead"
  5549. }
  5550. ],
  5551. "description": "Library for calculating the complexity of PHP code units",
  5552. "homepage": "https://github.com/sebastianbergmann/complexity",
  5553. "support": {
  5554. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5555. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  5556. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  5557. },
  5558. "funding": [
  5559. {
  5560. "url": "https://github.com/sebastianbergmann",
  5561. "type": "github"
  5562. }
  5563. ],
  5564. "time": "2024-07-03T04:49:50+00:00"
  5565. },
  5566. {
  5567. "name": "sebastian/diff",
  5568. "version": "6.0.2",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://github.com/sebastianbergmann/diff.git",
  5572. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  5577. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  5578. "shasum": ""
  5579. },
  5580. "require": {
  5581. "php": ">=8.2"
  5582. },
  5583. "require-dev": {
  5584. "phpunit/phpunit": "^11.0",
  5585. "symfony/process": "^4.2 || ^5"
  5586. },
  5587. "type": "library",
  5588. "extra": {
  5589. "branch-alias": {
  5590. "dev-main": "6.0-dev"
  5591. }
  5592. },
  5593. "autoload": {
  5594. "classmap": [
  5595. "src/"
  5596. ]
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "BSD-3-Clause"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "Sebastian Bergmann",
  5605. "email": "sebastian@phpunit.de"
  5606. },
  5607. {
  5608. "name": "Kore Nordmann",
  5609. "email": "mail@kore-nordmann.de"
  5610. }
  5611. ],
  5612. "description": "Diff implementation",
  5613. "homepage": "https://github.com/sebastianbergmann/diff",
  5614. "keywords": [
  5615. "diff",
  5616. "udiff",
  5617. "unidiff",
  5618. "unified diff"
  5619. ],
  5620. "support": {
  5621. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5622. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  5623. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  5624. },
  5625. "funding": [
  5626. {
  5627. "url": "https://github.com/sebastianbergmann",
  5628. "type": "github"
  5629. }
  5630. ],
  5631. "time": "2024-07-03T04:53:05+00:00"
  5632. },
  5633. {
  5634. "name": "sebastian/environment",
  5635. "version": "7.2.1",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/sebastianbergmann/environment.git",
  5639. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  5644. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": ">=8.2"
  5649. },
  5650. "require-dev": {
  5651. "phpunit/phpunit": "^11.3"
  5652. },
  5653. "suggest": {
  5654. "ext-posix": "*"
  5655. },
  5656. "type": "library",
  5657. "extra": {
  5658. "branch-alias": {
  5659. "dev-main": "7.2-dev"
  5660. }
  5661. },
  5662. "autoload": {
  5663. "classmap": [
  5664. "src/"
  5665. ]
  5666. },
  5667. "notification-url": "https://packagist.org/downloads/",
  5668. "license": [
  5669. "BSD-3-Clause"
  5670. ],
  5671. "authors": [
  5672. {
  5673. "name": "Sebastian Bergmann",
  5674. "email": "sebastian@phpunit.de"
  5675. }
  5676. ],
  5677. "description": "Provides functionality to handle HHVM/PHP environments",
  5678. "homepage": "https://github.com/sebastianbergmann/environment",
  5679. "keywords": [
  5680. "Xdebug",
  5681. "environment",
  5682. "hhvm"
  5683. ],
  5684. "support": {
  5685. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5686. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  5687. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://github.com/sebastianbergmann",
  5692. "type": "github"
  5693. },
  5694. {
  5695. "url": "https://liberapay.com/sebastianbergmann",
  5696. "type": "liberapay"
  5697. },
  5698. {
  5699. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5700. "type": "thanks_dev"
  5701. },
  5702. {
  5703. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  5704. "type": "tidelift"
  5705. }
  5706. ],
  5707. "time": "2025-05-21T11:55:47+00:00"
  5708. },
  5709. {
  5710. "name": "sebastian/exporter",
  5711. "version": "6.3.2",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/sebastianbergmann/exporter.git",
  5715. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
  5720. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "ext-mbstring": "*",
  5725. "php": ">=8.2",
  5726. "sebastian/recursion-context": "^6.0"
  5727. },
  5728. "require-dev": {
  5729. "phpunit/phpunit": "^11.3"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-main": "6.3-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "classmap": [
  5739. "src/"
  5740. ]
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "BSD-3-Clause"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "Sebastian Bergmann",
  5749. "email": "sebastian@phpunit.de"
  5750. },
  5751. {
  5752. "name": "Jeff Welch",
  5753. "email": "whatthejeff@gmail.com"
  5754. },
  5755. {
  5756. "name": "Volker Dusch",
  5757. "email": "github@wallbash.com"
  5758. },
  5759. {
  5760. "name": "Adam Harvey",
  5761. "email": "aharvey@php.net"
  5762. },
  5763. {
  5764. "name": "Bernhard Schussek",
  5765. "email": "bschussek@gmail.com"
  5766. }
  5767. ],
  5768. "description": "Provides the functionality to export PHP variables for visualization",
  5769. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  5770. "keywords": [
  5771. "export",
  5772. "exporter"
  5773. ],
  5774. "support": {
  5775. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5776. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  5777. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
  5778. },
  5779. "funding": [
  5780. {
  5781. "url": "https://github.com/sebastianbergmann",
  5782. "type": "github"
  5783. },
  5784. {
  5785. "url": "https://liberapay.com/sebastianbergmann",
  5786. "type": "liberapay"
  5787. },
  5788. {
  5789. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5790. "type": "thanks_dev"
  5791. },
  5792. {
  5793. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  5794. "type": "tidelift"
  5795. }
  5796. ],
  5797. "time": "2025-09-24T06:12:51+00:00"
  5798. },
  5799. {
  5800. "name": "sebastian/global-state",
  5801. "version": "7.0.2",
  5802. "source": {
  5803. "type": "git",
  5804. "url": "https://github.com/sebastianbergmann/global-state.git",
  5805. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  5806. },
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  5810. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  5811. "shasum": ""
  5812. },
  5813. "require": {
  5814. "php": ">=8.2",
  5815. "sebastian/object-reflector": "^4.0",
  5816. "sebastian/recursion-context": "^6.0"
  5817. },
  5818. "require-dev": {
  5819. "ext-dom": "*",
  5820. "phpunit/phpunit": "^11.0"
  5821. },
  5822. "type": "library",
  5823. "extra": {
  5824. "branch-alias": {
  5825. "dev-main": "7.0-dev"
  5826. }
  5827. },
  5828. "autoload": {
  5829. "classmap": [
  5830. "src/"
  5831. ]
  5832. },
  5833. "notification-url": "https://packagist.org/downloads/",
  5834. "license": [
  5835. "BSD-3-Clause"
  5836. ],
  5837. "authors": [
  5838. {
  5839. "name": "Sebastian Bergmann",
  5840. "email": "sebastian@phpunit.de"
  5841. }
  5842. ],
  5843. "description": "Snapshotting of global state",
  5844. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  5845. "keywords": [
  5846. "global state"
  5847. ],
  5848. "support": {
  5849. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5850. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  5851. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  5852. },
  5853. "funding": [
  5854. {
  5855. "url": "https://github.com/sebastianbergmann",
  5856. "type": "github"
  5857. }
  5858. ],
  5859. "time": "2024-07-03T04:57:36+00:00"
  5860. },
  5861. {
  5862. "name": "sebastian/lines-of-code",
  5863. "version": "3.0.1",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5867. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  5872. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  5873. "shasum": ""
  5874. },
  5875. "require": {
  5876. "nikic/php-parser": "^5.0",
  5877. "php": ">=8.2"
  5878. },
  5879. "require-dev": {
  5880. "phpunit/phpunit": "^11.0"
  5881. },
  5882. "type": "library",
  5883. "extra": {
  5884. "branch-alias": {
  5885. "dev-main": "3.0-dev"
  5886. }
  5887. },
  5888. "autoload": {
  5889. "classmap": [
  5890. "src/"
  5891. ]
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "BSD-3-Clause"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Sebastian Bergmann",
  5900. "email": "sebastian@phpunit.de",
  5901. "role": "lead"
  5902. }
  5903. ],
  5904. "description": "Library for counting the lines of code in PHP source code",
  5905. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5906. "support": {
  5907. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5908. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  5909. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  5910. },
  5911. "funding": [
  5912. {
  5913. "url": "https://github.com/sebastianbergmann",
  5914. "type": "github"
  5915. }
  5916. ],
  5917. "time": "2024-07-03T04:58:38+00:00"
  5918. },
  5919. {
  5920. "name": "sebastian/object-enumerator",
  5921. "version": "6.0.1",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5925. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  5930. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=8.2",
  5935. "sebastian/object-reflector": "^4.0",
  5936. "sebastian/recursion-context": "^6.0"
  5937. },
  5938. "require-dev": {
  5939. "phpunit/phpunit": "^11.0"
  5940. },
  5941. "type": "library",
  5942. "extra": {
  5943. "branch-alias": {
  5944. "dev-main": "6.0-dev"
  5945. }
  5946. },
  5947. "autoload": {
  5948. "classmap": [
  5949. "src/"
  5950. ]
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "BSD-3-Clause"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Sebastian Bergmann",
  5959. "email": "sebastian@phpunit.de"
  5960. }
  5961. ],
  5962. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5963. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5964. "support": {
  5965. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5966. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  5967. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  5968. },
  5969. "funding": [
  5970. {
  5971. "url": "https://github.com/sebastianbergmann",
  5972. "type": "github"
  5973. }
  5974. ],
  5975. "time": "2024-07-03T05:00:13+00:00"
  5976. },
  5977. {
  5978. "name": "sebastian/object-reflector",
  5979. "version": "4.0.1",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5983. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  5984. },
  5985. "dist": {
  5986. "type": "zip",
  5987. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  5988. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  5989. "shasum": ""
  5990. },
  5991. "require": {
  5992. "php": ">=8.2"
  5993. },
  5994. "require-dev": {
  5995. "phpunit/phpunit": "^11.0"
  5996. },
  5997. "type": "library",
  5998. "extra": {
  5999. "branch-alias": {
  6000. "dev-main": "4.0-dev"
  6001. }
  6002. },
  6003. "autoload": {
  6004. "classmap": [
  6005. "src/"
  6006. ]
  6007. },
  6008. "notification-url": "https://packagist.org/downloads/",
  6009. "license": [
  6010. "BSD-3-Clause"
  6011. ],
  6012. "authors": [
  6013. {
  6014. "name": "Sebastian Bergmann",
  6015. "email": "sebastian@phpunit.de"
  6016. }
  6017. ],
  6018. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6019. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6020. "support": {
  6021. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  6022. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  6023. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  6024. },
  6025. "funding": [
  6026. {
  6027. "url": "https://github.com/sebastianbergmann",
  6028. "type": "github"
  6029. }
  6030. ],
  6031. "time": "2024-07-03T05:01:32+00:00"
  6032. },
  6033. {
  6034. "name": "sebastian/recursion-context",
  6035. "version": "6.0.3",
  6036. "source": {
  6037. "type": "git",
  6038. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6039. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
  6040. },
  6041. "dist": {
  6042. "type": "zip",
  6043. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  6044. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  6045. "shasum": ""
  6046. },
  6047. "require": {
  6048. "php": ">=8.2"
  6049. },
  6050. "require-dev": {
  6051. "phpunit/phpunit": "^11.3"
  6052. },
  6053. "type": "library",
  6054. "extra": {
  6055. "branch-alias": {
  6056. "dev-main": "6.0-dev"
  6057. }
  6058. },
  6059. "autoload": {
  6060. "classmap": [
  6061. "src/"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "BSD-3-Clause"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Sebastian Bergmann",
  6071. "email": "sebastian@phpunit.de"
  6072. },
  6073. {
  6074. "name": "Jeff Welch",
  6075. "email": "whatthejeff@gmail.com"
  6076. },
  6077. {
  6078. "name": "Adam Harvey",
  6079. "email": "aharvey@php.net"
  6080. }
  6081. ],
  6082. "description": "Provides functionality to recursively process PHP variables",
  6083. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  6084. "support": {
  6085. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  6086. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  6087. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
  6088. },
  6089. "funding": [
  6090. {
  6091. "url": "https://github.com/sebastianbergmann",
  6092. "type": "github"
  6093. },
  6094. {
  6095. "url": "https://liberapay.com/sebastianbergmann",
  6096. "type": "liberapay"
  6097. },
  6098. {
  6099. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  6100. "type": "thanks_dev"
  6101. },
  6102. {
  6103. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  6104. "type": "tidelift"
  6105. }
  6106. ],
  6107. "time": "2025-08-13T04:42:22+00:00"
  6108. },
  6109. {
  6110. "name": "sebastian/type",
  6111. "version": "5.1.3",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://github.com/sebastianbergmann/type.git",
  6115. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  6120. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  6121. "shasum": ""
  6122. },
  6123. "require": {
  6124. "php": ">=8.2"
  6125. },
  6126. "require-dev": {
  6127. "phpunit/phpunit": "^11.3"
  6128. },
  6129. "type": "library",
  6130. "extra": {
  6131. "branch-alias": {
  6132. "dev-main": "5.1-dev"
  6133. }
  6134. },
  6135. "autoload": {
  6136. "classmap": [
  6137. "src/"
  6138. ]
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "BSD-3-Clause"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "Sebastian Bergmann",
  6147. "email": "sebastian@phpunit.de",
  6148. "role": "lead"
  6149. }
  6150. ],
  6151. "description": "Collection of value objects that represent the types of the PHP type system",
  6152. "homepage": "https://github.com/sebastianbergmann/type",
  6153. "support": {
  6154. "issues": "https://github.com/sebastianbergmann/type/issues",
  6155. "security": "https://github.com/sebastianbergmann/type/security/policy",
  6156. "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
  6157. },
  6158. "funding": [
  6159. {
  6160. "url": "https://github.com/sebastianbergmann",
  6161. "type": "github"
  6162. },
  6163. {
  6164. "url": "https://liberapay.com/sebastianbergmann",
  6165. "type": "liberapay"
  6166. },
  6167. {
  6168. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  6169. "type": "thanks_dev"
  6170. },
  6171. {
  6172. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  6173. "type": "tidelift"
  6174. }
  6175. ],
  6176. "time": "2025-08-09T06:55:48+00:00"
  6177. },
  6178. {
  6179. "name": "sebastian/version",
  6180. "version": "5.0.2",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/sebastianbergmann/version.git",
  6184. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  6189. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "php": ">=8.2"
  6194. },
  6195. "type": "library",
  6196. "extra": {
  6197. "branch-alias": {
  6198. "dev-main": "5.0-dev"
  6199. }
  6200. },
  6201. "autoload": {
  6202. "classmap": [
  6203. "src/"
  6204. ]
  6205. },
  6206. "notification-url": "https://packagist.org/downloads/",
  6207. "license": [
  6208. "BSD-3-Clause"
  6209. ],
  6210. "authors": [
  6211. {
  6212. "name": "Sebastian Bergmann",
  6213. "email": "sebastian@phpunit.de",
  6214. "role": "lead"
  6215. }
  6216. ],
  6217. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6218. "homepage": "https://github.com/sebastianbergmann/version",
  6219. "support": {
  6220. "issues": "https://github.com/sebastianbergmann/version/issues",
  6221. "security": "https://github.com/sebastianbergmann/version/security/policy",
  6222. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  6223. },
  6224. "funding": [
  6225. {
  6226. "url": "https://github.com/sebastianbergmann",
  6227. "type": "github"
  6228. }
  6229. ],
  6230. "time": "2024-10-09T05:16:32+00:00"
  6231. },
  6232. {
  6233. "name": "staabm/side-effects-detector",
  6234. "version": "1.0.5",
  6235. "source": {
  6236. "type": "git",
  6237. "url": "https://github.com/staabm/side-effects-detector.git",
  6238. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  6239. },
  6240. "dist": {
  6241. "type": "zip",
  6242. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  6243. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  6244. "shasum": ""
  6245. },
  6246. "require": {
  6247. "ext-tokenizer": "*",
  6248. "php": "^7.4 || ^8.0"
  6249. },
  6250. "require-dev": {
  6251. "phpstan/extension-installer": "^1.4.3",
  6252. "phpstan/phpstan": "^1.12.6",
  6253. "phpunit/phpunit": "^9.6.21",
  6254. "symfony/var-dumper": "^5.4.43",
  6255. "tomasvotruba/type-coverage": "1.0.0",
  6256. "tomasvotruba/unused-public": "1.0.0"
  6257. },
  6258. "type": "library",
  6259. "autoload": {
  6260. "classmap": [
  6261. "lib/"
  6262. ]
  6263. },
  6264. "notification-url": "https://packagist.org/downloads/",
  6265. "license": [
  6266. "MIT"
  6267. ],
  6268. "description": "A static analysis tool to detect side effects in PHP code",
  6269. "keywords": [
  6270. "static analysis"
  6271. ],
  6272. "support": {
  6273. "issues": "https://github.com/staabm/side-effects-detector/issues",
  6274. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  6275. },
  6276. "funding": [
  6277. {
  6278. "url": "https://github.com/staabm",
  6279. "type": "github"
  6280. }
  6281. ],
  6282. "time": "2024-10-20T05:08:20+00:00"
  6283. },
  6284. {
  6285. "name": "symfony/event-dispatcher",
  6286. "version": "v7.4.8",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/symfony/event-dispatcher.git",
  6290. "reference": "f57b899fa736fd71121168ef268f23c206083f0a"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f57b899fa736fd71121168ef268f23c206083f0a",
  6295. "reference": "f57b899fa736fd71121168ef268f23c206083f0a",
  6296. "shasum": ""
  6297. },
  6298. "require": {
  6299. "php": ">=8.2",
  6300. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6301. },
  6302. "conflict": {
  6303. "symfony/dependency-injection": "<6.4",
  6304. "symfony/service-contracts": "<2.5"
  6305. },
  6306. "provide": {
  6307. "psr/event-dispatcher-implementation": "1.0",
  6308. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6309. },
  6310. "require-dev": {
  6311. "psr/log": "^1|^2|^3",
  6312. "symfony/config": "^6.4|^7.0|^8.0",
  6313. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6314. "symfony/error-handler": "^6.4|^7.0|^8.0",
  6315. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6316. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  6317. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6318. "symfony/service-contracts": "^2.5|^3",
  6319. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  6320. },
  6321. "type": "library",
  6322. "autoload": {
  6323. "psr-4": {
  6324. "Symfony\\Component\\EventDispatcher\\": ""
  6325. },
  6326. "exclude-from-classmap": [
  6327. "/Tests/"
  6328. ]
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Fabien Potencier",
  6337. "email": "fabien@symfony.com"
  6338. },
  6339. {
  6340. "name": "Symfony Community",
  6341. "homepage": "https://symfony.com/contributors"
  6342. }
  6343. ],
  6344. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6345. "homepage": "https://symfony.com",
  6346. "support": {
  6347. "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.8"
  6348. },
  6349. "funding": [
  6350. {
  6351. "url": "https://symfony.com/sponsor",
  6352. "type": "custom"
  6353. },
  6354. {
  6355. "url": "https://github.com/fabpot",
  6356. "type": "github"
  6357. },
  6358. {
  6359. "url": "https://github.com/nicolas-grekas",
  6360. "type": "github"
  6361. },
  6362. {
  6363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6364. "type": "tidelift"
  6365. }
  6366. ],
  6367. "time": "2026-03-30T13:54:39+00:00"
  6368. },
  6369. {
  6370. "name": "symfony/event-dispatcher-contracts",
  6371. "version": "v3.6.0",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6375. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  6380. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  6381. "shasum": ""
  6382. },
  6383. "require": {
  6384. "php": ">=8.1",
  6385. "psr/event-dispatcher": "^1"
  6386. },
  6387. "type": "library",
  6388. "extra": {
  6389. "thanks": {
  6390. "url": "https://github.com/symfony/contracts",
  6391. "name": "symfony/contracts"
  6392. },
  6393. "branch-alias": {
  6394. "dev-main": "3.6-dev"
  6395. }
  6396. },
  6397. "autoload": {
  6398. "psr-4": {
  6399. "Symfony\\Contracts\\EventDispatcher\\": ""
  6400. }
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "Nicolas Grekas",
  6409. "email": "p@tchwork.com"
  6410. },
  6411. {
  6412. "name": "Symfony Community",
  6413. "homepage": "https://symfony.com/contributors"
  6414. }
  6415. ],
  6416. "description": "Generic abstractions related to dispatching event",
  6417. "homepage": "https://symfony.com",
  6418. "keywords": [
  6419. "abstractions",
  6420. "contracts",
  6421. "decoupling",
  6422. "interfaces",
  6423. "interoperability",
  6424. "standards"
  6425. ],
  6426. "support": {
  6427. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  6428. },
  6429. "funding": [
  6430. {
  6431. "url": "https://symfony.com/sponsor",
  6432. "type": "custom"
  6433. },
  6434. {
  6435. "url": "https://github.com/fabpot",
  6436. "type": "github"
  6437. },
  6438. {
  6439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6440. "type": "tidelift"
  6441. }
  6442. ],
  6443. "time": "2024-09-25T14:21:43+00:00"
  6444. },
  6445. {
  6446. "name": "symfony/finder",
  6447. "version": "v7.4.8",
  6448. "source": {
  6449. "type": "git",
  6450. "url": "https://github.com/symfony/finder.git",
  6451. "reference": "e0be088d22278583a82da281886e8c3592fbf149"
  6452. },
  6453. "dist": {
  6454. "type": "zip",
  6455. "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149",
  6456. "reference": "e0be088d22278583a82da281886e8c3592fbf149",
  6457. "shasum": ""
  6458. },
  6459. "require": {
  6460. "php": ">=8.2"
  6461. },
  6462. "require-dev": {
  6463. "symfony/filesystem": "^6.4|^7.0|^8.0"
  6464. },
  6465. "type": "library",
  6466. "autoload": {
  6467. "psr-4": {
  6468. "Symfony\\Component\\Finder\\": ""
  6469. },
  6470. "exclude-from-classmap": [
  6471. "/Tests/"
  6472. ]
  6473. },
  6474. "notification-url": "https://packagist.org/downloads/",
  6475. "license": [
  6476. "MIT"
  6477. ],
  6478. "authors": [
  6479. {
  6480. "name": "Fabien Potencier",
  6481. "email": "fabien@symfony.com"
  6482. },
  6483. {
  6484. "name": "Symfony Community",
  6485. "homepage": "https://symfony.com/contributors"
  6486. }
  6487. ],
  6488. "description": "Finds files and directories via an intuitive fluent interface",
  6489. "homepage": "https://symfony.com",
  6490. "support": {
  6491. "source": "https://github.com/symfony/finder/tree/v7.4.8"
  6492. },
  6493. "funding": [
  6494. {
  6495. "url": "https://symfony.com/sponsor",
  6496. "type": "custom"
  6497. },
  6498. {
  6499. "url": "https://github.com/fabpot",
  6500. "type": "github"
  6501. },
  6502. {
  6503. "url": "https://github.com/nicolas-grekas",
  6504. "type": "github"
  6505. },
  6506. {
  6507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6508. "type": "tidelift"
  6509. }
  6510. ],
  6511. "time": "2026-03-24T13:12:05+00:00"
  6512. },
  6513. {
  6514. "name": "symfony/options-resolver",
  6515. "version": "v7.4.8",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/symfony/options-resolver.git",
  6519. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  6524. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  6525. "shasum": ""
  6526. },
  6527. "require": {
  6528. "php": ">=8.2",
  6529. "symfony/deprecation-contracts": "^2.5|^3"
  6530. },
  6531. "type": "library",
  6532. "autoload": {
  6533. "psr-4": {
  6534. "Symfony\\Component\\OptionsResolver\\": ""
  6535. },
  6536. "exclude-from-classmap": [
  6537. "/Tests/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "MIT"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Fabien Potencier",
  6547. "email": "fabien@symfony.com"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Provides an improved replacement for the array_replace PHP function",
  6555. "homepage": "https://symfony.com",
  6556. "keywords": [
  6557. "config",
  6558. "configuration",
  6559. "options"
  6560. ],
  6561. "support": {
  6562. "source": "https://github.com/symfony/options-resolver/tree/v7.4.8"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://symfony.com/sponsor",
  6567. "type": "custom"
  6568. },
  6569. {
  6570. "url": "https://github.com/fabpot",
  6571. "type": "github"
  6572. },
  6573. {
  6574. "url": "https://github.com/nicolas-grekas",
  6575. "type": "github"
  6576. },
  6577. {
  6578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6579. "type": "tidelift"
  6580. }
  6581. ],
  6582. "time": "2026-03-24T13:12:05+00:00"
  6583. },
  6584. {
  6585. "name": "symfony/polyfill-php80",
  6586. "version": "v1.37.0",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://github.com/symfony/polyfill-php80.git",
  6590. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  6595. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  6596. "shasum": ""
  6597. },
  6598. "require": {
  6599. "php": ">=7.2"
  6600. },
  6601. "type": "library",
  6602. "extra": {
  6603. "thanks": {
  6604. "url": "https://github.com/symfony/polyfill",
  6605. "name": "symfony/polyfill"
  6606. }
  6607. },
  6608. "autoload": {
  6609. "files": [
  6610. "bootstrap.php"
  6611. ],
  6612. "psr-4": {
  6613. "Symfony\\Polyfill\\Php80\\": ""
  6614. },
  6615. "classmap": [
  6616. "Resources/stubs"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Ion Bazan",
  6626. "email": "ion.bazan@gmail.com"
  6627. },
  6628. {
  6629. "name": "Nicolas Grekas",
  6630. "email": "p@tchwork.com"
  6631. },
  6632. {
  6633. "name": "Symfony Community",
  6634. "homepage": "https://symfony.com/contributors"
  6635. }
  6636. ],
  6637. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6638. "homepage": "https://symfony.com",
  6639. "keywords": [
  6640. "compatibility",
  6641. "polyfill",
  6642. "portable",
  6643. "shim"
  6644. ],
  6645. "support": {
  6646. "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
  6647. },
  6648. "funding": [
  6649. {
  6650. "url": "https://symfony.com/sponsor",
  6651. "type": "custom"
  6652. },
  6653. {
  6654. "url": "https://github.com/fabpot",
  6655. "type": "github"
  6656. },
  6657. {
  6658. "url": "https://github.com/nicolas-grekas",
  6659. "type": "github"
  6660. },
  6661. {
  6662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6663. "type": "tidelift"
  6664. }
  6665. ],
  6666. "time": "2026-04-10T16:19:22+00:00"
  6667. },
  6668. {
  6669. "name": "symfony/polyfill-php81",
  6670. "version": "v1.37.0",
  6671. "source": {
  6672. "type": "git",
  6673. "url": "https://github.com/symfony/polyfill-php81.git",
  6674. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6675. },
  6676. "dist": {
  6677. "type": "zip",
  6678. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6679. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6680. "shasum": ""
  6681. },
  6682. "require": {
  6683. "php": ">=7.2"
  6684. },
  6685. "type": "library",
  6686. "extra": {
  6687. "thanks": {
  6688. "url": "https://github.com/symfony/polyfill",
  6689. "name": "symfony/polyfill"
  6690. }
  6691. },
  6692. "autoload": {
  6693. "files": [
  6694. "bootstrap.php"
  6695. ],
  6696. "psr-4": {
  6697. "Symfony\\Polyfill\\Php81\\": ""
  6698. },
  6699. "classmap": [
  6700. "Resources/stubs"
  6701. ]
  6702. },
  6703. "notification-url": "https://packagist.org/downloads/",
  6704. "license": [
  6705. "MIT"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Nicolas Grekas",
  6710. "email": "p@tchwork.com"
  6711. },
  6712. {
  6713. "name": "Symfony Community",
  6714. "homepage": "https://symfony.com/contributors"
  6715. }
  6716. ],
  6717. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6718. "homepage": "https://symfony.com",
  6719. "keywords": [
  6720. "compatibility",
  6721. "polyfill",
  6722. "portable",
  6723. "shim"
  6724. ],
  6725. "support": {
  6726. "source": "https://github.com/symfony/polyfill-php81/tree/v1.37.0"
  6727. },
  6728. "funding": [
  6729. {
  6730. "url": "https://symfony.com/sponsor",
  6731. "type": "custom"
  6732. },
  6733. {
  6734. "url": "https://github.com/fabpot",
  6735. "type": "github"
  6736. },
  6737. {
  6738. "url": "https://github.com/nicolas-grekas",
  6739. "type": "github"
  6740. },
  6741. {
  6742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6743. "type": "tidelift"
  6744. }
  6745. ],
  6746. "time": "2024-09-09T11:45:10+00:00"
  6747. },
  6748. {
  6749. "name": "symfony/polyfill-php84",
  6750. "version": "v1.37.0",
  6751. "source": {
  6752. "type": "git",
  6753. "url": "https://github.com/symfony/polyfill-php84.git",
  6754. "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06"
  6755. },
  6756. "dist": {
  6757. "type": "zip",
  6758. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/88486db2c389b290bf87ff1de7ebc1e13e42bb06",
  6759. "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06",
  6760. "shasum": ""
  6761. },
  6762. "require": {
  6763. "php": ">=7.2"
  6764. },
  6765. "type": "library",
  6766. "extra": {
  6767. "thanks": {
  6768. "url": "https://github.com/symfony/polyfill",
  6769. "name": "symfony/polyfill"
  6770. }
  6771. },
  6772. "autoload": {
  6773. "files": [
  6774. "bootstrap.php"
  6775. ],
  6776. "psr-4": {
  6777. "Symfony\\Polyfill\\Php84\\": ""
  6778. },
  6779. "classmap": [
  6780. "Resources/stubs"
  6781. ]
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "license": [
  6785. "MIT"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Nicolas Grekas",
  6790. "email": "p@tchwork.com"
  6791. },
  6792. {
  6793. "name": "Symfony Community",
  6794. "homepage": "https://symfony.com/contributors"
  6795. }
  6796. ],
  6797. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  6798. "homepage": "https://symfony.com",
  6799. "keywords": [
  6800. "compatibility",
  6801. "polyfill",
  6802. "portable",
  6803. "shim"
  6804. ],
  6805. "support": {
  6806. "source": "https://github.com/symfony/polyfill-php84/tree/v1.37.0"
  6807. },
  6808. "funding": [
  6809. {
  6810. "url": "https://symfony.com/sponsor",
  6811. "type": "custom"
  6812. },
  6813. {
  6814. "url": "https://github.com/fabpot",
  6815. "type": "github"
  6816. },
  6817. {
  6818. "url": "https://github.com/nicolas-grekas",
  6819. "type": "github"
  6820. },
  6821. {
  6822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6823. "type": "tidelift"
  6824. }
  6825. ],
  6826. "time": "2026-04-10T18:47:49+00:00"
  6827. },
  6828. {
  6829. "name": "symfony/process",
  6830. "version": "v7.4.8",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://github.com/symfony/process.git",
  6834. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://api.github.com/repos/symfony/process/zipball/60f19cd3badc8de688421e21e4305eba50f8089a",
  6839. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a",
  6840. "shasum": ""
  6841. },
  6842. "require": {
  6843. "php": ">=8.2"
  6844. },
  6845. "type": "library",
  6846. "autoload": {
  6847. "psr-4": {
  6848. "Symfony\\Component\\Process\\": ""
  6849. },
  6850. "exclude-from-classmap": [
  6851. "/Tests/"
  6852. ]
  6853. },
  6854. "notification-url": "https://packagist.org/downloads/",
  6855. "license": [
  6856. "MIT"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Fabien Potencier",
  6861. "email": "fabien@symfony.com"
  6862. },
  6863. {
  6864. "name": "Symfony Community",
  6865. "homepage": "https://symfony.com/contributors"
  6866. }
  6867. ],
  6868. "description": "Executes commands in sub-processes",
  6869. "homepage": "https://symfony.com",
  6870. "support": {
  6871. "source": "https://github.com/symfony/process/tree/v7.4.8"
  6872. },
  6873. "funding": [
  6874. {
  6875. "url": "https://symfony.com/sponsor",
  6876. "type": "custom"
  6877. },
  6878. {
  6879. "url": "https://github.com/fabpot",
  6880. "type": "github"
  6881. },
  6882. {
  6883. "url": "https://github.com/nicolas-grekas",
  6884. "type": "github"
  6885. },
  6886. {
  6887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6888. "type": "tidelift"
  6889. }
  6890. ],
  6891. "time": "2026-03-24T13:12:05+00:00"
  6892. },
  6893. {
  6894. "name": "symfony/stopwatch",
  6895. "version": "v7.4.8",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://github.com/symfony/stopwatch.git",
  6899. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  6904. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  6905. "shasum": ""
  6906. },
  6907. "require": {
  6908. "php": ">=8.2",
  6909. "symfony/service-contracts": "^2.5|^3"
  6910. },
  6911. "type": "library",
  6912. "autoload": {
  6913. "psr-4": {
  6914. "Symfony\\Component\\Stopwatch\\": ""
  6915. },
  6916. "exclude-from-classmap": [
  6917. "/Tests/"
  6918. ]
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "Fabien Potencier",
  6927. "email": "fabien@symfony.com"
  6928. },
  6929. {
  6930. "name": "Symfony Community",
  6931. "homepage": "https://symfony.com/contributors"
  6932. }
  6933. ],
  6934. "description": "Provides a way to profile code",
  6935. "homepage": "https://symfony.com",
  6936. "support": {
  6937. "source": "https://github.com/symfony/stopwatch/tree/v7.4.8"
  6938. },
  6939. "funding": [
  6940. {
  6941. "url": "https://symfony.com/sponsor",
  6942. "type": "custom"
  6943. },
  6944. {
  6945. "url": "https://github.com/fabpot",
  6946. "type": "github"
  6947. },
  6948. {
  6949. "url": "https://github.com/nicolas-grekas",
  6950. "type": "github"
  6951. },
  6952. {
  6953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6954. "type": "tidelift"
  6955. }
  6956. ],
  6957. "time": "2026-03-24T13:12:05+00:00"
  6958. },
  6959. {
  6960. "name": "theseer/tokenizer",
  6961. "version": "1.3.1",
  6962. "source": {
  6963. "type": "git",
  6964. "url": "https://github.com/theseer/tokenizer.git",
  6965. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  6966. },
  6967. "dist": {
  6968. "type": "zip",
  6969. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  6970. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  6971. "shasum": ""
  6972. },
  6973. "require": {
  6974. "ext-dom": "*",
  6975. "ext-tokenizer": "*",
  6976. "ext-xmlwriter": "*",
  6977. "php": "^7.2 || ^8.0"
  6978. },
  6979. "type": "library",
  6980. "autoload": {
  6981. "classmap": [
  6982. "src/"
  6983. ]
  6984. },
  6985. "notification-url": "https://packagist.org/downloads/",
  6986. "license": [
  6987. "BSD-3-Clause"
  6988. ],
  6989. "authors": [
  6990. {
  6991. "name": "Arne Blankerts",
  6992. "email": "arne@blankerts.de",
  6993. "role": "Developer"
  6994. }
  6995. ],
  6996. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6997. "support": {
  6998. "issues": "https://github.com/theseer/tokenizer/issues",
  6999. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  7000. },
  7001. "funding": [
  7002. {
  7003. "url": "https://github.com/theseer",
  7004. "type": "github"
  7005. }
  7006. ],
  7007. "time": "2025-11-17T20:03:58+00:00"
  7008. },
  7009. {
  7010. "name": "vlucas/phpdotenv",
  7011. "version": "v5.6.3",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/vlucas/phpdotenv.git",
  7015. "reference": "955e7815d677a3eaa7075231212f2110983adecc"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
  7020. "reference": "955e7815d677a3eaa7075231212f2110983adecc",
  7021. "shasum": ""
  7022. },
  7023. "require": {
  7024. "ext-pcre": "*",
  7025. "graham-campbell/result-type": "^1.1.4",
  7026. "php": "^7.2.5 || ^8.0",
  7027. "phpoption/phpoption": "^1.9.5",
  7028. "symfony/polyfill-ctype": "^1.26",
  7029. "symfony/polyfill-mbstring": "^1.26",
  7030. "symfony/polyfill-php80": "^1.26"
  7031. },
  7032. "require-dev": {
  7033. "bamarni/composer-bin-plugin": "^1.8.2",
  7034. "ext-filter": "*",
  7035. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7036. },
  7037. "suggest": {
  7038. "ext-filter": "Required to use the boolean validator."
  7039. },
  7040. "type": "library",
  7041. "extra": {
  7042. "bamarni-bin": {
  7043. "bin-links": true,
  7044. "forward-command": false
  7045. },
  7046. "branch-alias": {
  7047. "dev-master": "5.6-dev"
  7048. }
  7049. },
  7050. "autoload": {
  7051. "psr-4": {
  7052. "Dotenv\\": "src/"
  7053. }
  7054. },
  7055. "notification-url": "https://packagist.org/downloads/",
  7056. "license": [
  7057. "BSD-3-Clause"
  7058. ],
  7059. "authors": [
  7060. {
  7061. "name": "Graham Campbell",
  7062. "email": "hello@gjcampbell.co.uk",
  7063. "homepage": "https://github.com/GrahamCampbell"
  7064. },
  7065. {
  7066. "name": "Vance Lucas",
  7067. "email": "vance@vancelucas.com",
  7068. "homepage": "https://github.com/vlucas"
  7069. }
  7070. ],
  7071. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7072. "keywords": [
  7073. "dotenv",
  7074. "env",
  7075. "environment"
  7076. ],
  7077. "support": {
  7078. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7079. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
  7080. },
  7081. "funding": [
  7082. {
  7083. "url": "https://github.com/GrahamCampbell",
  7084. "type": "github"
  7085. },
  7086. {
  7087. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7088. "type": "tidelift"
  7089. }
  7090. ],
  7091. "time": "2025-12-27T19:49:13+00:00"
  7092. }
  7093. ],
  7094. "aliases": [],
  7095. "minimum-stability": "stable",
  7096. "stability-flags": {},
  7097. "prefer-stable": false,
  7098. "prefer-lowest": false,
  7099. "platform": {
  7100. "php": "^8.3"
  7101. },
  7102. "platform-dev": {},
  7103. "platform-overrides": {
  7104. "php": "8.3"
  7105. },
  7106. "plugin-api-version": "2.9.0"
  7107. }