composer.lock 302 KB

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