composer.lock 298 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286
  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": "626b9e7ddd47fb7eff9aaa53cce0c9ad",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.14.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "f05858549e5f9d7bb45875a75583240a38a281d0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/f05858549e5f9d7bb45875a75583240a38a281d0",
  20. "reference": "f05858549e5f9d7bb45875a75583240a38a281d0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.2"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpstan/phpstan": "2.1.22",
  29. "phpunit/phpunit": "^11.5"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "bignumber",
  50. "brick",
  51. "decimal",
  52. "integer",
  53. "math",
  54. "mathematics",
  55. "rational"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/brick/math/issues",
  59. "source": "https://github.com/brick/math/tree/0.14.1"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://github.com/BenMorel",
  64. "type": "github"
  65. }
  66. ],
  67. "time": "2025-11-24T14:40:29+00:00"
  68. },
  69. {
  70. "name": "carbonphp/carbon-doctrine-types",
  71. "version": "3.2.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  75. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  80. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^8.1"
  85. },
  86. "conflict": {
  87. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  88. },
  89. "require-dev": {
  90. "doctrine/dbal": "^4.0.0",
  91. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  92. "phpunit/phpunit": "^10.3"
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "psr-4": {
  97. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "KyleKatarn",
  107. "email": "kylekatarnls@gmail.com"
  108. }
  109. ],
  110. "description": "Types to use Carbon in Doctrine",
  111. "keywords": [
  112. "carbon",
  113. "date",
  114. "datetime",
  115. "doctrine",
  116. "time"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  120. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/kylekatarnls",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://opencollective.com/Carbon",
  129. "type": "open_collective"
  130. },
  131. {
  132. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  133. "type": "tidelift"
  134. }
  135. ],
  136. "time": "2024-02-09T16:56:22+00:00"
  137. },
  138. {
  139. "name": "dflydev/dot-access-data",
  140. "version": "v3.0.3",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  144. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  149. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "php": "^7.1 || ^8.0"
  154. },
  155. "require-dev": {
  156. "phpstan/phpstan": "^0.12.42",
  157. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  158. "scrutinizer/ocular": "1.6.0",
  159. "squizlabs/php_codesniffer": "^3.5",
  160. "vimeo/psalm": "^4.0.0"
  161. },
  162. "type": "library",
  163. "extra": {
  164. "branch-alias": {
  165. "dev-main": "3.x-dev"
  166. }
  167. },
  168. "autoload": {
  169. "psr-4": {
  170. "Dflydev\\DotAccessData\\": "src/"
  171. }
  172. },
  173. "notification-url": "https://packagist.org/downloads/",
  174. "license": [
  175. "MIT"
  176. ],
  177. "authors": [
  178. {
  179. "name": "Dragonfly Development Inc.",
  180. "email": "info@dflydev.com",
  181. "homepage": "http://dflydev.com"
  182. },
  183. {
  184. "name": "Beau Simensen",
  185. "email": "beau@dflydev.com",
  186. "homepage": "http://beausimensen.com"
  187. },
  188. {
  189. "name": "Carlos Frutos",
  190. "email": "carlos@kiwing.it",
  191. "homepage": "https://github.com/cfrutos"
  192. },
  193. {
  194. "name": "Colin O'Dell",
  195. "email": "colinodell@gmail.com",
  196. "homepage": "https://www.colinodell.com"
  197. }
  198. ],
  199. "description": "Given a deep data structure, access data by dot notation.",
  200. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  201. "keywords": [
  202. "access",
  203. "data",
  204. "dot",
  205. "notation"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  209. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  210. },
  211. "time": "2024-07-08T12:26:09+00:00"
  212. },
  213. {
  214. "name": "doctrine/inflector",
  215. "version": "2.1.0",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/inflector.git",
  219. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  224. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.2 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^12.0 || ^13.0",
  232. "phpstan/phpstan": "^1.12 || ^2.0",
  233. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  234. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  235. "phpunit/phpunit": "^8.5 || ^12.2"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "Doctrine\\Inflector\\": "src"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Guilherme Blanco",
  250. "email": "guilhermeblanco@gmail.com"
  251. },
  252. {
  253. "name": "Roman Borschel",
  254. "email": "roman@code-factory.org"
  255. },
  256. {
  257. "name": "Benjamin Eberlei",
  258. "email": "kontakt@beberlei.de"
  259. },
  260. {
  261. "name": "Jonathan Wage",
  262. "email": "jonwage@gmail.com"
  263. },
  264. {
  265. "name": "Johannes Schmitt",
  266. "email": "schmittjoh@gmail.com"
  267. }
  268. ],
  269. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  270. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  271. "keywords": [
  272. "inflection",
  273. "inflector",
  274. "lowercase",
  275. "manipulation",
  276. "php",
  277. "plural",
  278. "singular",
  279. "strings",
  280. "uppercase",
  281. "words"
  282. ],
  283. "support": {
  284. "issues": "https://github.com/doctrine/inflector/issues",
  285. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  286. },
  287. "funding": [
  288. {
  289. "url": "https://www.doctrine-project.org/sponsorship.html",
  290. "type": "custom"
  291. },
  292. {
  293. "url": "https://www.patreon.com/phpdoctrine",
  294. "type": "patreon"
  295. },
  296. {
  297. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  298. "type": "tidelift"
  299. }
  300. ],
  301. "time": "2025-08-10T19:31:58+00:00"
  302. },
  303. {
  304. "name": "doctrine/lexer",
  305. "version": "3.0.1",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/doctrine/lexer.git",
  309. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  314. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "php": "^8.1"
  319. },
  320. "require-dev": {
  321. "doctrine/coding-standard": "^12",
  322. "phpstan/phpstan": "^1.10",
  323. "phpunit/phpunit": "^10.5",
  324. "psalm/plugin-phpunit": "^0.18.3",
  325. "vimeo/psalm": "^5.21"
  326. },
  327. "type": "library",
  328. "autoload": {
  329. "psr-4": {
  330. "Doctrine\\Common\\Lexer\\": "src"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "authors": [
  338. {
  339. "name": "Guilherme Blanco",
  340. "email": "guilhermeblanco@gmail.com"
  341. },
  342. {
  343. "name": "Roman Borschel",
  344. "email": "roman@code-factory.org"
  345. },
  346. {
  347. "name": "Johannes Schmitt",
  348. "email": "schmittjoh@gmail.com"
  349. }
  350. ],
  351. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  352. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  353. "keywords": [
  354. "annotations",
  355. "docblock",
  356. "lexer",
  357. "parser",
  358. "php"
  359. ],
  360. "support": {
  361. "issues": "https://github.com/doctrine/lexer/issues",
  362. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  363. },
  364. "funding": [
  365. {
  366. "url": "https://www.doctrine-project.org/sponsorship.html",
  367. "type": "custom"
  368. },
  369. {
  370. "url": "https://www.patreon.com/phpdoctrine",
  371. "type": "patreon"
  372. },
  373. {
  374. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  375. "type": "tidelift"
  376. }
  377. ],
  378. "time": "2024-02-05T11:56:58+00:00"
  379. },
  380. {
  381. "name": "dragonmantank/cron-expression",
  382. "version": "v3.6.0",
  383. "source": {
  384. "type": "git",
  385. "url": "https://github.com/dragonmantank/cron-expression.git",
  386. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
  387. },
  388. "dist": {
  389. "type": "zip",
  390. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  391. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  392. "shasum": ""
  393. },
  394. "require": {
  395. "php": "^8.2|^8.3|^8.4|^8.5"
  396. },
  397. "replace": {
  398. "mtdowling/cron-expression": "^1.0"
  399. },
  400. "require-dev": {
  401. "phpstan/extension-installer": "^1.4.3",
  402. "phpstan/phpstan": "^1.12.32|^2.1.31",
  403. "phpunit/phpunit": "^8.5.48|^9.0"
  404. },
  405. "type": "library",
  406. "extra": {
  407. "branch-alias": {
  408. "dev-master": "3.x-dev"
  409. }
  410. },
  411. "autoload": {
  412. "psr-4": {
  413. "Cron\\": "src/Cron/"
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "Chris Tankersley",
  423. "email": "chris@ctankersley.com",
  424. "homepage": "https://github.com/dragonmantank"
  425. }
  426. ],
  427. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  428. "keywords": [
  429. "cron",
  430. "schedule"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  434. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/dragonmantank",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2025-10-31T18:51:33+00:00"
  443. },
  444. {
  445. "name": "egulias/email-validator",
  446. "version": "4.0.4",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/egulias/EmailValidator.git",
  450. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  455. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "doctrine/lexer": "^2.0 || ^3.0",
  460. "php": ">=8.1",
  461. "symfony/polyfill-intl-idn": "^1.26"
  462. },
  463. "require-dev": {
  464. "phpunit/phpunit": "^10.2",
  465. "vimeo/psalm": "^5.12"
  466. },
  467. "suggest": {
  468. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  469. },
  470. "type": "library",
  471. "extra": {
  472. "branch-alias": {
  473. "dev-master": "4.0.x-dev"
  474. }
  475. },
  476. "autoload": {
  477. "psr-4": {
  478. "Egulias\\EmailValidator\\": "src"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Eduardo Gulias Davis"
  488. }
  489. ],
  490. "description": "A library for validating emails against several RFCs",
  491. "homepage": "https://github.com/egulias/EmailValidator",
  492. "keywords": [
  493. "email",
  494. "emailvalidation",
  495. "emailvalidator",
  496. "validation",
  497. "validator"
  498. ],
  499. "support": {
  500. "issues": "https://github.com/egulias/EmailValidator/issues",
  501. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  502. },
  503. "funding": [
  504. {
  505. "url": "https://github.com/egulias",
  506. "type": "github"
  507. }
  508. ],
  509. "time": "2025-03-06T22:45:56+00:00"
  510. },
  511. {
  512. "name": "fruitcake/php-cors",
  513. "version": "v1.4.0",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/fruitcake/php-cors.git",
  517. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  522. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "php": "^8.1",
  527. "symfony/http-foundation": "^5.4|^6.4|^7.3|^8"
  528. },
  529. "require-dev": {
  530. "phpstan/phpstan": "^2",
  531. "phpunit/phpunit": "^9",
  532. "squizlabs/php_codesniffer": "^4"
  533. },
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-master": "1.3-dev"
  538. }
  539. },
  540. "autoload": {
  541. "psr-4": {
  542. "Fruitcake\\Cors\\": "src/"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "MIT"
  548. ],
  549. "authors": [
  550. {
  551. "name": "Fruitcake",
  552. "homepage": "https://fruitcake.nl"
  553. },
  554. {
  555. "name": "Barryvdh",
  556. "email": "barryvdh@gmail.com"
  557. }
  558. ],
  559. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  560. "homepage": "https://github.com/fruitcake/php-cors",
  561. "keywords": [
  562. "cors",
  563. "laravel",
  564. "symfony"
  565. ],
  566. "support": {
  567. "issues": "https://github.com/fruitcake/php-cors/issues",
  568. "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0"
  569. },
  570. "funding": [
  571. {
  572. "url": "https://fruitcake.nl",
  573. "type": "custom"
  574. },
  575. {
  576. "url": "https://github.com/barryvdh",
  577. "type": "github"
  578. }
  579. ],
  580. "time": "2025-12-03T09:33:47+00:00"
  581. },
  582. {
  583. "name": "graham-campbell/result-type",
  584. "version": "v1.1.4",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  588. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  593. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  594. "shasum": ""
  595. },
  596. "require": {
  597. "php": "^7.2.5 || ^8.0",
  598. "phpoption/phpoption": "^1.9.5"
  599. },
  600. "require-dev": {
  601. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  602. },
  603. "type": "library",
  604. "autoload": {
  605. "psr-4": {
  606. "GrahamCampbell\\ResultType\\": "src/"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Graham Campbell",
  616. "email": "hello@gjcampbell.co.uk",
  617. "homepage": "https://github.com/GrahamCampbell"
  618. }
  619. ],
  620. "description": "An Implementation Of The Result Type",
  621. "keywords": [
  622. "Graham Campbell",
  623. "GrahamCampbell",
  624. "Result Type",
  625. "Result-Type",
  626. "result"
  627. ],
  628. "support": {
  629. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  630. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  631. },
  632. "funding": [
  633. {
  634. "url": "https://github.com/GrahamCampbell",
  635. "type": "github"
  636. },
  637. {
  638. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  639. "type": "tidelift"
  640. }
  641. ],
  642. "time": "2025-12-27T19:43:20+00:00"
  643. },
  644. {
  645. "name": "guzzlehttp/guzzle",
  646. "version": "7.10.0",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/guzzle/guzzle.git",
  650. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  655. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "ext-json": "*",
  660. "guzzlehttp/promises": "^2.3",
  661. "guzzlehttp/psr7": "^2.8",
  662. "php": "^7.2.5 || ^8.0",
  663. "psr/http-client": "^1.0",
  664. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  665. },
  666. "provide": {
  667. "psr/http-client-implementation": "1.0"
  668. },
  669. "require-dev": {
  670. "bamarni/composer-bin-plugin": "^1.8.2",
  671. "ext-curl": "*",
  672. "guzzle/client-integration-tests": "3.0.2",
  673. "php-http/message-factory": "^1.1",
  674. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  675. "psr/log": "^1.1 || ^2.0 || ^3.0"
  676. },
  677. "suggest": {
  678. "ext-curl": "Required for CURL handler support",
  679. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  680. "psr/log": "Required for using the Log middleware"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "bamarni-bin": {
  685. "bin-links": true,
  686. "forward-command": false
  687. }
  688. },
  689. "autoload": {
  690. "files": [
  691. "src/functions_include.php"
  692. ],
  693. "psr-4": {
  694. "GuzzleHttp\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Graham Campbell",
  704. "email": "hello@gjcampbell.co.uk",
  705. "homepage": "https://github.com/GrahamCampbell"
  706. },
  707. {
  708. "name": "Michael Dowling",
  709. "email": "mtdowling@gmail.com",
  710. "homepage": "https://github.com/mtdowling"
  711. },
  712. {
  713. "name": "Jeremy Lindblom",
  714. "email": "jeremeamia@gmail.com",
  715. "homepage": "https://github.com/jeremeamia"
  716. },
  717. {
  718. "name": "George Mponos",
  719. "email": "gmponos@gmail.com",
  720. "homepage": "https://github.com/gmponos"
  721. },
  722. {
  723. "name": "Tobias Nyholm",
  724. "email": "tobias.nyholm@gmail.com",
  725. "homepage": "https://github.com/Nyholm"
  726. },
  727. {
  728. "name": "Márk Sági-Kazár",
  729. "email": "mark.sagikazar@gmail.com",
  730. "homepage": "https://github.com/sagikazarmark"
  731. },
  732. {
  733. "name": "Tobias Schultze",
  734. "email": "webmaster@tubo-world.de",
  735. "homepage": "https://github.com/Tobion"
  736. }
  737. ],
  738. "description": "Guzzle is a PHP HTTP client library",
  739. "keywords": [
  740. "client",
  741. "curl",
  742. "framework",
  743. "http",
  744. "http client",
  745. "psr-18",
  746. "psr-7",
  747. "rest",
  748. "web service"
  749. ],
  750. "support": {
  751. "issues": "https://github.com/guzzle/guzzle/issues",
  752. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  753. },
  754. "funding": [
  755. {
  756. "url": "https://github.com/GrahamCampbell",
  757. "type": "github"
  758. },
  759. {
  760. "url": "https://github.com/Nyholm",
  761. "type": "github"
  762. },
  763. {
  764. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  765. "type": "tidelift"
  766. }
  767. ],
  768. "time": "2025-08-23T22:36:01+00:00"
  769. },
  770. {
  771. "name": "guzzlehttp/promises",
  772. "version": "2.3.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/guzzle/promises.git",
  776. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  781. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "php": "^7.2.5 || ^8.0"
  786. },
  787. "require-dev": {
  788. "bamarni/composer-bin-plugin": "^1.8.2",
  789. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  790. },
  791. "type": "library",
  792. "extra": {
  793. "bamarni-bin": {
  794. "bin-links": true,
  795. "forward-command": false
  796. }
  797. },
  798. "autoload": {
  799. "psr-4": {
  800. "GuzzleHttp\\Promise\\": "src/"
  801. }
  802. },
  803. "notification-url": "https://packagist.org/downloads/",
  804. "license": [
  805. "MIT"
  806. ],
  807. "authors": [
  808. {
  809. "name": "Graham Campbell",
  810. "email": "hello@gjcampbell.co.uk",
  811. "homepage": "https://github.com/GrahamCampbell"
  812. },
  813. {
  814. "name": "Michael Dowling",
  815. "email": "mtdowling@gmail.com",
  816. "homepage": "https://github.com/mtdowling"
  817. },
  818. {
  819. "name": "Tobias Nyholm",
  820. "email": "tobias.nyholm@gmail.com",
  821. "homepage": "https://github.com/Nyholm"
  822. },
  823. {
  824. "name": "Tobias Schultze",
  825. "email": "webmaster@tubo-world.de",
  826. "homepage": "https://github.com/Tobion"
  827. }
  828. ],
  829. "description": "Guzzle promises library",
  830. "keywords": [
  831. "promise"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/guzzle/promises/issues",
  835. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/GrahamCampbell",
  840. "type": "github"
  841. },
  842. {
  843. "url": "https://github.com/Nyholm",
  844. "type": "github"
  845. },
  846. {
  847. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  848. "type": "tidelift"
  849. }
  850. ],
  851. "time": "2025-08-22T14:34:08+00:00"
  852. },
  853. {
  854. "name": "guzzlehttp/psr7",
  855. "version": "2.8.0",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/guzzle/psr7.git",
  859. "reference": "21dc724a0583619cd1652f673303492272778051"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  864. "reference": "21dc724a0583619cd1652f673303492272778051",
  865. "shasum": ""
  866. },
  867. "require": {
  868. "php": "^7.2.5 || ^8.0",
  869. "psr/http-factory": "^1.0",
  870. "psr/http-message": "^1.1 || ^2.0",
  871. "ralouphie/getallheaders": "^3.0"
  872. },
  873. "provide": {
  874. "psr/http-factory-implementation": "1.0",
  875. "psr/http-message-implementation": "1.0"
  876. },
  877. "require-dev": {
  878. "bamarni/composer-bin-plugin": "^1.8.2",
  879. "http-interop/http-factory-tests": "0.9.0",
  880. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  881. },
  882. "suggest": {
  883. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  884. },
  885. "type": "library",
  886. "extra": {
  887. "bamarni-bin": {
  888. "bin-links": true,
  889. "forward-command": false
  890. }
  891. },
  892. "autoload": {
  893. "psr-4": {
  894. "GuzzleHttp\\Psr7\\": "src/"
  895. }
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Graham Campbell",
  904. "email": "hello@gjcampbell.co.uk",
  905. "homepage": "https://github.com/GrahamCampbell"
  906. },
  907. {
  908. "name": "Michael Dowling",
  909. "email": "mtdowling@gmail.com",
  910. "homepage": "https://github.com/mtdowling"
  911. },
  912. {
  913. "name": "George Mponos",
  914. "email": "gmponos@gmail.com",
  915. "homepage": "https://github.com/gmponos"
  916. },
  917. {
  918. "name": "Tobias Nyholm",
  919. "email": "tobias.nyholm@gmail.com",
  920. "homepage": "https://github.com/Nyholm"
  921. },
  922. {
  923. "name": "Márk Sági-Kazár",
  924. "email": "mark.sagikazar@gmail.com",
  925. "homepage": "https://github.com/sagikazarmark"
  926. },
  927. {
  928. "name": "Tobias Schultze",
  929. "email": "webmaster@tubo-world.de",
  930. "homepage": "https://github.com/Tobion"
  931. },
  932. {
  933. "name": "Márk Sági-Kazár",
  934. "email": "mark.sagikazar@gmail.com",
  935. "homepage": "https://sagikazarmark.hu"
  936. }
  937. ],
  938. "description": "PSR-7 message implementation that also provides common utility methods",
  939. "keywords": [
  940. "http",
  941. "message",
  942. "psr-7",
  943. "request",
  944. "response",
  945. "stream",
  946. "uri",
  947. "url"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/guzzle/psr7/issues",
  951. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/GrahamCampbell",
  956. "type": "github"
  957. },
  958. {
  959. "url": "https://github.com/Nyholm",
  960. "type": "github"
  961. },
  962. {
  963. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  964. "type": "tidelift"
  965. }
  966. ],
  967. "time": "2025-08-23T21:21:41+00:00"
  968. },
  969. {
  970. "name": "guzzlehttp/uri-template",
  971. "version": "v1.0.5",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/guzzle/uri-template.git",
  975. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  980. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "php": "^7.2.5 || ^8.0",
  985. "symfony/polyfill-php80": "^1.24"
  986. },
  987. "require-dev": {
  988. "bamarni/composer-bin-plugin": "^1.8.2",
  989. "phpunit/phpunit": "^8.5.44 || ^9.6.25",
  990. "uri-template/tests": "1.0.0"
  991. },
  992. "type": "library",
  993. "extra": {
  994. "bamarni-bin": {
  995. "bin-links": true,
  996. "forward-command": false
  997. }
  998. },
  999. "autoload": {
  1000. "psr-4": {
  1001. "GuzzleHttp\\UriTemplate\\": "src"
  1002. }
  1003. },
  1004. "notification-url": "https://packagist.org/downloads/",
  1005. "license": [
  1006. "MIT"
  1007. ],
  1008. "authors": [
  1009. {
  1010. "name": "Graham Campbell",
  1011. "email": "hello@gjcampbell.co.uk",
  1012. "homepage": "https://github.com/GrahamCampbell"
  1013. },
  1014. {
  1015. "name": "Michael Dowling",
  1016. "email": "mtdowling@gmail.com",
  1017. "homepage": "https://github.com/mtdowling"
  1018. },
  1019. {
  1020. "name": "George Mponos",
  1021. "email": "gmponos@gmail.com",
  1022. "homepage": "https://github.com/gmponos"
  1023. },
  1024. {
  1025. "name": "Tobias Nyholm",
  1026. "email": "tobias.nyholm@gmail.com",
  1027. "homepage": "https://github.com/Nyholm"
  1028. }
  1029. ],
  1030. "description": "A polyfill class for uri_template of PHP",
  1031. "keywords": [
  1032. "guzzlehttp",
  1033. "uri-template"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/guzzle/uri-template/issues",
  1037. "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
  1038. },
  1039. "funding": [
  1040. {
  1041. "url": "https://github.com/GrahamCampbell",
  1042. "type": "github"
  1043. },
  1044. {
  1045. "url": "https://github.com/Nyholm",
  1046. "type": "github"
  1047. },
  1048. {
  1049. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1050. "type": "tidelift"
  1051. }
  1052. ],
  1053. "time": "2025-08-22T14:27:06+00:00"
  1054. },
  1055. {
  1056. "name": "laravel/framework",
  1057. "version": "v11.48.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/laravel/framework.git",
  1061. "reference": "5b23ab29087dbcb13077e5c049c431ec4b82f236"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/laravel/framework/zipball/5b23ab29087dbcb13077e5c049c431ec4b82f236",
  1066. "reference": "5b23ab29087dbcb13077e5c049c431ec4b82f236",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12|^0.13|^0.14",
  1071. "composer-runtime-api": "^2.2",
  1072. "doctrine/inflector": "^2.0.5",
  1073. "dragonmantank/cron-expression": "^3.4",
  1074. "egulias/email-validator": "^3.2.1|^4.0",
  1075. "ext-ctype": "*",
  1076. "ext-filter": "*",
  1077. "ext-hash": "*",
  1078. "ext-mbstring": "*",
  1079. "ext-openssl": "*",
  1080. "ext-session": "*",
  1081. "ext-tokenizer": "*",
  1082. "fruitcake/php-cors": "^1.3",
  1083. "guzzlehttp/guzzle": "^7.8.2",
  1084. "guzzlehttp/uri-template": "^1.0",
  1085. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1086. "laravel/serializable-closure": "^1.3|^2.0",
  1087. "league/commonmark": "^2.7",
  1088. "league/flysystem": "^3.25.1",
  1089. "league/flysystem-local": "^3.25.1",
  1090. "league/uri": "^7.5.1",
  1091. "monolog/monolog": "^3.0",
  1092. "nesbot/carbon": "^2.72.6|^3.8.4",
  1093. "nunomaduro/termwind": "^2.0",
  1094. "php": "^8.2",
  1095. "psr/container": "^1.1.1|^2.0.1",
  1096. "psr/log": "^1.0|^2.0|^3.0",
  1097. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1098. "ramsey/uuid": "^4.7",
  1099. "symfony/console": "^7.0.3",
  1100. "symfony/error-handler": "^7.0.3",
  1101. "symfony/finder": "^7.0.3",
  1102. "symfony/http-foundation": "^7.2.0",
  1103. "symfony/http-kernel": "^7.0.3",
  1104. "symfony/mailer": "^7.0.3",
  1105. "symfony/mime": "^7.0.3",
  1106. "symfony/polyfill-php83": "^1.31",
  1107. "symfony/process": "^7.0.3",
  1108. "symfony/routing": "^7.0.3",
  1109. "symfony/uid": "^7.0.3",
  1110. "symfony/var-dumper": "^7.0.3",
  1111. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1112. "vlucas/phpdotenv": "^5.6.1",
  1113. "voku/portable-ascii": "^2.0.2"
  1114. },
  1115. "conflict": {
  1116. "tightenco/collect": "<5.5.33"
  1117. },
  1118. "provide": {
  1119. "psr/container-implementation": "1.1|2.0",
  1120. "psr/log-implementation": "1.0|2.0|3.0",
  1121. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1122. },
  1123. "replace": {
  1124. "illuminate/auth": "self.version",
  1125. "illuminate/broadcasting": "self.version",
  1126. "illuminate/bus": "self.version",
  1127. "illuminate/cache": "self.version",
  1128. "illuminate/collections": "self.version",
  1129. "illuminate/concurrency": "self.version",
  1130. "illuminate/conditionable": "self.version",
  1131. "illuminate/config": "self.version",
  1132. "illuminate/console": "self.version",
  1133. "illuminate/container": "self.version",
  1134. "illuminate/contracts": "self.version",
  1135. "illuminate/cookie": "self.version",
  1136. "illuminate/database": "self.version",
  1137. "illuminate/encryption": "self.version",
  1138. "illuminate/events": "self.version",
  1139. "illuminate/filesystem": "self.version",
  1140. "illuminate/hashing": "self.version",
  1141. "illuminate/http": "self.version",
  1142. "illuminate/log": "self.version",
  1143. "illuminate/macroable": "self.version",
  1144. "illuminate/mail": "self.version",
  1145. "illuminate/notifications": "self.version",
  1146. "illuminate/pagination": "self.version",
  1147. "illuminate/pipeline": "self.version",
  1148. "illuminate/process": "self.version",
  1149. "illuminate/queue": "self.version",
  1150. "illuminate/redis": "self.version",
  1151. "illuminate/routing": "self.version",
  1152. "illuminate/session": "self.version",
  1153. "illuminate/support": "self.version",
  1154. "illuminate/testing": "self.version",
  1155. "illuminate/translation": "self.version",
  1156. "illuminate/validation": "self.version",
  1157. "illuminate/view": "self.version",
  1158. "spatie/once": "*"
  1159. },
  1160. "require-dev": {
  1161. "ably/ably-php": "^1.0",
  1162. "aws/aws-sdk-php": "^3.322.9",
  1163. "ext-gmp": "*",
  1164. "fakerphp/faker": "^1.24",
  1165. "guzzlehttp/promises": "^2.0.3",
  1166. "guzzlehttp/psr7": "^2.4",
  1167. "laravel/pint": "^1.18",
  1168. "league/flysystem-aws-s3-v3": "^3.25.1",
  1169. "league/flysystem-ftp": "^3.25.1",
  1170. "league/flysystem-path-prefixing": "^3.25.1",
  1171. "league/flysystem-read-only": "^3.25.1",
  1172. "league/flysystem-sftp-v3": "^3.25.1",
  1173. "mockery/mockery": "^1.6.10",
  1174. "orchestra/testbench-core": "^9.16.1",
  1175. "pda/pheanstalk": "^5.0.6",
  1176. "php-http/discovery": "^1.15",
  1177. "phpstan/phpstan": "^2.0",
  1178. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  1179. "predis/predis": "^2.3",
  1180. "resend/resend-php": "^0.10.0",
  1181. "symfony/cache": "^7.0.3",
  1182. "symfony/http-client": "^7.0.3",
  1183. "symfony/psr-http-message-bridge": "^7.0.3",
  1184. "symfony/translation": "^7.0.3"
  1185. },
  1186. "suggest": {
  1187. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1188. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  1189. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1190. "ext-apcu": "Required to use the APC cache driver.",
  1191. "ext-fileinfo": "Required to use the Filesystem class.",
  1192. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1193. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1194. "ext-memcached": "Required to use the memcache cache driver.",
  1195. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1196. "ext-pdo": "Required to use all database features.",
  1197. "ext-posix": "Required to use all features of the queue worker.",
  1198. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1199. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1200. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1201. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1202. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  1203. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  1204. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  1205. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  1206. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  1207. "mockery/mockery": "Required to use mocking (^1.6).",
  1208. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1209. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  1210. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  1211. "predis/predis": "Required to use the predis connector (^2.3).",
  1212. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1213. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1214. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1215. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1216. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1217. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1218. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1219. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1220. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1221. },
  1222. "type": "library",
  1223. "extra": {
  1224. "branch-alias": {
  1225. "dev-master": "11.x-dev"
  1226. }
  1227. },
  1228. "autoload": {
  1229. "files": [
  1230. "src/Illuminate/Collections/functions.php",
  1231. "src/Illuminate/Collections/helpers.php",
  1232. "src/Illuminate/Events/functions.php",
  1233. "src/Illuminate/Filesystem/functions.php",
  1234. "src/Illuminate/Foundation/helpers.php",
  1235. "src/Illuminate/Log/functions.php",
  1236. "src/Illuminate/Support/functions.php",
  1237. "src/Illuminate/Support/helpers.php"
  1238. ],
  1239. "psr-4": {
  1240. "Illuminate\\": "src/Illuminate/",
  1241. "Illuminate\\Support\\": [
  1242. "src/Illuminate/Macroable/",
  1243. "src/Illuminate/Collections/",
  1244. "src/Illuminate/Conditionable/"
  1245. ]
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "authors": [
  1253. {
  1254. "name": "Taylor Otwell",
  1255. "email": "taylor@laravel.com"
  1256. }
  1257. ],
  1258. "description": "The Laravel Framework.",
  1259. "homepage": "https://laravel.com",
  1260. "keywords": [
  1261. "framework",
  1262. "laravel"
  1263. ],
  1264. "support": {
  1265. "issues": "https://github.com/laravel/framework/issues",
  1266. "source": "https://github.com/laravel/framework"
  1267. },
  1268. "time": "2026-01-20T15:26:20+00:00"
  1269. },
  1270. {
  1271. "name": "laravel/prompts",
  1272. "version": "v0.3.11",
  1273. "source": {
  1274. "type": "git",
  1275. "url": "https://github.com/laravel/prompts.git",
  1276. "reference": "dd2a2ed95acacbcccd32fd98dee4c946ae7a7217"
  1277. },
  1278. "dist": {
  1279. "type": "zip",
  1280. "url": "https://api.github.com/repos/laravel/prompts/zipball/dd2a2ed95acacbcccd32fd98dee4c946ae7a7217",
  1281. "reference": "dd2a2ed95acacbcccd32fd98dee4c946ae7a7217",
  1282. "shasum": ""
  1283. },
  1284. "require": {
  1285. "composer-runtime-api": "^2.2",
  1286. "ext-mbstring": "*",
  1287. "php": "^8.1",
  1288. "symfony/console": "^6.2|^7.0"
  1289. },
  1290. "conflict": {
  1291. "illuminate/console": ">=10.17.0 <10.25.0",
  1292. "laravel/framework": ">=10.17.0 <10.25.0"
  1293. },
  1294. "require-dev": {
  1295. "illuminate/collections": "^10.0|^11.0|^12.0",
  1296. "mockery/mockery": "^1.5",
  1297. "pestphp/pest": "^2.3|^3.4|^4.0",
  1298. "phpstan/phpstan": "^1.12.28",
  1299. "phpstan/phpstan-mockery": "^1.1.3"
  1300. },
  1301. "suggest": {
  1302. "ext-pcntl": "Required for the spinner to be animated."
  1303. },
  1304. "type": "library",
  1305. "extra": {
  1306. "branch-alias": {
  1307. "dev-main": "0.3.x-dev"
  1308. }
  1309. },
  1310. "autoload": {
  1311. "files": [
  1312. "src/helpers.php"
  1313. ],
  1314. "psr-4": {
  1315. "Laravel\\Prompts\\": "src/"
  1316. }
  1317. },
  1318. "notification-url": "https://packagist.org/downloads/",
  1319. "license": [
  1320. "MIT"
  1321. ],
  1322. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1323. "support": {
  1324. "issues": "https://github.com/laravel/prompts/issues",
  1325. "source": "https://github.com/laravel/prompts/tree/v0.3.11"
  1326. },
  1327. "time": "2026-01-27T02:55:06+00:00"
  1328. },
  1329. {
  1330. "name": "laravel/serializable-closure",
  1331. "version": "v2.0.8",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/laravel/serializable-closure.git",
  1335. "reference": "7581a4407012f5f53365e11bafc520fd7f36bc9b"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/7581a4407012f5f53365e11bafc520fd7f36bc9b",
  1340. "reference": "7581a4407012f5f53365e11bafc520fd7f36bc9b",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": "^8.1"
  1345. },
  1346. "require-dev": {
  1347. "illuminate/support": "^10.0|^11.0|^12.0",
  1348. "nesbot/carbon": "^2.67|^3.0",
  1349. "pestphp/pest": "^2.36|^3.0|^4.0",
  1350. "phpstan/phpstan": "^2.0",
  1351. "symfony/var-dumper": "^6.2.0|^7.0.0"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "2.x-dev"
  1357. }
  1358. },
  1359. "autoload": {
  1360. "psr-4": {
  1361. "Laravel\\SerializableClosure\\": "src/"
  1362. }
  1363. },
  1364. "notification-url": "https://packagist.org/downloads/",
  1365. "license": [
  1366. "MIT"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Taylor Otwell",
  1371. "email": "taylor@laravel.com"
  1372. },
  1373. {
  1374. "name": "Nuno Maduro",
  1375. "email": "nuno@laravel.com"
  1376. }
  1377. ],
  1378. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1379. "keywords": [
  1380. "closure",
  1381. "laravel",
  1382. "serializable"
  1383. ],
  1384. "support": {
  1385. "issues": "https://github.com/laravel/serializable-closure/issues",
  1386. "source": "https://github.com/laravel/serializable-closure"
  1387. },
  1388. "time": "2026-01-08T16:22:46+00:00"
  1389. },
  1390. {
  1391. "name": "laravel/tinker",
  1392. "version": "v2.11.0",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/laravel/tinker.git",
  1396. "reference": "3d34b97c9a1747a81a3fde90482c092bd8b66468"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/laravel/tinker/zipball/3d34b97c9a1747a81a3fde90482c092bd8b66468",
  1401. "reference": "3d34b97c9a1747a81a3fde90482c092bd8b66468",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  1406. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  1407. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  1408. "php": "^7.2.5|^8.0",
  1409. "psy/psysh": "^0.11.1|^0.12.0",
  1410. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0|^8.0"
  1411. },
  1412. "require-dev": {
  1413. "mockery/mockery": "~1.3.3|^1.4.2",
  1414. "phpstan/phpstan": "^1.10",
  1415. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  1416. },
  1417. "suggest": {
  1418. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "laravel": {
  1423. "providers": [
  1424. "Laravel\\Tinker\\TinkerServiceProvider"
  1425. ]
  1426. }
  1427. },
  1428. "autoload": {
  1429. "psr-4": {
  1430. "Laravel\\Tinker\\": "src/"
  1431. }
  1432. },
  1433. "notification-url": "https://packagist.org/downloads/",
  1434. "license": [
  1435. "MIT"
  1436. ],
  1437. "authors": [
  1438. {
  1439. "name": "Taylor Otwell",
  1440. "email": "taylor@laravel.com"
  1441. }
  1442. ],
  1443. "description": "Powerful REPL for the Laravel framework.",
  1444. "keywords": [
  1445. "REPL",
  1446. "Tinker",
  1447. "laravel",
  1448. "psysh"
  1449. ],
  1450. "support": {
  1451. "issues": "https://github.com/laravel/tinker/issues",
  1452. "source": "https://github.com/laravel/tinker/tree/v2.11.0"
  1453. },
  1454. "time": "2025-12-19T19:16:45+00:00"
  1455. },
  1456. {
  1457. "name": "league/commonmark",
  1458. "version": "2.8.0",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/thephpleague/commonmark.git",
  1462. "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/4efa10c1e56488e658d10adf7b7b7dcd19940bfb",
  1467. "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "ext-mbstring": "*",
  1472. "league/config": "^1.1.1",
  1473. "php": "^7.4 || ^8.0",
  1474. "psr/event-dispatcher": "^1.0",
  1475. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1476. "symfony/polyfill-php80": "^1.16"
  1477. },
  1478. "require-dev": {
  1479. "cebe/markdown": "^1.0",
  1480. "commonmark/cmark": "0.31.1",
  1481. "commonmark/commonmark.js": "0.31.1",
  1482. "composer/package-versions-deprecated": "^1.8",
  1483. "embed/embed": "^4.4",
  1484. "erusev/parsedown": "^1.0",
  1485. "ext-json": "*",
  1486. "github/gfm": "0.29.0",
  1487. "michelf/php-markdown": "^1.4 || ^2.0",
  1488. "nyholm/psr7": "^1.5",
  1489. "phpstan/phpstan": "^1.8.2",
  1490. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1491. "scrutinizer/ocular": "^1.8.1",
  1492. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  1493. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  1494. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  1495. "unleashedtech/php-coding-standard": "^3.1.1",
  1496. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  1497. },
  1498. "suggest": {
  1499. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1500. },
  1501. "type": "library",
  1502. "extra": {
  1503. "branch-alias": {
  1504. "dev-main": "2.9-dev"
  1505. }
  1506. },
  1507. "autoload": {
  1508. "psr-4": {
  1509. "League\\CommonMark\\": "src"
  1510. }
  1511. },
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "BSD-3-Clause"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Colin O'Dell",
  1519. "email": "colinodell@gmail.com",
  1520. "homepage": "https://www.colinodell.com",
  1521. "role": "Lead Developer"
  1522. }
  1523. ],
  1524. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1525. "homepage": "https://commonmark.thephpleague.com",
  1526. "keywords": [
  1527. "commonmark",
  1528. "flavored",
  1529. "gfm",
  1530. "github",
  1531. "github-flavored",
  1532. "markdown",
  1533. "md",
  1534. "parser"
  1535. ],
  1536. "support": {
  1537. "docs": "https://commonmark.thephpleague.com/",
  1538. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1539. "issues": "https://github.com/thephpleague/commonmark/issues",
  1540. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1541. "source": "https://github.com/thephpleague/commonmark"
  1542. },
  1543. "funding": [
  1544. {
  1545. "url": "https://www.colinodell.com/sponsor",
  1546. "type": "custom"
  1547. },
  1548. {
  1549. "url": "https://www.paypal.me/colinpodell/10.00",
  1550. "type": "custom"
  1551. },
  1552. {
  1553. "url": "https://github.com/colinodell",
  1554. "type": "github"
  1555. },
  1556. {
  1557. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1558. "type": "tidelift"
  1559. }
  1560. ],
  1561. "time": "2025-11-26T21:48:24+00:00"
  1562. },
  1563. {
  1564. "name": "league/config",
  1565. "version": "v1.2.0",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/thephpleague/config.git",
  1569. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1574. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "dflydev/dot-access-data": "^3.0.1",
  1579. "nette/schema": "^1.2",
  1580. "php": "^7.4 || ^8.0"
  1581. },
  1582. "require-dev": {
  1583. "phpstan/phpstan": "^1.8.2",
  1584. "phpunit/phpunit": "^9.5.5",
  1585. "scrutinizer/ocular": "^1.8.1",
  1586. "unleashedtech/php-coding-standard": "^3.1",
  1587. "vimeo/psalm": "^4.7.3"
  1588. },
  1589. "type": "library",
  1590. "extra": {
  1591. "branch-alias": {
  1592. "dev-main": "1.2-dev"
  1593. }
  1594. },
  1595. "autoload": {
  1596. "psr-4": {
  1597. "League\\Config\\": "src"
  1598. }
  1599. },
  1600. "notification-url": "https://packagist.org/downloads/",
  1601. "license": [
  1602. "BSD-3-Clause"
  1603. ],
  1604. "authors": [
  1605. {
  1606. "name": "Colin O'Dell",
  1607. "email": "colinodell@gmail.com",
  1608. "homepage": "https://www.colinodell.com",
  1609. "role": "Lead Developer"
  1610. }
  1611. ],
  1612. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1613. "homepage": "https://config.thephpleague.com",
  1614. "keywords": [
  1615. "array",
  1616. "config",
  1617. "configuration",
  1618. "dot",
  1619. "dot-access",
  1620. "nested",
  1621. "schema"
  1622. ],
  1623. "support": {
  1624. "docs": "https://config.thephpleague.com/",
  1625. "issues": "https://github.com/thephpleague/config/issues",
  1626. "rss": "https://github.com/thephpleague/config/releases.atom",
  1627. "source": "https://github.com/thephpleague/config"
  1628. },
  1629. "funding": [
  1630. {
  1631. "url": "https://www.colinodell.com/sponsor",
  1632. "type": "custom"
  1633. },
  1634. {
  1635. "url": "https://www.paypal.me/colinpodell/10.00",
  1636. "type": "custom"
  1637. },
  1638. {
  1639. "url": "https://github.com/colinodell",
  1640. "type": "github"
  1641. }
  1642. ],
  1643. "time": "2022-12-11T20:36:23+00:00"
  1644. },
  1645. {
  1646. "name": "league/flysystem",
  1647. "version": "3.31.0",
  1648. "source": {
  1649. "type": "git",
  1650. "url": "https://github.com/thephpleague/flysystem.git",
  1651. "reference": "1717e0b3642b0df65ecb0cc89cdd99fa840672ff"
  1652. },
  1653. "dist": {
  1654. "type": "zip",
  1655. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1717e0b3642b0df65ecb0cc89cdd99fa840672ff",
  1656. "reference": "1717e0b3642b0df65ecb0cc89cdd99fa840672ff",
  1657. "shasum": ""
  1658. },
  1659. "require": {
  1660. "league/flysystem-local": "^3.0.0",
  1661. "league/mime-type-detection": "^1.0.0",
  1662. "php": "^8.0.2"
  1663. },
  1664. "conflict": {
  1665. "async-aws/core": "<1.19.0",
  1666. "async-aws/s3": "<1.14.0",
  1667. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1668. "guzzlehttp/guzzle": "<7.0",
  1669. "guzzlehttp/ringphp": "<1.1.1",
  1670. "phpseclib/phpseclib": "3.0.15",
  1671. "symfony/http-client": "<5.2"
  1672. },
  1673. "require-dev": {
  1674. "async-aws/s3": "^1.5 || ^2.0",
  1675. "async-aws/simple-s3": "^1.1 || ^2.0",
  1676. "aws/aws-sdk-php": "^3.295.10",
  1677. "composer/semver": "^3.0",
  1678. "ext-fileinfo": "*",
  1679. "ext-ftp": "*",
  1680. "ext-mongodb": "^1.3|^2",
  1681. "ext-zip": "*",
  1682. "friendsofphp/php-cs-fixer": "^3.5",
  1683. "google/cloud-storage": "^1.23",
  1684. "guzzlehttp/psr7": "^2.6",
  1685. "microsoft/azure-storage-blob": "^1.1",
  1686. "mongodb/mongodb": "^1.2|^2",
  1687. "phpseclib/phpseclib": "^3.0.36",
  1688. "phpstan/phpstan": "^1.10",
  1689. "phpunit/phpunit": "^9.5.11|^10.0",
  1690. "sabre/dav": "^4.6.0"
  1691. },
  1692. "type": "library",
  1693. "autoload": {
  1694. "psr-4": {
  1695. "League\\Flysystem\\": "src"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Frank de Jonge",
  1705. "email": "info@frankdejonge.nl"
  1706. }
  1707. ],
  1708. "description": "File storage abstraction for PHP",
  1709. "keywords": [
  1710. "WebDAV",
  1711. "aws",
  1712. "cloud",
  1713. "file",
  1714. "files",
  1715. "filesystem",
  1716. "filesystems",
  1717. "ftp",
  1718. "s3",
  1719. "sftp",
  1720. "storage"
  1721. ],
  1722. "support": {
  1723. "issues": "https://github.com/thephpleague/flysystem/issues",
  1724. "source": "https://github.com/thephpleague/flysystem/tree/3.31.0"
  1725. },
  1726. "time": "2026-01-23T15:38:47+00:00"
  1727. },
  1728. {
  1729. "name": "league/flysystem-local",
  1730. "version": "3.31.0",
  1731. "source": {
  1732. "type": "git",
  1733. "url": "https://github.com/thephpleague/flysystem-local.git",
  1734. "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079"
  1735. },
  1736. "dist": {
  1737. "type": "zip",
  1738. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079",
  1739. "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079",
  1740. "shasum": ""
  1741. },
  1742. "require": {
  1743. "ext-fileinfo": "*",
  1744. "league/flysystem": "^3.0.0",
  1745. "league/mime-type-detection": "^1.0.0",
  1746. "php": "^8.0.2"
  1747. },
  1748. "type": "library",
  1749. "autoload": {
  1750. "psr-4": {
  1751. "League\\Flysystem\\Local\\": ""
  1752. }
  1753. },
  1754. "notification-url": "https://packagist.org/downloads/",
  1755. "license": [
  1756. "MIT"
  1757. ],
  1758. "authors": [
  1759. {
  1760. "name": "Frank de Jonge",
  1761. "email": "info@frankdejonge.nl"
  1762. }
  1763. ],
  1764. "description": "Local filesystem adapter for Flysystem.",
  1765. "keywords": [
  1766. "Flysystem",
  1767. "file",
  1768. "files",
  1769. "filesystem",
  1770. "local"
  1771. ],
  1772. "support": {
  1773. "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0"
  1774. },
  1775. "time": "2026-01-23T15:30:45+00:00"
  1776. },
  1777. {
  1778. "name": "league/mime-type-detection",
  1779. "version": "1.16.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1783. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  1788. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "ext-fileinfo": "*",
  1793. "php": "^7.4 || ^8.0"
  1794. },
  1795. "require-dev": {
  1796. "friendsofphp/php-cs-fixer": "^3.2",
  1797. "phpstan/phpstan": "^0.12.68",
  1798. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1799. },
  1800. "type": "library",
  1801. "autoload": {
  1802. "psr-4": {
  1803. "League\\MimeTypeDetection\\": "src"
  1804. }
  1805. },
  1806. "notification-url": "https://packagist.org/downloads/",
  1807. "license": [
  1808. "MIT"
  1809. ],
  1810. "authors": [
  1811. {
  1812. "name": "Frank de Jonge",
  1813. "email": "info@frankdejonge.nl"
  1814. }
  1815. ],
  1816. "description": "Mime-type detection for Flysystem",
  1817. "support": {
  1818. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1819. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  1820. },
  1821. "funding": [
  1822. {
  1823. "url": "https://github.com/frankdejonge",
  1824. "type": "github"
  1825. },
  1826. {
  1827. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1828. "type": "tidelift"
  1829. }
  1830. ],
  1831. "time": "2024-09-21T08:32:55+00:00"
  1832. },
  1833. {
  1834. "name": "league/uri",
  1835. "version": "7.8.0",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/thephpleague/uri.git",
  1839. "reference": "4436c6ec8d458e4244448b069cc572d088230b76"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76",
  1844. "reference": "4436c6ec8d458e4244448b069cc572d088230b76",
  1845. "shasum": ""
  1846. },
  1847. "require": {
  1848. "league/uri-interfaces": "^7.8",
  1849. "php": "^8.1",
  1850. "psr/http-factory": "^1"
  1851. },
  1852. "conflict": {
  1853. "league/uri-schemes": "^1.0"
  1854. },
  1855. "suggest": {
  1856. "ext-bcmath": "to improve IPV4 host parsing",
  1857. "ext-dom": "to convert the URI into an HTML anchor tag",
  1858. "ext-fileinfo": "to create Data URI from file contennts",
  1859. "ext-gmp": "to improve IPV4 host parsing",
  1860. "ext-intl": "to handle IDN host with the best performance",
  1861. "ext-uri": "to use the PHP native URI class",
  1862. "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
  1863. "league/uri-components": "to provide additional tools to manipulate URI objects components",
  1864. "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
  1865. "php-64bit": "to improve IPV4 host parsing",
  1866. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  1867. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "7.x-dev"
  1873. }
  1874. },
  1875. "autoload": {
  1876. "psr-4": {
  1877. "League\\Uri\\": ""
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Ignace Nyamagana Butera",
  1887. "email": "nyamsprod@gmail.com",
  1888. "homepage": "https://nyamsprod.com"
  1889. }
  1890. ],
  1891. "description": "URI manipulation library",
  1892. "homepage": "https://uri.thephpleague.com",
  1893. "keywords": [
  1894. "URN",
  1895. "data-uri",
  1896. "file-uri",
  1897. "ftp",
  1898. "hostname",
  1899. "http",
  1900. "https",
  1901. "middleware",
  1902. "parse_str",
  1903. "parse_url",
  1904. "psr-7",
  1905. "query-string",
  1906. "querystring",
  1907. "rfc2141",
  1908. "rfc3986",
  1909. "rfc3987",
  1910. "rfc6570",
  1911. "rfc8141",
  1912. "uri",
  1913. "uri-template",
  1914. "url",
  1915. "ws"
  1916. ],
  1917. "support": {
  1918. "docs": "https://uri.thephpleague.com",
  1919. "forum": "https://thephpleague.slack.com",
  1920. "issues": "https://github.com/thephpleague/uri-src/issues",
  1921. "source": "https://github.com/thephpleague/uri/tree/7.8.0"
  1922. },
  1923. "funding": [
  1924. {
  1925. "url": "https://github.com/sponsors/nyamsprod",
  1926. "type": "github"
  1927. }
  1928. ],
  1929. "time": "2026-01-14T17:24:56+00:00"
  1930. },
  1931. {
  1932. "name": "league/uri-interfaces",
  1933. "version": "7.8.0",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1937. "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4",
  1942. "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "ext-filter": "*",
  1947. "php": "^8.1",
  1948. "psr/http-message": "^1.1 || ^2.0"
  1949. },
  1950. "suggest": {
  1951. "ext-bcmath": "to improve IPV4 host parsing",
  1952. "ext-gmp": "to improve IPV4 host parsing",
  1953. "ext-intl": "to handle IDN host with the best performance",
  1954. "php-64bit": "to improve IPV4 host parsing",
  1955. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  1956. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "7.x-dev"
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-4": {
  1966. "League\\Uri\\": ""
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "Ignace Nyamagana Butera",
  1976. "email": "nyamsprod@gmail.com",
  1977. "homepage": "https://nyamsprod.com"
  1978. }
  1979. ],
  1980. "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI",
  1981. "homepage": "https://uri.thephpleague.com",
  1982. "keywords": [
  1983. "data-uri",
  1984. "file-uri",
  1985. "ftp",
  1986. "hostname",
  1987. "http",
  1988. "https",
  1989. "parse_str",
  1990. "parse_url",
  1991. "psr-7",
  1992. "query-string",
  1993. "querystring",
  1994. "rfc3986",
  1995. "rfc3987",
  1996. "rfc6570",
  1997. "uri",
  1998. "url",
  1999. "ws"
  2000. ],
  2001. "support": {
  2002. "docs": "https://uri.thephpleague.com",
  2003. "forum": "https://thephpleague.slack.com",
  2004. "issues": "https://github.com/thephpleague/uri-src/issues",
  2005. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.0"
  2006. },
  2007. "funding": [
  2008. {
  2009. "url": "https://github.com/sponsors/nyamsprod",
  2010. "type": "github"
  2011. }
  2012. ],
  2013. "time": "2026-01-15T06:54:53+00:00"
  2014. },
  2015. {
  2016. "name": "monolog/monolog",
  2017. "version": "3.10.0",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/Seldaek/monolog.git",
  2021. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  2026. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  2027. "shasum": ""
  2028. },
  2029. "require": {
  2030. "php": ">=8.1",
  2031. "psr/log": "^2.0 || ^3.0"
  2032. },
  2033. "provide": {
  2034. "psr/log-implementation": "3.0.0"
  2035. },
  2036. "require-dev": {
  2037. "aws/aws-sdk-php": "^3.0",
  2038. "doctrine/couchdb": "~1.0@dev",
  2039. "elasticsearch/elasticsearch": "^7 || ^8",
  2040. "ext-json": "*",
  2041. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2042. "guzzlehttp/guzzle": "^7.4.5",
  2043. "guzzlehttp/psr7": "^2.2",
  2044. "mongodb/mongodb": "^1.8 || ^2.0",
  2045. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2046. "php-console/php-console": "^3.1.8",
  2047. "phpstan/phpstan": "^2",
  2048. "phpstan/phpstan-deprecation-rules": "^2",
  2049. "phpstan/phpstan-strict-rules": "^2",
  2050. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2051. "predis/predis": "^1.1 || ^2",
  2052. "rollbar/rollbar": "^4.0",
  2053. "ruflin/elastica": "^7 || ^8",
  2054. "symfony/mailer": "^5.4 || ^6",
  2055. "symfony/mime": "^5.4 || ^6"
  2056. },
  2057. "suggest": {
  2058. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2059. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2060. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2061. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2062. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2063. "ext-mbstring": "Allow to work properly with unicode symbols",
  2064. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2065. "ext-openssl": "Required to send log messages using SSL",
  2066. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2067. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2068. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2069. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2070. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2071. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2072. },
  2073. "type": "library",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-main": "3.x-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Monolog\\": "src/Monolog"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Jordi Boggiano",
  2091. "email": "j.boggiano@seld.be",
  2092. "homepage": "https://seld.be"
  2093. }
  2094. ],
  2095. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2096. "homepage": "https://github.com/Seldaek/monolog",
  2097. "keywords": [
  2098. "log",
  2099. "logging",
  2100. "psr-3"
  2101. ],
  2102. "support": {
  2103. "issues": "https://github.com/Seldaek/monolog/issues",
  2104. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  2105. },
  2106. "funding": [
  2107. {
  2108. "url": "https://github.com/Seldaek",
  2109. "type": "github"
  2110. },
  2111. {
  2112. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2113. "type": "tidelift"
  2114. }
  2115. ],
  2116. "time": "2026-01-02T08:56:05+00:00"
  2117. },
  2118. {
  2119. "name": "nesbot/carbon",
  2120. "version": "3.11.1",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://github.com/CarbonPHP/carbon.git",
  2124. "reference": "f438fcc98f92babee98381d399c65336f3a3827f"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/f438fcc98f92babee98381d399c65336f3a3827f",
  2129. "reference": "f438fcc98f92babee98381d399c65336f3a3827f",
  2130. "shasum": ""
  2131. },
  2132. "require": {
  2133. "carbonphp/carbon-doctrine-types": "<100.0",
  2134. "ext-json": "*",
  2135. "php": "^8.1",
  2136. "psr/clock": "^1.0",
  2137. "symfony/clock": "^6.3.12 || ^7.0 || ^8.0",
  2138. "symfony/polyfill-mbstring": "^1.0",
  2139. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0"
  2140. },
  2141. "provide": {
  2142. "psr/clock-implementation": "1.0"
  2143. },
  2144. "require-dev": {
  2145. "doctrine/dbal": "^3.6.3 || ^4.0",
  2146. "doctrine/orm": "^2.15.2 || ^3.0",
  2147. "friendsofphp/php-cs-fixer": "^v3.87.1",
  2148. "kylekatarnls/multi-tester": "^2.5.3",
  2149. "phpmd/phpmd": "^2.15.0",
  2150. "phpstan/extension-installer": "^1.4.3",
  2151. "phpstan/phpstan": "^2.1.22",
  2152. "phpunit/phpunit": "^10.5.53",
  2153. "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0"
  2154. },
  2155. "bin": [
  2156. "bin/carbon"
  2157. ],
  2158. "type": "library",
  2159. "extra": {
  2160. "laravel": {
  2161. "providers": [
  2162. "Carbon\\Laravel\\ServiceProvider"
  2163. ]
  2164. },
  2165. "phpstan": {
  2166. "includes": [
  2167. "extension.neon"
  2168. ]
  2169. },
  2170. "branch-alias": {
  2171. "dev-2.x": "2.x-dev",
  2172. "dev-master": "3.x-dev"
  2173. }
  2174. },
  2175. "autoload": {
  2176. "psr-4": {
  2177. "Carbon\\": "src/Carbon/"
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "Brian Nesbitt",
  2187. "email": "brian@nesbot.com",
  2188. "homepage": "https://markido.com"
  2189. },
  2190. {
  2191. "name": "kylekatarnls",
  2192. "homepage": "https://github.com/kylekatarnls"
  2193. }
  2194. ],
  2195. "description": "An API extension for DateTime that supports 281 different languages.",
  2196. "homepage": "https://carbonphp.github.io/carbon/",
  2197. "keywords": [
  2198. "date",
  2199. "datetime",
  2200. "time"
  2201. ],
  2202. "support": {
  2203. "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html",
  2204. "issues": "https://github.com/CarbonPHP/carbon/issues",
  2205. "source": "https://github.com/CarbonPHP/carbon"
  2206. },
  2207. "funding": [
  2208. {
  2209. "url": "https://github.com/sponsors/kylekatarnls",
  2210. "type": "github"
  2211. },
  2212. {
  2213. "url": "https://opencollective.com/Carbon#sponsor",
  2214. "type": "opencollective"
  2215. },
  2216. {
  2217. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2218. "type": "tidelift"
  2219. }
  2220. ],
  2221. "time": "2026-01-29T09:26:29+00:00"
  2222. },
  2223. {
  2224. "name": "nette/schema",
  2225. "version": "v1.3.3",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://github.com/nette/schema.git",
  2229. "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004",
  2234. "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004",
  2235. "shasum": ""
  2236. },
  2237. "require": {
  2238. "nette/utils": "^4.0",
  2239. "php": "8.1 - 8.5"
  2240. },
  2241. "require-dev": {
  2242. "nette/tester": "^2.5.2",
  2243. "phpstan/phpstan-nette": "^2.0@stable",
  2244. "tracy/tracy": "^2.8"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "branch-alias": {
  2249. "dev-master": "1.3-dev"
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-4": {
  2254. "Nette\\": "src"
  2255. },
  2256. "classmap": [
  2257. "src/"
  2258. ]
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "BSD-3-Clause",
  2263. "GPL-2.0-only",
  2264. "GPL-3.0-only"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "David Grudl",
  2269. "homepage": "https://davidgrudl.com"
  2270. },
  2271. {
  2272. "name": "Nette Community",
  2273. "homepage": "https://nette.org/contributors"
  2274. }
  2275. ],
  2276. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2277. "homepage": "https://nette.org",
  2278. "keywords": [
  2279. "config",
  2280. "nette"
  2281. ],
  2282. "support": {
  2283. "issues": "https://github.com/nette/schema/issues",
  2284. "source": "https://github.com/nette/schema/tree/v1.3.3"
  2285. },
  2286. "time": "2025-10-30T22:57:59+00:00"
  2287. },
  2288. {
  2289. "name": "nette/utils",
  2290. "version": "v4.1.1",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://github.com/nette/utils.git",
  2294. "reference": "c99059c0315591f1a0db7ad6002000288ab8dc72"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://api.github.com/repos/nette/utils/zipball/c99059c0315591f1a0db7ad6002000288ab8dc72",
  2299. "reference": "c99059c0315591f1a0db7ad6002000288ab8dc72",
  2300. "shasum": ""
  2301. },
  2302. "require": {
  2303. "php": "8.2 - 8.5"
  2304. },
  2305. "conflict": {
  2306. "nette/finder": "<3",
  2307. "nette/schema": "<1.2.2"
  2308. },
  2309. "require-dev": {
  2310. "jetbrains/phpstorm-attributes": "^1.2",
  2311. "nette/tester": "^2.5",
  2312. "phpstan/phpstan-nette": "^2.0@stable",
  2313. "tracy/tracy": "^2.9"
  2314. },
  2315. "suggest": {
  2316. "ext-gd": "to use Image",
  2317. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2318. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2319. "ext-json": "to use Nette\\Utils\\Json",
  2320. "ext-mbstring": "to use Strings::lower() etc...",
  2321. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2322. },
  2323. "type": "library",
  2324. "extra": {
  2325. "branch-alias": {
  2326. "dev-master": "4.1-dev"
  2327. }
  2328. },
  2329. "autoload": {
  2330. "psr-4": {
  2331. "Nette\\": "src"
  2332. },
  2333. "classmap": [
  2334. "src/"
  2335. ]
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "BSD-3-Clause",
  2340. "GPL-2.0-only",
  2341. "GPL-3.0-only"
  2342. ],
  2343. "authors": [
  2344. {
  2345. "name": "David Grudl",
  2346. "homepage": "https://davidgrudl.com"
  2347. },
  2348. {
  2349. "name": "Nette Community",
  2350. "homepage": "https://nette.org/contributors"
  2351. }
  2352. ],
  2353. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2354. "homepage": "https://nette.org",
  2355. "keywords": [
  2356. "array",
  2357. "core",
  2358. "datetime",
  2359. "images",
  2360. "json",
  2361. "nette",
  2362. "paginator",
  2363. "password",
  2364. "slugify",
  2365. "string",
  2366. "unicode",
  2367. "utf-8",
  2368. "utility",
  2369. "validation"
  2370. ],
  2371. "support": {
  2372. "issues": "https://github.com/nette/utils/issues",
  2373. "source": "https://github.com/nette/utils/tree/v4.1.1"
  2374. },
  2375. "time": "2025-12-22T12:14:32+00:00"
  2376. },
  2377. {
  2378. "name": "nikic/php-parser",
  2379. "version": "v5.7.0",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/nikic/PHP-Parser.git",
  2383. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  2388. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "ext-ctype": "*",
  2393. "ext-json": "*",
  2394. "ext-tokenizer": "*",
  2395. "php": ">=7.4"
  2396. },
  2397. "require-dev": {
  2398. "ircmaxell/php-yacc": "^0.0.7",
  2399. "phpunit/phpunit": "^9.0"
  2400. },
  2401. "bin": [
  2402. "bin/php-parse"
  2403. ],
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "5.x-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "PhpParser\\": "lib/PhpParser"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "BSD-3-Clause"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Nikita Popov"
  2422. }
  2423. ],
  2424. "description": "A PHP parser written in PHP",
  2425. "keywords": [
  2426. "parser",
  2427. "php"
  2428. ],
  2429. "support": {
  2430. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2431. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  2432. },
  2433. "time": "2025-12-06T11:56:16+00:00"
  2434. },
  2435. {
  2436. "name": "nunomaduro/termwind",
  2437. "version": "v2.3.3",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/nunomaduro/termwind.git",
  2441. "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/6fb2a640ff502caace8e05fd7be3b503a7e1c017",
  2446. "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017",
  2447. "shasum": ""
  2448. },
  2449. "require": {
  2450. "ext-mbstring": "*",
  2451. "php": "^8.2",
  2452. "symfony/console": "^7.3.6"
  2453. },
  2454. "require-dev": {
  2455. "illuminate/console": "^11.46.1",
  2456. "laravel/pint": "^1.25.1",
  2457. "mockery/mockery": "^1.6.12",
  2458. "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.1.3",
  2459. "phpstan/phpstan": "^1.12.32",
  2460. "phpstan/phpstan-strict-rules": "^1.6.2",
  2461. "symfony/var-dumper": "^7.3.5",
  2462. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2463. },
  2464. "type": "library",
  2465. "extra": {
  2466. "laravel": {
  2467. "providers": [
  2468. "Termwind\\Laravel\\TermwindServiceProvider"
  2469. ]
  2470. },
  2471. "branch-alias": {
  2472. "dev-2.x": "2.x-dev"
  2473. }
  2474. },
  2475. "autoload": {
  2476. "files": [
  2477. "src/Functions.php"
  2478. ],
  2479. "psr-4": {
  2480. "Termwind\\": "src/"
  2481. }
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "MIT"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "Nuno Maduro",
  2490. "email": "enunomaduro@gmail.com"
  2491. }
  2492. ],
  2493. "description": "Its like Tailwind CSS, but for the console.",
  2494. "keywords": [
  2495. "cli",
  2496. "console",
  2497. "css",
  2498. "package",
  2499. "php",
  2500. "style"
  2501. ],
  2502. "support": {
  2503. "issues": "https://github.com/nunomaduro/termwind/issues",
  2504. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.3"
  2505. },
  2506. "funding": [
  2507. {
  2508. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2509. "type": "custom"
  2510. },
  2511. {
  2512. "url": "https://github.com/nunomaduro",
  2513. "type": "github"
  2514. },
  2515. {
  2516. "url": "https://github.com/xiCO2k",
  2517. "type": "github"
  2518. }
  2519. ],
  2520. "time": "2025-11-20T02:34:59+00:00"
  2521. },
  2522. {
  2523. "name": "phpoption/phpoption",
  2524. "version": "1.9.5",
  2525. "source": {
  2526. "type": "git",
  2527. "url": "https://github.com/schmittjoh/php-option.git",
  2528. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
  2529. },
  2530. "dist": {
  2531. "type": "zip",
  2532. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
  2533. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  2534. "shasum": ""
  2535. },
  2536. "require": {
  2537. "php": "^7.2.5 || ^8.0"
  2538. },
  2539. "require-dev": {
  2540. "bamarni/composer-bin-plugin": "^1.8.2",
  2541. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  2542. },
  2543. "type": "library",
  2544. "extra": {
  2545. "bamarni-bin": {
  2546. "bin-links": true,
  2547. "forward-command": false
  2548. },
  2549. "branch-alias": {
  2550. "dev-master": "1.9-dev"
  2551. }
  2552. },
  2553. "autoload": {
  2554. "psr-4": {
  2555. "PhpOption\\": "src/PhpOption/"
  2556. }
  2557. },
  2558. "notification-url": "https://packagist.org/downloads/",
  2559. "license": [
  2560. "Apache-2.0"
  2561. ],
  2562. "authors": [
  2563. {
  2564. "name": "Johannes M. Schmitt",
  2565. "email": "schmittjoh@gmail.com",
  2566. "homepage": "https://github.com/schmittjoh"
  2567. },
  2568. {
  2569. "name": "Graham Campbell",
  2570. "email": "hello@gjcampbell.co.uk",
  2571. "homepage": "https://github.com/GrahamCampbell"
  2572. }
  2573. ],
  2574. "description": "Option Type for PHP",
  2575. "keywords": [
  2576. "language",
  2577. "option",
  2578. "php",
  2579. "type"
  2580. ],
  2581. "support": {
  2582. "issues": "https://github.com/schmittjoh/php-option/issues",
  2583. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  2584. },
  2585. "funding": [
  2586. {
  2587. "url": "https://github.com/GrahamCampbell",
  2588. "type": "github"
  2589. },
  2590. {
  2591. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2592. "type": "tidelift"
  2593. }
  2594. ],
  2595. "time": "2025-12-27T19:41:33+00:00"
  2596. },
  2597. {
  2598. "name": "psr/clock",
  2599. "version": "1.0.0",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/php-fig/clock.git",
  2603. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2608. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2609. "shasum": ""
  2610. },
  2611. "require": {
  2612. "php": "^7.0 || ^8.0"
  2613. },
  2614. "type": "library",
  2615. "autoload": {
  2616. "psr-4": {
  2617. "Psr\\Clock\\": "src/"
  2618. }
  2619. },
  2620. "notification-url": "https://packagist.org/downloads/",
  2621. "license": [
  2622. "MIT"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "PHP-FIG",
  2627. "homepage": "https://www.php-fig.org/"
  2628. }
  2629. ],
  2630. "description": "Common interface for reading the clock.",
  2631. "homepage": "https://github.com/php-fig/clock",
  2632. "keywords": [
  2633. "clock",
  2634. "now",
  2635. "psr",
  2636. "psr-20",
  2637. "time"
  2638. ],
  2639. "support": {
  2640. "issues": "https://github.com/php-fig/clock/issues",
  2641. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2642. },
  2643. "time": "2022-11-25T14:36:26+00:00"
  2644. },
  2645. {
  2646. "name": "psr/container",
  2647. "version": "2.0.2",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/php-fig/container.git",
  2651. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2656. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": ">=7.4.0"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "2.0.x-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Psr\\Container\\": "src/"
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "PHP-FIG",
  2680. "homepage": "https://www.php-fig.org/"
  2681. }
  2682. ],
  2683. "description": "Common Container Interface (PHP FIG PSR-11)",
  2684. "homepage": "https://github.com/php-fig/container",
  2685. "keywords": [
  2686. "PSR-11",
  2687. "container",
  2688. "container-interface",
  2689. "container-interop",
  2690. "psr"
  2691. ],
  2692. "support": {
  2693. "issues": "https://github.com/php-fig/container/issues",
  2694. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2695. },
  2696. "time": "2021-11-05T16:47:00+00:00"
  2697. },
  2698. {
  2699. "name": "psr/event-dispatcher",
  2700. "version": "1.0.0",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://github.com/php-fig/event-dispatcher.git",
  2704. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2709. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2710. "shasum": ""
  2711. },
  2712. "require": {
  2713. "php": ">=7.2.0"
  2714. },
  2715. "type": "library",
  2716. "extra": {
  2717. "branch-alias": {
  2718. "dev-master": "1.0.x-dev"
  2719. }
  2720. },
  2721. "autoload": {
  2722. "psr-4": {
  2723. "Psr\\EventDispatcher\\": "src/"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "PHP-FIG",
  2733. "homepage": "http://www.php-fig.org/"
  2734. }
  2735. ],
  2736. "description": "Standard interfaces for event handling.",
  2737. "keywords": [
  2738. "events",
  2739. "psr",
  2740. "psr-14"
  2741. ],
  2742. "support": {
  2743. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2744. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2745. },
  2746. "time": "2019-01-08T18:20:26+00:00"
  2747. },
  2748. {
  2749. "name": "psr/http-client",
  2750. "version": "1.0.3",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://github.com/php-fig/http-client.git",
  2754. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2759. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2760. "shasum": ""
  2761. },
  2762. "require": {
  2763. "php": "^7.0 || ^8.0",
  2764. "psr/http-message": "^1.0 || ^2.0"
  2765. },
  2766. "type": "library",
  2767. "extra": {
  2768. "branch-alias": {
  2769. "dev-master": "1.0.x-dev"
  2770. }
  2771. },
  2772. "autoload": {
  2773. "psr-4": {
  2774. "Psr\\Http\\Client\\": "src/"
  2775. }
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "PHP-FIG",
  2784. "homepage": "https://www.php-fig.org/"
  2785. }
  2786. ],
  2787. "description": "Common interface for HTTP clients",
  2788. "homepage": "https://github.com/php-fig/http-client",
  2789. "keywords": [
  2790. "http",
  2791. "http-client",
  2792. "psr",
  2793. "psr-18"
  2794. ],
  2795. "support": {
  2796. "source": "https://github.com/php-fig/http-client"
  2797. },
  2798. "time": "2023-09-23T14:17:50+00:00"
  2799. },
  2800. {
  2801. "name": "psr/http-factory",
  2802. "version": "1.1.0",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/php-fig/http-factory.git",
  2806. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2811. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2812. "shasum": ""
  2813. },
  2814. "require": {
  2815. "php": ">=7.1",
  2816. "psr/http-message": "^1.0 || ^2.0"
  2817. },
  2818. "type": "library",
  2819. "extra": {
  2820. "branch-alias": {
  2821. "dev-master": "1.0.x-dev"
  2822. }
  2823. },
  2824. "autoload": {
  2825. "psr-4": {
  2826. "Psr\\Http\\Message\\": "src/"
  2827. }
  2828. },
  2829. "notification-url": "https://packagist.org/downloads/",
  2830. "license": [
  2831. "MIT"
  2832. ],
  2833. "authors": [
  2834. {
  2835. "name": "PHP-FIG",
  2836. "homepage": "https://www.php-fig.org/"
  2837. }
  2838. ],
  2839. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2840. "keywords": [
  2841. "factory",
  2842. "http",
  2843. "message",
  2844. "psr",
  2845. "psr-17",
  2846. "psr-7",
  2847. "request",
  2848. "response"
  2849. ],
  2850. "support": {
  2851. "source": "https://github.com/php-fig/http-factory"
  2852. },
  2853. "time": "2024-04-15T12:06:14+00:00"
  2854. },
  2855. {
  2856. "name": "psr/http-message",
  2857. "version": "2.0",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/php-fig/http-message.git",
  2861. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2866. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "php": "^7.2 || ^8.0"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "2.0.x-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "psr-4": {
  2880. "Psr\\Http\\Message\\": "src/"
  2881. }
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "MIT"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "PHP-FIG",
  2890. "homepage": "https://www.php-fig.org/"
  2891. }
  2892. ],
  2893. "description": "Common interface for HTTP messages",
  2894. "homepage": "https://github.com/php-fig/http-message",
  2895. "keywords": [
  2896. "http",
  2897. "http-message",
  2898. "psr",
  2899. "psr-7",
  2900. "request",
  2901. "response"
  2902. ],
  2903. "support": {
  2904. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2905. },
  2906. "time": "2023-04-04T09:54:51+00:00"
  2907. },
  2908. {
  2909. "name": "psr/log",
  2910. "version": "3.0.2",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://github.com/php-fig/log.git",
  2914. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2919. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2920. "shasum": ""
  2921. },
  2922. "require": {
  2923. "php": ">=8.0.0"
  2924. },
  2925. "type": "library",
  2926. "extra": {
  2927. "branch-alias": {
  2928. "dev-master": "3.x-dev"
  2929. }
  2930. },
  2931. "autoload": {
  2932. "psr-4": {
  2933. "Psr\\Log\\": "src"
  2934. }
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "PHP-FIG",
  2943. "homepage": "https://www.php-fig.org/"
  2944. }
  2945. ],
  2946. "description": "Common interface for logging libraries",
  2947. "homepage": "https://github.com/php-fig/log",
  2948. "keywords": [
  2949. "log",
  2950. "psr",
  2951. "psr-3"
  2952. ],
  2953. "support": {
  2954. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2955. },
  2956. "time": "2024-09-11T13:17:53+00:00"
  2957. },
  2958. {
  2959. "name": "psr/simple-cache",
  2960. "version": "3.0.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/php-fig/simple-cache.git",
  2964. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2969. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "php": ">=8.0.0"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-master": "3.0.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Psr\\SimpleCache\\": "src/"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "PHP-FIG",
  2993. "homepage": "https://www.php-fig.org/"
  2994. }
  2995. ],
  2996. "description": "Common interfaces for simple caching",
  2997. "keywords": [
  2998. "cache",
  2999. "caching",
  3000. "psr",
  3001. "psr-16",
  3002. "simple-cache"
  3003. ],
  3004. "support": {
  3005. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3006. },
  3007. "time": "2021-10-29T13:26:27+00:00"
  3008. },
  3009. {
  3010. "name": "psy/psysh",
  3011. "version": "v0.12.18",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/bobthecow/psysh.git",
  3015. "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ddff0ac01beddc251786fe70367cd8bbdb258196",
  3020. "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "ext-json": "*",
  3025. "ext-tokenizer": "*",
  3026. "nikic/php-parser": "^5.0 || ^4.0",
  3027. "php": "^8.0 || ^7.4",
  3028. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3029. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3030. },
  3031. "conflict": {
  3032. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3033. },
  3034. "require-dev": {
  3035. "bamarni/composer-bin-plugin": "^1.2",
  3036. "composer/class-map-generator": "^1.6"
  3037. },
  3038. "suggest": {
  3039. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  3040. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3041. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3042. },
  3043. "bin": [
  3044. "bin/psysh"
  3045. ],
  3046. "type": "library",
  3047. "extra": {
  3048. "bamarni-bin": {
  3049. "bin-links": false,
  3050. "forward-command": false
  3051. },
  3052. "branch-alias": {
  3053. "dev-main": "0.12.x-dev"
  3054. }
  3055. },
  3056. "autoload": {
  3057. "files": [
  3058. "src/functions.php"
  3059. ],
  3060. "psr-4": {
  3061. "Psy\\": "src/"
  3062. }
  3063. },
  3064. "notification-url": "https://packagist.org/downloads/",
  3065. "license": [
  3066. "MIT"
  3067. ],
  3068. "authors": [
  3069. {
  3070. "name": "Justin Hileman",
  3071. "email": "justin@justinhileman.info"
  3072. }
  3073. ],
  3074. "description": "An interactive shell for modern PHP.",
  3075. "homepage": "https://psysh.org",
  3076. "keywords": [
  3077. "REPL",
  3078. "console",
  3079. "interactive",
  3080. "shell"
  3081. ],
  3082. "support": {
  3083. "issues": "https://github.com/bobthecow/psysh/issues",
  3084. "source": "https://github.com/bobthecow/psysh/tree/v0.12.18"
  3085. },
  3086. "time": "2025-12-17T14:35:46+00:00"
  3087. },
  3088. {
  3089. "name": "ralouphie/getallheaders",
  3090. "version": "3.0.3",
  3091. "source": {
  3092. "type": "git",
  3093. "url": "https://github.com/ralouphie/getallheaders.git",
  3094. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3095. },
  3096. "dist": {
  3097. "type": "zip",
  3098. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3099. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3100. "shasum": ""
  3101. },
  3102. "require": {
  3103. "php": ">=5.6"
  3104. },
  3105. "require-dev": {
  3106. "php-coveralls/php-coveralls": "^2.1",
  3107. "phpunit/phpunit": "^5 || ^6.5"
  3108. },
  3109. "type": "library",
  3110. "autoload": {
  3111. "files": [
  3112. "src/getallheaders.php"
  3113. ]
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Ralph Khattar",
  3122. "email": "ralph.khattar@gmail.com"
  3123. }
  3124. ],
  3125. "description": "A polyfill for getallheaders.",
  3126. "support": {
  3127. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3128. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3129. },
  3130. "time": "2019-03-08T08:55:37+00:00"
  3131. },
  3132. {
  3133. "name": "ramsey/collection",
  3134. "version": "2.1.1",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/ramsey/collection.git",
  3138. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  3143. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "php": "^8.1"
  3148. },
  3149. "require-dev": {
  3150. "captainhook/plugin-composer": "^5.3",
  3151. "ergebnis/composer-normalize": "^2.45",
  3152. "fakerphp/faker": "^1.24",
  3153. "hamcrest/hamcrest-php": "^2.0",
  3154. "jangregor/phpstan-prophecy": "^2.1",
  3155. "mockery/mockery": "^1.6",
  3156. "php-parallel-lint/php-console-highlighter": "^1.0",
  3157. "php-parallel-lint/php-parallel-lint": "^1.4",
  3158. "phpspec/prophecy-phpunit": "^2.3",
  3159. "phpstan/extension-installer": "^1.4",
  3160. "phpstan/phpstan": "^2.1",
  3161. "phpstan/phpstan-mockery": "^2.0",
  3162. "phpstan/phpstan-phpunit": "^2.0",
  3163. "phpunit/phpunit": "^10.5",
  3164. "ramsey/coding-standard": "^2.3",
  3165. "ramsey/conventional-commits": "^1.6",
  3166. "roave/security-advisories": "dev-latest"
  3167. },
  3168. "type": "library",
  3169. "extra": {
  3170. "captainhook": {
  3171. "force-install": true
  3172. },
  3173. "ramsey/conventional-commits": {
  3174. "configFile": "conventional-commits.json"
  3175. }
  3176. },
  3177. "autoload": {
  3178. "psr-4": {
  3179. "Ramsey\\Collection\\": "src/"
  3180. }
  3181. },
  3182. "notification-url": "https://packagist.org/downloads/",
  3183. "license": [
  3184. "MIT"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Ben Ramsey",
  3189. "email": "ben@benramsey.com",
  3190. "homepage": "https://benramsey.com"
  3191. }
  3192. ],
  3193. "description": "A PHP library for representing and manipulating collections.",
  3194. "keywords": [
  3195. "array",
  3196. "collection",
  3197. "hash",
  3198. "map",
  3199. "queue",
  3200. "set"
  3201. ],
  3202. "support": {
  3203. "issues": "https://github.com/ramsey/collection/issues",
  3204. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  3205. },
  3206. "time": "2025-03-22T05:38:12+00:00"
  3207. },
  3208. {
  3209. "name": "ramsey/uuid",
  3210. "version": "4.9.2",
  3211. "source": {
  3212. "type": "git",
  3213. "url": "https://github.com/ramsey/uuid.git",
  3214. "reference": "8429c78ca35a09f27565311b98101e2826affde0"
  3215. },
  3216. "dist": {
  3217. "type": "zip",
  3218. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
  3219. "reference": "8429c78ca35a09f27565311b98101e2826affde0",
  3220. "shasum": ""
  3221. },
  3222. "require": {
  3223. "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
  3224. "php": "^8.0",
  3225. "ramsey/collection": "^1.2 || ^2.0"
  3226. },
  3227. "replace": {
  3228. "rhumsaa/uuid": "self.version"
  3229. },
  3230. "require-dev": {
  3231. "captainhook/captainhook": "^5.25",
  3232. "captainhook/plugin-composer": "^5.3",
  3233. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  3234. "ergebnis/composer-normalize": "^2.47",
  3235. "mockery/mockery": "^1.6",
  3236. "paragonie/random-lib": "^2",
  3237. "php-mock/php-mock": "^2.6",
  3238. "php-mock/php-mock-mockery": "^1.5",
  3239. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  3240. "phpbench/phpbench": "^1.2.14",
  3241. "phpstan/extension-installer": "^1.4",
  3242. "phpstan/phpstan": "^2.1",
  3243. "phpstan/phpstan-mockery": "^2.0",
  3244. "phpstan/phpstan-phpunit": "^2.0",
  3245. "phpunit/phpunit": "^9.6",
  3246. "slevomat/coding-standard": "^8.18",
  3247. "squizlabs/php_codesniffer": "^3.13"
  3248. },
  3249. "suggest": {
  3250. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3251. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3252. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3253. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3254. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3255. },
  3256. "type": "library",
  3257. "extra": {
  3258. "captainhook": {
  3259. "force-install": true
  3260. }
  3261. },
  3262. "autoload": {
  3263. "files": [
  3264. "src/functions.php"
  3265. ],
  3266. "psr-4": {
  3267. "Ramsey\\Uuid\\": "src/"
  3268. }
  3269. },
  3270. "notification-url": "https://packagist.org/downloads/",
  3271. "license": [
  3272. "MIT"
  3273. ],
  3274. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3275. "keywords": [
  3276. "guid",
  3277. "identifier",
  3278. "uuid"
  3279. ],
  3280. "support": {
  3281. "issues": "https://github.com/ramsey/uuid/issues",
  3282. "source": "https://github.com/ramsey/uuid/tree/4.9.2"
  3283. },
  3284. "time": "2025-12-14T04:43:48+00:00"
  3285. },
  3286. {
  3287. "name": "symfony/clock",
  3288. "version": "v8.0.0",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/symfony/clock.git",
  3292. "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/symfony/clock/zipball/832119f9b8dbc6c8e6f65f30c5969eca1e88764f",
  3297. "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "php": ">=8.4",
  3302. "psr/clock": "^1.0"
  3303. },
  3304. "provide": {
  3305. "psr/clock-implementation": "1.0"
  3306. },
  3307. "type": "library",
  3308. "autoload": {
  3309. "files": [
  3310. "Resources/now.php"
  3311. ],
  3312. "psr-4": {
  3313. "Symfony\\Component\\Clock\\": ""
  3314. },
  3315. "exclude-from-classmap": [
  3316. "/Tests/"
  3317. ]
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "Nicolas Grekas",
  3326. "email": "p@tchwork.com"
  3327. },
  3328. {
  3329. "name": "Symfony Community",
  3330. "homepage": "https://symfony.com/contributors"
  3331. }
  3332. ],
  3333. "description": "Decouples applications from the system clock",
  3334. "homepage": "https://symfony.com",
  3335. "keywords": [
  3336. "clock",
  3337. "psr20",
  3338. "time"
  3339. ],
  3340. "support": {
  3341. "source": "https://github.com/symfony/clock/tree/v8.0.0"
  3342. },
  3343. "funding": [
  3344. {
  3345. "url": "https://symfony.com/sponsor",
  3346. "type": "custom"
  3347. },
  3348. {
  3349. "url": "https://github.com/fabpot",
  3350. "type": "github"
  3351. },
  3352. {
  3353. "url": "https://github.com/nicolas-grekas",
  3354. "type": "github"
  3355. },
  3356. {
  3357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3358. "type": "tidelift"
  3359. }
  3360. ],
  3361. "time": "2025-11-12T15:46:48+00:00"
  3362. },
  3363. {
  3364. "name": "symfony/console",
  3365. "version": "v7.4.4",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/symfony/console.git",
  3369. "reference": "41e38717ac1dd7a46b6bda7d6a82af2d98a78894"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/symfony/console/zipball/41e38717ac1dd7a46b6bda7d6a82af2d98a78894",
  3374. "reference": "41e38717ac1dd7a46b6bda7d6a82af2d98a78894",
  3375. "shasum": ""
  3376. },
  3377. "require": {
  3378. "php": ">=8.2",
  3379. "symfony/deprecation-contracts": "^2.5|^3",
  3380. "symfony/polyfill-mbstring": "~1.0",
  3381. "symfony/service-contracts": "^2.5|^3",
  3382. "symfony/string": "^7.2|^8.0"
  3383. },
  3384. "conflict": {
  3385. "symfony/dependency-injection": "<6.4",
  3386. "symfony/dotenv": "<6.4",
  3387. "symfony/event-dispatcher": "<6.4",
  3388. "symfony/lock": "<6.4",
  3389. "symfony/process": "<6.4"
  3390. },
  3391. "provide": {
  3392. "psr/log-implementation": "1.0|2.0|3.0"
  3393. },
  3394. "require-dev": {
  3395. "psr/log": "^1|^2|^3",
  3396. "symfony/config": "^6.4|^7.0|^8.0",
  3397. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3398. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3399. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3400. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3401. "symfony/lock": "^6.4|^7.0|^8.0",
  3402. "symfony/messenger": "^6.4|^7.0|^8.0",
  3403. "symfony/process": "^6.4|^7.0|^8.0",
  3404. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3405. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3406. },
  3407. "type": "library",
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Symfony\\Component\\Console\\": ""
  3411. },
  3412. "exclude-from-classmap": [
  3413. "/Tests/"
  3414. ]
  3415. },
  3416. "notification-url": "https://packagist.org/downloads/",
  3417. "license": [
  3418. "MIT"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Fabien Potencier",
  3423. "email": "fabien@symfony.com"
  3424. },
  3425. {
  3426. "name": "Symfony Community",
  3427. "homepage": "https://symfony.com/contributors"
  3428. }
  3429. ],
  3430. "description": "Eases the creation of beautiful and testable command line interfaces",
  3431. "homepage": "https://symfony.com",
  3432. "keywords": [
  3433. "cli",
  3434. "command-line",
  3435. "console",
  3436. "terminal"
  3437. ],
  3438. "support": {
  3439. "source": "https://github.com/symfony/console/tree/v7.4.4"
  3440. },
  3441. "funding": [
  3442. {
  3443. "url": "https://symfony.com/sponsor",
  3444. "type": "custom"
  3445. },
  3446. {
  3447. "url": "https://github.com/fabpot",
  3448. "type": "github"
  3449. },
  3450. {
  3451. "url": "https://github.com/nicolas-grekas",
  3452. "type": "github"
  3453. },
  3454. {
  3455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3456. "type": "tidelift"
  3457. }
  3458. ],
  3459. "time": "2026-01-13T11:36:38+00:00"
  3460. },
  3461. {
  3462. "name": "symfony/css-selector",
  3463. "version": "v8.0.0",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/symfony/css-selector.git",
  3467. "reference": "6225bd458c53ecdee056214cb4a2ffaf58bd592b"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://api.github.com/repos/symfony/css-selector/zipball/6225bd458c53ecdee056214cb4a2ffaf58bd592b",
  3472. "reference": "6225bd458c53ecdee056214cb4a2ffaf58bd592b",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": ">=8.4"
  3477. },
  3478. "type": "library",
  3479. "autoload": {
  3480. "psr-4": {
  3481. "Symfony\\Component\\CssSelector\\": ""
  3482. },
  3483. "exclude-from-classmap": [
  3484. "/Tests/"
  3485. ]
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Fabien Potencier",
  3494. "email": "fabien@symfony.com"
  3495. },
  3496. {
  3497. "name": "Jean-François Simon",
  3498. "email": "jeanfrancois.simon@sensiolabs.com"
  3499. },
  3500. {
  3501. "name": "Symfony Community",
  3502. "homepage": "https://symfony.com/contributors"
  3503. }
  3504. ],
  3505. "description": "Converts CSS selectors to XPath expressions",
  3506. "homepage": "https://symfony.com",
  3507. "support": {
  3508. "source": "https://github.com/symfony/css-selector/tree/v8.0.0"
  3509. },
  3510. "funding": [
  3511. {
  3512. "url": "https://symfony.com/sponsor",
  3513. "type": "custom"
  3514. },
  3515. {
  3516. "url": "https://github.com/fabpot",
  3517. "type": "github"
  3518. },
  3519. {
  3520. "url": "https://github.com/nicolas-grekas",
  3521. "type": "github"
  3522. },
  3523. {
  3524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3525. "type": "tidelift"
  3526. }
  3527. ],
  3528. "time": "2025-10-30T14:17:19+00:00"
  3529. },
  3530. {
  3531. "name": "symfony/deprecation-contracts",
  3532. "version": "v3.6.0",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/symfony/deprecation-contracts.git",
  3536. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3541. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "php": ">=8.1"
  3546. },
  3547. "type": "library",
  3548. "extra": {
  3549. "thanks": {
  3550. "url": "https://github.com/symfony/contracts",
  3551. "name": "symfony/contracts"
  3552. },
  3553. "branch-alias": {
  3554. "dev-main": "3.6-dev"
  3555. }
  3556. },
  3557. "autoload": {
  3558. "files": [
  3559. "function.php"
  3560. ]
  3561. },
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "MIT"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Nicolas Grekas",
  3569. "email": "p@tchwork.com"
  3570. },
  3571. {
  3572. "name": "Symfony Community",
  3573. "homepage": "https://symfony.com/contributors"
  3574. }
  3575. ],
  3576. "description": "A generic function and convention to trigger deprecation notices",
  3577. "homepage": "https://symfony.com",
  3578. "support": {
  3579. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  3580. },
  3581. "funding": [
  3582. {
  3583. "url": "https://symfony.com/sponsor",
  3584. "type": "custom"
  3585. },
  3586. {
  3587. "url": "https://github.com/fabpot",
  3588. "type": "github"
  3589. },
  3590. {
  3591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3592. "type": "tidelift"
  3593. }
  3594. ],
  3595. "time": "2024-09-25T14:21:43+00:00"
  3596. },
  3597. {
  3598. "name": "symfony/error-handler",
  3599. "version": "v7.4.4",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://github.com/symfony/error-handler.git",
  3603. "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8da531f364ddfee53e36092a7eebbbd0b775f6b8",
  3608. "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8",
  3609. "shasum": ""
  3610. },
  3611. "require": {
  3612. "php": ">=8.2",
  3613. "psr/log": "^1|^2|^3",
  3614. "symfony/polyfill-php85": "^1.32",
  3615. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3616. },
  3617. "conflict": {
  3618. "symfony/deprecation-contracts": "<2.5",
  3619. "symfony/http-kernel": "<6.4"
  3620. },
  3621. "require-dev": {
  3622. "symfony/console": "^6.4|^7.0|^8.0",
  3623. "symfony/deprecation-contracts": "^2.5|^3",
  3624. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3625. "symfony/serializer": "^6.4|^7.0|^8.0",
  3626. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  3627. },
  3628. "bin": [
  3629. "Resources/bin/patch-type-declarations"
  3630. ],
  3631. "type": "library",
  3632. "autoload": {
  3633. "psr-4": {
  3634. "Symfony\\Component\\ErrorHandler\\": ""
  3635. },
  3636. "exclude-from-classmap": [
  3637. "/Tests/"
  3638. ]
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "MIT"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "Fabien Potencier",
  3647. "email": "fabien@symfony.com"
  3648. },
  3649. {
  3650. "name": "Symfony Community",
  3651. "homepage": "https://symfony.com/contributors"
  3652. }
  3653. ],
  3654. "description": "Provides tools to manage errors and ease debugging PHP code",
  3655. "homepage": "https://symfony.com",
  3656. "support": {
  3657. "source": "https://github.com/symfony/error-handler/tree/v7.4.4"
  3658. },
  3659. "funding": [
  3660. {
  3661. "url": "https://symfony.com/sponsor",
  3662. "type": "custom"
  3663. },
  3664. {
  3665. "url": "https://github.com/fabpot",
  3666. "type": "github"
  3667. },
  3668. {
  3669. "url": "https://github.com/nicolas-grekas",
  3670. "type": "github"
  3671. },
  3672. {
  3673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3674. "type": "tidelift"
  3675. }
  3676. ],
  3677. "time": "2026-01-20T16:42:42+00:00"
  3678. },
  3679. {
  3680. "name": "symfony/event-dispatcher",
  3681. "version": "v8.0.4",
  3682. "source": {
  3683. "type": "git",
  3684. "url": "https://github.com/symfony/event-dispatcher.git",
  3685. "reference": "99301401da182b6cfaa4700dbe9987bb75474b47"
  3686. },
  3687. "dist": {
  3688. "type": "zip",
  3689. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99301401da182b6cfaa4700dbe9987bb75474b47",
  3690. "reference": "99301401da182b6cfaa4700dbe9987bb75474b47",
  3691. "shasum": ""
  3692. },
  3693. "require": {
  3694. "php": ">=8.4",
  3695. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3696. },
  3697. "conflict": {
  3698. "symfony/security-http": "<7.4",
  3699. "symfony/service-contracts": "<2.5"
  3700. },
  3701. "provide": {
  3702. "psr/event-dispatcher-implementation": "1.0",
  3703. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3704. },
  3705. "require-dev": {
  3706. "psr/log": "^1|^2|^3",
  3707. "symfony/config": "^7.4|^8.0",
  3708. "symfony/dependency-injection": "^7.4|^8.0",
  3709. "symfony/error-handler": "^7.4|^8.0",
  3710. "symfony/expression-language": "^7.4|^8.0",
  3711. "symfony/framework-bundle": "^7.4|^8.0",
  3712. "symfony/http-foundation": "^7.4|^8.0",
  3713. "symfony/service-contracts": "^2.5|^3",
  3714. "symfony/stopwatch": "^7.4|^8.0"
  3715. },
  3716. "type": "library",
  3717. "autoload": {
  3718. "psr-4": {
  3719. "Symfony\\Component\\EventDispatcher\\": ""
  3720. },
  3721. "exclude-from-classmap": [
  3722. "/Tests/"
  3723. ]
  3724. },
  3725. "notification-url": "https://packagist.org/downloads/",
  3726. "license": [
  3727. "MIT"
  3728. ],
  3729. "authors": [
  3730. {
  3731. "name": "Fabien Potencier",
  3732. "email": "fabien@symfony.com"
  3733. },
  3734. {
  3735. "name": "Symfony Community",
  3736. "homepage": "https://symfony.com/contributors"
  3737. }
  3738. ],
  3739. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3740. "homepage": "https://symfony.com",
  3741. "support": {
  3742. "source": "https://github.com/symfony/event-dispatcher/tree/v8.0.4"
  3743. },
  3744. "funding": [
  3745. {
  3746. "url": "https://symfony.com/sponsor",
  3747. "type": "custom"
  3748. },
  3749. {
  3750. "url": "https://github.com/fabpot",
  3751. "type": "github"
  3752. },
  3753. {
  3754. "url": "https://github.com/nicolas-grekas",
  3755. "type": "github"
  3756. },
  3757. {
  3758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3759. "type": "tidelift"
  3760. }
  3761. ],
  3762. "time": "2026-01-05T11:45:55+00:00"
  3763. },
  3764. {
  3765. "name": "symfony/event-dispatcher-contracts",
  3766. "version": "v3.6.0",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3770. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  3775. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  3776. "shasum": ""
  3777. },
  3778. "require": {
  3779. "php": ">=8.1",
  3780. "psr/event-dispatcher": "^1"
  3781. },
  3782. "type": "library",
  3783. "extra": {
  3784. "thanks": {
  3785. "url": "https://github.com/symfony/contracts",
  3786. "name": "symfony/contracts"
  3787. },
  3788. "branch-alias": {
  3789. "dev-main": "3.6-dev"
  3790. }
  3791. },
  3792. "autoload": {
  3793. "psr-4": {
  3794. "Symfony\\Contracts\\EventDispatcher\\": ""
  3795. }
  3796. },
  3797. "notification-url": "https://packagist.org/downloads/",
  3798. "license": [
  3799. "MIT"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "Nicolas Grekas",
  3804. "email": "p@tchwork.com"
  3805. },
  3806. {
  3807. "name": "Symfony Community",
  3808. "homepage": "https://symfony.com/contributors"
  3809. }
  3810. ],
  3811. "description": "Generic abstractions related to dispatching event",
  3812. "homepage": "https://symfony.com",
  3813. "keywords": [
  3814. "abstractions",
  3815. "contracts",
  3816. "decoupling",
  3817. "interfaces",
  3818. "interoperability",
  3819. "standards"
  3820. ],
  3821. "support": {
  3822. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  3823. },
  3824. "funding": [
  3825. {
  3826. "url": "https://symfony.com/sponsor",
  3827. "type": "custom"
  3828. },
  3829. {
  3830. "url": "https://github.com/fabpot",
  3831. "type": "github"
  3832. },
  3833. {
  3834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3835. "type": "tidelift"
  3836. }
  3837. ],
  3838. "time": "2024-09-25T14:21:43+00:00"
  3839. },
  3840. {
  3841. "name": "symfony/finder",
  3842. "version": "v7.4.5",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/symfony/finder.git",
  3846. "reference": "ad4daa7c38668dcb031e63bc99ea9bd42196a2cb"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/symfony/finder/zipball/ad4daa7c38668dcb031e63bc99ea9bd42196a2cb",
  3851. "reference": "ad4daa7c38668dcb031e63bc99ea9bd42196a2cb",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "php": ">=8.2"
  3856. },
  3857. "require-dev": {
  3858. "symfony/filesystem": "^6.4|^7.0|^8.0"
  3859. },
  3860. "type": "library",
  3861. "autoload": {
  3862. "psr-4": {
  3863. "Symfony\\Component\\Finder\\": ""
  3864. },
  3865. "exclude-from-classmap": [
  3866. "/Tests/"
  3867. ]
  3868. },
  3869. "notification-url": "https://packagist.org/downloads/",
  3870. "license": [
  3871. "MIT"
  3872. ],
  3873. "authors": [
  3874. {
  3875. "name": "Fabien Potencier",
  3876. "email": "fabien@symfony.com"
  3877. },
  3878. {
  3879. "name": "Symfony Community",
  3880. "homepage": "https://symfony.com/contributors"
  3881. }
  3882. ],
  3883. "description": "Finds files and directories via an intuitive fluent interface",
  3884. "homepage": "https://symfony.com",
  3885. "support": {
  3886. "source": "https://github.com/symfony/finder/tree/v7.4.5"
  3887. },
  3888. "funding": [
  3889. {
  3890. "url": "https://symfony.com/sponsor",
  3891. "type": "custom"
  3892. },
  3893. {
  3894. "url": "https://github.com/fabpot",
  3895. "type": "github"
  3896. },
  3897. {
  3898. "url": "https://github.com/nicolas-grekas",
  3899. "type": "github"
  3900. },
  3901. {
  3902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3903. "type": "tidelift"
  3904. }
  3905. ],
  3906. "time": "2026-01-26T15:07:59+00:00"
  3907. },
  3908. {
  3909. "name": "symfony/http-foundation",
  3910. "version": "v7.4.5",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/symfony/http-foundation.git",
  3914. "reference": "446d0db2b1f21575f1284b74533e425096abdfb6"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/446d0db2b1f21575f1284b74533e425096abdfb6",
  3919. "reference": "446d0db2b1f21575f1284b74533e425096abdfb6",
  3920. "shasum": ""
  3921. },
  3922. "require": {
  3923. "php": ">=8.2",
  3924. "symfony/deprecation-contracts": "^2.5|^3",
  3925. "symfony/polyfill-mbstring": "^1.1"
  3926. },
  3927. "conflict": {
  3928. "doctrine/dbal": "<3.6",
  3929. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  3930. },
  3931. "require-dev": {
  3932. "doctrine/dbal": "^3.6|^4",
  3933. "predis/predis": "^1.1|^2.0",
  3934. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  3935. "symfony/clock": "^6.4|^7.0|^8.0",
  3936. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3937. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3938. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3939. "symfony/mime": "^6.4|^7.0|^8.0",
  3940. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  3941. },
  3942. "type": "library",
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Symfony\\Component\\HttpFoundation\\": ""
  3946. },
  3947. "exclude-from-classmap": [
  3948. "/Tests/"
  3949. ]
  3950. },
  3951. "notification-url": "https://packagist.org/downloads/",
  3952. "license": [
  3953. "MIT"
  3954. ],
  3955. "authors": [
  3956. {
  3957. "name": "Fabien Potencier",
  3958. "email": "fabien@symfony.com"
  3959. },
  3960. {
  3961. "name": "Symfony Community",
  3962. "homepage": "https://symfony.com/contributors"
  3963. }
  3964. ],
  3965. "description": "Defines an object-oriented layer for the HTTP specification",
  3966. "homepage": "https://symfony.com",
  3967. "support": {
  3968. "source": "https://github.com/symfony/http-foundation/tree/v7.4.5"
  3969. },
  3970. "funding": [
  3971. {
  3972. "url": "https://symfony.com/sponsor",
  3973. "type": "custom"
  3974. },
  3975. {
  3976. "url": "https://github.com/fabpot",
  3977. "type": "github"
  3978. },
  3979. {
  3980. "url": "https://github.com/nicolas-grekas",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2026-01-27T16:16:02+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/http-kernel",
  3992. "version": "v7.4.5",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/http-kernel.git",
  3996. "reference": "229eda477017f92bd2ce7615d06222ec0c19e82a"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/229eda477017f92bd2ce7615d06222ec0c19e82a",
  4001. "reference": "229eda477017f92bd2ce7615d06222ec0c19e82a",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "php": ">=8.2",
  4006. "psr/log": "^1|^2|^3",
  4007. "symfony/deprecation-contracts": "^2.5|^3",
  4008. "symfony/error-handler": "^6.4|^7.0|^8.0",
  4009. "symfony/event-dispatcher": "^7.3|^8.0",
  4010. "symfony/http-foundation": "^7.4|^8.0",
  4011. "symfony/polyfill-ctype": "^1.8"
  4012. },
  4013. "conflict": {
  4014. "symfony/browser-kit": "<6.4",
  4015. "symfony/cache": "<6.4",
  4016. "symfony/config": "<6.4",
  4017. "symfony/console": "<6.4",
  4018. "symfony/dependency-injection": "<6.4",
  4019. "symfony/doctrine-bridge": "<6.4",
  4020. "symfony/flex": "<2.10",
  4021. "symfony/form": "<6.4",
  4022. "symfony/http-client": "<6.4",
  4023. "symfony/http-client-contracts": "<2.5",
  4024. "symfony/mailer": "<6.4",
  4025. "symfony/messenger": "<6.4",
  4026. "symfony/translation": "<6.4",
  4027. "symfony/translation-contracts": "<2.5",
  4028. "symfony/twig-bridge": "<6.4",
  4029. "symfony/validator": "<6.4",
  4030. "symfony/var-dumper": "<6.4",
  4031. "twig/twig": "<3.12"
  4032. },
  4033. "provide": {
  4034. "psr/log-implementation": "1.0|2.0|3.0"
  4035. },
  4036. "require-dev": {
  4037. "psr/cache": "^1.0|^2.0|^3.0",
  4038. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  4039. "symfony/clock": "^6.4|^7.0|^8.0",
  4040. "symfony/config": "^6.4|^7.0|^8.0",
  4041. "symfony/console": "^6.4|^7.0|^8.0",
  4042. "symfony/css-selector": "^6.4|^7.0|^8.0",
  4043. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4044. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  4045. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4046. "symfony/finder": "^6.4|^7.0|^8.0",
  4047. "symfony/http-client-contracts": "^2.5|^3",
  4048. "symfony/process": "^6.4|^7.0|^8.0",
  4049. "symfony/property-access": "^7.1|^8.0",
  4050. "symfony/routing": "^6.4|^7.0|^8.0",
  4051. "symfony/serializer": "^7.1|^8.0",
  4052. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  4053. "symfony/translation": "^6.4|^7.0|^8.0",
  4054. "symfony/translation-contracts": "^2.5|^3",
  4055. "symfony/uid": "^6.4|^7.0|^8.0",
  4056. "symfony/validator": "^6.4|^7.0|^8.0",
  4057. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  4058. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  4059. "twig/twig": "^3.12"
  4060. },
  4061. "type": "library",
  4062. "autoload": {
  4063. "psr-4": {
  4064. "Symfony\\Component\\HttpKernel\\": ""
  4065. },
  4066. "exclude-from-classmap": [
  4067. "/Tests/"
  4068. ]
  4069. },
  4070. "notification-url": "https://packagist.org/downloads/",
  4071. "license": [
  4072. "MIT"
  4073. ],
  4074. "authors": [
  4075. {
  4076. "name": "Fabien Potencier",
  4077. "email": "fabien@symfony.com"
  4078. },
  4079. {
  4080. "name": "Symfony Community",
  4081. "homepage": "https://symfony.com/contributors"
  4082. }
  4083. ],
  4084. "description": "Provides a structured process for converting a Request into a Response",
  4085. "homepage": "https://symfony.com",
  4086. "support": {
  4087. "source": "https://github.com/symfony/http-kernel/tree/v7.4.5"
  4088. },
  4089. "funding": [
  4090. {
  4091. "url": "https://symfony.com/sponsor",
  4092. "type": "custom"
  4093. },
  4094. {
  4095. "url": "https://github.com/fabpot",
  4096. "type": "github"
  4097. },
  4098. {
  4099. "url": "https://github.com/nicolas-grekas",
  4100. "type": "github"
  4101. },
  4102. {
  4103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4104. "type": "tidelift"
  4105. }
  4106. ],
  4107. "time": "2026-01-28T10:33:42+00:00"
  4108. },
  4109. {
  4110. "name": "symfony/mailer",
  4111. "version": "v7.4.4",
  4112. "source": {
  4113. "type": "git",
  4114. "url": "https://github.com/symfony/mailer.git",
  4115. "reference": "7b750074c40c694ceb34cb926d6dffee231c5cd6"
  4116. },
  4117. "dist": {
  4118. "type": "zip",
  4119. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b750074c40c694ceb34cb926d6dffee231c5cd6",
  4120. "reference": "7b750074c40c694ceb34cb926d6dffee231c5cd6",
  4121. "shasum": ""
  4122. },
  4123. "require": {
  4124. "egulias/email-validator": "^2.1.10|^3|^4",
  4125. "php": ">=8.2",
  4126. "psr/event-dispatcher": "^1",
  4127. "psr/log": "^1|^2|^3",
  4128. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4129. "symfony/mime": "^7.2|^8.0",
  4130. "symfony/service-contracts": "^2.5|^3"
  4131. },
  4132. "conflict": {
  4133. "symfony/http-client-contracts": "<2.5",
  4134. "symfony/http-kernel": "<6.4",
  4135. "symfony/messenger": "<6.4",
  4136. "symfony/mime": "<6.4",
  4137. "symfony/twig-bridge": "<6.4"
  4138. },
  4139. "require-dev": {
  4140. "symfony/console": "^6.4|^7.0|^8.0",
  4141. "symfony/http-client": "^6.4|^7.0|^8.0",
  4142. "symfony/messenger": "^6.4|^7.0|^8.0",
  4143. "symfony/twig-bridge": "^6.4|^7.0|^8.0"
  4144. },
  4145. "type": "library",
  4146. "autoload": {
  4147. "psr-4": {
  4148. "Symfony\\Component\\Mailer\\": ""
  4149. },
  4150. "exclude-from-classmap": [
  4151. "/Tests/"
  4152. ]
  4153. },
  4154. "notification-url": "https://packagist.org/downloads/",
  4155. "license": [
  4156. "MIT"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "Fabien Potencier",
  4161. "email": "fabien@symfony.com"
  4162. },
  4163. {
  4164. "name": "Symfony Community",
  4165. "homepage": "https://symfony.com/contributors"
  4166. }
  4167. ],
  4168. "description": "Helps sending emails",
  4169. "homepage": "https://symfony.com",
  4170. "support": {
  4171. "source": "https://github.com/symfony/mailer/tree/v7.4.4"
  4172. },
  4173. "funding": [
  4174. {
  4175. "url": "https://symfony.com/sponsor",
  4176. "type": "custom"
  4177. },
  4178. {
  4179. "url": "https://github.com/fabpot",
  4180. "type": "github"
  4181. },
  4182. {
  4183. "url": "https://github.com/nicolas-grekas",
  4184. "type": "github"
  4185. },
  4186. {
  4187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4188. "type": "tidelift"
  4189. }
  4190. ],
  4191. "time": "2026-01-08T08:25:11+00:00"
  4192. },
  4193. {
  4194. "name": "symfony/mime",
  4195. "version": "v7.4.5",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/symfony/mime.git",
  4199. "reference": "b18c7e6e9eee1e19958138df10412f3c4c316148"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/symfony/mime/zipball/b18c7e6e9eee1e19958138df10412f3c4c316148",
  4204. "reference": "b18c7e6e9eee1e19958138df10412f3c4c316148",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "php": ">=8.2",
  4209. "symfony/deprecation-contracts": "^2.5|^3",
  4210. "symfony/polyfill-intl-idn": "^1.10",
  4211. "symfony/polyfill-mbstring": "^1.0"
  4212. },
  4213. "conflict": {
  4214. "egulias/email-validator": "~3.0.0",
  4215. "phpdocumentor/reflection-docblock": "<5.2|>=6",
  4216. "phpdocumentor/type-resolver": "<1.5.1",
  4217. "symfony/mailer": "<6.4",
  4218. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4219. },
  4220. "require-dev": {
  4221. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4222. "league/html-to-markdown": "^5.0",
  4223. "phpdocumentor/reflection-docblock": "^5.2",
  4224. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4225. "symfony/process": "^6.4|^7.0|^8.0",
  4226. "symfony/property-access": "^6.4|^7.0|^8.0",
  4227. "symfony/property-info": "^6.4|^7.0|^8.0",
  4228. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  4229. },
  4230. "type": "library",
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Symfony\\Component\\Mime\\": ""
  4234. },
  4235. "exclude-from-classmap": [
  4236. "/Tests/"
  4237. ]
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "MIT"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "Fabien Potencier",
  4246. "email": "fabien@symfony.com"
  4247. },
  4248. {
  4249. "name": "Symfony Community",
  4250. "homepage": "https://symfony.com/contributors"
  4251. }
  4252. ],
  4253. "description": "Allows manipulating MIME messages",
  4254. "homepage": "https://symfony.com",
  4255. "keywords": [
  4256. "mime",
  4257. "mime-type"
  4258. ],
  4259. "support": {
  4260. "source": "https://github.com/symfony/mime/tree/v7.4.5"
  4261. },
  4262. "funding": [
  4263. {
  4264. "url": "https://symfony.com/sponsor",
  4265. "type": "custom"
  4266. },
  4267. {
  4268. "url": "https://github.com/fabpot",
  4269. "type": "github"
  4270. },
  4271. {
  4272. "url": "https://github.com/nicolas-grekas",
  4273. "type": "github"
  4274. },
  4275. {
  4276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4277. "type": "tidelift"
  4278. }
  4279. ],
  4280. "time": "2026-01-27T08:59:58+00:00"
  4281. },
  4282. {
  4283. "name": "symfony/polyfill-ctype",
  4284. "version": "v1.33.0",
  4285. "source": {
  4286. "type": "git",
  4287. "url": "https://github.com/symfony/polyfill-ctype.git",
  4288. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  4289. },
  4290. "dist": {
  4291. "type": "zip",
  4292. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  4293. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  4294. "shasum": ""
  4295. },
  4296. "require": {
  4297. "php": ">=7.2"
  4298. },
  4299. "provide": {
  4300. "ext-ctype": "*"
  4301. },
  4302. "suggest": {
  4303. "ext-ctype": "For best performance"
  4304. },
  4305. "type": "library",
  4306. "extra": {
  4307. "thanks": {
  4308. "url": "https://github.com/symfony/polyfill",
  4309. "name": "symfony/polyfill"
  4310. }
  4311. },
  4312. "autoload": {
  4313. "files": [
  4314. "bootstrap.php"
  4315. ],
  4316. "psr-4": {
  4317. "Symfony\\Polyfill\\Ctype\\": ""
  4318. }
  4319. },
  4320. "notification-url": "https://packagist.org/downloads/",
  4321. "license": [
  4322. "MIT"
  4323. ],
  4324. "authors": [
  4325. {
  4326. "name": "Gert de Pagter",
  4327. "email": "BackEndTea@gmail.com"
  4328. },
  4329. {
  4330. "name": "Symfony Community",
  4331. "homepage": "https://symfony.com/contributors"
  4332. }
  4333. ],
  4334. "description": "Symfony polyfill for ctype functions",
  4335. "homepage": "https://symfony.com",
  4336. "keywords": [
  4337. "compatibility",
  4338. "ctype",
  4339. "polyfill",
  4340. "portable"
  4341. ],
  4342. "support": {
  4343. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  4344. },
  4345. "funding": [
  4346. {
  4347. "url": "https://symfony.com/sponsor",
  4348. "type": "custom"
  4349. },
  4350. {
  4351. "url": "https://github.com/fabpot",
  4352. "type": "github"
  4353. },
  4354. {
  4355. "url": "https://github.com/nicolas-grekas",
  4356. "type": "github"
  4357. },
  4358. {
  4359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4360. "type": "tidelift"
  4361. }
  4362. ],
  4363. "time": "2024-09-09T11:45:10+00:00"
  4364. },
  4365. {
  4366. "name": "symfony/polyfill-intl-grapheme",
  4367. "version": "v1.33.0",
  4368. "source": {
  4369. "type": "git",
  4370. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4371. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  4372. },
  4373. "dist": {
  4374. "type": "zip",
  4375. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  4376. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  4377. "shasum": ""
  4378. },
  4379. "require": {
  4380. "php": ">=7.2"
  4381. },
  4382. "suggest": {
  4383. "ext-intl": "For best performance"
  4384. },
  4385. "type": "library",
  4386. "extra": {
  4387. "thanks": {
  4388. "url": "https://github.com/symfony/polyfill",
  4389. "name": "symfony/polyfill"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "files": [
  4394. "bootstrap.php"
  4395. ],
  4396. "psr-4": {
  4397. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4398. }
  4399. },
  4400. "notification-url": "https://packagist.org/downloads/",
  4401. "license": [
  4402. "MIT"
  4403. ],
  4404. "authors": [
  4405. {
  4406. "name": "Nicolas Grekas",
  4407. "email": "p@tchwork.com"
  4408. },
  4409. {
  4410. "name": "Symfony Community",
  4411. "homepage": "https://symfony.com/contributors"
  4412. }
  4413. ],
  4414. "description": "Symfony polyfill for intl's grapheme_* functions",
  4415. "homepage": "https://symfony.com",
  4416. "keywords": [
  4417. "compatibility",
  4418. "grapheme",
  4419. "intl",
  4420. "polyfill",
  4421. "portable",
  4422. "shim"
  4423. ],
  4424. "support": {
  4425. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  4426. },
  4427. "funding": [
  4428. {
  4429. "url": "https://symfony.com/sponsor",
  4430. "type": "custom"
  4431. },
  4432. {
  4433. "url": "https://github.com/fabpot",
  4434. "type": "github"
  4435. },
  4436. {
  4437. "url": "https://github.com/nicolas-grekas",
  4438. "type": "github"
  4439. },
  4440. {
  4441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4442. "type": "tidelift"
  4443. }
  4444. ],
  4445. "time": "2025-06-27T09:58:17+00:00"
  4446. },
  4447. {
  4448. "name": "symfony/polyfill-intl-idn",
  4449. "version": "v1.33.0",
  4450. "source": {
  4451. "type": "git",
  4452. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4453. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  4454. },
  4455. "dist": {
  4456. "type": "zip",
  4457. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  4458. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  4459. "shasum": ""
  4460. },
  4461. "require": {
  4462. "php": ">=7.2",
  4463. "symfony/polyfill-intl-normalizer": "^1.10"
  4464. },
  4465. "suggest": {
  4466. "ext-intl": "For best performance"
  4467. },
  4468. "type": "library",
  4469. "extra": {
  4470. "thanks": {
  4471. "url": "https://github.com/symfony/polyfill",
  4472. "name": "symfony/polyfill"
  4473. }
  4474. },
  4475. "autoload": {
  4476. "files": [
  4477. "bootstrap.php"
  4478. ],
  4479. "psr-4": {
  4480. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4481. }
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "MIT"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Laurent Bassin",
  4490. "email": "laurent@bassin.info"
  4491. },
  4492. {
  4493. "name": "Trevor Rowbotham",
  4494. "email": "trevor.rowbotham@pm.me"
  4495. },
  4496. {
  4497. "name": "Symfony Community",
  4498. "homepage": "https://symfony.com/contributors"
  4499. }
  4500. ],
  4501. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4502. "homepage": "https://symfony.com",
  4503. "keywords": [
  4504. "compatibility",
  4505. "idn",
  4506. "intl",
  4507. "polyfill",
  4508. "portable",
  4509. "shim"
  4510. ],
  4511. "support": {
  4512. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  4513. },
  4514. "funding": [
  4515. {
  4516. "url": "https://symfony.com/sponsor",
  4517. "type": "custom"
  4518. },
  4519. {
  4520. "url": "https://github.com/fabpot",
  4521. "type": "github"
  4522. },
  4523. {
  4524. "url": "https://github.com/nicolas-grekas",
  4525. "type": "github"
  4526. },
  4527. {
  4528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4529. "type": "tidelift"
  4530. }
  4531. ],
  4532. "time": "2024-09-10T14:38:51+00:00"
  4533. },
  4534. {
  4535. "name": "symfony/polyfill-intl-normalizer",
  4536. "version": "v1.33.0",
  4537. "source": {
  4538. "type": "git",
  4539. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4540. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4541. },
  4542. "dist": {
  4543. "type": "zip",
  4544. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  4545. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4546. "shasum": ""
  4547. },
  4548. "require": {
  4549. "php": ">=7.2"
  4550. },
  4551. "suggest": {
  4552. "ext-intl": "For best performance"
  4553. },
  4554. "type": "library",
  4555. "extra": {
  4556. "thanks": {
  4557. "url": "https://github.com/symfony/polyfill",
  4558. "name": "symfony/polyfill"
  4559. }
  4560. },
  4561. "autoload": {
  4562. "files": [
  4563. "bootstrap.php"
  4564. ],
  4565. "psr-4": {
  4566. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4567. },
  4568. "classmap": [
  4569. "Resources/stubs"
  4570. ]
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Nicolas Grekas",
  4579. "email": "p@tchwork.com"
  4580. },
  4581. {
  4582. "name": "Symfony Community",
  4583. "homepage": "https://symfony.com/contributors"
  4584. }
  4585. ],
  4586. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4587. "homepage": "https://symfony.com",
  4588. "keywords": [
  4589. "compatibility",
  4590. "intl",
  4591. "normalizer",
  4592. "polyfill",
  4593. "portable",
  4594. "shim"
  4595. ],
  4596. "support": {
  4597. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  4598. },
  4599. "funding": [
  4600. {
  4601. "url": "https://symfony.com/sponsor",
  4602. "type": "custom"
  4603. },
  4604. {
  4605. "url": "https://github.com/fabpot",
  4606. "type": "github"
  4607. },
  4608. {
  4609. "url": "https://github.com/nicolas-grekas",
  4610. "type": "github"
  4611. },
  4612. {
  4613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4614. "type": "tidelift"
  4615. }
  4616. ],
  4617. "time": "2024-09-09T11:45:10+00:00"
  4618. },
  4619. {
  4620. "name": "symfony/polyfill-mbstring",
  4621. "version": "v1.33.0",
  4622. "source": {
  4623. "type": "git",
  4624. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4625. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  4626. },
  4627. "dist": {
  4628. "type": "zip",
  4629. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  4630. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  4631. "shasum": ""
  4632. },
  4633. "require": {
  4634. "ext-iconv": "*",
  4635. "php": ">=7.2"
  4636. },
  4637. "provide": {
  4638. "ext-mbstring": "*"
  4639. },
  4640. "suggest": {
  4641. "ext-mbstring": "For best performance"
  4642. },
  4643. "type": "library",
  4644. "extra": {
  4645. "thanks": {
  4646. "url": "https://github.com/symfony/polyfill",
  4647. "name": "symfony/polyfill"
  4648. }
  4649. },
  4650. "autoload": {
  4651. "files": [
  4652. "bootstrap.php"
  4653. ],
  4654. "psr-4": {
  4655. "Symfony\\Polyfill\\Mbstring\\": ""
  4656. }
  4657. },
  4658. "notification-url": "https://packagist.org/downloads/",
  4659. "license": [
  4660. "MIT"
  4661. ],
  4662. "authors": [
  4663. {
  4664. "name": "Nicolas Grekas",
  4665. "email": "p@tchwork.com"
  4666. },
  4667. {
  4668. "name": "Symfony Community",
  4669. "homepage": "https://symfony.com/contributors"
  4670. }
  4671. ],
  4672. "description": "Symfony polyfill for the Mbstring extension",
  4673. "homepage": "https://symfony.com",
  4674. "keywords": [
  4675. "compatibility",
  4676. "mbstring",
  4677. "polyfill",
  4678. "portable",
  4679. "shim"
  4680. ],
  4681. "support": {
  4682. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  4683. },
  4684. "funding": [
  4685. {
  4686. "url": "https://symfony.com/sponsor",
  4687. "type": "custom"
  4688. },
  4689. {
  4690. "url": "https://github.com/fabpot",
  4691. "type": "github"
  4692. },
  4693. {
  4694. "url": "https://github.com/nicolas-grekas",
  4695. "type": "github"
  4696. },
  4697. {
  4698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4699. "type": "tidelift"
  4700. }
  4701. ],
  4702. "time": "2024-12-23T08:48:59+00:00"
  4703. },
  4704. {
  4705. "name": "symfony/polyfill-php80",
  4706. "version": "v1.33.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/symfony/polyfill-php80.git",
  4710. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  4715. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  4716. "shasum": ""
  4717. },
  4718. "require": {
  4719. "php": ">=7.2"
  4720. },
  4721. "type": "library",
  4722. "extra": {
  4723. "thanks": {
  4724. "url": "https://github.com/symfony/polyfill",
  4725. "name": "symfony/polyfill"
  4726. }
  4727. },
  4728. "autoload": {
  4729. "files": [
  4730. "bootstrap.php"
  4731. ],
  4732. "psr-4": {
  4733. "Symfony\\Polyfill\\Php80\\": ""
  4734. },
  4735. "classmap": [
  4736. "Resources/stubs"
  4737. ]
  4738. },
  4739. "notification-url": "https://packagist.org/downloads/",
  4740. "license": [
  4741. "MIT"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Ion Bazan",
  4746. "email": "ion.bazan@gmail.com"
  4747. },
  4748. {
  4749. "name": "Nicolas Grekas",
  4750. "email": "p@tchwork.com"
  4751. },
  4752. {
  4753. "name": "Symfony Community",
  4754. "homepage": "https://symfony.com/contributors"
  4755. }
  4756. ],
  4757. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4758. "homepage": "https://symfony.com",
  4759. "keywords": [
  4760. "compatibility",
  4761. "polyfill",
  4762. "portable",
  4763. "shim"
  4764. ],
  4765. "support": {
  4766. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  4767. },
  4768. "funding": [
  4769. {
  4770. "url": "https://symfony.com/sponsor",
  4771. "type": "custom"
  4772. },
  4773. {
  4774. "url": "https://github.com/fabpot",
  4775. "type": "github"
  4776. },
  4777. {
  4778. "url": "https://github.com/nicolas-grekas",
  4779. "type": "github"
  4780. },
  4781. {
  4782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4783. "type": "tidelift"
  4784. }
  4785. ],
  4786. "time": "2025-01-02T08:10:11+00:00"
  4787. },
  4788. {
  4789. "name": "symfony/polyfill-php83",
  4790. "version": "v1.33.0",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/symfony/polyfill-php83.git",
  4794. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  4799. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  4800. "shasum": ""
  4801. },
  4802. "require": {
  4803. "php": ">=7.2"
  4804. },
  4805. "type": "library",
  4806. "extra": {
  4807. "thanks": {
  4808. "url": "https://github.com/symfony/polyfill",
  4809. "name": "symfony/polyfill"
  4810. }
  4811. },
  4812. "autoload": {
  4813. "files": [
  4814. "bootstrap.php"
  4815. ],
  4816. "psr-4": {
  4817. "Symfony\\Polyfill\\Php83\\": ""
  4818. },
  4819. "classmap": [
  4820. "Resources/stubs"
  4821. ]
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Nicolas Grekas",
  4830. "email": "p@tchwork.com"
  4831. },
  4832. {
  4833. "name": "Symfony Community",
  4834. "homepage": "https://symfony.com/contributors"
  4835. }
  4836. ],
  4837. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  4838. "homepage": "https://symfony.com",
  4839. "keywords": [
  4840. "compatibility",
  4841. "polyfill",
  4842. "portable",
  4843. "shim"
  4844. ],
  4845. "support": {
  4846. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  4847. },
  4848. "funding": [
  4849. {
  4850. "url": "https://symfony.com/sponsor",
  4851. "type": "custom"
  4852. },
  4853. {
  4854. "url": "https://github.com/fabpot",
  4855. "type": "github"
  4856. },
  4857. {
  4858. "url": "https://github.com/nicolas-grekas",
  4859. "type": "github"
  4860. },
  4861. {
  4862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4863. "type": "tidelift"
  4864. }
  4865. ],
  4866. "time": "2025-07-08T02:45:35+00:00"
  4867. },
  4868. {
  4869. "name": "symfony/polyfill-php85",
  4870. "version": "v1.33.0",
  4871. "source": {
  4872. "type": "git",
  4873. "url": "https://github.com/symfony/polyfill-php85.git",
  4874. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
  4875. },
  4876. "dist": {
  4877. "type": "zip",
  4878. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  4879. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  4880. "shasum": ""
  4881. },
  4882. "require": {
  4883. "php": ">=7.2"
  4884. },
  4885. "type": "library",
  4886. "extra": {
  4887. "thanks": {
  4888. "url": "https://github.com/symfony/polyfill",
  4889. "name": "symfony/polyfill"
  4890. }
  4891. },
  4892. "autoload": {
  4893. "files": [
  4894. "bootstrap.php"
  4895. ],
  4896. "psr-4": {
  4897. "Symfony\\Polyfill\\Php85\\": ""
  4898. },
  4899. "classmap": [
  4900. "Resources/stubs"
  4901. ]
  4902. },
  4903. "notification-url": "https://packagist.org/downloads/",
  4904. "license": [
  4905. "MIT"
  4906. ],
  4907. "authors": [
  4908. {
  4909. "name": "Nicolas Grekas",
  4910. "email": "p@tchwork.com"
  4911. },
  4912. {
  4913. "name": "Symfony Community",
  4914. "homepage": "https://symfony.com/contributors"
  4915. }
  4916. ],
  4917. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  4918. "homepage": "https://symfony.com",
  4919. "keywords": [
  4920. "compatibility",
  4921. "polyfill",
  4922. "portable",
  4923. "shim"
  4924. ],
  4925. "support": {
  4926. "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
  4927. },
  4928. "funding": [
  4929. {
  4930. "url": "https://symfony.com/sponsor",
  4931. "type": "custom"
  4932. },
  4933. {
  4934. "url": "https://github.com/fabpot",
  4935. "type": "github"
  4936. },
  4937. {
  4938. "url": "https://github.com/nicolas-grekas",
  4939. "type": "github"
  4940. },
  4941. {
  4942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4943. "type": "tidelift"
  4944. }
  4945. ],
  4946. "time": "2025-06-23T16:12:55+00:00"
  4947. },
  4948. {
  4949. "name": "symfony/polyfill-uuid",
  4950. "version": "v1.33.0",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/symfony/polyfill-uuid.git",
  4954. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  4959. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  4960. "shasum": ""
  4961. },
  4962. "require": {
  4963. "php": ">=7.2"
  4964. },
  4965. "provide": {
  4966. "ext-uuid": "*"
  4967. },
  4968. "suggest": {
  4969. "ext-uuid": "For best performance"
  4970. },
  4971. "type": "library",
  4972. "extra": {
  4973. "thanks": {
  4974. "url": "https://github.com/symfony/polyfill",
  4975. "name": "symfony/polyfill"
  4976. }
  4977. },
  4978. "autoload": {
  4979. "files": [
  4980. "bootstrap.php"
  4981. ],
  4982. "psr-4": {
  4983. "Symfony\\Polyfill\\Uuid\\": ""
  4984. }
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Grégoire Pineau",
  4993. "email": "lyrixx@lyrixx.info"
  4994. },
  4995. {
  4996. "name": "Symfony Community",
  4997. "homepage": "https://symfony.com/contributors"
  4998. }
  4999. ],
  5000. "description": "Symfony polyfill for uuid functions",
  5001. "homepage": "https://symfony.com",
  5002. "keywords": [
  5003. "compatibility",
  5004. "polyfill",
  5005. "portable",
  5006. "uuid"
  5007. ],
  5008. "support": {
  5009. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0"
  5010. },
  5011. "funding": [
  5012. {
  5013. "url": "https://symfony.com/sponsor",
  5014. "type": "custom"
  5015. },
  5016. {
  5017. "url": "https://github.com/fabpot",
  5018. "type": "github"
  5019. },
  5020. {
  5021. "url": "https://github.com/nicolas-grekas",
  5022. "type": "github"
  5023. },
  5024. {
  5025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5026. "type": "tidelift"
  5027. }
  5028. ],
  5029. "time": "2024-09-09T11:45:10+00:00"
  5030. },
  5031. {
  5032. "name": "symfony/process",
  5033. "version": "v7.4.5",
  5034. "source": {
  5035. "type": "git",
  5036. "url": "https://github.com/symfony/process.git",
  5037. "reference": "608476f4604102976d687c483ac63a79ba18cc97"
  5038. },
  5039. "dist": {
  5040. "type": "zip",
  5041. "url": "https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97",
  5042. "reference": "608476f4604102976d687c483ac63a79ba18cc97",
  5043. "shasum": ""
  5044. },
  5045. "require": {
  5046. "php": ">=8.2"
  5047. },
  5048. "type": "library",
  5049. "autoload": {
  5050. "psr-4": {
  5051. "Symfony\\Component\\Process\\": ""
  5052. },
  5053. "exclude-from-classmap": [
  5054. "/Tests/"
  5055. ]
  5056. },
  5057. "notification-url": "https://packagist.org/downloads/",
  5058. "license": [
  5059. "MIT"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "Fabien Potencier",
  5064. "email": "fabien@symfony.com"
  5065. },
  5066. {
  5067. "name": "Symfony Community",
  5068. "homepage": "https://symfony.com/contributors"
  5069. }
  5070. ],
  5071. "description": "Executes commands in sub-processes",
  5072. "homepage": "https://symfony.com",
  5073. "support": {
  5074. "source": "https://github.com/symfony/process/tree/v7.4.5"
  5075. },
  5076. "funding": [
  5077. {
  5078. "url": "https://symfony.com/sponsor",
  5079. "type": "custom"
  5080. },
  5081. {
  5082. "url": "https://github.com/fabpot",
  5083. "type": "github"
  5084. },
  5085. {
  5086. "url": "https://github.com/nicolas-grekas",
  5087. "type": "github"
  5088. },
  5089. {
  5090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5091. "type": "tidelift"
  5092. }
  5093. ],
  5094. "time": "2026-01-26T15:07:59+00:00"
  5095. },
  5096. {
  5097. "name": "symfony/routing",
  5098. "version": "v7.4.4",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/symfony/routing.git",
  5102. "reference": "0798827fe2c79caeed41d70b680c2c3507d10147"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/symfony/routing/zipball/0798827fe2c79caeed41d70b680c2c3507d10147",
  5107. "reference": "0798827fe2c79caeed41d70b680c2c3507d10147",
  5108. "shasum": ""
  5109. },
  5110. "require": {
  5111. "php": ">=8.2",
  5112. "symfony/deprecation-contracts": "^2.5|^3"
  5113. },
  5114. "conflict": {
  5115. "symfony/config": "<6.4",
  5116. "symfony/dependency-injection": "<6.4",
  5117. "symfony/yaml": "<6.4"
  5118. },
  5119. "require-dev": {
  5120. "psr/log": "^1|^2|^3",
  5121. "symfony/config": "^6.4|^7.0|^8.0",
  5122. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5123. "symfony/expression-language": "^6.4|^7.0|^8.0",
  5124. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  5125. "symfony/yaml": "^6.4|^7.0|^8.0"
  5126. },
  5127. "type": "library",
  5128. "autoload": {
  5129. "psr-4": {
  5130. "Symfony\\Component\\Routing\\": ""
  5131. },
  5132. "exclude-from-classmap": [
  5133. "/Tests/"
  5134. ]
  5135. },
  5136. "notification-url": "https://packagist.org/downloads/",
  5137. "license": [
  5138. "MIT"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "Fabien Potencier",
  5143. "email": "fabien@symfony.com"
  5144. },
  5145. {
  5146. "name": "Symfony Community",
  5147. "homepage": "https://symfony.com/contributors"
  5148. }
  5149. ],
  5150. "description": "Maps an HTTP request to a set of configuration variables",
  5151. "homepage": "https://symfony.com",
  5152. "keywords": [
  5153. "router",
  5154. "routing",
  5155. "uri",
  5156. "url"
  5157. ],
  5158. "support": {
  5159. "source": "https://github.com/symfony/routing/tree/v7.4.4"
  5160. },
  5161. "funding": [
  5162. {
  5163. "url": "https://symfony.com/sponsor",
  5164. "type": "custom"
  5165. },
  5166. {
  5167. "url": "https://github.com/fabpot",
  5168. "type": "github"
  5169. },
  5170. {
  5171. "url": "https://github.com/nicolas-grekas",
  5172. "type": "github"
  5173. },
  5174. {
  5175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5176. "type": "tidelift"
  5177. }
  5178. ],
  5179. "time": "2026-01-12T12:19:02+00:00"
  5180. },
  5181. {
  5182. "name": "symfony/service-contracts",
  5183. "version": "v3.6.1",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://github.com/symfony/service-contracts.git",
  5187. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  5192. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  5193. "shasum": ""
  5194. },
  5195. "require": {
  5196. "php": ">=8.1",
  5197. "psr/container": "^1.1|^2.0",
  5198. "symfony/deprecation-contracts": "^2.5|^3"
  5199. },
  5200. "conflict": {
  5201. "ext-psr": "<1.1|>=2"
  5202. },
  5203. "type": "library",
  5204. "extra": {
  5205. "thanks": {
  5206. "url": "https://github.com/symfony/contracts",
  5207. "name": "symfony/contracts"
  5208. },
  5209. "branch-alias": {
  5210. "dev-main": "3.6-dev"
  5211. }
  5212. },
  5213. "autoload": {
  5214. "psr-4": {
  5215. "Symfony\\Contracts\\Service\\": ""
  5216. },
  5217. "exclude-from-classmap": [
  5218. "/Test/"
  5219. ]
  5220. },
  5221. "notification-url": "https://packagist.org/downloads/",
  5222. "license": [
  5223. "MIT"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "Nicolas Grekas",
  5228. "email": "p@tchwork.com"
  5229. },
  5230. {
  5231. "name": "Symfony Community",
  5232. "homepage": "https://symfony.com/contributors"
  5233. }
  5234. ],
  5235. "description": "Generic abstractions related to writing services",
  5236. "homepage": "https://symfony.com",
  5237. "keywords": [
  5238. "abstractions",
  5239. "contracts",
  5240. "decoupling",
  5241. "interfaces",
  5242. "interoperability",
  5243. "standards"
  5244. ],
  5245. "support": {
  5246. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  5247. },
  5248. "funding": [
  5249. {
  5250. "url": "https://symfony.com/sponsor",
  5251. "type": "custom"
  5252. },
  5253. {
  5254. "url": "https://github.com/fabpot",
  5255. "type": "github"
  5256. },
  5257. {
  5258. "url": "https://github.com/nicolas-grekas",
  5259. "type": "github"
  5260. },
  5261. {
  5262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5263. "type": "tidelift"
  5264. }
  5265. ],
  5266. "time": "2025-07-15T11:30:57+00:00"
  5267. },
  5268. {
  5269. "name": "symfony/string",
  5270. "version": "v8.0.4",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/symfony/string.git",
  5274. "reference": "758b372d6882506821ed666032e43020c4f57194"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/symfony/string/zipball/758b372d6882506821ed666032e43020c4f57194",
  5279. "reference": "758b372d6882506821ed666032e43020c4f57194",
  5280. "shasum": ""
  5281. },
  5282. "require": {
  5283. "php": ">=8.4",
  5284. "symfony/polyfill-ctype": "^1.8",
  5285. "symfony/polyfill-intl-grapheme": "^1.33",
  5286. "symfony/polyfill-intl-normalizer": "^1.0",
  5287. "symfony/polyfill-mbstring": "^1.0"
  5288. },
  5289. "conflict": {
  5290. "symfony/translation-contracts": "<2.5"
  5291. },
  5292. "require-dev": {
  5293. "symfony/emoji": "^7.4|^8.0",
  5294. "symfony/http-client": "^7.4|^8.0",
  5295. "symfony/intl": "^7.4|^8.0",
  5296. "symfony/translation-contracts": "^2.5|^3.0",
  5297. "symfony/var-exporter": "^7.4|^8.0"
  5298. },
  5299. "type": "library",
  5300. "autoload": {
  5301. "files": [
  5302. "Resources/functions.php"
  5303. ],
  5304. "psr-4": {
  5305. "Symfony\\Component\\String\\": ""
  5306. },
  5307. "exclude-from-classmap": [
  5308. "/Tests/"
  5309. ]
  5310. },
  5311. "notification-url": "https://packagist.org/downloads/",
  5312. "license": [
  5313. "MIT"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Nicolas Grekas",
  5318. "email": "p@tchwork.com"
  5319. },
  5320. {
  5321. "name": "Symfony Community",
  5322. "homepage": "https://symfony.com/contributors"
  5323. }
  5324. ],
  5325. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5326. "homepage": "https://symfony.com",
  5327. "keywords": [
  5328. "grapheme",
  5329. "i18n",
  5330. "string",
  5331. "unicode",
  5332. "utf-8",
  5333. "utf8"
  5334. ],
  5335. "support": {
  5336. "source": "https://github.com/symfony/string/tree/v8.0.4"
  5337. },
  5338. "funding": [
  5339. {
  5340. "url": "https://symfony.com/sponsor",
  5341. "type": "custom"
  5342. },
  5343. {
  5344. "url": "https://github.com/fabpot",
  5345. "type": "github"
  5346. },
  5347. {
  5348. "url": "https://github.com/nicolas-grekas",
  5349. "type": "github"
  5350. },
  5351. {
  5352. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5353. "type": "tidelift"
  5354. }
  5355. ],
  5356. "time": "2026-01-12T12:37:40+00:00"
  5357. },
  5358. {
  5359. "name": "symfony/translation",
  5360. "version": "v8.0.4",
  5361. "source": {
  5362. "type": "git",
  5363. "url": "https://github.com/symfony/translation.git",
  5364. "reference": "db70c8ce7db74fd2da7b1d268db46b2a8ce32c10"
  5365. },
  5366. "dist": {
  5367. "type": "zip",
  5368. "url": "https://api.github.com/repos/symfony/translation/zipball/db70c8ce7db74fd2da7b1d268db46b2a8ce32c10",
  5369. "reference": "db70c8ce7db74fd2da7b1d268db46b2a8ce32c10",
  5370. "shasum": ""
  5371. },
  5372. "require": {
  5373. "php": ">=8.4",
  5374. "symfony/polyfill-mbstring": "^1.0",
  5375. "symfony/translation-contracts": "^3.6.1"
  5376. },
  5377. "conflict": {
  5378. "nikic/php-parser": "<5.0",
  5379. "symfony/http-client-contracts": "<2.5",
  5380. "symfony/service-contracts": "<2.5"
  5381. },
  5382. "provide": {
  5383. "symfony/translation-implementation": "2.3|3.0"
  5384. },
  5385. "require-dev": {
  5386. "nikic/php-parser": "^5.0",
  5387. "psr/log": "^1|^2|^3",
  5388. "symfony/config": "^7.4|^8.0",
  5389. "symfony/console": "^7.4|^8.0",
  5390. "symfony/dependency-injection": "^7.4|^8.0",
  5391. "symfony/finder": "^7.4|^8.0",
  5392. "symfony/http-client-contracts": "^2.5|^3.0",
  5393. "symfony/http-kernel": "^7.4|^8.0",
  5394. "symfony/intl": "^7.4|^8.0",
  5395. "symfony/polyfill-intl-icu": "^1.21",
  5396. "symfony/routing": "^7.4|^8.0",
  5397. "symfony/service-contracts": "^2.5|^3",
  5398. "symfony/yaml": "^7.4|^8.0"
  5399. },
  5400. "type": "library",
  5401. "autoload": {
  5402. "files": [
  5403. "Resources/functions.php"
  5404. ],
  5405. "psr-4": {
  5406. "Symfony\\Component\\Translation\\": ""
  5407. },
  5408. "exclude-from-classmap": [
  5409. "/Tests/"
  5410. ]
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Fabien Potencier",
  5419. "email": "fabien@symfony.com"
  5420. },
  5421. {
  5422. "name": "Symfony Community",
  5423. "homepage": "https://symfony.com/contributors"
  5424. }
  5425. ],
  5426. "description": "Provides tools to internationalize your application",
  5427. "homepage": "https://symfony.com",
  5428. "support": {
  5429. "source": "https://github.com/symfony/translation/tree/v8.0.4"
  5430. },
  5431. "funding": [
  5432. {
  5433. "url": "https://symfony.com/sponsor",
  5434. "type": "custom"
  5435. },
  5436. {
  5437. "url": "https://github.com/fabpot",
  5438. "type": "github"
  5439. },
  5440. {
  5441. "url": "https://github.com/nicolas-grekas",
  5442. "type": "github"
  5443. },
  5444. {
  5445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5446. "type": "tidelift"
  5447. }
  5448. ],
  5449. "time": "2026-01-13T13:06:50+00:00"
  5450. },
  5451. {
  5452. "name": "symfony/translation-contracts",
  5453. "version": "v3.6.1",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://github.com/symfony/translation-contracts.git",
  5457. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  5458. },
  5459. "dist": {
  5460. "type": "zip",
  5461. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  5462. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  5463. "shasum": ""
  5464. },
  5465. "require": {
  5466. "php": ">=8.1"
  5467. },
  5468. "type": "library",
  5469. "extra": {
  5470. "thanks": {
  5471. "url": "https://github.com/symfony/contracts",
  5472. "name": "symfony/contracts"
  5473. },
  5474. "branch-alias": {
  5475. "dev-main": "3.6-dev"
  5476. }
  5477. },
  5478. "autoload": {
  5479. "psr-4": {
  5480. "Symfony\\Contracts\\Translation\\": ""
  5481. },
  5482. "exclude-from-classmap": [
  5483. "/Test/"
  5484. ]
  5485. },
  5486. "notification-url": "https://packagist.org/downloads/",
  5487. "license": [
  5488. "MIT"
  5489. ],
  5490. "authors": [
  5491. {
  5492. "name": "Nicolas Grekas",
  5493. "email": "p@tchwork.com"
  5494. },
  5495. {
  5496. "name": "Symfony Community",
  5497. "homepage": "https://symfony.com/contributors"
  5498. }
  5499. ],
  5500. "description": "Generic abstractions related to translation",
  5501. "homepage": "https://symfony.com",
  5502. "keywords": [
  5503. "abstractions",
  5504. "contracts",
  5505. "decoupling",
  5506. "interfaces",
  5507. "interoperability",
  5508. "standards"
  5509. ],
  5510. "support": {
  5511. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  5512. },
  5513. "funding": [
  5514. {
  5515. "url": "https://symfony.com/sponsor",
  5516. "type": "custom"
  5517. },
  5518. {
  5519. "url": "https://github.com/fabpot",
  5520. "type": "github"
  5521. },
  5522. {
  5523. "url": "https://github.com/nicolas-grekas",
  5524. "type": "github"
  5525. },
  5526. {
  5527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5528. "type": "tidelift"
  5529. }
  5530. ],
  5531. "time": "2025-07-15T13:41:35+00:00"
  5532. },
  5533. {
  5534. "name": "symfony/uid",
  5535. "version": "v7.4.4",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://github.com/symfony/uid.git",
  5539. "reference": "7719ce8aba76be93dfe249192f1fbfa52c588e36"
  5540. },
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://api.github.com/repos/symfony/uid/zipball/7719ce8aba76be93dfe249192f1fbfa52c588e36",
  5544. "reference": "7719ce8aba76be93dfe249192f1fbfa52c588e36",
  5545. "shasum": ""
  5546. },
  5547. "require": {
  5548. "php": ">=8.2",
  5549. "symfony/polyfill-uuid": "^1.15"
  5550. },
  5551. "require-dev": {
  5552. "symfony/console": "^6.4|^7.0|^8.0"
  5553. },
  5554. "type": "library",
  5555. "autoload": {
  5556. "psr-4": {
  5557. "Symfony\\Component\\Uid\\": ""
  5558. },
  5559. "exclude-from-classmap": [
  5560. "/Tests/"
  5561. ]
  5562. },
  5563. "notification-url": "https://packagist.org/downloads/",
  5564. "license": [
  5565. "MIT"
  5566. ],
  5567. "authors": [
  5568. {
  5569. "name": "Grégoire Pineau",
  5570. "email": "lyrixx@lyrixx.info"
  5571. },
  5572. {
  5573. "name": "Nicolas Grekas",
  5574. "email": "p@tchwork.com"
  5575. },
  5576. {
  5577. "name": "Symfony Community",
  5578. "homepage": "https://symfony.com/contributors"
  5579. }
  5580. ],
  5581. "description": "Provides an object-oriented API to generate and represent UIDs",
  5582. "homepage": "https://symfony.com",
  5583. "keywords": [
  5584. "UID",
  5585. "ulid",
  5586. "uuid"
  5587. ],
  5588. "support": {
  5589. "source": "https://github.com/symfony/uid/tree/v7.4.4"
  5590. },
  5591. "funding": [
  5592. {
  5593. "url": "https://symfony.com/sponsor",
  5594. "type": "custom"
  5595. },
  5596. {
  5597. "url": "https://github.com/fabpot",
  5598. "type": "github"
  5599. },
  5600. {
  5601. "url": "https://github.com/nicolas-grekas",
  5602. "type": "github"
  5603. },
  5604. {
  5605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5606. "type": "tidelift"
  5607. }
  5608. ],
  5609. "time": "2026-01-03T23:30:35+00:00"
  5610. },
  5611. {
  5612. "name": "symfony/var-dumper",
  5613. "version": "v7.4.4",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/symfony/var-dumper.git",
  5617. "reference": "0e4769b46a0c3c62390d124635ce59f66874b282"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0e4769b46a0c3c62390d124635ce59f66874b282",
  5622. "reference": "0e4769b46a0c3c62390d124635ce59f66874b282",
  5623. "shasum": ""
  5624. },
  5625. "require": {
  5626. "php": ">=8.2",
  5627. "symfony/deprecation-contracts": "^2.5|^3",
  5628. "symfony/polyfill-mbstring": "~1.0"
  5629. },
  5630. "conflict": {
  5631. "symfony/console": "<6.4"
  5632. },
  5633. "require-dev": {
  5634. "symfony/console": "^6.4|^7.0|^8.0",
  5635. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5636. "symfony/process": "^6.4|^7.0|^8.0",
  5637. "symfony/uid": "^6.4|^7.0|^8.0",
  5638. "twig/twig": "^3.12"
  5639. },
  5640. "bin": [
  5641. "Resources/bin/var-dump-server"
  5642. ],
  5643. "type": "library",
  5644. "autoload": {
  5645. "files": [
  5646. "Resources/functions/dump.php"
  5647. ],
  5648. "psr-4": {
  5649. "Symfony\\Component\\VarDumper\\": ""
  5650. },
  5651. "exclude-from-classmap": [
  5652. "/Tests/"
  5653. ]
  5654. },
  5655. "notification-url": "https://packagist.org/downloads/",
  5656. "license": [
  5657. "MIT"
  5658. ],
  5659. "authors": [
  5660. {
  5661. "name": "Nicolas Grekas",
  5662. "email": "p@tchwork.com"
  5663. },
  5664. {
  5665. "name": "Symfony Community",
  5666. "homepage": "https://symfony.com/contributors"
  5667. }
  5668. ],
  5669. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5670. "homepage": "https://symfony.com",
  5671. "keywords": [
  5672. "debug",
  5673. "dump"
  5674. ],
  5675. "support": {
  5676. "source": "https://github.com/symfony/var-dumper/tree/v7.4.4"
  5677. },
  5678. "funding": [
  5679. {
  5680. "url": "https://symfony.com/sponsor",
  5681. "type": "custom"
  5682. },
  5683. {
  5684. "url": "https://github.com/fabpot",
  5685. "type": "github"
  5686. },
  5687. {
  5688. "url": "https://github.com/nicolas-grekas",
  5689. "type": "github"
  5690. },
  5691. {
  5692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5693. "type": "tidelift"
  5694. }
  5695. ],
  5696. "time": "2026-01-01T22:13:48+00:00"
  5697. },
  5698. {
  5699. "name": "tijsverkoyen/css-to-inline-styles",
  5700. "version": "v2.4.0",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5704. "reference": "f0292ccf0ec75843d65027214426b6b163b48b41"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41",
  5709. "reference": "f0292ccf0ec75843d65027214426b6b163b48b41",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "ext-dom": "*",
  5714. "ext-libxml": "*",
  5715. "php": "^7.4 || ^8.0",
  5716. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  5717. },
  5718. "require-dev": {
  5719. "phpstan/phpstan": "^2.0",
  5720. "phpstan/phpstan-phpunit": "^2.0",
  5721. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  5722. },
  5723. "type": "library",
  5724. "extra": {
  5725. "branch-alias": {
  5726. "dev-master": "2.x-dev"
  5727. }
  5728. },
  5729. "autoload": {
  5730. "psr-4": {
  5731. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5732. }
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "BSD-3-Clause"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Tijs Verkoyen",
  5741. "email": "css_to_inline_styles@verkoyen.eu",
  5742. "role": "Developer"
  5743. }
  5744. ],
  5745. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5746. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5747. "support": {
  5748. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5749. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0"
  5750. },
  5751. "time": "2025-12-02T11:56:42+00:00"
  5752. },
  5753. {
  5754. "name": "vlucas/phpdotenv",
  5755. "version": "v5.6.3",
  5756. "source": {
  5757. "type": "git",
  5758. "url": "https://github.com/vlucas/phpdotenv.git",
  5759. "reference": "955e7815d677a3eaa7075231212f2110983adecc"
  5760. },
  5761. "dist": {
  5762. "type": "zip",
  5763. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
  5764. "reference": "955e7815d677a3eaa7075231212f2110983adecc",
  5765. "shasum": ""
  5766. },
  5767. "require": {
  5768. "ext-pcre": "*",
  5769. "graham-campbell/result-type": "^1.1.4",
  5770. "php": "^7.2.5 || ^8.0",
  5771. "phpoption/phpoption": "^1.9.5",
  5772. "symfony/polyfill-ctype": "^1.26",
  5773. "symfony/polyfill-mbstring": "^1.26",
  5774. "symfony/polyfill-php80": "^1.26"
  5775. },
  5776. "require-dev": {
  5777. "bamarni/composer-bin-plugin": "^1.8.2",
  5778. "ext-filter": "*",
  5779. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5780. },
  5781. "suggest": {
  5782. "ext-filter": "Required to use the boolean validator."
  5783. },
  5784. "type": "library",
  5785. "extra": {
  5786. "bamarni-bin": {
  5787. "bin-links": true,
  5788. "forward-command": false
  5789. },
  5790. "branch-alias": {
  5791. "dev-master": "5.6-dev"
  5792. }
  5793. },
  5794. "autoload": {
  5795. "psr-4": {
  5796. "Dotenv\\": "src/"
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "BSD-3-Clause"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Graham Campbell",
  5806. "email": "hello@gjcampbell.co.uk",
  5807. "homepage": "https://github.com/GrahamCampbell"
  5808. },
  5809. {
  5810. "name": "Vance Lucas",
  5811. "email": "vance@vancelucas.com",
  5812. "homepage": "https://github.com/vlucas"
  5813. }
  5814. ],
  5815. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5816. "keywords": [
  5817. "dotenv",
  5818. "env",
  5819. "environment"
  5820. ],
  5821. "support": {
  5822. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5823. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
  5824. },
  5825. "funding": [
  5826. {
  5827. "url": "https://github.com/GrahamCampbell",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5832. "type": "tidelift"
  5833. }
  5834. ],
  5835. "time": "2025-12-27T19:49:13+00:00"
  5836. },
  5837. {
  5838. "name": "voku/portable-ascii",
  5839. "version": "2.0.3",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/voku/portable-ascii.git",
  5843. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  5848. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "php": ">=7.0.0"
  5853. },
  5854. "require-dev": {
  5855. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5856. },
  5857. "suggest": {
  5858. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5859. },
  5860. "type": "library",
  5861. "autoload": {
  5862. "psr-4": {
  5863. "voku\\": "src/voku/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "Lars Moelleken",
  5873. "homepage": "https://www.moelleken.org/"
  5874. }
  5875. ],
  5876. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5877. "homepage": "https://github.com/voku/portable-ascii",
  5878. "keywords": [
  5879. "ascii",
  5880. "clean",
  5881. "php"
  5882. ],
  5883. "support": {
  5884. "issues": "https://github.com/voku/portable-ascii/issues",
  5885. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  5886. },
  5887. "funding": [
  5888. {
  5889. "url": "https://www.paypal.me/moelleken",
  5890. "type": "custom"
  5891. },
  5892. {
  5893. "url": "https://github.com/voku",
  5894. "type": "github"
  5895. },
  5896. {
  5897. "url": "https://opencollective.com/portable-ascii",
  5898. "type": "open_collective"
  5899. },
  5900. {
  5901. "url": "https://www.patreon.com/voku",
  5902. "type": "patreon"
  5903. },
  5904. {
  5905. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5906. "type": "tidelift"
  5907. }
  5908. ],
  5909. "time": "2024-11-21T01:49:47+00:00"
  5910. }
  5911. ],
  5912. "packages-dev": [
  5913. {
  5914. "name": "fakerphp/faker",
  5915. "version": "v1.24.1",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/FakerPHP/Faker.git",
  5919. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  5924. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": "^7.4 || ^8.0",
  5929. "psr/container": "^1.0 || ^2.0",
  5930. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5931. },
  5932. "conflict": {
  5933. "fzaninotto/faker": "*"
  5934. },
  5935. "require-dev": {
  5936. "bamarni/composer-bin-plugin": "^1.4.1",
  5937. "doctrine/persistence": "^1.3 || ^2.0",
  5938. "ext-intl": "*",
  5939. "phpunit/phpunit": "^9.5.26",
  5940. "symfony/phpunit-bridge": "^5.4.16"
  5941. },
  5942. "suggest": {
  5943. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5944. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5945. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5946. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5947. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5948. },
  5949. "type": "library",
  5950. "autoload": {
  5951. "psr-4": {
  5952. "Faker\\": "src/Faker/"
  5953. }
  5954. },
  5955. "notification-url": "https://packagist.org/downloads/",
  5956. "license": [
  5957. "MIT"
  5958. ],
  5959. "authors": [
  5960. {
  5961. "name": "François Zaninotto"
  5962. }
  5963. ],
  5964. "description": "Faker is a PHP library that generates fake data for you.",
  5965. "keywords": [
  5966. "data",
  5967. "faker",
  5968. "fixtures"
  5969. ],
  5970. "support": {
  5971. "issues": "https://github.com/FakerPHP/Faker/issues",
  5972. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  5973. },
  5974. "time": "2024-11-21T13:46:39+00:00"
  5975. },
  5976. {
  5977. "name": "filp/whoops",
  5978. "version": "2.18.4",
  5979. "source": {
  5980. "type": "git",
  5981. "url": "https://github.com/filp/whoops.git",
  5982. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
  5983. },
  5984. "dist": {
  5985. "type": "zip",
  5986. "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  5987. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  5988. "shasum": ""
  5989. },
  5990. "require": {
  5991. "php": "^7.1 || ^8.0",
  5992. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5993. },
  5994. "require-dev": {
  5995. "mockery/mockery": "^1.0",
  5996. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  5997. "symfony/var-dumper": "^4.0 || ^5.0"
  5998. },
  5999. "suggest": {
  6000. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6001. "whoops/soap": "Formats errors as SOAP responses"
  6002. },
  6003. "type": "library",
  6004. "extra": {
  6005. "branch-alias": {
  6006. "dev-master": "2.7-dev"
  6007. }
  6008. },
  6009. "autoload": {
  6010. "psr-4": {
  6011. "Whoops\\": "src/Whoops/"
  6012. }
  6013. },
  6014. "notification-url": "https://packagist.org/downloads/",
  6015. "license": [
  6016. "MIT"
  6017. ],
  6018. "authors": [
  6019. {
  6020. "name": "Filipe Dobreira",
  6021. "homepage": "https://github.com/filp",
  6022. "role": "Developer"
  6023. }
  6024. ],
  6025. "description": "php error handling for cool kids",
  6026. "homepage": "https://filp.github.io/whoops/",
  6027. "keywords": [
  6028. "error",
  6029. "exception",
  6030. "handling",
  6031. "library",
  6032. "throwable",
  6033. "whoops"
  6034. ],
  6035. "support": {
  6036. "issues": "https://github.com/filp/whoops/issues",
  6037. "source": "https://github.com/filp/whoops/tree/2.18.4"
  6038. },
  6039. "funding": [
  6040. {
  6041. "url": "https://github.com/denis-sokolov",
  6042. "type": "github"
  6043. }
  6044. ],
  6045. "time": "2025-08-08T12:00:00+00:00"
  6046. },
  6047. {
  6048. "name": "hamcrest/hamcrest-php",
  6049. "version": "v2.1.1",
  6050. "source": {
  6051. "type": "git",
  6052. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6053. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  6054. },
  6055. "dist": {
  6056. "type": "zip",
  6057. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  6058. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  6059. "shasum": ""
  6060. },
  6061. "require": {
  6062. "php": "^7.4|^8.0"
  6063. },
  6064. "replace": {
  6065. "cordoval/hamcrest-php": "*",
  6066. "davedevelopment/hamcrest-php": "*",
  6067. "kodova/hamcrest-php": "*"
  6068. },
  6069. "require-dev": {
  6070. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  6071. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  6072. },
  6073. "type": "library",
  6074. "extra": {
  6075. "branch-alias": {
  6076. "dev-master": "2.1-dev"
  6077. }
  6078. },
  6079. "autoload": {
  6080. "classmap": [
  6081. "hamcrest"
  6082. ]
  6083. },
  6084. "notification-url": "https://packagist.org/downloads/",
  6085. "license": [
  6086. "BSD-3-Clause"
  6087. ],
  6088. "description": "This is the PHP port of Hamcrest Matchers",
  6089. "keywords": [
  6090. "test"
  6091. ],
  6092. "support": {
  6093. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6094. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  6095. },
  6096. "time": "2025-04-30T06:54:44+00:00"
  6097. },
  6098. {
  6099. "name": "laravel/pail",
  6100. "version": "v1.2.4",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/laravel/pail.git",
  6104. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/laravel/pail/zipball/49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  6109. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "ext-mbstring": "*",
  6114. "illuminate/console": "^10.24|^11.0|^12.0",
  6115. "illuminate/contracts": "^10.24|^11.0|^12.0",
  6116. "illuminate/log": "^10.24|^11.0|^12.0",
  6117. "illuminate/process": "^10.24|^11.0|^12.0",
  6118. "illuminate/support": "^10.24|^11.0|^12.0",
  6119. "nunomaduro/termwind": "^1.15|^2.0",
  6120. "php": "^8.2",
  6121. "symfony/console": "^6.0|^7.0"
  6122. },
  6123. "require-dev": {
  6124. "laravel/framework": "^10.24|^11.0|^12.0",
  6125. "laravel/pint": "^1.13",
  6126. "orchestra/testbench-core": "^8.13|^9.17|^10.8",
  6127. "pestphp/pest": "^2.20|^3.0|^4.0",
  6128. "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0",
  6129. "phpstan/phpstan": "^1.12.27",
  6130. "symfony/var-dumper": "^6.3|^7.0"
  6131. },
  6132. "type": "library",
  6133. "extra": {
  6134. "laravel": {
  6135. "providers": [
  6136. "Laravel\\Pail\\PailServiceProvider"
  6137. ]
  6138. },
  6139. "branch-alias": {
  6140. "dev-main": "1.x-dev"
  6141. }
  6142. },
  6143. "autoload": {
  6144. "psr-4": {
  6145. "Laravel\\Pail\\": "src/"
  6146. }
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Taylor Otwell",
  6155. "email": "taylor@laravel.com"
  6156. },
  6157. {
  6158. "name": "Nuno Maduro",
  6159. "email": "enunomaduro@gmail.com"
  6160. }
  6161. ],
  6162. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  6163. "homepage": "https://github.com/laravel/pail",
  6164. "keywords": [
  6165. "dev",
  6166. "laravel",
  6167. "logs",
  6168. "php",
  6169. "tail"
  6170. ],
  6171. "support": {
  6172. "issues": "https://github.com/laravel/pail/issues",
  6173. "source": "https://github.com/laravel/pail"
  6174. },
  6175. "time": "2025-11-20T16:29:35+00:00"
  6176. },
  6177. {
  6178. "name": "laravel/pint",
  6179. "version": "v1.27.0",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/laravel/pint.git",
  6183. "reference": "c67b4195b75491e4dfc6b00b1c78b68d86f54c90"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/laravel/pint/zipball/c67b4195b75491e4dfc6b00b1c78b68d86f54c90",
  6188. "reference": "c67b4195b75491e4dfc6b00b1c78b68d86f54c90",
  6189. "shasum": ""
  6190. },
  6191. "require": {
  6192. "ext-json": "*",
  6193. "ext-mbstring": "*",
  6194. "ext-tokenizer": "*",
  6195. "ext-xml": "*",
  6196. "php": "^8.2.0"
  6197. },
  6198. "require-dev": {
  6199. "friendsofphp/php-cs-fixer": "^3.92.4",
  6200. "illuminate/view": "^12.44.0",
  6201. "larastan/larastan": "^3.8.1",
  6202. "laravel-zero/framework": "^12.0.4",
  6203. "mockery/mockery": "^1.6.12",
  6204. "nunomaduro/termwind": "^2.3.3",
  6205. "pestphp/pest": "^3.8.4"
  6206. },
  6207. "bin": [
  6208. "builds/pint"
  6209. ],
  6210. "type": "project",
  6211. "autoload": {
  6212. "psr-4": {
  6213. "App\\": "app/",
  6214. "Database\\Seeders\\": "database/seeders/",
  6215. "Database\\Factories\\": "database/factories/"
  6216. }
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "MIT"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Nuno Maduro",
  6225. "email": "enunomaduro@gmail.com"
  6226. }
  6227. ],
  6228. "description": "An opinionated code formatter for PHP.",
  6229. "homepage": "https://laravel.com",
  6230. "keywords": [
  6231. "dev",
  6232. "format",
  6233. "formatter",
  6234. "lint",
  6235. "linter",
  6236. "php"
  6237. ],
  6238. "support": {
  6239. "issues": "https://github.com/laravel/pint/issues",
  6240. "source": "https://github.com/laravel/pint"
  6241. },
  6242. "time": "2026-01-05T16:49:17+00:00"
  6243. },
  6244. {
  6245. "name": "laravel/sail",
  6246. "version": "v1.52.0",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/laravel/sail.git",
  6250. "reference": "64ac7d8abb2dbcf2b76e61289451bae79066b0b3"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/laravel/sail/zipball/64ac7d8abb2dbcf2b76e61289451bae79066b0b3",
  6255. "reference": "64ac7d8abb2dbcf2b76e61289451bae79066b0b3",
  6256. "shasum": ""
  6257. },
  6258. "require": {
  6259. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  6260. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  6261. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  6262. "php": "^8.0",
  6263. "symfony/console": "^6.0|^7.0",
  6264. "symfony/yaml": "^6.0|^7.0"
  6265. },
  6266. "require-dev": {
  6267. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  6268. "phpstan/phpstan": "^2.0"
  6269. },
  6270. "bin": [
  6271. "bin/sail"
  6272. ],
  6273. "type": "library",
  6274. "extra": {
  6275. "laravel": {
  6276. "providers": [
  6277. "Laravel\\Sail\\SailServiceProvider"
  6278. ]
  6279. }
  6280. },
  6281. "autoload": {
  6282. "psr-4": {
  6283. "Laravel\\Sail\\": "src/"
  6284. }
  6285. },
  6286. "notification-url": "https://packagist.org/downloads/",
  6287. "license": [
  6288. "MIT"
  6289. ],
  6290. "authors": [
  6291. {
  6292. "name": "Taylor Otwell",
  6293. "email": "taylor@laravel.com"
  6294. }
  6295. ],
  6296. "description": "Docker files for running a basic Laravel application.",
  6297. "keywords": [
  6298. "docker",
  6299. "laravel"
  6300. ],
  6301. "support": {
  6302. "issues": "https://github.com/laravel/sail/issues",
  6303. "source": "https://github.com/laravel/sail"
  6304. },
  6305. "time": "2026-01-01T02:46:03+00:00"
  6306. },
  6307. {
  6308. "name": "mockery/mockery",
  6309. "version": "1.6.12",
  6310. "source": {
  6311. "type": "git",
  6312. "url": "https://github.com/mockery/mockery.git",
  6313. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  6314. },
  6315. "dist": {
  6316. "type": "zip",
  6317. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  6318. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  6319. "shasum": ""
  6320. },
  6321. "require": {
  6322. "hamcrest/hamcrest-php": "^2.0.1",
  6323. "lib-pcre": ">=7.0",
  6324. "php": ">=7.3"
  6325. },
  6326. "conflict": {
  6327. "phpunit/phpunit": "<8.0"
  6328. },
  6329. "require-dev": {
  6330. "phpunit/phpunit": "^8.5 || ^9.6.17",
  6331. "symplify/easy-coding-standard": "^12.1.14"
  6332. },
  6333. "type": "library",
  6334. "autoload": {
  6335. "files": [
  6336. "library/helpers.php",
  6337. "library/Mockery.php"
  6338. ],
  6339. "psr-4": {
  6340. "Mockery\\": "library/Mockery"
  6341. }
  6342. },
  6343. "notification-url": "https://packagist.org/downloads/",
  6344. "license": [
  6345. "BSD-3-Clause"
  6346. ],
  6347. "authors": [
  6348. {
  6349. "name": "Pádraic Brady",
  6350. "email": "padraic.brady@gmail.com",
  6351. "homepage": "https://github.com/padraic",
  6352. "role": "Author"
  6353. },
  6354. {
  6355. "name": "Dave Marshall",
  6356. "email": "dave.marshall@atstsolutions.co.uk",
  6357. "homepage": "https://davedevelopment.co.uk",
  6358. "role": "Developer"
  6359. },
  6360. {
  6361. "name": "Nathanael Esayeas",
  6362. "email": "nathanael.esayeas@protonmail.com",
  6363. "homepage": "https://github.com/ghostwriter",
  6364. "role": "Lead Developer"
  6365. }
  6366. ],
  6367. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6368. "homepage": "https://github.com/mockery/mockery",
  6369. "keywords": [
  6370. "BDD",
  6371. "TDD",
  6372. "library",
  6373. "mock",
  6374. "mock objects",
  6375. "mockery",
  6376. "stub",
  6377. "test",
  6378. "test double",
  6379. "testing"
  6380. ],
  6381. "support": {
  6382. "docs": "https://docs.mockery.io/",
  6383. "issues": "https://github.com/mockery/mockery/issues",
  6384. "rss": "https://github.com/mockery/mockery/releases.atom",
  6385. "security": "https://github.com/mockery/mockery/security/advisories",
  6386. "source": "https://github.com/mockery/mockery"
  6387. },
  6388. "time": "2024-05-16T03:13:13+00:00"
  6389. },
  6390. {
  6391. "name": "myclabs/deep-copy",
  6392. "version": "1.13.4",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://github.com/myclabs/DeepCopy.git",
  6396. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  6401. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  6402. "shasum": ""
  6403. },
  6404. "require": {
  6405. "php": "^7.1 || ^8.0"
  6406. },
  6407. "conflict": {
  6408. "doctrine/collections": "<1.6.8",
  6409. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  6410. },
  6411. "require-dev": {
  6412. "doctrine/collections": "^1.6.8",
  6413. "doctrine/common": "^2.13.3 || ^3.2.2",
  6414. "phpspec/prophecy": "^1.10",
  6415. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6416. },
  6417. "type": "library",
  6418. "autoload": {
  6419. "files": [
  6420. "src/DeepCopy/deep_copy.php"
  6421. ],
  6422. "psr-4": {
  6423. "DeepCopy\\": "src/DeepCopy/"
  6424. }
  6425. },
  6426. "notification-url": "https://packagist.org/downloads/",
  6427. "license": [
  6428. "MIT"
  6429. ],
  6430. "description": "Create deep copies (clones) of your objects",
  6431. "keywords": [
  6432. "clone",
  6433. "copy",
  6434. "duplicate",
  6435. "object",
  6436. "object graph"
  6437. ],
  6438. "support": {
  6439. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6440. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  6441. },
  6442. "funding": [
  6443. {
  6444. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6445. "type": "tidelift"
  6446. }
  6447. ],
  6448. "time": "2025-08-01T08:46:24+00:00"
  6449. },
  6450. {
  6451. "name": "nunomaduro/collision",
  6452. "version": "v8.8.3",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://github.com/nunomaduro/collision.git",
  6456. "reference": "1dc9e88d105699d0fee8bb18890f41b274f6b4c4"
  6457. },
  6458. "dist": {
  6459. "type": "zip",
  6460. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/1dc9e88d105699d0fee8bb18890f41b274f6b4c4",
  6461. "reference": "1dc9e88d105699d0fee8bb18890f41b274f6b4c4",
  6462. "shasum": ""
  6463. },
  6464. "require": {
  6465. "filp/whoops": "^2.18.1",
  6466. "nunomaduro/termwind": "^2.3.1",
  6467. "php": "^8.2.0",
  6468. "symfony/console": "^7.3.0"
  6469. },
  6470. "conflict": {
  6471. "laravel/framework": "<11.44.2 || >=13.0.0",
  6472. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  6473. },
  6474. "require-dev": {
  6475. "brianium/paratest": "^7.8.3",
  6476. "larastan/larastan": "^3.4.2",
  6477. "laravel/framework": "^11.44.2 || ^12.18",
  6478. "laravel/pint": "^1.22.1",
  6479. "laravel/sail": "^1.43.1",
  6480. "laravel/sanctum": "^4.1.1",
  6481. "laravel/tinker": "^2.10.1",
  6482. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  6483. "pestphp/pest": "^3.8.2 || ^4.0.0",
  6484. "sebastian/environment": "^7.2.1 || ^8.0"
  6485. },
  6486. "type": "library",
  6487. "extra": {
  6488. "laravel": {
  6489. "providers": [
  6490. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6491. ]
  6492. },
  6493. "branch-alias": {
  6494. "dev-8.x": "8.x-dev"
  6495. }
  6496. },
  6497. "autoload": {
  6498. "files": [
  6499. "./src/Adapters/Phpunit/Autoload.php"
  6500. ],
  6501. "psr-4": {
  6502. "NunoMaduro\\Collision\\": "src/"
  6503. }
  6504. },
  6505. "notification-url": "https://packagist.org/downloads/",
  6506. "license": [
  6507. "MIT"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "Nuno Maduro",
  6512. "email": "enunomaduro@gmail.com"
  6513. }
  6514. ],
  6515. "description": "Cli error handling for console/command-line PHP applications.",
  6516. "keywords": [
  6517. "artisan",
  6518. "cli",
  6519. "command-line",
  6520. "console",
  6521. "dev",
  6522. "error",
  6523. "handling",
  6524. "laravel",
  6525. "laravel-zero",
  6526. "php",
  6527. "symfony"
  6528. ],
  6529. "support": {
  6530. "issues": "https://github.com/nunomaduro/collision/issues",
  6531. "source": "https://github.com/nunomaduro/collision"
  6532. },
  6533. "funding": [
  6534. {
  6535. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6536. "type": "custom"
  6537. },
  6538. {
  6539. "url": "https://github.com/nunomaduro",
  6540. "type": "github"
  6541. },
  6542. {
  6543. "url": "https://www.patreon.com/nunomaduro",
  6544. "type": "patreon"
  6545. }
  6546. ],
  6547. "time": "2025-11-20T02:55:25+00:00"
  6548. },
  6549. {
  6550. "name": "phar-io/manifest",
  6551. "version": "2.0.4",
  6552. "source": {
  6553. "type": "git",
  6554. "url": "https://github.com/phar-io/manifest.git",
  6555. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  6556. },
  6557. "dist": {
  6558. "type": "zip",
  6559. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  6560. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  6561. "shasum": ""
  6562. },
  6563. "require": {
  6564. "ext-dom": "*",
  6565. "ext-libxml": "*",
  6566. "ext-phar": "*",
  6567. "ext-xmlwriter": "*",
  6568. "phar-io/version": "^3.0.1",
  6569. "php": "^7.2 || ^8.0"
  6570. },
  6571. "type": "library",
  6572. "extra": {
  6573. "branch-alias": {
  6574. "dev-master": "2.0.x-dev"
  6575. }
  6576. },
  6577. "autoload": {
  6578. "classmap": [
  6579. "src/"
  6580. ]
  6581. },
  6582. "notification-url": "https://packagist.org/downloads/",
  6583. "license": [
  6584. "BSD-3-Clause"
  6585. ],
  6586. "authors": [
  6587. {
  6588. "name": "Arne Blankerts",
  6589. "email": "arne@blankerts.de",
  6590. "role": "Developer"
  6591. },
  6592. {
  6593. "name": "Sebastian Heuer",
  6594. "email": "sebastian@phpeople.de",
  6595. "role": "Developer"
  6596. },
  6597. {
  6598. "name": "Sebastian Bergmann",
  6599. "email": "sebastian@phpunit.de",
  6600. "role": "Developer"
  6601. }
  6602. ],
  6603. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6604. "support": {
  6605. "issues": "https://github.com/phar-io/manifest/issues",
  6606. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  6607. },
  6608. "funding": [
  6609. {
  6610. "url": "https://github.com/theseer",
  6611. "type": "github"
  6612. }
  6613. ],
  6614. "time": "2024-03-03T12:33:53+00:00"
  6615. },
  6616. {
  6617. "name": "phar-io/version",
  6618. "version": "3.2.1",
  6619. "source": {
  6620. "type": "git",
  6621. "url": "https://github.com/phar-io/version.git",
  6622. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6623. },
  6624. "dist": {
  6625. "type": "zip",
  6626. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6627. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6628. "shasum": ""
  6629. },
  6630. "require": {
  6631. "php": "^7.2 || ^8.0"
  6632. },
  6633. "type": "library",
  6634. "autoload": {
  6635. "classmap": [
  6636. "src/"
  6637. ]
  6638. },
  6639. "notification-url": "https://packagist.org/downloads/",
  6640. "license": [
  6641. "BSD-3-Clause"
  6642. ],
  6643. "authors": [
  6644. {
  6645. "name": "Arne Blankerts",
  6646. "email": "arne@blankerts.de",
  6647. "role": "Developer"
  6648. },
  6649. {
  6650. "name": "Sebastian Heuer",
  6651. "email": "sebastian@phpeople.de",
  6652. "role": "Developer"
  6653. },
  6654. {
  6655. "name": "Sebastian Bergmann",
  6656. "email": "sebastian@phpunit.de",
  6657. "role": "Developer"
  6658. }
  6659. ],
  6660. "description": "Library for handling version information and constraints",
  6661. "support": {
  6662. "issues": "https://github.com/phar-io/version/issues",
  6663. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6664. },
  6665. "time": "2022-02-21T01:04:05+00:00"
  6666. },
  6667. {
  6668. "name": "phpunit/php-code-coverage",
  6669. "version": "11.0.12",
  6670. "source": {
  6671. "type": "git",
  6672. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6673. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
  6674. },
  6675. "dist": {
  6676. "type": "zip",
  6677. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
  6678. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
  6679. "shasum": ""
  6680. },
  6681. "require": {
  6682. "ext-dom": "*",
  6683. "ext-libxml": "*",
  6684. "ext-xmlwriter": "*",
  6685. "nikic/php-parser": "^5.7.0",
  6686. "php": ">=8.2",
  6687. "phpunit/php-file-iterator": "^5.1.0",
  6688. "phpunit/php-text-template": "^4.0.1",
  6689. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  6690. "sebastian/complexity": "^4.0.1",
  6691. "sebastian/environment": "^7.2.1",
  6692. "sebastian/lines-of-code": "^3.0.1",
  6693. "sebastian/version": "^5.0.2",
  6694. "theseer/tokenizer": "^1.3.1"
  6695. },
  6696. "require-dev": {
  6697. "phpunit/phpunit": "^11.5.46"
  6698. },
  6699. "suggest": {
  6700. "ext-pcov": "PHP extension that provides line coverage",
  6701. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6702. },
  6703. "type": "library",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-main": "11.0.x-dev"
  6707. }
  6708. },
  6709. "autoload": {
  6710. "classmap": [
  6711. "src/"
  6712. ]
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "BSD-3-Clause"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "Sebastian Bergmann",
  6721. "email": "sebastian@phpunit.de",
  6722. "role": "lead"
  6723. }
  6724. ],
  6725. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6726. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6727. "keywords": [
  6728. "coverage",
  6729. "testing",
  6730. "xunit"
  6731. ],
  6732. "support": {
  6733. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6734. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  6735. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
  6736. },
  6737. "funding": [
  6738. {
  6739. "url": "https://github.com/sebastianbergmann",
  6740. "type": "github"
  6741. },
  6742. {
  6743. "url": "https://liberapay.com/sebastianbergmann",
  6744. "type": "liberapay"
  6745. },
  6746. {
  6747. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  6748. "type": "thanks_dev"
  6749. },
  6750. {
  6751. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  6752. "type": "tidelift"
  6753. }
  6754. ],
  6755. "time": "2025-12-24T07:01:01+00:00"
  6756. },
  6757. {
  6758. "name": "phpunit/php-file-iterator",
  6759. "version": "5.1.0",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6763. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  6768. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "php": ">=8.2"
  6773. },
  6774. "require-dev": {
  6775. "phpunit/phpunit": "^11.0"
  6776. },
  6777. "type": "library",
  6778. "extra": {
  6779. "branch-alias": {
  6780. "dev-main": "5.0-dev"
  6781. }
  6782. },
  6783. "autoload": {
  6784. "classmap": [
  6785. "src/"
  6786. ]
  6787. },
  6788. "notification-url": "https://packagist.org/downloads/",
  6789. "license": [
  6790. "BSD-3-Clause"
  6791. ],
  6792. "authors": [
  6793. {
  6794. "name": "Sebastian Bergmann",
  6795. "email": "sebastian@phpunit.de",
  6796. "role": "lead"
  6797. }
  6798. ],
  6799. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6800. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6801. "keywords": [
  6802. "filesystem",
  6803. "iterator"
  6804. ],
  6805. "support": {
  6806. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6807. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  6808. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  6809. },
  6810. "funding": [
  6811. {
  6812. "url": "https://github.com/sebastianbergmann",
  6813. "type": "github"
  6814. }
  6815. ],
  6816. "time": "2024-08-27T05:02:59+00:00"
  6817. },
  6818. {
  6819. "name": "phpunit/php-invoker",
  6820. "version": "5.0.1",
  6821. "source": {
  6822. "type": "git",
  6823. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6824. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  6825. },
  6826. "dist": {
  6827. "type": "zip",
  6828. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  6829. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  6830. "shasum": ""
  6831. },
  6832. "require": {
  6833. "php": ">=8.2"
  6834. },
  6835. "require-dev": {
  6836. "ext-pcntl": "*",
  6837. "phpunit/phpunit": "^11.0"
  6838. },
  6839. "suggest": {
  6840. "ext-pcntl": "*"
  6841. },
  6842. "type": "library",
  6843. "extra": {
  6844. "branch-alias": {
  6845. "dev-main": "5.0-dev"
  6846. }
  6847. },
  6848. "autoload": {
  6849. "classmap": [
  6850. "src/"
  6851. ]
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "BSD-3-Clause"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "Sebastian Bergmann",
  6860. "email": "sebastian@phpunit.de",
  6861. "role": "lead"
  6862. }
  6863. ],
  6864. "description": "Invoke callables with a timeout",
  6865. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6866. "keywords": [
  6867. "process"
  6868. ],
  6869. "support": {
  6870. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6871. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  6872. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  6873. },
  6874. "funding": [
  6875. {
  6876. "url": "https://github.com/sebastianbergmann",
  6877. "type": "github"
  6878. }
  6879. ],
  6880. "time": "2024-07-03T05:07:44+00:00"
  6881. },
  6882. {
  6883. "name": "phpunit/php-text-template",
  6884. "version": "4.0.1",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6888. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  6893. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  6894. "shasum": ""
  6895. },
  6896. "require": {
  6897. "php": ">=8.2"
  6898. },
  6899. "require-dev": {
  6900. "phpunit/phpunit": "^11.0"
  6901. },
  6902. "type": "library",
  6903. "extra": {
  6904. "branch-alias": {
  6905. "dev-main": "4.0-dev"
  6906. }
  6907. },
  6908. "autoload": {
  6909. "classmap": [
  6910. "src/"
  6911. ]
  6912. },
  6913. "notification-url": "https://packagist.org/downloads/",
  6914. "license": [
  6915. "BSD-3-Clause"
  6916. ],
  6917. "authors": [
  6918. {
  6919. "name": "Sebastian Bergmann",
  6920. "email": "sebastian@phpunit.de",
  6921. "role": "lead"
  6922. }
  6923. ],
  6924. "description": "Simple template engine.",
  6925. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6926. "keywords": [
  6927. "template"
  6928. ],
  6929. "support": {
  6930. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6931. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  6932. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://github.com/sebastianbergmann",
  6937. "type": "github"
  6938. }
  6939. ],
  6940. "time": "2024-07-03T05:08:43+00:00"
  6941. },
  6942. {
  6943. "name": "phpunit/php-timer",
  6944. "version": "7.0.1",
  6945. "source": {
  6946. "type": "git",
  6947. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6948. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  6949. },
  6950. "dist": {
  6951. "type": "zip",
  6952. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  6953. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  6954. "shasum": ""
  6955. },
  6956. "require": {
  6957. "php": ">=8.2"
  6958. },
  6959. "require-dev": {
  6960. "phpunit/phpunit": "^11.0"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "branch-alias": {
  6965. "dev-main": "7.0-dev"
  6966. }
  6967. },
  6968. "autoload": {
  6969. "classmap": [
  6970. "src/"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "BSD-3-Clause"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Sebastian Bergmann",
  6980. "email": "sebastian@phpunit.de",
  6981. "role": "lead"
  6982. }
  6983. ],
  6984. "description": "Utility class for timing",
  6985. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6986. "keywords": [
  6987. "timer"
  6988. ],
  6989. "support": {
  6990. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6991. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  6992. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  6993. },
  6994. "funding": [
  6995. {
  6996. "url": "https://github.com/sebastianbergmann",
  6997. "type": "github"
  6998. }
  6999. ],
  7000. "time": "2024-07-03T05:09:35+00:00"
  7001. },
  7002. {
  7003. "name": "phpunit/phpunit",
  7004. "version": "11.5.50",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7008. "reference": "fdfc727f0fcacfeb8fcb30c7e5da173125b58be3"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fdfc727f0fcacfeb8fcb30c7e5da173125b58be3",
  7013. "reference": "fdfc727f0fcacfeb8fcb30c7e5da173125b58be3",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "ext-dom": "*",
  7018. "ext-json": "*",
  7019. "ext-libxml": "*",
  7020. "ext-mbstring": "*",
  7021. "ext-xml": "*",
  7022. "ext-xmlwriter": "*",
  7023. "myclabs/deep-copy": "^1.13.4",
  7024. "phar-io/manifest": "^2.0.4",
  7025. "phar-io/version": "^3.2.1",
  7026. "php": ">=8.2",
  7027. "phpunit/php-code-coverage": "^11.0.12",
  7028. "phpunit/php-file-iterator": "^5.1.0",
  7029. "phpunit/php-invoker": "^5.0.1",
  7030. "phpunit/php-text-template": "^4.0.1",
  7031. "phpunit/php-timer": "^7.0.1",
  7032. "sebastian/cli-parser": "^3.0.2",
  7033. "sebastian/code-unit": "^3.0.3",
  7034. "sebastian/comparator": "^6.3.3",
  7035. "sebastian/diff": "^6.0.2",
  7036. "sebastian/environment": "^7.2.1",
  7037. "sebastian/exporter": "^6.3.2",
  7038. "sebastian/global-state": "^7.0.2",
  7039. "sebastian/object-enumerator": "^6.0.1",
  7040. "sebastian/type": "^5.1.3",
  7041. "sebastian/version": "^5.0.2",
  7042. "staabm/side-effects-detector": "^1.0.5"
  7043. },
  7044. "suggest": {
  7045. "ext-soap": "To be able to generate mocks based on WSDL files"
  7046. },
  7047. "bin": [
  7048. "phpunit"
  7049. ],
  7050. "type": "library",
  7051. "extra": {
  7052. "branch-alias": {
  7053. "dev-main": "11.5-dev"
  7054. }
  7055. },
  7056. "autoload": {
  7057. "files": [
  7058. "src/Framework/Assert/Functions.php"
  7059. ],
  7060. "classmap": [
  7061. "src/"
  7062. ]
  7063. },
  7064. "notification-url": "https://packagist.org/downloads/",
  7065. "license": [
  7066. "BSD-3-Clause"
  7067. ],
  7068. "authors": [
  7069. {
  7070. "name": "Sebastian Bergmann",
  7071. "email": "sebastian@phpunit.de",
  7072. "role": "lead"
  7073. }
  7074. ],
  7075. "description": "The PHP Unit Testing framework.",
  7076. "homepage": "https://phpunit.de/",
  7077. "keywords": [
  7078. "phpunit",
  7079. "testing",
  7080. "xunit"
  7081. ],
  7082. "support": {
  7083. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7084. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7085. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.50"
  7086. },
  7087. "funding": [
  7088. {
  7089. "url": "https://phpunit.de/sponsors.html",
  7090. "type": "custom"
  7091. },
  7092. {
  7093. "url": "https://github.com/sebastianbergmann",
  7094. "type": "github"
  7095. },
  7096. {
  7097. "url": "https://liberapay.com/sebastianbergmann",
  7098. "type": "liberapay"
  7099. },
  7100. {
  7101. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7102. "type": "thanks_dev"
  7103. },
  7104. {
  7105. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7106. "type": "tidelift"
  7107. }
  7108. ],
  7109. "time": "2026-01-27T05:59:18+00:00"
  7110. },
  7111. {
  7112. "name": "sebastian/cli-parser",
  7113. "version": "3.0.2",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7117. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  7122. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "php": ">=8.2"
  7127. },
  7128. "require-dev": {
  7129. "phpunit/phpunit": "^11.0"
  7130. },
  7131. "type": "library",
  7132. "extra": {
  7133. "branch-alias": {
  7134. "dev-main": "3.0-dev"
  7135. }
  7136. },
  7137. "autoload": {
  7138. "classmap": [
  7139. "src/"
  7140. ]
  7141. },
  7142. "notification-url": "https://packagist.org/downloads/",
  7143. "license": [
  7144. "BSD-3-Clause"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "Sebastian Bergmann",
  7149. "email": "sebastian@phpunit.de",
  7150. "role": "lead"
  7151. }
  7152. ],
  7153. "description": "Library for parsing CLI options",
  7154. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7155. "support": {
  7156. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7157. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  7158. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  7159. },
  7160. "funding": [
  7161. {
  7162. "url": "https://github.com/sebastianbergmann",
  7163. "type": "github"
  7164. }
  7165. ],
  7166. "time": "2024-07-03T04:41:36+00:00"
  7167. },
  7168. {
  7169. "name": "sebastian/code-unit",
  7170. "version": "3.0.3",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7174. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  7179. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "php": ">=8.2"
  7184. },
  7185. "require-dev": {
  7186. "phpunit/phpunit": "^11.5"
  7187. },
  7188. "type": "library",
  7189. "extra": {
  7190. "branch-alias": {
  7191. "dev-main": "3.0-dev"
  7192. }
  7193. },
  7194. "autoload": {
  7195. "classmap": [
  7196. "src/"
  7197. ]
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "BSD-3-Clause"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Sebastian Bergmann",
  7206. "email": "sebastian@phpunit.de",
  7207. "role": "lead"
  7208. }
  7209. ],
  7210. "description": "Collection of value objects that represent the PHP code units",
  7211. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7212. "support": {
  7213. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7214. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  7215. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  7216. },
  7217. "funding": [
  7218. {
  7219. "url": "https://github.com/sebastianbergmann",
  7220. "type": "github"
  7221. }
  7222. ],
  7223. "time": "2025-03-19T07:56:08+00:00"
  7224. },
  7225. {
  7226. "name": "sebastian/code-unit-reverse-lookup",
  7227. "version": "4.0.1",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7231. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  7236. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  7237. "shasum": ""
  7238. },
  7239. "require": {
  7240. "php": ">=8.2"
  7241. },
  7242. "require-dev": {
  7243. "phpunit/phpunit": "^11.0"
  7244. },
  7245. "type": "library",
  7246. "extra": {
  7247. "branch-alias": {
  7248. "dev-main": "4.0-dev"
  7249. }
  7250. },
  7251. "autoload": {
  7252. "classmap": [
  7253. "src/"
  7254. ]
  7255. },
  7256. "notification-url": "https://packagist.org/downloads/",
  7257. "license": [
  7258. "BSD-3-Clause"
  7259. ],
  7260. "authors": [
  7261. {
  7262. "name": "Sebastian Bergmann",
  7263. "email": "sebastian@phpunit.de"
  7264. }
  7265. ],
  7266. "description": "Looks up which function or method a line of code belongs to",
  7267. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7268. "support": {
  7269. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7270. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  7271. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  7272. },
  7273. "funding": [
  7274. {
  7275. "url": "https://github.com/sebastianbergmann",
  7276. "type": "github"
  7277. }
  7278. ],
  7279. "time": "2024-07-03T04:45:54+00:00"
  7280. },
  7281. {
  7282. "name": "sebastian/comparator",
  7283. "version": "6.3.3",
  7284. "source": {
  7285. "type": "git",
  7286. "url": "https://github.com/sebastianbergmann/comparator.git",
  7287. "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9"
  7288. },
  7289. "dist": {
  7290. "type": "zip",
  7291. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
  7292. "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
  7293. "shasum": ""
  7294. },
  7295. "require": {
  7296. "ext-dom": "*",
  7297. "ext-mbstring": "*",
  7298. "php": ">=8.2",
  7299. "sebastian/diff": "^6.0",
  7300. "sebastian/exporter": "^6.0"
  7301. },
  7302. "require-dev": {
  7303. "phpunit/phpunit": "^11.4"
  7304. },
  7305. "suggest": {
  7306. "ext-bcmath": "For comparing BcMath\\Number objects"
  7307. },
  7308. "type": "library",
  7309. "extra": {
  7310. "branch-alias": {
  7311. "dev-main": "6.3-dev"
  7312. }
  7313. },
  7314. "autoload": {
  7315. "classmap": [
  7316. "src/"
  7317. ]
  7318. },
  7319. "notification-url": "https://packagist.org/downloads/",
  7320. "license": [
  7321. "BSD-3-Clause"
  7322. ],
  7323. "authors": [
  7324. {
  7325. "name": "Sebastian Bergmann",
  7326. "email": "sebastian@phpunit.de"
  7327. },
  7328. {
  7329. "name": "Jeff Welch",
  7330. "email": "whatthejeff@gmail.com"
  7331. },
  7332. {
  7333. "name": "Volker Dusch",
  7334. "email": "github@wallbash.com"
  7335. },
  7336. {
  7337. "name": "Bernhard Schussek",
  7338. "email": "bschussek@2bepublished.at"
  7339. }
  7340. ],
  7341. "description": "Provides the functionality to compare PHP values for equality",
  7342. "homepage": "https://github.com/sebastianbergmann/comparator",
  7343. "keywords": [
  7344. "comparator",
  7345. "compare",
  7346. "equality"
  7347. ],
  7348. "support": {
  7349. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7350. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  7351. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.3"
  7352. },
  7353. "funding": [
  7354. {
  7355. "url": "https://github.com/sebastianbergmann",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://liberapay.com/sebastianbergmann",
  7360. "type": "liberapay"
  7361. },
  7362. {
  7363. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7364. "type": "thanks_dev"
  7365. },
  7366. {
  7367. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  7368. "type": "tidelift"
  7369. }
  7370. ],
  7371. "time": "2026-01-24T09:26:40+00:00"
  7372. },
  7373. {
  7374. "name": "sebastian/complexity",
  7375. "version": "4.0.1",
  7376. "source": {
  7377. "type": "git",
  7378. "url": "https://github.com/sebastianbergmann/complexity.git",
  7379. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  7380. },
  7381. "dist": {
  7382. "type": "zip",
  7383. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  7384. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  7385. "shasum": ""
  7386. },
  7387. "require": {
  7388. "nikic/php-parser": "^5.0",
  7389. "php": ">=8.2"
  7390. },
  7391. "require-dev": {
  7392. "phpunit/phpunit": "^11.0"
  7393. },
  7394. "type": "library",
  7395. "extra": {
  7396. "branch-alias": {
  7397. "dev-main": "4.0-dev"
  7398. }
  7399. },
  7400. "autoload": {
  7401. "classmap": [
  7402. "src/"
  7403. ]
  7404. },
  7405. "notification-url": "https://packagist.org/downloads/",
  7406. "license": [
  7407. "BSD-3-Clause"
  7408. ],
  7409. "authors": [
  7410. {
  7411. "name": "Sebastian Bergmann",
  7412. "email": "sebastian@phpunit.de",
  7413. "role": "lead"
  7414. }
  7415. ],
  7416. "description": "Library for calculating the complexity of PHP code units",
  7417. "homepage": "https://github.com/sebastianbergmann/complexity",
  7418. "support": {
  7419. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7420. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  7421. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  7422. },
  7423. "funding": [
  7424. {
  7425. "url": "https://github.com/sebastianbergmann",
  7426. "type": "github"
  7427. }
  7428. ],
  7429. "time": "2024-07-03T04:49:50+00:00"
  7430. },
  7431. {
  7432. "name": "sebastian/diff",
  7433. "version": "6.0.2",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://github.com/sebastianbergmann/diff.git",
  7437. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  7442. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  7443. "shasum": ""
  7444. },
  7445. "require": {
  7446. "php": ">=8.2"
  7447. },
  7448. "require-dev": {
  7449. "phpunit/phpunit": "^11.0",
  7450. "symfony/process": "^4.2 || ^5"
  7451. },
  7452. "type": "library",
  7453. "extra": {
  7454. "branch-alias": {
  7455. "dev-main": "6.0-dev"
  7456. }
  7457. },
  7458. "autoload": {
  7459. "classmap": [
  7460. "src/"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "BSD-3-Clause"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Sebastian Bergmann",
  7470. "email": "sebastian@phpunit.de"
  7471. },
  7472. {
  7473. "name": "Kore Nordmann",
  7474. "email": "mail@kore-nordmann.de"
  7475. }
  7476. ],
  7477. "description": "Diff implementation",
  7478. "homepage": "https://github.com/sebastianbergmann/diff",
  7479. "keywords": [
  7480. "diff",
  7481. "udiff",
  7482. "unidiff",
  7483. "unified diff"
  7484. ],
  7485. "support": {
  7486. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7487. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  7488. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  7489. },
  7490. "funding": [
  7491. {
  7492. "url": "https://github.com/sebastianbergmann",
  7493. "type": "github"
  7494. }
  7495. ],
  7496. "time": "2024-07-03T04:53:05+00:00"
  7497. },
  7498. {
  7499. "name": "sebastian/environment",
  7500. "version": "7.2.1",
  7501. "source": {
  7502. "type": "git",
  7503. "url": "https://github.com/sebastianbergmann/environment.git",
  7504. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  7505. },
  7506. "dist": {
  7507. "type": "zip",
  7508. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  7509. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  7510. "shasum": ""
  7511. },
  7512. "require": {
  7513. "php": ">=8.2"
  7514. },
  7515. "require-dev": {
  7516. "phpunit/phpunit": "^11.3"
  7517. },
  7518. "suggest": {
  7519. "ext-posix": "*"
  7520. },
  7521. "type": "library",
  7522. "extra": {
  7523. "branch-alias": {
  7524. "dev-main": "7.2-dev"
  7525. }
  7526. },
  7527. "autoload": {
  7528. "classmap": [
  7529. "src/"
  7530. ]
  7531. },
  7532. "notification-url": "https://packagist.org/downloads/",
  7533. "license": [
  7534. "BSD-3-Clause"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Sebastian Bergmann",
  7539. "email": "sebastian@phpunit.de"
  7540. }
  7541. ],
  7542. "description": "Provides functionality to handle HHVM/PHP environments",
  7543. "homepage": "https://github.com/sebastianbergmann/environment",
  7544. "keywords": [
  7545. "Xdebug",
  7546. "environment",
  7547. "hhvm"
  7548. ],
  7549. "support": {
  7550. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7551. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  7552. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://github.com/sebastianbergmann",
  7557. "type": "github"
  7558. },
  7559. {
  7560. "url": "https://liberapay.com/sebastianbergmann",
  7561. "type": "liberapay"
  7562. },
  7563. {
  7564. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7565. "type": "thanks_dev"
  7566. },
  7567. {
  7568. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  7569. "type": "tidelift"
  7570. }
  7571. ],
  7572. "time": "2025-05-21T11:55:47+00:00"
  7573. },
  7574. {
  7575. "name": "sebastian/exporter",
  7576. "version": "6.3.2",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/sebastianbergmann/exporter.git",
  7580. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
  7585. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "ext-mbstring": "*",
  7590. "php": ">=8.2",
  7591. "sebastian/recursion-context": "^6.0"
  7592. },
  7593. "require-dev": {
  7594. "phpunit/phpunit": "^11.3"
  7595. },
  7596. "type": "library",
  7597. "extra": {
  7598. "branch-alias": {
  7599. "dev-main": "6.3-dev"
  7600. }
  7601. },
  7602. "autoload": {
  7603. "classmap": [
  7604. "src/"
  7605. ]
  7606. },
  7607. "notification-url": "https://packagist.org/downloads/",
  7608. "license": [
  7609. "BSD-3-Clause"
  7610. ],
  7611. "authors": [
  7612. {
  7613. "name": "Sebastian Bergmann",
  7614. "email": "sebastian@phpunit.de"
  7615. },
  7616. {
  7617. "name": "Jeff Welch",
  7618. "email": "whatthejeff@gmail.com"
  7619. },
  7620. {
  7621. "name": "Volker Dusch",
  7622. "email": "github@wallbash.com"
  7623. },
  7624. {
  7625. "name": "Adam Harvey",
  7626. "email": "aharvey@php.net"
  7627. },
  7628. {
  7629. "name": "Bernhard Schussek",
  7630. "email": "bschussek@gmail.com"
  7631. }
  7632. ],
  7633. "description": "Provides the functionality to export PHP variables for visualization",
  7634. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7635. "keywords": [
  7636. "export",
  7637. "exporter"
  7638. ],
  7639. "support": {
  7640. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7641. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  7642. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
  7643. },
  7644. "funding": [
  7645. {
  7646. "url": "https://github.com/sebastianbergmann",
  7647. "type": "github"
  7648. },
  7649. {
  7650. "url": "https://liberapay.com/sebastianbergmann",
  7651. "type": "liberapay"
  7652. },
  7653. {
  7654. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7655. "type": "thanks_dev"
  7656. },
  7657. {
  7658. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  7659. "type": "tidelift"
  7660. }
  7661. ],
  7662. "time": "2025-09-24T06:12:51+00:00"
  7663. },
  7664. {
  7665. "name": "sebastian/global-state",
  7666. "version": "7.0.2",
  7667. "source": {
  7668. "type": "git",
  7669. "url": "https://github.com/sebastianbergmann/global-state.git",
  7670. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  7671. },
  7672. "dist": {
  7673. "type": "zip",
  7674. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  7675. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  7676. "shasum": ""
  7677. },
  7678. "require": {
  7679. "php": ">=8.2",
  7680. "sebastian/object-reflector": "^4.0",
  7681. "sebastian/recursion-context": "^6.0"
  7682. },
  7683. "require-dev": {
  7684. "ext-dom": "*",
  7685. "phpunit/phpunit": "^11.0"
  7686. },
  7687. "type": "library",
  7688. "extra": {
  7689. "branch-alias": {
  7690. "dev-main": "7.0-dev"
  7691. }
  7692. },
  7693. "autoload": {
  7694. "classmap": [
  7695. "src/"
  7696. ]
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "BSD-3-Clause"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Sebastian Bergmann",
  7705. "email": "sebastian@phpunit.de"
  7706. }
  7707. ],
  7708. "description": "Snapshotting of global state",
  7709. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  7710. "keywords": [
  7711. "global state"
  7712. ],
  7713. "support": {
  7714. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7715. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  7716. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  7717. },
  7718. "funding": [
  7719. {
  7720. "url": "https://github.com/sebastianbergmann",
  7721. "type": "github"
  7722. }
  7723. ],
  7724. "time": "2024-07-03T04:57:36+00:00"
  7725. },
  7726. {
  7727. "name": "sebastian/lines-of-code",
  7728. "version": "3.0.1",
  7729. "source": {
  7730. "type": "git",
  7731. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7732. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  7733. },
  7734. "dist": {
  7735. "type": "zip",
  7736. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  7737. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  7738. "shasum": ""
  7739. },
  7740. "require": {
  7741. "nikic/php-parser": "^5.0",
  7742. "php": ">=8.2"
  7743. },
  7744. "require-dev": {
  7745. "phpunit/phpunit": "^11.0"
  7746. },
  7747. "type": "library",
  7748. "extra": {
  7749. "branch-alias": {
  7750. "dev-main": "3.0-dev"
  7751. }
  7752. },
  7753. "autoload": {
  7754. "classmap": [
  7755. "src/"
  7756. ]
  7757. },
  7758. "notification-url": "https://packagist.org/downloads/",
  7759. "license": [
  7760. "BSD-3-Clause"
  7761. ],
  7762. "authors": [
  7763. {
  7764. "name": "Sebastian Bergmann",
  7765. "email": "sebastian@phpunit.de",
  7766. "role": "lead"
  7767. }
  7768. ],
  7769. "description": "Library for counting the lines of code in PHP source code",
  7770. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7771. "support": {
  7772. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7773. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  7774. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  7775. },
  7776. "funding": [
  7777. {
  7778. "url": "https://github.com/sebastianbergmann",
  7779. "type": "github"
  7780. }
  7781. ],
  7782. "time": "2024-07-03T04:58:38+00:00"
  7783. },
  7784. {
  7785. "name": "sebastian/object-enumerator",
  7786. "version": "6.0.1",
  7787. "source": {
  7788. "type": "git",
  7789. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7790. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  7791. },
  7792. "dist": {
  7793. "type": "zip",
  7794. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  7795. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  7796. "shasum": ""
  7797. },
  7798. "require": {
  7799. "php": ">=8.2",
  7800. "sebastian/object-reflector": "^4.0",
  7801. "sebastian/recursion-context": "^6.0"
  7802. },
  7803. "require-dev": {
  7804. "phpunit/phpunit": "^11.0"
  7805. },
  7806. "type": "library",
  7807. "extra": {
  7808. "branch-alias": {
  7809. "dev-main": "6.0-dev"
  7810. }
  7811. },
  7812. "autoload": {
  7813. "classmap": [
  7814. "src/"
  7815. ]
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "BSD-3-Clause"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Sebastian Bergmann",
  7824. "email": "sebastian@phpunit.de"
  7825. }
  7826. ],
  7827. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7828. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7829. "support": {
  7830. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7831. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  7832. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  7833. },
  7834. "funding": [
  7835. {
  7836. "url": "https://github.com/sebastianbergmann",
  7837. "type": "github"
  7838. }
  7839. ],
  7840. "time": "2024-07-03T05:00:13+00:00"
  7841. },
  7842. {
  7843. "name": "sebastian/object-reflector",
  7844. "version": "4.0.1",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7848. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  7853. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  7854. "shasum": ""
  7855. },
  7856. "require": {
  7857. "php": ">=8.2"
  7858. },
  7859. "require-dev": {
  7860. "phpunit/phpunit": "^11.0"
  7861. },
  7862. "type": "library",
  7863. "extra": {
  7864. "branch-alias": {
  7865. "dev-main": "4.0-dev"
  7866. }
  7867. },
  7868. "autoload": {
  7869. "classmap": [
  7870. "src/"
  7871. ]
  7872. },
  7873. "notification-url": "https://packagist.org/downloads/",
  7874. "license": [
  7875. "BSD-3-Clause"
  7876. ],
  7877. "authors": [
  7878. {
  7879. "name": "Sebastian Bergmann",
  7880. "email": "sebastian@phpunit.de"
  7881. }
  7882. ],
  7883. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7884. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7885. "support": {
  7886. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7887. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  7888. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  7889. },
  7890. "funding": [
  7891. {
  7892. "url": "https://github.com/sebastianbergmann",
  7893. "type": "github"
  7894. }
  7895. ],
  7896. "time": "2024-07-03T05:01:32+00:00"
  7897. },
  7898. {
  7899. "name": "sebastian/recursion-context",
  7900. "version": "6.0.3",
  7901. "source": {
  7902. "type": "git",
  7903. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7904. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
  7905. },
  7906. "dist": {
  7907. "type": "zip",
  7908. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  7909. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  7910. "shasum": ""
  7911. },
  7912. "require": {
  7913. "php": ">=8.2"
  7914. },
  7915. "require-dev": {
  7916. "phpunit/phpunit": "^11.3"
  7917. },
  7918. "type": "library",
  7919. "extra": {
  7920. "branch-alias": {
  7921. "dev-main": "6.0-dev"
  7922. }
  7923. },
  7924. "autoload": {
  7925. "classmap": [
  7926. "src/"
  7927. ]
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "BSD-3-Clause"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Sebastian Bergmann",
  7936. "email": "sebastian@phpunit.de"
  7937. },
  7938. {
  7939. "name": "Jeff Welch",
  7940. "email": "whatthejeff@gmail.com"
  7941. },
  7942. {
  7943. "name": "Adam Harvey",
  7944. "email": "aharvey@php.net"
  7945. }
  7946. ],
  7947. "description": "Provides functionality to recursively process PHP variables",
  7948. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7949. "support": {
  7950. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7951. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  7952. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
  7953. },
  7954. "funding": [
  7955. {
  7956. "url": "https://github.com/sebastianbergmann",
  7957. "type": "github"
  7958. },
  7959. {
  7960. "url": "https://liberapay.com/sebastianbergmann",
  7961. "type": "liberapay"
  7962. },
  7963. {
  7964. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7965. "type": "thanks_dev"
  7966. },
  7967. {
  7968. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  7969. "type": "tidelift"
  7970. }
  7971. ],
  7972. "time": "2025-08-13T04:42:22+00:00"
  7973. },
  7974. {
  7975. "name": "sebastian/type",
  7976. "version": "5.1.3",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/sebastianbergmann/type.git",
  7980. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  7985. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  7986. "shasum": ""
  7987. },
  7988. "require": {
  7989. "php": ">=8.2"
  7990. },
  7991. "require-dev": {
  7992. "phpunit/phpunit": "^11.3"
  7993. },
  7994. "type": "library",
  7995. "extra": {
  7996. "branch-alias": {
  7997. "dev-main": "5.1-dev"
  7998. }
  7999. },
  8000. "autoload": {
  8001. "classmap": [
  8002. "src/"
  8003. ]
  8004. },
  8005. "notification-url": "https://packagist.org/downloads/",
  8006. "license": [
  8007. "BSD-3-Clause"
  8008. ],
  8009. "authors": [
  8010. {
  8011. "name": "Sebastian Bergmann",
  8012. "email": "sebastian@phpunit.de",
  8013. "role": "lead"
  8014. }
  8015. ],
  8016. "description": "Collection of value objects that represent the types of the PHP type system",
  8017. "homepage": "https://github.com/sebastianbergmann/type",
  8018. "support": {
  8019. "issues": "https://github.com/sebastianbergmann/type/issues",
  8020. "security": "https://github.com/sebastianbergmann/type/security/policy",
  8021. "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
  8022. },
  8023. "funding": [
  8024. {
  8025. "url": "https://github.com/sebastianbergmann",
  8026. "type": "github"
  8027. },
  8028. {
  8029. "url": "https://liberapay.com/sebastianbergmann",
  8030. "type": "liberapay"
  8031. },
  8032. {
  8033. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8034. "type": "thanks_dev"
  8035. },
  8036. {
  8037. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  8038. "type": "tidelift"
  8039. }
  8040. ],
  8041. "time": "2025-08-09T06:55:48+00:00"
  8042. },
  8043. {
  8044. "name": "sebastian/version",
  8045. "version": "5.0.2",
  8046. "source": {
  8047. "type": "git",
  8048. "url": "https://github.com/sebastianbergmann/version.git",
  8049. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  8050. },
  8051. "dist": {
  8052. "type": "zip",
  8053. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  8054. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  8055. "shasum": ""
  8056. },
  8057. "require": {
  8058. "php": ">=8.2"
  8059. },
  8060. "type": "library",
  8061. "extra": {
  8062. "branch-alias": {
  8063. "dev-main": "5.0-dev"
  8064. }
  8065. },
  8066. "autoload": {
  8067. "classmap": [
  8068. "src/"
  8069. ]
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "BSD-3-Clause"
  8074. ],
  8075. "authors": [
  8076. {
  8077. "name": "Sebastian Bergmann",
  8078. "email": "sebastian@phpunit.de",
  8079. "role": "lead"
  8080. }
  8081. ],
  8082. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8083. "homepage": "https://github.com/sebastianbergmann/version",
  8084. "support": {
  8085. "issues": "https://github.com/sebastianbergmann/version/issues",
  8086. "security": "https://github.com/sebastianbergmann/version/security/policy",
  8087. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  8088. },
  8089. "funding": [
  8090. {
  8091. "url": "https://github.com/sebastianbergmann",
  8092. "type": "github"
  8093. }
  8094. ],
  8095. "time": "2024-10-09T05:16:32+00:00"
  8096. },
  8097. {
  8098. "name": "staabm/side-effects-detector",
  8099. "version": "1.0.5",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/staabm/side-effects-detector.git",
  8103. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  8108. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  8109. "shasum": ""
  8110. },
  8111. "require": {
  8112. "ext-tokenizer": "*",
  8113. "php": "^7.4 || ^8.0"
  8114. },
  8115. "require-dev": {
  8116. "phpstan/extension-installer": "^1.4.3",
  8117. "phpstan/phpstan": "^1.12.6",
  8118. "phpunit/phpunit": "^9.6.21",
  8119. "symfony/var-dumper": "^5.4.43",
  8120. "tomasvotruba/type-coverage": "1.0.0",
  8121. "tomasvotruba/unused-public": "1.0.0"
  8122. },
  8123. "type": "library",
  8124. "autoload": {
  8125. "classmap": [
  8126. "lib/"
  8127. ]
  8128. },
  8129. "notification-url": "https://packagist.org/downloads/",
  8130. "license": [
  8131. "MIT"
  8132. ],
  8133. "description": "A static analysis tool to detect side effects in PHP code",
  8134. "keywords": [
  8135. "static analysis"
  8136. ],
  8137. "support": {
  8138. "issues": "https://github.com/staabm/side-effects-detector/issues",
  8139. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  8140. },
  8141. "funding": [
  8142. {
  8143. "url": "https://github.com/staabm",
  8144. "type": "github"
  8145. }
  8146. ],
  8147. "time": "2024-10-20T05:08:20+00:00"
  8148. },
  8149. {
  8150. "name": "symfony/yaml",
  8151. "version": "v7.4.1",
  8152. "source": {
  8153. "type": "git",
  8154. "url": "https://github.com/symfony/yaml.git",
  8155. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345"
  8156. },
  8157. "dist": {
  8158. "type": "zip",
  8159. "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345",
  8160. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345",
  8161. "shasum": ""
  8162. },
  8163. "require": {
  8164. "php": ">=8.2",
  8165. "symfony/deprecation-contracts": "^2.5|^3",
  8166. "symfony/polyfill-ctype": "^1.8"
  8167. },
  8168. "conflict": {
  8169. "symfony/console": "<6.4"
  8170. },
  8171. "require-dev": {
  8172. "symfony/console": "^6.4|^7.0|^8.0"
  8173. },
  8174. "bin": [
  8175. "Resources/bin/yaml-lint"
  8176. ],
  8177. "type": "library",
  8178. "autoload": {
  8179. "psr-4": {
  8180. "Symfony\\Component\\Yaml\\": ""
  8181. },
  8182. "exclude-from-classmap": [
  8183. "/Tests/"
  8184. ]
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Fabien Potencier",
  8193. "email": "fabien@symfony.com"
  8194. },
  8195. {
  8196. "name": "Symfony Community",
  8197. "homepage": "https://symfony.com/contributors"
  8198. }
  8199. ],
  8200. "description": "Loads and dumps YAML files",
  8201. "homepage": "https://symfony.com",
  8202. "support": {
  8203. "source": "https://github.com/symfony/yaml/tree/v7.4.1"
  8204. },
  8205. "funding": [
  8206. {
  8207. "url": "https://symfony.com/sponsor",
  8208. "type": "custom"
  8209. },
  8210. {
  8211. "url": "https://github.com/fabpot",
  8212. "type": "github"
  8213. },
  8214. {
  8215. "url": "https://github.com/nicolas-grekas",
  8216. "type": "github"
  8217. },
  8218. {
  8219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8220. "type": "tidelift"
  8221. }
  8222. ],
  8223. "time": "2025-12-04T18:11:45+00:00"
  8224. },
  8225. {
  8226. "name": "theseer/tokenizer",
  8227. "version": "1.3.1",
  8228. "source": {
  8229. "type": "git",
  8230. "url": "https://github.com/theseer/tokenizer.git",
  8231. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  8232. },
  8233. "dist": {
  8234. "type": "zip",
  8235. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  8236. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  8237. "shasum": ""
  8238. },
  8239. "require": {
  8240. "ext-dom": "*",
  8241. "ext-tokenizer": "*",
  8242. "ext-xmlwriter": "*",
  8243. "php": "^7.2 || ^8.0"
  8244. },
  8245. "type": "library",
  8246. "autoload": {
  8247. "classmap": [
  8248. "src/"
  8249. ]
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "BSD-3-Clause"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Arne Blankerts",
  8258. "email": "arne@blankerts.de",
  8259. "role": "Developer"
  8260. }
  8261. ],
  8262. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8263. "support": {
  8264. "issues": "https://github.com/theseer/tokenizer/issues",
  8265. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  8266. },
  8267. "funding": [
  8268. {
  8269. "url": "https://github.com/theseer",
  8270. "type": "github"
  8271. }
  8272. ],
  8273. "time": "2025-11-17T20:03:58+00:00"
  8274. }
  8275. ],
  8276. "aliases": [],
  8277. "minimum-stability": "stable",
  8278. "stability-flags": {},
  8279. "prefer-stable": true,
  8280. "prefer-lowest": false,
  8281. "platform": {
  8282. "php": "^8.2"
  8283. },
  8284. "platform-dev": {},
  8285. "plugin-api-version": "2.6.0"
  8286. }