composer.lock 397 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953
  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": "79f04cee83f5074a0a63323e27915e2d",
  8. "packages": [
  9. {
  10. "name": "beberlei/doctrineextensions",
  11. "version": "v1.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/beberlei/DoctrineExtensions.git",
  15. "reference": "281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/beberlei/DoctrineExtensions/zipball/281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6",
  20. "reference": "281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/orm": "^2.19 || ^3.0",
  25. "php": "^7.2 || ^8.0"
  26. },
  27. "require-dev": {
  28. "doctrine/annotations": "^1.14 || ^2",
  29. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  30. "nesbot/carbon": "^2.72 || ^3",
  31. "phpstan/phpstan": "^1.10",
  32. "phpunit/phpunit": "^8.5 || ^9.6",
  33. "squizlabs/php_codesniffer": "^3.8",
  34. "symfony/cache": "^5.4 || ^6.4 || ^7.0",
  35. "symfony/yaml": "^5.4 || ^6.4 || ^7.0",
  36. "vimeo/psalm": "^3.18 || ^5.22",
  37. "zf1/zend-date": "^1.12",
  38. "zf1/zend-registry": "^1.12"
  39. },
  40. "type": "library",
  41. "autoload": {
  42. "psr-4": {
  43. "DoctrineExtensions\\": "src/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "BSD-3-Clause"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Benjamin Eberlei",
  53. "email": "kontakt@beberlei.de"
  54. },
  55. {
  56. "name": "Steve Lacey",
  57. "email": "steve@steve.ly"
  58. }
  59. ],
  60. "description": "A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL, Oracle, PostgreSQL and SQLite.",
  61. "keywords": [
  62. "database",
  63. "doctrine",
  64. "orm"
  65. ],
  66. "support": {
  67. "source": "https://github.com/beberlei/DoctrineExtensions/tree/v1.5.0"
  68. },
  69. "time": "2024-03-03T17:55:15+00:00"
  70. },
  71. {
  72. "name": "composer/package-versions-deprecated",
  73. "version": "1.11.99.5",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/composer/package-versions-deprecated.git",
  77. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  82. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  83. "shasum": ""
  84. },
  85. "require": {
  86. "composer-plugin-api": "^1.1.0 || ^2.0",
  87. "php": "^7 || ^8"
  88. },
  89. "replace": {
  90. "ocramius/package-versions": "1.11.99"
  91. },
  92. "require-dev": {
  93. "composer/composer": "^1.9.3 || ^2.0@dev",
  94. "ext-zip": "^1.13",
  95. "phpunit/phpunit": "^6.5 || ^7"
  96. },
  97. "type": "composer-plugin",
  98. "extra": {
  99. "class": "PackageVersions\\Installer",
  100. "branch-alias": {
  101. "dev-master": "1.x-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "PackageVersions\\": "src/PackageVersions"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Marco Pivetta",
  116. "email": "ocramius@gmail.com"
  117. },
  118. {
  119. "name": "Jordi Boggiano",
  120. "email": "j.boggiano@seld.be"
  121. }
  122. ],
  123. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  124. "support": {
  125. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  126. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  127. },
  128. "funding": [
  129. {
  130. "url": "https://packagist.com",
  131. "type": "custom"
  132. },
  133. {
  134. "url": "https://github.com/composer",
  135. "type": "github"
  136. },
  137. {
  138. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  139. "type": "tidelift"
  140. }
  141. ],
  142. "time": "2022-01-17T14:14:24+00:00"
  143. },
  144. {
  145. "name": "dflydev/dot-access-data",
  146. "version": "v3.0.3",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  150. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  155. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "php": "^7.1 || ^8.0"
  160. },
  161. "require-dev": {
  162. "phpstan/phpstan": "^0.12.42",
  163. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  164. "scrutinizer/ocular": "1.6.0",
  165. "squizlabs/php_codesniffer": "^3.5",
  166. "vimeo/psalm": "^4.0.0"
  167. },
  168. "type": "library",
  169. "extra": {
  170. "branch-alias": {
  171. "dev-main": "3.x-dev"
  172. }
  173. },
  174. "autoload": {
  175. "psr-4": {
  176. "Dflydev\\DotAccessData\\": "src/"
  177. }
  178. },
  179. "notification-url": "https://packagist.org/downloads/",
  180. "license": [
  181. "MIT"
  182. ],
  183. "authors": [
  184. {
  185. "name": "Dragonfly Development Inc.",
  186. "email": "info@dflydev.com",
  187. "homepage": "http://dflydev.com"
  188. },
  189. {
  190. "name": "Beau Simensen",
  191. "email": "beau@dflydev.com",
  192. "homepage": "http://beausimensen.com"
  193. },
  194. {
  195. "name": "Carlos Frutos",
  196. "email": "carlos@kiwing.it",
  197. "homepage": "https://github.com/cfrutos"
  198. },
  199. {
  200. "name": "Colin O'Dell",
  201. "email": "colinodell@gmail.com",
  202. "homepage": "https://www.colinodell.com"
  203. }
  204. ],
  205. "description": "Given a deep data structure, access data by dot notation.",
  206. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  207. "keywords": [
  208. "access",
  209. "data",
  210. "dot",
  211. "notation"
  212. ],
  213. "support": {
  214. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  215. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  216. },
  217. "time": "2024-07-08T12:26:09+00:00"
  218. },
  219. {
  220. "name": "doctrine/collections",
  221. "version": "2.6.0",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/doctrine/collections.git",
  225. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  230. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "doctrine/deprecations": "^1",
  235. "php": "^8.1",
  236. "symfony/polyfill-php84": "^1.30"
  237. },
  238. "require-dev": {
  239. "doctrine/coding-standard": "^14",
  240. "ext-json": "*",
  241. "phpstan/phpstan": "^2.1.30",
  242. "phpstan/phpstan-phpunit": "^2.0.7",
  243. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  244. },
  245. "type": "library",
  246. "autoload": {
  247. "psr-4": {
  248. "Doctrine\\Common\\Collections\\": "src"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Guilherme Blanco",
  258. "email": "guilhermeblanco@gmail.com"
  259. },
  260. {
  261. "name": "Roman Borschel",
  262. "email": "roman@code-factory.org"
  263. },
  264. {
  265. "name": "Benjamin Eberlei",
  266. "email": "kontakt@beberlei.de"
  267. },
  268. {
  269. "name": "Jonathan Wage",
  270. "email": "jonwage@gmail.com"
  271. },
  272. {
  273. "name": "Johannes Schmitt",
  274. "email": "schmittjoh@gmail.com"
  275. }
  276. ],
  277. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  278. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  279. "keywords": [
  280. "array",
  281. "collections",
  282. "iterators",
  283. "php"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/doctrine/collections/issues",
  287. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://www.doctrine-project.org/sponsorship.html",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://www.patreon.com/phpdoctrine",
  296. "type": "patreon"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2026-01-15T10:01:58+00:00"
  304. },
  305. {
  306. "name": "doctrine/dbal",
  307. "version": "4.4.3",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/dbal.git",
  311. "reference": "61e730f1658814821a85f2402c945f3883407dec"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61e730f1658814821a85f2402c945f3883407dec",
  316. "reference": "61e730f1658814821a85f2402c945f3883407dec",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "doctrine/deprecations": "^1.1.5",
  321. "php": "^8.2",
  322. "psr/cache": "^1|^2|^3",
  323. "psr/log": "^1|^2|^3"
  324. },
  325. "require-dev": {
  326. "doctrine/coding-standard": "14.0.0",
  327. "fig/log-test": "^1",
  328. "jetbrains/phpstorm-stubs": "2023.2",
  329. "phpstan/phpstan": "2.1.30",
  330. "phpstan/phpstan-phpunit": "2.0.7",
  331. "phpstan/phpstan-strict-rules": "^2",
  332. "phpunit/phpunit": "11.5.50",
  333. "slevomat/coding-standard": "8.27.1",
  334. "squizlabs/php_codesniffer": "4.0.1",
  335. "symfony/cache": "^6.3.8|^7.0|^8.0",
  336. "symfony/console": "^5.4|^6.3|^7.0|^8.0"
  337. },
  338. "suggest": {
  339. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  340. },
  341. "type": "library",
  342. "autoload": {
  343. "psr-4": {
  344. "Doctrine\\DBAL\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "MIT"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Guilherme Blanco",
  354. "email": "guilhermeblanco@gmail.com"
  355. },
  356. {
  357. "name": "Roman Borschel",
  358. "email": "roman@code-factory.org"
  359. },
  360. {
  361. "name": "Benjamin Eberlei",
  362. "email": "kontakt@beberlei.de"
  363. },
  364. {
  365. "name": "Jonathan Wage",
  366. "email": "jonwage@gmail.com"
  367. }
  368. ],
  369. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  370. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  371. "keywords": [
  372. "abstraction",
  373. "database",
  374. "db2",
  375. "dbal",
  376. "mariadb",
  377. "mssql",
  378. "mysql",
  379. "oci8",
  380. "oracle",
  381. "pdo",
  382. "pgsql",
  383. "postgresql",
  384. "queryobject",
  385. "sasql",
  386. "sql",
  387. "sqlite",
  388. "sqlserver",
  389. "sqlsrv"
  390. ],
  391. "support": {
  392. "issues": "https://github.com/doctrine/dbal/issues",
  393. "source": "https://github.com/doctrine/dbal/tree/4.4.3"
  394. },
  395. "funding": [
  396. {
  397. "url": "https://www.doctrine-project.org/sponsorship.html",
  398. "type": "custom"
  399. },
  400. {
  401. "url": "https://www.patreon.com/phpdoctrine",
  402. "type": "patreon"
  403. },
  404. {
  405. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  406. "type": "tidelift"
  407. }
  408. ],
  409. "time": "2026-03-20T08:52:12+00:00"
  410. },
  411. {
  412. "name": "doctrine/deprecations",
  413. "version": "1.1.6",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/doctrine/deprecations.git",
  417. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  422. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "php": "^7.1 || ^8.0"
  427. },
  428. "conflict": {
  429. "phpunit/phpunit": "<=7.5 || >=14"
  430. },
  431. "require-dev": {
  432. "doctrine/coding-standard": "^9 || ^12 || ^14",
  433. "phpstan/phpstan": "1.4.10 || 2.1.30",
  434. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  435. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  436. "psr/log": "^1 || ^2 || ^3"
  437. },
  438. "suggest": {
  439. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "Doctrine\\Deprecations\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  452. "homepage": "https://www.doctrine-project.org/",
  453. "support": {
  454. "issues": "https://github.com/doctrine/deprecations/issues",
  455. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  456. },
  457. "time": "2026-02-07T07:09:04+00:00"
  458. },
  459. {
  460. "name": "doctrine/doctrine-bundle",
  461. "version": "2.18.2",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/doctrine/DoctrineBundle.git",
  465. "reference": "0ff098b29b8b3c68307c8987dcaed7fd829c6546"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/0ff098b29b8b3c68307c8987dcaed7fd829c6546",
  470. "reference": "0ff098b29b8b3c68307c8987dcaed7fd829c6546",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "doctrine/dbal": "^3.7.0 || ^4.0",
  475. "doctrine/deprecations": "^1.0",
  476. "doctrine/persistence": "^3.1 || ^4",
  477. "doctrine/sql-formatter": "^1.0.1",
  478. "php": "^8.1",
  479. "symfony/cache": "^6.4 || ^7.0",
  480. "symfony/config": "^6.4 || ^7.0",
  481. "symfony/console": "^6.4 || ^7.0",
  482. "symfony/dependency-injection": "^6.4 || ^7.0",
  483. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  484. "symfony/framework-bundle": "^6.4 || ^7.0",
  485. "symfony/service-contracts": "^2.5 || ^3"
  486. },
  487. "conflict": {
  488. "doctrine/annotations": ">=3.0",
  489. "doctrine/cache": "< 1.11",
  490. "doctrine/orm": "<2.17 || >=4.0",
  491. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  492. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  493. },
  494. "require-dev": {
  495. "doctrine/annotations": "^1 || ^2",
  496. "doctrine/cache": "^1.11 || ^2.0",
  497. "doctrine/coding-standard": "^14",
  498. "doctrine/orm": "^2.17 || ^3.1",
  499. "friendsofphp/proxy-manager-lts": "^1.0",
  500. "phpstan/phpstan": "2.1.1",
  501. "phpstan/phpstan-phpunit": "2.0.3",
  502. "phpstan/phpstan-strict-rules": "^2",
  503. "phpunit/phpunit": "^10.5.53 || ^12.3.10",
  504. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  505. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  506. "symfony/expression-language": "^6.4 || ^7.0",
  507. "symfony/messenger": "^6.4 || ^7.0",
  508. "symfony/property-info": "^6.4 || ^7.0",
  509. "symfony/security-bundle": "^6.4 || ^7.0",
  510. "symfony/stopwatch": "^6.4 || ^7.0",
  511. "symfony/string": "^6.4 || ^7.0",
  512. "symfony/twig-bridge": "^6.4 || ^7.0",
  513. "symfony/validator": "^6.4 || ^7.0",
  514. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  515. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  516. "symfony/yaml": "^6.4 || ^7.0",
  517. "twig/twig": "^2.14.7 || ^3.0.4"
  518. },
  519. "suggest": {
  520. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  521. "ext-pdo": "*",
  522. "symfony/web-profiler-bundle": "To use the data collector."
  523. },
  524. "type": "symfony-bundle",
  525. "autoload": {
  526. "psr-4": {
  527. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "MIT"
  533. ],
  534. "authors": [
  535. {
  536. "name": "Fabien Potencier",
  537. "email": "fabien@symfony.com"
  538. },
  539. {
  540. "name": "Benjamin Eberlei",
  541. "email": "kontakt@beberlei.de"
  542. },
  543. {
  544. "name": "Symfony Community",
  545. "homepage": "https://symfony.com/contributors"
  546. },
  547. {
  548. "name": "Doctrine Project",
  549. "homepage": "https://www.doctrine-project.org/"
  550. }
  551. ],
  552. "description": "Symfony DoctrineBundle",
  553. "homepage": "https://www.doctrine-project.org",
  554. "keywords": [
  555. "database",
  556. "dbal",
  557. "orm",
  558. "persistence"
  559. ],
  560. "support": {
  561. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  562. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.18.2"
  563. },
  564. "funding": [
  565. {
  566. "url": "https://www.doctrine-project.org/sponsorship.html",
  567. "type": "custom"
  568. },
  569. {
  570. "url": "https://www.patreon.com/phpdoctrine",
  571. "type": "patreon"
  572. },
  573. {
  574. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  575. "type": "tidelift"
  576. }
  577. ],
  578. "time": "2025-12-20T21:35:32+00:00"
  579. },
  580. {
  581. "name": "doctrine/doctrine-migrations-bundle",
  582. "version": "3.7.0",
  583. "source": {
  584. "type": "git",
  585. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  586. "reference": "1e380c6dd8ac8488217f39cff6b77e367f1a644b"
  587. },
  588. "dist": {
  589. "type": "zip",
  590. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1e380c6dd8ac8488217f39cff6b77e367f1a644b",
  591. "reference": "1e380c6dd8ac8488217f39cff6b77e367f1a644b",
  592. "shasum": ""
  593. },
  594. "require": {
  595. "doctrine/doctrine-bundle": "^2.4 || ^3.0",
  596. "doctrine/migrations": "^3.2",
  597. "php": "^7.2 || ^8.0",
  598. "symfony/deprecation-contracts": "^2.1 || ^3",
  599. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  600. },
  601. "require-dev": {
  602. "composer/semver": "^3.0",
  603. "doctrine/coding-standard": "^12 || ^14",
  604. "doctrine/orm": "^2.6 || ^3",
  605. "phpstan/phpstan": "^1.4 || ^2",
  606. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  607. "phpstan/phpstan-phpunit": "^1 || ^2",
  608. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  609. "phpstan/phpstan-symfony": "^1.3 || ^2",
  610. "phpunit/phpunit": "^8.5 || ^9.5",
  611. "symfony/phpunit-bridge": "^6.3 || ^7 || ^8",
  612. "symfony/var-exporter": "^5.4 || ^6 || ^7 || ^8"
  613. },
  614. "type": "symfony-bundle",
  615. "autoload": {
  616. "psr-4": {
  617. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  618. }
  619. },
  620. "notification-url": "https://packagist.org/downloads/",
  621. "license": [
  622. "MIT"
  623. ],
  624. "authors": [
  625. {
  626. "name": "Fabien Potencier",
  627. "email": "fabien@symfony.com"
  628. },
  629. {
  630. "name": "Doctrine Project",
  631. "homepage": "https://www.doctrine-project.org"
  632. },
  633. {
  634. "name": "Symfony Community",
  635. "homepage": "https://symfony.com/contributors"
  636. }
  637. ],
  638. "description": "Symfony DoctrineMigrationsBundle",
  639. "homepage": "https://www.doctrine-project.org",
  640. "keywords": [
  641. "dbal",
  642. "migrations",
  643. "schema"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  647. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.7.0"
  648. },
  649. "funding": [
  650. {
  651. "url": "https://www.doctrine-project.org/sponsorship.html",
  652. "type": "custom"
  653. },
  654. {
  655. "url": "https://www.patreon.com/phpdoctrine",
  656. "type": "patreon"
  657. },
  658. {
  659. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  660. "type": "tidelift"
  661. }
  662. ],
  663. "time": "2025-11-15T19:02:59+00:00"
  664. },
  665. {
  666. "name": "doctrine/event-manager",
  667. "version": "2.1.1",
  668. "source": {
  669. "type": "git",
  670. "url": "https://github.com/doctrine/event-manager.git",
  671. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  672. },
  673. "dist": {
  674. "type": "zip",
  675. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  676. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  677. "shasum": ""
  678. },
  679. "require": {
  680. "php": "^8.1"
  681. },
  682. "conflict": {
  683. "doctrine/common": "<2.9"
  684. },
  685. "require-dev": {
  686. "doctrine/coding-standard": "^14",
  687. "phpdocumentor/guides-cli": "^1.4",
  688. "phpstan/phpstan": "^2.1.32",
  689. "phpunit/phpunit": "^10.5.58"
  690. },
  691. "type": "library",
  692. "autoload": {
  693. "psr-4": {
  694. "Doctrine\\Common\\": "src"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Guilherme Blanco",
  704. "email": "guilhermeblanco@gmail.com"
  705. },
  706. {
  707. "name": "Roman Borschel",
  708. "email": "roman@code-factory.org"
  709. },
  710. {
  711. "name": "Benjamin Eberlei",
  712. "email": "kontakt@beberlei.de"
  713. },
  714. {
  715. "name": "Jonathan Wage",
  716. "email": "jonwage@gmail.com"
  717. },
  718. {
  719. "name": "Johannes Schmitt",
  720. "email": "schmittjoh@gmail.com"
  721. },
  722. {
  723. "name": "Marco Pivetta",
  724. "email": "ocramius@gmail.com"
  725. }
  726. ],
  727. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  728. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  729. "keywords": [
  730. "event",
  731. "event dispatcher",
  732. "event manager",
  733. "event system",
  734. "events"
  735. ],
  736. "support": {
  737. "issues": "https://github.com/doctrine/event-manager/issues",
  738. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  739. },
  740. "funding": [
  741. {
  742. "url": "https://www.doctrine-project.org/sponsorship.html",
  743. "type": "custom"
  744. },
  745. {
  746. "url": "https://www.patreon.com/phpdoctrine",
  747. "type": "patreon"
  748. },
  749. {
  750. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  751. "type": "tidelift"
  752. }
  753. ],
  754. "time": "2026-01-29T07:11:08+00:00"
  755. },
  756. {
  757. "name": "doctrine/inflector",
  758. "version": "2.1.0",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/doctrine/inflector.git",
  762. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  767. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "php": "^7.2 || ^8.0"
  772. },
  773. "require-dev": {
  774. "doctrine/coding-standard": "^12.0 || ^13.0",
  775. "phpstan/phpstan": "^1.12 || ^2.0",
  776. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  777. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  778. "phpunit/phpunit": "^8.5 || ^12.2"
  779. },
  780. "type": "library",
  781. "autoload": {
  782. "psr-4": {
  783. "Doctrine\\Inflector\\": "src"
  784. }
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "MIT"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Guilherme Blanco",
  793. "email": "guilhermeblanco@gmail.com"
  794. },
  795. {
  796. "name": "Roman Borschel",
  797. "email": "roman@code-factory.org"
  798. },
  799. {
  800. "name": "Benjamin Eberlei",
  801. "email": "kontakt@beberlei.de"
  802. },
  803. {
  804. "name": "Jonathan Wage",
  805. "email": "jonwage@gmail.com"
  806. },
  807. {
  808. "name": "Johannes Schmitt",
  809. "email": "schmittjoh@gmail.com"
  810. }
  811. ],
  812. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  813. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  814. "keywords": [
  815. "inflection",
  816. "inflector",
  817. "lowercase",
  818. "manipulation",
  819. "php",
  820. "plural",
  821. "singular",
  822. "strings",
  823. "uppercase",
  824. "words"
  825. ],
  826. "support": {
  827. "issues": "https://github.com/doctrine/inflector/issues",
  828. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  829. },
  830. "funding": [
  831. {
  832. "url": "https://www.doctrine-project.org/sponsorship.html",
  833. "type": "custom"
  834. },
  835. {
  836. "url": "https://www.patreon.com/phpdoctrine",
  837. "type": "patreon"
  838. },
  839. {
  840. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  841. "type": "tidelift"
  842. }
  843. ],
  844. "time": "2025-08-10T19:31:58+00:00"
  845. },
  846. {
  847. "name": "doctrine/instantiator",
  848. "version": "2.0.0",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/doctrine/instantiator.git",
  852. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  857. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "php": "^8.1"
  862. },
  863. "require-dev": {
  864. "doctrine/coding-standard": "^11",
  865. "ext-pdo": "*",
  866. "ext-phar": "*",
  867. "phpbench/phpbench": "^1.2",
  868. "phpstan/phpstan": "^1.9.4",
  869. "phpstan/phpstan-phpunit": "^1.3",
  870. "phpunit/phpunit": "^9.5.27",
  871. "vimeo/psalm": "^5.4"
  872. },
  873. "type": "library",
  874. "autoload": {
  875. "psr-4": {
  876. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  877. }
  878. },
  879. "notification-url": "https://packagist.org/downloads/",
  880. "license": [
  881. "MIT"
  882. ],
  883. "authors": [
  884. {
  885. "name": "Marco Pivetta",
  886. "email": "ocramius@gmail.com",
  887. "homepage": "https://ocramius.github.io/"
  888. }
  889. ],
  890. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  891. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  892. "keywords": [
  893. "constructor",
  894. "instantiate"
  895. ],
  896. "support": {
  897. "issues": "https://github.com/doctrine/instantiator/issues",
  898. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  899. },
  900. "funding": [
  901. {
  902. "url": "https://www.doctrine-project.org/sponsorship.html",
  903. "type": "custom"
  904. },
  905. {
  906. "url": "https://www.patreon.com/phpdoctrine",
  907. "type": "patreon"
  908. },
  909. {
  910. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  911. "type": "tidelift"
  912. }
  913. ],
  914. "time": "2022-12-30T00:23:10+00:00"
  915. },
  916. {
  917. "name": "doctrine/lexer",
  918. "version": "3.0.1",
  919. "source": {
  920. "type": "git",
  921. "url": "https://github.com/doctrine/lexer.git",
  922. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  923. },
  924. "dist": {
  925. "type": "zip",
  926. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  927. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  928. "shasum": ""
  929. },
  930. "require": {
  931. "php": "^8.1"
  932. },
  933. "require-dev": {
  934. "doctrine/coding-standard": "^12",
  935. "phpstan/phpstan": "^1.10",
  936. "phpunit/phpunit": "^10.5",
  937. "psalm/plugin-phpunit": "^0.18.3",
  938. "vimeo/psalm": "^5.21"
  939. },
  940. "type": "library",
  941. "autoload": {
  942. "psr-4": {
  943. "Doctrine\\Common\\Lexer\\": "src"
  944. }
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "MIT"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Guilherme Blanco",
  953. "email": "guilhermeblanco@gmail.com"
  954. },
  955. {
  956. "name": "Roman Borschel",
  957. "email": "roman@code-factory.org"
  958. },
  959. {
  960. "name": "Johannes Schmitt",
  961. "email": "schmittjoh@gmail.com"
  962. }
  963. ],
  964. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  965. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  966. "keywords": [
  967. "annotations",
  968. "docblock",
  969. "lexer",
  970. "parser",
  971. "php"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/doctrine/lexer/issues",
  975. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://www.doctrine-project.org/sponsorship.html",
  980. "type": "custom"
  981. },
  982. {
  983. "url": "https://www.patreon.com/phpdoctrine",
  984. "type": "patreon"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2024-02-05T11:56:58+00:00"
  992. },
  993. {
  994. "name": "doctrine/migrations",
  995. "version": "3.9.7",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/doctrine/migrations.git",
  999. "reference": "96cb2a89b56c9efb0bac38e606dc0b0f13e650ec"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/doctrine/migrations/zipball/96cb2a89b56c9efb0bac38e606dc0b0f13e650ec",
  1004. "reference": "96cb2a89b56c9efb0bac38e606dc0b0f13e650ec",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "composer-runtime-api": "^2",
  1009. "doctrine/dbal": "^3.6 || ^4",
  1010. "doctrine/deprecations": "^0.5.3 || ^1",
  1011. "doctrine/event-manager": "^1.2 || ^2.0",
  1012. "php": "^8.1",
  1013. "psr/log": "^1.1.3 || ^2 || ^3",
  1014. "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1015. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1016. "symfony/var-exporter": "^6.2 || ^7.0 || ^8.0"
  1017. },
  1018. "conflict": {
  1019. "doctrine/orm": "<2.12 || >=4"
  1020. },
  1021. "require-dev": {
  1022. "doctrine/coding-standard": "^14",
  1023. "doctrine/orm": "^2.13 || ^3",
  1024. "doctrine/persistence": "^2 || ^3 || ^4",
  1025. "doctrine/sql-formatter": "^1.0",
  1026. "ext-pdo_sqlite": "*",
  1027. "fig/log-test": "^1",
  1028. "phpstan/phpstan": "^2",
  1029. "phpstan/phpstan-deprecation-rules": "^2",
  1030. "phpstan/phpstan-phpunit": "^2",
  1031. "phpstan/phpstan-strict-rules": "^2",
  1032. "phpstan/phpstan-symfony": "^2",
  1033. "phpunit/phpunit": "^10.3 || ^11.0 || ^12.0",
  1034. "symfony/cache": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1035. "symfony/process": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1036. "symfony/yaml": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  1037. },
  1038. "suggest": {
  1039. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1040. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1041. },
  1042. "bin": [
  1043. "bin/doctrine-migrations"
  1044. ],
  1045. "type": "library",
  1046. "autoload": {
  1047. "psr-4": {
  1048. "Doctrine\\Migrations\\": "src"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Benjamin Eberlei",
  1058. "email": "kontakt@beberlei.de"
  1059. },
  1060. {
  1061. "name": "Jonathan Wage",
  1062. "email": "jonwage@gmail.com"
  1063. },
  1064. {
  1065. "name": "Michael Simonson",
  1066. "email": "contact@mikesimonson.com"
  1067. }
  1068. ],
  1069. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  1070. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1071. "keywords": [
  1072. "database",
  1073. "dbal",
  1074. "migrations"
  1075. ],
  1076. "support": {
  1077. "issues": "https://github.com/doctrine/migrations/issues",
  1078. "source": "https://github.com/doctrine/migrations/tree/3.9.7"
  1079. },
  1080. "funding": [
  1081. {
  1082. "url": "https://www.doctrine-project.org/sponsorship.html",
  1083. "type": "custom"
  1084. },
  1085. {
  1086. "url": "https://www.patreon.com/phpdoctrine",
  1087. "type": "patreon"
  1088. },
  1089. {
  1090. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1091. "type": "tidelift"
  1092. }
  1093. ],
  1094. "time": "2026-04-23T19:33:20+00:00"
  1095. },
  1096. {
  1097. "name": "doctrine/orm",
  1098. "version": "3.6.3",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/doctrine/orm.git",
  1102. "reference": "e88cd591f0786089dee22b972c28aa2076df51c0"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/doctrine/orm/zipball/e88cd591f0786089dee22b972c28aa2076df51c0",
  1107. "reference": "e88cd591f0786089dee22b972c28aa2076df51c0",
  1108. "shasum": ""
  1109. },
  1110. "require": {
  1111. "composer-runtime-api": "^2",
  1112. "doctrine/collections": "^2.2",
  1113. "doctrine/dbal": "^3.8.2 || ^4",
  1114. "doctrine/deprecations": "^0.5.3 || ^1",
  1115. "doctrine/event-manager": "^1.2 || ^2",
  1116. "doctrine/inflector": "^1.4 || ^2.0",
  1117. "doctrine/instantiator": "^1.3 || ^2",
  1118. "doctrine/lexer": "^3",
  1119. "doctrine/persistence": "^3.3.1 || ^4",
  1120. "ext-ctype": "*",
  1121. "php": "^8.1",
  1122. "psr/cache": "^1 || ^2 || ^3",
  1123. "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1124. "symfony/var-exporter": "^6.3.9 || ^7.0 || ^8.0"
  1125. },
  1126. "require-dev": {
  1127. "doctrine/coding-standard": "^14.0",
  1128. "phpbench/phpbench": "^1.0",
  1129. "phpstan/extension-installer": "^1.4",
  1130. "phpstan/phpstan": "2.1.23",
  1131. "phpstan/phpstan-deprecation-rules": "^2",
  1132. "phpunit/phpunit": "^10.5.0 || ^11.5",
  1133. "psr/log": "^1 || ^2 || ^3",
  1134. "symfony/cache": "^5.4 || ^6.2 || ^7.0 || ^8.0"
  1135. },
  1136. "suggest": {
  1137. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1138. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1139. },
  1140. "type": "library",
  1141. "autoload": {
  1142. "psr-4": {
  1143. "Doctrine\\ORM\\": "src"
  1144. }
  1145. },
  1146. "notification-url": "https://packagist.org/downloads/",
  1147. "license": [
  1148. "MIT"
  1149. ],
  1150. "authors": [
  1151. {
  1152. "name": "Guilherme Blanco",
  1153. "email": "guilhermeblanco@gmail.com"
  1154. },
  1155. {
  1156. "name": "Roman Borschel",
  1157. "email": "roman@code-factory.org"
  1158. },
  1159. {
  1160. "name": "Benjamin Eberlei",
  1161. "email": "kontakt@beberlei.de"
  1162. },
  1163. {
  1164. "name": "Jonathan Wage",
  1165. "email": "jonwage@gmail.com"
  1166. },
  1167. {
  1168. "name": "Marco Pivetta",
  1169. "email": "ocramius@gmail.com"
  1170. }
  1171. ],
  1172. "description": "Object-Relational-Mapper for PHP",
  1173. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1174. "keywords": [
  1175. "database",
  1176. "orm"
  1177. ],
  1178. "support": {
  1179. "issues": "https://github.com/doctrine/orm/issues",
  1180. "source": "https://github.com/doctrine/orm/tree/3.6.3"
  1181. },
  1182. "time": "2026-04-02T06:53:27+00:00"
  1183. },
  1184. {
  1185. "name": "doctrine/persistence",
  1186. "version": "4.2.0",
  1187. "source": {
  1188. "type": "git",
  1189. "url": "https://github.com/doctrine/persistence.git",
  1190. "reference": "49ab73e0d3e2ac8d1f5ecda3dd8acd5503781e8b"
  1191. },
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://api.github.com/repos/doctrine/persistence/zipball/49ab73e0d3e2ac8d1f5ecda3dd8acd5503781e8b",
  1195. "reference": "49ab73e0d3e2ac8d1f5ecda3dd8acd5503781e8b",
  1196. "shasum": ""
  1197. },
  1198. "require": {
  1199. "doctrine/deprecations": "^1",
  1200. "doctrine/event-manager": "^1 || ^2",
  1201. "php": "^8.1",
  1202. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1203. },
  1204. "require-dev": {
  1205. "doctrine/coding-standard": "^14",
  1206. "phpstan/phpstan": "2.1.30",
  1207. "phpstan/phpstan-phpunit": "^2",
  1208. "phpstan/phpstan-strict-rules": "^2",
  1209. "phpunit/phpunit": "^10.5.58 || ^12",
  1210. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0 || ^8.0",
  1211. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0 || ^8.0"
  1212. },
  1213. "type": "library",
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Doctrine\\Persistence\\": "src"
  1217. }
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "MIT"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "Guilherme Blanco",
  1226. "email": "guilhermeblanco@gmail.com"
  1227. },
  1228. {
  1229. "name": "Roman Borschel",
  1230. "email": "roman@code-factory.org"
  1231. },
  1232. {
  1233. "name": "Benjamin Eberlei",
  1234. "email": "kontakt@beberlei.de"
  1235. },
  1236. {
  1237. "name": "Jonathan Wage",
  1238. "email": "jonwage@gmail.com"
  1239. },
  1240. {
  1241. "name": "Johannes Schmitt",
  1242. "email": "schmittjoh@gmail.com"
  1243. },
  1244. {
  1245. "name": "Marco Pivetta",
  1246. "email": "ocramius@gmail.com"
  1247. }
  1248. ],
  1249. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1250. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1251. "keywords": [
  1252. "mapper",
  1253. "object",
  1254. "odm",
  1255. "orm",
  1256. "persistence"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/persistence/issues",
  1260. "source": "https://github.com/doctrine/persistence/tree/4.2.0"
  1261. },
  1262. "funding": [
  1263. {
  1264. "url": "https://www.doctrine-project.org/sponsorship.html",
  1265. "type": "custom"
  1266. },
  1267. {
  1268. "url": "https://www.patreon.com/phpdoctrine",
  1269. "type": "patreon"
  1270. },
  1271. {
  1272. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1273. "type": "tidelift"
  1274. }
  1275. ],
  1276. "time": "2026-04-26T12:12:52+00:00"
  1277. },
  1278. {
  1279. "name": "doctrine/sql-formatter",
  1280. "version": "1.5.4",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/doctrine/sql-formatter.git",
  1284. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/9563949f5cd3bd12a17d12fb980528bc141c5806",
  1289. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "php": "^8.1"
  1294. },
  1295. "require-dev": {
  1296. "doctrine/coding-standard": "^14",
  1297. "ergebnis/phpunit-slow-test-detector": "^2.20",
  1298. "phpstan/phpstan": "^2.1.31",
  1299. "phpunit/phpunit": "^10.5.58"
  1300. },
  1301. "bin": [
  1302. "bin/sql-formatter"
  1303. ],
  1304. "type": "library",
  1305. "autoload": {
  1306. "psr-4": {
  1307. "Doctrine\\SqlFormatter\\": "src"
  1308. }
  1309. },
  1310. "notification-url": "https://packagist.org/downloads/",
  1311. "license": [
  1312. "MIT"
  1313. ],
  1314. "authors": [
  1315. {
  1316. "name": "Jeremy Dorn",
  1317. "email": "jeremy@jeremydorn.com",
  1318. "homepage": "https://jeremydorn.com/"
  1319. }
  1320. ],
  1321. "description": "a PHP SQL highlighting library",
  1322. "homepage": "https://github.com/doctrine/sql-formatter/",
  1323. "keywords": [
  1324. "highlight",
  1325. "sql"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1329. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.4"
  1330. },
  1331. "time": "2026-02-08T16:21:46+00:00"
  1332. },
  1333. {
  1334. "name": "egulias/email-validator",
  1335. "version": "4.0.4",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/egulias/EmailValidator.git",
  1339. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1344. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1345. "shasum": ""
  1346. },
  1347. "require": {
  1348. "doctrine/lexer": "^2.0 || ^3.0",
  1349. "php": ">=8.1",
  1350. "symfony/polyfill-intl-idn": "^1.26"
  1351. },
  1352. "require-dev": {
  1353. "phpunit/phpunit": "^10.2",
  1354. "vimeo/psalm": "^5.12"
  1355. },
  1356. "suggest": {
  1357. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "4.0.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-4": {
  1367. "Egulias\\EmailValidator\\": "src"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Eduardo Gulias Davis"
  1377. }
  1378. ],
  1379. "description": "A library for validating emails against several RFCs",
  1380. "homepage": "https://github.com/egulias/EmailValidator",
  1381. "keywords": [
  1382. "email",
  1383. "emailvalidation",
  1384. "emailvalidator",
  1385. "validation",
  1386. "validator"
  1387. ],
  1388. "support": {
  1389. "issues": "https://github.com/egulias/EmailValidator/issues",
  1390. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1391. },
  1392. "funding": [
  1393. {
  1394. "url": "https://github.com/egulias",
  1395. "type": "github"
  1396. }
  1397. ],
  1398. "time": "2025-03-06T22:45:56+00:00"
  1399. },
  1400. {
  1401. "name": "league/commonmark",
  1402. "version": "2.8.2",
  1403. "source": {
  1404. "type": "git",
  1405. "url": "https://github.com/thephpleague/commonmark.git",
  1406. "reference": "59fb075d2101740c337c7216e3f32b36c204218b"
  1407. },
  1408. "dist": {
  1409. "type": "zip",
  1410. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b",
  1411. "reference": "59fb075d2101740c337c7216e3f32b36c204218b",
  1412. "shasum": ""
  1413. },
  1414. "require": {
  1415. "ext-mbstring": "*",
  1416. "league/config": "^1.1.1",
  1417. "php": "^7.4 || ^8.0",
  1418. "psr/event-dispatcher": "^1.0",
  1419. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1420. "symfony/polyfill-php80": "^1.16"
  1421. },
  1422. "require-dev": {
  1423. "cebe/markdown": "^1.0",
  1424. "commonmark/cmark": "0.31.1",
  1425. "commonmark/commonmark.js": "0.31.1",
  1426. "composer/package-versions-deprecated": "^1.8",
  1427. "embed/embed": "^4.4",
  1428. "erusev/parsedown": "^1.0",
  1429. "ext-json": "*",
  1430. "github/gfm": "0.29.0",
  1431. "michelf/php-markdown": "^1.4 || ^2.0",
  1432. "nyholm/psr7": "^1.5",
  1433. "phpstan/phpstan": "^1.8.2",
  1434. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1435. "scrutinizer/ocular": "^1.8.1",
  1436. "symfony/finder": "^5.3 | ^6.0 | ^7.0 || ^8.0",
  1437. "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0",
  1438. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.0",
  1439. "unleashedtech/php-coding-standard": "^3.1.1",
  1440. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  1441. },
  1442. "suggest": {
  1443. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1444. },
  1445. "type": "library",
  1446. "extra": {
  1447. "branch-alias": {
  1448. "dev-main": "2.9-dev"
  1449. }
  1450. },
  1451. "autoload": {
  1452. "psr-4": {
  1453. "League\\CommonMark\\": "src"
  1454. }
  1455. },
  1456. "notification-url": "https://packagist.org/downloads/",
  1457. "license": [
  1458. "BSD-3-Clause"
  1459. ],
  1460. "authors": [
  1461. {
  1462. "name": "Colin O'Dell",
  1463. "email": "colinodell@gmail.com",
  1464. "homepage": "https://www.colinodell.com",
  1465. "role": "Lead Developer"
  1466. }
  1467. ],
  1468. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1469. "homepage": "https://commonmark.thephpleague.com",
  1470. "keywords": [
  1471. "commonmark",
  1472. "flavored",
  1473. "gfm",
  1474. "github",
  1475. "github-flavored",
  1476. "markdown",
  1477. "md",
  1478. "parser"
  1479. ],
  1480. "support": {
  1481. "docs": "https://commonmark.thephpleague.com/",
  1482. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1483. "issues": "https://github.com/thephpleague/commonmark/issues",
  1484. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1485. "source": "https://github.com/thephpleague/commonmark"
  1486. },
  1487. "funding": [
  1488. {
  1489. "url": "https://www.colinodell.com/sponsor",
  1490. "type": "custom"
  1491. },
  1492. {
  1493. "url": "https://www.paypal.me/colinpodell/10.00",
  1494. "type": "custom"
  1495. },
  1496. {
  1497. "url": "https://github.com/colinodell",
  1498. "type": "github"
  1499. },
  1500. {
  1501. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1502. "type": "tidelift"
  1503. }
  1504. ],
  1505. "time": "2026-03-19T13:16:38+00:00"
  1506. },
  1507. {
  1508. "name": "league/config",
  1509. "version": "v1.2.0",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/thephpleague/config.git",
  1513. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1518. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "dflydev/dot-access-data": "^3.0.1",
  1523. "nette/schema": "^1.2",
  1524. "php": "^7.4 || ^8.0"
  1525. },
  1526. "require-dev": {
  1527. "phpstan/phpstan": "^1.8.2",
  1528. "phpunit/phpunit": "^9.5.5",
  1529. "scrutinizer/ocular": "^1.8.1",
  1530. "unleashedtech/php-coding-standard": "^3.1",
  1531. "vimeo/psalm": "^4.7.3"
  1532. },
  1533. "type": "library",
  1534. "extra": {
  1535. "branch-alias": {
  1536. "dev-main": "1.2-dev"
  1537. }
  1538. },
  1539. "autoload": {
  1540. "psr-4": {
  1541. "League\\Config\\": "src"
  1542. }
  1543. },
  1544. "notification-url": "https://packagist.org/downloads/",
  1545. "license": [
  1546. "BSD-3-Clause"
  1547. ],
  1548. "authors": [
  1549. {
  1550. "name": "Colin O'Dell",
  1551. "email": "colinodell@gmail.com",
  1552. "homepage": "https://www.colinodell.com",
  1553. "role": "Lead Developer"
  1554. }
  1555. ],
  1556. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1557. "homepage": "https://config.thephpleague.com",
  1558. "keywords": [
  1559. "array",
  1560. "config",
  1561. "configuration",
  1562. "dot",
  1563. "dot-access",
  1564. "nested",
  1565. "schema"
  1566. ],
  1567. "support": {
  1568. "docs": "https://config.thephpleague.com/",
  1569. "issues": "https://github.com/thephpleague/config/issues",
  1570. "rss": "https://github.com/thephpleague/config/releases.atom",
  1571. "source": "https://github.com/thephpleague/config"
  1572. },
  1573. "funding": [
  1574. {
  1575. "url": "https://www.colinodell.com/sponsor",
  1576. "type": "custom"
  1577. },
  1578. {
  1579. "url": "https://www.paypal.me/colinpodell/10.00",
  1580. "type": "custom"
  1581. },
  1582. {
  1583. "url": "https://github.com/colinodell",
  1584. "type": "github"
  1585. }
  1586. ],
  1587. "time": "2022-12-11T20:36:23+00:00"
  1588. },
  1589. {
  1590. "name": "league/uri",
  1591. "version": "7.8.1",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/thephpleague/uri.git",
  1595. "reference": "08cf38e3924d4f56238125547b5720496fac8fd4"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/thephpleague/uri/zipball/08cf38e3924d4f56238125547b5720496fac8fd4",
  1600. "reference": "08cf38e3924d4f56238125547b5720496fac8fd4",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "league/uri-interfaces": "^7.8.1",
  1605. "php": "^8.1",
  1606. "psr/http-factory": "^1"
  1607. },
  1608. "conflict": {
  1609. "league/uri-schemes": "^1.0"
  1610. },
  1611. "suggest": {
  1612. "ext-bcmath": "to improve IPV4 host parsing",
  1613. "ext-dom": "to convert the URI into an HTML anchor tag",
  1614. "ext-fileinfo": "to create Data URI from file contennts",
  1615. "ext-gmp": "to improve IPV4 host parsing",
  1616. "ext-intl": "to handle IDN host with the best performance",
  1617. "ext-uri": "to use the PHP native URI class",
  1618. "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
  1619. "league/uri-components": "to provide additional tools to manipulate URI objects components",
  1620. "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
  1621. "php-64bit": "to improve IPV4 host parsing",
  1622. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  1623. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "7.x-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "League\\Uri\\": ""
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Ignace Nyamagana Butera",
  1643. "email": "nyamsprod@gmail.com",
  1644. "homepage": "https://nyamsprod.com"
  1645. }
  1646. ],
  1647. "description": "URI manipulation library",
  1648. "homepage": "https://uri.thephpleague.com",
  1649. "keywords": [
  1650. "URN",
  1651. "data-uri",
  1652. "file-uri",
  1653. "ftp",
  1654. "hostname",
  1655. "http",
  1656. "https",
  1657. "middleware",
  1658. "parse_str",
  1659. "parse_url",
  1660. "psr-7",
  1661. "query-string",
  1662. "querystring",
  1663. "rfc2141",
  1664. "rfc3986",
  1665. "rfc3987",
  1666. "rfc6570",
  1667. "rfc8141",
  1668. "uri",
  1669. "uri-template",
  1670. "url",
  1671. "ws"
  1672. ],
  1673. "support": {
  1674. "docs": "https://uri.thephpleague.com",
  1675. "forum": "https://thephpleague.slack.com",
  1676. "issues": "https://github.com/thephpleague/uri-src/issues",
  1677. "source": "https://github.com/thephpleague/uri/tree/7.8.1"
  1678. },
  1679. "funding": [
  1680. {
  1681. "url": "https://github.com/sponsors/nyamsprod",
  1682. "type": "github"
  1683. }
  1684. ],
  1685. "time": "2026-03-15T20:22:25+00:00"
  1686. },
  1687. {
  1688. "name": "league/uri-interfaces",
  1689. "version": "7.8.1",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1693. "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/85d5c77c5d6d3af6c54db4a78246364908f3c928",
  1698. "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928",
  1699. "shasum": ""
  1700. },
  1701. "require": {
  1702. "ext-filter": "*",
  1703. "php": "^8.1",
  1704. "psr/http-message": "^1.1 || ^2.0"
  1705. },
  1706. "suggest": {
  1707. "ext-bcmath": "to improve IPV4 host parsing",
  1708. "ext-gmp": "to improve IPV4 host parsing",
  1709. "ext-intl": "to handle IDN host with the best performance",
  1710. "php-64bit": "to improve IPV4 host parsing",
  1711. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  1712. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1713. },
  1714. "type": "library",
  1715. "extra": {
  1716. "branch-alias": {
  1717. "dev-master": "7.x-dev"
  1718. }
  1719. },
  1720. "autoload": {
  1721. "psr-4": {
  1722. "League\\Uri\\": ""
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Ignace Nyamagana Butera",
  1732. "email": "nyamsprod@gmail.com",
  1733. "homepage": "https://nyamsprod.com"
  1734. }
  1735. ],
  1736. "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI",
  1737. "homepage": "https://uri.thephpleague.com",
  1738. "keywords": [
  1739. "data-uri",
  1740. "file-uri",
  1741. "ftp",
  1742. "hostname",
  1743. "http",
  1744. "https",
  1745. "parse_str",
  1746. "parse_url",
  1747. "psr-7",
  1748. "query-string",
  1749. "querystring",
  1750. "rfc3986",
  1751. "rfc3987",
  1752. "rfc6570",
  1753. "uri",
  1754. "url",
  1755. "ws"
  1756. ],
  1757. "support": {
  1758. "docs": "https://uri.thephpleague.com",
  1759. "forum": "https://thephpleague.slack.com",
  1760. "issues": "https://github.com/thephpleague/uri-src/issues",
  1761. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.1"
  1762. },
  1763. "funding": [
  1764. {
  1765. "url": "https://github.com/sponsors/nyamsprod",
  1766. "type": "github"
  1767. }
  1768. ],
  1769. "time": "2026-03-08T20:05:35+00:00"
  1770. },
  1771. {
  1772. "name": "masterminds/html5",
  1773. "version": "2.10.0",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/Masterminds/html5-php.git",
  1777. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  1782. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "ext-dom": "*",
  1787. "php": ">=5.3.0"
  1788. },
  1789. "require-dev": {
  1790. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1791. },
  1792. "type": "library",
  1793. "extra": {
  1794. "branch-alias": {
  1795. "dev-master": "2.7-dev"
  1796. }
  1797. },
  1798. "autoload": {
  1799. "psr-4": {
  1800. "Masterminds\\": "src"
  1801. }
  1802. },
  1803. "notification-url": "https://packagist.org/downloads/",
  1804. "license": [
  1805. "MIT"
  1806. ],
  1807. "authors": [
  1808. {
  1809. "name": "Matt Butcher",
  1810. "email": "technosophos@gmail.com"
  1811. },
  1812. {
  1813. "name": "Matt Farina",
  1814. "email": "matt@mattfarina.com"
  1815. },
  1816. {
  1817. "name": "Asmir Mustafic",
  1818. "email": "goetas@gmail.com"
  1819. }
  1820. ],
  1821. "description": "An HTML5 parser and serializer.",
  1822. "homepage": "http://masterminds.github.io/html5-php",
  1823. "keywords": [
  1824. "HTML5",
  1825. "dom",
  1826. "html",
  1827. "parser",
  1828. "querypath",
  1829. "serializer",
  1830. "xml"
  1831. ],
  1832. "support": {
  1833. "issues": "https://github.com/Masterminds/html5-php/issues",
  1834. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  1835. },
  1836. "time": "2025-07-25T09:04:22+00:00"
  1837. },
  1838. {
  1839. "name": "monolog/monolog",
  1840. "version": "3.10.0",
  1841. "source": {
  1842. "type": "git",
  1843. "url": "https://github.com/Seldaek/monolog.git",
  1844. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  1845. },
  1846. "dist": {
  1847. "type": "zip",
  1848. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1849. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1850. "shasum": ""
  1851. },
  1852. "require": {
  1853. "php": ">=8.1",
  1854. "psr/log": "^2.0 || ^3.0"
  1855. },
  1856. "provide": {
  1857. "psr/log-implementation": "3.0.0"
  1858. },
  1859. "require-dev": {
  1860. "aws/aws-sdk-php": "^3.0",
  1861. "doctrine/couchdb": "~1.0@dev",
  1862. "elasticsearch/elasticsearch": "^7 || ^8",
  1863. "ext-json": "*",
  1864. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1865. "guzzlehttp/guzzle": "^7.4.5",
  1866. "guzzlehttp/psr7": "^2.2",
  1867. "mongodb/mongodb": "^1.8 || ^2.0",
  1868. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1869. "php-console/php-console": "^3.1.8",
  1870. "phpstan/phpstan": "^2",
  1871. "phpstan/phpstan-deprecation-rules": "^2",
  1872. "phpstan/phpstan-strict-rules": "^2",
  1873. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1874. "predis/predis": "^1.1 || ^2",
  1875. "rollbar/rollbar": "^4.0",
  1876. "ruflin/elastica": "^7 || ^8",
  1877. "symfony/mailer": "^5.4 || ^6",
  1878. "symfony/mime": "^5.4 || ^6"
  1879. },
  1880. "suggest": {
  1881. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1882. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1883. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1884. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1885. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1886. "ext-mbstring": "Allow to work properly with unicode symbols",
  1887. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1888. "ext-openssl": "Required to send log messages using SSL",
  1889. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1890. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1891. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1892. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1893. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1894. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1895. },
  1896. "type": "library",
  1897. "extra": {
  1898. "branch-alias": {
  1899. "dev-main": "3.x-dev"
  1900. }
  1901. },
  1902. "autoload": {
  1903. "psr-4": {
  1904. "Monolog\\": "src/Monolog"
  1905. }
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Jordi Boggiano",
  1914. "email": "j.boggiano@seld.be",
  1915. "homepage": "https://seld.be"
  1916. }
  1917. ],
  1918. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1919. "homepage": "https://github.com/Seldaek/monolog",
  1920. "keywords": [
  1921. "log",
  1922. "logging",
  1923. "psr-3"
  1924. ],
  1925. "support": {
  1926. "issues": "https://github.com/Seldaek/monolog/issues",
  1927. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  1928. },
  1929. "funding": [
  1930. {
  1931. "url": "https://github.com/Seldaek",
  1932. "type": "github"
  1933. },
  1934. {
  1935. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1936. "type": "tidelift"
  1937. }
  1938. ],
  1939. "time": "2026-01-02T08:56:05+00:00"
  1940. },
  1941. {
  1942. "name": "nette/schema",
  1943. "version": "v1.3.5",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/nette/schema.git",
  1947. "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002",
  1952. "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "nette/utils": "^4.0",
  1957. "php": "8.1 - 8.5"
  1958. },
  1959. "require-dev": {
  1960. "nette/phpstan-rules": "^1.0",
  1961. "nette/tester": "^2.6",
  1962. "phpstan/extension-installer": "^1.4@stable",
  1963. "phpstan/phpstan": "^2.1.39@stable",
  1964. "tracy/tracy": "^2.8"
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "1.3-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Nette\\": "src"
  1975. },
  1976. "classmap": [
  1977. "src/"
  1978. ]
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "BSD-3-Clause",
  1983. "GPL-2.0-only",
  1984. "GPL-3.0-only"
  1985. ],
  1986. "authors": [
  1987. {
  1988. "name": "David Grudl",
  1989. "homepage": "https://davidgrudl.com"
  1990. },
  1991. {
  1992. "name": "Nette Community",
  1993. "homepage": "https://nette.org/contributors"
  1994. }
  1995. ],
  1996. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1997. "homepage": "https://nette.org",
  1998. "keywords": [
  1999. "config",
  2000. "nette"
  2001. ],
  2002. "support": {
  2003. "issues": "https://github.com/nette/schema/issues",
  2004. "source": "https://github.com/nette/schema/tree/v1.3.5"
  2005. },
  2006. "time": "2026-02-23T03:47:12+00:00"
  2007. },
  2008. {
  2009. "name": "nette/utils",
  2010. "version": "v4.1.3",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/nette/utils.git",
  2014. "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/nette/utils/zipball/bb3ea637e3d131d72acc033cfc2746ee893349fe",
  2019. "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "php": "8.2 - 8.5"
  2024. },
  2025. "conflict": {
  2026. "nette/finder": "<3",
  2027. "nette/schema": "<1.2.2"
  2028. },
  2029. "require-dev": {
  2030. "jetbrains/phpstorm-attributes": "^1.2",
  2031. "nette/phpstan-rules": "^1.0",
  2032. "nette/tester": "^2.5",
  2033. "phpstan/extension-installer": "^1.4@stable",
  2034. "phpstan/phpstan": "^2.1@stable",
  2035. "tracy/tracy": "^2.9"
  2036. },
  2037. "suggest": {
  2038. "ext-gd": "to use Image",
  2039. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2040. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2041. "ext-json": "to use Nette\\Utils\\Json",
  2042. "ext-mbstring": "to use Strings::lower() etc...",
  2043. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2044. },
  2045. "type": "library",
  2046. "extra": {
  2047. "branch-alias": {
  2048. "dev-master": "4.1-dev"
  2049. }
  2050. },
  2051. "autoload": {
  2052. "psr-4": {
  2053. "Nette\\": "src"
  2054. },
  2055. "classmap": [
  2056. "src/"
  2057. ]
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "BSD-3-Clause",
  2062. "GPL-2.0-only",
  2063. "GPL-3.0-only"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "David Grudl",
  2068. "homepage": "https://davidgrudl.com"
  2069. },
  2070. {
  2071. "name": "Nette Community",
  2072. "homepage": "https://nette.org/contributors"
  2073. }
  2074. ],
  2075. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2076. "homepage": "https://nette.org",
  2077. "keywords": [
  2078. "array",
  2079. "core",
  2080. "datetime",
  2081. "images",
  2082. "json",
  2083. "nette",
  2084. "paginator",
  2085. "password",
  2086. "slugify",
  2087. "string",
  2088. "unicode",
  2089. "utf-8",
  2090. "utility",
  2091. "validation"
  2092. ],
  2093. "support": {
  2094. "issues": "https://github.com/nette/utils/issues",
  2095. "source": "https://github.com/nette/utils/tree/v4.1.3"
  2096. },
  2097. "time": "2026-02-13T03:05:33+00:00"
  2098. },
  2099. {
  2100. "name": "phpdocumentor/reflection-common",
  2101. "version": "2.2.0",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2105. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2110. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "php": "^7.2 || ^8.0"
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-2.x": "2.x-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-4": {
  2124. "phpDocumentor\\Reflection\\": "src/"
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Jaap van Otterdijk",
  2134. "email": "opensource@ijaap.nl"
  2135. }
  2136. ],
  2137. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2138. "homepage": "http://www.phpdoc.org",
  2139. "keywords": [
  2140. "FQSEN",
  2141. "phpDocumentor",
  2142. "phpdoc",
  2143. "reflection",
  2144. "static analysis"
  2145. ],
  2146. "support": {
  2147. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2148. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2149. },
  2150. "time": "2020-06-27T09:03:43+00:00"
  2151. },
  2152. {
  2153. "name": "phpdocumentor/reflection-docblock",
  2154. "version": "5.6.7",
  2155. "source": {
  2156. "type": "git",
  2157. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2158. "reference": "31a105931bc8ffa3a123383829772e832fd8d903"
  2159. },
  2160. "dist": {
  2161. "type": "zip",
  2162. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/31a105931bc8ffa3a123383829772e832fd8d903",
  2163. "reference": "31a105931bc8ffa3a123383829772e832fd8d903",
  2164. "shasum": ""
  2165. },
  2166. "require": {
  2167. "doctrine/deprecations": "^1.1",
  2168. "ext-filter": "*",
  2169. "php": "^7.4 || ^8.0",
  2170. "phpdocumentor/reflection-common": "^2.2",
  2171. "phpdocumentor/type-resolver": "^1.7",
  2172. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2173. "webmozart/assert": "^1.9.1 || ^2"
  2174. },
  2175. "require-dev": {
  2176. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2177. "phpstan/extension-installer": "^1.1",
  2178. "phpstan/phpstan": "^1.8",
  2179. "phpstan/phpstan-mockery": "^1.1",
  2180. "phpstan/phpstan-webmozart-assert": "^1.2",
  2181. "phpunit/phpunit": "^9.5",
  2182. "psalm/phar": "^5.26"
  2183. },
  2184. "type": "library",
  2185. "extra": {
  2186. "branch-alias": {
  2187. "dev-master": "5.x-dev"
  2188. }
  2189. },
  2190. "autoload": {
  2191. "psr-4": {
  2192. "phpDocumentor\\Reflection\\": "src"
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Mike van Riel",
  2202. "email": "me@mikevanriel.com"
  2203. },
  2204. {
  2205. "name": "Jaap van Otterdijk",
  2206. "email": "opensource@ijaap.nl"
  2207. }
  2208. ],
  2209. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2210. "support": {
  2211. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2212. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.7"
  2213. },
  2214. "time": "2026-03-18T20:47:46+00:00"
  2215. },
  2216. {
  2217. "name": "phpdocumentor/type-resolver",
  2218. "version": "1.12.0",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2222. "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
  2227. "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
  2228. "shasum": ""
  2229. },
  2230. "require": {
  2231. "doctrine/deprecations": "^1.0",
  2232. "php": "^7.3 || ^8.0",
  2233. "phpdocumentor/reflection-common": "^2.0",
  2234. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2235. },
  2236. "require-dev": {
  2237. "ext-tokenizer": "*",
  2238. "phpbench/phpbench": "^1.2",
  2239. "phpstan/extension-installer": "^1.1",
  2240. "phpstan/phpstan": "^1.8",
  2241. "phpstan/phpstan-phpunit": "^1.1",
  2242. "phpunit/phpunit": "^9.5",
  2243. "rector/rector": "^0.13.9",
  2244. "vimeo/psalm": "^4.25"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "branch-alias": {
  2249. "dev-1.x": "1.x-dev"
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-4": {
  2254. "phpDocumentor\\Reflection\\": "src"
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "MIT"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Mike van Riel",
  2264. "email": "me@mikevanriel.com"
  2265. }
  2266. ],
  2267. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2268. "support": {
  2269. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2270. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
  2271. },
  2272. "time": "2025-11-21T15:09:14+00:00"
  2273. },
  2274. {
  2275. "name": "phpstan/phpdoc-parser",
  2276. "version": "2.3.2",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2280. "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a",
  2285. "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a",
  2286. "shasum": ""
  2287. },
  2288. "require": {
  2289. "php": "^7.4 || ^8.0"
  2290. },
  2291. "require-dev": {
  2292. "doctrine/annotations": "^2.0",
  2293. "nikic/php-parser": "^5.3.0",
  2294. "php-parallel-lint/php-parallel-lint": "^1.2",
  2295. "phpstan/extension-installer": "^1.0",
  2296. "phpstan/phpstan": "^2.0",
  2297. "phpstan/phpstan-phpunit": "^2.0",
  2298. "phpstan/phpstan-strict-rules": "^2.0",
  2299. "phpunit/phpunit": "^9.6",
  2300. "symfony/process": "^5.2"
  2301. },
  2302. "type": "library",
  2303. "autoload": {
  2304. "psr-4": {
  2305. "PHPStan\\PhpDocParser\\": [
  2306. "src/"
  2307. ]
  2308. }
  2309. },
  2310. "notification-url": "https://packagist.org/downloads/",
  2311. "license": [
  2312. "MIT"
  2313. ],
  2314. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2315. "support": {
  2316. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2317. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.2"
  2318. },
  2319. "time": "2026-01-25T14:56:51+00:00"
  2320. },
  2321. {
  2322. "name": "psr/cache",
  2323. "version": "3.0.0",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/php-fig/cache.git",
  2327. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2332. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "php": ">=8.0.0"
  2337. },
  2338. "type": "library",
  2339. "extra": {
  2340. "branch-alias": {
  2341. "dev-master": "1.0.x-dev"
  2342. }
  2343. },
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Psr\\Cache\\": "src/"
  2347. }
  2348. },
  2349. "notification-url": "https://packagist.org/downloads/",
  2350. "license": [
  2351. "MIT"
  2352. ],
  2353. "authors": [
  2354. {
  2355. "name": "PHP-FIG",
  2356. "homepage": "https://www.php-fig.org/"
  2357. }
  2358. ],
  2359. "description": "Common interface for caching libraries",
  2360. "keywords": [
  2361. "cache",
  2362. "psr",
  2363. "psr-6"
  2364. ],
  2365. "support": {
  2366. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2367. },
  2368. "time": "2021-02-03T23:26:27+00:00"
  2369. },
  2370. {
  2371. "name": "psr/clock",
  2372. "version": "1.0.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/php-fig/clock.git",
  2376. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2381. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "php": "^7.0 || ^8.0"
  2386. },
  2387. "type": "library",
  2388. "autoload": {
  2389. "psr-4": {
  2390. "Psr\\Clock\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "PHP-FIG",
  2400. "homepage": "https://www.php-fig.org/"
  2401. }
  2402. ],
  2403. "description": "Common interface for reading the clock.",
  2404. "homepage": "https://github.com/php-fig/clock",
  2405. "keywords": [
  2406. "clock",
  2407. "now",
  2408. "psr",
  2409. "psr-20",
  2410. "time"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/php-fig/clock/issues",
  2414. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2415. },
  2416. "time": "2022-11-25T14:36:26+00:00"
  2417. },
  2418. {
  2419. "name": "psr/container",
  2420. "version": "2.0.2",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/php-fig/container.git",
  2424. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2429. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2430. "shasum": ""
  2431. },
  2432. "require": {
  2433. "php": ">=7.4.0"
  2434. },
  2435. "type": "library",
  2436. "extra": {
  2437. "branch-alias": {
  2438. "dev-master": "2.0.x-dev"
  2439. }
  2440. },
  2441. "autoload": {
  2442. "psr-4": {
  2443. "Psr\\Container\\": "src/"
  2444. }
  2445. },
  2446. "notification-url": "https://packagist.org/downloads/",
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "PHP-FIG",
  2453. "homepage": "https://www.php-fig.org/"
  2454. }
  2455. ],
  2456. "description": "Common Container Interface (PHP FIG PSR-11)",
  2457. "homepage": "https://github.com/php-fig/container",
  2458. "keywords": [
  2459. "PSR-11",
  2460. "container",
  2461. "container-interface",
  2462. "container-interop",
  2463. "psr"
  2464. ],
  2465. "support": {
  2466. "issues": "https://github.com/php-fig/container/issues",
  2467. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2468. },
  2469. "time": "2021-11-05T16:47:00+00:00"
  2470. },
  2471. {
  2472. "name": "psr/event-dispatcher",
  2473. "version": "1.0.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/php-fig/event-dispatcher.git",
  2477. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2482. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "php": ">=7.2.0"
  2487. },
  2488. "type": "library",
  2489. "extra": {
  2490. "branch-alias": {
  2491. "dev-master": "1.0.x-dev"
  2492. }
  2493. },
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Psr\\EventDispatcher\\": "src/"
  2497. }
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "PHP-FIG",
  2506. "homepage": "http://www.php-fig.org/"
  2507. }
  2508. ],
  2509. "description": "Standard interfaces for event handling.",
  2510. "keywords": [
  2511. "events",
  2512. "psr",
  2513. "psr-14"
  2514. ],
  2515. "support": {
  2516. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2517. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2518. },
  2519. "time": "2019-01-08T18:20:26+00:00"
  2520. },
  2521. {
  2522. "name": "psr/http-factory",
  2523. "version": "1.1.0",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/php-fig/http-factory.git",
  2527. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2532. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2533. "shasum": ""
  2534. },
  2535. "require": {
  2536. "php": ">=7.1",
  2537. "psr/http-message": "^1.0 || ^2.0"
  2538. },
  2539. "type": "library",
  2540. "extra": {
  2541. "branch-alias": {
  2542. "dev-master": "1.0.x-dev"
  2543. }
  2544. },
  2545. "autoload": {
  2546. "psr-4": {
  2547. "Psr\\Http\\Message\\": "src/"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "authors": [
  2555. {
  2556. "name": "PHP-FIG",
  2557. "homepage": "https://www.php-fig.org/"
  2558. }
  2559. ],
  2560. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2561. "keywords": [
  2562. "factory",
  2563. "http",
  2564. "message",
  2565. "psr",
  2566. "psr-17",
  2567. "psr-7",
  2568. "request",
  2569. "response"
  2570. ],
  2571. "support": {
  2572. "source": "https://github.com/php-fig/http-factory"
  2573. },
  2574. "time": "2024-04-15T12:06:14+00:00"
  2575. },
  2576. {
  2577. "name": "psr/http-message",
  2578. "version": "2.0",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://github.com/php-fig/http-message.git",
  2582. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2587. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2588. "shasum": ""
  2589. },
  2590. "require": {
  2591. "php": "^7.2 || ^8.0"
  2592. },
  2593. "type": "library",
  2594. "extra": {
  2595. "branch-alias": {
  2596. "dev-master": "2.0.x-dev"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Psr\\Http\\Message\\": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "PHP-FIG",
  2611. "homepage": "https://www.php-fig.org/"
  2612. }
  2613. ],
  2614. "description": "Common interface for HTTP messages",
  2615. "homepage": "https://github.com/php-fig/http-message",
  2616. "keywords": [
  2617. "http",
  2618. "http-message",
  2619. "psr",
  2620. "psr-7",
  2621. "request",
  2622. "response"
  2623. ],
  2624. "support": {
  2625. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2626. },
  2627. "time": "2023-04-04T09:54:51+00:00"
  2628. },
  2629. {
  2630. "name": "psr/link",
  2631. "version": "2.0.1",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/php-fig/link.git",
  2635. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2640. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "php": ">=8.0.0"
  2645. },
  2646. "suggest": {
  2647. "fig/link-util": "Provides some useful PSR-13 utilities"
  2648. },
  2649. "type": "library",
  2650. "extra": {
  2651. "branch-alias": {
  2652. "dev-master": "2.0.x-dev"
  2653. }
  2654. },
  2655. "autoload": {
  2656. "psr-4": {
  2657. "Psr\\Link\\": "src/"
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "PHP-FIG",
  2667. "homepage": "http://www.php-fig.org/"
  2668. }
  2669. ],
  2670. "description": "Common interfaces for HTTP links",
  2671. "homepage": "https://github.com/php-fig/link",
  2672. "keywords": [
  2673. "http",
  2674. "http-link",
  2675. "link",
  2676. "psr",
  2677. "psr-13",
  2678. "rest"
  2679. ],
  2680. "support": {
  2681. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2682. },
  2683. "time": "2021-03-11T23:00:27+00:00"
  2684. },
  2685. {
  2686. "name": "psr/log",
  2687. "version": "3.0.2",
  2688. "source": {
  2689. "type": "git",
  2690. "url": "https://github.com/php-fig/log.git",
  2691. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2692. },
  2693. "dist": {
  2694. "type": "zip",
  2695. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2696. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2697. "shasum": ""
  2698. },
  2699. "require": {
  2700. "php": ">=8.0.0"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-master": "3.x-dev"
  2706. }
  2707. },
  2708. "autoload": {
  2709. "psr-4": {
  2710. "Psr\\Log\\": "src"
  2711. }
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "MIT"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "PHP-FIG",
  2720. "homepage": "https://www.php-fig.org/"
  2721. }
  2722. ],
  2723. "description": "Common interface for logging libraries",
  2724. "homepage": "https://github.com/php-fig/log",
  2725. "keywords": [
  2726. "log",
  2727. "psr",
  2728. "psr-3"
  2729. ],
  2730. "support": {
  2731. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2732. },
  2733. "time": "2024-09-11T13:17:53+00:00"
  2734. },
  2735. {
  2736. "name": "symfony/apache-pack",
  2737. "version": "v1.0.1",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/symfony/apache-pack.git",
  2741. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2746. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2747. "shasum": ""
  2748. },
  2749. "type": "symfony-pack",
  2750. "notification-url": "https://packagist.org/downloads/",
  2751. "license": [
  2752. "MIT"
  2753. ],
  2754. "description": "A pack for Apache support in Symfony",
  2755. "support": {
  2756. "issues": "https://github.com/symfony/apache-pack/issues",
  2757. "source": "https://github.com/symfony/apache-pack/tree/master"
  2758. },
  2759. "time": "2017-12-12T01:46:35+00:00"
  2760. },
  2761. {
  2762. "name": "symfony/asset",
  2763. "version": "v7.4.8",
  2764. "source": {
  2765. "type": "git",
  2766. "url": "https://github.com/symfony/asset.git",
  2767. "reference": "d2e2f014ccd6ec9fae8dbe6336a4164346a2a856"
  2768. },
  2769. "dist": {
  2770. "type": "zip",
  2771. "url": "https://api.github.com/repos/symfony/asset/zipball/d2e2f014ccd6ec9fae8dbe6336a4164346a2a856",
  2772. "reference": "d2e2f014ccd6ec9fae8dbe6336a4164346a2a856",
  2773. "shasum": ""
  2774. },
  2775. "require": {
  2776. "php": ">=8.2"
  2777. },
  2778. "conflict": {
  2779. "symfony/http-foundation": "<6.4"
  2780. },
  2781. "require-dev": {
  2782. "symfony/http-client": "^6.4|^7.0|^8.0",
  2783. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  2784. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  2785. },
  2786. "type": "library",
  2787. "autoload": {
  2788. "psr-4": {
  2789. "Symfony\\Component\\Asset\\": ""
  2790. },
  2791. "exclude-from-classmap": [
  2792. "/Tests/"
  2793. ]
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Fabien Potencier",
  2802. "email": "fabien@symfony.com"
  2803. },
  2804. {
  2805. "name": "Symfony Community",
  2806. "homepage": "https://symfony.com/contributors"
  2807. }
  2808. ],
  2809. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2810. "homepage": "https://symfony.com",
  2811. "support": {
  2812. "source": "https://github.com/symfony/asset/tree/v7.4.8"
  2813. },
  2814. "funding": [
  2815. {
  2816. "url": "https://symfony.com/sponsor",
  2817. "type": "custom"
  2818. },
  2819. {
  2820. "url": "https://github.com/fabpot",
  2821. "type": "github"
  2822. },
  2823. {
  2824. "url": "https://github.com/nicolas-grekas",
  2825. "type": "github"
  2826. },
  2827. {
  2828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2829. "type": "tidelift"
  2830. }
  2831. ],
  2832. "time": "2026-03-24T13:12:05+00:00"
  2833. },
  2834. {
  2835. "name": "symfony/cache",
  2836. "version": "v7.4.10",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/symfony/cache.git",
  2840. "reference": "8c5fbb4b5bc7a878f7ce66f1b7e29653c404984b"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/symfony/cache/zipball/8c5fbb4b5bc7a878f7ce66f1b7e29653c404984b",
  2845. "reference": "8c5fbb4b5bc7a878f7ce66f1b7e29653c404984b",
  2846. "shasum": ""
  2847. },
  2848. "require": {
  2849. "php": ">=8.2",
  2850. "psr/cache": "^2.0|^3.0",
  2851. "psr/log": "^1.1|^2|^3",
  2852. "symfony/cache-contracts": "^3.6",
  2853. "symfony/deprecation-contracts": "^2.5|^3",
  2854. "symfony/service-contracts": "^2.5|^3",
  2855. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  2856. },
  2857. "conflict": {
  2858. "doctrine/dbal": "<3.6",
  2859. "ext-redis": "<6.1",
  2860. "ext-relay": "<0.12.1",
  2861. "symfony/dependency-injection": "<6.4",
  2862. "symfony/http-kernel": "<6.4",
  2863. "symfony/var-dumper": "<6.4"
  2864. },
  2865. "provide": {
  2866. "psr/cache-implementation": "2.0|3.0",
  2867. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2868. "symfony/cache-implementation": "1.1|2.0|3.0"
  2869. },
  2870. "require-dev": {
  2871. "cache/integration-tests": "dev-master",
  2872. "doctrine/dbal": "^3.6|^4",
  2873. "predis/predis": "^1.1|^2.0",
  2874. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2875. "symfony/clock": "^6.4|^7.0|^8.0",
  2876. "symfony/config": "^6.4|^7.0|^8.0",
  2877. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  2878. "symfony/filesystem": "^6.4|^7.0|^8.0",
  2879. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  2880. "symfony/messenger": "^6.4|^7.0|^8.0",
  2881. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  2882. },
  2883. "type": "library",
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Symfony\\Component\\Cache\\": ""
  2887. },
  2888. "classmap": [
  2889. "Traits/ValueWrapper.php"
  2890. ],
  2891. "exclude-from-classmap": [
  2892. "/Tests/"
  2893. ]
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "Nicolas Grekas",
  2902. "email": "p@tchwork.com"
  2903. },
  2904. {
  2905. "name": "Symfony Community",
  2906. "homepage": "https://symfony.com/contributors"
  2907. }
  2908. ],
  2909. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2910. "homepage": "https://symfony.com",
  2911. "keywords": [
  2912. "caching",
  2913. "psr6"
  2914. ],
  2915. "support": {
  2916. "source": "https://github.com/symfony/cache/tree/v7.4.10"
  2917. },
  2918. "funding": [
  2919. {
  2920. "url": "https://symfony.com/sponsor",
  2921. "type": "custom"
  2922. },
  2923. {
  2924. "url": "https://github.com/fabpot",
  2925. "type": "github"
  2926. },
  2927. {
  2928. "url": "https://github.com/nicolas-grekas",
  2929. "type": "github"
  2930. },
  2931. {
  2932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2933. "type": "tidelift"
  2934. }
  2935. ],
  2936. "time": "2026-05-05T08:23:16+00:00"
  2937. },
  2938. {
  2939. "name": "symfony/cache-contracts",
  2940. "version": "v3.7.0",
  2941. "source": {
  2942. "type": "git",
  2943. "url": "https://github.com/symfony/cache-contracts.git",
  2944. "reference": "225e8a254166bd3442e370c6f50145465db63831"
  2945. },
  2946. "dist": {
  2947. "type": "zip",
  2948. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/225e8a254166bd3442e370c6f50145465db63831",
  2949. "reference": "225e8a254166bd3442e370c6f50145465db63831",
  2950. "shasum": ""
  2951. },
  2952. "require": {
  2953. "php": ">=8.1",
  2954. "psr/cache": "^3.0"
  2955. },
  2956. "type": "library",
  2957. "extra": {
  2958. "thanks": {
  2959. "url": "https://github.com/symfony/contracts",
  2960. "name": "symfony/contracts"
  2961. },
  2962. "branch-alias": {
  2963. "dev-main": "3.7-dev"
  2964. }
  2965. },
  2966. "autoload": {
  2967. "psr-4": {
  2968. "Symfony\\Contracts\\Cache\\": ""
  2969. }
  2970. },
  2971. "notification-url": "https://packagist.org/downloads/",
  2972. "license": [
  2973. "MIT"
  2974. ],
  2975. "authors": [
  2976. {
  2977. "name": "Nicolas Grekas",
  2978. "email": "p@tchwork.com"
  2979. },
  2980. {
  2981. "name": "Symfony Community",
  2982. "homepage": "https://symfony.com/contributors"
  2983. }
  2984. ],
  2985. "description": "Generic abstractions related to caching",
  2986. "homepage": "https://symfony.com",
  2987. "keywords": [
  2988. "abstractions",
  2989. "contracts",
  2990. "decoupling",
  2991. "interfaces",
  2992. "interoperability",
  2993. "standards"
  2994. ],
  2995. "support": {
  2996. "source": "https://github.com/symfony/cache-contracts/tree/v3.7.0"
  2997. },
  2998. "funding": [
  2999. {
  3000. "url": "https://symfony.com/sponsor",
  3001. "type": "custom"
  3002. },
  3003. {
  3004. "url": "https://github.com/fabpot",
  3005. "type": "github"
  3006. },
  3007. {
  3008. "url": "https://github.com/nicolas-grekas",
  3009. "type": "github"
  3010. },
  3011. {
  3012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3013. "type": "tidelift"
  3014. }
  3015. ],
  3016. "time": "2026-05-05T15:33:14+00:00"
  3017. },
  3018. {
  3019. "name": "symfony/clock",
  3020. "version": "v7.4.8",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/symfony/clock.git",
  3024. "reference": "674fa3b98e21531dd040e613479f5f6fa8f32111"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/symfony/clock/zipball/674fa3b98e21531dd040e613479f5f6fa8f32111",
  3029. "reference": "674fa3b98e21531dd040e613479f5f6fa8f32111",
  3030. "shasum": ""
  3031. },
  3032. "require": {
  3033. "php": ">=8.2",
  3034. "psr/clock": "^1.0",
  3035. "symfony/polyfill-php83": "^1.28"
  3036. },
  3037. "provide": {
  3038. "psr/clock-implementation": "1.0"
  3039. },
  3040. "type": "library",
  3041. "autoload": {
  3042. "files": [
  3043. "Resources/now.php"
  3044. ],
  3045. "psr-4": {
  3046. "Symfony\\Component\\Clock\\": ""
  3047. },
  3048. "exclude-from-classmap": [
  3049. "/Tests/"
  3050. ]
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "Nicolas Grekas",
  3059. "email": "p@tchwork.com"
  3060. },
  3061. {
  3062. "name": "Symfony Community",
  3063. "homepage": "https://symfony.com/contributors"
  3064. }
  3065. ],
  3066. "description": "Decouples applications from the system clock",
  3067. "homepage": "https://symfony.com",
  3068. "keywords": [
  3069. "clock",
  3070. "psr20",
  3071. "time"
  3072. ],
  3073. "support": {
  3074. "source": "https://github.com/symfony/clock/tree/v7.4.8"
  3075. },
  3076. "funding": [
  3077. {
  3078. "url": "https://symfony.com/sponsor",
  3079. "type": "custom"
  3080. },
  3081. {
  3082. "url": "https://github.com/fabpot",
  3083. "type": "github"
  3084. },
  3085. {
  3086. "url": "https://github.com/nicolas-grekas",
  3087. "type": "github"
  3088. },
  3089. {
  3090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3091. "type": "tidelift"
  3092. }
  3093. ],
  3094. "time": "2026-03-24T13:12:05+00:00"
  3095. },
  3096. {
  3097. "name": "symfony/config",
  3098. "version": "v7.4.10",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/symfony/config.git",
  3102. "reference": "d91b6c7cd2a8c9a9c2b8d26c8f5ed48edf99ef57"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/symfony/config/zipball/d91b6c7cd2a8c9a9c2b8d26c8f5ed48edf99ef57",
  3107. "reference": "d91b6c7cd2a8c9a9c2b8d26c8f5ed48edf99ef57",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "php": ">=8.2",
  3112. "symfony/deprecation-contracts": "^2.5|^3",
  3113. "symfony/filesystem": "^7.1|^8.0",
  3114. "symfony/polyfill-ctype": "~1.8"
  3115. },
  3116. "conflict": {
  3117. "symfony/finder": "<6.4",
  3118. "symfony/service-contracts": "<2.5"
  3119. },
  3120. "require-dev": {
  3121. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3122. "symfony/finder": "^6.4|^7.0|^8.0",
  3123. "symfony/messenger": "^6.4|^7.0|^8.0",
  3124. "symfony/service-contracts": "^2.5|^3",
  3125. "symfony/yaml": "^6.4|^7.0|^8.0"
  3126. },
  3127. "type": "library",
  3128. "autoload": {
  3129. "psr-4": {
  3130. "Symfony\\Component\\Config\\": ""
  3131. },
  3132. "exclude-from-classmap": [
  3133. "/Tests/"
  3134. ]
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "MIT"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "Fabien Potencier",
  3143. "email": "fabien@symfony.com"
  3144. },
  3145. {
  3146. "name": "Symfony Community",
  3147. "homepage": "https://symfony.com/contributors"
  3148. }
  3149. ],
  3150. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3151. "homepage": "https://symfony.com",
  3152. "support": {
  3153. "source": "https://github.com/symfony/config/tree/v7.4.10"
  3154. },
  3155. "funding": [
  3156. {
  3157. "url": "https://symfony.com/sponsor",
  3158. "type": "custom"
  3159. },
  3160. {
  3161. "url": "https://github.com/fabpot",
  3162. "type": "github"
  3163. },
  3164. {
  3165. "url": "https://github.com/nicolas-grekas",
  3166. "type": "github"
  3167. },
  3168. {
  3169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3170. "type": "tidelift"
  3171. }
  3172. ],
  3173. "time": "2026-05-03T14:20:49+00:00"
  3174. },
  3175. {
  3176. "name": "symfony/console",
  3177. "version": "v7.4.9",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/symfony/console.git",
  3181. "reference": "d7d2b64a45a89d607865927b176fa51c33ddbb58"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://api.github.com/repos/symfony/console/zipball/d7d2b64a45a89d607865927b176fa51c33ddbb58",
  3186. "reference": "d7d2b64a45a89d607865927b176fa51c33ddbb58",
  3187. "shasum": ""
  3188. },
  3189. "require": {
  3190. "php": ">=8.2",
  3191. "symfony/deprecation-contracts": "^2.5|^3",
  3192. "symfony/polyfill-mbstring": "~1.0",
  3193. "symfony/service-contracts": "^2.5|^3",
  3194. "symfony/string": "^7.2|^8.0"
  3195. },
  3196. "conflict": {
  3197. "symfony/dependency-injection": "<6.4",
  3198. "symfony/dotenv": "<6.4",
  3199. "symfony/event-dispatcher": "<6.4",
  3200. "symfony/lock": "<6.4",
  3201. "symfony/process": "<6.4"
  3202. },
  3203. "provide": {
  3204. "psr/log-implementation": "1.0|2.0|3.0"
  3205. },
  3206. "require-dev": {
  3207. "psr/log": "^1|^2|^3",
  3208. "symfony/config": "^6.4|^7.0|^8.0",
  3209. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3210. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3211. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3212. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3213. "symfony/lock": "^6.4|^7.0|^8.0",
  3214. "symfony/messenger": "^6.4|^7.0|^8.0",
  3215. "symfony/process": "^6.4|^7.0|^8.0",
  3216. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3217. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3218. },
  3219. "type": "library",
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Symfony\\Component\\Console\\": ""
  3223. },
  3224. "exclude-from-classmap": [
  3225. "/Tests/"
  3226. ]
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Fabien Potencier",
  3235. "email": "fabien@symfony.com"
  3236. },
  3237. {
  3238. "name": "Symfony Community",
  3239. "homepage": "https://symfony.com/contributors"
  3240. }
  3241. ],
  3242. "description": "Eases the creation of beautiful and testable command line interfaces",
  3243. "homepage": "https://symfony.com",
  3244. "keywords": [
  3245. "cli",
  3246. "command-line",
  3247. "console",
  3248. "terminal"
  3249. ],
  3250. "support": {
  3251. "source": "https://github.com/symfony/console/tree/v7.4.9"
  3252. },
  3253. "funding": [
  3254. {
  3255. "url": "https://symfony.com/sponsor",
  3256. "type": "custom"
  3257. },
  3258. {
  3259. "url": "https://github.com/fabpot",
  3260. "type": "github"
  3261. },
  3262. {
  3263. "url": "https://github.com/nicolas-grekas",
  3264. "type": "github"
  3265. },
  3266. {
  3267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3268. "type": "tidelift"
  3269. }
  3270. ],
  3271. "time": "2026-04-22T15:21:55+00:00"
  3272. },
  3273. {
  3274. "name": "symfony/dependency-injection",
  3275. "version": "v7.4.10",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://github.com/symfony/dependency-injection.git",
  3279. "reference": "4eb0d9dfa9d4f7c59216baf49b3ed6b1fb72293d"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4eb0d9dfa9d4f7c59216baf49b3ed6b1fb72293d",
  3284. "reference": "4eb0d9dfa9d4f7c59216baf49b3ed6b1fb72293d",
  3285. "shasum": ""
  3286. },
  3287. "require": {
  3288. "php": ">=8.2",
  3289. "psr/container": "^1.1|^2.0",
  3290. "symfony/deprecation-contracts": "^2.5|^3",
  3291. "symfony/service-contracts": "^3.6",
  3292. "symfony/var-exporter": "^6.4.20|^7.2.5|^8.0"
  3293. },
  3294. "conflict": {
  3295. "ext-psr": "<1.1|>=2",
  3296. "symfony/config": "<6.4",
  3297. "symfony/finder": "<6.4",
  3298. "symfony/yaml": "<6.4"
  3299. },
  3300. "provide": {
  3301. "psr/container-implementation": "1.1|2.0",
  3302. "symfony/service-implementation": "1.1|2.0|3.0"
  3303. },
  3304. "require-dev": {
  3305. "symfony/config": "^6.4|^7.0|^8.0",
  3306. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3307. "symfony/yaml": "^6.4|^7.0|^8.0"
  3308. },
  3309. "type": "library",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Symfony\\Component\\DependencyInjection\\": ""
  3313. },
  3314. "exclude-from-classmap": [
  3315. "/Tests/"
  3316. ]
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Fabien Potencier",
  3325. "email": "fabien@symfony.com"
  3326. },
  3327. {
  3328. "name": "Symfony Community",
  3329. "homepage": "https://symfony.com/contributors"
  3330. }
  3331. ],
  3332. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3333. "homepage": "https://symfony.com",
  3334. "support": {
  3335. "source": "https://github.com/symfony/dependency-injection/tree/v7.4.10"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://symfony.com/sponsor",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://github.com/fabpot",
  3344. "type": "github"
  3345. },
  3346. {
  3347. "url": "https://github.com/nicolas-grekas",
  3348. "type": "github"
  3349. },
  3350. {
  3351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3352. "type": "tidelift"
  3353. }
  3354. ],
  3355. "time": "2026-05-06T11:55:30+00:00"
  3356. },
  3357. {
  3358. "name": "symfony/deprecation-contracts",
  3359. "version": "v3.7.0",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/symfony/deprecation-contracts.git",
  3363. "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
  3368. "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "php": ">=8.1"
  3373. },
  3374. "type": "library",
  3375. "extra": {
  3376. "thanks": {
  3377. "url": "https://github.com/symfony/contracts",
  3378. "name": "symfony/contracts"
  3379. },
  3380. "branch-alias": {
  3381. "dev-main": "3.7-dev"
  3382. }
  3383. },
  3384. "autoload": {
  3385. "files": [
  3386. "function.php"
  3387. ]
  3388. },
  3389. "notification-url": "https://packagist.org/downloads/",
  3390. "license": [
  3391. "MIT"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Nicolas Grekas",
  3396. "email": "p@tchwork.com"
  3397. },
  3398. {
  3399. "name": "Symfony Community",
  3400. "homepage": "https://symfony.com/contributors"
  3401. }
  3402. ],
  3403. "description": "A generic function and convention to trigger deprecation notices",
  3404. "homepage": "https://symfony.com",
  3405. "support": {
  3406. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
  3407. },
  3408. "funding": [
  3409. {
  3410. "url": "https://symfony.com/sponsor",
  3411. "type": "custom"
  3412. },
  3413. {
  3414. "url": "https://github.com/fabpot",
  3415. "type": "github"
  3416. },
  3417. {
  3418. "url": "https://github.com/nicolas-grekas",
  3419. "type": "github"
  3420. },
  3421. {
  3422. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3423. "type": "tidelift"
  3424. }
  3425. ],
  3426. "time": "2026-04-13T15:52:40+00:00"
  3427. },
  3428. {
  3429. "name": "symfony/doctrine-bridge",
  3430. "version": "v7.4.9",
  3431. "source": {
  3432. "type": "git",
  3433. "url": "https://github.com/symfony/doctrine-bridge.git",
  3434. "reference": "7a87c85853f3069e3657a823c62b02952de46b0a"
  3435. },
  3436. "dist": {
  3437. "type": "zip",
  3438. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/7a87c85853f3069e3657a823c62b02952de46b0a",
  3439. "reference": "7a87c85853f3069e3657a823c62b02952de46b0a",
  3440. "shasum": ""
  3441. },
  3442. "require": {
  3443. "doctrine/event-manager": "^2",
  3444. "doctrine/persistence": "^3.1|^4",
  3445. "php": ">=8.2",
  3446. "symfony/deprecation-contracts": "^2.5|^3",
  3447. "symfony/polyfill-ctype": "~1.8",
  3448. "symfony/polyfill-mbstring": "~1.0",
  3449. "symfony/service-contracts": "^2.5|^3"
  3450. },
  3451. "conflict": {
  3452. "doctrine/collections": "<1.8",
  3453. "doctrine/dbal": "<3.6",
  3454. "doctrine/lexer": "<1.1",
  3455. "doctrine/orm": "<2.15",
  3456. "symfony/cache": "<6.4",
  3457. "symfony/dependency-injection": "<6.4",
  3458. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3459. "symfony/http-foundation": "<6.4",
  3460. "symfony/http-kernel": "<6.4",
  3461. "symfony/lock": "<6.4",
  3462. "symfony/messenger": "<6.4",
  3463. "symfony/property-info": "<6.4",
  3464. "symfony/security-bundle": "<6.4",
  3465. "symfony/security-core": "<6.4",
  3466. "symfony/validator": "<7.4"
  3467. },
  3468. "require-dev": {
  3469. "doctrine/collections": "^1.8|^2.0",
  3470. "doctrine/data-fixtures": "^1.1|^2",
  3471. "doctrine/dbal": "^3.6|^4",
  3472. "doctrine/orm": "^2.15|^3",
  3473. "psr/log": "^1|^2|^3",
  3474. "symfony/cache": "^6.4|^7.0|^8.0",
  3475. "symfony/config": "^6.4|^7.0|^8.0",
  3476. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3477. "symfony/doctrine-messenger": "^6.4|^7.0|^8.0",
  3478. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3479. "symfony/form": "^7.2|^8.0",
  3480. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3481. "symfony/lock": "^6.4|^7.0|^8.0",
  3482. "symfony/messenger": "^6.4|^7.0|^8.0",
  3483. "symfony/property-access": "^6.4|^7.0|^8.0",
  3484. "symfony/property-info": "^6.4|^7.0|^8.0",
  3485. "symfony/security-core": "^6.4|^7.0|^8.0",
  3486. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3487. "symfony/translation": "^6.4|^7.0|^8.0",
  3488. "symfony/type-info": "^7.1.8|^8.0",
  3489. "symfony/uid": "^6.4|^7.0|^8.0",
  3490. "symfony/validator": "^7.4|^8.0",
  3491. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3492. },
  3493. "type": "symfony-bridge",
  3494. "autoload": {
  3495. "psr-4": {
  3496. "Symfony\\Bridge\\Doctrine\\": ""
  3497. },
  3498. "exclude-from-classmap": [
  3499. "/Tests/"
  3500. ]
  3501. },
  3502. "notification-url": "https://packagist.org/downloads/",
  3503. "license": [
  3504. "MIT"
  3505. ],
  3506. "authors": [
  3507. {
  3508. "name": "Fabien Potencier",
  3509. "email": "fabien@symfony.com"
  3510. },
  3511. {
  3512. "name": "Symfony Community",
  3513. "homepage": "https://symfony.com/contributors"
  3514. }
  3515. ],
  3516. "description": "Provides integration for Doctrine with various Symfony components",
  3517. "homepage": "https://symfony.com",
  3518. "support": {
  3519. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.4.9"
  3520. },
  3521. "funding": [
  3522. {
  3523. "url": "https://symfony.com/sponsor",
  3524. "type": "custom"
  3525. },
  3526. {
  3527. "url": "https://github.com/fabpot",
  3528. "type": "github"
  3529. },
  3530. {
  3531. "url": "https://github.com/nicolas-grekas",
  3532. "type": "github"
  3533. },
  3534. {
  3535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3536. "type": "tidelift"
  3537. }
  3538. ],
  3539. "time": "2026-04-29T14:19:39+00:00"
  3540. },
  3541. {
  3542. "name": "symfony/dotenv",
  3543. "version": "v7.4.9",
  3544. "source": {
  3545. "type": "git",
  3546. "url": "https://github.com/symfony/dotenv.git",
  3547. "reference": "ba757a8564a0ccac1a26a859b83295645020ea68"
  3548. },
  3549. "dist": {
  3550. "type": "zip",
  3551. "url": "https://api.github.com/repos/symfony/dotenv/zipball/ba757a8564a0ccac1a26a859b83295645020ea68",
  3552. "reference": "ba757a8564a0ccac1a26a859b83295645020ea68",
  3553. "shasum": ""
  3554. },
  3555. "require": {
  3556. "php": ">=8.2"
  3557. },
  3558. "conflict": {
  3559. "symfony/console": "<6.4",
  3560. "symfony/process": "<6.4"
  3561. },
  3562. "require-dev": {
  3563. "symfony/console": "^6.4|^7.0|^8.0",
  3564. "symfony/process": "^6.4|^7.0|^8.0"
  3565. },
  3566. "type": "library",
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Symfony\\Component\\Dotenv\\": ""
  3570. },
  3571. "exclude-from-classmap": [
  3572. "/Tests/"
  3573. ]
  3574. },
  3575. "notification-url": "https://packagist.org/downloads/",
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Fabien Potencier",
  3582. "email": "fabien@symfony.com"
  3583. },
  3584. {
  3585. "name": "Symfony Community",
  3586. "homepage": "https://symfony.com/contributors"
  3587. }
  3588. ],
  3589. "description": "Registers environment variables from a .env file",
  3590. "homepage": "https://symfony.com",
  3591. "keywords": [
  3592. "dotenv",
  3593. "env",
  3594. "environment"
  3595. ],
  3596. "support": {
  3597. "source": "https://github.com/symfony/dotenv/tree/v7.4.9"
  3598. },
  3599. "funding": [
  3600. {
  3601. "url": "https://symfony.com/sponsor",
  3602. "type": "custom"
  3603. },
  3604. {
  3605. "url": "https://github.com/fabpot",
  3606. "type": "github"
  3607. },
  3608. {
  3609. "url": "https://github.com/nicolas-grekas",
  3610. "type": "github"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2026-04-29T13:21:53+00:00"
  3618. },
  3619. {
  3620. "name": "symfony/error-handler",
  3621. "version": "v7.4.8",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/symfony/error-handler.git",
  3625. "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa",
  3630. "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "php": ">=8.2",
  3635. "psr/log": "^1|^2|^3",
  3636. "symfony/polyfill-php85": "^1.32",
  3637. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3638. },
  3639. "conflict": {
  3640. "symfony/deprecation-contracts": "<2.5",
  3641. "symfony/http-kernel": "<6.4"
  3642. },
  3643. "require-dev": {
  3644. "symfony/console": "^6.4|^7.0|^8.0",
  3645. "symfony/deprecation-contracts": "^2.5|^3",
  3646. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3647. "symfony/serializer": "^6.4|^7.0|^8.0",
  3648. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  3649. },
  3650. "bin": [
  3651. "Resources/bin/patch-type-declarations"
  3652. ],
  3653. "type": "library",
  3654. "autoload": {
  3655. "psr-4": {
  3656. "Symfony\\Component\\ErrorHandler\\": ""
  3657. },
  3658. "exclude-from-classmap": [
  3659. "/Tests/"
  3660. ]
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "MIT"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "Fabien Potencier",
  3669. "email": "fabien@symfony.com"
  3670. },
  3671. {
  3672. "name": "Symfony Community",
  3673. "homepage": "https://symfony.com/contributors"
  3674. }
  3675. ],
  3676. "description": "Provides tools to manage errors and ease debugging PHP code",
  3677. "homepage": "https://symfony.com",
  3678. "support": {
  3679. "source": "https://github.com/symfony/error-handler/tree/v7.4.8"
  3680. },
  3681. "funding": [
  3682. {
  3683. "url": "https://symfony.com/sponsor",
  3684. "type": "custom"
  3685. },
  3686. {
  3687. "url": "https://github.com/fabpot",
  3688. "type": "github"
  3689. },
  3690. {
  3691. "url": "https://github.com/nicolas-grekas",
  3692. "type": "github"
  3693. },
  3694. {
  3695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3696. "type": "tidelift"
  3697. }
  3698. ],
  3699. "time": "2026-03-24T13:12:05+00:00"
  3700. },
  3701. {
  3702. "name": "symfony/event-dispatcher",
  3703. "version": "v7.4.9",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/symfony/event-dispatcher.git",
  3707. "reference": "e4a2e29753c7801f7a8340e066cfa788f3bc8101"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e4a2e29753c7801f7a8340e066cfa788f3bc8101",
  3712. "reference": "e4a2e29753c7801f7a8340e066cfa788f3bc8101",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "php": ">=8.2",
  3717. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3718. },
  3719. "conflict": {
  3720. "symfony/dependency-injection": "<6.4",
  3721. "symfony/service-contracts": "<2.5"
  3722. },
  3723. "provide": {
  3724. "psr/event-dispatcher-implementation": "1.0",
  3725. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3726. },
  3727. "require-dev": {
  3728. "psr/log": "^1|^2|^3",
  3729. "symfony/config": "^6.4|^7.0|^8.0",
  3730. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3731. "symfony/error-handler": "^6.4|^7.0|^8.0",
  3732. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3733. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  3734. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3735. "symfony/service-contracts": "^2.5|^3",
  3736. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  3737. },
  3738. "type": "library",
  3739. "autoload": {
  3740. "psr-4": {
  3741. "Symfony\\Component\\EventDispatcher\\": ""
  3742. },
  3743. "exclude-from-classmap": [
  3744. "/Tests/"
  3745. ]
  3746. },
  3747. "notification-url": "https://packagist.org/downloads/",
  3748. "license": [
  3749. "MIT"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Fabien Potencier",
  3754. "email": "fabien@symfony.com"
  3755. },
  3756. {
  3757. "name": "Symfony Community",
  3758. "homepage": "https://symfony.com/contributors"
  3759. }
  3760. ],
  3761. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3762. "homepage": "https://symfony.com",
  3763. "support": {
  3764. "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.9"
  3765. },
  3766. "funding": [
  3767. {
  3768. "url": "https://symfony.com/sponsor",
  3769. "type": "custom"
  3770. },
  3771. {
  3772. "url": "https://github.com/fabpot",
  3773. "type": "github"
  3774. },
  3775. {
  3776. "url": "https://github.com/nicolas-grekas",
  3777. "type": "github"
  3778. },
  3779. {
  3780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3781. "type": "tidelift"
  3782. }
  3783. ],
  3784. "time": "2026-04-18T13:18:21+00:00"
  3785. },
  3786. {
  3787. "name": "symfony/event-dispatcher-contracts",
  3788. "version": "v3.7.0",
  3789. "source": {
  3790. "type": "git",
  3791. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3792. "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32"
  3793. },
  3794. "dist": {
  3795. "type": "zip",
  3796. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/ccba7060602b7fed0b03c85bf025257f76d9ef32",
  3797. "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32",
  3798. "shasum": ""
  3799. },
  3800. "require": {
  3801. "php": ">=8.1",
  3802. "psr/event-dispatcher": "^1"
  3803. },
  3804. "type": "library",
  3805. "extra": {
  3806. "thanks": {
  3807. "url": "https://github.com/symfony/contracts",
  3808. "name": "symfony/contracts"
  3809. },
  3810. "branch-alias": {
  3811. "dev-main": "3.7-dev"
  3812. }
  3813. },
  3814. "autoload": {
  3815. "psr-4": {
  3816. "Symfony\\Contracts\\EventDispatcher\\": ""
  3817. }
  3818. },
  3819. "notification-url": "https://packagist.org/downloads/",
  3820. "license": [
  3821. "MIT"
  3822. ],
  3823. "authors": [
  3824. {
  3825. "name": "Nicolas Grekas",
  3826. "email": "p@tchwork.com"
  3827. },
  3828. {
  3829. "name": "Symfony Community",
  3830. "homepage": "https://symfony.com/contributors"
  3831. }
  3832. ],
  3833. "description": "Generic abstractions related to dispatching event",
  3834. "homepage": "https://symfony.com",
  3835. "keywords": [
  3836. "abstractions",
  3837. "contracts",
  3838. "decoupling",
  3839. "interfaces",
  3840. "interoperability",
  3841. "standards"
  3842. ],
  3843. "support": {
  3844. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.7.0"
  3845. },
  3846. "funding": [
  3847. {
  3848. "url": "https://symfony.com/sponsor",
  3849. "type": "custom"
  3850. },
  3851. {
  3852. "url": "https://github.com/fabpot",
  3853. "type": "github"
  3854. },
  3855. {
  3856. "url": "https://github.com/nicolas-grekas",
  3857. "type": "github"
  3858. },
  3859. {
  3860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3861. "type": "tidelift"
  3862. }
  3863. ],
  3864. "time": "2026-01-05T13:30:16+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/expression-language",
  3868. "version": "v7.4.8",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/expression-language.git",
  3872. "reference": "87ff95687748f4af65e4d5a6e917d448ec52aa83"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/expression-language/zipball/87ff95687748f4af65e4d5a6e917d448ec52aa83",
  3877. "reference": "87ff95687748f4af65e4d5a6e917d448ec52aa83",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "php": ">=8.2",
  3882. "symfony/cache": "^6.4|^7.0|^8.0",
  3883. "symfony/deprecation-contracts": "^2.5|^3",
  3884. "symfony/service-contracts": "^2.5|^3"
  3885. },
  3886. "type": "library",
  3887. "autoload": {
  3888. "psr-4": {
  3889. "Symfony\\Component\\ExpressionLanguage\\": ""
  3890. },
  3891. "exclude-from-classmap": [
  3892. "/Tests/"
  3893. ]
  3894. },
  3895. "notification-url": "https://packagist.org/downloads/",
  3896. "license": [
  3897. "MIT"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "Fabien Potencier",
  3902. "email": "fabien@symfony.com"
  3903. },
  3904. {
  3905. "name": "Symfony Community",
  3906. "homepage": "https://symfony.com/contributors"
  3907. }
  3908. ],
  3909. "description": "Provides an engine that can compile and evaluate expressions",
  3910. "homepage": "https://symfony.com",
  3911. "support": {
  3912. "source": "https://github.com/symfony/expression-language/tree/v7.4.8"
  3913. },
  3914. "funding": [
  3915. {
  3916. "url": "https://symfony.com/sponsor",
  3917. "type": "custom"
  3918. },
  3919. {
  3920. "url": "https://github.com/fabpot",
  3921. "type": "github"
  3922. },
  3923. {
  3924. "url": "https://github.com/nicolas-grekas",
  3925. "type": "github"
  3926. },
  3927. {
  3928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3929. "type": "tidelift"
  3930. }
  3931. ],
  3932. "time": "2026-03-24T13:12:05+00:00"
  3933. },
  3934. {
  3935. "name": "symfony/filesystem",
  3936. "version": "v7.4.9",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://github.com/symfony/filesystem.git",
  3940. "reference": "dcd8f96bcdc0f128ec406c765cc066c6035d1be3"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://api.github.com/repos/symfony/filesystem/zipball/dcd8f96bcdc0f128ec406c765cc066c6035d1be3",
  3945. "reference": "dcd8f96bcdc0f128ec406c765cc066c6035d1be3",
  3946. "shasum": ""
  3947. },
  3948. "require": {
  3949. "php": ">=8.2",
  3950. "symfony/polyfill-ctype": "~1.8",
  3951. "symfony/polyfill-mbstring": "~1.8"
  3952. },
  3953. "require-dev": {
  3954. "symfony/process": "^6.4|^7.0|^8.0"
  3955. },
  3956. "type": "library",
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Symfony\\Component\\Filesystem\\": ""
  3960. },
  3961. "exclude-from-classmap": [
  3962. "/Tests/"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Fabien Potencier",
  3972. "email": "fabien@symfony.com"
  3973. },
  3974. {
  3975. "name": "Symfony Community",
  3976. "homepage": "https://symfony.com/contributors"
  3977. }
  3978. ],
  3979. "description": "Provides basic utilities for the filesystem",
  3980. "homepage": "https://symfony.com",
  3981. "support": {
  3982. "source": "https://github.com/symfony/filesystem/tree/v7.4.9"
  3983. },
  3984. "funding": [
  3985. {
  3986. "url": "https://symfony.com/sponsor",
  3987. "type": "custom"
  3988. },
  3989. {
  3990. "url": "https://github.com/fabpot",
  3991. "type": "github"
  3992. },
  3993. {
  3994. "url": "https://github.com/nicolas-grekas",
  3995. "type": "github"
  3996. },
  3997. {
  3998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3999. "type": "tidelift"
  4000. }
  4001. ],
  4002. "time": "2026-04-18T13:18:21+00:00"
  4003. },
  4004. {
  4005. "name": "symfony/finder",
  4006. "version": "v7.4.8",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/symfony/finder.git",
  4010. "reference": "e0be088d22278583a82da281886e8c3592fbf149"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149",
  4015. "reference": "e0be088d22278583a82da281886e8c3592fbf149",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "php": ">=8.2"
  4020. },
  4021. "require-dev": {
  4022. "symfony/filesystem": "^6.4|^7.0|^8.0"
  4023. },
  4024. "type": "library",
  4025. "autoload": {
  4026. "psr-4": {
  4027. "Symfony\\Component\\Finder\\": ""
  4028. },
  4029. "exclude-from-classmap": [
  4030. "/Tests/"
  4031. ]
  4032. },
  4033. "notification-url": "https://packagist.org/downloads/",
  4034. "license": [
  4035. "MIT"
  4036. ],
  4037. "authors": [
  4038. {
  4039. "name": "Fabien Potencier",
  4040. "email": "fabien@symfony.com"
  4041. },
  4042. {
  4043. "name": "Symfony Community",
  4044. "homepage": "https://symfony.com/contributors"
  4045. }
  4046. ],
  4047. "description": "Finds files and directories via an intuitive fluent interface",
  4048. "homepage": "https://symfony.com",
  4049. "support": {
  4050. "source": "https://github.com/symfony/finder/tree/v7.4.8"
  4051. },
  4052. "funding": [
  4053. {
  4054. "url": "https://symfony.com/sponsor",
  4055. "type": "custom"
  4056. },
  4057. {
  4058. "url": "https://github.com/fabpot",
  4059. "type": "github"
  4060. },
  4061. {
  4062. "url": "https://github.com/nicolas-grekas",
  4063. "type": "github"
  4064. },
  4065. {
  4066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4067. "type": "tidelift"
  4068. }
  4069. ],
  4070. "time": "2026-03-24T13:12:05+00:00"
  4071. },
  4072. {
  4073. "name": "symfony/flex",
  4074. "version": "v2.10.0",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/symfony/flex.git",
  4078. "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/symfony/flex/zipball/9cd384775973eabbf6e8b05784dda279fc67c28d",
  4083. "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d",
  4084. "shasum": ""
  4085. },
  4086. "require": {
  4087. "composer-plugin-api": "^2.1",
  4088. "php": ">=8.1"
  4089. },
  4090. "conflict": {
  4091. "composer/semver": "<1.7.2",
  4092. "symfony/dotenv": "<5.4"
  4093. },
  4094. "require-dev": {
  4095. "composer/composer": "^2.1",
  4096. "symfony/dotenv": "^6.4|^7.4|^8.0",
  4097. "symfony/filesystem": "^6.4|^7.4|^8.0",
  4098. "symfony/phpunit-bridge": "^6.4|^7.4|^8.0",
  4099. "symfony/process": "^6.4|^7.4|^8.0"
  4100. },
  4101. "type": "composer-plugin",
  4102. "extra": {
  4103. "class": "Symfony\\Flex\\Flex"
  4104. },
  4105. "autoload": {
  4106. "psr-4": {
  4107. "Symfony\\Flex\\": "src"
  4108. }
  4109. },
  4110. "notification-url": "https://packagist.org/downloads/",
  4111. "license": [
  4112. "MIT"
  4113. ],
  4114. "authors": [
  4115. {
  4116. "name": "Fabien Potencier",
  4117. "email": "fabien.potencier@gmail.com"
  4118. }
  4119. ],
  4120. "description": "Composer plugin for Symfony",
  4121. "support": {
  4122. "issues": "https://github.com/symfony/flex/issues",
  4123. "source": "https://github.com/symfony/flex/tree/v2.10.0"
  4124. },
  4125. "funding": [
  4126. {
  4127. "url": "https://symfony.com/sponsor",
  4128. "type": "custom"
  4129. },
  4130. {
  4131. "url": "https://github.com/fabpot",
  4132. "type": "github"
  4133. },
  4134. {
  4135. "url": "https://github.com/nicolas-grekas",
  4136. "type": "github"
  4137. },
  4138. {
  4139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4140. "type": "tidelift"
  4141. }
  4142. ],
  4143. "time": "2025-11-16T09:38:19+00:00"
  4144. },
  4145. {
  4146. "name": "symfony/form",
  4147. "version": "v7.4.9",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://github.com/symfony/form.git",
  4151. "reference": "b6c107af659106abec1771d9d7d22da528644d3a"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://api.github.com/repos/symfony/form/zipball/b6c107af659106abec1771d9d7d22da528644d3a",
  4156. "reference": "b6c107af659106abec1771d9d7d22da528644d3a",
  4157. "shasum": ""
  4158. },
  4159. "require": {
  4160. "php": ">=8.2",
  4161. "symfony/deprecation-contracts": "^2.5|^3",
  4162. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4163. "symfony/options-resolver": "^7.3|^8.0",
  4164. "symfony/polyfill-ctype": "~1.8",
  4165. "symfony/polyfill-intl-icu": "^1.21",
  4166. "symfony/polyfill-mbstring": "~1.0",
  4167. "symfony/property-access": "^6.4|^7.0|^8.0",
  4168. "symfony/service-contracts": "^2.5|^3"
  4169. },
  4170. "conflict": {
  4171. "symfony/console": "<6.4",
  4172. "symfony/dependency-injection": "<6.4",
  4173. "symfony/doctrine-bridge": "<6.4",
  4174. "symfony/error-handler": "<6.4",
  4175. "symfony/framework-bundle": "<6.4",
  4176. "symfony/http-kernel": "<6.4",
  4177. "symfony/intl": "<7.4",
  4178. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4179. "symfony/translation-contracts": "<2.5",
  4180. "symfony/twig-bridge": "<6.4"
  4181. },
  4182. "require-dev": {
  4183. "doctrine/collections": "^1.0|^2.0",
  4184. "symfony/clock": "^6.4|^7.0|^8.0",
  4185. "symfony/config": "^6.4|^7.0|^8.0",
  4186. "symfony/console": "^6.4|^7.0|^8.0",
  4187. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4188. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4189. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  4190. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  4191. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4192. "symfony/intl": "^7.4|^8.0",
  4193. "symfony/security-core": "^6.4|^7.0|^8.0",
  4194. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  4195. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  4196. "symfony/uid": "^6.4|^7.0|^8.0",
  4197. "symfony/validator": "^6.4.12|^7.1.5|^8.0",
  4198. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  4199. },
  4200. "type": "library",
  4201. "autoload": {
  4202. "psr-4": {
  4203. "Symfony\\Component\\Form\\": ""
  4204. },
  4205. "exclude-from-classmap": [
  4206. "/Tests/"
  4207. ]
  4208. },
  4209. "notification-url": "https://packagist.org/downloads/",
  4210. "license": [
  4211. "MIT"
  4212. ],
  4213. "authors": [
  4214. {
  4215. "name": "Fabien Potencier",
  4216. "email": "fabien@symfony.com"
  4217. },
  4218. {
  4219. "name": "Symfony Community",
  4220. "homepage": "https://symfony.com/contributors"
  4221. }
  4222. ],
  4223. "description": "Allows to easily create, process and reuse HTML forms",
  4224. "homepage": "https://symfony.com",
  4225. "support": {
  4226. "source": "https://github.com/symfony/form/tree/v7.4.9"
  4227. },
  4228. "funding": [
  4229. {
  4230. "url": "https://symfony.com/sponsor",
  4231. "type": "custom"
  4232. },
  4233. {
  4234. "url": "https://github.com/fabpot",
  4235. "type": "github"
  4236. },
  4237. {
  4238. "url": "https://github.com/nicolas-grekas",
  4239. "type": "github"
  4240. },
  4241. {
  4242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4243. "type": "tidelift"
  4244. }
  4245. ],
  4246. "time": "2026-04-29T14:39:19+00:00"
  4247. },
  4248. {
  4249. "name": "symfony/framework-bundle",
  4250. "version": "v7.4.10",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/symfony/framework-bundle.git",
  4254. "reference": "4b9cb207d72b2e4793f28a3c62ea0865098bea20"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/4b9cb207d72b2e4793f28a3c62ea0865098bea20",
  4259. "reference": "4b9cb207d72b2e4793f28a3c62ea0865098bea20",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "composer-runtime-api": ">=2.1",
  4264. "ext-xml": "*",
  4265. "php": ">=8.2",
  4266. "symfony/cache": "^6.4.12|^7.0|^8.0",
  4267. "symfony/config": "^7.4.4|^8.0.4",
  4268. "symfony/dependency-injection": "^7.4.4|^8.0.4",
  4269. "symfony/deprecation-contracts": "^2.5|^3",
  4270. "symfony/error-handler": "^7.3|^8.0",
  4271. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4272. "symfony/filesystem": "^7.1|^8.0",
  4273. "symfony/finder": "^6.4|^7.0|^8.0",
  4274. "symfony/http-foundation": "^7.4|^8.0",
  4275. "symfony/http-kernel": "^7.4|^8.0",
  4276. "symfony/polyfill-mbstring": "~1.0",
  4277. "symfony/polyfill-php85": "^1.32",
  4278. "symfony/routing": "^7.4|^8.0"
  4279. },
  4280. "conflict": {
  4281. "doctrine/persistence": "<1.3",
  4282. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  4283. "phpdocumentor/type-resolver": "<1.5.1",
  4284. "symfony/asset": "<6.4",
  4285. "symfony/asset-mapper": "<6.4",
  4286. "symfony/clock": "<6.4",
  4287. "symfony/console": "<6.4",
  4288. "symfony/dom-crawler": "<6.4",
  4289. "symfony/dotenv": "<6.4",
  4290. "symfony/form": "<7.4",
  4291. "symfony/http-client": "<6.4",
  4292. "symfony/lock": "<6.4",
  4293. "symfony/mailer": "<6.4",
  4294. "symfony/messenger": "<7.4",
  4295. "symfony/mime": "<6.4.37|>=7.0,<7.4.9|>=8.0,<8.0.9",
  4296. "symfony/property-access": "<6.4",
  4297. "symfony/property-info": "<6.4",
  4298. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4299. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4300. "symfony/security-core": "<6.4",
  4301. "symfony/security-csrf": "<7.2",
  4302. "symfony/serializer": "<7.2.5",
  4303. "symfony/stopwatch": "<6.4",
  4304. "symfony/translation": "<7.3",
  4305. "symfony/twig-bridge": "<6.4",
  4306. "symfony/twig-bundle": "<6.4",
  4307. "symfony/validator": "<6.4",
  4308. "symfony/web-profiler-bundle": "<6.4",
  4309. "symfony/webhook": "<7.2",
  4310. "symfony/workflow": "<7.4"
  4311. },
  4312. "require-dev": {
  4313. "doctrine/persistence": "^1.3|^2|^3",
  4314. "dragonmantank/cron-expression": "^3.1",
  4315. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  4316. "seld/jsonlint": "^1.10",
  4317. "symfony/asset": "^6.4|^7.0|^8.0",
  4318. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  4319. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  4320. "symfony/clock": "^6.4|^7.0|^8.0",
  4321. "symfony/console": "^6.4|^7.0|^8.0",
  4322. "symfony/css-selector": "^6.4|^7.0|^8.0",
  4323. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  4324. "symfony/dotenv": "^6.4|^7.0|^8.0",
  4325. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4326. "symfony/form": "^7.4|^8.0",
  4327. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  4328. "symfony/http-client": "^6.4|^7.0|^8.0",
  4329. "symfony/json-streamer": "^7.3|^8.0",
  4330. "symfony/lock": "^6.4|^7.0|^8.0",
  4331. "symfony/mailer": "^6.4|^7.0|^8.0",
  4332. "symfony/messenger": "^7.4|^8.0",
  4333. "symfony/mime": "^6.4.37|^7.4.9|^8.0.9",
  4334. "symfony/notifier": "^6.4|^7.0|^8.0",
  4335. "symfony/object-mapper": "^7.3|^8.0",
  4336. "symfony/polyfill-intl-icu": "~1.0",
  4337. "symfony/process": "^6.4|^7.0|^8.0",
  4338. "symfony/property-info": "^6.4|^7.0|^8.0",
  4339. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  4340. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  4341. "symfony/scheduler": "^6.4.4|^7.0.4|^8.0",
  4342. "symfony/security-bundle": "^6.4|^7.0|^8.0",
  4343. "symfony/semaphore": "^6.4|^7.0|^8.0",
  4344. "symfony/serializer": "^7.2.5|^8.0",
  4345. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  4346. "symfony/string": "^6.4|^7.0|^8.0",
  4347. "symfony/translation": "^7.3|^8.0",
  4348. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  4349. "symfony/type-info": "^7.1.8|^8.0",
  4350. "symfony/uid": "^6.4|^7.0|^8.0",
  4351. "symfony/validator": "^7.4|^8.0",
  4352. "symfony/web-link": "^6.4|^7.0|^8.0",
  4353. "symfony/webhook": "^7.2|^8.0",
  4354. "symfony/workflow": "^7.4|^8.0",
  4355. "symfony/yaml": "^7.3|^8.0",
  4356. "twig/twig": "^3.12"
  4357. },
  4358. "type": "symfony-bundle",
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4362. },
  4363. "exclude-from-classmap": [
  4364. "/Tests/"
  4365. ]
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Fabien Potencier",
  4374. "email": "fabien@symfony.com"
  4375. },
  4376. {
  4377. "name": "Symfony Community",
  4378. "homepage": "https://symfony.com/contributors"
  4379. }
  4380. ],
  4381. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4382. "homepage": "https://symfony.com",
  4383. "support": {
  4384. "source": "https://github.com/symfony/framework-bundle/tree/v7.4.10"
  4385. },
  4386. "funding": [
  4387. {
  4388. "url": "https://symfony.com/sponsor",
  4389. "type": "custom"
  4390. },
  4391. {
  4392. "url": "https://github.com/fabpot",
  4393. "type": "github"
  4394. },
  4395. {
  4396. "url": "https://github.com/nicolas-grekas",
  4397. "type": "github"
  4398. },
  4399. {
  4400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4401. "type": "tidelift"
  4402. }
  4403. ],
  4404. "time": "2026-05-05T11:48:54+00:00"
  4405. },
  4406. {
  4407. "name": "symfony/html-sanitizer",
  4408. "version": "v7.4.8",
  4409. "source": {
  4410. "type": "git",
  4411. "url": "https://github.com/symfony/html-sanitizer.git",
  4412. "reference": "9a79c53c4bf0a8a7b0d3d917fe03eda605ea6438"
  4413. },
  4414. "dist": {
  4415. "type": "zip",
  4416. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/9a79c53c4bf0a8a7b0d3d917fe03eda605ea6438",
  4417. "reference": "9a79c53c4bf0a8a7b0d3d917fe03eda605ea6438",
  4418. "shasum": ""
  4419. },
  4420. "require": {
  4421. "ext-dom": "*",
  4422. "league/uri": "^6.5|^7.0",
  4423. "masterminds/html5": "^2.7.2",
  4424. "php": ">=8.2",
  4425. "symfony/deprecation-contracts": "^2.5|^3"
  4426. },
  4427. "type": "library",
  4428. "autoload": {
  4429. "psr-4": {
  4430. "Symfony\\Component\\HtmlSanitizer\\": ""
  4431. },
  4432. "exclude-from-classmap": [
  4433. "/Tests/"
  4434. ]
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "Titouan Galopin",
  4443. "email": "galopintitouan@gmail.com"
  4444. },
  4445. {
  4446. "name": "Symfony Community",
  4447. "homepage": "https://symfony.com/contributors"
  4448. }
  4449. ],
  4450. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4451. "homepage": "https://symfony.com",
  4452. "keywords": [
  4453. "Purifier",
  4454. "html",
  4455. "sanitizer"
  4456. ],
  4457. "support": {
  4458. "source": "https://github.com/symfony/html-sanitizer/tree/v7.4.8"
  4459. },
  4460. "funding": [
  4461. {
  4462. "url": "https://symfony.com/sponsor",
  4463. "type": "custom"
  4464. },
  4465. {
  4466. "url": "https://github.com/fabpot",
  4467. "type": "github"
  4468. },
  4469. {
  4470. "url": "https://github.com/nicolas-grekas",
  4471. "type": "github"
  4472. },
  4473. {
  4474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4475. "type": "tidelift"
  4476. }
  4477. ],
  4478. "time": "2026-03-24T13:12:05+00:00"
  4479. },
  4480. {
  4481. "name": "symfony/http-client",
  4482. "version": "v7.4.9",
  4483. "source": {
  4484. "type": "git",
  4485. "url": "https://github.com/symfony/http-client.git",
  4486. "reference": "7e941c6abf4e3bf7dca160bf0e11ef36a9f832f6"
  4487. },
  4488. "dist": {
  4489. "type": "zip",
  4490. "url": "https://api.github.com/repos/symfony/http-client/zipball/7e941c6abf4e3bf7dca160bf0e11ef36a9f832f6",
  4491. "reference": "7e941c6abf4e3bf7dca160bf0e11ef36a9f832f6",
  4492. "shasum": ""
  4493. },
  4494. "require": {
  4495. "php": ">=8.2",
  4496. "psr/log": "^1|^2|^3",
  4497. "symfony/deprecation-contracts": "^2.5|^3",
  4498. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  4499. "symfony/polyfill-php83": "^1.29",
  4500. "symfony/service-contracts": "^2.5|^3"
  4501. },
  4502. "conflict": {
  4503. "amphp/amp": "<2.5",
  4504. "amphp/socket": "<1.1",
  4505. "php-http/discovery": "<1.15",
  4506. "symfony/http-foundation": "<6.4"
  4507. },
  4508. "provide": {
  4509. "php-http/async-client-implementation": "*",
  4510. "php-http/client-implementation": "*",
  4511. "psr/http-client-implementation": "1.0",
  4512. "symfony/http-client-implementation": "3.0"
  4513. },
  4514. "require-dev": {
  4515. "amphp/http-client": "^4.2.1|^5.0",
  4516. "amphp/http-tunnel": "^1.0|^2.0",
  4517. "guzzlehttp/promises": "^1.4|^2.0",
  4518. "nyholm/psr7": "^1.0",
  4519. "php-http/httplug": "^1.0|^2.0",
  4520. "psr/http-client": "^1.0",
  4521. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  4522. "symfony/cache": "^6.4|^7.0|^8.0",
  4523. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4524. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4525. "symfony/messenger": "^6.4|^7.0|^8.0",
  4526. "symfony/process": "^6.4|^7.0|^8.0",
  4527. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  4528. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  4529. },
  4530. "type": "library",
  4531. "autoload": {
  4532. "psr-4": {
  4533. "Symfony\\Component\\HttpClient\\": ""
  4534. },
  4535. "exclude-from-classmap": [
  4536. "/Tests/"
  4537. ]
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "MIT"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Nicolas Grekas",
  4546. "email": "p@tchwork.com"
  4547. },
  4548. {
  4549. "name": "Symfony Community",
  4550. "homepage": "https://symfony.com/contributors"
  4551. }
  4552. ],
  4553. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4554. "homepage": "https://symfony.com",
  4555. "keywords": [
  4556. "http"
  4557. ],
  4558. "support": {
  4559. "source": "https://github.com/symfony/http-client/tree/v7.4.9"
  4560. },
  4561. "funding": [
  4562. {
  4563. "url": "https://symfony.com/sponsor",
  4564. "type": "custom"
  4565. },
  4566. {
  4567. "url": "https://github.com/fabpot",
  4568. "type": "github"
  4569. },
  4570. {
  4571. "url": "https://github.com/nicolas-grekas",
  4572. "type": "github"
  4573. },
  4574. {
  4575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4576. "type": "tidelift"
  4577. }
  4578. ],
  4579. "time": "2026-04-29T13:25:15+00:00"
  4580. },
  4581. {
  4582. "name": "symfony/http-client-contracts",
  4583. "version": "v3.7.0",
  4584. "source": {
  4585. "type": "git",
  4586. "url": "https://github.com/symfony/http-client-contracts.git",
  4587. "reference": "4a2d00c37651c0bdc2b9e1c773487a8bf4edb12d"
  4588. },
  4589. "dist": {
  4590. "type": "zip",
  4591. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4a2d00c37651c0bdc2b9e1c773487a8bf4edb12d",
  4592. "reference": "4a2d00c37651c0bdc2b9e1c773487a8bf4edb12d",
  4593. "shasum": ""
  4594. },
  4595. "require": {
  4596. "php": ">=8.1"
  4597. },
  4598. "type": "library",
  4599. "extra": {
  4600. "thanks": {
  4601. "url": "https://github.com/symfony/contracts",
  4602. "name": "symfony/contracts"
  4603. },
  4604. "branch-alias": {
  4605. "dev-main": "3.7-dev"
  4606. }
  4607. },
  4608. "autoload": {
  4609. "psr-4": {
  4610. "Symfony\\Contracts\\HttpClient\\": ""
  4611. },
  4612. "exclude-from-classmap": [
  4613. "/Test/"
  4614. ]
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "MIT"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Nicolas Grekas",
  4623. "email": "p@tchwork.com"
  4624. },
  4625. {
  4626. "name": "Symfony Community",
  4627. "homepage": "https://symfony.com/contributors"
  4628. }
  4629. ],
  4630. "description": "Generic abstractions related to HTTP clients",
  4631. "homepage": "https://symfony.com",
  4632. "keywords": [
  4633. "abstractions",
  4634. "contracts",
  4635. "decoupling",
  4636. "interfaces",
  4637. "interoperability",
  4638. "standards"
  4639. ],
  4640. "support": {
  4641. "source": "https://github.com/symfony/http-client-contracts/tree/v3.7.0"
  4642. },
  4643. "funding": [
  4644. {
  4645. "url": "https://symfony.com/sponsor",
  4646. "type": "custom"
  4647. },
  4648. {
  4649. "url": "https://github.com/fabpot",
  4650. "type": "github"
  4651. },
  4652. {
  4653. "url": "https://github.com/nicolas-grekas",
  4654. "type": "github"
  4655. },
  4656. {
  4657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4658. "type": "tidelift"
  4659. }
  4660. ],
  4661. "time": "2026-03-06T13:17:50+00:00"
  4662. },
  4663. {
  4664. "name": "symfony/http-foundation",
  4665. "version": "v7.4.8",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/symfony/http-foundation.git",
  4669. "reference": "9381209597ec66c25be154cbf2289076e64d1eab"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9381209597ec66c25be154cbf2289076e64d1eab",
  4674. "reference": "9381209597ec66c25be154cbf2289076e64d1eab",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "php": ">=8.2",
  4679. "symfony/deprecation-contracts": "^2.5|^3",
  4680. "symfony/polyfill-mbstring": "^1.1"
  4681. },
  4682. "conflict": {
  4683. "doctrine/dbal": "<3.6",
  4684. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  4685. },
  4686. "require-dev": {
  4687. "doctrine/dbal": "^3.6|^4",
  4688. "predis/predis": "^1.1|^2.0",
  4689. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  4690. "symfony/clock": "^6.4|^7.0|^8.0",
  4691. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4692. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4693. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4694. "symfony/mime": "^6.4|^7.0|^8.0",
  4695. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  4696. },
  4697. "type": "library",
  4698. "autoload": {
  4699. "psr-4": {
  4700. "Symfony\\Component\\HttpFoundation\\": ""
  4701. },
  4702. "exclude-from-classmap": [
  4703. "/Tests/"
  4704. ]
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "MIT"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "Fabien Potencier",
  4713. "email": "fabien@symfony.com"
  4714. },
  4715. {
  4716. "name": "Symfony Community",
  4717. "homepage": "https://symfony.com/contributors"
  4718. }
  4719. ],
  4720. "description": "Defines an object-oriented layer for the HTTP specification",
  4721. "homepage": "https://symfony.com",
  4722. "support": {
  4723. "source": "https://github.com/symfony/http-foundation/tree/v7.4.8"
  4724. },
  4725. "funding": [
  4726. {
  4727. "url": "https://symfony.com/sponsor",
  4728. "type": "custom"
  4729. },
  4730. {
  4731. "url": "https://github.com/fabpot",
  4732. "type": "github"
  4733. },
  4734. {
  4735. "url": "https://github.com/nicolas-grekas",
  4736. "type": "github"
  4737. },
  4738. {
  4739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4740. "type": "tidelift"
  4741. }
  4742. ],
  4743. "time": "2026-03-24T13:12:05+00:00"
  4744. },
  4745. {
  4746. "name": "symfony/http-kernel",
  4747. "version": "v7.4.10",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://github.com/symfony/http-kernel.git",
  4751. "reference": "23486f59234c6fd6e8f1bec97124f3829d686627"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/23486f59234c6fd6e8f1bec97124f3829d686627",
  4756. "reference": "23486f59234c6fd6e8f1bec97124f3829d686627",
  4757. "shasum": ""
  4758. },
  4759. "require": {
  4760. "php": ">=8.2",
  4761. "psr/log": "^1|^2|^3",
  4762. "symfony/deprecation-contracts": "^2.5|^3",
  4763. "symfony/error-handler": "^6.4|^7.0|^8.0",
  4764. "symfony/event-dispatcher": "^7.3|^8.0",
  4765. "symfony/http-foundation": "^7.4|^8.0",
  4766. "symfony/polyfill-ctype": "^1.8"
  4767. },
  4768. "conflict": {
  4769. "symfony/browser-kit": "<6.4",
  4770. "symfony/cache": "<6.4",
  4771. "symfony/config": "<6.4",
  4772. "symfony/console": "<6.4",
  4773. "symfony/dependency-injection": "<6.4",
  4774. "symfony/doctrine-bridge": "<6.4",
  4775. "symfony/flex": "<2.10",
  4776. "symfony/form": "<6.4",
  4777. "symfony/http-client": "<6.4",
  4778. "symfony/http-client-contracts": "<2.5",
  4779. "symfony/mailer": "<6.4",
  4780. "symfony/messenger": "<6.4",
  4781. "symfony/translation": "<6.4",
  4782. "symfony/translation-contracts": "<2.5",
  4783. "symfony/twig-bridge": "<6.4",
  4784. "symfony/validator": "<6.4",
  4785. "symfony/var-dumper": "<6.4",
  4786. "twig/twig": "<3.12"
  4787. },
  4788. "provide": {
  4789. "psr/log-implementation": "1.0|2.0|3.0"
  4790. },
  4791. "require-dev": {
  4792. "psr/cache": "^1.0|^2.0|^3.0",
  4793. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  4794. "symfony/clock": "^6.4|^7.0|^8.0",
  4795. "symfony/config": "^6.4|^7.0|^8.0",
  4796. "symfony/console": "^6.4|^7.0|^8.0",
  4797. "symfony/css-selector": "^6.4|^7.0|^8.0",
  4798. "symfony/dependency-injection": "^6.4.1|^7.0.1|^8.0",
  4799. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  4800. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4801. "symfony/finder": "^6.4|^7.0|^8.0",
  4802. "symfony/http-client-contracts": "^2.5|^3",
  4803. "symfony/process": "^6.4|^7.0|^8.0",
  4804. "symfony/property-access": "^7.1|^8.0",
  4805. "symfony/routing": "^6.4|^7.0|^8.0",
  4806. "symfony/serializer": "^7.1|^8.0",
  4807. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  4808. "symfony/translation": "^6.4|^7.0|^8.0",
  4809. "symfony/translation-contracts": "^2.5|^3",
  4810. "symfony/uid": "^6.4|^7.0|^8.0",
  4811. "symfony/validator": "^6.4|^7.0|^8.0",
  4812. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  4813. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  4814. "twig/twig": "^3.12"
  4815. },
  4816. "type": "library",
  4817. "autoload": {
  4818. "psr-4": {
  4819. "Symfony\\Component\\HttpKernel\\": ""
  4820. },
  4821. "exclude-from-classmap": [
  4822. "/Tests/"
  4823. ]
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "MIT"
  4828. ],
  4829. "authors": [
  4830. {
  4831. "name": "Fabien Potencier",
  4832. "email": "fabien@symfony.com"
  4833. },
  4834. {
  4835. "name": "Symfony Community",
  4836. "homepage": "https://symfony.com/contributors"
  4837. }
  4838. ],
  4839. "description": "Provides a structured process for converting a Request into a Response",
  4840. "homepage": "https://symfony.com",
  4841. "support": {
  4842. "source": "https://github.com/symfony/http-kernel/tree/v7.4.10"
  4843. },
  4844. "funding": [
  4845. {
  4846. "url": "https://symfony.com/sponsor",
  4847. "type": "custom"
  4848. },
  4849. {
  4850. "url": "https://github.com/fabpot",
  4851. "type": "github"
  4852. },
  4853. {
  4854. "url": "https://github.com/nicolas-grekas",
  4855. "type": "github"
  4856. },
  4857. {
  4858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4859. "type": "tidelift"
  4860. }
  4861. ],
  4862. "time": "2026-05-06T12:07:34+00:00"
  4863. },
  4864. {
  4865. "name": "symfony/mailer",
  4866. "version": "v7.4.8",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/symfony/mailer.git",
  4870. "reference": "f6ea532250b476bfc1b56699b388a1bdbf168f62"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/symfony/mailer/zipball/f6ea532250b476bfc1b56699b388a1bdbf168f62",
  4875. "reference": "f6ea532250b476bfc1b56699b388a1bdbf168f62",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "egulias/email-validator": "^2.1.10|^3|^4",
  4880. "php": ">=8.2",
  4881. "psr/event-dispatcher": "^1",
  4882. "psr/log": "^1|^2|^3",
  4883. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4884. "symfony/mime": "^7.2|^8.0",
  4885. "symfony/service-contracts": "^2.5|^3"
  4886. },
  4887. "conflict": {
  4888. "symfony/http-client-contracts": "<2.5",
  4889. "symfony/http-kernel": "<6.4",
  4890. "symfony/messenger": "<6.4",
  4891. "symfony/mime": "<6.4",
  4892. "symfony/twig-bridge": "<6.4"
  4893. },
  4894. "require-dev": {
  4895. "symfony/console": "^6.4|^7.0|^8.0",
  4896. "symfony/http-client": "^6.4|^7.0|^8.0",
  4897. "symfony/messenger": "^6.4|^7.0|^8.0",
  4898. "symfony/twig-bridge": "^6.4|^7.0|^8.0"
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "psr-4": {
  4903. "Symfony\\Component\\Mailer\\": ""
  4904. },
  4905. "exclude-from-classmap": [
  4906. "/Tests/"
  4907. ]
  4908. },
  4909. "notification-url": "https://packagist.org/downloads/",
  4910. "license": [
  4911. "MIT"
  4912. ],
  4913. "authors": [
  4914. {
  4915. "name": "Fabien Potencier",
  4916. "email": "fabien@symfony.com"
  4917. },
  4918. {
  4919. "name": "Symfony Community",
  4920. "homepage": "https://symfony.com/contributors"
  4921. }
  4922. ],
  4923. "description": "Helps sending emails",
  4924. "homepage": "https://symfony.com",
  4925. "support": {
  4926. "source": "https://github.com/symfony/mailer/tree/v7.4.8"
  4927. },
  4928. "funding": [
  4929. {
  4930. "url": "https://symfony.com/sponsor",
  4931. "type": "custom"
  4932. },
  4933. {
  4934. "url": "https://github.com/fabpot",
  4935. "type": "github"
  4936. },
  4937. {
  4938. "url": "https://github.com/nicolas-grekas",
  4939. "type": "github"
  4940. },
  4941. {
  4942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4943. "type": "tidelift"
  4944. }
  4945. ],
  4946. "time": "2026-03-24T13:12:05+00:00"
  4947. },
  4948. {
  4949. "name": "symfony/mime",
  4950. "version": "v7.4.9",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/symfony/mime.git",
  4954. "reference": "2d550c4758ba4c47519a6667c36553d535705b0c"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/symfony/mime/zipball/2d550c4758ba4c47519a6667c36553d535705b0c",
  4959. "reference": "2d550c4758ba4c47519a6667c36553d535705b0c",
  4960. "shasum": ""
  4961. },
  4962. "require": {
  4963. "php": ">=8.2",
  4964. "symfony/deprecation-contracts": "^2.5|^3",
  4965. "symfony/polyfill-intl-idn": "^1.10",
  4966. "symfony/polyfill-mbstring": "^1.0"
  4967. },
  4968. "conflict": {
  4969. "egulias/email-validator": "~3.0.0",
  4970. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  4971. "phpdocumentor/type-resolver": "<1.5.1",
  4972. "symfony/mailer": "<6.4",
  4973. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4974. },
  4975. "require-dev": {
  4976. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4977. "league/html-to-markdown": "^5.0",
  4978. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  4979. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4980. "symfony/process": "^6.4|^7.0|^8.0",
  4981. "symfony/property-access": "^6.4|^7.0|^8.0",
  4982. "symfony/property-info": "^6.4|^7.0|^8.0",
  4983. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  4984. },
  4985. "type": "library",
  4986. "autoload": {
  4987. "psr-4": {
  4988. "Symfony\\Component\\Mime\\": ""
  4989. },
  4990. "exclude-from-classmap": [
  4991. "/Tests/"
  4992. ]
  4993. },
  4994. "notification-url": "https://packagist.org/downloads/",
  4995. "license": [
  4996. "MIT"
  4997. ],
  4998. "authors": [
  4999. {
  5000. "name": "Fabien Potencier",
  5001. "email": "fabien@symfony.com"
  5002. },
  5003. {
  5004. "name": "Symfony Community",
  5005. "homepage": "https://symfony.com/contributors"
  5006. }
  5007. ],
  5008. "description": "Allows manipulating MIME messages",
  5009. "homepage": "https://symfony.com",
  5010. "keywords": [
  5011. "mime",
  5012. "mime-type"
  5013. ],
  5014. "support": {
  5015. "source": "https://github.com/symfony/mime/tree/v7.4.9"
  5016. },
  5017. "funding": [
  5018. {
  5019. "url": "https://symfony.com/sponsor",
  5020. "type": "custom"
  5021. },
  5022. {
  5023. "url": "https://github.com/fabpot",
  5024. "type": "github"
  5025. },
  5026. {
  5027. "url": "https://github.com/nicolas-grekas",
  5028. "type": "github"
  5029. },
  5030. {
  5031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5032. "type": "tidelift"
  5033. }
  5034. ],
  5035. "time": "2026-04-29T13:21:53+00:00"
  5036. },
  5037. {
  5038. "name": "symfony/monolog-bridge",
  5039. "version": "v7.4.9",
  5040. "source": {
  5041. "type": "git",
  5042. "url": "https://github.com/symfony/monolog-bridge.git",
  5043. "reference": "20366bceee51838144a14805204bb792cb3d09f2"
  5044. },
  5045. "dist": {
  5046. "type": "zip",
  5047. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/20366bceee51838144a14805204bb792cb3d09f2",
  5048. "reference": "20366bceee51838144a14805204bb792cb3d09f2",
  5049. "shasum": ""
  5050. },
  5051. "require": {
  5052. "monolog/monolog": "^3",
  5053. "php": ">=8.2",
  5054. "symfony/deprecation-contracts": "^2.5|^3",
  5055. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5056. "symfony/service-contracts": "^2.5|^3"
  5057. },
  5058. "conflict": {
  5059. "symfony/console": "<6.4",
  5060. "symfony/http-foundation": "<6.4",
  5061. "symfony/security-core": "<6.4"
  5062. },
  5063. "require-dev": {
  5064. "symfony/console": "^6.4|^7.0|^8.0",
  5065. "symfony/http-client": "^6.4|^7.0|^8.0",
  5066. "symfony/mailer": "^6.4|^7.0|^8.0",
  5067. "symfony/messenger": "^6.4|^7.0|^8.0",
  5068. "symfony/mime": "^6.4|^7.0|^8.0",
  5069. "symfony/security-core": "^6.4|^7.0|^8.0",
  5070. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  5071. },
  5072. "type": "symfony-bridge",
  5073. "autoload": {
  5074. "psr-4": {
  5075. "Symfony\\Bridge\\Monolog\\": ""
  5076. },
  5077. "exclude-from-classmap": [
  5078. "/Tests/"
  5079. ]
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Fabien Potencier",
  5088. "email": "fabien@symfony.com"
  5089. },
  5090. {
  5091. "name": "Symfony Community",
  5092. "homepage": "https://symfony.com/contributors"
  5093. }
  5094. ],
  5095. "description": "Provides integration for Monolog with various Symfony components",
  5096. "homepage": "https://symfony.com",
  5097. "support": {
  5098. "source": "https://github.com/symfony/monolog-bridge/tree/v7.4.9"
  5099. },
  5100. "funding": [
  5101. {
  5102. "url": "https://symfony.com/sponsor",
  5103. "type": "custom"
  5104. },
  5105. {
  5106. "url": "https://github.com/fabpot",
  5107. "type": "github"
  5108. },
  5109. {
  5110. "url": "https://github.com/nicolas-grekas",
  5111. "type": "github"
  5112. },
  5113. {
  5114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5115. "type": "tidelift"
  5116. }
  5117. ],
  5118. "time": "2026-04-29T13:21:53+00:00"
  5119. },
  5120. {
  5121. "name": "symfony/monolog-bundle",
  5122. "version": "v3.11.2",
  5123. "source": {
  5124. "type": "git",
  5125. "url": "https://github.com/symfony/monolog-bundle.git",
  5126. "reference": "d87468010570b2ec766152184918ee8d267c7411"
  5127. },
  5128. "dist": {
  5129. "type": "zip",
  5130. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/d87468010570b2ec766152184918ee8d267c7411",
  5131. "reference": "d87468010570b2ec766152184918ee8d267c7411",
  5132. "shasum": ""
  5133. },
  5134. "require": {
  5135. "composer-runtime-api": "^2.0",
  5136. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5137. "php": ">=8.1",
  5138. "symfony/config": "^6.4 || ^7.0",
  5139. "symfony/dependency-injection": "^6.4 || ^7.0",
  5140. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  5141. "symfony/http-kernel": "^6.4 || ^7.0",
  5142. "symfony/monolog-bridge": "^6.4 || ^7.0",
  5143. "symfony/polyfill-php84": "^1.30"
  5144. },
  5145. "require-dev": {
  5146. "symfony/console": "^6.4 || ^7.0",
  5147. "symfony/phpunit-bridge": "^7.3.3",
  5148. "symfony/yaml": "^6.4 || ^7.0"
  5149. },
  5150. "type": "symfony-bundle",
  5151. "autoload": {
  5152. "psr-4": {
  5153. "Symfony\\Bundle\\MonologBundle\\": "src"
  5154. }
  5155. },
  5156. "notification-url": "https://packagist.org/downloads/",
  5157. "license": [
  5158. "MIT"
  5159. ],
  5160. "authors": [
  5161. {
  5162. "name": "Fabien Potencier",
  5163. "email": "fabien@symfony.com"
  5164. },
  5165. {
  5166. "name": "Symfony Community",
  5167. "homepage": "https://symfony.com/contributors"
  5168. }
  5169. ],
  5170. "description": "Symfony MonologBundle",
  5171. "homepage": "https://symfony.com",
  5172. "keywords": [
  5173. "log",
  5174. "logging"
  5175. ],
  5176. "support": {
  5177. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5178. "source": "https://github.com/symfony/monolog-bundle/tree/v3.11.2"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://symfony.com/sponsor",
  5183. "type": "custom"
  5184. },
  5185. {
  5186. "url": "https://github.com/fabpot",
  5187. "type": "github"
  5188. },
  5189. {
  5190. "url": "https://github.com/nicolas-grekas",
  5191. "type": "github"
  5192. },
  5193. {
  5194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5195. "type": "tidelift"
  5196. }
  5197. ],
  5198. "time": "2026-04-02T18:23:01+00:00"
  5199. },
  5200. {
  5201. "name": "symfony/options-resolver",
  5202. "version": "v7.4.8",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://github.com/symfony/options-resolver.git",
  5206. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4"
  5207. },
  5208. "dist": {
  5209. "type": "zip",
  5210. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  5211. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  5212. "shasum": ""
  5213. },
  5214. "require": {
  5215. "php": ">=8.2",
  5216. "symfony/deprecation-contracts": "^2.5|^3"
  5217. },
  5218. "type": "library",
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Symfony\\Component\\OptionsResolver\\": ""
  5222. },
  5223. "exclude-from-classmap": [
  5224. "/Tests/"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "MIT"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Fabien Potencier",
  5234. "email": "fabien@symfony.com"
  5235. },
  5236. {
  5237. "name": "Symfony Community",
  5238. "homepage": "https://symfony.com/contributors"
  5239. }
  5240. ],
  5241. "description": "Provides an improved replacement for the array_replace PHP function",
  5242. "homepage": "https://symfony.com",
  5243. "keywords": [
  5244. "config",
  5245. "configuration",
  5246. "options"
  5247. ],
  5248. "support": {
  5249. "source": "https://github.com/symfony/options-resolver/tree/v7.4.8"
  5250. },
  5251. "funding": [
  5252. {
  5253. "url": "https://symfony.com/sponsor",
  5254. "type": "custom"
  5255. },
  5256. {
  5257. "url": "https://github.com/fabpot",
  5258. "type": "github"
  5259. },
  5260. {
  5261. "url": "https://github.com/nicolas-grekas",
  5262. "type": "github"
  5263. },
  5264. {
  5265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5266. "type": "tidelift"
  5267. }
  5268. ],
  5269. "time": "2026-03-24T13:12:05+00:00"
  5270. },
  5271. {
  5272. "name": "symfony/password-hasher",
  5273. "version": "v7.4.8",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://github.com/symfony/password-hasher.git",
  5277. "reference": "18a7d92126c95962f7efbcc9e421ba710a366847"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/18a7d92126c95962f7efbcc9e421ba710a366847",
  5282. "reference": "18a7d92126c95962f7efbcc9e421ba710a366847",
  5283. "shasum": ""
  5284. },
  5285. "require": {
  5286. "php": ">=8.2"
  5287. },
  5288. "conflict": {
  5289. "symfony/security-core": "<6.4"
  5290. },
  5291. "require-dev": {
  5292. "symfony/console": "^6.4|^7.0|^8.0",
  5293. "symfony/security-core": "^6.4|^7.0|^8.0"
  5294. },
  5295. "type": "library",
  5296. "autoload": {
  5297. "psr-4": {
  5298. "Symfony\\Component\\PasswordHasher\\": ""
  5299. },
  5300. "exclude-from-classmap": [
  5301. "/Tests/"
  5302. ]
  5303. },
  5304. "notification-url": "https://packagist.org/downloads/",
  5305. "license": [
  5306. "MIT"
  5307. ],
  5308. "authors": [
  5309. {
  5310. "name": "Robin Chalas",
  5311. "email": "robin.chalas@gmail.com"
  5312. },
  5313. {
  5314. "name": "Symfony Community",
  5315. "homepage": "https://symfony.com/contributors"
  5316. }
  5317. ],
  5318. "description": "Provides password hashing utilities",
  5319. "homepage": "https://symfony.com",
  5320. "keywords": [
  5321. "hashing",
  5322. "password"
  5323. ],
  5324. "support": {
  5325. "source": "https://github.com/symfony/password-hasher/tree/v7.4.8"
  5326. },
  5327. "funding": [
  5328. {
  5329. "url": "https://symfony.com/sponsor",
  5330. "type": "custom"
  5331. },
  5332. {
  5333. "url": "https://github.com/fabpot",
  5334. "type": "github"
  5335. },
  5336. {
  5337. "url": "https://github.com/nicolas-grekas",
  5338. "type": "github"
  5339. },
  5340. {
  5341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5342. "type": "tidelift"
  5343. }
  5344. ],
  5345. "time": "2026-03-24T13:12:05+00:00"
  5346. },
  5347. {
  5348. "name": "symfony/polyfill-intl-grapheme",
  5349. "version": "v1.37.0",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5353. "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/4864388bfbd3001ce88e234fab652acd91fdc57e",
  5358. "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e",
  5359. "shasum": ""
  5360. },
  5361. "require": {
  5362. "php": ">=7.2"
  5363. },
  5364. "suggest": {
  5365. "ext-intl": "For best performance"
  5366. },
  5367. "type": "library",
  5368. "extra": {
  5369. "thanks": {
  5370. "url": "https://github.com/symfony/polyfill",
  5371. "name": "symfony/polyfill"
  5372. }
  5373. },
  5374. "autoload": {
  5375. "files": [
  5376. "bootstrap.php"
  5377. ],
  5378. "psr-4": {
  5379. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Nicolas Grekas",
  5389. "email": "p@tchwork.com"
  5390. },
  5391. {
  5392. "name": "Symfony Community",
  5393. "homepage": "https://symfony.com/contributors"
  5394. }
  5395. ],
  5396. "description": "Symfony polyfill for intl's grapheme_* functions",
  5397. "homepage": "https://symfony.com",
  5398. "keywords": [
  5399. "compatibility",
  5400. "grapheme",
  5401. "intl",
  5402. "polyfill",
  5403. "portable",
  5404. "shim"
  5405. ],
  5406. "support": {
  5407. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.37.0"
  5408. },
  5409. "funding": [
  5410. {
  5411. "url": "https://symfony.com/sponsor",
  5412. "type": "custom"
  5413. },
  5414. {
  5415. "url": "https://github.com/fabpot",
  5416. "type": "github"
  5417. },
  5418. {
  5419. "url": "https://github.com/nicolas-grekas",
  5420. "type": "github"
  5421. },
  5422. {
  5423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5424. "type": "tidelift"
  5425. }
  5426. ],
  5427. "time": "2026-04-26T13:13:48+00:00"
  5428. },
  5429. {
  5430. "name": "symfony/polyfill-intl-icu",
  5431. "version": "v1.37.0",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5435. "reference": "3510b63d07376b04e57e27e82607d468bb134f78"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/3510b63d07376b04e57e27e82607d468bb134f78",
  5440. "reference": "3510b63d07376b04e57e27e82607d468bb134f78",
  5441. "shasum": ""
  5442. },
  5443. "require": {
  5444. "php": ">=7.2"
  5445. },
  5446. "suggest": {
  5447. "ext-intl": "For best performance and support of other locales than \"en\""
  5448. },
  5449. "type": "library",
  5450. "extra": {
  5451. "thanks": {
  5452. "url": "https://github.com/symfony/polyfill",
  5453. "name": "symfony/polyfill"
  5454. }
  5455. },
  5456. "autoload": {
  5457. "files": [
  5458. "bootstrap.php"
  5459. ],
  5460. "psr-4": {
  5461. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5462. },
  5463. "classmap": [
  5464. "Resources/stubs"
  5465. ],
  5466. "exclude-from-classmap": [
  5467. "/Tests/"
  5468. ]
  5469. },
  5470. "notification-url": "https://packagist.org/downloads/",
  5471. "license": [
  5472. "MIT"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "Nicolas Grekas",
  5477. "email": "p@tchwork.com"
  5478. },
  5479. {
  5480. "name": "Symfony Community",
  5481. "homepage": "https://symfony.com/contributors"
  5482. }
  5483. ],
  5484. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5485. "homepage": "https://symfony.com",
  5486. "keywords": [
  5487. "compatibility",
  5488. "icu",
  5489. "intl",
  5490. "polyfill",
  5491. "portable",
  5492. "shim"
  5493. ],
  5494. "support": {
  5495. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.37.0"
  5496. },
  5497. "funding": [
  5498. {
  5499. "url": "https://symfony.com/sponsor",
  5500. "type": "custom"
  5501. },
  5502. {
  5503. "url": "https://github.com/fabpot",
  5504. "type": "github"
  5505. },
  5506. {
  5507. "url": "https://github.com/nicolas-grekas",
  5508. "type": "github"
  5509. },
  5510. {
  5511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5512. "type": "tidelift"
  5513. }
  5514. ],
  5515. "time": "2026-04-10T16:50:15+00:00"
  5516. },
  5517. {
  5518. "name": "symfony/polyfill-intl-idn",
  5519. "version": "v1.37.0",
  5520. "source": {
  5521. "type": "git",
  5522. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5523. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  5524. },
  5525. "dist": {
  5526. "type": "zip",
  5527. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5528. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5529. "shasum": ""
  5530. },
  5531. "require": {
  5532. "php": ">=7.2",
  5533. "symfony/polyfill-intl-normalizer": "^1.10"
  5534. },
  5535. "suggest": {
  5536. "ext-intl": "For best performance"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "thanks": {
  5541. "url": "https://github.com/symfony/polyfill",
  5542. "name": "symfony/polyfill"
  5543. }
  5544. },
  5545. "autoload": {
  5546. "files": [
  5547. "bootstrap.php"
  5548. ],
  5549. "psr-4": {
  5550. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5551. }
  5552. },
  5553. "notification-url": "https://packagist.org/downloads/",
  5554. "license": [
  5555. "MIT"
  5556. ],
  5557. "authors": [
  5558. {
  5559. "name": "Laurent Bassin",
  5560. "email": "laurent@bassin.info"
  5561. },
  5562. {
  5563. "name": "Trevor Rowbotham",
  5564. "email": "trevor.rowbotham@pm.me"
  5565. },
  5566. {
  5567. "name": "Symfony Community",
  5568. "homepage": "https://symfony.com/contributors"
  5569. }
  5570. ],
  5571. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5572. "homepage": "https://symfony.com",
  5573. "keywords": [
  5574. "compatibility",
  5575. "idn",
  5576. "intl",
  5577. "polyfill",
  5578. "portable",
  5579. "shim"
  5580. ],
  5581. "support": {
  5582. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.37.0"
  5583. },
  5584. "funding": [
  5585. {
  5586. "url": "https://symfony.com/sponsor",
  5587. "type": "custom"
  5588. },
  5589. {
  5590. "url": "https://github.com/fabpot",
  5591. "type": "github"
  5592. },
  5593. {
  5594. "url": "https://github.com/nicolas-grekas",
  5595. "type": "github"
  5596. },
  5597. {
  5598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5599. "type": "tidelift"
  5600. }
  5601. ],
  5602. "time": "2024-09-10T14:38:51+00:00"
  5603. },
  5604. {
  5605. "name": "symfony/polyfill-intl-normalizer",
  5606. "version": "v1.37.0",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5610. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5615. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5616. "shasum": ""
  5617. },
  5618. "require": {
  5619. "php": ">=7.2"
  5620. },
  5621. "suggest": {
  5622. "ext-intl": "For best performance"
  5623. },
  5624. "type": "library",
  5625. "extra": {
  5626. "thanks": {
  5627. "url": "https://github.com/symfony/polyfill",
  5628. "name": "symfony/polyfill"
  5629. }
  5630. },
  5631. "autoload": {
  5632. "files": [
  5633. "bootstrap.php"
  5634. ],
  5635. "psr-4": {
  5636. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5637. },
  5638. "classmap": [
  5639. "Resources/stubs"
  5640. ]
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "license": [
  5644. "MIT"
  5645. ],
  5646. "authors": [
  5647. {
  5648. "name": "Nicolas Grekas",
  5649. "email": "p@tchwork.com"
  5650. },
  5651. {
  5652. "name": "Symfony Community",
  5653. "homepage": "https://symfony.com/contributors"
  5654. }
  5655. ],
  5656. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5657. "homepage": "https://symfony.com",
  5658. "keywords": [
  5659. "compatibility",
  5660. "intl",
  5661. "normalizer",
  5662. "polyfill",
  5663. "portable",
  5664. "shim"
  5665. ],
  5666. "support": {
  5667. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.37.0"
  5668. },
  5669. "funding": [
  5670. {
  5671. "url": "https://symfony.com/sponsor",
  5672. "type": "custom"
  5673. },
  5674. {
  5675. "url": "https://github.com/fabpot",
  5676. "type": "github"
  5677. },
  5678. {
  5679. "url": "https://github.com/nicolas-grekas",
  5680. "type": "github"
  5681. },
  5682. {
  5683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5684. "type": "tidelift"
  5685. }
  5686. ],
  5687. "time": "2024-09-09T11:45:10+00:00"
  5688. },
  5689. {
  5690. "name": "symfony/polyfill-mbstring",
  5691. "version": "v1.37.0",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5695. "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315",
  5700. "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315",
  5701. "shasum": ""
  5702. },
  5703. "require": {
  5704. "ext-iconv": "*",
  5705. "php": ">=7.2"
  5706. },
  5707. "provide": {
  5708. "ext-mbstring": "*"
  5709. },
  5710. "suggest": {
  5711. "ext-mbstring": "For best performance"
  5712. },
  5713. "type": "library",
  5714. "extra": {
  5715. "thanks": {
  5716. "url": "https://github.com/symfony/polyfill",
  5717. "name": "symfony/polyfill"
  5718. }
  5719. },
  5720. "autoload": {
  5721. "files": [
  5722. "bootstrap.php"
  5723. ],
  5724. "psr-4": {
  5725. "Symfony\\Polyfill\\Mbstring\\": ""
  5726. }
  5727. },
  5728. "notification-url": "https://packagist.org/downloads/",
  5729. "license": [
  5730. "MIT"
  5731. ],
  5732. "authors": [
  5733. {
  5734. "name": "Nicolas Grekas",
  5735. "email": "p@tchwork.com"
  5736. },
  5737. {
  5738. "name": "Symfony Community",
  5739. "homepage": "https://symfony.com/contributors"
  5740. }
  5741. ],
  5742. "description": "Symfony polyfill for the Mbstring extension",
  5743. "homepage": "https://symfony.com",
  5744. "keywords": [
  5745. "compatibility",
  5746. "mbstring",
  5747. "polyfill",
  5748. "portable",
  5749. "shim"
  5750. ],
  5751. "support": {
  5752. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.37.0"
  5753. },
  5754. "funding": [
  5755. {
  5756. "url": "https://symfony.com/sponsor",
  5757. "type": "custom"
  5758. },
  5759. {
  5760. "url": "https://github.com/fabpot",
  5761. "type": "github"
  5762. },
  5763. {
  5764. "url": "https://github.com/nicolas-grekas",
  5765. "type": "github"
  5766. },
  5767. {
  5768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5769. "type": "tidelift"
  5770. }
  5771. ],
  5772. "time": "2026-04-10T17:25:58+00:00"
  5773. },
  5774. {
  5775. "name": "symfony/polyfill-php80",
  5776. "version": "v1.37.0",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://github.com/symfony/polyfill-php80.git",
  5780. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  5785. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  5786. "shasum": ""
  5787. },
  5788. "require": {
  5789. "php": ">=7.2"
  5790. },
  5791. "type": "library",
  5792. "extra": {
  5793. "thanks": {
  5794. "url": "https://github.com/symfony/polyfill",
  5795. "name": "symfony/polyfill"
  5796. }
  5797. },
  5798. "autoload": {
  5799. "files": [
  5800. "bootstrap.php"
  5801. ],
  5802. "psr-4": {
  5803. "Symfony\\Polyfill\\Php80\\": ""
  5804. },
  5805. "classmap": [
  5806. "Resources/stubs"
  5807. ]
  5808. },
  5809. "notification-url": "https://packagist.org/downloads/",
  5810. "license": [
  5811. "MIT"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Ion Bazan",
  5816. "email": "ion.bazan@gmail.com"
  5817. },
  5818. {
  5819. "name": "Nicolas Grekas",
  5820. "email": "p@tchwork.com"
  5821. },
  5822. {
  5823. "name": "Symfony Community",
  5824. "homepage": "https://symfony.com/contributors"
  5825. }
  5826. ],
  5827. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5828. "homepage": "https://symfony.com",
  5829. "keywords": [
  5830. "compatibility",
  5831. "polyfill",
  5832. "portable",
  5833. "shim"
  5834. ],
  5835. "support": {
  5836. "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
  5837. },
  5838. "funding": [
  5839. {
  5840. "url": "https://symfony.com/sponsor",
  5841. "type": "custom"
  5842. },
  5843. {
  5844. "url": "https://github.com/fabpot",
  5845. "type": "github"
  5846. },
  5847. {
  5848. "url": "https://github.com/nicolas-grekas",
  5849. "type": "github"
  5850. },
  5851. {
  5852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5853. "type": "tidelift"
  5854. }
  5855. ],
  5856. "time": "2026-04-10T16:19:22+00:00"
  5857. },
  5858. {
  5859. "name": "symfony/polyfill-php83",
  5860. "version": "v1.37.0",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/symfony/polyfill-php83.git",
  5864. "reference": "3600c2cb22399e25bb226e4a135ce91eeb2a6149"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/3600c2cb22399e25bb226e4a135ce91eeb2a6149",
  5869. "reference": "3600c2cb22399e25bb226e4a135ce91eeb2a6149",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "php": ">=7.2"
  5874. },
  5875. "type": "library",
  5876. "extra": {
  5877. "thanks": {
  5878. "url": "https://github.com/symfony/polyfill",
  5879. "name": "symfony/polyfill"
  5880. }
  5881. },
  5882. "autoload": {
  5883. "files": [
  5884. "bootstrap.php"
  5885. ],
  5886. "psr-4": {
  5887. "Symfony\\Polyfill\\Php83\\": ""
  5888. },
  5889. "classmap": [
  5890. "Resources/stubs"
  5891. ]
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Nicolas Grekas",
  5900. "email": "p@tchwork.com"
  5901. },
  5902. {
  5903. "name": "Symfony Community",
  5904. "homepage": "https://symfony.com/contributors"
  5905. }
  5906. ],
  5907. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5908. "homepage": "https://symfony.com",
  5909. "keywords": [
  5910. "compatibility",
  5911. "polyfill",
  5912. "portable",
  5913. "shim"
  5914. ],
  5915. "support": {
  5916. "source": "https://github.com/symfony/polyfill-php83/tree/v1.37.0"
  5917. },
  5918. "funding": [
  5919. {
  5920. "url": "https://symfony.com/sponsor",
  5921. "type": "custom"
  5922. },
  5923. {
  5924. "url": "https://github.com/fabpot",
  5925. "type": "github"
  5926. },
  5927. {
  5928. "url": "https://github.com/nicolas-grekas",
  5929. "type": "github"
  5930. },
  5931. {
  5932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5933. "type": "tidelift"
  5934. }
  5935. ],
  5936. "time": "2026-04-10T17:25:58+00:00"
  5937. },
  5938. {
  5939. "name": "symfony/polyfill-php84",
  5940. "version": "v1.37.0",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://github.com/symfony/polyfill-php84.git",
  5944. "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/88486db2c389b290bf87ff1de7ebc1e13e42bb06",
  5949. "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06",
  5950. "shasum": ""
  5951. },
  5952. "require": {
  5953. "php": ">=7.2"
  5954. },
  5955. "type": "library",
  5956. "extra": {
  5957. "thanks": {
  5958. "url": "https://github.com/symfony/polyfill",
  5959. "name": "symfony/polyfill"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "files": [
  5964. "bootstrap.php"
  5965. ],
  5966. "psr-4": {
  5967. "Symfony\\Polyfill\\Php84\\": ""
  5968. },
  5969. "classmap": [
  5970. "Resources/stubs"
  5971. ]
  5972. },
  5973. "notification-url": "https://packagist.org/downloads/",
  5974. "license": [
  5975. "MIT"
  5976. ],
  5977. "authors": [
  5978. {
  5979. "name": "Nicolas Grekas",
  5980. "email": "p@tchwork.com"
  5981. },
  5982. {
  5983. "name": "Symfony Community",
  5984. "homepage": "https://symfony.com/contributors"
  5985. }
  5986. ],
  5987. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5988. "homepage": "https://symfony.com",
  5989. "keywords": [
  5990. "compatibility",
  5991. "polyfill",
  5992. "portable",
  5993. "shim"
  5994. ],
  5995. "support": {
  5996. "source": "https://github.com/symfony/polyfill-php84/tree/v1.37.0"
  5997. },
  5998. "funding": [
  5999. {
  6000. "url": "https://symfony.com/sponsor",
  6001. "type": "custom"
  6002. },
  6003. {
  6004. "url": "https://github.com/fabpot",
  6005. "type": "github"
  6006. },
  6007. {
  6008. "url": "https://github.com/nicolas-grekas",
  6009. "type": "github"
  6010. },
  6011. {
  6012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6013. "type": "tidelift"
  6014. }
  6015. ],
  6016. "time": "2026-04-10T18:47:49+00:00"
  6017. },
  6018. {
  6019. "name": "symfony/polyfill-php85",
  6020. "version": "v1.37.0",
  6021. "source": {
  6022. "type": "git",
  6023. "url": "https://github.com/symfony/polyfill-php85.git",
  6024. "reference": "fcfa4973a9917cef23f2e38774da74a2b7d115ee"
  6025. },
  6026. "dist": {
  6027. "type": "zip",
  6028. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/fcfa4973a9917cef23f2e38774da74a2b7d115ee",
  6029. "reference": "fcfa4973a9917cef23f2e38774da74a2b7d115ee",
  6030. "shasum": ""
  6031. },
  6032. "require": {
  6033. "php": ">=7.2"
  6034. },
  6035. "type": "library",
  6036. "extra": {
  6037. "thanks": {
  6038. "url": "https://github.com/symfony/polyfill",
  6039. "name": "symfony/polyfill"
  6040. }
  6041. },
  6042. "autoload": {
  6043. "files": [
  6044. "bootstrap.php"
  6045. ],
  6046. "psr-4": {
  6047. "Symfony\\Polyfill\\Php85\\": ""
  6048. },
  6049. "classmap": [
  6050. "Resources/stubs"
  6051. ]
  6052. },
  6053. "notification-url": "https://packagist.org/downloads/",
  6054. "license": [
  6055. "MIT"
  6056. ],
  6057. "authors": [
  6058. {
  6059. "name": "Nicolas Grekas",
  6060. "email": "p@tchwork.com"
  6061. },
  6062. {
  6063. "name": "Symfony Community",
  6064. "homepage": "https://symfony.com/contributors"
  6065. }
  6066. ],
  6067. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  6068. "homepage": "https://symfony.com",
  6069. "keywords": [
  6070. "compatibility",
  6071. "polyfill",
  6072. "portable",
  6073. "shim"
  6074. ],
  6075. "support": {
  6076. "source": "https://github.com/symfony/polyfill-php85/tree/v1.37.0"
  6077. },
  6078. "funding": [
  6079. {
  6080. "url": "https://symfony.com/sponsor",
  6081. "type": "custom"
  6082. },
  6083. {
  6084. "url": "https://github.com/fabpot",
  6085. "type": "github"
  6086. },
  6087. {
  6088. "url": "https://github.com/nicolas-grekas",
  6089. "type": "github"
  6090. },
  6091. {
  6092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6093. "type": "tidelift"
  6094. }
  6095. ],
  6096. "time": "2026-04-26T13:10:57+00:00"
  6097. },
  6098. {
  6099. "name": "symfony/process",
  6100. "version": "v7.4.8",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/symfony/process.git",
  6104. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/symfony/process/zipball/60f19cd3badc8de688421e21e4305eba50f8089a",
  6109. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "php": ">=8.2"
  6114. },
  6115. "type": "library",
  6116. "autoload": {
  6117. "psr-4": {
  6118. "Symfony\\Component\\Process\\": ""
  6119. },
  6120. "exclude-from-classmap": [
  6121. "/Tests/"
  6122. ]
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "MIT"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Fabien Potencier",
  6131. "email": "fabien@symfony.com"
  6132. },
  6133. {
  6134. "name": "Symfony Community",
  6135. "homepage": "https://symfony.com/contributors"
  6136. }
  6137. ],
  6138. "description": "Executes commands in sub-processes",
  6139. "homepage": "https://symfony.com",
  6140. "support": {
  6141. "source": "https://github.com/symfony/process/tree/v7.4.8"
  6142. },
  6143. "funding": [
  6144. {
  6145. "url": "https://symfony.com/sponsor",
  6146. "type": "custom"
  6147. },
  6148. {
  6149. "url": "https://github.com/fabpot",
  6150. "type": "github"
  6151. },
  6152. {
  6153. "url": "https://github.com/nicolas-grekas",
  6154. "type": "github"
  6155. },
  6156. {
  6157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6158. "type": "tidelift"
  6159. }
  6160. ],
  6161. "time": "2026-03-24T13:12:05+00:00"
  6162. },
  6163. {
  6164. "name": "symfony/property-access",
  6165. "version": "v7.4.8",
  6166. "source": {
  6167. "type": "git",
  6168. "url": "https://github.com/symfony/property-access.git",
  6169. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc"
  6170. },
  6171. "dist": {
  6172. "type": "zip",
  6173. "url": "https://api.github.com/repos/symfony/property-access/zipball/b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  6174. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  6175. "shasum": ""
  6176. },
  6177. "require": {
  6178. "php": ">=8.2",
  6179. "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4"
  6180. },
  6181. "require-dev": {
  6182. "symfony/cache": "^6.4|^7.0|^8.0",
  6183. "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0"
  6184. },
  6185. "type": "library",
  6186. "autoload": {
  6187. "psr-4": {
  6188. "Symfony\\Component\\PropertyAccess\\": ""
  6189. },
  6190. "exclude-from-classmap": [
  6191. "/Tests/"
  6192. ]
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "Fabien Potencier",
  6201. "email": "fabien@symfony.com"
  6202. },
  6203. {
  6204. "name": "Symfony Community",
  6205. "homepage": "https://symfony.com/contributors"
  6206. }
  6207. ],
  6208. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6209. "homepage": "https://symfony.com",
  6210. "keywords": [
  6211. "access",
  6212. "array",
  6213. "extraction",
  6214. "index",
  6215. "injection",
  6216. "object",
  6217. "property",
  6218. "property-path",
  6219. "reflection"
  6220. ],
  6221. "support": {
  6222. "source": "https://github.com/symfony/property-access/tree/v7.4.8"
  6223. },
  6224. "funding": [
  6225. {
  6226. "url": "https://symfony.com/sponsor",
  6227. "type": "custom"
  6228. },
  6229. {
  6230. "url": "https://github.com/fabpot",
  6231. "type": "github"
  6232. },
  6233. {
  6234. "url": "https://github.com/nicolas-grekas",
  6235. "type": "github"
  6236. },
  6237. {
  6238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6239. "type": "tidelift"
  6240. }
  6241. ],
  6242. "time": "2026-03-24T13:12:05+00:00"
  6243. },
  6244. {
  6245. "name": "symfony/property-info",
  6246. "version": "v7.4.8",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/symfony/property-info.git",
  6250. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/symfony/property-info/zipball/ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  6255. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  6256. "shasum": ""
  6257. },
  6258. "require": {
  6259. "php": ">=8.2",
  6260. "symfony/deprecation-contracts": "^2.5|^3",
  6261. "symfony/string": "^6.4|^7.0|^8.0",
  6262. "symfony/type-info": "^7.4.7|^8.0.7"
  6263. },
  6264. "conflict": {
  6265. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  6266. "phpdocumentor/type-resolver": "<1.5.1",
  6267. "symfony/cache": "<6.4",
  6268. "symfony/dependency-injection": "<6.4",
  6269. "symfony/serializer": "<6.4"
  6270. },
  6271. "require-dev": {
  6272. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  6273. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6274. "symfony/cache": "^6.4|^7.0|^8.0",
  6275. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6276. "symfony/serializer": "^6.4|^7.0|^8.0"
  6277. },
  6278. "type": "library",
  6279. "autoload": {
  6280. "psr-4": {
  6281. "Symfony\\Component\\PropertyInfo\\": ""
  6282. },
  6283. "exclude-from-classmap": [
  6284. "/Tests/"
  6285. ]
  6286. },
  6287. "notification-url": "https://packagist.org/downloads/",
  6288. "license": [
  6289. "MIT"
  6290. ],
  6291. "authors": [
  6292. {
  6293. "name": "Kévin Dunglas",
  6294. "email": "dunglas@gmail.com"
  6295. },
  6296. {
  6297. "name": "Symfony Community",
  6298. "homepage": "https://symfony.com/contributors"
  6299. }
  6300. ],
  6301. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6302. "homepage": "https://symfony.com",
  6303. "keywords": [
  6304. "doctrine",
  6305. "phpdoc",
  6306. "property",
  6307. "symfony",
  6308. "type",
  6309. "validator"
  6310. ],
  6311. "support": {
  6312. "source": "https://github.com/symfony/property-info/tree/v7.4.8"
  6313. },
  6314. "funding": [
  6315. {
  6316. "url": "https://symfony.com/sponsor",
  6317. "type": "custom"
  6318. },
  6319. {
  6320. "url": "https://github.com/fabpot",
  6321. "type": "github"
  6322. },
  6323. {
  6324. "url": "https://github.com/nicolas-grekas",
  6325. "type": "github"
  6326. },
  6327. {
  6328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6329. "type": "tidelift"
  6330. }
  6331. ],
  6332. "time": "2026-03-24T13:12:05+00:00"
  6333. },
  6334. {
  6335. "name": "symfony/routing",
  6336. "version": "v7.4.9",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://github.com/symfony/routing.git",
  6340. "reference": "287771d8bc86eacb30678dd10eda6c64a859951f"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://api.github.com/repos/symfony/routing/zipball/287771d8bc86eacb30678dd10eda6c64a859951f",
  6345. "reference": "287771d8bc86eacb30678dd10eda6c64a859951f",
  6346. "shasum": ""
  6347. },
  6348. "require": {
  6349. "php": ">=8.2",
  6350. "symfony/deprecation-contracts": "^2.5|^3"
  6351. },
  6352. "conflict": {
  6353. "symfony/config": "<6.4",
  6354. "symfony/dependency-injection": "<6.4",
  6355. "symfony/yaml": "<6.4"
  6356. },
  6357. "require-dev": {
  6358. "psr/log": "^1|^2|^3",
  6359. "symfony/config": "^6.4|^7.0|^8.0",
  6360. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6361. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6362. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6363. "symfony/yaml": "^6.4|^7.0|^8.0"
  6364. },
  6365. "type": "library",
  6366. "autoload": {
  6367. "psr-4": {
  6368. "Symfony\\Component\\Routing\\": ""
  6369. },
  6370. "exclude-from-classmap": [
  6371. "/Tests/"
  6372. ]
  6373. },
  6374. "notification-url": "https://packagist.org/downloads/",
  6375. "license": [
  6376. "MIT"
  6377. ],
  6378. "authors": [
  6379. {
  6380. "name": "Fabien Potencier",
  6381. "email": "fabien@symfony.com"
  6382. },
  6383. {
  6384. "name": "Symfony Community",
  6385. "homepage": "https://symfony.com/contributors"
  6386. }
  6387. ],
  6388. "description": "Maps an HTTP request to a set of configuration variables",
  6389. "homepage": "https://symfony.com",
  6390. "keywords": [
  6391. "router",
  6392. "routing",
  6393. "uri",
  6394. "url"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/symfony/routing/tree/v7.4.9"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://symfony.com/sponsor",
  6402. "type": "custom"
  6403. },
  6404. {
  6405. "url": "https://github.com/fabpot",
  6406. "type": "github"
  6407. },
  6408. {
  6409. "url": "https://github.com/nicolas-grekas",
  6410. "type": "github"
  6411. },
  6412. {
  6413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6414. "type": "tidelift"
  6415. }
  6416. ],
  6417. "time": "2026-04-22T15:21:55+00:00"
  6418. },
  6419. {
  6420. "name": "symfony/runtime",
  6421. "version": "v7.4.8",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/symfony/runtime.git",
  6425. "reference": "6d792a64fec1eae2f011cfe9ab5978a9eab3071e"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/symfony/runtime/zipball/6d792a64fec1eae2f011cfe9ab5978a9eab3071e",
  6430. "reference": "6d792a64fec1eae2f011cfe9ab5978a9eab3071e",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "composer-plugin-api": "^1.0|^2.0",
  6435. "php": ">=8.2"
  6436. },
  6437. "conflict": {
  6438. "symfony/dotenv": "<6.4"
  6439. },
  6440. "require-dev": {
  6441. "composer/composer": "^2.6",
  6442. "symfony/console": "^6.4|^7.0|^8.0",
  6443. "symfony/dotenv": "^6.4|^7.0|^8.0",
  6444. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6445. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  6446. },
  6447. "type": "composer-plugin",
  6448. "extra": {
  6449. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6450. },
  6451. "autoload": {
  6452. "psr-4": {
  6453. "Symfony\\Component\\Runtime\\": "",
  6454. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6455. },
  6456. "exclude-from-classmap": [
  6457. "/Tests/"
  6458. ]
  6459. },
  6460. "notification-url": "https://packagist.org/downloads/",
  6461. "license": [
  6462. "MIT"
  6463. ],
  6464. "authors": [
  6465. {
  6466. "name": "Nicolas Grekas",
  6467. "email": "p@tchwork.com"
  6468. },
  6469. {
  6470. "name": "Symfony Community",
  6471. "homepage": "https://symfony.com/contributors"
  6472. }
  6473. ],
  6474. "description": "Enables decoupling PHP applications from global state",
  6475. "homepage": "https://symfony.com",
  6476. "keywords": [
  6477. "runtime"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/symfony/runtime/tree/v7.4.8"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://github.com/nicolas-grekas",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2026-03-24T13:12:05+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/security-bundle",
  6504. "version": "v7.4.8",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/security-bundle.git",
  6508. "reference": "6f73fdfd9ad23bf24b6f6c8d35be3ea6853d91af"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/6f73fdfd9ad23bf24b6f6c8d35be3ea6853d91af",
  6513. "reference": "6f73fdfd9ad23bf24b6f6c8d35be3ea6853d91af",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "composer-runtime-api": ">=2.1",
  6518. "ext-xml": "*",
  6519. "php": ">=8.2",
  6520. "symfony/clock": "^6.4|^7.0|^8.0",
  6521. "symfony/config": "^7.4|^8.0",
  6522. "symfony/dependency-injection": "^6.4.11|^7.1.4|^8.0",
  6523. "symfony/deprecation-contracts": "^2.5|^3",
  6524. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  6525. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6526. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  6527. "symfony/password-hasher": "^6.4|^7.0|^8.0",
  6528. "symfony/security-core": "^7.4|^8.0",
  6529. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  6530. "symfony/security-http": "^7.4|^8.0",
  6531. "symfony/service-contracts": "^2.5|^3"
  6532. },
  6533. "conflict": {
  6534. "symfony/browser-kit": "<6.4",
  6535. "symfony/console": "<6.4",
  6536. "symfony/framework-bundle": "<6.4",
  6537. "symfony/http-client": "<6.4",
  6538. "symfony/ldap": "<6.4",
  6539. "symfony/serializer": "<6.4",
  6540. "symfony/twig-bundle": "<6.4",
  6541. "symfony/validator": "<6.4"
  6542. },
  6543. "require-dev": {
  6544. "symfony/asset": "^6.4|^7.0|^8.0",
  6545. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  6546. "symfony/console": "^6.4|^7.0|^8.0",
  6547. "symfony/css-selector": "^6.4|^7.0|^8.0",
  6548. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  6549. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6550. "symfony/form": "^6.4|^7.0|^8.0",
  6551. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  6552. "symfony/http-client": "^6.4|^7.0|^8.0",
  6553. "symfony/ldap": "^6.4|^7.0|^8.0",
  6554. "symfony/process": "^6.4|^7.0|^8.0",
  6555. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  6556. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  6557. "symfony/serializer": "^6.4|^7.0|^8.0",
  6558. "symfony/translation": "^6.4|^7.0|^8.0",
  6559. "symfony/twig-bridge": "^6.4|^7.0|^8.0",
  6560. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  6561. "symfony/validator": "^6.4|^7.0|^8.0",
  6562. "symfony/yaml": "^6.4|^7.0|^8.0",
  6563. "twig/twig": "^3.15",
  6564. "web-token/jwt-library": "^3.3.2|^4.0"
  6565. },
  6566. "type": "symfony-bundle",
  6567. "autoload": {
  6568. "psr-4": {
  6569. "Symfony\\Bundle\\SecurityBundle\\": ""
  6570. },
  6571. "exclude-from-classmap": [
  6572. "/Tests/"
  6573. ]
  6574. },
  6575. "notification-url": "https://packagist.org/downloads/",
  6576. "license": [
  6577. "MIT"
  6578. ],
  6579. "authors": [
  6580. {
  6581. "name": "Fabien Potencier",
  6582. "email": "fabien@symfony.com"
  6583. },
  6584. {
  6585. "name": "Symfony Community",
  6586. "homepage": "https://symfony.com/contributors"
  6587. }
  6588. ],
  6589. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6590. "homepage": "https://symfony.com",
  6591. "support": {
  6592. "source": "https://github.com/symfony/security-bundle/tree/v7.4.8"
  6593. },
  6594. "funding": [
  6595. {
  6596. "url": "https://symfony.com/sponsor",
  6597. "type": "custom"
  6598. },
  6599. {
  6600. "url": "https://github.com/fabpot",
  6601. "type": "github"
  6602. },
  6603. {
  6604. "url": "https://github.com/nicolas-grekas",
  6605. "type": "github"
  6606. },
  6607. {
  6608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6609. "type": "tidelift"
  6610. }
  6611. ],
  6612. "time": "2026-03-30T13:54:39+00:00"
  6613. },
  6614. {
  6615. "name": "symfony/security-core",
  6616. "version": "v7.4.8",
  6617. "source": {
  6618. "type": "git",
  6619. "url": "https://github.com/symfony/security-core.git",
  6620. "reference": "23e0cd6615661e33e53faf714bf6a130c2f75c25"
  6621. },
  6622. "dist": {
  6623. "type": "zip",
  6624. "url": "https://api.github.com/repos/symfony/security-core/zipball/23e0cd6615661e33e53faf714bf6a130c2f75c25",
  6625. "reference": "23e0cd6615661e33e53faf714bf6a130c2f75c25",
  6626. "shasum": ""
  6627. },
  6628. "require": {
  6629. "php": ">=8.2",
  6630. "symfony/deprecation-contracts": "^2.5|^3",
  6631. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6632. "symfony/password-hasher": "^6.4|^7.0|^8.0",
  6633. "symfony/service-contracts": "^2.5|^3"
  6634. },
  6635. "conflict": {
  6636. "symfony/dependency-injection": "<6.4",
  6637. "symfony/event-dispatcher": "<6.4",
  6638. "symfony/http-foundation": "<6.4",
  6639. "symfony/ldap": "<6.4",
  6640. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6641. "symfony/validator": "<6.4"
  6642. },
  6643. "require-dev": {
  6644. "psr/cache": "^1.0|^2.0|^3.0",
  6645. "psr/container": "^1.1|^2.0",
  6646. "psr/log": "^1|^2|^3",
  6647. "symfony/cache": "^6.4|^7.0|^8.0",
  6648. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6649. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  6650. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6651. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6652. "symfony/ldap": "^6.4|^7.0|^8.0",
  6653. "symfony/string": "^6.4|^7.0|^8.0",
  6654. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  6655. "symfony/validator": "^6.4|^7.0|^8.0"
  6656. },
  6657. "type": "library",
  6658. "autoload": {
  6659. "psr-4": {
  6660. "Symfony\\Component\\Security\\Core\\": ""
  6661. },
  6662. "exclude-from-classmap": [
  6663. "/Tests/"
  6664. ]
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "license": [
  6668. "MIT"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Fabien Potencier",
  6673. "email": "fabien@symfony.com"
  6674. },
  6675. {
  6676. "name": "Symfony Community",
  6677. "homepage": "https://symfony.com/contributors"
  6678. }
  6679. ],
  6680. "description": "Symfony Security Component - Core Library",
  6681. "homepage": "https://symfony.com",
  6682. "support": {
  6683. "source": "https://github.com/symfony/security-core/tree/v7.4.8"
  6684. },
  6685. "funding": [
  6686. {
  6687. "url": "https://symfony.com/sponsor",
  6688. "type": "custom"
  6689. },
  6690. {
  6691. "url": "https://github.com/fabpot",
  6692. "type": "github"
  6693. },
  6694. {
  6695. "url": "https://github.com/nicolas-grekas",
  6696. "type": "github"
  6697. },
  6698. {
  6699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6700. "type": "tidelift"
  6701. }
  6702. ],
  6703. "time": "2026-03-31T07:00:19+00:00"
  6704. },
  6705. {
  6706. "name": "symfony/security-csrf",
  6707. "version": "v7.4.8",
  6708. "source": {
  6709. "type": "git",
  6710. "url": "https://github.com/symfony/security-csrf.git",
  6711. "reference": "16b3aa2f67d02fb0dbd013a8759bbe90daaa9c5d"
  6712. },
  6713. "dist": {
  6714. "type": "zip",
  6715. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/16b3aa2f67d02fb0dbd013a8759bbe90daaa9c5d",
  6716. "reference": "16b3aa2f67d02fb0dbd013a8759bbe90daaa9c5d",
  6717. "shasum": ""
  6718. },
  6719. "require": {
  6720. "php": ">=8.2",
  6721. "symfony/security-core": "^6.4|^7.0|^8.0"
  6722. },
  6723. "conflict": {
  6724. "symfony/http-foundation": "<6.4"
  6725. },
  6726. "require-dev": {
  6727. "psr/log": "^1|^2|^3",
  6728. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6729. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  6730. },
  6731. "type": "library",
  6732. "autoload": {
  6733. "psr-4": {
  6734. "Symfony\\Component\\Security\\Csrf\\": ""
  6735. },
  6736. "exclude-from-classmap": [
  6737. "/Tests/"
  6738. ]
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "MIT"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Fabien Potencier",
  6747. "email": "fabien@symfony.com"
  6748. },
  6749. {
  6750. "name": "Symfony Community",
  6751. "homepage": "https://symfony.com/contributors"
  6752. }
  6753. ],
  6754. "description": "Symfony Security Component - CSRF Library",
  6755. "homepage": "https://symfony.com",
  6756. "support": {
  6757. "source": "https://github.com/symfony/security-csrf/tree/v7.4.8"
  6758. },
  6759. "funding": [
  6760. {
  6761. "url": "https://symfony.com/sponsor",
  6762. "type": "custom"
  6763. },
  6764. {
  6765. "url": "https://github.com/fabpot",
  6766. "type": "github"
  6767. },
  6768. {
  6769. "url": "https://github.com/nicolas-grekas",
  6770. "type": "github"
  6771. },
  6772. {
  6773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6774. "type": "tidelift"
  6775. }
  6776. ],
  6777. "time": "2026-03-24T13:12:05+00:00"
  6778. },
  6779. {
  6780. "name": "symfony/security-http",
  6781. "version": "v7.4.9",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/symfony/security-http.git",
  6785. "reference": "a34991b13899de1f953df245395aa2196f9bc113"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/symfony/security-http/zipball/a34991b13899de1f953df245395aa2196f9bc113",
  6790. "reference": "a34991b13899de1f953df245395aa2196f9bc113",
  6791. "shasum": ""
  6792. },
  6793. "require": {
  6794. "php": ">=8.2",
  6795. "symfony/deprecation-contracts": "^2.5|^3",
  6796. "symfony/event-dispatcher": "^6.4|^7.0",
  6797. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6798. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6799. "symfony/polyfill-mbstring": "~1.0",
  6800. "symfony/property-access": "^6.4|^7.0|^8.0",
  6801. "symfony/security-core": "^7.3|^8.0",
  6802. "symfony/service-contracts": "^2.5|^3"
  6803. },
  6804. "conflict": {
  6805. "symfony/clock": "<6.4",
  6806. "symfony/http-client-contracts": "<3.0",
  6807. "symfony/security-bundle": "<6.4",
  6808. "symfony/security-csrf": "<6.4"
  6809. },
  6810. "require-dev": {
  6811. "psr/log": "^1|^2|^3",
  6812. "symfony/cache": "^6.4|^7.0|^8.0",
  6813. "symfony/clock": "^6.4|^7.0|^8.0",
  6814. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6815. "symfony/http-client": "^6.4|^7.0|^8.0",
  6816. "symfony/http-client-contracts": "^3.0",
  6817. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  6818. "symfony/routing": "^6.4|^7.0|^8.0",
  6819. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  6820. "symfony/translation": "^6.4|^7.0|^8.0",
  6821. "web-token/jwt-library": "^3.3.2|^4.0"
  6822. },
  6823. "type": "library",
  6824. "autoload": {
  6825. "psr-4": {
  6826. "Symfony\\Component\\Security\\Http\\": ""
  6827. },
  6828. "exclude-from-classmap": [
  6829. "/Tests/"
  6830. ]
  6831. },
  6832. "notification-url": "https://packagist.org/downloads/",
  6833. "license": [
  6834. "MIT"
  6835. ],
  6836. "authors": [
  6837. {
  6838. "name": "Fabien Potencier",
  6839. "email": "fabien@symfony.com"
  6840. },
  6841. {
  6842. "name": "Symfony Community",
  6843. "homepage": "https://symfony.com/contributors"
  6844. }
  6845. ],
  6846. "description": "Symfony Security Component - HTTP Integration",
  6847. "homepage": "https://symfony.com",
  6848. "support": {
  6849. "source": "https://github.com/symfony/security-http/tree/v7.4.9"
  6850. },
  6851. "funding": [
  6852. {
  6853. "url": "https://symfony.com/sponsor",
  6854. "type": "custom"
  6855. },
  6856. {
  6857. "url": "https://github.com/fabpot",
  6858. "type": "github"
  6859. },
  6860. {
  6861. "url": "https://github.com/nicolas-grekas",
  6862. "type": "github"
  6863. },
  6864. {
  6865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6866. "type": "tidelift"
  6867. }
  6868. ],
  6869. "time": "2026-04-22T15:21:55+00:00"
  6870. },
  6871. {
  6872. "name": "symfony/serializer",
  6873. "version": "v7.4.10",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/symfony/serializer.git",
  6877. "reference": "268c5aa6c4bd675eddd89348e7ecac292a843ddd"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/symfony/serializer/zipball/268c5aa6c4bd675eddd89348e7ecac292a843ddd",
  6882. "reference": "268c5aa6c4bd675eddd89348e7ecac292a843ddd",
  6883. "shasum": ""
  6884. },
  6885. "require": {
  6886. "php": ">=8.2",
  6887. "symfony/deprecation-contracts": "^2.5|^3",
  6888. "symfony/polyfill-ctype": "~1.8",
  6889. "symfony/polyfill-php84": "^1.30"
  6890. },
  6891. "conflict": {
  6892. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  6893. "phpdocumentor/type-resolver": "<1.5.1",
  6894. "symfony/dependency-injection": "<6.4",
  6895. "symfony/property-access": "<6.4.31|>=7.0,<7.4.2|>=8.0,<8.0.2",
  6896. "symfony/property-info": "<6.4",
  6897. "symfony/type-info": "<7.2.5",
  6898. "symfony/uid": "<6.4",
  6899. "symfony/validator": "<6.4",
  6900. "symfony/yaml": "<6.4"
  6901. },
  6902. "require-dev": {
  6903. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  6904. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6905. "seld/jsonlint": "^1.10",
  6906. "symfony/cache": "^6.4|^7.0|^8.0",
  6907. "symfony/config": "^6.4|^7.0|^8.0",
  6908. "symfony/console": "^6.4|^7.0|^8.0",
  6909. "symfony/dependency-injection": "^7.2|^8.0",
  6910. "symfony/error-handler": "^6.4|^7.0|^8.0",
  6911. "symfony/filesystem": "^6.4|^7.0|^8.0",
  6912. "symfony/form": "^6.4|^7.0|^8.0",
  6913. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6914. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6915. "symfony/messenger": "^6.4|^7.0|^8.0",
  6916. "symfony/mime": "^6.4|^7.0|^8.0",
  6917. "symfony/property-access": "^6.4.31|^7.4.2|^8.0.2",
  6918. "symfony/property-info": "^6.4|^7.0|^8.0",
  6919. "symfony/translation-contracts": "^2.5|^3",
  6920. "symfony/type-info": "^7.2.5|^8.0",
  6921. "symfony/uid": "^6.4|^7.0|^8.0",
  6922. "symfony/validator": "^6.4|^7.0|^8.0",
  6923. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  6924. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  6925. "symfony/yaml": "^6.4|^7.0|^8.0"
  6926. },
  6927. "type": "library",
  6928. "autoload": {
  6929. "psr-4": {
  6930. "Symfony\\Component\\Serializer\\": ""
  6931. },
  6932. "exclude-from-classmap": [
  6933. "/Tests/"
  6934. ]
  6935. },
  6936. "notification-url": "https://packagist.org/downloads/",
  6937. "license": [
  6938. "MIT"
  6939. ],
  6940. "authors": [
  6941. {
  6942. "name": "Fabien Potencier",
  6943. "email": "fabien@symfony.com"
  6944. },
  6945. {
  6946. "name": "Symfony Community",
  6947. "homepage": "https://symfony.com/contributors"
  6948. }
  6949. ],
  6950. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6951. "homepage": "https://symfony.com",
  6952. "support": {
  6953. "source": "https://github.com/symfony/serializer/tree/v7.4.10"
  6954. },
  6955. "funding": [
  6956. {
  6957. "url": "https://symfony.com/sponsor",
  6958. "type": "custom"
  6959. },
  6960. {
  6961. "url": "https://github.com/fabpot",
  6962. "type": "github"
  6963. },
  6964. {
  6965. "url": "https://github.com/nicolas-grekas",
  6966. "type": "github"
  6967. },
  6968. {
  6969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6970. "type": "tidelift"
  6971. }
  6972. ],
  6973. "time": "2026-05-03T13:03:28+00:00"
  6974. },
  6975. {
  6976. "name": "symfony/service-contracts",
  6977. "version": "v3.7.0",
  6978. "source": {
  6979. "type": "git",
  6980. "url": "https://github.com/symfony/service-contracts.git",
  6981. "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a"
  6982. },
  6983. "dist": {
  6984. "type": "zip",
  6985. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d25d82433a80eba6aa0e6c24b61d7370d99e444a",
  6986. "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a",
  6987. "shasum": ""
  6988. },
  6989. "require": {
  6990. "php": ">=8.1",
  6991. "psr/container": "^1.1|^2.0",
  6992. "symfony/deprecation-contracts": "^2.5|^3"
  6993. },
  6994. "conflict": {
  6995. "ext-psr": "<1.1|>=2"
  6996. },
  6997. "type": "library",
  6998. "extra": {
  6999. "thanks": {
  7000. "url": "https://github.com/symfony/contracts",
  7001. "name": "symfony/contracts"
  7002. },
  7003. "branch-alias": {
  7004. "dev-main": "3.7-dev"
  7005. }
  7006. },
  7007. "autoload": {
  7008. "psr-4": {
  7009. "Symfony\\Contracts\\Service\\": ""
  7010. },
  7011. "exclude-from-classmap": [
  7012. "/Test/"
  7013. ]
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "license": [
  7017. "MIT"
  7018. ],
  7019. "authors": [
  7020. {
  7021. "name": "Nicolas Grekas",
  7022. "email": "p@tchwork.com"
  7023. },
  7024. {
  7025. "name": "Symfony Community",
  7026. "homepage": "https://symfony.com/contributors"
  7027. }
  7028. ],
  7029. "description": "Generic abstractions related to writing services",
  7030. "homepage": "https://symfony.com",
  7031. "keywords": [
  7032. "abstractions",
  7033. "contracts",
  7034. "decoupling",
  7035. "interfaces",
  7036. "interoperability",
  7037. "standards"
  7038. ],
  7039. "support": {
  7040. "source": "https://github.com/symfony/service-contracts/tree/v3.7.0"
  7041. },
  7042. "funding": [
  7043. {
  7044. "url": "https://symfony.com/sponsor",
  7045. "type": "custom"
  7046. },
  7047. {
  7048. "url": "https://github.com/fabpot",
  7049. "type": "github"
  7050. },
  7051. {
  7052. "url": "https://github.com/nicolas-grekas",
  7053. "type": "github"
  7054. },
  7055. {
  7056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7057. "type": "tidelift"
  7058. }
  7059. ],
  7060. "time": "2026-03-28T09:44:51+00:00"
  7061. },
  7062. {
  7063. "name": "symfony/stimulus-bundle",
  7064. "version": "v2.35.0",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/symfony/stimulus-bundle.git",
  7068. "reference": "05af0259f201dbbd15c103bea289989a4b483b5b"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/05af0259f201dbbd15c103bea289989a4b483b5b",
  7073. "reference": "05af0259f201dbbd15c103bea289989a4b483b5b",
  7074. "shasum": ""
  7075. },
  7076. "require": {
  7077. "php": ">=8.1",
  7078. "symfony/config": "^5.4|^6.0|^7.0|^8.0",
  7079. "symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
  7080. "symfony/deprecation-contracts": "^2.0|^3.0",
  7081. "symfony/finder": "^5.4|^6.0|^7.0|^8.0",
  7082. "symfony/http-kernel": "^5.4|^6.0|^7.0|^8.0",
  7083. "twig/twig": "^2.15.3|^3.8"
  7084. },
  7085. "require-dev": {
  7086. "symfony/asset-mapper": "^6.3|^7.0|^8.0",
  7087. "symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
  7088. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0|^8.0",
  7089. "symfony/twig-bundle": "^5.4|^6.0|^7.0|^8.0",
  7090. "zenstruck/browser": "^1.4"
  7091. },
  7092. "type": "symfony-bundle",
  7093. "autoload": {
  7094. "psr-4": {
  7095. "Symfony\\UX\\StimulusBundle\\": "src"
  7096. }
  7097. },
  7098. "notification-url": "https://packagist.org/downloads/",
  7099. "license": [
  7100. "MIT"
  7101. ],
  7102. "authors": [
  7103. {
  7104. "name": "Symfony Community",
  7105. "homepage": "https://symfony.com/contributors"
  7106. }
  7107. ],
  7108. "description": "Integration with your Symfony app & Stimulus!",
  7109. "keywords": [
  7110. "symfony-ux"
  7111. ],
  7112. "support": {
  7113. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.35.0"
  7114. },
  7115. "funding": [
  7116. {
  7117. "url": "https://symfony.com/sponsor",
  7118. "type": "custom"
  7119. },
  7120. {
  7121. "url": "https://github.com/fabpot",
  7122. "type": "github"
  7123. },
  7124. {
  7125. "url": "https://github.com/nicolas-grekas",
  7126. "type": "github"
  7127. },
  7128. {
  7129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7130. "type": "tidelift"
  7131. }
  7132. ],
  7133. "time": "2026-03-22T22:21:50+00:00"
  7134. },
  7135. {
  7136. "name": "symfony/stopwatch",
  7137. "version": "v7.4.8",
  7138. "source": {
  7139. "type": "git",
  7140. "url": "https://github.com/symfony/stopwatch.git",
  7141. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89"
  7142. },
  7143. "dist": {
  7144. "type": "zip",
  7145. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  7146. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  7147. "shasum": ""
  7148. },
  7149. "require": {
  7150. "php": ">=8.2",
  7151. "symfony/service-contracts": "^2.5|^3"
  7152. },
  7153. "type": "library",
  7154. "autoload": {
  7155. "psr-4": {
  7156. "Symfony\\Component\\Stopwatch\\": ""
  7157. },
  7158. "exclude-from-classmap": [
  7159. "/Tests/"
  7160. ]
  7161. },
  7162. "notification-url": "https://packagist.org/downloads/",
  7163. "license": [
  7164. "MIT"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "Fabien Potencier",
  7169. "email": "fabien@symfony.com"
  7170. },
  7171. {
  7172. "name": "Symfony Community",
  7173. "homepage": "https://symfony.com/contributors"
  7174. }
  7175. ],
  7176. "description": "Provides a way to profile code",
  7177. "homepage": "https://symfony.com",
  7178. "support": {
  7179. "source": "https://github.com/symfony/stopwatch/tree/v7.4.8"
  7180. },
  7181. "funding": [
  7182. {
  7183. "url": "https://symfony.com/sponsor",
  7184. "type": "custom"
  7185. },
  7186. {
  7187. "url": "https://github.com/fabpot",
  7188. "type": "github"
  7189. },
  7190. {
  7191. "url": "https://github.com/nicolas-grekas",
  7192. "type": "github"
  7193. },
  7194. {
  7195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7196. "type": "tidelift"
  7197. }
  7198. ],
  7199. "time": "2026-03-24T13:12:05+00:00"
  7200. },
  7201. {
  7202. "name": "symfony/string",
  7203. "version": "v7.4.8",
  7204. "source": {
  7205. "type": "git",
  7206. "url": "https://github.com/symfony/string.git",
  7207. "reference": "114ac57257d75df748eda23dd003878080b8e688"
  7208. },
  7209. "dist": {
  7210. "type": "zip",
  7211. "url": "https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688",
  7212. "reference": "114ac57257d75df748eda23dd003878080b8e688",
  7213. "shasum": ""
  7214. },
  7215. "require": {
  7216. "php": ">=8.2",
  7217. "symfony/deprecation-contracts": "^2.5|^3.0",
  7218. "symfony/polyfill-ctype": "~1.8",
  7219. "symfony/polyfill-intl-grapheme": "~1.33",
  7220. "symfony/polyfill-intl-normalizer": "~1.0",
  7221. "symfony/polyfill-mbstring": "~1.0"
  7222. },
  7223. "conflict": {
  7224. "symfony/translation-contracts": "<2.5"
  7225. },
  7226. "require-dev": {
  7227. "symfony/emoji": "^7.1|^8.0",
  7228. "symfony/http-client": "^6.4|^7.0|^8.0",
  7229. "symfony/intl": "^6.4|^7.0|^8.0",
  7230. "symfony/translation-contracts": "^2.5|^3.0",
  7231. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  7232. },
  7233. "type": "library",
  7234. "autoload": {
  7235. "files": [
  7236. "Resources/functions.php"
  7237. ],
  7238. "psr-4": {
  7239. "Symfony\\Component\\String\\": ""
  7240. },
  7241. "exclude-from-classmap": [
  7242. "/Tests/"
  7243. ]
  7244. },
  7245. "notification-url": "https://packagist.org/downloads/",
  7246. "license": [
  7247. "MIT"
  7248. ],
  7249. "authors": [
  7250. {
  7251. "name": "Nicolas Grekas",
  7252. "email": "p@tchwork.com"
  7253. },
  7254. {
  7255. "name": "Symfony Community",
  7256. "homepage": "https://symfony.com/contributors"
  7257. }
  7258. ],
  7259. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7260. "homepage": "https://symfony.com",
  7261. "keywords": [
  7262. "grapheme",
  7263. "i18n",
  7264. "string",
  7265. "unicode",
  7266. "utf-8",
  7267. "utf8"
  7268. ],
  7269. "support": {
  7270. "source": "https://github.com/symfony/string/tree/v7.4.8"
  7271. },
  7272. "funding": [
  7273. {
  7274. "url": "https://symfony.com/sponsor",
  7275. "type": "custom"
  7276. },
  7277. {
  7278. "url": "https://github.com/fabpot",
  7279. "type": "github"
  7280. },
  7281. {
  7282. "url": "https://github.com/nicolas-grekas",
  7283. "type": "github"
  7284. },
  7285. {
  7286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7287. "type": "tidelift"
  7288. }
  7289. ],
  7290. "time": "2026-03-24T13:12:05+00:00"
  7291. },
  7292. {
  7293. "name": "symfony/translation",
  7294. "version": "v7.4.10",
  7295. "source": {
  7296. "type": "git",
  7297. "url": "https://github.com/symfony/translation.git",
  7298. "reference": "ada7578c30dd5feaa8259cff3e885069ea81ddde"
  7299. },
  7300. "dist": {
  7301. "type": "zip",
  7302. "url": "https://api.github.com/repos/symfony/translation/zipball/ada7578c30dd5feaa8259cff3e885069ea81ddde",
  7303. "reference": "ada7578c30dd5feaa8259cff3e885069ea81ddde",
  7304. "shasum": ""
  7305. },
  7306. "require": {
  7307. "php": ">=8.2",
  7308. "symfony/deprecation-contracts": "^2.5|^3",
  7309. "symfony/polyfill-mbstring": "~1.0",
  7310. "symfony/translation-contracts": "^2.5.3|^3.3"
  7311. },
  7312. "conflict": {
  7313. "nikic/php-parser": "<5.0",
  7314. "symfony/config": "<6.4",
  7315. "symfony/console": "<6.4",
  7316. "symfony/dependency-injection": "<6.4",
  7317. "symfony/http-client-contracts": "<2.5",
  7318. "symfony/http-kernel": "<6.4",
  7319. "symfony/service-contracts": "<2.5",
  7320. "symfony/twig-bundle": "<6.4",
  7321. "symfony/yaml": "<6.4"
  7322. },
  7323. "provide": {
  7324. "symfony/translation-implementation": "2.3|3.0"
  7325. },
  7326. "require-dev": {
  7327. "nikic/php-parser": "^5.0",
  7328. "psr/log": "^1|^2|^3",
  7329. "symfony/config": "^6.4|^7.0|^8.0",
  7330. "symfony/console": "^6.4|^7.0|^8.0",
  7331. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7332. "symfony/finder": "^6.4|^7.0|^8.0",
  7333. "symfony/http-client-contracts": "^2.5|^3.0",
  7334. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7335. "symfony/intl": "^6.4|^7.0|^8.0",
  7336. "symfony/polyfill-intl-icu": "^1.21",
  7337. "symfony/routing": "^6.4|^7.0|^8.0",
  7338. "symfony/service-contracts": "^2.5|^3",
  7339. "symfony/yaml": "^6.4|^7.0|^8.0"
  7340. },
  7341. "type": "library",
  7342. "autoload": {
  7343. "files": [
  7344. "Resources/functions.php"
  7345. ],
  7346. "psr-4": {
  7347. "Symfony\\Component\\Translation\\": ""
  7348. },
  7349. "exclude-from-classmap": [
  7350. "/Tests/"
  7351. ]
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Fabien Potencier",
  7360. "email": "fabien@symfony.com"
  7361. },
  7362. {
  7363. "name": "Symfony Community",
  7364. "homepage": "https://symfony.com/contributors"
  7365. }
  7366. ],
  7367. "description": "Provides tools to internationalize your application",
  7368. "homepage": "https://symfony.com",
  7369. "support": {
  7370. "source": "https://github.com/symfony/translation/tree/v7.4.10"
  7371. },
  7372. "funding": [
  7373. {
  7374. "url": "https://symfony.com/sponsor",
  7375. "type": "custom"
  7376. },
  7377. {
  7378. "url": "https://github.com/fabpot",
  7379. "type": "github"
  7380. },
  7381. {
  7382. "url": "https://github.com/nicolas-grekas",
  7383. "type": "github"
  7384. },
  7385. {
  7386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7387. "type": "tidelift"
  7388. }
  7389. ],
  7390. "time": "2026-05-06T11:19:24+00:00"
  7391. },
  7392. {
  7393. "name": "symfony/translation-contracts",
  7394. "version": "v3.7.0",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/symfony/translation-contracts.git",
  7398. "reference": "0ab302977a952b42fd51475c4ebac81f8da0a95d"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/0ab302977a952b42fd51475c4ebac81f8da0a95d",
  7403. "reference": "0ab302977a952b42fd51475c4ebac81f8da0a95d",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "php": ">=8.1"
  7408. },
  7409. "type": "library",
  7410. "extra": {
  7411. "thanks": {
  7412. "url": "https://github.com/symfony/contracts",
  7413. "name": "symfony/contracts"
  7414. },
  7415. "branch-alias": {
  7416. "dev-main": "3.7-dev"
  7417. }
  7418. },
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Symfony\\Contracts\\Translation\\": ""
  7422. },
  7423. "exclude-from-classmap": [
  7424. "/Test/"
  7425. ]
  7426. },
  7427. "notification-url": "https://packagist.org/downloads/",
  7428. "license": [
  7429. "MIT"
  7430. ],
  7431. "authors": [
  7432. {
  7433. "name": "Nicolas Grekas",
  7434. "email": "p@tchwork.com"
  7435. },
  7436. {
  7437. "name": "Symfony Community",
  7438. "homepage": "https://symfony.com/contributors"
  7439. }
  7440. ],
  7441. "description": "Generic abstractions related to translation",
  7442. "homepage": "https://symfony.com",
  7443. "keywords": [
  7444. "abstractions",
  7445. "contracts",
  7446. "decoupling",
  7447. "interfaces",
  7448. "interoperability",
  7449. "standards"
  7450. ],
  7451. "support": {
  7452. "source": "https://github.com/symfony/translation-contracts/tree/v3.7.0"
  7453. },
  7454. "funding": [
  7455. {
  7456. "url": "https://symfony.com/sponsor",
  7457. "type": "custom"
  7458. },
  7459. {
  7460. "url": "https://github.com/fabpot",
  7461. "type": "github"
  7462. },
  7463. {
  7464. "url": "https://github.com/nicolas-grekas",
  7465. "type": "github"
  7466. },
  7467. {
  7468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7469. "type": "tidelift"
  7470. }
  7471. ],
  7472. "time": "2026-01-05T13:30:16+00:00"
  7473. },
  7474. {
  7475. "name": "symfony/twig-bridge",
  7476. "version": "v7.4.8",
  7477. "source": {
  7478. "type": "git",
  7479. "url": "https://github.com/symfony/twig-bridge.git",
  7480. "reference": "ac43e7e59298ed1ce98c8d228b651d46e907d02c"
  7481. },
  7482. "dist": {
  7483. "type": "zip",
  7484. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/ac43e7e59298ed1ce98c8d228b651d46e907d02c",
  7485. "reference": "ac43e7e59298ed1ce98c8d228b651d46e907d02c",
  7486. "shasum": ""
  7487. },
  7488. "require": {
  7489. "php": ">=8.2",
  7490. "symfony/deprecation-contracts": "^2.5|^3",
  7491. "symfony/translation-contracts": "^2.5|^3",
  7492. "twig/twig": "^3.21"
  7493. },
  7494. "conflict": {
  7495. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  7496. "phpdocumentor/type-resolver": "<1.5.1",
  7497. "symfony/console": "<6.4",
  7498. "symfony/form": "<6.4.32|>7,<7.3.10|>7.4,<7.4.4|>8.0,<8.0.4",
  7499. "symfony/http-foundation": "<6.4",
  7500. "symfony/http-kernel": "<6.4",
  7501. "symfony/mime": "<6.4.36|>7,<7.4.8|>8.0,<8.0.8",
  7502. "symfony/serializer": "<6.4",
  7503. "symfony/translation": "<6.4",
  7504. "symfony/workflow": "<6.4"
  7505. },
  7506. "require-dev": {
  7507. "egulias/email-validator": "^2.1.10|^3|^4",
  7508. "league/html-to-markdown": "^5.0",
  7509. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  7510. "symfony/asset": "^6.4|^7.0|^8.0",
  7511. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  7512. "symfony/console": "^6.4|^7.0|^8.0",
  7513. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7514. "symfony/emoji": "^7.1|^8.0",
  7515. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7516. "symfony/finder": "^6.4|^7.0|^8.0",
  7517. "symfony/form": "^6.4.32|~7.3.10|^7.4.4|^8.0.4",
  7518. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  7519. "symfony/http-foundation": "^7.3|^8.0",
  7520. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7521. "symfony/intl": "^6.4|^7.0|^8.0",
  7522. "symfony/mime": "^6.4.36|^7.4.8|^8.0.8",
  7523. "symfony/polyfill-intl-icu": "~1.0",
  7524. "symfony/property-info": "^6.4|^7.0|^8.0",
  7525. "symfony/routing": "^6.4|^7.0|^8.0",
  7526. "symfony/security-acl": "^2.8|^3.0",
  7527. "symfony/security-core": "^6.4|^7.0|^8.0",
  7528. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  7529. "symfony/security-http": "^6.4|^7.0|^8.0",
  7530. "symfony/serializer": "^6.4.3|^7.0.3|^8.0",
  7531. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  7532. "symfony/translation": "^6.4|^7.0|^8.0",
  7533. "symfony/validator": "^6.4|^7.0|^8.0",
  7534. "symfony/web-link": "^6.4|^7.0|^8.0",
  7535. "symfony/workflow": "^6.4|^7.0|^8.0",
  7536. "symfony/yaml": "^6.4|^7.0|^8.0",
  7537. "twig/cssinliner-extra": "^3",
  7538. "twig/inky-extra": "^3",
  7539. "twig/markdown-extra": "^3"
  7540. },
  7541. "type": "symfony-bridge",
  7542. "autoload": {
  7543. "psr-4": {
  7544. "Symfony\\Bridge\\Twig\\": ""
  7545. },
  7546. "exclude-from-classmap": [
  7547. "/Tests/"
  7548. ]
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "MIT"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Fabien Potencier",
  7557. "email": "fabien@symfony.com"
  7558. },
  7559. {
  7560. "name": "Symfony Community",
  7561. "homepage": "https://symfony.com/contributors"
  7562. }
  7563. ],
  7564. "description": "Provides integration for Twig with various Symfony components",
  7565. "homepage": "https://symfony.com",
  7566. "support": {
  7567. "source": "https://github.com/symfony/twig-bridge/tree/v7.4.8"
  7568. },
  7569. "funding": [
  7570. {
  7571. "url": "https://symfony.com/sponsor",
  7572. "type": "custom"
  7573. },
  7574. {
  7575. "url": "https://github.com/fabpot",
  7576. "type": "github"
  7577. },
  7578. {
  7579. "url": "https://github.com/nicolas-grekas",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2026-03-30T15:17:09+00:00"
  7588. },
  7589. {
  7590. "name": "symfony/twig-bundle",
  7591. "version": "v7.4.8",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/symfony/twig-bundle.git",
  7595. "reference": "ba1e06d7ff1ebb1d1799b6608d925f4eaba88d95"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/ba1e06d7ff1ebb1d1799b6608d925f4eaba88d95",
  7600. "reference": "ba1e06d7ff1ebb1d1799b6608d925f4eaba88d95",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "composer-runtime-api": ">=2.1",
  7605. "php": ">=8.2",
  7606. "symfony/config": "^7.4|^8.0",
  7607. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7608. "symfony/deprecation-contracts": "^2.5|^3",
  7609. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7610. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  7611. "symfony/twig-bridge": "^7.3|^8.0",
  7612. "twig/twig": "^3.12"
  7613. },
  7614. "conflict": {
  7615. "symfony/framework-bundle": "<6.4",
  7616. "symfony/translation": "<6.4"
  7617. },
  7618. "require-dev": {
  7619. "symfony/asset": "^6.4|^7.0|^8.0",
  7620. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7621. "symfony/finder": "^6.4|^7.0|^8.0",
  7622. "symfony/form": "^6.4|^7.0|^8.0",
  7623. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  7624. "symfony/routing": "^6.4|^7.0|^8.0",
  7625. "symfony/runtime": "^6.4.13|^7.1.6",
  7626. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  7627. "symfony/translation": "^6.4|^7.0|^8.0",
  7628. "symfony/web-link": "^6.4|^7.0|^8.0",
  7629. "symfony/yaml": "^6.4|^7.0|^8.0"
  7630. },
  7631. "type": "symfony-bundle",
  7632. "autoload": {
  7633. "psr-4": {
  7634. "Symfony\\Bundle\\TwigBundle\\": ""
  7635. },
  7636. "exclude-from-classmap": [
  7637. "/Tests/"
  7638. ]
  7639. },
  7640. "notification-url": "https://packagist.org/downloads/",
  7641. "license": [
  7642. "MIT"
  7643. ],
  7644. "authors": [
  7645. {
  7646. "name": "Fabien Potencier",
  7647. "email": "fabien@symfony.com"
  7648. },
  7649. {
  7650. "name": "Symfony Community",
  7651. "homepage": "https://symfony.com/contributors"
  7652. }
  7653. ],
  7654. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7655. "homepage": "https://symfony.com",
  7656. "support": {
  7657. "source": "https://github.com/symfony/twig-bundle/tree/v7.4.8"
  7658. },
  7659. "funding": [
  7660. {
  7661. "url": "https://symfony.com/sponsor",
  7662. "type": "custom"
  7663. },
  7664. {
  7665. "url": "https://github.com/fabpot",
  7666. "type": "github"
  7667. },
  7668. {
  7669. "url": "https://github.com/nicolas-grekas",
  7670. "type": "github"
  7671. },
  7672. {
  7673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7674. "type": "tidelift"
  7675. }
  7676. ],
  7677. "time": "2026-03-24T13:12:05+00:00"
  7678. },
  7679. {
  7680. "name": "symfony/type-info",
  7681. "version": "v7.4.9",
  7682. "source": {
  7683. "type": "git",
  7684. "url": "https://github.com/symfony/type-info.git",
  7685. "reference": "cafeedbf157b890e94ac5b83eaed85595106d5d6"
  7686. },
  7687. "dist": {
  7688. "type": "zip",
  7689. "url": "https://api.github.com/repos/symfony/type-info/zipball/cafeedbf157b890e94ac5b83eaed85595106d5d6",
  7690. "reference": "cafeedbf157b890e94ac5b83eaed85595106d5d6",
  7691. "shasum": ""
  7692. },
  7693. "require": {
  7694. "php": ">=8.2",
  7695. "psr/container": "^1.1|^2.0",
  7696. "symfony/deprecation-contracts": "^2.5|^3"
  7697. },
  7698. "conflict": {
  7699. "phpstan/phpdoc-parser": "<1.30"
  7700. },
  7701. "require-dev": {
  7702. "phpstan/phpdoc-parser": "^1.30|^2.0"
  7703. },
  7704. "type": "library",
  7705. "autoload": {
  7706. "psr-4": {
  7707. "Symfony\\Component\\TypeInfo\\": ""
  7708. },
  7709. "exclude-from-classmap": [
  7710. "/Tests/"
  7711. ]
  7712. },
  7713. "notification-url": "https://packagist.org/downloads/",
  7714. "license": [
  7715. "MIT"
  7716. ],
  7717. "authors": [
  7718. {
  7719. "name": "Mathias Arlaud",
  7720. "email": "mathias.arlaud@gmail.com"
  7721. },
  7722. {
  7723. "name": "Baptiste LEDUC",
  7724. "email": "baptiste.leduc@gmail.com"
  7725. },
  7726. {
  7727. "name": "Symfony Community",
  7728. "homepage": "https://symfony.com/contributors"
  7729. }
  7730. ],
  7731. "description": "Extracts PHP types information.",
  7732. "homepage": "https://symfony.com",
  7733. "keywords": [
  7734. "PHPStan",
  7735. "phpdoc",
  7736. "symfony",
  7737. "type"
  7738. ],
  7739. "support": {
  7740. "source": "https://github.com/symfony/type-info/tree/v7.4.9"
  7741. },
  7742. "funding": [
  7743. {
  7744. "url": "https://symfony.com/sponsor",
  7745. "type": "custom"
  7746. },
  7747. {
  7748. "url": "https://github.com/fabpot",
  7749. "type": "github"
  7750. },
  7751. {
  7752. "url": "https://github.com/nicolas-grekas",
  7753. "type": "github"
  7754. },
  7755. {
  7756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7757. "type": "tidelift"
  7758. }
  7759. ],
  7760. "time": "2026-04-22T15:21:55+00:00"
  7761. },
  7762. {
  7763. "name": "symfony/ux-chartjs",
  7764. "version": "v2.35.0",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/symfony/ux-chartjs.git",
  7768. "reference": "7ff8a3409b24af7477b516a673ee7c9a63d385a1"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/symfony/ux-chartjs/zipball/7ff8a3409b24af7477b516a673ee7c9a63d385a1",
  7773. "reference": "7ff8a3409b24af7477b516a673ee7c9a63d385a1",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": ">=8.1",
  7778. "symfony/config": "^5.4|^6.0|^7.0|^8.0",
  7779. "symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
  7780. "symfony/http-kernel": "^5.4|^6.0|^7.0|^8.0",
  7781. "symfony/stimulus-bundle": "^2.9.1|^3.0"
  7782. },
  7783. "conflict": {
  7784. "symfony/flex": "<1.13"
  7785. },
  7786. "require-dev": {
  7787. "symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
  7788. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0|^8.0",
  7789. "symfony/twig-bundle": "^5.4|^6.0|^7.0|^8.0",
  7790. "symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0"
  7791. },
  7792. "type": "symfony-bundle",
  7793. "extra": {
  7794. "thanks": {
  7795. "url": "https://github.com/symfony/ux",
  7796. "name": "symfony/ux"
  7797. }
  7798. },
  7799. "autoload": {
  7800. "psr-4": {
  7801. "Symfony\\UX\\Chartjs\\": "src/"
  7802. }
  7803. },
  7804. "notification-url": "https://packagist.org/downloads/",
  7805. "license": [
  7806. "MIT"
  7807. ],
  7808. "authors": [
  7809. {
  7810. "name": "Titouan Galopin",
  7811. "email": "galopintitouan@gmail.com"
  7812. },
  7813. {
  7814. "name": "Symfony Community",
  7815. "homepage": "https://symfony.com/contributors"
  7816. }
  7817. ],
  7818. "description": "Chart.js integration for Symfony",
  7819. "homepage": "https://symfony.com",
  7820. "keywords": [
  7821. "symfony-ux"
  7822. ],
  7823. "support": {
  7824. "source": "https://github.com/symfony/ux-chartjs/tree/v2.35.0"
  7825. },
  7826. "funding": [
  7827. {
  7828. "url": "https://symfony.com/sponsor",
  7829. "type": "custom"
  7830. },
  7831. {
  7832. "url": "https://github.com/fabpot",
  7833. "type": "github"
  7834. },
  7835. {
  7836. "url": "https://github.com/nicolas-grekas",
  7837. "type": "github"
  7838. },
  7839. {
  7840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7841. "type": "tidelift"
  7842. }
  7843. ],
  7844. "time": "2026-04-03T05:13:59+00:00"
  7845. },
  7846. {
  7847. "name": "symfony/validator",
  7848. "version": "v7.4.10",
  7849. "source": {
  7850. "type": "git",
  7851. "url": "https://github.com/symfony/validator.git",
  7852. "reference": "c76458623af9a3fe3b2e5b09b36453f334c2a361"
  7853. },
  7854. "dist": {
  7855. "type": "zip",
  7856. "url": "https://api.github.com/repos/symfony/validator/zipball/c76458623af9a3fe3b2e5b09b36453f334c2a361",
  7857. "reference": "c76458623af9a3fe3b2e5b09b36453f334c2a361",
  7858. "shasum": ""
  7859. },
  7860. "require": {
  7861. "php": ">=8.2",
  7862. "symfony/deprecation-contracts": "^2.5|^3",
  7863. "symfony/polyfill-ctype": "~1.8",
  7864. "symfony/polyfill-mbstring": "~1.0",
  7865. "symfony/polyfill-php83": "^1.27",
  7866. "symfony/translation-contracts": "^2.5|^3"
  7867. },
  7868. "conflict": {
  7869. "doctrine/lexer": "<1.1",
  7870. "symfony/dependency-injection": "<6.4",
  7871. "symfony/doctrine-bridge": "<7.0",
  7872. "symfony/expression-language": "<6.4",
  7873. "symfony/http-kernel": "<6.4",
  7874. "symfony/intl": "<6.4",
  7875. "symfony/property-info": "<6.4",
  7876. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7877. "symfony/var-exporter": "<6.4.25|>=7.0,<7.3.3",
  7878. "symfony/yaml": "<6.4"
  7879. },
  7880. "require-dev": {
  7881. "egulias/email-validator": "^2.1.10|^3|^4",
  7882. "symfony/cache": "^6.4|^7.0|^8.0",
  7883. "symfony/config": "^6.4|^7.0|^8.0",
  7884. "symfony/console": "^6.4|^7.0|^8.0",
  7885. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7886. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7887. "symfony/finder": "^6.4|^7.0|^8.0",
  7888. "symfony/http-client": "^6.4|^7.0|^8.0",
  7889. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7890. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7891. "symfony/intl": "^6.4|^7.0|^8.0",
  7892. "symfony/mime": "^6.4|^7.0|^8.0",
  7893. "symfony/process": "^6.4|^7.0|^8.0",
  7894. "symfony/property-access": "^6.4|^7.0|^8.0",
  7895. "symfony/property-info": "^6.4|^7.0|^8.0",
  7896. "symfony/string": "^6.4|^7.0|^8.0",
  7897. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  7898. "symfony/type-info": "^7.1.8",
  7899. "symfony/yaml": "^6.4|^7.0|^8.0"
  7900. },
  7901. "type": "library",
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Symfony\\Component\\Validator\\": ""
  7905. },
  7906. "exclude-from-classmap": [
  7907. "/Tests/",
  7908. "/Resources/bin/"
  7909. ]
  7910. },
  7911. "notification-url": "https://packagist.org/downloads/",
  7912. "license": [
  7913. "MIT"
  7914. ],
  7915. "authors": [
  7916. {
  7917. "name": "Fabien Potencier",
  7918. "email": "fabien@symfony.com"
  7919. },
  7920. {
  7921. "name": "Symfony Community",
  7922. "homepage": "https://symfony.com/contributors"
  7923. }
  7924. ],
  7925. "description": "Provides tools to validate values",
  7926. "homepage": "https://symfony.com",
  7927. "support": {
  7928. "source": "https://github.com/symfony/validator/tree/v7.4.10"
  7929. },
  7930. "funding": [
  7931. {
  7932. "url": "https://symfony.com/sponsor",
  7933. "type": "custom"
  7934. },
  7935. {
  7936. "url": "https://github.com/fabpot",
  7937. "type": "github"
  7938. },
  7939. {
  7940. "url": "https://github.com/nicolas-grekas",
  7941. "type": "github"
  7942. },
  7943. {
  7944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7945. "type": "tidelift"
  7946. }
  7947. ],
  7948. "time": "2026-05-05T15:30:56+00:00"
  7949. },
  7950. {
  7951. "name": "symfony/var-dumper",
  7952. "version": "v7.4.8",
  7953. "source": {
  7954. "type": "git",
  7955. "url": "https://github.com/symfony/var-dumper.git",
  7956. "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd"
  7957. },
  7958. "dist": {
  7959. "type": "zip",
  7960. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9510c3966f749a1d1ff0059e1eabef6cc621e7fd",
  7961. "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd",
  7962. "shasum": ""
  7963. },
  7964. "require": {
  7965. "php": ">=8.2",
  7966. "symfony/deprecation-contracts": "^2.5|^3",
  7967. "symfony/polyfill-mbstring": "~1.0"
  7968. },
  7969. "conflict": {
  7970. "symfony/console": "<6.4"
  7971. },
  7972. "require-dev": {
  7973. "symfony/console": "^6.4|^7.0|^8.0",
  7974. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7975. "symfony/process": "^6.4|^7.0|^8.0",
  7976. "symfony/uid": "^6.4|^7.0|^8.0",
  7977. "twig/twig": "^3.12"
  7978. },
  7979. "bin": [
  7980. "Resources/bin/var-dump-server"
  7981. ],
  7982. "type": "library",
  7983. "autoload": {
  7984. "files": [
  7985. "Resources/functions/dump.php"
  7986. ],
  7987. "psr-4": {
  7988. "Symfony\\Component\\VarDumper\\": ""
  7989. },
  7990. "exclude-from-classmap": [
  7991. "/Tests/"
  7992. ]
  7993. },
  7994. "notification-url": "https://packagist.org/downloads/",
  7995. "license": [
  7996. "MIT"
  7997. ],
  7998. "authors": [
  7999. {
  8000. "name": "Nicolas Grekas",
  8001. "email": "p@tchwork.com"
  8002. },
  8003. {
  8004. "name": "Symfony Community",
  8005. "homepage": "https://symfony.com/contributors"
  8006. }
  8007. ],
  8008. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8009. "homepage": "https://symfony.com",
  8010. "keywords": [
  8011. "debug",
  8012. "dump"
  8013. ],
  8014. "support": {
  8015. "source": "https://github.com/symfony/var-dumper/tree/v7.4.8"
  8016. },
  8017. "funding": [
  8018. {
  8019. "url": "https://symfony.com/sponsor",
  8020. "type": "custom"
  8021. },
  8022. {
  8023. "url": "https://github.com/fabpot",
  8024. "type": "github"
  8025. },
  8026. {
  8027. "url": "https://github.com/nicolas-grekas",
  8028. "type": "github"
  8029. },
  8030. {
  8031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8032. "type": "tidelift"
  8033. }
  8034. ],
  8035. "time": "2026-03-30T13:44:50+00:00"
  8036. },
  8037. {
  8038. "name": "symfony/var-exporter",
  8039. "version": "v7.4.9",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/symfony/var-exporter.git",
  8043. "reference": "22e03a49c95ef054a43601cd159b222bfab1c701"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/22e03a49c95ef054a43601cd159b222bfab1c701",
  8048. "reference": "22e03a49c95ef054a43601cd159b222bfab1c701",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "php": ">=8.2",
  8053. "symfony/deprecation-contracts": "^2.5|^3"
  8054. },
  8055. "require-dev": {
  8056. "symfony/property-access": "^6.4|^7.0|^8.0",
  8057. "symfony/serializer": "^6.4|^7.0|^8.0",
  8058. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  8059. },
  8060. "type": "library",
  8061. "autoload": {
  8062. "psr-4": {
  8063. "Symfony\\Component\\VarExporter\\": ""
  8064. },
  8065. "exclude-from-classmap": [
  8066. "/Tests/"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Nicolas Grekas",
  8076. "email": "p@tchwork.com"
  8077. },
  8078. {
  8079. "name": "Symfony Community",
  8080. "homepage": "https://symfony.com/contributors"
  8081. }
  8082. ],
  8083. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8084. "homepage": "https://symfony.com",
  8085. "keywords": [
  8086. "clone",
  8087. "construct",
  8088. "export",
  8089. "hydrate",
  8090. "instantiate",
  8091. "lazy-loading",
  8092. "proxy",
  8093. "serialize"
  8094. ],
  8095. "support": {
  8096. "source": "https://github.com/symfony/var-exporter/tree/v7.4.9"
  8097. },
  8098. "funding": [
  8099. {
  8100. "url": "https://symfony.com/sponsor",
  8101. "type": "custom"
  8102. },
  8103. {
  8104. "url": "https://github.com/fabpot",
  8105. "type": "github"
  8106. },
  8107. {
  8108. "url": "https://github.com/nicolas-grekas",
  8109. "type": "github"
  8110. },
  8111. {
  8112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8113. "type": "tidelift"
  8114. }
  8115. ],
  8116. "time": "2026-04-18T13:18:21+00:00"
  8117. },
  8118. {
  8119. "name": "symfony/web-link",
  8120. "version": "v7.4.8",
  8121. "source": {
  8122. "type": "git",
  8123. "url": "https://github.com/symfony/web-link.git",
  8124. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25"
  8125. },
  8126. "dist": {
  8127. "type": "zip",
  8128. "url": "https://api.github.com/repos/symfony/web-link/zipball/0711009963009e7d6d59149327f3ad633ee3fe25",
  8129. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25",
  8130. "shasum": ""
  8131. },
  8132. "require": {
  8133. "php": ">=8.2",
  8134. "psr/link": "^1.1|^2.0"
  8135. },
  8136. "conflict": {
  8137. "symfony/http-kernel": "<6.4"
  8138. },
  8139. "provide": {
  8140. "psr/link-implementation": "1.0|2.0"
  8141. },
  8142. "require-dev": {
  8143. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  8144. },
  8145. "type": "library",
  8146. "autoload": {
  8147. "psr-4": {
  8148. "Symfony\\Component\\WebLink\\": ""
  8149. },
  8150. "exclude-from-classmap": [
  8151. "/Tests/"
  8152. ]
  8153. },
  8154. "notification-url": "https://packagist.org/downloads/",
  8155. "license": [
  8156. "MIT"
  8157. ],
  8158. "authors": [
  8159. {
  8160. "name": "Kévin Dunglas",
  8161. "email": "dunglas@gmail.com"
  8162. },
  8163. {
  8164. "name": "Symfony Community",
  8165. "homepage": "https://symfony.com/contributors"
  8166. }
  8167. ],
  8168. "description": "Manages links between resources",
  8169. "homepage": "https://symfony.com",
  8170. "keywords": [
  8171. "dns-prefetch",
  8172. "http",
  8173. "http2",
  8174. "link",
  8175. "performance",
  8176. "prefetch",
  8177. "preload",
  8178. "prerender",
  8179. "psr13",
  8180. "push"
  8181. ],
  8182. "support": {
  8183. "source": "https://github.com/symfony/web-link/tree/v7.4.8"
  8184. },
  8185. "funding": [
  8186. {
  8187. "url": "https://symfony.com/sponsor",
  8188. "type": "custom"
  8189. },
  8190. {
  8191. "url": "https://github.com/fabpot",
  8192. "type": "github"
  8193. },
  8194. {
  8195. "url": "https://github.com/nicolas-grekas",
  8196. "type": "github"
  8197. },
  8198. {
  8199. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8200. "type": "tidelift"
  8201. }
  8202. ],
  8203. "time": "2026-03-24T13:12:05+00:00"
  8204. },
  8205. {
  8206. "name": "symfony/webpack-encore-bundle",
  8207. "version": "v2.4.0",
  8208. "source": {
  8209. "type": "git",
  8210. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8211. "reference": "5b932e0feddd81aaf0ecd7d5fcd2e450e5a7817e"
  8212. },
  8213. "dist": {
  8214. "type": "zip",
  8215. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/5b932e0feddd81aaf0ecd7d5fcd2e450e5a7817e",
  8216. "reference": "5b932e0feddd81aaf0ecd7d5fcd2e450e5a7817e",
  8217. "shasum": ""
  8218. },
  8219. "require": {
  8220. "php": ">=8.1.0",
  8221. "symfony/asset": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8222. "symfony/config": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8223. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8224. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8225. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  8226. },
  8227. "require-dev": {
  8228. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8229. "symfony/http-client": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8230. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8231. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8232. "symfony/web-link": "^5.4 || ^6.2 || ^7.0 || ^8.0"
  8233. },
  8234. "type": "symfony-bundle",
  8235. "extra": {
  8236. "thanks": {
  8237. "url": "https://github.com/symfony/webpack-encore",
  8238. "name": "symfony/webpack-encore"
  8239. }
  8240. },
  8241. "autoload": {
  8242. "psr-4": {
  8243. "Symfony\\WebpackEncoreBundle\\": "src"
  8244. }
  8245. },
  8246. "notification-url": "https://packagist.org/downloads/",
  8247. "license": [
  8248. "MIT"
  8249. ],
  8250. "authors": [
  8251. {
  8252. "name": "Symfony Community",
  8253. "homepage": "https://symfony.com/contributors"
  8254. }
  8255. ],
  8256. "description": "Integration of your Symfony app with Webpack Encore",
  8257. "support": {
  8258. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8259. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.4.0"
  8260. },
  8261. "funding": [
  8262. {
  8263. "url": "https://symfony.com/sponsor",
  8264. "type": "custom"
  8265. },
  8266. {
  8267. "url": "https://github.com/fabpot",
  8268. "type": "github"
  8269. },
  8270. {
  8271. "url": "https://github.com/nicolas-grekas",
  8272. "type": "github"
  8273. },
  8274. {
  8275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8276. "type": "tidelift"
  8277. }
  8278. ],
  8279. "time": "2025-11-27T13:41:46+00:00"
  8280. },
  8281. {
  8282. "name": "symfony/yaml",
  8283. "version": "v7.4.10",
  8284. "source": {
  8285. "type": "git",
  8286. "url": "https://github.com/symfony/yaml.git",
  8287. "reference": "c660d6538545a3e8e65a5621ee3d7a6d352892c7"
  8288. },
  8289. "dist": {
  8290. "type": "zip",
  8291. "url": "https://api.github.com/repos/symfony/yaml/zipball/c660d6538545a3e8e65a5621ee3d7a6d352892c7",
  8292. "reference": "c660d6538545a3e8e65a5621ee3d7a6d352892c7",
  8293. "shasum": ""
  8294. },
  8295. "require": {
  8296. "php": ">=8.2",
  8297. "symfony/deprecation-contracts": "^2.5|^3",
  8298. "symfony/polyfill-ctype": "^1.8"
  8299. },
  8300. "conflict": {
  8301. "symfony/console": "<6.4"
  8302. },
  8303. "require-dev": {
  8304. "symfony/console": "^6.4|^7.0|^8.0"
  8305. },
  8306. "bin": [
  8307. "Resources/bin/yaml-lint"
  8308. ],
  8309. "type": "library",
  8310. "autoload": {
  8311. "psr-4": {
  8312. "Symfony\\Component\\Yaml\\": ""
  8313. },
  8314. "exclude-from-classmap": [
  8315. "/Tests/"
  8316. ]
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "MIT"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Fabien Potencier",
  8325. "email": "fabien@symfony.com"
  8326. },
  8327. {
  8328. "name": "Symfony Community",
  8329. "homepage": "https://symfony.com/contributors"
  8330. }
  8331. ],
  8332. "description": "Loads and dumps YAML files",
  8333. "homepage": "https://symfony.com",
  8334. "support": {
  8335. "source": "https://github.com/symfony/yaml/tree/v7.4.10"
  8336. },
  8337. "funding": [
  8338. {
  8339. "url": "https://symfony.com/sponsor",
  8340. "type": "custom"
  8341. },
  8342. {
  8343. "url": "https://github.com/fabpot",
  8344. "type": "github"
  8345. },
  8346. {
  8347. "url": "https://github.com/nicolas-grekas",
  8348. "type": "github"
  8349. },
  8350. {
  8351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8352. "type": "tidelift"
  8353. }
  8354. ],
  8355. "time": "2026-05-05T08:01:55+00:00"
  8356. },
  8357. {
  8358. "name": "twig/extra-bundle",
  8359. "version": "v3.24.0",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8363. "reference": "6a621fcb1f28aa9ea7b34a99047ae0cdf5b834c9"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/6a621fcb1f28aa9ea7b34a99047ae0cdf5b834c9",
  8368. "reference": "6a621fcb1f28aa9ea7b34a99047ae0cdf5b834c9",
  8369. "shasum": ""
  8370. },
  8371. "require": {
  8372. "php": ">=8.1.0",
  8373. "symfony/framework-bundle": "^5.4|^6.4|^7.0|^8.0",
  8374. "symfony/twig-bundle": "^5.4|^6.4|^7.0|^8.0",
  8375. "twig/twig": "^3.2|^4.0"
  8376. },
  8377. "require-dev": {
  8378. "league/commonmark": "^2.7",
  8379. "symfony/phpunit-bridge": "^6.4|^7.0",
  8380. "twig/cache-extra": "^3.0",
  8381. "twig/cssinliner-extra": "^3.0",
  8382. "twig/html-extra": "^3.0",
  8383. "twig/inky-extra": "^3.0",
  8384. "twig/intl-extra": "^3.0",
  8385. "twig/markdown-extra": "^3.0",
  8386. "twig/string-extra": "^3.0"
  8387. },
  8388. "type": "symfony-bundle",
  8389. "autoload": {
  8390. "psr-4": {
  8391. "Twig\\Extra\\TwigExtraBundle\\": ""
  8392. },
  8393. "exclude-from-classmap": [
  8394. "/Tests/"
  8395. ]
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "MIT"
  8400. ],
  8401. "authors": [
  8402. {
  8403. "name": "Fabien Potencier",
  8404. "email": "fabien@symfony.com",
  8405. "homepage": "http://fabien.potencier.org",
  8406. "role": "Lead Developer"
  8407. }
  8408. ],
  8409. "description": "A Symfony bundle for extra Twig extensions",
  8410. "homepage": "https://twig.symfony.com",
  8411. "keywords": [
  8412. "bundle",
  8413. "extra",
  8414. "twig"
  8415. ],
  8416. "support": {
  8417. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.24.0"
  8418. },
  8419. "funding": [
  8420. {
  8421. "url": "https://github.com/fabpot",
  8422. "type": "github"
  8423. },
  8424. {
  8425. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8426. "type": "tidelift"
  8427. }
  8428. ],
  8429. "time": "2026-02-07T08:07:38+00:00"
  8430. },
  8431. {
  8432. "name": "twig/markdown-extra",
  8433. "version": "v3.24.0",
  8434. "source": {
  8435. "type": "git",
  8436. "url": "https://github.com/twigphp/markdown-extra.git",
  8437. "reference": "67a11120356e034a5bbc70c5b9b9a4d0f31ca06e"
  8438. },
  8439. "dist": {
  8440. "type": "zip",
  8441. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/67a11120356e034a5bbc70c5b9b9a4d0f31ca06e",
  8442. "reference": "67a11120356e034a5bbc70c5b9b9a4d0f31ca06e",
  8443. "shasum": ""
  8444. },
  8445. "require": {
  8446. "php": ">=8.1.0",
  8447. "symfony/deprecation-contracts": "^2.5|^3",
  8448. "twig/twig": "^3.13|^4.0"
  8449. },
  8450. "require-dev": {
  8451. "erusev/parsedown": "dev-master as 1.x-dev",
  8452. "league/commonmark": "^2.7",
  8453. "league/html-to-markdown": "^4.8|^5.0",
  8454. "michelf/php-markdown": "^1.8|^2.0",
  8455. "symfony/phpunit-bridge": "^6.4|^7.0"
  8456. },
  8457. "type": "library",
  8458. "autoload": {
  8459. "files": [
  8460. "Resources/functions.php"
  8461. ],
  8462. "psr-4": {
  8463. "Twig\\Extra\\Markdown\\": ""
  8464. },
  8465. "exclude-from-classmap": [
  8466. "/Tests/"
  8467. ]
  8468. },
  8469. "notification-url": "https://packagist.org/downloads/",
  8470. "license": [
  8471. "MIT"
  8472. ],
  8473. "authors": [
  8474. {
  8475. "name": "Fabien Potencier",
  8476. "email": "fabien@symfony.com",
  8477. "homepage": "http://fabien.potencier.org",
  8478. "role": "Lead Developer"
  8479. }
  8480. ],
  8481. "description": "A Twig extension for Markdown",
  8482. "homepage": "https://twig.symfony.com",
  8483. "keywords": [
  8484. "html",
  8485. "markdown",
  8486. "twig"
  8487. ],
  8488. "support": {
  8489. "source": "https://github.com/twigphp/markdown-extra/tree/v3.24.0"
  8490. },
  8491. "funding": [
  8492. {
  8493. "url": "https://github.com/fabpot",
  8494. "type": "github"
  8495. },
  8496. {
  8497. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8498. "type": "tidelift"
  8499. }
  8500. ],
  8501. "time": "2026-02-07T08:07:38+00:00"
  8502. },
  8503. {
  8504. "name": "twig/twig",
  8505. "version": "v3.24.0",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/twigphp/Twig.git",
  8509. "reference": "a6769aefb305efef849dc25c9fd1653358c148f0"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6769aefb305efef849dc25c9fd1653358c148f0",
  8514. "reference": "a6769aefb305efef849dc25c9fd1653358c148f0",
  8515. "shasum": ""
  8516. },
  8517. "require": {
  8518. "php": ">=8.1.0",
  8519. "symfony/deprecation-contracts": "^2.5|^3",
  8520. "symfony/polyfill-ctype": "^1.8",
  8521. "symfony/polyfill-mbstring": "^1.3"
  8522. },
  8523. "require-dev": {
  8524. "php-cs-fixer/shim": "^3.0@stable",
  8525. "phpstan/phpstan": "^2.0@stable",
  8526. "psr/container": "^1.0|^2.0",
  8527. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8528. },
  8529. "type": "library",
  8530. "autoload": {
  8531. "files": [
  8532. "src/Resources/core.php",
  8533. "src/Resources/debug.php",
  8534. "src/Resources/escaper.php",
  8535. "src/Resources/string_loader.php"
  8536. ],
  8537. "psr-4": {
  8538. "Twig\\": "src/"
  8539. }
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "BSD-3-Clause"
  8544. ],
  8545. "authors": [
  8546. {
  8547. "name": "Fabien Potencier",
  8548. "email": "fabien@symfony.com",
  8549. "homepage": "http://fabien.potencier.org",
  8550. "role": "Lead Developer"
  8551. },
  8552. {
  8553. "name": "Twig Team",
  8554. "role": "Contributors"
  8555. },
  8556. {
  8557. "name": "Armin Ronacher",
  8558. "email": "armin.ronacher@active-4.com",
  8559. "role": "Project Founder"
  8560. }
  8561. ],
  8562. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8563. "homepage": "https://twig.symfony.com",
  8564. "keywords": [
  8565. "templating"
  8566. ],
  8567. "support": {
  8568. "issues": "https://github.com/twigphp/Twig/issues",
  8569. "source": "https://github.com/twigphp/Twig/tree/v3.24.0"
  8570. },
  8571. "funding": [
  8572. {
  8573. "url": "https://github.com/fabpot",
  8574. "type": "github"
  8575. },
  8576. {
  8577. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8578. "type": "tidelift"
  8579. }
  8580. ],
  8581. "time": "2026-03-17T21:31:11+00:00"
  8582. },
  8583. {
  8584. "name": "webmozart/assert",
  8585. "version": "2.3.0",
  8586. "source": {
  8587. "type": "git",
  8588. "url": "https://github.com/webmozarts/assert.git",
  8589. "reference": "eb0d790f735ba6cff25c683a85a1da0eadeff9e4"
  8590. },
  8591. "dist": {
  8592. "type": "zip",
  8593. "url": "https://api.github.com/repos/webmozarts/assert/zipball/eb0d790f735ba6cff25c683a85a1da0eadeff9e4",
  8594. "reference": "eb0d790f735ba6cff25c683a85a1da0eadeff9e4",
  8595. "shasum": ""
  8596. },
  8597. "require": {
  8598. "ext-ctype": "*",
  8599. "ext-date": "*",
  8600. "ext-filter": "*",
  8601. "php": "^8.2"
  8602. },
  8603. "suggest": {
  8604. "ext-intl": "",
  8605. "ext-simplexml": "",
  8606. "ext-spl": ""
  8607. },
  8608. "type": "library",
  8609. "extra": {
  8610. "branch-alias": {
  8611. "dev-feature/2-0": "2.0-dev"
  8612. }
  8613. },
  8614. "autoload": {
  8615. "psr-4": {
  8616. "Webmozart\\Assert\\": "src/"
  8617. }
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "MIT"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Bernhard Schussek",
  8626. "email": "bschussek@gmail.com"
  8627. },
  8628. {
  8629. "name": "Woody Gilk",
  8630. "email": "woody.gilk@gmail.com"
  8631. }
  8632. ],
  8633. "description": "Assertions to validate method input/output with nice error messages.",
  8634. "keywords": [
  8635. "assert",
  8636. "check",
  8637. "validate"
  8638. ],
  8639. "support": {
  8640. "issues": "https://github.com/webmozarts/assert/issues",
  8641. "source": "https://github.com/webmozarts/assert/tree/2.3.0"
  8642. },
  8643. "time": "2026-04-11T10:33:05+00:00"
  8644. }
  8645. ],
  8646. "packages-dev": [
  8647. {
  8648. "name": "myclabs/deep-copy",
  8649. "version": "1.13.4",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/myclabs/DeepCopy.git",
  8653. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  8658. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  8659. "shasum": ""
  8660. },
  8661. "require": {
  8662. "php": "^7.1 || ^8.0"
  8663. },
  8664. "conflict": {
  8665. "doctrine/collections": "<1.6.8",
  8666. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8667. },
  8668. "require-dev": {
  8669. "doctrine/collections": "^1.6.8",
  8670. "doctrine/common": "^2.13.3 || ^3.2.2",
  8671. "phpspec/prophecy": "^1.10",
  8672. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8673. },
  8674. "type": "library",
  8675. "autoload": {
  8676. "files": [
  8677. "src/DeepCopy/deep_copy.php"
  8678. ],
  8679. "psr-4": {
  8680. "DeepCopy\\": "src/DeepCopy/"
  8681. }
  8682. },
  8683. "notification-url": "https://packagist.org/downloads/",
  8684. "license": [
  8685. "MIT"
  8686. ],
  8687. "description": "Create deep copies (clones) of your objects",
  8688. "keywords": [
  8689. "clone",
  8690. "copy",
  8691. "duplicate",
  8692. "object",
  8693. "object graph"
  8694. ],
  8695. "support": {
  8696. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8697. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  8698. },
  8699. "funding": [
  8700. {
  8701. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8702. "type": "tidelift"
  8703. }
  8704. ],
  8705. "time": "2025-08-01T08:46:24+00:00"
  8706. },
  8707. {
  8708. "name": "nikic/php-parser",
  8709. "version": "v5.7.0",
  8710. "source": {
  8711. "type": "git",
  8712. "url": "https://github.com/nikic/PHP-Parser.git",
  8713. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  8714. },
  8715. "dist": {
  8716. "type": "zip",
  8717. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  8718. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  8719. "shasum": ""
  8720. },
  8721. "require": {
  8722. "ext-ctype": "*",
  8723. "ext-json": "*",
  8724. "ext-tokenizer": "*",
  8725. "php": ">=7.4"
  8726. },
  8727. "require-dev": {
  8728. "ircmaxell/php-yacc": "^0.0.7",
  8729. "phpunit/phpunit": "^9.0"
  8730. },
  8731. "bin": [
  8732. "bin/php-parse"
  8733. ],
  8734. "type": "library",
  8735. "extra": {
  8736. "branch-alias": {
  8737. "dev-master": "5.x-dev"
  8738. }
  8739. },
  8740. "autoload": {
  8741. "psr-4": {
  8742. "PhpParser\\": "lib/PhpParser"
  8743. }
  8744. },
  8745. "notification-url": "https://packagist.org/downloads/",
  8746. "license": [
  8747. "BSD-3-Clause"
  8748. ],
  8749. "authors": [
  8750. {
  8751. "name": "Nikita Popov"
  8752. }
  8753. ],
  8754. "description": "A PHP parser written in PHP",
  8755. "keywords": [
  8756. "parser",
  8757. "php"
  8758. ],
  8759. "support": {
  8760. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8761. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  8762. },
  8763. "time": "2025-12-06T11:56:16+00:00"
  8764. },
  8765. {
  8766. "name": "phar-io/manifest",
  8767. "version": "2.0.4",
  8768. "source": {
  8769. "type": "git",
  8770. "url": "https://github.com/phar-io/manifest.git",
  8771. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8772. },
  8773. "dist": {
  8774. "type": "zip",
  8775. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8776. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8777. "shasum": ""
  8778. },
  8779. "require": {
  8780. "ext-dom": "*",
  8781. "ext-libxml": "*",
  8782. "ext-phar": "*",
  8783. "ext-xmlwriter": "*",
  8784. "phar-io/version": "^3.0.1",
  8785. "php": "^7.2 || ^8.0"
  8786. },
  8787. "type": "library",
  8788. "extra": {
  8789. "branch-alias": {
  8790. "dev-master": "2.0.x-dev"
  8791. }
  8792. },
  8793. "autoload": {
  8794. "classmap": [
  8795. "src/"
  8796. ]
  8797. },
  8798. "notification-url": "https://packagist.org/downloads/",
  8799. "license": [
  8800. "BSD-3-Clause"
  8801. ],
  8802. "authors": [
  8803. {
  8804. "name": "Arne Blankerts",
  8805. "email": "arne@blankerts.de",
  8806. "role": "Developer"
  8807. },
  8808. {
  8809. "name": "Sebastian Heuer",
  8810. "email": "sebastian@phpeople.de",
  8811. "role": "Developer"
  8812. },
  8813. {
  8814. "name": "Sebastian Bergmann",
  8815. "email": "sebastian@phpunit.de",
  8816. "role": "Developer"
  8817. }
  8818. ],
  8819. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8820. "support": {
  8821. "issues": "https://github.com/phar-io/manifest/issues",
  8822. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8823. },
  8824. "funding": [
  8825. {
  8826. "url": "https://github.com/theseer",
  8827. "type": "github"
  8828. }
  8829. ],
  8830. "time": "2024-03-03T12:33:53+00:00"
  8831. },
  8832. {
  8833. "name": "phar-io/version",
  8834. "version": "3.2.1",
  8835. "source": {
  8836. "type": "git",
  8837. "url": "https://github.com/phar-io/version.git",
  8838. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8839. },
  8840. "dist": {
  8841. "type": "zip",
  8842. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8843. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8844. "shasum": ""
  8845. },
  8846. "require": {
  8847. "php": "^7.2 || ^8.0"
  8848. },
  8849. "type": "library",
  8850. "autoload": {
  8851. "classmap": [
  8852. "src/"
  8853. ]
  8854. },
  8855. "notification-url": "https://packagist.org/downloads/",
  8856. "license": [
  8857. "BSD-3-Clause"
  8858. ],
  8859. "authors": [
  8860. {
  8861. "name": "Arne Blankerts",
  8862. "email": "arne@blankerts.de",
  8863. "role": "Developer"
  8864. },
  8865. {
  8866. "name": "Sebastian Heuer",
  8867. "email": "sebastian@phpeople.de",
  8868. "role": "Developer"
  8869. },
  8870. {
  8871. "name": "Sebastian Bergmann",
  8872. "email": "sebastian@phpunit.de",
  8873. "role": "Developer"
  8874. }
  8875. ],
  8876. "description": "Library for handling version information and constraints",
  8877. "support": {
  8878. "issues": "https://github.com/phar-io/version/issues",
  8879. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8880. },
  8881. "time": "2022-02-21T01:04:05+00:00"
  8882. },
  8883. {
  8884. "name": "phpunit/php-code-coverage",
  8885. "version": "9.2.32",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8889. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8894. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "ext-dom": "*",
  8899. "ext-libxml": "*",
  8900. "ext-xmlwriter": "*",
  8901. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8902. "php": ">=7.3",
  8903. "phpunit/php-file-iterator": "^3.0.6",
  8904. "phpunit/php-text-template": "^2.0.4",
  8905. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8906. "sebastian/complexity": "^2.0.3",
  8907. "sebastian/environment": "^5.1.5",
  8908. "sebastian/lines-of-code": "^1.0.4",
  8909. "sebastian/version": "^3.0.2",
  8910. "theseer/tokenizer": "^1.2.3"
  8911. },
  8912. "require-dev": {
  8913. "phpunit/phpunit": "^9.6"
  8914. },
  8915. "suggest": {
  8916. "ext-pcov": "PHP extension that provides line coverage",
  8917. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "branch-alias": {
  8922. "dev-main": "9.2.x-dev"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "classmap": [
  8927. "src/"
  8928. ]
  8929. },
  8930. "notification-url": "https://packagist.org/downloads/",
  8931. "license": [
  8932. "BSD-3-Clause"
  8933. ],
  8934. "authors": [
  8935. {
  8936. "name": "Sebastian Bergmann",
  8937. "email": "sebastian@phpunit.de",
  8938. "role": "lead"
  8939. }
  8940. ],
  8941. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8942. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8943. "keywords": [
  8944. "coverage",
  8945. "testing",
  8946. "xunit"
  8947. ],
  8948. "support": {
  8949. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8950. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8951. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8952. },
  8953. "funding": [
  8954. {
  8955. "url": "https://github.com/sebastianbergmann",
  8956. "type": "github"
  8957. }
  8958. ],
  8959. "time": "2024-08-22T04:23:01+00:00"
  8960. },
  8961. {
  8962. "name": "phpunit/php-file-iterator",
  8963. "version": "3.0.6",
  8964. "source": {
  8965. "type": "git",
  8966. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8967. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8968. },
  8969. "dist": {
  8970. "type": "zip",
  8971. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8972. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8973. "shasum": ""
  8974. },
  8975. "require": {
  8976. "php": ">=7.3"
  8977. },
  8978. "require-dev": {
  8979. "phpunit/phpunit": "^9.3"
  8980. },
  8981. "type": "library",
  8982. "extra": {
  8983. "branch-alias": {
  8984. "dev-master": "3.0-dev"
  8985. }
  8986. },
  8987. "autoload": {
  8988. "classmap": [
  8989. "src/"
  8990. ]
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "BSD-3-Clause"
  8995. ],
  8996. "authors": [
  8997. {
  8998. "name": "Sebastian Bergmann",
  8999. "email": "sebastian@phpunit.de",
  9000. "role": "lead"
  9001. }
  9002. ],
  9003. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9004. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9005. "keywords": [
  9006. "filesystem",
  9007. "iterator"
  9008. ],
  9009. "support": {
  9010. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9011. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9012. },
  9013. "funding": [
  9014. {
  9015. "url": "https://github.com/sebastianbergmann",
  9016. "type": "github"
  9017. }
  9018. ],
  9019. "time": "2021-12-02T12:48:52+00:00"
  9020. },
  9021. {
  9022. "name": "phpunit/php-invoker",
  9023. "version": "3.1.1",
  9024. "source": {
  9025. "type": "git",
  9026. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9027. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9028. },
  9029. "dist": {
  9030. "type": "zip",
  9031. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9032. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9033. "shasum": ""
  9034. },
  9035. "require": {
  9036. "php": ">=7.3"
  9037. },
  9038. "require-dev": {
  9039. "ext-pcntl": "*",
  9040. "phpunit/phpunit": "^9.3"
  9041. },
  9042. "suggest": {
  9043. "ext-pcntl": "*"
  9044. },
  9045. "type": "library",
  9046. "extra": {
  9047. "branch-alias": {
  9048. "dev-master": "3.1-dev"
  9049. }
  9050. },
  9051. "autoload": {
  9052. "classmap": [
  9053. "src/"
  9054. ]
  9055. },
  9056. "notification-url": "https://packagist.org/downloads/",
  9057. "license": [
  9058. "BSD-3-Clause"
  9059. ],
  9060. "authors": [
  9061. {
  9062. "name": "Sebastian Bergmann",
  9063. "email": "sebastian@phpunit.de",
  9064. "role": "lead"
  9065. }
  9066. ],
  9067. "description": "Invoke callables with a timeout",
  9068. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9069. "keywords": [
  9070. "process"
  9071. ],
  9072. "support": {
  9073. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9074. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9075. },
  9076. "funding": [
  9077. {
  9078. "url": "https://github.com/sebastianbergmann",
  9079. "type": "github"
  9080. }
  9081. ],
  9082. "time": "2020-09-28T05:58:55+00:00"
  9083. },
  9084. {
  9085. "name": "phpunit/php-text-template",
  9086. "version": "2.0.4",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9090. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9095. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9096. "shasum": ""
  9097. },
  9098. "require": {
  9099. "php": ">=7.3"
  9100. },
  9101. "require-dev": {
  9102. "phpunit/phpunit": "^9.3"
  9103. },
  9104. "type": "library",
  9105. "extra": {
  9106. "branch-alias": {
  9107. "dev-master": "2.0-dev"
  9108. }
  9109. },
  9110. "autoload": {
  9111. "classmap": [
  9112. "src/"
  9113. ]
  9114. },
  9115. "notification-url": "https://packagist.org/downloads/",
  9116. "license": [
  9117. "BSD-3-Clause"
  9118. ],
  9119. "authors": [
  9120. {
  9121. "name": "Sebastian Bergmann",
  9122. "email": "sebastian@phpunit.de",
  9123. "role": "lead"
  9124. }
  9125. ],
  9126. "description": "Simple template engine.",
  9127. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9128. "keywords": [
  9129. "template"
  9130. ],
  9131. "support": {
  9132. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9133. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9134. },
  9135. "funding": [
  9136. {
  9137. "url": "https://github.com/sebastianbergmann",
  9138. "type": "github"
  9139. }
  9140. ],
  9141. "time": "2020-10-26T05:33:50+00:00"
  9142. },
  9143. {
  9144. "name": "phpunit/php-timer",
  9145. "version": "5.0.3",
  9146. "source": {
  9147. "type": "git",
  9148. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9149. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9150. },
  9151. "dist": {
  9152. "type": "zip",
  9153. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9154. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9155. "shasum": ""
  9156. },
  9157. "require": {
  9158. "php": ">=7.3"
  9159. },
  9160. "require-dev": {
  9161. "phpunit/phpunit": "^9.3"
  9162. },
  9163. "type": "library",
  9164. "extra": {
  9165. "branch-alias": {
  9166. "dev-master": "5.0-dev"
  9167. }
  9168. },
  9169. "autoload": {
  9170. "classmap": [
  9171. "src/"
  9172. ]
  9173. },
  9174. "notification-url": "https://packagist.org/downloads/",
  9175. "license": [
  9176. "BSD-3-Clause"
  9177. ],
  9178. "authors": [
  9179. {
  9180. "name": "Sebastian Bergmann",
  9181. "email": "sebastian@phpunit.de",
  9182. "role": "lead"
  9183. }
  9184. ],
  9185. "description": "Utility class for timing",
  9186. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9187. "keywords": [
  9188. "timer"
  9189. ],
  9190. "support": {
  9191. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9192. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://github.com/sebastianbergmann",
  9197. "type": "github"
  9198. }
  9199. ],
  9200. "time": "2020-10-26T13:16:10+00:00"
  9201. },
  9202. {
  9203. "name": "phpunit/phpunit",
  9204. "version": "9.6.34",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9208. "reference": "b36f02317466907a230d3aa1d34467041271ef4a"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a",
  9213. "reference": "b36f02317466907a230d3aa1d34467041271ef4a",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "doctrine/instantiator": "^1.5.0 || ^2",
  9218. "ext-dom": "*",
  9219. "ext-json": "*",
  9220. "ext-libxml": "*",
  9221. "ext-mbstring": "*",
  9222. "ext-xml": "*",
  9223. "ext-xmlwriter": "*",
  9224. "myclabs/deep-copy": "^1.13.4",
  9225. "phar-io/manifest": "^2.0.4",
  9226. "phar-io/version": "^3.2.1",
  9227. "php": ">=7.3",
  9228. "phpunit/php-code-coverage": "^9.2.32",
  9229. "phpunit/php-file-iterator": "^3.0.6",
  9230. "phpunit/php-invoker": "^3.1.1",
  9231. "phpunit/php-text-template": "^2.0.4",
  9232. "phpunit/php-timer": "^5.0.3",
  9233. "sebastian/cli-parser": "^1.0.2",
  9234. "sebastian/code-unit": "^1.0.8",
  9235. "sebastian/comparator": "^4.0.10",
  9236. "sebastian/diff": "^4.0.6",
  9237. "sebastian/environment": "^5.1.5",
  9238. "sebastian/exporter": "^4.0.8",
  9239. "sebastian/global-state": "^5.0.8",
  9240. "sebastian/object-enumerator": "^4.0.4",
  9241. "sebastian/resource-operations": "^3.0.4",
  9242. "sebastian/type": "^3.2.1",
  9243. "sebastian/version": "^3.0.2"
  9244. },
  9245. "suggest": {
  9246. "ext-soap": "To be able to generate mocks based on WSDL files",
  9247. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9248. },
  9249. "bin": [
  9250. "phpunit"
  9251. ],
  9252. "type": "library",
  9253. "extra": {
  9254. "branch-alias": {
  9255. "dev-master": "9.6-dev"
  9256. }
  9257. },
  9258. "autoload": {
  9259. "files": [
  9260. "src/Framework/Assert/Functions.php"
  9261. ],
  9262. "classmap": [
  9263. "src/"
  9264. ]
  9265. },
  9266. "notification-url": "https://packagist.org/downloads/",
  9267. "license": [
  9268. "BSD-3-Clause"
  9269. ],
  9270. "authors": [
  9271. {
  9272. "name": "Sebastian Bergmann",
  9273. "email": "sebastian@phpunit.de",
  9274. "role": "lead"
  9275. }
  9276. ],
  9277. "description": "The PHP Unit Testing framework.",
  9278. "homepage": "https://phpunit.de/",
  9279. "keywords": [
  9280. "phpunit",
  9281. "testing",
  9282. "xunit"
  9283. ],
  9284. "support": {
  9285. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9286. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9287. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.34"
  9288. },
  9289. "funding": [
  9290. {
  9291. "url": "https://phpunit.de/sponsors.html",
  9292. "type": "custom"
  9293. },
  9294. {
  9295. "url": "https://github.com/sebastianbergmann",
  9296. "type": "github"
  9297. },
  9298. {
  9299. "url": "https://liberapay.com/sebastianbergmann",
  9300. "type": "liberapay"
  9301. },
  9302. {
  9303. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9304. "type": "thanks_dev"
  9305. },
  9306. {
  9307. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9308. "type": "tidelift"
  9309. }
  9310. ],
  9311. "time": "2026-01-27T05:45:00+00:00"
  9312. },
  9313. {
  9314. "name": "sebastian/cli-parser",
  9315. "version": "1.0.2",
  9316. "source": {
  9317. "type": "git",
  9318. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9319. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9320. },
  9321. "dist": {
  9322. "type": "zip",
  9323. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9324. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9325. "shasum": ""
  9326. },
  9327. "require": {
  9328. "php": ">=7.3"
  9329. },
  9330. "require-dev": {
  9331. "phpunit/phpunit": "^9.3"
  9332. },
  9333. "type": "library",
  9334. "extra": {
  9335. "branch-alias": {
  9336. "dev-master": "1.0-dev"
  9337. }
  9338. },
  9339. "autoload": {
  9340. "classmap": [
  9341. "src/"
  9342. ]
  9343. },
  9344. "notification-url": "https://packagist.org/downloads/",
  9345. "license": [
  9346. "BSD-3-Clause"
  9347. ],
  9348. "authors": [
  9349. {
  9350. "name": "Sebastian Bergmann",
  9351. "email": "sebastian@phpunit.de",
  9352. "role": "lead"
  9353. }
  9354. ],
  9355. "description": "Library for parsing CLI options",
  9356. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9357. "support": {
  9358. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9359. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9360. },
  9361. "funding": [
  9362. {
  9363. "url": "https://github.com/sebastianbergmann",
  9364. "type": "github"
  9365. }
  9366. ],
  9367. "time": "2024-03-02T06:27:43+00:00"
  9368. },
  9369. {
  9370. "name": "sebastian/code-unit",
  9371. "version": "1.0.8",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9375. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9380. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": ">=7.3"
  9385. },
  9386. "require-dev": {
  9387. "phpunit/phpunit": "^9.3"
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-master": "1.0-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "classmap": [
  9397. "src/"
  9398. ]
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "license": [
  9402. "BSD-3-Clause"
  9403. ],
  9404. "authors": [
  9405. {
  9406. "name": "Sebastian Bergmann",
  9407. "email": "sebastian@phpunit.de",
  9408. "role": "lead"
  9409. }
  9410. ],
  9411. "description": "Collection of value objects that represent the PHP code units",
  9412. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9413. "support": {
  9414. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9415. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9416. },
  9417. "funding": [
  9418. {
  9419. "url": "https://github.com/sebastianbergmann",
  9420. "type": "github"
  9421. }
  9422. ],
  9423. "time": "2020-10-26T13:08:54+00:00"
  9424. },
  9425. {
  9426. "name": "sebastian/code-unit-reverse-lookup",
  9427. "version": "2.0.3",
  9428. "source": {
  9429. "type": "git",
  9430. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9431. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9432. },
  9433. "dist": {
  9434. "type": "zip",
  9435. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9436. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9437. "shasum": ""
  9438. },
  9439. "require": {
  9440. "php": ">=7.3"
  9441. },
  9442. "require-dev": {
  9443. "phpunit/phpunit": "^9.3"
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-master": "2.0-dev"
  9449. }
  9450. },
  9451. "autoload": {
  9452. "classmap": [
  9453. "src/"
  9454. ]
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "BSD-3-Clause"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Sebastian Bergmann",
  9463. "email": "sebastian@phpunit.de"
  9464. }
  9465. ],
  9466. "description": "Looks up which function or method a line of code belongs to",
  9467. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9468. "support": {
  9469. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9470. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9471. },
  9472. "funding": [
  9473. {
  9474. "url": "https://github.com/sebastianbergmann",
  9475. "type": "github"
  9476. }
  9477. ],
  9478. "time": "2020-09-28T05:30:19+00:00"
  9479. },
  9480. {
  9481. "name": "sebastian/comparator",
  9482. "version": "4.0.10",
  9483. "source": {
  9484. "type": "git",
  9485. "url": "https://github.com/sebastianbergmann/comparator.git",
  9486. "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d"
  9487. },
  9488. "dist": {
  9489. "type": "zip",
  9490. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d",
  9491. "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d",
  9492. "shasum": ""
  9493. },
  9494. "require": {
  9495. "php": ">=7.3",
  9496. "sebastian/diff": "^4.0",
  9497. "sebastian/exporter": "^4.0"
  9498. },
  9499. "require-dev": {
  9500. "phpunit/phpunit": "^9.3"
  9501. },
  9502. "type": "library",
  9503. "extra": {
  9504. "branch-alias": {
  9505. "dev-master": "4.0-dev"
  9506. }
  9507. },
  9508. "autoload": {
  9509. "classmap": [
  9510. "src/"
  9511. ]
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "BSD-3-Clause"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Sebastian Bergmann",
  9520. "email": "sebastian@phpunit.de"
  9521. },
  9522. {
  9523. "name": "Jeff Welch",
  9524. "email": "whatthejeff@gmail.com"
  9525. },
  9526. {
  9527. "name": "Volker Dusch",
  9528. "email": "github@wallbash.com"
  9529. },
  9530. {
  9531. "name": "Bernhard Schussek",
  9532. "email": "bschussek@2bepublished.at"
  9533. }
  9534. ],
  9535. "description": "Provides the functionality to compare PHP values for equality",
  9536. "homepage": "https://github.com/sebastianbergmann/comparator",
  9537. "keywords": [
  9538. "comparator",
  9539. "compare",
  9540. "equality"
  9541. ],
  9542. "support": {
  9543. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9544. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.10"
  9545. },
  9546. "funding": [
  9547. {
  9548. "url": "https://github.com/sebastianbergmann",
  9549. "type": "github"
  9550. },
  9551. {
  9552. "url": "https://liberapay.com/sebastianbergmann",
  9553. "type": "liberapay"
  9554. },
  9555. {
  9556. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9557. "type": "thanks_dev"
  9558. },
  9559. {
  9560. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9561. "type": "tidelift"
  9562. }
  9563. ],
  9564. "time": "2026-01-24T09:22:56+00:00"
  9565. },
  9566. {
  9567. "name": "sebastian/complexity",
  9568. "version": "2.0.3",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/sebastianbergmann/complexity.git",
  9572. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9577. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9578. "shasum": ""
  9579. },
  9580. "require": {
  9581. "nikic/php-parser": "^4.18 || ^5.0",
  9582. "php": ">=7.3"
  9583. },
  9584. "require-dev": {
  9585. "phpunit/phpunit": "^9.3"
  9586. },
  9587. "type": "library",
  9588. "extra": {
  9589. "branch-alias": {
  9590. "dev-master": "2.0-dev"
  9591. }
  9592. },
  9593. "autoload": {
  9594. "classmap": [
  9595. "src/"
  9596. ]
  9597. },
  9598. "notification-url": "https://packagist.org/downloads/",
  9599. "license": [
  9600. "BSD-3-Clause"
  9601. ],
  9602. "authors": [
  9603. {
  9604. "name": "Sebastian Bergmann",
  9605. "email": "sebastian@phpunit.de",
  9606. "role": "lead"
  9607. }
  9608. ],
  9609. "description": "Library for calculating the complexity of PHP code units",
  9610. "homepage": "https://github.com/sebastianbergmann/complexity",
  9611. "support": {
  9612. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9613. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9614. },
  9615. "funding": [
  9616. {
  9617. "url": "https://github.com/sebastianbergmann",
  9618. "type": "github"
  9619. }
  9620. ],
  9621. "time": "2023-12-22T06:19:30+00:00"
  9622. },
  9623. {
  9624. "name": "sebastian/diff",
  9625. "version": "4.0.6",
  9626. "source": {
  9627. "type": "git",
  9628. "url": "https://github.com/sebastianbergmann/diff.git",
  9629. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9630. },
  9631. "dist": {
  9632. "type": "zip",
  9633. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9634. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9635. "shasum": ""
  9636. },
  9637. "require": {
  9638. "php": ">=7.3"
  9639. },
  9640. "require-dev": {
  9641. "phpunit/phpunit": "^9.3",
  9642. "symfony/process": "^4.2 || ^5"
  9643. },
  9644. "type": "library",
  9645. "extra": {
  9646. "branch-alias": {
  9647. "dev-master": "4.0-dev"
  9648. }
  9649. },
  9650. "autoload": {
  9651. "classmap": [
  9652. "src/"
  9653. ]
  9654. },
  9655. "notification-url": "https://packagist.org/downloads/",
  9656. "license": [
  9657. "BSD-3-Clause"
  9658. ],
  9659. "authors": [
  9660. {
  9661. "name": "Sebastian Bergmann",
  9662. "email": "sebastian@phpunit.de"
  9663. },
  9664. {
  9665. "name": "Kore Nordmann",
  9666. "email": "mail@kore-nordmann.de"
  9667. }
  9668. ],
  9669. "description": "Diff implementation",
  9670. "homepage": "https://github.com/sebastianbergmann/diff",
  9671. "keywords": [
  9672. "diff",
  9673. "udiff",
  9674. "unidiff",
  9675. "unified diff"
  9676. ],
  9677. "support": {
  9678. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9679. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/sebastianbergmann",
  9684. "type": "github"
  9685. }
  9686. ],
  9687. "time": "2024-03-02T06:30:58+00:00"
  9688. },
  9689. {
  9690. "name": "sebastian/environment",
  9691. "version": "5.1.5",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/environment.git",
  9695. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9700. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9701. "shasum": ""
  9702. },
  9703. "require": {
  9704. "php": ">=7.3"
  9705. },
  9706. "require-dev": {
  9707. "phpunit/phpunit": "^9.3"
  9708. },
  9709. "suggest": {
  9710. "ext-posix": "*"
  9711. },
  9712. "type": "library",
  9713. "extra": {
  9714. "branch-alias": {
  9715. "dev-master": "5.1-dev"
  9716. }
  9717. },
  9718. "autoload": {
  9719. "classmap": [
  9720. "src/"
  9721. ]
  9722. },
  9723. "notification-url": "https://packagist.org/downloads/",
  9724. "license": [
  9725. "BSD-3-Clause"
  9726. ],
  9727. "authors": [
  9728. {
  9729. "name": "Sebastian Bergmann",
  9730. "email": "sebastian@phpunit.de"
  9731. }
  9732. ],
  9733. "description": "Provides functionality to handle HHVM/PHP environments",
  9734. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9735. "keywords": [
  9736. "Xdebug",
  9737. "environment",
  9738. "hhvm"
  9739. ],
  9740. "support": {
  9741. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9742. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9743. },
  9744. "funding": [
  9745. {
  9746. "url": "https://github.com/sebastianbergmann",
  9747. "type": "github"
  9748. }
  9749. ],
  9750. "time": "2023-02-03T06:03:51+00:00"
  9751. },
  9752. {
  9753. "name": "sebastian/exporter",
  9754. "version": "4.0.8",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/sebastianbergmann/exporter.git",
  9758. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9763. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "php": ">=7.3",
  9768. "sebastian/recursion-context": "^4.0"
  9769. },
  9770. "require-dev": {
  9771. "ext-mbstring": "*",
  9772. "phpunit/phpunit": "^9.3"
  9773. },
  9774. "type": "library",
  9775. "extra": {
  9776. "branch-alias": {
  9777. "dev-master": "4.0-dev"
  9778. }
  9779. },
  9780. "autoload": {
  9781. "classmap": [
  9782. "src/"
  9783. ]
  9784. },
  9785. "notification-url": "https://packagist.org/downloads/",
  9786. "license": [
  9787. "BSD-3-Clause"
  9788. ],
  9789. "authors": [
  9790. {
  9791. "name": "Sebastian Bergmann",
  9792. "email": "sebastian@phpunit.de"
  9793. },
  9794. {
  9795. "name": "Jeff Welch",
  9796. "email": "whatthejeff@gmail.com"
  9797. },
  9798. {
  9799. "name": "Volker Dusch",
  9800. "email": "github@wallbash.com"
  9801. },
  9802. {
  9803. "name": "Adam Harvey",
  9804. "email": "aharvey@php.net"
  9805. },
  9806. {
  9807. "name": "Bernhard Schussek",
  9808. "email": "bschussek@gmail.com"
  9809. }
  9810. ],
  9811. "description": "Provides the functionality to export PHP variables for visualization",
  9812. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9813. "keywords": [
  9814. "export",
  9815. "exporter"
  9816. ],
  9817. "support": {
  9818. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9819. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  9820. },
  9821. "funding": [
  9822. {
  9823. "url": "https://github.com/sebastianbergmann",
  9824. "type": "github"
  9825. },
  9826. {
  9827. "url": "https://liberapay.com/sebastianbergmann",
  9828. "type": "liberapay"
  9829. },
  9830. {
  9831. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9832. "type": "thanks_dev"
  9833. },
  9834. {
  9835. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  9836. "type": "tidelift"
  9837. }
  9838. ],
  9839. "time": "2025-09-24T06:03:27+00:00"
  9840. },
  9841. {
  9842. "name": "sebastian/global-state",
  9843. "version": "5.0.8",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/sebastianbergmann/global-state.git",
  9847. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9852. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "php": ">=7.3",
  9857. "sebastian/object-reflector": "^2.0",
  9858. "sebastian/recursion-context": "^4.0"
  9859. },
  9860. "require-dev": {
  9861. "ext-dom": "*",
  9862. "phpunit/phpunit": "^9.3"
  9863. },
  9864. "suggest": {
  9865. "ext-uopz": "*"
  9866. },
  9867. "type": "library",
  9868. "extra": {
  9869. "branch-alias": {
  9870. "dev-master": "5.0-dev"
  9871. }
  9872. },
  9873. "autoload": {
  9874. "classmap": [
  9875. "src/"
  9876. ]
  9877. },
  9878. "notification-url": "https://packagist.org/downloads/",
  9879. "license": [
  9880. "BSD-3-Clause"
  9881. ],
  9882. "authors": [
  9883. {
  9884. "name": "Sebastian Bergmann",
  9885. "email": "sebastian@phpunit.de"
  9886. }
  9887. ],
  9888. "description": "Snapshotting of global state",
  9889. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9890. "keywords": [
  9891. "global state"
  9892. ],
  9893. "support": {
  9894. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9895. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  9896. },
  9897. "funding": [
  9898. {
  9899. "url": "https://github.com/sebastianbergmann",
  9900. "type": "github"
  9901. },
  9902. {
  9903. "url": "https://liberapay.com/sebastianbergmann",
  9904. "type": "liberapay"
  9905. },
  9906. {
  9907. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9908. "type": "thanks_dev"
  9909. },
  9910. {
  9911. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  9912. "type": "tidelift"
  9913. }
  9914. ],
  9915. "time": "2025-08-10T07:10:35+00:00"
  9916. },
  9917. {
  9918. "name": "sebastian/lines-of-code",
  9919. "version": "1.0.4",
  9920. "source": {
  9921. "type": "git",
  9922. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9923. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9924. },
  9925. "dist": {
  9926. "type": "zip",
  9927. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9928. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9929. "shasum": ""
  9930. },
  9931. "require": {
  9932. "nikic/php-parser": "^4.18 || ^5.0",
  9933. "php": ">=7.3"
  9934. },
  9935. "require-dev": {
  9936. "phpunit/phpunit": "^9.3"
  9937. },
  9938. "type": "library",
  9939. "extra": {
  9940. "branch-alias": {
  9941. "dev-master": "1.0-dev"
  9942. }
  9943. },
  9944. "autoload": {
  9945. "classmap": [
  9946. "src/"
  9947. ]
  9948. },
  9949. "notification-url": "https://packagist.org/downloads/",
  9950. "license": [
  9951. "BSD-3-Clause"
  9952. ],
  9953. "authors": [
  9954. {
  9955. "name": "Sebastian Bergmann",
  9956. "email": "sebastian@phpunit.de",
  9957. "role": "lead"
  9958. }
  9959. ],
  9960. "description": "Library for counting the lines of code in PHP source code",
  9961. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9962. "support": {
  9963. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9964. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9965. },
  9966. "funding": [
  9967. {
  9968. "url": "https://github.com/sebastianbergmann",
  9969. "type": "github"
  9970. }
  9971. ],
  9972. "time": "2023-12-22T06:20:34+00:00"
  9973. },
  9974. {
  9975. "name": "sebastian/object-enumerator",
  9976. "version": "4.0.4",
  9977. "source": {
  9978. "type": "git",
  9979. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9980. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9981. },
  9982. "dist": {
  9983. "type": "zip",
  9984. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9985. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9986. "shasum": ""
  9987. },
  9988. "require": {
  9989. "php": ">=7.3",
  9990. "sebastian/object-reflector": "^2.0",
  9991. "sebastian/recursion-context": "^4.0"
  9992. },
  9993. "require-dev": {
  9994. "phpunit/phpunit": "^9.3"
  9995. },
  9996. "type": "library",
  9997. "extra": {
  9998. "branch-alias": {
  9999. "dev-master": "4.0-dev"
  10000. }
  10001. },
  10002. "autoload": {
  10003. "classmap": [
  10004. "src/"
  10005. ]
  10006. },
  10007. "notification-url": "https://packagist.org/downloads/",
  10008. "license": [
  10009. "BSD-3-Clause"
  10010. ],
  10011. "authors": [
  10012. {
  10013. "name": "Sebastian Bergmann",
  10014. "email": "sebastian@phpunit.de"
  10015. }
  10016. ],
  10017. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10018. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10019. "support": {
  10020. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10021. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10022. },
  10023. "funding": [
  10024. {
  10025. "url": "https://github.com/sebastianbergmann",
  10026. "type": "github"
  10027. }
  10028. ],
  10029. "time": "2020-10-26T13:12:34+00:00"
  10030. },
  10031. {
  10032. "name": "sebastian/object-reflector",
  10033. "version": "2.0.4",
  10034. "source": {
  10035. "type": "git",
  10036. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10037. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10038. },
  10039. "dist": {
  10040. "type": "zip",
  10041. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10042. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10043. "shasum": ""
  10044. },
  10045. "require": {
  10046. "php": ">=7.3"
  10047. },
  10048. "require-dev": {
  10049. "phpunit/phpunit": "^9.3"
  10050. },
  10051. "type": "library",
  10052. "extra": {
  10053. "branch-alias": {
  10054. "dev-master": "2.0-dev"
  10055. }
  10056. },
  10057. "autoload": {
  10058. "classmap": [
  10059. "src/"
  10060. ]
  10061. },
  10062. "notification-url": "https://packagist.org/downloads/",
  10063. "license": [
  10064. "BSD-3-Clause"
  10065. ],
  10066. "authors": [
  10067. {
  10068. "name": "Sebastian Bergmann",
  10069. "email": "sebastian@phpunit.de"
  10070. }
  10071. ],
  10072. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10073. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10074. "support": {
  10075. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10076. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10077. },
  10078. "funding": [
  10079. {
  10080. "url": "https://github.com/sebastianbergmann",
  10081. "type": "github"
  10082. }
  10083. ],
  10084. "time": "2020-10-26T13:14:26+00:00"
  10085. },
  10086. {
  10087. "name": "sebastian/recursion-context",
  10088. "version": "4.0.6",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10092. "reference": "539c6691e0623af6dc6f9c20384c120f963465a0"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0",
  10097. "reference": "539c6691e0623af6dc6f9c20384c120f963465a0",
  10098. "shasum": ""
  10099. },
  10100. "require": {
  10101. "php": ">=7.3"
  10102. },
  10103. "require-dev": {
  10104. "phpunit/phpunit": "^9.3"
  10105. },
  10106. "type": "library",
  10107. "extra": {
  10108. "branch-alias": {
  10109. "dev-master": "4.0-dev"
  10110. }
  10111. },
  10112. "autoload": {
  10113. "classmap": [
  10114. "src/"
  10115. ]
  10116. },
  10117. "notification-url": "https://packagist.org/downloads/",
  10118. "license": [
  10119. "BSD-3-Clause"
  10120. ],
  10121. "authors": [
  10122. {
  10123. "name": "Sebastian Bergmann",
  10124. "email": "sebastian@phpunit.de"
  10125. },
  10126. {
  10127. "name": "Jeff Welch",
  10128. "email": "whatthejeff@gmail.com"
  10129. },
  10130. {
  10131. "name": "Adam Harvey",
  10132. "email": "aharvey@php.net"
  10133. }
  10134. ],
  10135. "description": "Provides functionality to recursively process PHP variables",
  10136. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10137. "support": {
  10138. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10139. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.6"
  10140. },
  10141. "funding": [
  10142. {
  10143. "url": "https://github.com/sebastianbergmann",
  10144. "type": "github"
  10145. },
  10146. {
  10147. "url": "https://liberapay.com/sebastianbergmann",
  10148. "type": "liberapay"
  10149. },
  10150. {
  10151. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10152. "type": "thanks_dev"
  10153. },
  10154. {
  10155. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  10156. "type": "tidelift"
  10157. }
  10158. ],
  10159. "time": "2025-08-10T06:57:39+00:00"
  10160. },
  10161. {
  10162. "name": "sebastian/resource-operations",
  10163. "version": "3.0.4",
  10164. "source": {
  10165. "type": "git",
  10166. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10167. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10168. },
  10169. "dist": {
  10170. "type": "zip",
  10171. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10172. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10173. "shasum": ""
  10174. },
  10175. "require": {
  10176. "php": ">=7.3"
  10177. },
  10178. "require-dev": {
  10179. "phpunit/phpunit": "^9.0"
  10180. },
  10181. "type": "library",
  10182. "extra": {
  10183. "branch-alias": {
  10184. "dev-main": "3.0-dev"
  10185. }
  10186. },
  10187. "autoload": {
  10188. "classmap": [
  10189. "src/"
  10190. ]
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "BSD-3-Clause"
  10195. ],
  10196. "authors": [
  10197. {
  10198. "name": "Sebastian Bergmann",
  10199. "email": "sebastian@phpunit.de"
  10200. }
  10201. ],
  10202. "description": "Provides a list of PHP built-in functions that operate on resources",
  10203. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10204. "support": {
  10205. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10206. },
  10207. "funding": [
  10208. {
  10209. "url": "https://github.com/sebastianbergmann",
  10210. "type": "github"
  10211. }
  10212. ],
  10213. "time": "2024-03-14T16:00:52+00:00"
  10214. },
  10215. {
  10216. "name": "sebastian/type",
  10217. "version": "3.2.1",
  10218. "source": {
  10219. "type": "git",
  10220. "url": "https://github.com/sebastianbergmann/type.git",
  10221. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10222. },
  10223. "dist": {
  10224. "type": "zip",
  10225. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10226. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10227. "shasum": ""
  10228. },
  10229. "require": {
  10230. "php": ">=7.3"
  10231. },
  10232. "require-dev": {
  10233. "phpunit/phpunit": "^9.5"
  10234. },
  10235. "type": "library",
  10236. "extra": {
  10237. "branch-alias": {
  10238. "dev-master": "3.2-dev"
  10239. }
  10240. },
  10241. "autoload": {
  10242. "classmap": [
  10243. "src/"
  10244. ]
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "BSD-3-Clause"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "Sebastian Bergmann",
  10253. "email": "sebastian@phpunit.de",
  10254. "role": "lead"
  10255. }
  10256. ],
  10257. "description": "Collection of value objects that represent the types of the PHP type system",
  10258. "homepage": "https://github.com/sebastianbergmann/type",
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/type/issues",
  10261. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://github.com/sebastianbergmann",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2023-02-03T06:13:03+00:00"
  10270. },
  10271. {
  10272. "name": "sebastian/version",
  10273. "version": "3.0.2",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/sebastianbergmann/version.git",
  10277. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10282. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.3"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "branch-alias": {
  10291. "dev-master": "3.0-dev"
  10292. }
  10293. },
  10294. "autoload": {
  10295. "classmap": [
  10296. "src/"
  10297. ]
  10298. },
  10299. "notification-url": "https://packagist.org/downloads/",
  10300. "license": [
  10301. "BSD-3-Clause"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Sebastian Bergmann",
  10306. "email": "sebastian@phpunit.de",
  10307. "role": "lead"
  10308. }
  10309. ],
  10310. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10311. "homepage": "https://github.com/sebastianbergmann/version",
  10312. "support": {
  10313. "issues": "https://github.com/sebastianbergmann/version/issues",
  10314. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10315. },
  10316. "funding": [
  10317. {
  10318. "url": "https://github.com/sebastianbergmann",
  10319. "type": "github"
  10320. }
  10321. ],
  10322. "time": "2020-09-28T06:39:44+00:00"
  10323. },
  10324. {
  10325. "name": "symfony/browser-kit",
  10326. "version": "v7.4.8",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/symfony/browser-kit.git",
  10330. "reference": "41850d8f8ddef9a9cd7314fa9f4902cf48885521"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/41850d8f8ddef9a9cd7314fa9f4902cf48885521",
  10335. "reference": "41850d8f8ddef9a9cd7314fa9f4902cf48885521",
  10336. "shasum": ""
  10337. },
  10338. "require": {
  10339. "php": ">=8.2",
  10340. "symfony/deprecation-contracts": "^2.5|^3",
  10341. "symfony/dom-crawler": "^6.4|^7.0|^8.0"
  10342. },
  10343. "require-dev": {
  10344. "symfony/css-selector": "^6.4|^7.0|^8.0",
  10345. "symfony/http-client": "^6.4|^7.0|^8.0",
  10346. "symfony/mime": "^6.4|^7.0|^8.0",
  10347. "symfony/process": "^6.4|^7.0|^8.0"
  10348. },
  10349. "type": "library",
  10350. "autoload": {
  10351. "psr-4": {
  10352. "Symfony\\Component\\BrowserKit\\": ""
  10353. },
  10354. "exclude-from-classmap": [
  10355. "/Tests/"
  10356. ]
  10357. },
  10358. "notification-url": "https://packagist.org/downloads/",
  10359. "license": [
  10360. "MIT"
  10361. ],
  10362. "authors": [
  10363. {
  10364. "name": "Fabien Potencier",
  10365. "email": "fabien@symfony.com"
  10366. },
  10367. {
  10368. "name": "Symfony Community",
  10369. "homepage": "https://symfony.com/contributors"
  10370. }
  10371. ],
  10372. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10373. "homepage": "https://symfony.com",
  10374. "support": {
  10375. "source": "https://github.com/symfony/browser-kit/tree/v7.4.8"
  10376. },
  10377. "funding": [
  10378. {
  10379. "url": "https://symfony.com/sponsor",
  10380. "type": "custom"
  10381. },
  10382. {
  10383. "url": "https://github.com/fabpot",
  10384. "type": "github"
  10385. },
  10386. {
  10387. "url": "https://github.com/nicolas-grekas",
  10388. "type": "github"
  10389. },
  10390. {
  10391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10392. "type": "tidelift"
  10393. }
  10394. ],
  10395. "time": "2026-03-24T13:12:05+00:00"
  10396. },
  10397. {
  10398. "name": "symfony/css-selector",
  10399. "version": "v7.4.9",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/symfony/css-selector.git",
  10403. "reference": "b75663ed96cf4756e28e3105476f220f92886cc4"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b75663ed96cf4756e28e3105476f220f92886cc4",
  10408. "reference": "b75663ed96cf4756e28e3105476f220f92886cc4",
  10409. "shasum": ""
  10410. },
  10411. "require": {
  10412. "php": ">=8.2"
  10413. },
  10414. "type": "library",
  10415. "autoload": {
  10416. "psr-4": {
  10417. "Symfony\\Component\\CssSelector\\": ""
  10418. },
  10419. "exclude-from-classmap": [
  10420. "/Tests/"
  10421. ]
  10422. },
  10423. "notification-url": "https://packagist.org/downloads/",
  10424. "license": [
  10425. "MIT"
  10426. ],
  10427. "authors": [
  10428. {
  10429. "name": "Fabien Potencier",
  10430. "email": "fabien@symfony.com"
  10431. },
  10432. {
  10433. "name": "Jean-François Simon",
  10434. "email": "jeanfrancois.simon@sensiolabs.com"
  10435. },
  10436. {
  10437. "name": "Symfony Community",
  10438. "homepage": "https://symfony.com/contributors"
  10439. }
  10440. ],
  10441. "description": "Converts CSS selectors to XPath expressions",
  10442. "homepage": "https://symfony.com",
  10443. "support": {
  10444. "source": "https://github.com/symfony/css-selector/tree/v7.4.9"
  10445. },
  10446. "funding": [
  10447. {
  10448. "url": "https://symfony.com/sponsor",
  10449. "type": "custom"
  10450. },
  10451. {
  10452. "url": "https://github.com/fabpot",
  10453. "type": "github"
  10454. },
  10455. {
  10456. "url": "https://github.com/nicolas-grekas",
  10457. "type": "github"
  10458. },
  10459. {
  10460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10461. "type": "tidelift"
  10462. }
  10463. ],
  10464. "time": "2026-04-18T13:18:21+00:00"
  10465. },
  10466. {
  10467. "name": "symfony/debug-bundle",
  10468. "version": "v7.4.8",
  10469. "source": {
  10470. "type": "git",
  10471. "url": "https://github.com/symfony/debug-bundle.git",
  10472. "reference": "3eb18c1e6cd16da2cea1f1b5162e442af4afee44"
  10473. },
  10474. "dist": {
  10475. "type": "zip",
  10476. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/3eb18c1e6cd16da2cea1f1b5162e442af4afee44",
  10477. "reference": "3eb18c1e6cd16da2cea1f1b5162e442af4afee44",
  10478. "shasum": ""
  10479. },
  10480. "require": {
  10481. "composer-runtime-api": ">=2.1",
  10482. "ext-xml": "*",
  10483. "php": ">=8.2",
  10484. "symfony/config": "^7.3|^8.0",
  10485. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  10486. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  10487. "symfony/twig-bridge": "^6.4|^7.0|^8.0",
  10488. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  10489. },
  10490. "require-dev": {
  10491. "symfony/web-profiler-bundle": "^6.4|^7.0|^8.0"
  10492. },
  10493. "type": "symfony-bundle",
  10494. "autoload": {
  10495. "psr-4": {
  10496. "Symfony\\Bundle\\DebugBundle\\": ""
  10497. },
  10498. "exclude-from-classmap": [
  10499. "/Tests/"
  10500. ]
  10501. },
  10502. "notification-url": "https://packagist.org/downloads/",
  10503. "license": [
  10504. "MIT"
  10505. ],
  10506. "authors": [
  10507. {
  10508. "name": "Fabien Potencier",
  10509. "email": "fabien@symfony.com"
  10510. },
  10511. {
  10512. "name": "Symfony Community",
  10513. "homepage": "https://symfony.com/contributors"
  10514. }
  10515. ],
  10516. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10517. "homepage": "https://symfony.com",
  10518. "support": {
  10519. "source": "https://github.com/symfony/debug-bundle/tree/v7.4.8"
  10520. },
  10521. "funding": [
  10522. {
  10523. "url": "https://symfony.com/sponsor",
  10524. "type": "custom"
  10525. },
  10526. {
  10527. "url": "https://github.com/fabpot",
  10528. "type": "github"
  10529. },
  10530. {
  10531. "url": "https://github.com/nicolas-grekas",
  10532. "type": "github"
  10533. },
  10534. {
  10535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10536. "type": "tidelift"
  10537. }
  10538. ],
  10539. "time": "2026-03-24T13:12:05+00:00"
  10540. },
  10541. {
  10542. "name": "symfony/dom-crawler",
  10543. "version": "v7.4.8",
  10544. "source": {
  10545. "type": "git",
  10546. "url": "https://github.com/symfony/dom-crawler.git",
  10547. "reference": "2918e7c2ba964defca1f5b69c6f74886529e2dc8"
  10548. },
  10549. "dist": {
  10550. "type": "zip",
  10551. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2918e7c2ba964defca1f5b69c6f74886529e2dc8",
  10552. "reference": "2918e7c2ba964defca1f5b69c6f74886529e2dc8",
  10553. "shasum": ""
  10554. },
  10555. "require": {
  10556. "masterminds/html5": "^2.6",
  10557. "php": ">=8.2",
  10558. "symfony/deprecation-contracts": "^2.5|^3",
  10559. "symfony/polyfill-ctype": "~1.8",
  10560. "symfony/polyfill-mbstring": "~1.0"
  10561. },
  10562. "require-dev": {
  10563. "symfony/css-selector": "^6.4|^7.0|^8.0"
  10564. },
  10565. "type": "library",
  10566. "autoload": {
  10567. "psr-4": {
  10568. "Symfony\\Component\\DomCrawler\\": ""
  10569. },
  10570. "exclude-from-classmap": [
  10571. "/Tests/"
  10572. ]
  10573. },
  10574. "notification-url": "https://packagist.org/downloads/",
  10575. "license": [
  10576. "MIT"
  10577. ],
  10578. "authors": [
  10579. {
  10580. "name": "Fabien Potencier",
  10581. "email": "fabien@symfony.com"
  10582. },
  10583. {
  10584. "name": "Symfony Community",
  10585. "homepage": "https://symfony.com/contributors"
  10586. }
  10587. ],
  10588. "description": "Eases DOM navigation for HTML and XML documents",
  10589. "homepage": "https://symfony.com",
  10590. "support": {
  10591. "source": "https://github.com/symfony/dom-crawler/tree/v7.4.8"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://symfony.com/sponsor",
  10596. "type": "custom"
  10597. },
  10598. {
  10599. "url": "https://github.com/fabpot",
  10600. "type": "github"
  10601. },
  10602. {
  10603. "url": "https://github.com/nicolas-grekas",
  10604. "type": "github"
  10605. },
  10606. {
  10607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10608. "type": "tidelift"
  10609. }
  10610. ],
  10611. "time": "2026-03-24T13:12:05+00:00"
  10612. },
  10613. {
  10614. "name": "symfony/maker-bundle",
  10615. "version": "v1.67.0",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/symfony/maker-bundle.git",
  10619. "reference": "6ce8b313845f16bcf385ee3cb31d8b24e30d5516"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/6ce8b313845f16bcf385ee3cb31d8b24e30d5516",
  10624. "reference": "6ce8b313845f16bcf385ee3cb31d8b24e30d5516",
  10625. "shasum": ""
  10626. },
  10627. "require": {
  10628. "composer-runtime-api": "^2.1",
  10629. "doctrine/inflector": "^2.0",
  10630. "nikic/php-parser": "^5.0",
  10631. "php": ">=8.1",
  10632. "symfony/config": "^6.4|^7.0|^8.0",
  10633. "symfony/console": "^6.4|^7.0|^8.0",
  10634. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  10635. "symfony/deprecation-contracts": "^2.2|^3",
  10636. "symfony/filesystem": "^6.4|^7.0|^8.0",
  10637. "symfony/finder": "^6.4|^7.0|^8.0",
  10638. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  10639. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  10640. "symfony/process": "^6.4|^7.0|^8.0"
  10641. },
  10642. "conflict": {
  10643. "doctrine/doctrine-bundle": "<2.10",
  10644. "doctrine/orm": "<2.15"
  10645. },
  10646. "require-dev": {
  10647. "composer/semver": "^3.0",
  10648. "doctrine/doctrine-bundle": "^2.10|^3.0",
  10649. "doctrine/orm": "^2.15|^3",
  10650. "doctrine/persistence": "^3.1|^4.0",
  10651. "symfony/http-client": "^6.4|^7.0|^8.0",
  10652. "symfony/phpunit-bridge": "^6.4.1|^7.0|^8.0",
  10653. "symfony/security-core": "^6.4|^7.0|^8.0",
  10654. "symfony/security-http": "^6.4|^7.0|^8.0",
  10655. "symfony/yaml": "^6.4|^7.0|^8.0",
  10656. "twig/twig": "^3.0|^4.x-dev"
  10657. },
  10658. "type": "symfony-bundle",
  10659. "extra": {
  10660. "branch-alias": {
  10661. "dev-main": "1.x-dev"
  10662. }
  10663. },
  10664. "autoload": {
  10665. "psr-4": {
  10666. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10667. }
  10668. },
  10669. "notification-url": "https://packagist.org/downloads/",
  10670. "license": [
  10671. "MIT"
  10672. ],
  10673. "authors": [
  10674. {
  10675. "name": "Symfony Community",
  10676. "homepage": "https://symfony.com/contributors"
  10677. }
  10678. ],
  10679. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10680. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10681. "keywords": [
  10682. "code generator",
  10683. "dev",
  10684. "generator",
  10685. "scaffold",
  10686. "scaffolding"
  10687. ],
  10688. "support": {
  10689. "issues": "https://github.com/symfony/maker-bundle/issues",
  10690. "source": "https://github.com/symfony/maker-bundle/tree/v1.67.0"
  10691. },
  10692. "funding": [
  10693. {
  10694. "url": "https://symfony.com/sponsor",
  10695. "type": "custom"
  10696. },
  10697. {
  10698. "url": "https://github.com/fabpot",
  10699. "type": "github"
  10700. },
  10701. {
  10702. "url": "https://github.com/nicolas-grekas",
  10703. "type": "github"
  10704. },
  10705. {
  10706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10707. "type": "tidelift"
  10708. }
  10709. ],
  10710. "time": "2026-03-18T13:39:06+00:00"
  10711. },
  10712. {
  10713. "name": "symfony/phpunit-bridge",
  10714. "version": "v7.4.8",
  10715. "source": {
  10716. "type": "git",
  10717. "url": "https://github.com/symfony/phpunit-bridge.git",
  10718. "reference": "140bbbe1cd1c21a084494ccddeee33f3c3381d7d"
  10719. },
  10720. "dist": {
  10721. "type": "zip",
  10722. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/140bbbe1cd1c21a084494ccddeee33f3c3381d7d",
  10723. "reference": "140bbbe1cd1c21a084494ccddeee33f3c3381d7d",
  10724. "shasum": ""
  10725. },
  10726. "require": {
  10727. "php": ">=8.1.0"
  10728. },
  10729. "require-dev": {
  10730. "symfony/deprecation-contracts": "^2.5|^3",
  10731. "symfony/error-handler": "^6.4.3|^7.0.3|^8.0"
  10732. },
  10733. "bin": [
  10734. "bin/simple-phpunit"
  10735. ],
  10736. "type": "symfony-bridge",
  10737. "extra": {
  10738. "thanks": {
  10739. "url": "https://github.com/sebastianbergmann/phpunit",
  10740. "name": "phpunit/phpunit"
  10741. }
  10742. },
  10743. "autoload": {
  10744. "files": [
  10745. "bootstrap.php"
  10746. ],
  10747. "psr-4": {
  10748. "Symfony\\Bridge\\PhpUnit\\": ""
  10749. },
  10750. "exclude-from-classmap": [
  10751. "/Tests/",
  10752. "/bin/"
  10753. ]
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "MIT"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Nicolas Grekas",
  10762. "email": "p@tchwork.com"
  10763. },
  10764. {
  10765. "name": "Symfony Community",
  10766. "homepage": "https://symfony.com/contributors"
  10767. }
  10768. ],
  10769. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10770. "homepage": "https://symfony.com",
  10771. "keywords": [
  10772. "testing"
  10773. ],
  10774. "support": {
  10775. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.4.8"
  10776. },
  10777. "funding": [
  10778. {
  10779. "url": "https://symfony.com/sponsor",
  10780. "type": "custom"
  10781. },
  10782. {
  10783. "url": "https://github.com/fabpot",
  10784. "type": "github"
  10785. },
  10786. {
  10787. "url": "https://github.com/nicolas-grekas",
  10788. "type": "github"
  10789. },
  10790. {
  10791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10792. "type": "tidelift"
  10793. }
  10794. ],
  10795. "time": "2026-03-24T13:12:05+00:00"
  10796. },
  10797. {
  10798. "name": "symfony/web-profiler-bundle",
  10799. "version": "v7.4.9",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10803. "reference": "36dd8b8c05da059925c5804641aad9159e5b73e8"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/36dd8b8c05da059925c5804641aad9159e5b73e8",
  10808. "reference": "36dd8b8c05da059925c5804641aad9159e5b73e8",
  10809. "shasum": ""
  10810. },
  10811. "require": {
  10812. "composer-runtime-api": ">=2.1",
  10813. "php": ">=8.2",
  10814. "symfony/config": "^7.3|^8.0",
  10815. "symfony/deprecation-contracts": "^2.5|^3",
  10816. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  10817. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  10818. "symfony/routing": "^6.4|^7.0|^8.0",
  10819. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  10820. "twig/twig": "^3.15"
  10821. },
  10822. "conflict": {
  10823. "symfony/form": "<6.4",
  10824. "symfony/mailer": "<6.4",
  10825. "symfony/messenger": "<6.4",
  10826. "symfony/serializer": "<7.2",
  10827. "symfony/workflow": "<7.3"
  10828. },
  10829. "require-dev": {
  10830. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  10831. "symfony/console": "^6.4|^7.0|^8.0",
  10832. "symfony/css-selector": "^6.4|^7.0|^8.0",
  10833. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  10834. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  10835. },
  10836. "type": "symfony-bundle",
  10837. "autoload": {
  10838. "psr-4": {
  10839. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10840. },
  10841. "exclude-from-classmap": [
  10842. "/Tests/"
  10843. ]
  10844. },
  10845. "notification-url": "https://packagist.org/downloads/",
  10846. "license": [
  10847. "MIT"
  10848. ],
  10849. "authors": [
  10850. {
  10851. "name": "Fabien Potencier",
  10852. "email": "fabien@symfony.com"
  10853. },
  10854. {
  10855. "name": "Symfony Community",
  10856. "homepage": "https://symfony.com/contributors"
  10857. }
  10858. ],
  10859. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10860. "homepage": "https://symfony.com",
  10861. "keywords": [
  10862. "dev"
  10863. ],
  10864. "support": {
  10865. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.4.9"
  10866. },
  10867. "funding": [
  10868. {
  10869. "url": "https://symfony.com/sponsor",
  10870. "type": "custom"
  10871. },
  10872. {
  10873. "url": "https://github.com/fabpot",
  10874. "type": "github"
  10875. },
  10876. {
  10877. "url": "https://github.com/nicolas-grekas",
  10878. "type": "github"
  10879. },
  10880. {
  10881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10882. "type": "tidelift"
  10883. }
  10884. ],
  10885. "time": "2026-04-22T15:21:55+00:00"
  10886. },
  10887. {
  10888. "name": "theseer/tokenizer",
  10889. "version": "1.3.1",
  10890. "source": {
  10891. "type": "git",
  10892. "url": "https://github.com/theseer/tokenizer.git",
  10893. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10894. },
  10895. "dist": {
  10896. "type": "zip",
  10897. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10898. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10899. "shasum": ""
  10900. },
  10901. "require": {
  10902. "ext-dom": "*",
  10903. "ext-tokenizer": "*",
  10904. "ext-xmlwriter": "*",
  10905. "php": "^7.2 || ^8.0"
  10906. },
  10907. "type": "library",
  10908. "autoload": {
  10909. "classmap": [
  10910. "src/"
  10911. ]
  10912. },
  10913. "notification-url": "https://packagist.org/downloads/",
  10914. "license": [
  10915. "BSD-3-Clause"
  10916. ],
  10917. "authors": [
  10918. {
  10919. "name": "Arne Blankerts",
  10920. "email": "arne@blankerts.de",
  10921. "role": "Developer"
  10922. }
  10923. ],
  10924. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10925. "support": {
  10926. "issues": "https://github.com/theseer/tokenizer/issues",
  10927. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10928. },
  10929. "funding": [
  10930. {
  10931. "url": "https://github.com/theseer",
  10932. "type": "github"
  10933. }
  10934. ],
  10935. "time": "2025-11-17T20:03:58+00:00"
  10936. }
  10937. ],
  10938. "aliases": [],
  10939. "minimum-stability": "stable",
  10940. "stability-flags": {},
  10941. "prefer-stable": false,
  10942. "prefer-lowest": false,
  10943. "platform": {
  10944. "php": "^8.2",
  10945. "ext-ctype": "*",
  10946. "ext-iconv": "*"
  10947. },
  10948. "platform-dev": {},
  10949. "platform-overrides": {
  10950. "php": "8.2"
  10951. },
  10952. "plugin-api-version": "2.9.0"
  10953. }