composer.lock 396 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931
  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.1",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/dbal.git",
  311. "reference": "3d544473fb93f5c25b483ea4f4ce99f8c4d9d44c"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/dbal/zipball/3d544473fb93f5c25b483ea4f4ce99f8c4d9d44c",
  316. "reference": "3d544473fb93f5c25b483ea4f4ce99f8c4d9d44c",
  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.23",
  333. "slevomat/coding-standard": "8.24.0",
  334. "squizlabs/php_codesniffer": "4.0.0",
  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.1"
  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": "2025-12-04T10:11:03+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.6",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/doctrine/migrations.git",
  999. "reference": "ffd8355cdd8505fc650d9604f058bf62aedd80a1"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/doctrine/migrations/zipball/ffd8355cdd8505fc650d9604f058bf62aedd80a1",
  1004. "reference": "ffd8355cdd8505fc650d9604f058bf62aedd80a1",
  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.6"
  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-02-11T06:46:11+00:00"
  1095. },
  1096. {
  1097. "name": "doctrine/orm",
  1098. "version": "3.6.2",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/doctrine/orm.git",
  1102. "reference": "4262eb495b4d2a53b45de1ac58881e0091f2970f"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/doctrine/orm/zipball/4262eb495b4d2a53b45de1ac58881e0091f2970f",
  1107. "reference": "4262eb495b4d2a53b45de1ac58881e0091f2970f",
  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.2"
  1181. },
  1182. "time": "2026-01-30T21:41:41+00:00"
  1183. },
  1184. {
  1185. "name": "doctrine/persistence",
  1186. "version": "4.1.1",
  1187. "source": {
  1188. "type": "git",
  1189. "url": "https://github.com/doctrine/persistence.git",
  1190. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1191. },
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1195. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1196. "shasum": ""
  1197. },
  1198. "require": {
  1199. "doctrine/event-manager": "^1 || ^2",
  1200. "php": "^8.1",
  1201. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1202. },
  1203. "require-dev": {
  1204. "doctrine/coding-standard": "^14",
  1205. "phpstan/phpstan": "2.1.30",
  1206. "phpstan/phpstan-phpunit": "^2",
  1207. "phpstan/phpstan-strict-rules": "^2",
  1208. "phpunit/phpunit": "^10.5.58 || ^12",
  1209. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1210. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1211. },
  1212. "type": "library",
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Doctrine\\Persistence\\": "src/Persistence"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Guilherme Blanco",
  1225. "email": "guilhermeblanco@gmail.com"
  1226. },
  1227. {
  1228. "name": "Roman Borschel",
  1229. "email": "roman@code-factory.org"
  1230. },
  1231. {
  1232. "name": "Benjamin Eberlei",
  1233. "email": "kontakt@beberlei.de"
  1234. },
  1235. {
  1236. "name": "Jonathan Wage",
  1237. "email": "jonwage@gmail.com"
  1238. },
  1239. {
  1240. "name": "Johannes Schmitt",
  1241. "email": "schmittjoh@gmail.com"
  1242. },
  1243. {
  1244. "name": "Marco Pivetta",
  1245. "email": "ocramius@gmail.com"
  1246. }
  1247. ],
  1248. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1249. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1250. "keywords": [
  1251. "mapper",
  1252. "object",
  1253. "odm",
  1254. "orm",
  1255. "persistence"
  1256. ],
  1257. "support": {
  1258. "issues": "https://github.com/doctrine/persistence/issues",
  1259. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1260. },
  1261. "funding": [
  1262. {
  1263. "url": "https://www.doctrine-project.org/sponsorship.html",
  1264. "type": "custom"
  1265. },
  1266. {
  1267. "url": "https://www.patreon.com/phpdoctrine",
  1268. "type": "patreon"
  1269. },
  1270. {
  1271. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1272. "type": "tidelift"
  1273. }
  1274. ],
  1275. "time": "2025-10-16T20:13:18+00:00"
  1276. },
  1277. {
  1278. "name": "doctrine/sql-formatter",
  1279. "version": "1.5.4",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/doctrine/sql-formatter.git",
  1283. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/9563949f5cd3bd12a17d12fb980528bc141c5806",
  1288. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "php": "^8.1"
  1293. },
  1294. "require-dev": {
  1295. "doctrine/coding-standard": "^14",
  1296. "ergebnis/phpunit-slow-test-detector": "^2.20",
  1297. "phpstan/phpstan": "^2.1.31",
  1298. "phpunit/phpunit": "^10.5.58"
  1299. },
  1300. "bin": [
  1301. "bin/sql-formatter"
  1302. ],
  1303. "type": "library",
  1304. "autoload": {
  1305. "psr-4": {
  1306. "Doctrine\\SqlFormatter\\": "src"
  1307. }
  1308. },
  1309. "notification-url": "https://packagist.org/downloads/",
  1310. "license": [
  1311. "MIT"
  1312. ],
  1313. "authors": [
  1314. {
  1315. "name": "Jeremy Dorn",
  1316. "email": "jeremy@jeremydorn.com",
  1317. "homepage": "https://jeremydorn.com/"
  1318. }
  1319. ],
  1320. "description": "a PHP SQL highlighting library",
  1321. "homepage": "https://github.com/doctrine/sql-formatter/",
  1322. "keywords": [
  1323. "highlight",
  1324. "sql"
  1325. ],
  1326. "support": {
  1327. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1328. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.4"
  1329. },
  1330. "time": "2026-02-08T16:21:46+00:00"
  1331. },
  1332. {
  1333. "name": "egulias/email-validator",
  1334. "version": "4.0.4",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/egulias/EmailValidator.git",
  1338. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1343. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "doctrine/lexer": "^2.0 || ^3.0",
  1348. "php": ">=8.1",
  1349. "symfony/polyfill-intl-idn": "^1.26"
  1350. },
  1351. "require-dev": {
  1352. "phpunit/phpunit": "^10.2",
  1353. "vimeo/psalm": "^5.12"
  1354. },
  1355. "suggest": {
  1356. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "4.0.x-dev"
  1362. }
  1363. },
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Egulias\\EmailValidator\\": "src"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Eduardo Gulias Davis"
  1376. }
  1377. ],
  1378. "description": "A library for validating emails against several RFCs",
  1379. "homepage": "https://github.com/egulias/EmailValidator",
  1380. "keywords": [
  1381. "email",
  1382. "emailvalidation",
  1383. "emailvalidator",
  1384. "validation",
  1385. "validator"
  1386. ],
  1387. "support": {
  1388. "issues": "https://github.com/egulias/EmailValidator/issues",
  1389. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1390. },
  1391. "funding": [
  1392. {
  1393. "url": "https://github.com/egulias",
  1394. "type": "github"
  1395. }
  1396. ],
  1397. "time": "2025-03-06T22:45:56+00:00"
  1398. },
  1399. {
  1400. "name": "league/commonmark",
  1401. "version": "2.8.0",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/thephpleague/commonmark.git",
  1405. "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/4efa10c1e56488e658d10adf7b7b7dcd19940bfb",
  1410. "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "ext-mbstring": "*",
  1415. "league/config": "^1.1.1",
  1416. "php": "^7.4 || ^8.0",
  1417. "psr/event-dispatcher": "^1.0",
  1418. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1419. "symfony/polyfill-php80": "^1.16"
  1420. },
  1421. "require-dev": {
  1422. "cebe/markdown": "^1.0",
  1423. "commonmark/cmark": "0.31.1",
  1424. "commonmark/commonmark.js": "0.31.1",
  1425. "composer/package-versions-deprecated": "^1.8",
  1426. "embed/embed": "^4.4",
  1427. "erusev/parsedown": "^1.0",
  1428. "ext-json": "*",
  1429. "github/gfm": "0.29.0",
  1430. "michelf/php-markdown": "^1.4 || ^2.0",
  1431. "nyholm/psr7": "^1.5",
  1432. "phpstan/phpstan": "^1.8.2",
  1433. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1434. "scrutinizer/ocular": "^1.8.1",
  1435. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  1436. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  1437. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  1438. "unleashedtech/php-coding-standard": "^3.1.1",
  1439. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  1440. },
  1441. "suggest": {
  1442. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1443. },
  1444. "type": "library",
  1445. "extra": {
  1446. "branch-alias": {
  1447. "dev-main": "2.9-dev"
  1448. }
  1449. },
  1450. "autoload": {
  1451. "psr-4": {
  1452. "League\\CommonMark\\": "src"
  1453. }
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "BSD-3-Clause"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Colin O'Dell",
  1462. "email": "colinodell@gmail.com",
  1463. "homepage": "https://www.colinodell.com",
  1464. "role": "Lead Developer"
  1465. }
  1466. ],
  1467. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1468. "homepage": "https://commonmark.thephpleague.com",
  1469. "keywords": [
  1470. "commonmark",
  1471. "flavored",
  1472. "gfm",
  1473. "github",
  1474. "github-flavored",
  1475. "markdown",
  1476. "md",
  1477. "parser"
  1478. ],
  1479. "support": {
  1480. "docs": "https://commonmark.thephpleague.com/",
  1481. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1482. "issues": "https://github.com/thephpleague/commonmark/issues",
  1483. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1484. "source": "https://github.com/thephpleague/commonmark"
  1485. },
  1486. "funding": [
  1487. {
  1488. "url": "https://www.colinodell.com/sponsor",
  1489. "type": "custom"
  1490. },
  1491. {
  1492. "url": "https://www.paypal.me/colinpodell/10.00",
  1493. "type": "custom"
  1494. },
  1495. {
  1496. "url": "https://github.com/colinodell",
  1497. "type": "github"
  1498. },
  1499. {
  1500. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1501. "type": "tidelift"
  1502. }
  1503. ],
  1504. "time": "2025-11-26T21:48:24+00:00"
  1505. },
  1506. {
  1507. "name": "league/config",
  1508. "version": "v1.2.0",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/thephpleague/config.git",
  1512. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1517. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "dflydev/dot-access-data": "^3.0.1",
  1522. "nette/schema": "^1.2",
  1523. "php": "^7.4 || ^8.0"
  1524. },
  1525. "require-dev": {
  1526. "phpstan/phpstan": "^1.8.2",
  1527. "phpunit/phpunit": "^9.5.5",
  1528. "scrutinizer/ocular": "^1.8.1",
  1529. "unleashedtech/php-coding-standard": "^3.1",
  1530. "vimeo/psalm": "^4.7.3"
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-main": "1.2-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "League\\Config\\": "src"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "BSD-3-Clause"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Colin O'Dell",
  1550. "email": "colinodell@gmail.com",
  1551. "homepage": "https://www.colinodell.com",
  1552. "role": "Lead Developer"
  1553. }
  1554. ],
  1555. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1556. "homepage": "https://config.thephpleague.com",
  1557. "keywords": [
  1558. "array",
  1559. "config",
  1560. "configuration",
  1561. "dot",
  1562. "dot-access",
  1563. "nested",
  1564. "schema"
  1565. ],
  1566. "support": {
  1567. "docs": "https://config.thephpleague.com/",
  1568. "issues": "https://github.com/thephpleague/config/issues",
  1569. "rss": "https://github.com/thephpleague/config/releases.atom",
  1570. "source": "https://github.com/thephpleague/config"
  1571. },
  1572. "funding": [
  1573. {
  1574. "url": "https://www.colinodell.com/sponsor",
  1575. "type": "custom"
  1576. },
  1577. {
  1578. "url": "https://www.paypal.me/colinpodell/10.00",
  1579. "type": "custom"
  1580. },
  1581. {
  1582. "url": "https://github.com/colinodell",
  1583. "type": "github"
  1584. }
  1585. ],
  1586. "time": "2022-12-11T20:36:23+00:00"
  1587. },
  1588. {
  1589. "name": "league/uri",
  1590. "version": "7.8.0",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/thephpleague/uri.git",
  1594. "reference": "4436c6ec8d458e4244448b069cc572d088230b76"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76",
  1599. "reference": "4436c6ec8d458e4244448b069cc572d088230b76",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "league/uri-interfaces": "^7.8",
  1604. "php": "^8.1",
  1605. "psr/http-factory": "^1"
  1606. },
  1607. "conflict": {
  1608. "league/uri-schemes": "^1.0"
  1609. },
  1610. "suggest": {
  1611. "ext-bcmath": "to improve IPV4 host parsing",
  1612. "ext-dom": "to convert the URI into an HTML anchor tag",
  1613. "ext-fileinfo": "to create Data URI from file contennts",
  1614. "ext-gmp": "to improve IPV4 host parsing",
  1615. "ext-intl": "to handle IDN host with the best performance",
  1616. "ext-uri": "to use the PHP native URI class",
  1617. "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
  1618. "league/uri-components": "to provide additional tools to manipulate URI objects components",
  1619. "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
  1620. "php-64bit": "to improve IPV4 host parsing",
  1621. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  1622. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "7.x-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "League\\Uri\\": ""
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Ignace Nyamagana Butera",
  1642. "email": "nyamsprod@gmail.com",
  1643. "homepage": "https://nyamsprod.com"
  1644. }
  1645. ],
  1646. "description": "URI manipulation library",
  1647. "homepage": "https://uri.thephpleague.com",
  1648. "keywords": [
  1649. "URN",
  1650. "data-uri",
  1651. "file-uri",
  1652. "ftp",
  1653. "hostname",
  1654. "http",
  1655. "https",
  1656. "middleware",
  1657. "parse_str",
  1658. "parse_url",
  1659. "psr-7",
  1660. "query-string",
  1661. "querystring",
  1662. "rfc2141",
  1663. "rfc3986",
  1664. "rfc3987",
  1665. "rfc6570",
  1666. "rfc8141",
  1667. "uri",
  1668. "uri-template",
  1669. "url",
  1670. "ws"
  1671. ],
  1672. "support": {
  1673. "docs": "https://uri.thephpleague.com",
  1674. "forum": "https://thephpleague.slack.com",
  1675. "issues": "https://github.com/thephpleague/uri-src/issues",
  1676. "source": "https://github.com/thephpleague/uri/tree/7.8.0"
  1677. },
  1678. "funding": [
  1679. {
  1680. "url": "https://github.com/sponsors/nyamsprod",
  1681. "type": "github"
  1682. }
  1683. ],
  1684. "time": "2026-01-14T17:24:56+00:00"
  1685. },
  1686. {
  1687. "name": "league/uri-interfaces",
  1688. "version": "7.8.0",
  1689. "source": {
  1690. "type": "git",
  1691. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1692. "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4"
  1693. },
  1694. "dist": {
  1695. "type": "zip",
  1696. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4",
  1697. "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4",
  1698. "shasum": ""
  1699. },
  1700. "require": {
  1701. "ext-filter": "*",
  1702. "php": "^8.1",
  1703. "psr/http-message": "^1.1 || ^2.0"
  1704. },
  1705. "suggest": {
  1706. "ext-bcmath": "to improve IPV4 host parsing",
  1707. "ext-gmp": "to improve IPV4 host parsing",
  1708. "ext-intl": "to handle IDN host with the best performance",
  1709. "php-64bit": "to improve IPV4 host parsing",
  1710. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  1711. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "7.x-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "League\\Uri\\": ""
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "Ignace Nyamagana Butera",
  1731. "email": "nyamsprod@gmail.com",
  1732. "homepage": "https://nyamsprod.com"
  1733. }
  1734. ],
  1735. "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI",
  1736. "homepage": "https://uri.thephpleague.com",
  1737. "keywords": [
  1738. "data-uri",
  1739. "file-uri",
  1740. "ftp",
  1741. "hostname",
  1742. "http",
  1743. "https",
  1744. "parse_str",
  1745. "parse_url",
  1746. "psr-7",
  1747. "query-string",
  1748. "querystring",
  1749. "rfc3986",
  1750. "rfc3987",
  1751. "rfc6570",
  1752. "uri",
  1753. "url",
  1754. "ws"
  1755. ],
  1756. "support": {
  1757. "docs": "https://uri.thephpleague.com",
  1758. "forum": "https://thephpleague.slack.com",
  1759. "issues": "https://github.com/thephpleague/uri-src/issues",
  1760. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.0"
  1761. },
  1762. "funding": [
  1763. {
  1764. "url": "https://github.com/sponsors/nyamsprod",
  1765. "type": "github"
  1766. }
  1767. ],
  1768. "time": "2026-01-15T06:54:53+00:00"
  1769. },
  1770. {
  1771. "name": "masterminds/html5",
  1772. "version": "2.10.0",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/Masterminds/html5-php.git",
  1776. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  1781. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  1782. "shasum": ""
  1783. },
  1784. "require": {
  1785. "ext-dom": "*",
  1786. "php": ">=5.3.0"
  1787. },
  1788. "require-dev": {
  1789. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1790. },
  1791. "type": "library",
  1792. "extra": {
  1793. "branch-alias": {
  1794. "dev-master": "2.7-dev"
  1795. }
  1796. },
  1797. "autoload": {
  1798. "psr-4": {
  1799. "Masterminds\\": "src"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Matt Butcher",
  1809. "email": "technosophos@gmail.com"
  1810. },
  1811. {
  1812. "name": "Matt Farina",
  1813. "email": "matt@mattfarina.com"
  1814. },
  1815. {
  1816. "name": "Asmir Mustafic",
  1817. "email": "goetas@gmail.com"
  1818. }
  1819. ],
  1820. "description": "An HTML5 parser and serializer.",
  1821. "homepage": "http://masterminds.github.io/html5-php",
  1822. "keywords": [
  1823. "HTML5",
  1824. "dom",
  1825. "html",
  1826. "parser",
  1827. "querypath",
  1828. "serializer",
  1829. "xml"
  1830. ],
  1831. "support": {
  1832. "issues": "https://github.com/Masterminds/html5-php/issues",
  1833. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  1834. },
  1835. "time": "2025-07-25T09:04:22+00:00"
  1836. },
  1837. {
  1838. "name": "monolog/monolog",
  1839. "version": "3.10.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/Seldaek/monolog.git",
  1843. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1848. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": ">=8.1",
  1853. "psr/log": "^2.0 || ^3.0"
  1854. },
  1855. "provide": {
  1856. "psr/log-implementation": "3.0.0"
  1857. },
  1858. "require-dev": {
  1859. "aws/aws-sdk-php": "^3.0",
  1860. "doctrine/couchdb": "~1.0@dev",
  1861. "elasticsearch/elasticsearch": "^7 || ^8",
  1862. "ext-json": "*",
  1863. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1864. "guzzlehttp/guzzle": "^7.4.5",
  1865. "guzzlehttp/psr7": "^2.2",
  1866. "mongodb/mongodb": "^1.8 || ^2.0",
  1867. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1868. "php-console/php-console": "^3.1.8",
  1869. "phpstan/phpstan": "^2",
  1870. "phpstan/phpstan-deprecation-rules": "^2",
  1871. "phpstan/phpstan-strict-rules": "^2",
  1872. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1873. "predis/predis": "^1.1 || ^2",
  1874. "rollbar/rollbar": "^4.0",
  1875. "ruflin/elastica": "^7 || ^8",
  1876. "symfony/mailer": "^5.4 || ^6",
  1877. "symfony/mime": "^5.4 || ^6"
  1878. },
  1879. "suggest": {
  1880. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1881. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1882. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1883. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1884. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1885. "ext-mbstring": "Allow to work properly with unicode symbols",
  1886. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1887. "ext-openssl": "Required to send log messages using SSL",
  1888. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1889. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1890. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1891. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1892. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1893. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-main": "3.x-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "Monolog\\": "src/Monolog"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Jordi Boggiano",
  1913. "email": "j.boggiano@seld.be",
  1914. "homepage": "https://seld.be"
  1915. }
  1916. ],
  1917. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1918. "homepage": "https://github.com/Seldaek/monolog",
  1919. "keywords": [
  1920. "log",
  1921. "logging",
  1922. "psr-3"
  1923. ],
  1924. "support": {
  1925. "issues": "https://github.com/Seldaek/monolog/issues",
  1926. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  1927. },
  1928. "funding": [
  1929. {
  1930. "url": "https://github.com/Seldaek",
  1931. "type": "github"
  1932. },
  1933. {
  1934. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1935. "type": "tidelift"
  1936. }
  1937. ],
  1938. "time": "2026-01-02T08:56:05+00:00"
  1939. },
  1940. {
  1941. "name": "nette/schema",
  1942. "version": "v1.3.4",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/nette/schema.git",
  1946. "reference": "086497a2f34b82fede9b5a41cc8e131d087cd8f7"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/nette/schema/zipball/086497a2f34b82fede9b5a41cc8e131d087cd8f7",
  1951. "reference": "086497a2f34b82fede9b5a41cc8e131d087cd8f7",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "nette/utils": "^4.0",
  1956. "php": "8.1 - 8.5"
  1957. },
  1958. "require-dev": {
  1959. "nette/tester": "^2.6",
  1960. "phpstan/phpstan": "^2.0@stable",
  1961. "tracy/tracy": "^2.8"
  1962. },
  1963. "type": "library",
  1964. "extra": {
  1965. "branch-alias": {
  1966. "dev-master": "1.3-dev"
  1967. }
  1968. },
  1969. "autoload": {
  1970. "psr-4": {
  1971. "Nette\\": "src"
  1972. },
  1973. "classmap": [
  1974. "src/"
  1975. ]
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "BSD-3-Clause",
  1980. "GPL-2.0-only",
  1981. "GPL-3.0-only"
  1982. ],
  1983. "authors": [
  1984. {
  1985. "name": "David Grudl",
  1986. "homepage": "https://davidgrudl.com"
  1987. },
  1988. {
  1989. "name": "Nette Community",
  1990. "homepage": "https://nette.org/contributors"
  1991. }
  1992. ],
  1993. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1994. "homepage": "https://nette.org",
  1995. "keywords": [
  1996. "config",
  1997. "nette"
  1998. ],
  1999. "support": {
  2000. "issues": "https://github.com/nette/schema/issues",
  2001. "source": "https://github.com/nette/schema/tree/v1.3.4"
  2002. },
  2003. "time": "2026-02-08T02:54:00+00:00"
  2004. },
  2005. {
  2006. "name": "nette/utils",
  2007. "version": "v4.1.3",
  2008. "source": {
  2009. "type": "git",
  2010. "url": "https://github.com/nette/utils.git",
  2011. "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe"
  2012. },
  2013. "dist": {
  2014. "type": "zip",
  2015. "url": "https://api.github.com/repos/nette/utils/zipball/bb3ea637e3d131d72acc033cfc2746ee893349fe",
  2016. "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe",
  2017. "shasum": ""
  2018. },
  2019. "require": {
  2020. "php": "8.2 - 8.5"
  2021. },
  2022. "conflict": {
  2023. "nette/finder": "<3",
  2024. "nette/schema": "<1.2.2"
  2025. },
  2026. "require-dev": {
  2027. "jetbrains/phpstorm-attributes": "^1.2",
  2028. "nette/phpstan-rules": "^1.0",
  2029. "nette/tester": "^2.5",
  2030. "phpstan/extension-installer": "^1.4@stable",
  2031. "phpstan/phpstan": "^2.1@stable",
  2032. "tracy/tracy": "^2.9"
  2033. },
  2034. "suggest": {
  2035. "ext-gd": "to use Image",
  2036. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2037. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2038. "ext-json": "to use Nette\\Utils\\Json",
  2039. "ext-mbstring": "to use Strings::lower() etc...",
  2040. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2041. },
  2042. "type": "library",
  2043. "extra": {
  2044. "branch-alias": {
  2045. "dev-master": "4.1-dev"
  2046. }
  2047. },
  2048. "autoload": {
  2049. "psr-4": {
  2050. "Nette\\": "src"
  2051. },
  2052. "classmap": [
  2053. "src/"
  2054. ]
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "BSD-3-Clause",
  2059. "GPL-2.0-only",
  2060. "GPL-3.0-only"
  2061. ],
  2062. "authors": [
  2063. {
  2064. "name": "David Grudl",
  2065. "homepage": "https://davidgrudl.com"
  2066. },
  2067. {
  2068. "name": "Nette Community",
  2069. "homepage": "https://nette.org/contributors"
  2070. }
  2071. ],
  2072. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2073. "homepage": "https://nette.org",
  2074. "keywords": [
  2075. "array",
  2076. "core",
  2077. "datetime",
  2078. "images",
  2079. "json",
  2080. "nette",
  2081. "paginator",
  2082. "password",
  2083. "slugify",
  2084. "string",
  2085. "unicode",
  2086. "utf-8",
  2087. "utility",
  2088. "validation"
  2089. ],
  2090. "support": {
  2091. "issues": "https://github.com/nette/utils/issues",
  2092. "source": "https://github.com/nette/utils/tree/v4.1.3"
  2093. },
  2094. "time": "2026-02-13T03:05:33+00:00"
  2095. },
  2096. {
  2097. "name": "phpdocumentor/reflection-common",
  2098. "version": "2.2.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2102. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2107. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "php": "^7.2 || ^8.0"
  2112. },
  2113. "type": "library",
  2114. "extra": {
  2115. "branch-alias": {
  2116. "dev-2.x": "2.x-dev"
  2117. }
  2118. },
  2119. "autoload": {
  2120. "psr-4": {
  2121. "phpDocumentor\\Reflection\\": "src/"
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "authors": [
  2129. {
  2130. "name": "Jaap van Otterdijk",
  2131. "email": "opensource@ijaap.nl"
  2132. }
  2133. ],
  2134. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2135. "homepage": "http://www.phpdoc.org",
  2136. "keywords": [
  2137. "FQSEN",
  2138. "phpDocumentor",
  2139. "phpdoc",
  2140. "reflection",
  2141. "static analysis"
  2142. ],
  2143. "support": {
  2144. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2145. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2146. },
  2147. "time": "2020-06-27T09:03:43+00:00"
  2148. },
  2149. {
  2150. "name": "phpdocumentor/reflection-docblock",
  2151. "version": "5.6.6",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2155. "reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8",
  2160. "reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8",
  2161. "shasum": ""
  2162. },
  2163. "require": {
  2164. "doctrine/deprecations": "^1.1",
  2165. "ext-filter": "*",
  2166. "php": "^7.4 || ^8.0",
  2167. "phpdocumentor/reflection-common": "^2.2",
  2168. "phpdocumentor/type-resolver": "^1.7",
  2169. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2170. "webmozart/assert": "^1.9.1 || ^2"
  2171. },
  2172. "require-dev": {
  2173. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2174. "phpstan/extension-installer": "^1.1",
  2175. "phpstan/phpstan": "^1.8",
  2176. "phpstan/phpstan-mockery": "^1.1",
  2177. "phpstan/phpstan-webmozart-assert": "^1.2",
  2178. "phpunit/phpunit": "^9.5",
  2179. "psalm/phar": "^5.26"
  2180. },
  2181. "type": "library",
  2182. "extra": {
  2183. "branch-alias": {
  2184. "dev-master": "5.x-dev"
  2185. }
  2186. },
  2187. "autoload": {
  2188. "psr-4": {
  2189. "phpDocumentor\\Reflection\\": "src"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "MIT"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Mike van Riel",
  2199. "email": "me@mikevanriel.com"
  2200. },
  2201. {
  2202. "name": "Jaap van Otterdijk",
  2203. "email": "opensource@ijaap.nl"
  2204. }
  2205. ],
  2206. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2207. "support": {
  2208. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2209. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.6"
  2210. },
  2211. "time": "2025-12-22T21:13:58+00:00"
  2212. },
  2213. {
  2214. "name": "phpdocumentor/type-resolver",
  2215. "version": "1.12.0",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2219. "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
  2224. "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
  2225. "shasum": ""
  2226. },
  2227. "require": {
  2228. "doctrine/deprecations": "^1.0",
  2229. "php": "^7.3 || ^8.0",
  2230. "phpdocumentor/reflection-common": "^2.0",
  2231. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2232. },
  2233. "require-dev": {
  2234. "ext-tokenizer": "*",
  2235. "phpbench/phpbench": "^1.2",
  2236. "phpstan/extension-installer": "^1.1",
  2237. "phpstan/phpstan": "^1.8",
  2238. "phpstan/phpstan-phpunit": "^1.1",
  2239. "phpunit/phpunit": "^9.5",
  2240. "rector/rector": "^0.13.9",
  2241. "vimeo/psalm": "^4.25"
  2242. },
  2243. "type": "library",
  2244. "extra": {
  2245. "branch-alias": {
  2246. "dev-1.x": "1.x-dev"
  2247. }
  2248. },
  2249. "autoload": {
  2250. "psr-4": {
  2251. "phpDocumentor\\Reflection\\": "src"
  2252. }
  2253. },
  2254. "notification-url": "https://packagist.org/downloads/",
  2255. "license": [
  2256. "MIT"
  2257. ],
  2258. "authors": [
  2259. {
  2260. "name": "Mike van Riel",
  2261. "email": "me@mikevanriel.com"
  2262. }
  2263. ],
  2264. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2265. "support": {
  2266. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2267. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
  2268. },
  2269. "time": "2025-11-21T15:09:14+00:00"
  2270. },
  2271. {
  2272. "name": "phpstan/phpdoc-parser",
  2273. "version": "2.3.2",
  2274. "source": {
  2275. "type": "git",
  2276. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2277. "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a"
  2278. },
  2279. "dist": {
  2280. "type": "zip",
  2281. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a",
  2282. "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a",
  2283. "shasum": ""
  2284. },
  2285. "require": {
  2286. "php": "^7.4 || ^8.0"
  2287. },
  2288. "require-dev": {
  2289. "doctrine/annotations": "^2.0",
  2290. "nikic/php-parser": "^5.3.0",
  2291. "php-parallel-lint/php-parallel-lint": "^1.2",
  2292. "phpstan/extension-installer": "^1.0",
  2293. "phpstan/phpstan": "^2.0",
  2294. "phpstan/phpstan-phpunit": "^2.0",
  2295. "phpstan/phpstan-strict-rules": "^2.0",
  2296. "phpunit/phpunit": "^9.6",
  2297. "symfony/process": "^5.2"
  2298. },
  2299. "type": "library",
  2300. "autoload": {
  2301. "psr-4": {
  2302. "PHPStan\\PhpDocParser\\": [
  2303. "src/"
  2304. ]
  2305. }
  2306. },
  2307. "notification-url": "https://packagist.org/downloads/",
  2308. "license": [
  2309. "MIT"
  2310. ],
  2311. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2312. "support": {
  2313. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2314. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.2"
  2315. },
  2316. "time": "2026-01-25T14:56:51+00:00"
  2317. },
  2318. {
  2319. "name": "psr/cache",
  2320. "version": "3.0.0",
  2321. "source": {
  2322. "type": "git",
  2323. "url": "https://github.com/php-fig/cache.git",
  2324. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2325. },
  2326. "dist": {
  2327. "type": "zip",
  2328. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2329. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2330. "shasum": ""
  2331. },
  2332. "require": {
  2333. "php": ">=8.0.0"
  2334. },
  2335. "type": "library",
  2336. "extra": {
  2337. "branch-alias": {
  2338. "dev-master": "1.0.x-dev"
  2339. }
  2340. },
  2341. "autoload": {
  2342. "psr-4": {
  2343. "Psr\\Cache\\": "src/"
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "MIT"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "PHP-FIG",
  2353. "homepage": "https://www.php-fig.org/"
  2354. }
  2355. ],
  2356. "description": "Common interface for caching libraries",
  2357. "keywords": [
  2358. "cache",
  2359. "psr",
  2360. "psr-6"
  2361. ],
  2362. "support": {
  2363. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2364. },
  2365. "time": "2021-02-03T23:26:27+00:00"
  2366. },
  2367. {
  2368. "name": "psr/clock",
  2369. "version": "1.0.0",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/php-fig/clock.git",
  2373. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2378. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2379. "shasum": ""
  2380. },
  2381. "require": {
  2382. "php": "^7.0 || ^8.0"
  2383. },
  2384. "type": "library",
  2385. "autoload": {
  2386. "psr-4": {
  2387. "Psr\\Clock\\": "src/"
  2388. }
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "MIT"
  2393. ],
  2394. "authors": [
  2395. {
  2396. "name": "PHP-FIG",
  2397. "homepage": "https://www.php-fig.org/"
  2398. }
  2399. ],
  2400. "description": "Common interface for reading the clock.",
  2401. "homepage": "https://github.com/php-fig/clock",
  2402. "keywords": [
  2403. "clock",
  2404. "now",
  2405. "psr",
  2406. "psr-20",
  2407. "time"
  2408. ],
  2409. "support": {
  2410. "issues": "https://github.com/php-fig/clock/issues",
  2411. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2412. },
  2413. "time": "2022-11-25T14:36:26+00:00"
  2414. },
  2415. {
  2416. "name": "psr/container",
  2417. "version": "2.0.2",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/php-fig/container.git",
  2421. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2426. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2427. "shasum": ""
  2428. },
  2429. "require": {
  2430. "php": ">=7.4.0"
  2431. },
  2432. "type": "library",
  2433. "extra": {
  2434. "branch-alias": {
  2435. "dev-master": "2.0.x-dev"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Psr\\Container\\": "src/"
  2441. }
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "PHP-FIG",
  2450. "homepage": "https://www.php-fig.org/"
  2451. }
  2452. ],
  2453. "description": "Common Container Interface (PHP FIG PSR-11)",
  2454. "homepage": "https://github.com/php-fig/container",
  2455. "keywords": [
  2456. "PSR-11",
  2457. "container",
  2458. "container-interface",
  2459. "container-interop",
  2460. "psr"
  2461. ],
  2462. "support": {
  2463. "issues": "https://github.com/php-fig/container/issues",
  2464. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2465. },
  2466. "time": "2021-11-05T16:47:00+00:00"
  2467. },
  2468. {
  2469. "name": "psr/event-dispatcher",
  2470. "version": "1.0.0",
  2471. "source": {
  2472. "type": "git",
  2473. "url": "https://github.com/php-fig/event-dispatcher.git",
  2474. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2475. },
  2476. "dist": {
  2477. "type": "zip",
  2478. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2479. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2480. "shasum": ""
  2481. },
  2482. "require": {
  2483. "php": ">=7.2.0"
  2484. },
  2485. "type": "library",
  2486. "extra": {
  2487. "branch-alias": {
  2488. "dev-master": "1.0.x-dev"
  2489. }
  2490. },
  2491. "autoload": {
  2492. "psr-4": {
  2493. "Psr\\EventDispatcher\\": "src/"
  2494. }
  2495. },
  2496. "notification-url": "https://packagist.org/downloads/",
  2497. "license": [
  2498. "MIT"
  2499. ],
  2500. "authors": [
  2501. {
  2502. "name": "PHP-FIG",
  2503. "homepage": "http://www.php-fig.org/"
  2504. }
  2505. ],
  2506. "description": "Standard interfaces for event handling.",
  2507. "keywords": [
  2508. "events",
  2509. "psr",
  2510. "psr-14"
  2511. ],
  2512. "support": {
  2513. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2514. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2515. },
  2516. "time": "2019-01-08T18:20:26+00:00"
  2517. },
  2518. {
  2519. "name": "psr/http-factory",
  2520. "version": "1.1.0",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://github.com/php-fig/http-factory.git",
  2524. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2529. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2530. "shasum": ""
  2531. },
  2532. "require": {
  2533. "php": ">=7.1",
  2534. "psr/http-message": "^1.0 || ^2.0"
  2535. },
  2536. "type": "library",
  2537. "extra": {
  2538. "branch-alias": {
  2539. "dev-master": "1.0.x-dev"
  2540. }
  2541. },
  2542. "autoload": {
  2543. "psr-4": {
  2544. "Psr\\Http\\Message\\": "src/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "PHP-FIG",
  2554. "homepage": "https://www.php-fig.org/"
  2555. }
  2556. ],
  2557. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2558. "keywords": [
  2559. "factory",
  2560. "http",
  2561. "message",
  2562. "psr",
  2563. "psr-17",
  2564. "psr-7",
  2565. "request",
  2566. "response"
  2567. ],
  2568. "support": {
  2569. "source": "https://github.com/php-fig/http-factory"
  2570. },
  2571. "time": "2024-04-15T12:06:14+00:00"
  2572. },
  2573. {
  2574. "name": "psr/http-message",
  2575. "version": "2.0",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/php-fig/http-message.git",
  2579. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2584. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2585. "shasum": ""
  2586. },
  2587. "require": {
  2588. "php": "^7.2 || ^8.0"
  2589. },
  2590. "type": "library",
  2591. "extra": {
  2592. "branch-alias": {
  2593. "dev-master": "2.0.x-dev"
  2594. }
  2595. },
  2596. "autoload": {
  2597. "psr-4": {
  2598. "Psr\\Http\\Message\\": "src/"
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "MIT"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "PHP-FIG",
  2608. "homepage": "https://www.php-fig.org/"
  2609. }
  2610. ],
  2611. "description": "Common interface for HTTP messages",
  2612. "homepage": "https://github.com/php-fig/http-message",
  2613. "keywords": [
  2614. "http",
  2615. "http-message",
  2616. "psr",
  2617. "psr-7",
  2618. "request",
  2619. "response"
  2620. ],
  2621. "support": {
  2622. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2623. },
  2624. "time": "2023-04-04T09:54:51+00:00"
  2625. },
  2626. {
  2627. "name": "psr/link",
  2628. "version": "2.0.1",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/php-fig/link.git",
  2632. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2637. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": ">=8.0.0"
  2642. },
  2643. "suggest": {
  2644. "fig/link-util": "Provides some useful PSR-13 utilities"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "2.0.x-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-4": {
  2654. "Psr\\Link\\": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "PHP-FIG",
  2664. "homepage": "http://www.php-fig.org/"
  2665. }
  2666. ],
  2667. "description": "Common interfaces for HTTP links",
  2668. "homepage": "https://github.com/php-fig/link",
  2669. "keywords": [
  2670. "http",
  2671. "http-link",
  2672. "link",
  2673. "psr",
  2674. "psr-13",
  2675. "rest"
  2676. ],
  2677. "support": {
  2678. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2679. },
  2680. "time": "2021-03-11T23:00:27+00:00"
  2681. },
  2682. {
  2683. "name": "psr/log",
  2684. "version": "3.0.2",
  2685. "source": {
  2686. "type": "git",
  2687. "url": "https://github.com/php-fig/log.git",
  2688. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2689. },
  2690. "dist": {
  2691. "type": "zip",
  2692. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2693. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2694. "shasum": ""
  2695. },
  2696. "require": {
  2697. "php": ">=8.0.0"
  2698. },
  2699. "type": "library",
  2700. "extra": {
  2701. "branch-alias": {
  2702. "dev-master": "3.x-dev"
  2703. }
  2704. },
  2705. "autoload": {
  2706. "psr-4": {
  2707. "Psr\\Log\\": "src"
  2708. }
  2709. },
  2710. "notification-url": "https://packagist.org/downloads/",
  2711. "license": [
  2712. "MIT"
  2713. ],
  2714. "authors": [
  2715. {
  2716. "name": "PHP-FIG",
  2717. "homepage": "https://www.php-fig.org/"
  2718. }
  2719. ],
  2720. "description": "Common interface for logging libraries",
  2721. "homepage": "https://github.com/php-fig/log",
  2722. "keywords": [
  2723. "log",
  2724. "psr",
  2725. "psr-3"
  2726. ],
  2727. "support": {
  2728. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2729. },
  2730. "time": "2024-09-11T13:17:53+00:00"
  2731. },
  2732. {
  2733. "name": "symfony/apache-pack",
  2734. "version": "v1.0.1",
  2735. "source": {
  2736. "type": "git",
  2737. "url": "https://github.com/symfony/apache-pack.git",
  2738. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2739. },
  2740. "dist": {
  2741. "type": "zip",
  2742. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2743. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2744. "shasum": ""
  2745. },
  2746. "type": "symfony-pack",
  2747. "notification-url": "https://packagist.org/downloads/",
  2748. "license": [
  2749. "MIT"
  2750. ],
  2751. "description": "A pack for Apache support in Symfony",
  2752. "support": {
  2753. "issues": "https://github.com/symfony/apache-pack/issues",
  2754. "source": "https://github.com/symfony/apache-pack/tree/master"
  2755. },
  2756. "time": "2017-12-12T01:46:35+00:00"
  2757. },
  2758. {
  2759. "name": "symfony/asset",
  2760. "version": "v7.4.4",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/symfony/asset.git",
  2764. "reference": "a6f49cf087a1fcfe7130b9b604a8a2b878b06c40"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/symfony/asset/zipball/a6f49cf087a1fcfe7130b9b604a8a2b878b06c40",
  2769. "reference": "a6f49cf087a1fcfe7130b9b604a8a2b878b06c40",
  2770. "shasum": ""
  2771. },
  2772. "require": {
  2773. "php": ">=8.2"
  2774. },
  2775. "conflict": {
  2776. "symfony/http-foundation": "<6.4"
  2777. },
  2778. "require-dev": {
  2779. "symfony/http-client": "^6.4|^7.0|^8.0",
  2780. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  2781. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  2782. },
  2783. "type": "library",
  2784. "autoload": {
  2785. "psr-4": {
  2786. "Symfony\\Component\\Asset\\": ""
  2787. },
  2788. "exclude-from-classmap": [
  2789. "/Tests/"
  2790. ]
  2791. },
  2792. "notification-url": "https://packagist.org/downloads/",
  2793. "license": [
  2794. "MIT"
  2795. ],
  2796. "authors": [
  2797. {
  2798. "name": "Fabien Potencier",
  2799. "email": "fabien@symfony.com"
  2800. },
  2801. {
  2802. "name": "Symfony Community",
  2803. "homepage": "https://symfony.com/contributors"
  2804. }
  2805. ],
  2806. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2807. "homepage": "https://symfony.com",
  2808. "support": {
  2809. "source": "https://github.com/symfony/asset/tree/v7.4.4"
  2810. },
  2811. "funding": [
  2812. {
  2813. "url": "https://symfony.com/sponsor",
  2814. "type": "custom"
  2815. },
  2816. {
  2817. "url": "https://github.com/fabpot",
  2818. "type": "github"
  2819. },
  2820. {
  2821. "url": "https://github.com/nicolas-grekas",
  2822. "type": "github"
  2823. },
  2824. {
  2825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2826. "type": "tidelift"
  2827. }
  2828. ],
  2829. "time": "2026-01-13T10:40:19+00:00"
  2830. },
  2831. {
  2832. "name": "symfony/cache",
  2833. "version": "v7.4.5",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://github.com/symfony/cache.git",
  2837. "reference": "8dde98d5a4123b53877aca493f9be57b333f14bd"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://api.github.com/repos/symfony/cache/zipball/8dde98d5a4123b53877aca493f9be57b333f14bd",
  2842. "reference": "8dde98d5a4123b53877aca493f9be57b333f14bd",
  2843. "shasum": ""
  2844. },
  2845. "require": {
  2846. "php": ">=8.2",
  2847. "psr/cache": "^2.0|^3.0",
  2848. "psr/log": "^1.1|^2|^3",
  2849. "symfony/cache-contracts": "^3.6",
  2850. "symfony/deprecation-contracts": "^2.5|^3",
  2851. "symfony/service-contracts": "^2.5|^3",
  2852. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  2853. },
  2854. "conflict": {
  2855. "doctrine/dbal": "<3.6",
  2856. "ext-redis": "<6.1",
  2857. "ext-relay": "<0.12.1",
  2858. "symfony/dependency-injection": "<6.4",
  2859. "symfony/http-kernel": "<6.4",
  2860. "symfony/var-dumper": "<6.4"
  2861. },
  2862. "provide": {
  2863. "psr/cache-implementation": "2.0|3.0",
  2864. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2865. "symfony/cache-implementation": "1.1|2.0|3.0"
  2866. },
  2867. "require-dev": {
  2868. "cache/integration-tests": "dev-master",
  2869. "doctrine/dbal": "^3.6|^4",
  2870. "predis/predis": "^1.1|^2.0",
  2871. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2872. "symfony/clock": "^6.4|^7.0|^8.0",
  2873. "symfony/config": "^6.4|^7.0|^8.0",
  2874. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  2875. "symfony/filesystem": "^6.4|^7.0|^8.0",
  2876. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  2877. "symfony/messenger": "^6.4|^7.0|^8.0",
  2878. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  2879. },
  2880. "type": "library",
  2881. "autoload": {
  2882. "psr-4": {
  2883. "Symfony\\Component\\Cache\\": ""
  2884. },
  2885. "classmap": [
  2886. "Traits/ValueWrapper.php"
  2887. ],
  2888. "exclude-from-classmap": [
  2889. "/Tests/"
  2890. ]
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Nicolas Grekas",
  2899. "email": "p@tchwork.com"
  2900. },
  2901. {
  2902. "name": "Symfony Community",
  2903. "homepage": "https://symfony.com/contributors"
  2904. }
  2905. ],
  2906. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2907. "homepage": "https://symfony.com",
  2908. "keywords": [
  2909. "caching",
  2910. "psr6"
  2911. ],
  2912. "support": {
  2913. "source": "https://github.com/symfony/cache/tree/v7.4.5"
  2914. },
  2915. "funding": [
  2916. {
  2917. "url": "https://symfony.com/sponsor",
  2918. "type": "custom"
  2919. },
  2920. {
  2921. "url": "https://github.com/fabpot",
  2922. "type": "github"
  2923. },
  2924. {
  2925. "url": "https://github.com/nicolas-grekas",
  2926. "type": "github"
  2927. },
  2928. {
  2929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2930. "type": "tidelift"
  2931. }
  2932. ],
  2933. "time": "2026-01-27T16:16:02+00:00"
  2934. },
  2935. {
  2936. "name": "symfony/cache-contracts",
  2937. "version": "v3.6.0",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/symfony/cache-contracts.git",
  2941. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2946. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "php": ">=8.1",
  2951. "psr/cache": "^3.0"
  2952. },
  2953. "type": "library",
  2954. "extra": {
  2955. "thanks": {
  2956. "url": "https://github.com/symfony/contracts",
  2957. "name": "symfony/contracts"
  2958. },
  2959. "branch-alias": {
  2960. "dev-main": "3.6-dev"
  2961. }
  2962. },
  2963. "autoload": {
  2964. "psr-4": {
  2965. "Symfony\\Contracts\\Cache\\": ""
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Nicolas Grekas",
  2975. "email": "p@tchwork.com"
  2976. },
  2977. {
  2978. "name": "Symfony Community",
  2979. "homepage": "https://symfony.com/contributors"
  2980. }
  2981. ],
  2982. "description": "Generic abstractions related to caching",
  2983. "homepage": "https://symfony.com",
  2984. "keywords": [
  2985. "abstractions",
  2986. "contracts",
  2987. "decoupling",
  2988. "interfaces",
  2989. "interoperability",
  2990. "standards"
  2991. ],
  2992. "support": {
  2993. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  2994. },
  2995. "funding": [
  2996. {
  2997. "url": "https://symfony.com/sponsor",
  2998. "type": "custom"
  2999. },
  3000. {
  3001. "url": "https://github.com/fabpot",
  3002. "type": "github"
  3003. },
  3004. {
  3005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3006. "type": "tidelift"
  3007. }
  3008. ],
  3009. "time": "2025-03-13T15:25:07+00:00"
  3010. },
  3011. {
  3012. "name": "symfony/clock",
  3013. "version": "v7.4.0",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/symfony/clock.git",
  3017. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/symfony/clock/zipball/9169f24776edde469914c1e7a1442a50f7a4e110",
  3022. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=8.2",
  3027. "psr/clock": "^1.0",
  3028. "symfony/polyfill-php83": "^1.28"
  3029. },
  3030. "provide": {
  3031. "psr/clock-implementation": "1.0"
  3032. },
  3033. "type": "library",
  3034. "autoload": {
  3035. "files": [
  3036. "Resources/now.php"
  3037. ],
  3038. "psr-4": {
  3039. "Symfony\\Component\\Clock\\": ""
  3040. },
  3041. "exclude-from-classmap": [
  3042. "/Tests/"
  3043. ]
  3044. },
  3045. "notification-url": "https://packagist.org/downloads/",
  3046. "license": [
  3047. "MIT"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "Nicolas Grekas",
  3052. "email": "p@tchwork.com"
  3053. },
  3054. {
  3055. "name": "Symfony Community",
  3056. "homepage": "https://symfony.com/contributors"
  3057. }
  3058. ],
  3059. "description": "Decouples applications from the system clock",
  3060. "homepage": "https://symfony.com",
  3061. "keywords": [
  3062. "clock",
  3063. "psr20",
  3064. "time"
  3065. ],
  3066. "support": {
  3067. "source": "https://github.com/symfony/clock/tree/v7.4.0"
  3068. },
  3069. "funding": [
  3070. {
  3071. "url": "https://symfony.com/sponsor",
  3072. "type": "custom"
  3073. },
  3074. {
  3075. "url": "https://github.com/fabpot",
  3076. "type": "github"
  3077. },
  3078. {
  3079. "url": "https://github.com/nicolas-grekas",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3084. "type": "tidelift"
  3085. }
  3086. ],
  3087. "time": "2025-11-12T15:39:26+00:00"
  3088. },
  3089. {
  3090. "name": "symfony/config",
  3091. "version": "v7.4.4",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/symfony/config.git",
  3095. "reference": "4275b53b8ab0cf37f48bf273dc2285c8178efdfb"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/symfony/config/zipball/4275b53b8ab0cf37f48bf273dc2285c8178efdfb",
  3100. "reference": "4275b53b8ab0cf37f48bf273dc2285c8178efdfb",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=8.2",
  3105. "symfony/deprecation-contracts": "^2.5|^3",
  3106. "symfony/filesystem": "^7.1|^8.0",
  3107. "symfony/polyfill-ctype": "~1.8"
  3108. },
  3109. "conflict": {
  3110. "symfony/finder": "<6.4",
  3111. "symfony/service-contracts": "<2.5"
  3112. },
  3113. "require-dev": {
  3114. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3115. "symfony/finder": "^6.4|^7.0|^8.0",
  3116. "symfony/messenger": "^6.4|^7.0|^8.0",
  3117. "symfony/service-contracts": "^2.5|^3",
  3118. "symfony/yaml": "^6.4|^7.0|^8.0"
  3119. },
  3120. "type": "library",
  3121. "autoload": {
  3122. "psr-4": {
  3123. "Symfony\\Component\\Config\\": ""
  3124. },
  3125. "exclude-from-classmap": [
  3126. "/Tests/"
  3127. ]
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "Fabien Potencier",
  3136. "email": "fabien@symfony.com"
  3137. },
  3138. {
  3139. "name": "Symfony Community",
  3140. "homepage": "https://symfony.com/contributors"
  3141. }
  3142. ],
  3143. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3144. "homepage": "https://symfony.com",
  3145. "support": {
  3146. "source": "https://github.com/symfony/config/tree/v7.4.4"
  3147. },
  3148. "funding": [
  3149. {
  3150. "url": "https://symfony.com/sponsor",
  3151. "type": "custom"
  3152. },
  3153. {
  3154. "url": "https://github.com/fabpot",
  3155. "type": "github"
  3156. },
  3157. {
  3158. "url": "https://github.com/nicolas-grekas",
  3159. "type": "github"
  3160. },
  3161. {
  3162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3163. "type": "tidelift"
  3164. }
  3165. ],
  3166. "time": "2026-01-13T11:36:38+00:00"
  3167. },
  3168. {
  3169. "name": "symfony/console",
  3170. "version": "v7.4.4",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/symfony/console.git",
  3174. "reference": "41e38717ac1dd7a46b6bda7d6a82af2d98a78894"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/symfony/console/zipball/41e38717ac1dd7a46b6bda7d6a82af2d98a78894",
  3179. "reference": "41e38717ac1dd7a46b6bda7d6a82af2d98a78894",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "php": ">=8.2",
  3184. "symfony/deprecation-contracts": "^2.5|^3",
  3185. "symfony/polyfill-mbstring": "~1.0",
  3186. "symfony/service-contracts": "^2.5|^3",
  3187. "symfony/string": "^7.2|^8.0"
  3188. },
  3189. "conflict": {
  3190. "symfony/dependency-injection": "<6.4",
  3191. "symfony/dotenv": "<6.4",
  3192. "symfony/event-dispatcher": "<6.4",
  3193. "symfony/lock": "<6.4",
  3194. "symfony/process": "<6.4"
  3195. },
  3196. "provide": {
  3197. "psr/log-implementation": "1.0|2.0|3.0"
  3198. },
  3199. "require-dev": {
  3200. "psr/log": "^1|^2|^3",
  3201. "symfony/config": "^6.4|^7.0|^8.0",
  3202. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3203. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3204. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3205. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3206. "symfony/lock": "^6.4|^7.0|^8.0",
  3207. "symfony/messenger": "^6.4|^7.0|^8.0",
  3208. "symfony/process": "^6.4|^7.0|^8.0",
  3209. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3210. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3211. },
  3212. "type": "library",
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Symfony\\Component\\Console\\": ""
  3216. },
  3217. "exclude-from-classmap": [
  3218. "/Tests/"
  3219. ]
  3220. },
  3221. "notification-url": "https://packagist.org/downloads/",
  3222. "license": [
  3223. "MIT"
  3224. ],
  3225. "authors": [
  3226. {
  3227. "name": "Fabien Potencier",
  3228. "email": "fabien@symfony.com"
  3229. },
  3230. {
  3231. "name": "Symfony Community",
  3232. "homepage": "https://symfony.com/contributors"
  3233. }
  3234. ],
  3235. "description": "Eases the creation of beautiful and testable command line interfaces",
  3236. "homepage": "https://symfony.com",
  3237. "keywords": [
  3238. "cli",
  3239. "command-line",
  3240. "console",
  3241. "terminal"
  3242. ],
  3243. "support": {
  3244. "source": "https://github.com/symfony/console/tree/v7.4.4"
  3245. },
  3246. "funding": [
  3247. {
  3248. "url": "https://symfony.com/sponsor",
  3249. "type": "custom"
  3250. },
  3251. {
  3252. "url": "https://github.com/fabpot",
  3253. "type": "github"
  3254. },
  3255. {
  3256. "url": "https://github.com/nicolas-grekas",
  3257. "type": "github"
  3258. },
  3259. {
  3260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3261. "type": "tidelift"
  3262. }
  3263. ],
  3264. "time": "2026-01-13T11:36:38+00:00"
  3265. },
  3266. {
  3267. "name": "symfony/dependency-injection",
  3268. "version": "v7.4.5",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/symfony/dependency-injection.git",
  3272. "reference": "76a02cddca45a5254479ad68f9fa274ead0a7ef2"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/76a02cddca45a5254479ad68f9fa274ead0a7ef2",
  3277. "reference": "76a02cddca45a5254479ad68f9fa274ead0a7ef2",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "php": ">=8.2",
  3282. "psr/container": "^1.1|^2.0",
  3283. "symfony/deprecation-contracts": "^2.5|^3",
  3284. "symfony/service-contracts": "^3.6",
  3285. "symfony/var-exporter": "^6.4.20|^7.2.5|^8.0"
  3286. },
  3287. "conflict": {
  3288. "ext-psr": "<1.1|>=2",
  3289. "symfony/config": "<6.4",
  3290. "symfony/finder": "<6.4",
  3291. "symfony/yaml": "<6.4"
  3292. },
  3293. "provide": {
  3294. "psr/container-implementation": "1.1|2.0",
  3295. "symfony/service-implementation": "1.1|2.0|3.0"
  3296. },
  3297. "require-dev": {
  3298. "symfony/config": "^6.4|^7.0|^8.0",
  3299. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3300. "symfony/yaml": "^6.4|^7.0|^8.0"
  3301. },
  3302. "type": "library",
  3303. "autoload": {
  3304. "psr-4": {
  3305. "Symfony\\Component\\DependencyInjection\\": ""
  3306. },
  3307. "exclude-from-classmap": [
  3308. "/Tests/"
  3309. ]
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "Fabien Potencier",
  3318. "email": "fabien@symfony.com"
  3319. },
  3320. {
  3321. "name": "Symfony Community",
  3322. "homepage": "https://symfony.com/contributors"
  3323. }
  3324. ],
  3325. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3326. "homepage": "https://symfony.com",
  3327. "support": {
  3328. "source": "https://github.com/symfony/dependency-injection/tree/v7.4.5"
  3329. },
  3330. "funding": [
  3331. {
  3332. "url": "https://symfony.com/sponsor",
  3333. "type": "custom"
  3334. },
  3335. {
  3336. "url": "https://github.com/fabpot",
  3337. "type": "github"
  3338. },
  3339. {
  3340. "url": "https://github.com/nicolas-grekas",
  3341. "type": "github"
  3342. },
  3343. {
  3344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3345. "type": "tidelift"
  3346. }
  3347. ],
  3348. "time": "2026-01-27T16:16:02+00:00"
  3349. },
  3350. {
  3351. "name": "symfony/deprecation-contracts",
  3352. "version": "v3.6.0",
  3353. "source": {
  3354. "type": "git",
  3355. "url": "https://github.com/symfony/deprecation-contracts.git",
  3356. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3357. },
  3358. "dist": {
  3359. "type": "zip",
  3360. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3361. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3362. "shasum": ""
  3363. },
  3364. "require": {
  3365. "php": ">=8.1"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "thanks": {
  3370. "url": "https://github.com/symfony/contracts",
  3371. "name": "symfony/contracts"
  3372. },
  3373. "branch-alias": {
  3374. "dev-main": "3.6-dev"
  3375. }
  3376. },
  3377. "autoload": {
  3378. "files": [
  3379. "function.php"
  3380. ]
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "MIT"
  3385. ],
  3386. "authors": [
  3387. {
  3388. "name": "Nicolas Grekas",
  3389. "email": "p@tchwork.com"
  3390. },
  3391. {
  3392. "name": "Symfony Community",
  3393. "homepage": "https://symfony.com/contributors"
  3394. }
  3395. ],
  3396. "description": "A generic function and convention to trigger deprecation notices",
  3397. "homepage": "https://symfony.com",
  3398. "support": {
  3399. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  3400. },
  3401. "funding": [
  3402. {
  3403. "url": "https://symfony.com/sponsor",
  3404. "type": "custom"
  3405. },
  3406. {
  3407. "url": "https://github.com/fabpot",
  3408. "type": "github"
  3409. },
  3410. {
  3411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3412. "type": "tidelift"
  3413. }
  3414. ],
  3415. "time": "2024-09-25T14:21:43+00:00"
  3416. },
  3417. {
  3418. "name": "symfony/doctrine-bridge",
  3419. "version": "v7.4.4",
  3420. "source": {
  3421. "type": "git",
  3422. "url": "https://github.com/symfony/doctrine-bridge.git",
  3423. "reference": "3408d9fb7bda6c8db9f3e4099863c9017bcbc62d"
  3424. },
  3425. "dist": {
  3426. "type": "zip",
  3427. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/3408d9fb7bda6c8db9f3e4099863c9017bcbc62d",
  3428. "reference": "3408d9fb7bda6c8db9f3e4099863c9017bcbc62d",
  3429. "shasum": ""
  3430. },
  3431. "require": {
  3432. "doctrine/event-manager": "^2",
  3433. "doctrine/persistence": "^3.1|^4",
  3434. "php": ">=8.2",
  3435. "symfony/deprecation-contracts": "^2.5|^3",
  3436. "symfony/polyfill-ctype": "~1.8",
  3437. "symfony/polyfill-mbstring": "~1.0",
  3438. "symfony/service-contracts": "^2.5|^3"
  3439. },
  3440. "conflict": {
  3441. "doctrine/collections": "<1.8",
  3442. "doctrine/dbal": "<3.6",
  3443. "doctrine/lexer": "<1.1",
  3444. "doctrine/orm": "<2.15",
  3445. "symfony/cache": "<6.4",
  3446. "symfony/dependency-injection": "<6.4",
  3447. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3448. "symfony/http-foundation": "<6.4",
  3449. "symfony/http-kernel": "<6.4",
  3450. "symfony/lock": "<6.4",
  3451. "symfony/messenger": "<6.4",
  3452. "symfony/property-info": "<6.4",
  3453. "symfony/security-bundle": "<6.4",
  3454. "symfony/security-core": "<6.4",
  3455. "symfony/validator": "<7.4"
  3456. },
  3457. "require-dev": {
  3458. "doctrine/collections": "^1.8|^2.0",
  3459. "doctrine/data-fixtures": "^1.1|^2",
  3460. "doctrine/dbal": "^3.6|^4",
  3461. "doctrine/orm": "^2.15|^3",
  3462. "psr/log": "^1|^2|^3",
  3463. "symfony/cache": "^6.4|^7.0|^8.0",
  3464. "symfony/config": "^6.4|^7.0|^8.0",
  3465. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3466. "symfony/doctrine-messenger": "^6.4|^7.0|^8.0",
  3467. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3468. "symfony/form": "^7.2|^8.0",
  3469. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3470. "symfony/lock": "^6.4|^7.0|^8.0",
  3471. "symfony/messenger": "^6.4|^7.0|^8.0",
  3472. "symfony/property-access": "^6.4|^7.0|^8.0",
  3473. "symfony/property-info": "^6.4|^7.0|^8.0",
  3474. "symfony/security-core": "^6.4|^7.0|^8.0",
  3475. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3476. "symfony/translation": "^6.4|^7.0|^8.0",
  3477. "symfony/type-info": "^7.1.8|^8.0",
  3478. "symfony/uid": "^6.4|^7.0|^8.0",
  3479. "symfony/validator": "^7.4|^8.0",
  3480. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3481. },
  3482. "type": "symfony-bridge",
  3483. "autoload": {
  3484. "psr-4": {
  3485. "Symfony\\Bridge\\Doctrine\\": ""
  3486. },
  3487. "exclude-from-classmap": [
  3488. "/Tests/"
  3489. ]
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Fabien Potencier",
  3498. "email": "fabien@symfony.com"
  3499. },
  3500. {
  3501. "name": "Symfony Community",
  3502. "homepage": "https://symfony.com/contributors"
  3503. }
  3504. ],
  3505. "description": "Provides integration for Doctrine with various Symfony components",
  3506. "homepage": "https://symfony.com",
  3507. "support": {
  3508. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.4.4"
  3509. },
  3510. "funding": [
  3511. {
  3512. "url": "https://symfony.com/sponsor",
  3513. "type": "custom"
  3514. },
  3515. {
  3516. "url": "https://github.com/fabpot",
  3517. "type": "github"
  3518. },
  3519. {
  3520. "url": "https://github.com/nicolas-grekas",
  3521. "type": "github"
  3522. },
  3523. {
  3524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3525. "type": "tidelift"
  3526. }
  3527. ],
  3528. "time": "2026-01-20T16:42:42+00:00"
  3529. },
  3530. {
  3531. "name": "symfony/dotenv",
  3532. "version": "v7.4.0",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/symfony/dotenv.git",
  3536. "reference": "1658a4d34df028f3d93bcdd8e81f04423925a364"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/symfony/dotenv/zipball/1658a4d34df028f3d93bcdd8e81f04423925a364",
  3541. "reference": "1658a4d34df028f3d93bcdd8e81f04423925a364",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "php": ">=8.2"
  3546. },
  3547. "conflict": {
  3548. "symfony/console": "<6.4",
  3549. "symfony/process": "<6.4"
  3550. },
  3551. "require-dev": {
  3552. "symfony/console": "^6.4|^7.0|^8.0",
  3553. "symfony/process": "^6.4|^7.0|^8.0"
  3554. },
  3555. "type": "library",
  3556. "autoload": {
  3557. "psr-4": {
  3558. "Symfony\\Component\\Dotenv\\": ""
  3559. },
  3560. "exclude-from-classmap": [
  3561. "/Tests/"
  3562. ]
  3563. },
  3564. "notification-url": "https://packagist.org/downloads/",
  3565. "license": [
  3566. "MIT"
  3567. ],
  3568. "authors": [
  3569. {
  3570. "name": "Fabien Potencier",
  3571. "email": "fabien@symfony.com"
  3572. },
  3573. {
  3574. "name": "Symfony Community",
  3575. "homepage": "https://symfony.com/contributors"
  3576. }
  3577. ],
  3578. "description": "Registers environment variables from a .env file",
  3579. "homepage": "https://symfony.com",
  3580. "keywords": [
  3581. "dotenv",
  3582. "env",
  3583. "environment"
  3584. ],
  3585. "support": {
  3586. "source": "https://github.com/symfony/dotenv/tree/v7.4.0"
  3587. },
  3588. "funding": [
  3589. {
  3590. "url": "https://symfony.com/sponsor",
  3591. "type": "custom"
  3592. },
  3593. {
  3594. "url": "https://github.com/fabpot",
  3595. "type": "github"
  3596. },
  3597. {
  3598. "url": "https://github.com/nicolas-grekas",
  3599. "type": "github"
  3600. },
  3601. {
  3602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3603. "type": "tidelift"
  3604. }
  3605. ],
  3606. "time": "2025-11-16T10:14:42+00:00"
  3607. },
  3608. {
  3609. "name": "symfony/error-handler",
  3610. "version": "v7.4.4",
  3611. "source": {
  3612. "type": "git",
  3613. "url": "https://github.com/symfony/error-handler.git",
  3614. "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8"
  3615. },
  3616. "dist": {
  3617. "type": "zip",
  3618. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8da531f364ddfee53e36092a7eebbbd0b775f6b8",
  3619. "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8",
  3620. "shasum": ""
  3621. },
  3622. "require": {
  3623. "php": ">=8.2",
  3624. "psr/log": "^1|^2|^3",
  3625. "symfony/polyfill-php85": "^1.32",
  3626. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3627. },
  3628. "conflict": {
  3629. "symfony/deprecation-contracts": "<2.5",
  3630. "symfony/http-kernel": "<6.4"
  3631. },
  3632. "require-dev": {
  3633. "symfony/console": "^6.4|^7.0|^8.0",
  3634. "symfony/deprecation-contracts": "^2.5|^3",
  3635. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3636. "symfony/serializer": "^6.4|^7.0|^8.0",
  3637. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  3638. },
  3639. "bin": [
  3640. "Resources/bin/patch-type-declarations"
  3641. ],
  3642. "type": "library",
  3643. "autoload": {
  3644. "psr-4": {
  3645. "Symfony\\Component\\ErrorHandler\\": ""
  3646. },
  3647. "exclude-from-classmap": [
  3648. "/Tests/"
  3649. ]
  3650. },
  3651. "notification-url": "https://packagist.org/downloads/",
  3652. "license": [
  3653. "MIT"
  3654. ],
  3655. "authors": [
  3656. {
  3657. "name": "Fabien Potencier",
  3658. "email": "fabien@symfony.com"
  3659. },
  3660. {
  3661. "name": "Symfony Community",
  3662. "homepage": "https://symfony.com/contributors"
  3663. }
  3664. ],
  3665. "description": "Provides tools to manage errors and ease debugging PHP code",
  3666. "homepage": "https://symfony.com",
  3667. "support": {
  3668. "source": "https://github.com/symfony/error-handler/tree/v7.4.4"
  3669. },
  3670. "funding": [
  3671. {
  3672. "url": "https://symfony.com/sponsor",
  3673. "type": "custom"
  3674. },
  3675. {
  3676. "url": "https://github.com/fabpot",
  3677. "type": "github"
  3678. },
  3679. {
  3680. "url": "https://github.com/nicolas-grekas",
  3681. "type": "github"
  3682. },
  3683. {
  3684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3685. "type": "tidelift"
  3686. }
  3687. ],
  3688. "time": "2026-01-20T16:42:42+00:00"
  3689. },
  3690. {
  3691. "name": "symfony/event-dispatcher",
  3692. "version": "v7.4.4",
  3693. "source": {
  3694. "type": "git",
  3695. "url": "https://github.com/symfony/event-dispatcher.git",
  3696. "reference": "dc2c0eba1af673e736bb851d747d266108aea746"
  3697. },
  3698. "dist": {
  3699. "type": "zip",
  3700. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dc2c0eba1af673e736bb851d747d266108aea746",
  3701. "reference": "dc2c0eba1af673e736bb851d747d266108aea746",
  3702. "shasum": ""
  3703. },
  3704. "require": {
  3705. "php": ">=8.2",
  3706. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3707. },
  3708. "conflict": {
  3709. "symfony/dependency-injection": "<6.4",
  3710. "symfony/service-contracts": "<2.5"
  3711. },
  3712. "provide": {
  3713. "psr/event-dispatcher-implementation": "1.0",
  3714. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3715. },
  3716. "require-dev": {
  3717. "psr/log": "^1|^2|^3",
  3718. "symfony/config": "^6.4|^7.0|^8.0",
  3719. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3720. "symfony/error-handler": "^6.4|^7.0|^8.0",
  3721. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3722. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  3723. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3724. "symfony/service-contracts": "^2.5|^3",
  3725. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  3726. },
  3727. "type": "library",
  3728. "autoload": {
  3729. "psr-4": {
  3730. "Symfony\\Component\\EventDispatcher\\": ""
  3731. },
  3732. "exclude-from-classmap": [
  3733. "/Tests/"
  3734. ]
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "Fabien Potencier",
  3743. "email": "fabien@symfony.com"
  3744. },
  3745. {
  3746. "name": "Symfony Community",
  3747. "homepage": "https://symfony.com/contributors"
  3748. }
  3749. ],
  3750. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3751. "homepage": "https://symfony.com",
  3752. "support": {
  3753. "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.4"
  3754. },
  3755. "funding": [
  3756. {
  3757. "url": "https://symfony.com/sponsor",
  3758. "type": "custom"
  3759. },
  3760. {
  3761. "url": "https://github.com/fabpot",
  3762. "type": "github"
  3763. },
  3764. {
  3765. "url": "https://github.com/nicolas-grekas",
  3766. "type": "github"
  3767. },
  3768. {
  3769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3770. "type": "tidelift"
  3771. }
  3772. ],
  3773. "time": "2026-01-05T11:45:34+00:00"
  3774. },
  3775. {
  3776. "name": "symfony/event-dispatcher-contracts",
  3777. "version": "v3.6.0",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3781. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  3786. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  3787. "shasum": ""
  3788. },
  3789. "require": {
  3790. "php": ">=8.1",
  3791. "psr/event-dispatcher": "^1"
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "thanks": {
  3796. "url": "https://github.com/symfony/contracts",
  3797. "name": "symfony/contracts"
  3798. },
  3799. "branch-alias": {
  3800. "dev-main": "3.6-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "Symfony\\Contracts\\EventDispatcher\\": ""
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "MIT"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "Nicolas Grekas",
  3815. "email": "p@tchwork.com"
  3816. },
  3817. {
  3818. "name": "Symfony Community",
  3819. "homepage": "https://symfony.com/contributors"
  3820. }
  3821. ],
  3822. "description": "Generic abstractions related to dispatching event",
  3823. "homepage": "https://symfony.com",
  3824. "keywords": [
  3825. "abstractions",
  3826. "contracts",
  3827. "decoupling",
  3828. "interfaces",
  3829. "interoperability",
  3830. "standards"
  3831. ],
  3832. "support": {
  3833. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  3834. },
  3835. "funding": [
  3836. {
  3837. "url": "https://symfony.com/sponsor",
  3838. "type": "custom"
  3839. },
  3840. {
  3841. "url": "https://github.com/fabpot",
  3842. "type": "github"
  3843. },
  3844. {
  3845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3846. "type": "tidelift"
  3847. }
  3848. ],
  3849. "time": "2024-09-25T14:21:43+00:00"
  3850. },
  3851. {
  3852. "name": "symfony/expression-language",
  3853. "version": "v7.4.4",
  3854. "source": {
  3855. "type": "git",
  3856. "url": "https://github.com/symfony/expression-language.git",
  3857. "reference": "f3a6497eb6573e185f2ec41cd3b3f0cd68ddf667"
  3858. },
  3859. "dist": {
  3860. "type": "zip",
  3861. "url": "https://api.github.com/repos/symfony/expression-language/zipball/f3a6497eb6573e185f2ec41cd3b3f0cd68ddf667",
  3862. "reference": "f3a6497eb6573e185f2ec41cd3b3f0cd68ddf667",
  3863. "shasum": ""
  3864. },
  3865. "require": {
  3866. "php": ">=8.2",
  3867. "symfony/cache": "^6.4|^7.0|^8.0",
  3868. "symfony/deprecation-contracts": "^2.5|^3",
  3869. "symfony/service-contracts": "^2.5|^3"
  3870. },
  3871. "type": "library",
  3872. "autoload": {
  3873. "psr-4": {
  3874. "Symfony\\Component\\ExpressionLanguage\\": ""
  3875. },
  3876. "exclude-from-classmap": [
  3877. "/Tests/"
  3878. ]
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "Fabien Potencier",
  3887. "email": "fabien@symfony.com"
  3888. },
  3889. {
  3890. "name": "Symfony Community",
  3891. "homepage": "https://symfony.com/contributors"
  3892. }
  3893. ],
  3894. "description": "Provides an engine that can compile and evaluate expressions",
  3895. "homepage": "https://symfony.com",
  3896. "support": {
  3897. "source": "https://github.com/symfony/expression-language/tree/v7.4.4"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://symfony.com/sponsor",
  3902. "type": "custom"
  3903. },
  3904. {
  3905. "url": "https://github.com/fabpot",
  3906. "type": "github"
  3907. },
  3908. {
  3909. "url": "https://github.com/nicolas-grekas",
  3910. "type": "github"
  3911. },
  3912. {
  3913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3914. "type": "tidelift"
  3915. }
  3916. ],
  3917. "time": "2026-01-05T08:47:25+00:00"
  3918. },
  3919. {
  3920. "name": "symfony/filesystem",
  3921. "version": "v7.4.0",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://github.com/symfony/filesystem.git",
  3925. "reference": "d551b38811096d0be9c4691d406991b47c0c630a"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a",
  3930. "reference": "d551b38811096d0be9c4691d406991b47c0c630a",
  3931. "shasum": ""
  3932. },
  3933. "require": {
  3934. "php": ">=8.2",
  3935. "symfony/polyfill-ctype": "~1.8",
  3936. "symfony/polyfill-mbstring": "~1.8"
  3937. },
  3938. "require-dev": {
  3939. "symfony/process": "^6.4|^7.0|^8.0"
  3940. },
  3941. "type": "library",
  3942. "autoload": {
  3943. "psr-4": {
  3944. "Symfony\\Component\\Filesystem\\": ""
  3945. },
  3946. "exclude-from-classmap": [
  3947. "/Tests/"
  3948. ]
  3949. },
  3950. "notification-url": "https://packagist.org/downloads/",
  3951. "license": [
  3952. "MIT"
  3953. ],
  3954. "authors": [
  3955. {
  3956. "name": "Fabien Potencier",
  3957. "email": "fabien@symfony.com"
  3958. },
  3959. {
  3960. "name": "Symfony Community",
  3961. "homepage": "https://symfony.com/contributors"
  3962. }
  3963. ],
  3964. "description": "Provides basic utilities for the filesystem",
  3965. "homepage": "https://symfony.com",
  3966. "support": {
  3967. "source": "https://github.com/symfony/filesystem/tree/v7.4.0"
  3968. },
  3969. "funding": [
  3970. {
  3971. "url": "https://symfony.com/sponsor",
  3972. "type": "custom"
  3973. },
  3974. {
  3975. "url": "https://github.com/fabpot",
  3976. "type": "github"
  3977. },
  3978. {
  3979. "url": "https://github.com/nicolas-grekas",
  3980. "type": "github"
  3981. },
  3982. {
  3983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3984. "type": "tidelift"
  3985. }
  3986. ],
  3987. "time": "2025-11-27T13:27:24+00:00"
  3988. },
  3989. {
  3990. "name": "symfony/finder",
  3991. "version": "v7.4.5",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/symfony/finder.git",
  3995. "reference": "ad4daa7c38668dcb031e63bc99ea9bd42196a2cb"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/symfony/finder/zipball/ad4daa7c38668dcb031e63bc99ea9bd42196a2cb",
  4000. "reference": "ad4daa7c38668dcb031e63bc99ea9bd42196a2cb",
  4001. "shasum": ""
  4002. },
  4003. "require": {
  4004. "php": ">=8.2"
  4005. },
  4006. "require-dev": {
  4007. "symfony/filesystem": "^6.4|^7.0|^8.0"
  4008. },
  4009. "type": "library",
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Symfony\\Component\\Finder\\": ""
  4013. },
  4014. "exclude-from-classmap": [
  4015. "/Tests/"
  4016. ]
  4017. },
  4018. "notification-url": "https://packagist.org/downloads/",
  4019. "license": [
  4020. "MIT"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "Fabien Potencier",
  4025. "email": "fabien@symfony.com"
  4026. },
  4027. {
  4028. "name": "Symfony Community",
  4029. "homepage": "https://symfony.com/contributors"
  4030. }
  4031. ],
  4032. "description": "Finds files and directories via an intuitive fluent interface",
  4033. "homepage": "https://symfony.com",
  4034. "support": {
  4035. "source": "https://github.com/symfony/finder/tree/v7.4.5"
  4036. },
  4037. "funding": [
  4038. {
  4039. "url": "https://symfony.com/sponsor",
  4040. "type": "custom"
  4041. },
  4042. {
  4043. "url": "https://github.com/fabpot",
  4044. "type": "github"
  4045. },
  4046. {
  4047. "url": "https://github.com/nicolas-grekas",
  4048. "type": "github"
  4049. },
  4050. {
  4051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4052. "type": "tidelift"
  4053. }
  4054. ],
  4055. "time": "2026-01-26T15:07:59+00:00"
  4056. },
  4057. {
  4058. "name": "symfony/flex",
  4059. "version": "v2.10.0",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/symfony/flex.git",
  4063. "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/symfony/flex/zipball/9cd384775973eabbf6e8b05784dda279fc67c28d",
  4068. "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "composer-plugin-api": "^2.1",
  4073. "php": ">=8.1"
  4074. },
  4075. "conflict": {
  4076. "composer/semver": "<1.7.2",
  4077. "symfony/dotenv": "<5.4"
  4078. },
  4079. "require-dev": {
  4080. "composer/composer": "^2.1",
  4081. "symfony/dotenv": "^6.4|^7.4|^8.0",
  4082. "symfony/filesystem": "^6.4|^7.4|^8.0",
  4083. "symfony/phpunit-bridge": "^6.4|^7.4|^8.0",
  4084. "symfony/process": "^6.4|^7.4|^8.0"
  4085. },
  4086. "type": "composer-plugin",
  4087. "extra": {
  4088. "class": "Symfony\\Flex\\Flex"
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Symfony\\Flex\\": "src"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Fabien Potencier",
  4102. "email": "fabien.potencier@gmail.com"
  4103. }
  4104. ],
  4105. "description": "Composer plugin for Symfony",
  4106. "support": {
  4107. "issues": "https://github.com/symfony/flex/issues",
  4108. "source": "https://github.com/symfony/flex/tree/v2.10.0"
  4109. },
  4110. "funding": [
  4111. {
  4112. "url": "https://symfony.com/sponsor",
  4113. "type": "custom"
  4114. },
  4115. {
  4116. "url": "https://github.com/fabpot",
  4117. "type": "github"
  4118. },
  4119. {
  4120. "url": "https://github.com/nicolas-grekas",
  4121. "type": "github"
  4122. },
  4123. {
  4124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4125. "type": "tidelift"
  4126. }
  4127. ],
  4128. "time": "2025-11-16T09:38:19+00:00"
  4129. },
  4130. {
  4131. "name": "symfony/form",
  4132. "version": "v7.4.4",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/symfony/form.git",
  4136. "reference": "264fc873f01376216f0b884ecc81b34b830e25a8"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/symfony/form/zipball/264fc873f01376216f0b884ecc81b34b830e25a8",
  4141. "reference": "264fc873f01376216f0b884ecc81b34b830e25a8",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "php": ">=8.2",
  4146. "symfony/deprecation-contracts": "^2.5|^3",
  4147. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4148. "symfony/options-resolver": "^7.3|^8.0",
  4149. "symfony/polyfill-ctype": "~1.8",
  4150. "symfony/polyfill-intl-icu": "^1.21",
  4151. "symfony/polyfill-mbstring": "~1.0",
  4152. "symfony/property-access": "^6.4|^7.0|^8.0",
  4153. "symfony/service-contracts": "^2.5|^3"
  4154. },
  4155. "conflict": {
  4156. "symfony/console": "<6.4",
  4157. "symfony/dependency-injection": "<6.4",
  4158. "symfony/doctrine-bridge": "<6.4",
  4159. "symfony/error-handler": "<6.4",
  4160. "symfony/framework-bundle": "<6.4",
  4161. "symfony/http-kernel": "<6.4",
  4162. "symfony/intl": "<7.4",
  4163. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4164. "symfony/translation-contracts": "<2.5",
  4165. "symfony/twig-bridge": "<6.4"
  4166. },
  4167. "require-dev": {
  4168. "doctrine/collections": "^1.0|^2.0",
  4169. "symfony/clock": "^6.4|^7.0|^8.0",
  4170. "symfony/config": "^6.4|^7.0|^8.0",
  4171. "symfony/console": "^6.4|^7.0|^8.0",
  4172. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4173. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4174. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  4175. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  4176. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4177. "symfony/intl": "^7.4|^8.0",
  4178. "symfony/security-core": "^6.4|^7.0|^8.0",
  4179. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  4180. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  4181. "symfony/uid": "^6.4|^7.0|^8.0",
  4182. "symfony/validator": "^6.4.12|^7.1.5|^8.0",
  4183. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  4184. },
  4185. "type": "library",
  4186. "autoload": {
  4187. "psr-4": {
  4188. "Symfony\\Component\\Form\\": ""
  4189. },
  4190. "exclude-from-classmap": [
  4191. "/Tests/"
  4192. ]
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "MIT"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Fabien Potencier",
  4201. "email": "fabien@symfony.com"
  4202. },
  4203. {
  4204. "name": "Symfony Community",
  4205. "homepage": "https://symfony.com/contributors"
  4206. }
  4207. ],
  4208. "description": "Allows to easily create, process and reuse HTML forms",
  4209. "homepage": "https://symfony.com",
  4210. "support": {
  4211. "source": "https://github.com/symfony/form/tree/v7.4.4"
  4212. },
  4213. "funding": [
  4214. {
  4215. "url": "https://symfony.com/sponsor",
  4216. "type": "custom"
  4217. },
  4218. {
  4219. "url": "https://github.com/fabpot",
  4220. "type": "github"
  4221. },
  4222. {
  4223. "url": "https://github.com/nicolas-grekas",
  4224. "type": "github"
  4225. },
  4226. {
  4227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4228. "type": "tidelift"
  4229. }
  4230. ],
  4231. "time": "2026-01-23T10:51:15+00:00"
  4232. },
  4233. {
  4234. "name": "symfony/framework-bundle",
  4235. "version": "v7.4.5",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://github.com/symfony/framework-bundle.git",
  4239. "reference": "dcf89ca6712d9e1b5d3f14dea0e1c2685a05d1cd"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/dcf89ca6712d9e1b5d3f14dea0e1c2685a05d1cd",
  4244. "reference": "dcf89ca6712d9e1b5d3f14dea0e1c2685a05d1cd",
  4245. "shasum": ""
  4246. },
  4247. "require": {
  4248. "composer-runtime-api": ">=2.1",
  4249. "ext-xml": "*",
  4250. "php": ">=8.2",
  4251. "symfony/cache": "^6.4.12|^7.0|^8.0",
  4252. "symfony/config": "^7.4.4|^8.0.4",
  4253. "symfony/dependency-injection": "^7.4.4|^8.0.4",
  4254. "symfony/deprecation-contracts": "^2.5|^3",
  4255. "symfony/error-handler": "^7.3|^8.0",
  4256. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4257. "symfony/filesystem": "^7.1|^8.0",
  4258. "symfony/finder": "^6.4|^7.0|^8.0",
  4259. "symfony/http-foundation": "^7.4|^8.0",
  4260. "symfony/http-kernel": "^7.4|^8.0",
  4261. "symfony/polyfill-mbstring": "~1.0",
  4262. "symfony/polyfill-php85": "^1.32",
  4263. "symfony/routing": "^7.4|^8.0"
  4264. },
  4265. "conflict": {
  4266. "doctrine/persistence": "<1.3",
  4267. "phpdocumentor/reflection-docblock": "<5.2|>=6",
  4268. "phpdocumentor/type-resolver": "<1.5.1",
  4269. "symfony/asset": "<6.4",
  4270. "symfony/asset-mapper": "<6.4",
  4271. "symfony/clock": "<6.4",
  4272. "symfony/console": "<6.4",
  4273. "symfony/dom-crawler": "<6.4",
  4274. "symfony/dotenv": "<6.4",
  4275. "symfony/form": "<7.4",
  4276. "symfony/http-client": "<6.4",
  4277. "symfony/lock": "<6.4",
  4278. "symfony/mailer": "<6.4",
  4279. "symfony/messenger": "<7.4",
  4280. "symfony/mime": "<6.4",
  4281. "symfony/property-access": "<6.4",
  4282. "symfony/property-info": "<6.4",
  4283. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4284. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4285. "symfony/security-core": "<6.4",
  4286. "symfony/security-csrf": "<7.2",
  4287. "symfony/serializer": "<7.2.5",
  4288. "symfony/stopwatch": "<6.4",
  4289. "symfony/translation": "<7.3",
  4290. "symfony/twig-bridge": "<6.4",
  4291. "symfony/twig-bundle": "<6.4",
  4292. "symfony/validator": "<6.4",
  4293. "symfony/web-profiler-bundle": "<6.4",
  4294. "symfony/webhook": "<7.2",
  4295. "symfony/workflow": "<7.4"
  4296. },
  4297. "require-dev": {
  4298. "doctrine/persistence": "^1.3|^2|^3",
  4299. "dragonmantank/cron-expression": "^3.1",
  4300. "phpdocumentor/reflection-docblock": "^5.2",
  4301. "seld/jsonlint": "^1.10",
  4302. "symfony/asset": "^6.4|^7.0|^8.0",
  4303. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  4304. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  4305. "symfony/clock": "^6.4|^7.0|^8.0",
  4306. "symfony/console": "^6.4|^7.0|^8.0",
  4307. "symfony/css-selector": "^6.4|^7.0|^8.0",
  4308. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  4309. "symfony/dotenv": "^6.4|^7.0|^8.0",
  4310. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4311. "symfony/form": "^7.4|^8.0",
  4312. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  4313. "symfony/http-client": "^6.4|^7.0|^8.0",
  4314. "symfony/json-streamer": "^7.3|^8.0",
  4315. "symfony/lock": "^6.4|^7.0|^8.0",
  4316. "symfony/mailer": "^6.4|^7.0|^8.0",
  4317. "symfony/messenger": "^7.4|^8.0",
  4318. "symfony/mime": "^6.4|^7.0|^8.0",
  4319. "symfony/notifier": "^6.4|^7.0|^8.0",
  4320. "symfony/object-mapper": "^7.3|^8.0",
  4321. "symfony/polyfill-intl-icu": "~1.0",
  4322. "symfony/process": "^6.4|^7.0|^8.0",
  4323. "symfony/property-info": "^6.4|^7.0|^8.0",
  4324. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  4325. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  4326. "symfony/scheduler": "^6.4.4|^7.0.4|^8.0",
  4327. "symfony/security-bundle": "^6.4|^7.0|^8.0",
  4328. "symfony/semaphore": "^6.4|^7.0|^8.0",
  4329. "symfony/serializer": "^7.2.5|^8.0",
  4330. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  4331. "symfony/string": "^6.4|^7.0|^8.0",
  4332. "symfony/translation": "^7.3|^8.0",
  4333. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  4334. "symfony/type-info": "^7.1.8|^8.0",
  4335. "symfony/uid": "^6.4|^7.0|^8.0",
  4336. "symfony/validator": "^7.4|^8.0",
  4337. "symfony/web-link": "^6.4|^7.0|^8.0",
  4338. "symfony/webhook": "^7.2|^8.0",
  4339. "symfony/workflow": "^7.4|^8.0",
  4340. "symfony/yaml": "^7.3|^8.0",
  4341. "twig/twig": "^3.12"
  4342. },
  4343. "type": "symfony-bundle",
  4344. "autoload": {
  4345. "psr-4": {
  4346. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4347. },
  4348. "exclude-from-classmap": [
  4349. "/Tests/"
  4350. ]
  4351. },
  4352. "notification-url": "https://packagist.org/downloads/",
  4353. "license": [
  4354. "MIT"
  4355. ],
  4356. "authors": [
  4357. {
  4358. "name": "Fabien Potencier",
  4359. "email": "fabien@symfony.com"
  4360. },
  4361. {
  4362. "name": "Symfony Community",
  4363. "homepage": "https://symfony.com/contributors"
  4364. }
  4365. ],
  4366. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4367. "homepage": "https://symfony.com",
  4368. "support": {
  4369. "source": "https://github.com/symfony/framework-bundle/tree/v7.4.5"
  4370. },
  4371. "funding": [
  4372. {
  4373. "url": "https://symfony.com/sponsor",
  4374. "type": "custom"
  4375. },
  4376. {
  4377. "url": "https://github.com/fabpot",
  4378. "type": "github"
  4379. },
  4380. {
  4381. "url": "https://github.com/nicolas-grekas",
  4382. "type": "github"
  4383. },
  4384. {
  4385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4386. "type": "tidelift"
  4387. }
  4388. ],
  4389. "time": "2026-01-27T08:59:58+00:00"
  4390. },
  4391. {
  4392. "name": "symfony/html-sanitizer",
  4393. "version": "v7.4.0",
  4394. "source": {
  4395. "type": "git",
  4396. "url": "https://github.com/symfony/html-sanitizer.git",
  4397. "reference": "5b0bbcc3600030b535dd0b17a0e8c56243f96d7f"
  4398. },
  4399. "dist": {
  4400. "type": "zip",
  4401. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/5b0bbcc3600030b535dd0b17a0e8c56243f96d7f",
  4402. "reference": "5b0bbcc3600030b535dd0b17a0e8c56243f96d7f",
  4403. "shasum": ""
  4404. },
  4405. "require": {
  4406. "ext-dom": "*",
  4407. "league/uri": "^6.5|^7.0",
  4408. "masterminds/html5": "^2.7.2",
  4409. "php": ">=8.2",
  4410. "symfony/deprecation-contracts": "^2.5|^3"
  4411. },
  4412. "type": "library",
  4413. "autoload": {
  4414. "psr-4": {
  4415. "Symfony\\Component\\HtmlSanitizer\\": ""
  4416. },
  4417. "exclude-from-classmap": [
  4418. "/Tests/"
  4419. ]
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Titouan Galopin",
  4428. "email": "galopintitouan@gmail.com"
  4429. },
  4430. {
  4431. "name": "Symfony Community",
  4432. "homepage": "https://symfony.com/contributors"
  4433. }
  4434. ],
  4435. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4436. "homepage": "https://symfony.com",
  4437. "keywords": [
  4438. "Purifier",
  4439. "html",
  4440. "sanitizer"
  4441. ],
  4442. "support": {
  4443. "source": "https://github.com/symfony/html-sanitizer/tree/v7.4.0"
  4444. },
  4445. "funding": [
  4446. {
  4447. "url": "https://symfony.com/sponsor",
  4448. "type": "custom"
  4449. },
  4450. {
  4451. "url": "https://github.com/fabpot",
  4452. "type": "github"
  4453. },
  4454. {
  4455. "url": "https://github.com/nicolas-grekas",
  4456. "type": "github"
  4457. },
  4458. {
  4459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4460. "type": "tidelift"
  4461. }
  4462. ],
  4463. "time": "2025-10-30T13:39:42+00:00"
  4464. },
  4465. {
  4466. "name": "symfony/http-client",
  4467. "version": "v7.4.5",
  4468. "source": {
  4469. "type": "git",
  4470. "url": "https://github.com/symfony/http-client.git",
  4471. "reference": "84bb634857a893cc146cceb467e31b3f02c5fe9f"
  4472. },
  4473. "dist": {
  4474. "type": "zip",
  4475. "url": "https://api.github.com/repos/symfony/http-client/zipball/84bb634857a893cc146cceb467e31b3f02c5fe9f",
  4476. "reference": "84bb634857a893cc146cceb467e31b3f02c5fe9f",
  4477. "shasum": ""
  4478. },
  4479. "require": {
  4480. "php": ">=8.2",
  4481. "psr/log": "^1|^2|^3",
  4482. "symfony/deprecation-contracts": "^2.5|^3",
  4483. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  4484. "symfony/polyfill-php83": "^1.29",
  4485. "symfony/service-contracts": "^2.5|^3"
  4486. },
  4487. "conflict": {
  4488. "amphp/amp": "<2.5",
  4489. "amphp/socket": "<1.1",
  4490. "php-http/discovery": "<1.15",
  4491. "symfony/http-foundation": "<6.4"
  4492. },
  4493. "provide": {
  4494. "php-http/async-client-implementation": "*",
  4495. "php-http/client-implementation": "*",
  4496. "psr/http-client-implementation": "1.0",
  4497. "symfony/http-client-implementation": "3.0"
  4498. },
  4499. "require-dev": {
  4500. "amphp/http-client": "^4.2.1|^5.0",
  4501. "amphp/http-tunnel": "^1.0|^2.0",
  4502. "guzzlehttp/promises": "^1.4|^2.0",
  4503. "nyholm/psr7": "^1.0",
  4504. "php-http/httplug": "^1.0|^2.0",
  4505. "psr/http-client": "^1.0",
  4506. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  4507. "symfony/cache": "^6.4|^7.0|^8.0",
  4508. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4509. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4510. "symfony/messenger": "^6.4|^7.0|^8.0",
  4511. "symfony/process": "^6.4|^7.0|^8.0",
  4512. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  4513. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  4514. },
  4515. "type": "library",
  4516. "autoload": {
  4517. "psr-4": {
  4518. "Symfony\\Component\\HttpClient\\": ""
  4519. },
  4520. "exclude-from-classmap": [
  4521. "/Tests/"
  4522. ]
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Nicolas Grekas",
  4531. "email": "p@tchwork.com"
  4532. },
  4533. {
  4534. "name": "Symfony Community",
  4535. "homepage": "https://symfony.com/contributors"
  4536. }
  4537. ],
  4538. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4539. "homepage": "https://symfony.com",
  4540. "keywords": [
  4541. "http"
  4542. ],
  4543. "support": {
  4544. "source": "https://github.com/symfony/http-client/tree/v7.4.5"
  4545. },
  4546. "funding": [
  4547. {
  4548. "url": "https://symfony.com/sponsor",
  4549. "type": "custom"
  4550. },
  4551. {
  4552. "url": "https://github.com/fabpot",
  4553. "type": "github"
  4554. },
  4555. {
  4556. "url": "https://github.com/nicolas-grekas",
  4557. "type": "github"
  4558. },
  4559. {
  4560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4561. "type": "tidelift"
  4562. }
  4563. ],
  4564. "time": "2026-01-27T16:16:02+00:00"
  4565. },
  4566. {
  4567. "name": "symfony/http-client-contracts",
  4568. "version": "v3.6.0",
  4569. "source": {
  4570. "type": "git",
  4571. "url": "https://github.com/symfony/http-client-contracts.git",
  4572. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  4573. },
  4574. "dist": {
  4575. "type": "zip",
  4576. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  4577. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  4578. "shasum": ""
  4579. },
  4580. "require": {
  4581. "php": ">=8.1"
  4582. },
  4583. "type": "library",
  4584. "extra": {
  4585. "thanks": {
  4586. "url": "https://github.com/symfony/contracts",
  4587. "name": "symfony/contracts"
  4588. },
  4589. "branch-alias": {
  4590. "dev-main": "3.6-dev"
  4591. }
  4592. },
  4593. "autoload": {
  4594. "psr-4": {
  4595. "Symfony\\Contracts\\HttpClient\\": ""
  4596. },
  4597. "exclude-from-classmap": [
  4598. "/Test/"
  4599. ]
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "MIT"
  4604. ],
  4605. "authors": [
  4606. {
  4607. "name": "Nicolas Grekas",
  4608. "email": "p@tchwork.com"
  4609. },
  4610. {
  4611. "name": "Symfony Community",
  4612. "homepage": "https://symfony.com/contributors"
  4613. }
  4614. ],
  4615. "description": "Generic abstractions related to HTTP clients",
  4616. "homepage": "https://symfony.com",
  4617. "keywords": [
  4618. "abstractions",
  4619. "contracts",
  4620. "decoupling",
  4621. "interfaces",
  4622. "interoperability",
  4623. "standards"
  4624. ],
  4625. "support": {
  4626. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  4627. },
  4628. "funding": [
  4629. {
  4630. "url": "https://symfony.com/sponsor",
  4631. "type": "custom"
  4632. },
  4633. {
  4634. "url": "https://github.com/fabpot",
  4635. "type": "github"
  4636. },
  4637. {
  4638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4639. "type": "tidelift"
  4640. }
  4641. ],
  4642. "time": "2025-04-29T11:18:49+00:00"
  4643. },
  4644. {
  4645. "name": "symfony/http-foundation",
  4646. "version": "v7.4.5",
  4647. "source": {
  4648. "type": "git",
  4649. "url": "https://github.com/symfony/http-foundation.git",
  4650. "reference": "446d0db2b1f21575f1284b74533e425096abdfb6"
  4651. },
  4652. "dist": {
  4653. "type": "zip",
  4654. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/446d0db2b1f21575f1284b74533e425096abdfb6",
  4655. "reference": "446d0db2b1f21575f1284b74533e425096abdfb6",
  4656. "shasum": ""
  4657. },
  4658. "require": {
  4659. "php": ">=8.2",
  4660. "symfony/deprecation-contracts": "^2.5|^3",
  4661. "symfony/polyfill-mbstring": "^1.1"
  4662. },
  4663. "conflict": {
  4664. "doctrine/dbal": "<3.6",
  4665. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  4666. },
  4667. "require-dev": {
  4668. "doctrine/dbal": "^3.6|^4",
  4669. "predis/predis": "^1.1|^2.0",
  4670. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  4671. "symfony/clock": "^6.4|^7.0|^8.0",
  4672. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4673. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4674. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4675. "symfony/mime": "^6.4|^7.0|^8.0",
  4676. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  4677. },
  4678. "type": "library",
  4679. "autoload": {
  4680. "psr-4": {
  4681. "Symfony\\Component\\HttpFoundation\\": ""
  4682. },
  4683. "exclude-from-classmap": [
  4684. "/Tests/"
  4685. ]
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Fabien Potencier",
  4694. "email": "fabien@symfony.com"
  4695. },
  4696. {
  4697. "name": "Symfony Community",
  4698. "homepage": "https://symfony.com/contributors"
  4699. }
  4700. ],
  4701. "description": "Defines an object-oriented layer for the HTTP specification",
  4702. "homepage": "https://symfony.com",
  4703. "support": {
  4704. "source": "https://github.com/symfony/http-foundation/tree/v7.4.5"
  4705. },
  4706. "funding": [
  4707. {
  4708. "url": "https://symfony.com/sponsor",
  4709. "type": "custom"
  4710. },
  4711. {
  4712. "url": "https://github.com/fabpot",
  4713. "type": "github"
  4714. },
  4715. {
  4716. "url": "https://github.com/nicolas-grekas",
  4717. "type": "github"
  4718. },
  4719. {
  4720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4721. "type": "tidelift"
  4722. }
  4723. ],
  4724. "time": "2026-01-27T16:16:02+00:00"
  4725. },
  4726. {
  4727. "name": "symfony/http-kernel",
  4728. "version": "v7.4.5",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/symfony/http-kernel.git",
  4732. "reference": "229eda477017f92bd2ce7615d06222ec0c19e82a"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/229eda477017f92bd2ce7615d06222ec0c19e82a",
  4737. "reference": "229eda477017f92bd2ce7615d06222ec0c19e82a",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "php": ">=8.2",
  4742. "psr/log": "^1|^2|^3",
  4743. "symfony/deprecation-contracts": "^2.5|^3",
  4744. "symfony/error-handler": "^6.4|^7.0|^8.0",
  4745. "symfony/event-dispatcher": "^7.3|^8.0",
  4746. "symfony/http-foundation": "^7.4|^8.0",
  4747. "symfony/polyfill-ctype": "^1.8"
  4748. },
  4749. "conflict": {
  4750. "symfony/browser-kit": "<6.4",
  4751. "symfony/cache": "<6.4",
  4752. "symfony/config": "<6.4",
  4753. "symfony/console": "<6.4",
  4754. "symfony/dependency-injection": "<6.4",
  4755. "symfony/doctrine-bridge": "<6.4",
  4756. "symfony/flex": "<2.10",
  4757. "symfony/form": "<6.4",
  4758. "symfony/http-client": "<6.4",
  4759. "symfony/http-client-contracts": "<2.5",
  4760. "symfony/mailer": "<6.4",
  4761. "symfony/messenger": "<6.4",
  4762. "symfony/translation": "<6.4",
  4763. "symfony/translation-contracts": "<2.5",
  4764. "symfony/twig-bridge": "<6.4",
  4765. "symfony/validator": "<6.4",
  4766. "symfony/var-dumper": "<6.4",
  4767. "twig/twig": "<3.12"
  4768. },
  4769. "provide": {
  4770. "psr/log-implementation": "1.0|2.0|3.0"
  4771. },
  4772. "require-dev": {
  4773. "psr/cache": "^1.0|^2.0|^3.0",
  4774. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  4775. "symfony/clock": "^6.4|^7.0|^8.0",
  4776. "symfony/config": "^6.4|^7.0|^8.0",
  4777. "symfony/console": "^6.4|^7.0|^8.0",
  4778. "symfony/css-selector": "^6.4|^7.0|^8.0",
  4779. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4780. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  4781. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4782. "symfony/finder": "^6.4|^7.0|^8.0",
  4783. "symfony/http-client-contracts": "^2.5|^3",
  4784. "symfony/process": "^6.4|^7.0|^8.0",
  4785. "symfony/property-access": "^7.1|^8.0",
  4786. "symfony/routing": "^6.4|^7.0|^8.0",
  4787. "symfony/serializer": "^7.1|^8.0",
  4788. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  4789. "symfony/translation": "^6.4|^7.0|^8.0",
  4790. "symfony/translation-contracts": "^2.5|^3",
  4791. "symfony/uid": "^6.4|^7.0|^8.0",
  4792. "symfony/validator": "^6.4|^7.0|^8.0",
  4793. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  4794. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  4795. "twig/twig": "^3.12"
  4796. },
  4797. "type": "library",
  4798. "autoload": {
  4799. "psr-4": {
  4800. "Symfony\\Component\\HttpKernel\\": ""
  4801. },
  4802. "exclude-from-classmap": [
  4803. "/Tests/"
  4804. ]
  4805. },
  4806. "notification-url": "https://packagist.org/downloads/",
  4807. "license": [
  4808. "MIT"
  4809. ],
  4810. "authors": [
  4811. {
  4812. "name": "Fabien Potencier",
  4813. "email": "fabien@symfony.com"
  4814. },
  4815. {
  4816. "name": "Symfony Community",
  4817. "homepage": "https://symfony.com/contributors"
  4818. }
  4819. ],
  4820. "description": "Provides a structured process for converting a Request into a Response",
  4821. "homepage": "https://symfony.com",
  4822. "support": {
  4823. "source": "https://github.com/symfony/http-kernel/tree/v7.4.5"
  4824. },
  4825. "funding": [
  4826. {
  4827. "url": "https://symfony.com/sponsor",
  4828. "type": "custom"
  4829. },
  4830. {
  4831. "url": "https://github.com/fabpot",
  4832. "type": "github"
  4833. },
  4834. {
  4835. "url": "https://github.com/nicolas-grekas",
  4836. "type": "github"
  4837. },
  4838. {
  4839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4840. "type": "tidelift"
  4841. }
  4842. ],
  4843. "time": "2026-01-28T10:33:42+00:00"
  4844. },
  4845. {
  4846. "name": "symfony/mailer",
  4847. "version": "v7.4.4",
  4848. "source": {
  4849. "type": "git",
  4850. "url": "https://github.com/symfony/mailer.git",
  4851. "reference": "7b750074c40c694ceb34cb926d6dffee231c5cd6"
  4852. },
  4853. "dist": {
  4854. "type": "zip",
  4855. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b750074c40c694ceb34cb926d6dffee231c5cd6",
  4856. "reference": "7b750074c40c694ceb34cb926d6dffee231c5cd6",
  4857. "shasum": ""
  4858. },
  4859. "require": {
  4860. "egulias/email-validator": "^2.1.10|^3|^4",
  4861. "php": ">=8.2",
  4862. "psr/event-dispatcher": "^1",
  4863. "psr/log": "^1|^2|^3",
  4864. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4865. "symfony/mime": "^7.2|^8.0",
  4866. "symfony/service-contracts": "^2.5|^3"
  4867. },
  4868. "conflict": {
  4869. "symfony/http-client-contracts": "<2.5",
  4870. "symfony/http-kernel": "<6.4",
  4871. "symfony/messenger": "<6.4",
  4872. "symfony/mime": "<6.4",
  4873. "symfony/twig-bridge": "<6.4"
  4874. },
  4875. "require-dev": {
  4876. "symfony/console": "^6.4|^7.0|^8.0",
  4877. "symfony/http-client": "^6.4|^7.0|^8.0",
  4878. "symfony/messenger": "^6.4|^7.0|^8.0",
  4879. "symfony/twig-bridge": "^6.4|^7.0|^8.0"
  4880. },
  4881. "type": "library",
  4882. "autoload": {
  4883. "psr-4": {
  4884. "Symfony\\Component\\Mailer\\": ""
  4885. },
  4886. "exclude-from-classmap": [
  4887. "/Tests/"
  4888. ]
  4889. },
  4890. "notification-url": "https://packagist.org/downloads/",
  4891. "license": [
  4892. "MIT"
  4893. ],
  4894. "authors": [
  4895. {
  4896. "name": "Fabien Potencier",
  4897. "email": "fabien@symfony.com"
  4898. },
  4899. {
  4900. "name": "Symfony Community",
  4901. "homepage": "https://symfony.com/contributors"
  4902. }
  4903. ],
  4904. "description": "Helps sending emails",
  4905. "homepage": "https://symfony.com",
  4906. "support": {
  4907. "source": "https://github.com/symfony/mailer/tree/v7.4.4"
  4908. },
  4909. "funding": [
  4910. {
  4911. "url": "https://symfony.com/sponsor",
  4912. "type": "custom"
  4913. },
  4914. {
  4915. "url": "https://github.com/fabpot",
  4916. "type": "github"
  4917. },
  4918. {
  4919. "url": "https://github.com/nicolas-grekas",
  4920. "type": "github"
  4921. },
  4922. {
  4923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4924. "type": "tidelift"
  4925. }
  4926. ],
  4927. "time": "2026-01-08T08:25:11+00:00"
  4928. },
  4929. {
  4930. "name": "symfony/mime",
  4931. "version": "v7.4.5",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://github.com/symfony/mime.git",
  4935. "reference": "b18c7e6e9eee1e19958138df10412f3c4c316148"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://api.github.com/repos/symfony/mime/zipball/b18c7e6e9eee1e19958138df10412f3c4c316148",
  4940. "reference": "b18c7e6e9eee1e19958138df10412f3c4c316148",
  4941. "shasum": ""
  4942. },
  4943. "require": {
  4944. "php": ">=8.2",
  4945. "symfony/deprecation-contracts": "^2.5|^3",
  4946. "symfony/polyfill-intl-idn": "^1.10",
  4947. "symfony/polyfill-mbstring": "^1.0"
  4948. },
  4949. "conflict": {
  4950. "egulias/email-validator": "~3.0.0",
  4951. "phpdocumentor/reflection-docblock": "<5.2|>=6",
  4952. "phpdocumentor/type-resolver": "<1.5.1",
  4953. "symfony/mailer": "<6.4",
  4954. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4955. },
  4956. "require-dev": {
  4957. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4958. "league/html-to-markdown": "^5.0",
  4959. "phpdocumentor/reflection-docblock": "^5.2",
  4960. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4961. "symfony/process": "^6.4|^7.0|^8.0",
  4962. "symfony/property-access": "^6.4|^7.0|^8.0",
  4963. "symfony/property-info": "^6.4|^7.0|^8.0",
  4964. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  4965. },
  4966. "type": "library",
  4967. "autoload": {
  4968. "psr-4": {
  4969. "Symfony\\Component\\Mime\\": ""
  4970. },
  4971. "exclude-from-classmap": [
  4972. "/Tests/"
  4973. ]
  4974. },
  4975. "notification-url": "https://packagist.org/downloads/",
  4976. "license": [
  4977. "MIT"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "Fabien Potencier",
  4982. "email": "fabien@symfony.com"
  4983. },
  4984. {
  4985. "name": "Symfony Community",
  4986. "homepage": "https://symfony.com/contributors"
  4987. }
  4988. ],
  4989. "description": "Allows manipulating MIME messages",
  4990. "homepage": "https://symfony.com",
  4991. "keywords": [
  4992. "mime",
  4993. "mime-type"
  4994. ],
  4995. "support": {
  4996. "source": "https://github.com/symfony/mime/tree/v7.4.5"
  4997. },
  4998. "funding": [
  4999. {
  5000. "url": "https://symfony.com/sponsor",
  5001. "type": "custom"
  5002. },
  5003. {
  5004. "url": "https://github.com/fabpot",
  5005. "type": "github"
  5006. },
  5007. {
  5008. "url": "https://github.com/nicolas-grekas",
  5009. "type": "github"
  5010. },
  5011. {
  5012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5013. "type": "tidelift"
  5014. }
  5015. ],
  5016. "time": "2026-01-27T08:59:58+00:00"
  5017. },
  5018. {
  5019. "name": "symfony/monolog-bridge",
  5020. "version": "v7.4.4",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/symfony/monolog-bridge.git",
  5024. "reference": "9c34e8170b09f062a9a38880a3cb58ee35cb7fd4"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/9c34e8170b09f062a9a38880a3cb58ee35cb7fd4",
  5029. "reference": "9c34e8170b09f062a9a38880a3cb58ee35cb7fd4",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "monolog/monolog": "^3",
  5034. "php": ">=8.2",
  5035. "symfony/deprecation-contracts": "^2.5|^3",
  5036. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5037. "symfony/service-contracts": "^2.5|^3"
  5038. },
  5039. "conflict": {
  5040. "symfony/console": "<6.4",
  5041. "symfony/http-foundation": "<6.4",
  5042. "symfony/security-core": "<6.4"
  5043. },
  5044. "require-dev": {
  5045. "symfony/console": "^6.4|^7.0|^8.0",
  5046. "symfony/http-client": "^6.4|^7.0|^8.0",
  5047. "symfony/mailer": "^6.4|^7.0|^8.0",
  5048. "symfony/messenger": "^6.4|^7.0|^8.0",
  5049. "symfony/mime": "^6.4|^7.0|^8.0",
  5050. "symfony/security-core": "^6.4|^7.0|^8.0",
  5051. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  5052. },
  5053. "type": "symfony-bridge",
  5054. "autoload": {
  5055. "psr-4": {
  5056. "Symfony\\Bridge\\Monolog\\": ""
  5057. },
  5058. "exclude-from-classmap": [
  5059. "/Tests/"
  5060. ]
  5061. },
  5062. "notification-url": "https://packagist.org/downloads/",
  5063. "license": [
  5064. "MIT"
  5065. ],
  5066. "authors": [
  5067. {
  5068. "name": "Fabien Potencier",
  5069. "email": "fabien@symfony.com"
  5070. },
  5071. {
  5072. "name": "Symfony Community",
  5073. "homepage": "https://symfony.com/contributors"
  5074. }
  5075. ],
  5076. "description": "Provides integration for Monolog with various Symfony components",
  5077. "homepage": "https://symfony.com",
  5078. "support": {
  5079. "source": "https://github.com/symfony/monolog-bridge/tree/v7.4.4"
  5080. },
  5081. "funding": [
  5082. {
  5083. "url": "https://symfony.com/sponsor",
  5084. "type": "custom"
  5085. },
  5086. {
  5087. "url": "https://github.com/fabpot",
  5088. "type": "github"
  5089. },
  5090. {
  5091. "url": "https://github.com/nicolas-grekas",
  5092. "type": "github"
  5093. },
  5094. {
  5095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5096. "type": "tidelift"
  5097. }
  5098. ],
  5099. "time": "2026-01-07T11:35:36+00:00"
  5100. },
  5101. {
  5102. "name": "symfony/monolog-bundle",
  5103. "version": "v3.11.1",
  5104. "source": {
  5105. "type": "git",
  5106. "url": "https://github.com/symfony/monolog-bundle.git",
  5107. "reference": "0e675a6e08f791ef960dc9c7e392787111a3f0c1"
  5108. },
  5109. "dist": {
  5110. "type": "zip",
  5111. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/0e675a6e08f791ef960dc9c7e392787111a3f0c1",
  5112. "reference": "0e675a6e08f791ef960dc9c7e392787111a3f0c1",
  5113. "shasum": ""
  5114. },
  5115. "require": {
  5116. "composer-runtime-api": "^2.0",
  5117. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5118. "php": ">=8.1",
  5119. "symfony/config": "^6.4 || ^7.0",
  5120. "symfony/dependency-injection": "^6.4 || ^7.0",
  5121. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  5122. "symfony/http-kernel": "^6.4 || ^7.0",
  5123. "symfony/monolog-bridge": "^6.4 || ^7.0",
  5124. "symfony/polyfill-php84": "^1.30"
  5125. },
  5126. "require-dev": {
  5127. "symfony/console": "^6.4 || ^7.0",
  5128. "symfony/phpunit-bridge": "^7.3.3",
  5129. "symfony/yaml": "^6.4 || ^7.0"
  5130. },
  5131. "type": "symfony-bundle",
  5132. "autoload": {
  5133. "psr-4": {
  5134. "Symfony\\Bundle\\MonologBundle\\": "src"
  5135. }
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "MIT"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Fabien Potencier",
  5144. "email": "fabien@symfony.com"
  5145. },
  5146. {
  5147. "name": "Symfony Community",
  5148. "homepage": "https://symfony.com/contributors"
  5149. }
  5150. ],
  5151. "description": "Symfony MonologBundle",
  5152. "homepage": "https://symfony.com",
  5153. "keywords": [
  5154. "log",
  5155. "logging"
  5156. ],
  5157. "support": {
  5158. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5159. "source": "https://github.com/symfony/monolog-bundle/tree/v3.11.1"
  5160. },
  5161. "funding": [
  5162. {
  5163. "url": "https://symfony.com/sponsor",
  5164. "type": "custom"
  5165. },
  5166. {
  5167. "url": "https://github.com/fabpot",
  5168. "type": "github"
  5169. },
  5170. {
  5171. "url": "https://github.com/nicolas-grekas",
  5172. "type": "github"
  5173. },
  5174. {
  5175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5176. "type": "tidelift"
  5177. }
  5178. ],
  5179. "time": "2025-12-08T07:58:26+00:00"
  5180. },
  5181. {
  5182. "name": "symfony/options-resolver",
  5183. "version": "v7.4.0",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://github.com/symfony/options-resolver.git",
  5187. "reference": "b38026df55197f9e39a44f3215788edf83187b80"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b38026df55197f9e39a44f3215788edf83187b80",
  5192. "reference": "b38026df55197f9e39a44f3215788edf83187b80",
  5193. "shasum": ""
  5194. },
  5195. "require": {
  5196. "php": ">=8.2",
  5197. "symfony/deprecation-contracts": "^2.5|^3"
  5198. },
  5199. "type": "library",
  5200. "autoload": {
  5201. "psr-4": {
  5202. "Symfony\\Component\\OptionsResolver\\": ""
  5203. },
  5204. "exclude-from-classmap": [
  5205. "/Tests/"
  5206. ]
  5207. },
  5208. "notification-url": "https://packagist.org/downloads/",
  5209. "license": [
  5210. "MIT"
  5211. ],
  5212. "authors": [
  5213. {
  5214. "name": "Fabien Potencier",
  5215. "email": "fabien@symfony.com"
  5216. },
  5217. {
  5218. "name": "Symfony Community",
  5219. "homepage": "https://symfony.com/contributors"
  5220. }
  5221. ],
  5222. "description": "Provides an improved replacement for the array_replace PHP function",
  5223. "homepage": "https://symfony.com",
  5224. "keywords": [
  5225. "config",
  5226. "configuration",
  5227. "options"
  5228. ],
  5229. "support": {
  5230. "source": "https://github.com/symfony/options-resolver/tree/v7.4.0"
  5231. },
  5232. "funding": [
  5233. {
  5234. "url": "https://symfony.com/sponsor",
  5235. "type": "custom"
  5236. },
  5237. {
  5238. "url": "https://github.com/fabpot",
  5239. "type": "github"
  5240. },
  5241. {
  5242. "url": "https://github.com/nicolas-grekas",
  5243. "type": "github"
  5244. },
  5245. {
  5246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5247. "type": "tidelift"
  5248. }
  5249. ],
  5250. "time": "2025-11-12T15:39:26+00:00"
  5251. },
  5252. {
  5253. "name": "symfony/password-hasher",
  5254. "version": "v7.4.4",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://github.com/symfony/password-hasher.git",
  5258. "reference": "ab8e0ef42483f31c417c82ecfcf7be7b91d784fe"
  5259. },
  5260. "dist": {
  5261. "type": "zip",
  5262. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/ab8e0ef42483f31c417c82ecfcf7be7b91d784fe",
  5263. "reference": "ab8e0ef42483f31c417c82ecfcf7be7b91d784fe",
  5264. "shasum": ""
  5265. },
  5266. "require": {
  5267. "php": ">=8.2"
  5268. },
  5269. "conflict": {
  5270. "symfony/security-core": "<6.4"
  5271. },
  5272. "require-dev": {
  5273. "symfony/console": "^6.4|^7.0|^8.0",
  5274. "symfony/security-core": "^6.4|^7.0|^8.0"
  5275. },
  5276. "type": "library",
  5277. "autoload": {
  5278. "psr-4": {
  5279. "Symfony\\Component\\PasswordHasher\\": ""
  5280. },
  5281. "exclude-from-classmap": [
  5282. "/Tests/"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "MIT"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Robin Chalas",
  5292. "email": "robin.chalas@gmail.com"
  5293. },
  5294. {
  5295. "name": "Symfony Community",
  5296. "homepage": "https://symfony.com/contributors"
  5297. }
  5298. ],
  5299. "description": "Provides password hashing utilities",
  5300. "homepage": "https://symfony.com",
  5301. "keywords": [
  5302. "hashing",
  5303. "password"
  5304. ],
  5305. "support": {
  5306. "source": "https://github.com/symfony/password-hasher/tree/v7.4.4"
  5307. },
  5308. "funding": [
  5309. {
  5310. "url": "https://symfony.com/sponsor",
  5311. "type": "custom"
  5312. },
  5313. {
  5314. "url": "https://github.com/fabpot",
  5315. "type": "github"
  5316. },
  5317. {
  5318. "url": "https://github.com/nicolas-grekas",
  5319. "type": "github"
  5320. },
  5321. {
  5322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5323. "type": "tidelift"
  5324. }
  5325. ],
  5326. "time": "2026-01-01T22:13:48+00:00"
  5327. },
  5328. {
  5329. "name": "symfony/polyfill-intl-grapheme",
  5330. "version": "v1.33.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5334. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  5339. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  5340. "shasum": ""
  5341. },
  5342. "require": {
  5343. "php": ">=7.2"
  5344. },
  5345. "suggest": {
  5346. "ext-intl": "For best performance"
  5347. },
  5348. "type": "library",
  5349. "extra": {
  5350. "thanks": {
  5351. "url": "https://github.com/symfony/polyfill",
  5352. "name": "symfony/polyfill"
  5353. }
  5354. },
  5355. "autoload": {
  5356. "files": [
  5357. "bootstrap.php"
  5358. ],
  5359. "psr-4": {
  5360. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5361. }
  5362. },
  5363. "notification-url": "https://packagist.org/downloads/",
  5364. "license": [
  5365. "MIT"
  5366. ],
  5367. "authors": [
  5368. {
  5369. "name": "Nicolas Grekas",
  5370. "email": "p@tchwork.com"
  5371. },
  5372. {
  5373. "name": "Symfony Community",
  5374. "homepage": "https://symfony.com/contributors"
  5375. }
  5376. ],
  5377. "description": "Symfony polyfill for intl's grapheme_* functions",
  5378. "homepage": "https://symfony.com",
  5379. "keywords": [
  5380. "compatibility",
  5381. "grapheme",
  5382. "intl",
  5383. "polyfill",
  5384. "portable",
  5385. "shim"
  5386. ],
  5387. "support": {
  5388. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  5389. },
  5390. "funding": [
  5391. {
  5392. "url": "https://symfony.com/sponsor",
  5393. "type": "custom"
  5394. },
  5395. {
  5396. "url": "https://github.com/fabpot",
  5397. "type": "github"
  5398. },
  5399. {
  5400. "url": "https://github.com/nicolas-grekas",
  5401. "type": "github"
  5402. },
  5403. {
  5404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5405. "type": "tidelift"
  5406. }
  5407. ],
  5408. "time": "2025-06-27T09:58:17+00:00"
  5409. },
  5410. {
  5411. "name": "symfony/polyfill-intl-icu",
  5412. "version": "v1.33.0",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5416. "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c",
  5421. "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c",
  5422. "shasum": ""
  5423. },
  5424. "require": {
  5425. "php": ">=7.2"
  5426. },
  5427. "suggest": {
  5428. "ext-intl": "For best performance and support of other locales than \"en\""
  5429. },
  5430. "type": "library",
  5431. "extra": {
  5432. "thanks": {
  5433. "url": "https://github.com/symfony/polyfill",
  5434. "name": "symfony/polyfill"
  5435. }
  5436. },
  5437. "autoload": {
  5438. "files": [
  5439. "bootstrap.php"
  5440. ],
  5441. "psr-4": {
  5442. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5443. },
  5444. "classmap": [
  5445. "Resources/stubs"
  5446. ],
  5447. "exclude-from-classmap": [
  5448. "/Tests/"
  5449. ]
  5450. },
  5451. "notification-url": "https://packagist.org/downloads/",
  5452. "license": [
  5453. "MIT"
  5454. ],
  5455. "authors": [
  5456. {
  5457. "name": "Nicolas Grekas",
  5458. "email": "p@tchwork.com"
  5459. },
  5460. {
  5461. "name": "Symfony Community",
  5462. "homepage": "https://symfony.com/contributors"
  5463. }
  5464. ],
  5465. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5466. "homepage": "https://symfony.com",
  5467. "keywords": [
  5468. "compatibility",
  5469. "icu",
  5470. "intl",
  5471. "polyfill",
  5472. "portable",
  5473. "shim"
  5474. ],
  5475. "support": {
  5476. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.33.0"
  5477. },
  5478. "funding": [
  5479. {
  5480. "url": "https://symfony.com/sponsor",
  5481. "type": "custom"
  5482. },
  5483. {
  5484. "url": "https://github.com/fabpot",
  5485. "type": "github"
  5486. },
  5487. {
  5488. "url": "https://github.com/nicolas-grekas",
  5489. "type": "github"
  5490. },
  5491. {
  5492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5493. "type": "tidelift"
  5494. }
  5495. ],
  5496. "time": "2025-06-20T22:24:30+00:00"
  5497. },
  5498. {
  5499. "name": "symfony/polyfill-intl-idn",
  5500. "version": "v1.33.0",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5504. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5509. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5510. "shasum": ""
  5511. },
  5512. "require": {
  5513. "php": ">=7.2",
  5514. "symfony/polyfill-intl-normalizer": "^1.10"
  5515. },
  5516. "suggest": {
  5517. "ext-intl": "For best performance"
  5518. },
  5519. "type": "library",
  5520. "extra": {
  5521. "thanks": {
  5522. "url": "https://github.com/symfony/polyfill",
  5523. "name": "symfony/polyfill"
  5524. }
  5525. },
  5526. "autoload": {
  5527. "files": [
  5528. "bootstrap.php"
  5529. ],
  5530. "psr-4": {
  5531. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5532. }
  5533. },
  5534. "notification-url": "https://packagist.org/downloads/",
  5535. "license": [
  5536. "MIT"
  5537. ],
  5538. "authors": [
  5539. {
  5540. "name": "Laurent Bassin",
  5541. "email": "laurent@bassin.info"
  5542. },
  5543. {
  5544. "name": "Trevor Rowbotham",
  5545. "email": "trevor.rowbotham@pm.me"
  5546. },
  5547. {
  5548. "name": "Symfony Community",
  5549. "homepage": "https://symfony.com/contributors"
  5550. }
  5551. ],
  5552. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5553. "homepage": "https://symfony.com",
  5554. "keywords": [
  5555. "compatibility",
  5556. "idn",
  5557. "intl",
  5558. "polyfill",
  5559. "portable",
  5560. "shim"
  5561. ],
  5562. "support": {
  5563. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  5564. },
  5565. "funding": [
  5566. {
  5567. "url": "https://symfony.com/sponsor",
  5568. "type": "custom"
  5569. },
  5570. {
  5571. "url": "https://github.com/fabpot",
  5572. "type": "github"
  5573. },
  5574. {
  5575. "url": "https://github.com/nicolas-grekas",
  5576. "type": "github"
  5577. },
  5578. {
  5579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5580. "type": "tidelift"
  5581. }
  5582. ],
  5583. "time": "2024-09-10T14:38:51+00:00"
  5584. },
  5585. {
  5586. "name": "symfony/polyfill-intl-normalizer",
  5587. "version": "v1.33.0",
  5588. "source": {
  5589. "type": "git",
  5590. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5591. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5592. },
  5593. "dist": {
  5594. "type": "zip",
  5595. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5596. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5597. "shasum": ""
  5598. },
  5599. "require": {
  5600. "php": ">=7.2"
  5601. },
  5602. "suggest": {
  5603. "ext-intl": "For best performance"
  5604. },
  5605. "type": "library",
  5606. "extra": {
  5607. "thanks": {
  5608. "url": "https://github.com/symfony/polyfill",
  5609. "name": "symfony/polyfill"
  5610. }
  5611. },
  5612. "autoload": {
  5613. "files": [
  5614. "bootstrap.php"
  5615. ],
  5616. "psr-4": {
  5617. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5618. },
  5619. "classmap": [
  5620. "Resources/stubs"
  5621. ]
  5622. },
  5623. "notification-url": "https://packagist.org/downloads/",
  5624. "license": [
  5625. "MIT"
  5626. ],
  5627. "authors": [
  5628. {
  5629. "name": "Nicolas Grekas",
  5630. "email": "p@tchwork.com"
  5631. },
  5632. {
  5633. "name": "Symfony Community",
  5634. "homepage": "https://symfony.com/contributors"
  5635. }
  5636. ],
  5637. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5638. "homepage": "https://symfony.com",
  5639. "keywords": [
  5640. "compatibility",
  5641. "intl",
  5642. "normalizer",
  5643. "polyfill",
  5644. "portable",
  5645. "shim"
  5646. ],
  5647. "support": {
  5648. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  5649. },
  5650. "funding": [
  5651. {
  5652. "url": "https://symfony.com/sponsor",
  5653. "type": "custom"
  5654. },
  5655. {
  5656. "url": "https://github.com/fabpot",
  5657. "type": "github"
  5658. },
  5659. {
  5660. "url": "https://github.com/nicolas-grekas",
  5661. "type": "github"
  5662. },
  5663. {
  5664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5665. "type": "tidelift"
  5666. }
  5667. ],
  5668. "time": "2024-09-09T11:45:10+00:00"
  5669. },
  5670. {
  5671. "name": "symfony/polyfill-mbstring",
  5672. "version": "v1.33.0",
  5673. "source": {
  5674. "type": "git",
  5675. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5676. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5677. },
  5678. "dist": {
  5679. "type": "zip",
  5680. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5681. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5682. "shasum": ""
  5683. },
  5684. "require": {
  5685. "ext-iconv": "*",
  5686. "php": ">=7.2"
  5687. },
  5688. "provide": {
  5689. "ext-mbstring": "*"
  5690. },
  5691. "suggest": {
  5692. "ext-mbstring": "For best performance"
  5693. },
  5694. "type": "library",
  5695. "extra": {
  5696. "thanks": {
  5697. "url": "https://github.com/symfony/polyfill",
  5698. "name": "symfony/polyfill"
  5699. }
  5700. },
  5701. "autoload": {
  5702. "files": [
  5703. "bootstrap.php"
  5704. ],
  5705. "psr-4": {
  5706. "Symfony\\Polyfill\\Mbstring\\": ""
  5707. }
  5708. },
  5709. "notification-url": "https://packagist.org/downloads/",
  5710. "license": [
  5711. "MIT"
  5712. ],
  5713. "authors": [
  5714. {
  5715. "name": "Nicolas Grekas",
  5716. "email": "p@tchwork.com"
  5717. },
  5718. {
  5719. "name": "Symfony Community",
  5720. "homepage": "https://symfony.com/contributors"
  5721. }
  5722. ],
  5723. "description": "Symfony polyfill for the Mbstring extension",
  5724. "homepage": "https://symfony.com",
  5725. "keywords": [
  5726. "compatibility",
  5727. "mbstring",
  5728. "polyfill",
  5729. "portable",
  5730. "shim"
  5731. ],
  5732. "support": {
  5733. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  5734. },
  5735. "funding": [
  5736. {
  5737. "url": "https://symfony.com/sponsor",
  5738. "type": "custom"
  5739. },
  5740. {
  5741. "url": "https://github.com/fabpot",
  5742. "type": "github"
  5743. },
  5744. {
  5745. "url": "https://github.com/nicolas-grekas",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2024-12-23T08:48:59+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/polyfill-php80",
  5757. "version": "v1.33.0",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/polyfill-php80.git",
  5761. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  5766. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": ">=7.2"
  5771. },
  5772. "type": "library",
  5773. "extra": {
  5774. "thanks": {
  5775. "url": "https://github.com/symfony/polyfill",
  5776. "name": "symfony/polyfill"
  5777. }
  5778. },
  5779. "autoload": {
  5780. "files": [
  5781. "bootstrap.php"
  5782. ],
  5783. "psr-4": {
  5784. "Symfony\\Polyfill\\Php80\\": ""
  5785. },
  5786. "classmap": [
  5787. "Resources/stubs"
  5788. ]
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "MIT"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "Ion Bazan",
  5797. "email": "ion.bazan@gmail.com"
  5798. },
  5799. {
  5800. "name": "Nicolas Grekas",
  5801. "email": "p@tchwork.com"
  5802. },
  5803. {
  5804. "name": "Symfony Community",
  5805. "homepage": "https://symfony.com/contributors"
  5806. }
  5807. ],
  5808. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5809. "homepage": "https://symfony.com",
  5810. "keywords": [
  5811. "compatibility",
  5812. "polyfill",
  5813. "portable",
  5814. "shim"
  5815. ],
  5816. "support": {
  5817. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  5818. },
  5819. "funding": [
  5820. {
  5821. "url": "https://symfony.com/sponsor",
  5822. "type": "custom"
  5823. },
  5824. {
  5825. "url": "https://github.com/fabpot",
  5826. "type": "github"
  5827. },
  5828. {
  5829. "url": "https://github.com/nicolas-grekas",
  5830. "type": "github"
  5831. },
  5832. {
  5833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5834. "type": "tidelift"
  5835. }
  5836. ],
  5837. "time": "2025-01-02T08:10:11+00:00"
  5838. },
  5839. {
  5840. "name": "symfony/polyfill-php83",
  5841. "version": "v1.33.0",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/symfony/polyfill-php83.git",
  5845. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  5850. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  5851. "shasum": ""
  5852. },
  5853. "require": {
  5854. "php": ">=7.2"
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "thanks": {
  5859. "url": "https://github.com/symfony/polyfill",
  5860. "name": "symfony/polyfill"
  5861. }
  5862. },
  5863. "autoload": {
  5864. "files": [
  5865. "bootstrap.php"
  5866. ],
  5867. "psr-4": {
  5868. "Symfony\\Polyfill\\Php83\\": ""
  5869. },
  5870. "classmap": [
  5871. "Resources/stubs"
  5872. ]
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "MIT"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "Nicolas Grekas",
  5881. "email": "p@tchwork.com"
  5882. },
  5883. {
  5884. "name": "Symfony Community",
  5885. "homepage": "https://symfony.com/contributors"
  5886. }
  5887. ],
  5888. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5889. "homepage": "https://symfony.com",
  5890. "keywords": [
  5891. "compatibility",
  5892. "polyfill",
  5893. "portable",
  5894. "shim"
  5895. ],
  5896. "support": {
  5897. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  5898. },
  5899. "funding": [
  5900. {
  5901. "url": "https://symfony.com/sponsor",
  5902. "type": "custom"
  5903. },
  5904. {
  5905. "url": "https://github.com/fabpot",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://github.com/nicolas-grekas",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2025-07-08T02:45:35+00:00"
  5918. },
  5919. {
  5920. "name": "symfony/polyfill-php84",
  5921. "version": "v1.33.0",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/symfony/polyfill-php84.git",
  5925. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  5930. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=7.2"
  5935. },
  5936. "type": "library",
  5937. "extra": {
  5938. "thanks": {
  5939. "url": "https://github.com/symfony/polyfill",
  5940. "name": "symfony/polyfill"
  5941. }
  5942. },
  5943. "autoload": {
  5944. "files": [
  5945. "bootstrap.php"
  5946. ],
  5947. "psr-4": {
  5948. "Symfony\\Polyfill\\Php84\\": ""
  5949. },
  5950. "classmap": [
  5951. "Resources/stubs"
  5952. ]
  5953. },
  5954. "notification-url": "https://packagist.org/downloads/",
  5955. "license": [
  5956. "MIT"
  5957. ],
  5958. "authors": [
  5959. {
  5960. "name": "Nicolas Grekas",
  5961. "email": "p@tchwork.com"
  5962. },
  5963. {
  5964. "name": "Symfony Community",
  5965. "homepage": "https://symfony.com/contributors"
  5966. }
  5967. ],
  5968. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5969. "homepage": "https://symfony.com",
  5970. "keywords": [
  5971. "compatibility",
  5972. "polyfill",
  5973. "portable",
  5974. "shim"
  5975. ],
  5976. "support": {
  5977. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://symfony.com/sponsor",
  5982. "type": "custom"
  5983. },
  5984. {
  5985. "url": "https://github.com/fabpot",
  5986. "type": "github"
  5987. },
  5988. {
  5989. "url": "https://github.com/nicolas-grekas",
  5990. "type": "github"
  5991. },
  5992. {
  5993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5994. "type": "tidelift"
  5995. }
  5996. ],
  5997. "time": "2025-06-24T13:30:11+00:00"
  5998. },
  5999. {
  6000. "name": "symfony/polyfill-php85",
  6001. "version": "v1.33.0",
  6002. "source": {
  6003. "type": "git",
  6004. "url": "https://github.com/symfony/polyfill-php85.git",
  6005. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
  6006. },
  6007. "dist": {
  6008. "type": "zip",
  6009. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  6010. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  6011. "shasum": ""
  6012. },
  6013. "require": {
  6014. "php": ">=7.2"
  6015. },
  6016. "type": "library",
  6017. "extra": {
  6018. "thanks": {
  6019. "url": "https://github.com/symfony/polyfill",
  6020. "name": "symfony/polyfill"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "files": [
  6025. "bootstrap.php"
  6026. ],
  6027. "psr-4": {
  6028. "Symfony\\Polyfill\\Php85\\": ""
  6029. },
  6030. "classmap": [
  6031. "Resources/stubs"
  6032. ]
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Nicolas Grekas",
  6041. "email": "p@tchwork.com"
  6042. },
  6043. {
  6044. "name": "Symfony Community",
  6045. "homepage": "https://symfony.com/contributors"
  6046. }
  6047. ],
  6048. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  6049. "homepage": "https://symfony.com",
  6050. "keywords": [
  6051. "compatibility",
  6052. "polyfill",
  6053. "portable",
  6054. "shim"
  6055. ],
  6056. "support": {
  6057. "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
  6058. },
  6059. "funding": [
  6060. {
  6061. "url": "https://symfony.com/sponsor",
  6062. "type": "custom"
  6063. },
  6064. {
  6065. "url": "https://github.com/fabpot",
  6066. "type": "github"
  6067. },
  6068. {
  6069. "url": "https://github.com/nicolas-grekas",
  6070. "type": "github"
  6071. },
  6072. {
  6073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6074. "type": "tidelift"
  6075. }
  6076. ],
  6077. "time": "2025-06-23T16:12:55+00:00"
  6078. },
  6079. {
  6080. "name": "symfony/process",
  6081. "version": "v7.4.5",
  6082. "source": {
  6083. "type": "git",
  6084. "url": "https://github.com/symfony/process.git",
  6085. "reference": "608476f4604102976d687c483ac63a79ba18cc97"
  6086. },
  6087. "dist": {
  6088. "type": "zip",
  6089. "url": "https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97",
  6090. "reference": "608476f4604102976d687c483ac63a79ba18cc97",
  6091. "shasum": ""
  6092. },
  6093. "require": {
  6094. "php": ">=8.2"
  6095. },
  6096. "type": "library",
  6097. "autoload": {
  6098. "psr-4": {
  6099. "Symfony\\Component\\Process\\": ""
  6100. },
  6101. "exclude-from-classmap": [
  6102. "/Tests/"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Fabien Potencier",
  6112. "email": "fabien@symfony.com"
  6113. },
  6114. {
  6115. "name": "Symfony Community",
  6116. "homepage": "https://symfony.com/contributors"
  6117. }
  6118. ],
  6119. "description": "Executes commands in sub-processes",
  6120. "homepage": "https://symfony.com",
  6121. "support": {
  6122. "source": "https://github.com/symfony/process/tree/v7.4.5"
  6123. },
  6124. "funding": [
  6125. {
  6126. "url": "https://symfony.com/sponsor",
  6127. "type": "custom"
  6128. },
  6129. {
  6130. "url": "https://github.com/fabpot",
  6131. "type": "github"
  6132. },
  6133. {
  6134. "url": "https://github.com/nicolas-grekas",
  6135. "type": "github"
  6136. },
  6137. {
  6138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6139. "type": "tidelift"
  6140. }
  6141. ],
  6142. "time": "2026-01-26T15:07:59+00:00"
  6143. },
  6144. {
  6145. "name": "symfony/property-access",
  6146. "version": "v7.4.4",
  6147. "source": {
  6148. "type": "git",
  6149. "url": "https://github.com/symfony/property-access.git",
  6150. "reference": "fa49bf1ca8fce1ba0e2dba4e4658554cfb9364b1"
  6151. },
  6152. "dist": {
  6153. "type": "zip",
  6154. "url": "https://api.github.com/repos/symfony/property-access/zipball/fa49bf1ca8fce1ba0e2dba4e4658554cfb9364b1",
  6155. "reference": "fa49bf1ca8fce1ba0e2dba4e4658554cfb9364b1",
  6156. "shasum": ""
  6157. },
  6158. "require": {
  6159. "php": ">=8.2",
  6160. "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4"
  6161. },
  6162. "require-dev": {
  6163. "symfony/cache": "^6.4|^7.0|^8.0",
  6164. "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0"
  6165. },
  6166. "type": "library",
  6167. "autoload": {
  6168. "psr-4": {
  6169. "Symfony\\Component\\PropertyAccess\\": ""
  6170. },
  6171. "exclude-from-classmap": [
  6172. "/Tests/"
  6173. ]
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "MIT"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Fabien Potencier",
  6182. "email": "fabien@symfony.com"
  6183. },
  6184. {
  6185. "name": "Symfony Community",
  6186. "homepage": "https://symfony.com/contributors"
  6187. }
  6188. ],
  6189. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6190. "homepage": "https://symfony.com",
  6191. "keywords": [
  6192. "access",
  6193. "array",
  6194. "extraction",
  6195. "index",
  6196. "injection",
  6197. "object",
  6198. "property",
  6199. "property-path",
  6200. "reflection"
  6201. ],
  6202. "support": {
  6203. "source": "https://github.com/symfony/property-access/tree/v7.4.4"
  6204. },
  6205. "funding": [
  6206. {
  6207. "url": "https://symfony.com/sponsor",
  6208. "type": "custom"
  6209. },
  6210. {
  6211. "url": "https://github.com/fabpot",
  6212. "type": "github"
  6213. },
  6214. {
  6215. "url": "https://github.com/nicolas-grekas",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2026-01-05T08:47:25+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/property-info",
  6227. "version": "v7.4.5",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/property-info.git",
  6231. "reference": "1c9d326bd69602561e2ea467a16c09b5972eee21"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/property-info/zipball/1c9d326bd69602561e2ea467a16c09b5972eee21",
  6236. "reference": "1c9d326bd69602561e2ea467a16c09b5972eee21",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "php": ">=8.2",
  6241. "symfony/deprecation-contracts": "^2.5|^3",
  6242. "symfony/string": "^6.4|^7.0|^8.0",
  6243. "symfony/type-info": "~7.3.10|^7.4.4|^8.0.4"
  6244. },
  6245. "conflict": {
  6246. "phpdocumentor/reflection-docblock": "<5.2|>=6",
  6247. "phpdocumentor/type-resolver": "<1.5.1",
  6248. "symfony/cache": "<6.4",
  6249. "symfony/dependency-injection": "<6.4",
  6250. "symfony/serializer": "<6.4"
  6251. },
  6252. "require-dev": {
  6253. "phpdocumentor/reflection-docblock": "^5.2",
  6254. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6255. "symfony/cache": "^6.4|^7.0|^8.0",
  6256. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6257. "symfony/serializer": "^6.4|^7.0|^8.0"
  6258. },
  6259. "type": "library",
  6260. "autoload": {
  6261. "psr-4": {
  6262. "Symfony\\Component\\PropertyInfo\\": ""
  6263. },
  6264. "exclude-from-classmap": [
  6265. "/Tests/"
  6266. ]
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Kévin Dunglas",
  6275. "email": "dunglas@gmail.com"
  6276. },
  6277. {
  6278. "name": "Symfony Community",
  6279. "homepage": "https://symfony.com/contributors"
  6280. }
  6281. ],
  6282. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6283. "homepage": "https://symfony.com",
  6284. "keywords": [
  6285. "doctrine",
  6286. "phpdoc",
  6287. "property",
  6288. "symfony",
  6289. "type",
  6290. "validator"
  6291. ],
  6292. "support": {
  6293. "source": "https://github.com/symfony/property-info/tree/v7.4.5"
  6294. },
  6295. "funding": [
  6296. {
  6297. "url": "https://symfony.com/sponsor",
  6298. "type": "custom"
  6299. },
  6300. {
  6301. "url": "https://github.com/fabpot",
  6302. "type": "github"
  6303. },
  6304. {
  6305. "url": "https://github.com/nicolas-grekas",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2026-01-27T16:16:02+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/routing",
  6317. "version": "v7.4.4",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/routing.git",
  6321. "reference": "0798827fe2c79caeed41d70b680c2c3507d10147"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/routing/zipball/0798827fe2c79caeed41d70b680c2c3507d10147",
  6326. "reference": "0798827fe2c79caeed41d70b680c2c3507d10147",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "php": ">=8.2",
  6331. "symfony/deprecation-contracts": "^2.5|^3"
  6332. },
  6333. "conflict": {
  6334. "symfony/config": "<6.4",
  6335. "symfony/dependency-injection": "<6.4",
  6336. "symfony/yaml": "<6.4"
  6337. },
  6338. "require-dev": {
  6339. "psr/log": "^1|^2|^3",
  6340. "symfony/config": "^6.4|^7.0|^8.0",
  6341. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6342. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6343. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6344. "symfony/yaml": "^6.4|^7.0|^8.0"
  6345. },
  6346. "type": "library",
  6347. "autoload": {
  6348. "psr-4": {
  6349. "Symfony\\Component\\Routing\\": ""
  6350. },
  6351. "exclude-from-classmap": [
  6352. "/Tests/"
  6353. ]
  6354. },
  6355. "notification-url": "https://packagist.org/downloads/",
  6356. "license": [
  6357. "MIT"
  6358. ],
  6359. "authors": [
  6360. {
  6361. "name": "Fabien Potencier",
  6362. "email": "fabien@symfony.com"
  6363. },
  6364. {
  6365. "name": "Symfony Community",
  6366. "homepage": "https://symfony.com/contributors"
  6367. }
  6368. ],
  6369. "description": "Maps an HTTP request to a set of configuration variables",
  6370. "homepage": "https://symfony.com",
  6371. "keywords": [
  6372. "router",
  6373. "routing",
  6374. "uri",
  6375. "url"
  6376. ],
  6377. "support": {
  6378. "source": "https://github.com/symfony/routing/tree/v7.4.4"
  6379. },
  6380. "funding": [
  6381. {
  6382. "url": "https://symfony.com/sponsor",
  6383. "type": "custom"
  6384. },
  6385. {
  6386. "url": "https://github.com/fabpot",
  6387. "type": "github"
  6388. },
  6389. {
  6390. "url": "https://github.com/nicolas-grekas",
  6391. "type": "github"
  6392. },
  6393. {
  6394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6395. "type": "tidelift"
  6396. }
  6397. ],
  6398. "time": "2026-01-12T12:19:02+00:00"
  6399. },
  6400. {
  6401. "name": "symfony/runtime",
  6402. "version": "v7.4.1",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/symfony/runtime.git",
  6406. "reference": "876f902a6cb6b26c003de244188c06b2ba1c172f"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/symfony/runtime/zipball/876f902a6cb6b26c003de244188c06b2ba1c172f",
  6411. "reference": "876f902a6cb6b26c003de244188c06b2ba1c172f",
  6412. "shasum": ""
  6413. },
  6414. "require": {
  6415. "composer-plugin-api": "^1.0|^2.0",
  6416. "php": ">=8.2"
  6417. },
  6418. "conflict": {
  6419. "symfony/dotenv": "<6.4"
  6420. },
  6421. "require-dev": {
  6422. "composer/composer": "^2.6",
  6423. "symfony/console": "^6.4|^7.0|^8.0",
  6424. "symfony/dotenv": "^6.4|^7.0|^8.0",
  6425. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6426. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  6427. },
  6428. "type": "composer-plugin",
  6429. "extra": {
  6430. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6431. },
  6432. "autoload": {
  6433. "psr-4": {
  6434. "Symfony\\Component\\Runtime\\": "",
  6435. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6436. },
  6437. "exclude-from-classmap": [
  6438. "/Tests/"
  6439. ]
  6440. },
  6441. "notification-url": "https://packagist.org/downloads/",
  6442. "license": [
  6443. "MIT"
  6444. ],
  6445. "authors": [
  6446. {
  6447. "name": "Nicolas Grekas",
  6448. "email": "p@tchwork.com"
  6449. },
  6450. {
  6451. "name": "Symfony Community",
  6452. "homepage": "https://symfony.com/contributors"
  6453. }
  6454. ],
  6455. "description": "Enables decoupling PHP applications from global state",
  6456. "homepage": "https://symfony.com",
  6457. "keywords": [
  6458. "runtime"
  6459. ],
  6460. "support": {
  6461. "source": "https://github.com/symfony/runtime/tree/v7.4.1"
  6462. },
  6463. "funding": [
  6464. {
  6465. "url": "https://symfony.com/sponsor",
  6466. "type": "custom"
  6467. },
  6468. {
  6469. "url": "https://github.com/fabpot",
  6470. "type": "github"
  6471. },
  6472. {
  6473. "url": "https://github.com/nicolas-grekas",
  6474. "type": "github"
  6475. },
  6476. {
  6477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6478. "type": "tidelift"
  6479. }
  6480. ],
  6481. "time": "2025-12-05T14:04:53+00:00"
  6482. },
  6483. {
  6484. "name": "symfony/security-bundle",
  6485. "version": "v7.4.4",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/symfony/security-bundle.git",
  6489. "reference": "7281b644c76985ddf3927f5e65152b0cc29d175b"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/7281b644c76985ddf3927f5e65152b0cc29d175b",
  6494. "reference": "7281b644c76985ddf3927f5e65152b0cc29d175b",
  6495. "shasum": ""
  6496. },
  6497. "require": {
  6498. "composer-runtime-api": ">=2.1",
  6499. "ext-xml": "*",
  6500. "php": ">=8.2",
  6501. "symfony/clock": "^6.4|^7.0|^8.0",
  6502. "symfony/config": "^7.4|^8.0",
  6503. "symfony/dependency-injection": "^6.4.11|^7.1.4|^8.0",
  6504. "symfony/deprecation-contracts": "^2.5|^3",
  6505. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  6506. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6507. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  6508. "symfony/password-hasher": "^6.4|^7.0|^8.0",
  6509. "symfony/security-core": "^7.4|^8.0",
  6510. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  6511. "symfony/security-http": "^7.4|^8.0",
  6512. "symfony/service-contracts": "^2.5|^3"
  6513. },
  6514. "conflict": {
  6515. "symfony/browser-kit": "<6.4",
  6516. "symfony/console": "<6.4",
  6517. "symfony/framework-bundle": "<6.4",
  6518. "symfony/http-client": "<6.4",
  6519. "symfony/ldap": "<6.4",
  6520. "symfony/serializer": "<6.4",
  6521. "symfony/twig-bundle": "<6.4",
  6522. "symfony/validator": "<6.4"
  6523. },
  6524. "require-dev": {
  6525. "symfony/asset": "^6.4|^7.0|^8.0",
  6526. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  6527. "symfony/console": "^6.4|^7.0|^8.0",
  6528. "symfony/css-selector": "^6.4|^7.0|^8.0",
  6529. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  6530. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6531. "symfony/form": "^6.4|^7.0|^8.0",
  6532. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  6533. "symfony/http-client": "^6.4|^7.0|^8.0",
  6534. "symfony/ldap": "^6.4|^7.0|^8.0",
  6535. "symfony/process": "^6.4|^7.0|^8.0",
  6536. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  6537. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  6538. "symfony/serializer": "^6.4|^7.0|^8.0",
  6539. "symfony/translation": "^6.4|^7.0|^8.0",
  6540. "symfony/twig-bridge": "^6.4|^7.0|^8.0",
  6541. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  6542. "symfony/validator": "^6.4|^7.0|^8.0",
  6543. "symfony/yaml": "^6.4|^7.0|^8.0",
  6544. "twig/twig": "^3.15",
  6545. "web-token/jwt-library": "^3.3.2|^4.0"
  6546. },
  6547. "type": "symfony-bundle",
  6548. "autoload": {
  6549. "psr-4": {
  6550. "Symfony\\Bundle\\SecurityBundle\\": ""
  6551. },
  6552. "exclude-from-classmap": [
  6553. "/Tests/"
  6554. ]
  6555. },
  6556. "notification-url": "https://packagist.org/downloads/",
  6557. "license": [
  6558. "MIT"
  6559. ],
  6560. "authors": [
  6561. {
  6562. "name": "Fabien Potencier",
  6563. "email": "fabien@symfony.com"
  6564. },
  6565. {
  6566. "name": "Symfony Community",
  6567. "homepage": "https://symfony.com/contributors"
  6568. }
  6569. ],
  6570. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6571. "homepage": "https://symfony.com",
  6572. "support": {
  6573. "source": "https://github.com/symfony/security-bundle/tree/v7.4.4"
  6574. },
  6575. "funding": [
  6576. {
  6577. "url": "https://symfony.com/sponsor",
  6578. "type": "custom"
  6579. },
  6580. {
  6581. "url": "https://github.com/fabpot",
  6582. "type": "github"
  6583. },
  6584. {
  6585. "url": "https://github.com/nicolas-grekas",
  6586. "type": "github"
  6587. },
  6588. {
  6589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6590. "type": "tidelift"
  6591. }
  6592. ],
  6593. "time": "2026-01-10T13:56:23+00:00"
  6594. },
  6595. {
  6596. "name": "symfony/security-core",
  6597. "version": "v7.4.4",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/symfony/security-core.git",
  6601. "reference": "958a70725a8d669bec6721f4cd318d209712e944"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/symfony/security-core/zipball/958a70725a8d669bec6721f4cd318d209712e944",
  6606. "reference": "958a70725a8d669bec6721f4cd318d209712e944",
  6607. "shasum": ""
  6608. },
  6609. "require": {
  6610. "php": ">=8.2",
  6611. "symfony/deprecation-contracts": "^2.5|^3",
  6612. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6613. "symfony/password-hasher": "^6.4|^7.0|^8.0",
  6614. "symfony/service-contracts": "^2.5|^3"
  6615. },
  6616. "conflict": {
  6617. "symfony/dependency-injection": "<6.4",
  6618. "symfony/event-dispatcher": "<6.4",
  6619. "symfony/http-foundation": "<6.4",
  6620. "symfony/ldap": "<6.4",
  6621. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6622. "symfony/validator": "<6.4"
  6623. },
  6624. "require-dev": {
  6625. "psr/cache": "^1.0|^2.0|^3.0",
  6626. "psr/container": "^1.1|^2.0",
  6627. "psr/log": "^1|^2|^3",
  6628. "symfony/cache": "^6.4|^7.0|^8.0",
  6629. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6630. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  6631. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6632. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6633. "symfony/ldap": "^6.4|^7.0|^8.0",
  6634. "symfony/string": "^6.4|^7.0|^8.0",
  6635. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  6636. "symfony/validator": "^6.4|^7.0|^8.0"
  6637. },
  6638. "type": "library",
  6639. "autoload": {
  6640. "psr-4": {
  6641. "Symfony\\Component\\Security\\Core\\": ""
  6642. },
  6643. "exclude-from-classmap": [
  6644. "/Tests/"
  6645. ]
  6646. },
  6647. "notification-url": "https://packagist.org/downloads/",
  6648. "license": [
  6649. "MIT"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "Fabien Potencier",
  6654. "email": "fabien@symfony.com"
  6655. },
  6656. {
  6657. "name": "Symfony Community",
  6658. "homepage": "https://symfony.com/contributors"
  6659. }
  6660. ],
  6661. "description": "Symfony Security Component - Core Library",
  6662. "homepage": "https://symfony.com",
  6663. "support": {
  6664. "source": "https://github.com/symfony/security-core/tree/v7.4.4"
  6665. },
  6666. "funding": [
  6667. {
  6668. "url": "https://symfony.com/sponsor",
  6669. "type": "custom"
  6670. },
  6671. {
  6672. "url": "https://github.com/fabpot",
  6673. "type": "github"
  6674. },
  6675. {
  6676. "url": "https://github.com/nicolas-grekas",
  6677. "type": "github"
  6678. },
  6679. {
  6680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6681. "type": "tidelift"
  6682. }
  6683. ],
  6684. "time": "2026-01-14T09:36:49+00:00"
  6685. },
  6686. {
  6687. "name": "symfony/security-csrf",
  6688. "version": "v7.4.4",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/symfony/security-csrf.git",
  6692. "reference": "06a2a2f90f355b8b4ec23685fa6ceff8d5dc41cc"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/06a2a2f90f355b8b4ec23685fa6ceff8d5dc41cc",
  6697. "reference": "06a2a2f90f355b8b4ec23685fa6ceff8d5dc41cc",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=8.2",
  6702. "symfony/security-core": "^6.4|^7.0|^8.0"
  6703. },
  6704. "conflict": {
  6705. "symfony/http-foundation": "<6.4"
  6706. },
  6707. "require-dev": {
  6708. "psr/log": "^1|^2|^3",
  6709. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6710. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  6711. },
  6712. "type": "library",
  6713. "autoload": {
  6714. "psr-4": {
  6715. "Symfony\\Component\\Security\\Csrf\\": ""
  6716. },
  6717. "exclude-from-classmap": [
  6718. "/Tests/"
  6719. ]
  6720. },
  6721. "notification-url": "https://packagist.org/downloads/",
  6722. "license": [
  6723. "MIT"
  6724. ],
  6725. "authors": [
  6726. {
  6727. "name": "Fabien Potencier",
  6728. "email": "fabien@symfony.com"
  6729. },
  6730. {
  6731. "name": "Symfony Community",
  6732. "homepage": "https://symfony.com/contributors"
  6733. }
  6734. ],
  6735. "description": "Symfony Security Component - CSRF Library",
  6736. "homepage": "https://symfony.com",
  6737. "support": {
  6738. "source": "https://github.com/symfony/security-csrf/tree/v7.4.4"
  6739. },
  6740. "funding": [
  6741. {
  6742. "url": "https://symfony.com/sponsor",
  6743. "type": "custom"
  6744. },
  6745. {
  6746. "url": "https://github.com/fabpot",
  6747. "type": "github"
  6748. },
  6749. {
  6750. "url": "https://github.com/nicolas-grekas",
  6751. "type": "github"
  6752. },
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2026-01-14T10:11:16+00:00"
  6759. },
  6760. {
  6761. "name": "symfony/security-http",
  6762. "version": "v7.4.4",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/symfony/security-http.git",
  6766. "reference": "9d41a473637bf5d074c5f5a73177fd9d769407fd"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/symfony/security-http/zipball/9d41a473637bf5d074c5f5a73177fd9d769407fd",
  6771. "reference": "9d41a473637bf5d074c5f5a73177fd9d769407fd",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": ">=8.2",
  6776. "symfony/deprecation-contracts": "^2.5|^3",
  6777. "symfony/event-dispatcher": "^6.4|^7.0",
  6778. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6779. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6780. "symfony/polyfill-mbstring": "~1.0",
  6781. "symfony/property-access": "^6.4|^7.0|^8.0",
  6782. "symfony/security-core": "^7.3|^8.0",
  6783. "symfony/service-contracts": "^2.5|^3"
  6784. },
  6785. "conflict": {
  6786. "symfony/clock": "<6.4",
  6787. "symfony/http-client-contracts": "<3.0",
  6788. "symfony/security-bundle": "<6.4",
  6789. "symfony/security-csrf": "<6.4"
  6790. },
  6791. "require-dev": {
  6792. "psr/log": "^1|^2|^3",
  6793. "symfony/cache": "^6.4|^7.0|^8.0",
  6794. "symfony/clock": "^6.4|^7.0|^8.0",
  6795. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6796. "symfony/http-client": "^6.4|^7.0|^8.0",
  6797. "symfony/http-client-contracts": "^3.0",
  6798. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  6799. "symfony/routing": "^6.4|^7.0|^8.0",
  6800. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  6801. "symfony/translation": "^6.4|^7.0|^8.0",
  6802. "web-token/jwt-library": "^3.3.2|^4.0"
  6803. },
  6804. "type": "library",
  6805. "autoload": {
  6806. "psr-4": {
  6807. "Symfony\\Component\\Security\\Http\\": ""
  6808. },
  6809. "exclude-from-classmap": [
  6810. "/Tests/"
  6811. ]
  6812. },
  6813. "notification-url": "https://packagist.org/downloads/",
  6814. "license": [
  6815. "MIT"
  6816. ],
  6817. "authors": [
  6818. {
  6819. "name": "Fabien Potencier",
  6820. "email": "fabien@symfony.com"
  6821. },
  6822. {
  6823. "name": "Symfony Community",
  6824. "homepage": "https://symfony.com/contributors"
  6825. }
  6826. ],
  6827. "description": "Symfony Security Component - HTTP Integration",
  6828. "homepage": "https://symfony.com",
  6829. "support": {
  6830. "source": "https://github.com/symfony/security-http/tree/v7.4.4"
  6831. },
  6832. "funding": [
  6833. {
  6834. "url": "https://symfony.com/sponsor",
  6835. "type": "custom"
  6836. },
  6837. {
  6838. "url": "https://github.com/fabpot",
  6839. "type": "github"
  6840. },
  6841. {
  6842. "url": "https://github.com/nicolas-grekas",
  6843. "type": "github"
  6844. },
  6845. {
  6846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6847. "type": "tidelift"
  6848. }
  6849. ],
  6850. "time": "2026-01-14T10:11:16+00:00"
  6851. },
  6852. {
  6853. "name": "symfony/serializer",
  6854. "version": "v7.4.5",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/symfony/serializer.git",
  6858. "reference": "480cd1237c98ab1219c20945b92c9d4480a44f47"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/symfony/serializer/zipball/480cd1237c98ab1219c20945b92c9d4480a44f47",
  6863. "reference": "480cd1237c98ab1219c20945b92c9d4480a44f47",
  6864. "shasum": ""
  6865. },
  6866. "require": {
  6867. "php": ">=8.2",
  6868. "symfony/deprecation-contracts": "^2.5|^3",
  6869. "symfony/polyfill-ctype": "~1.8",
  6870. "symfony/polyfill-php84": "^1.30"
  6871. },
  6872. "conflict": {
  6873. "phpdocumentor/reflection-docblock": "<5.2|>=6",
  6874. "phpdocumentor/type-resolver": "<1.5.1",
  6875. "symfony/dependency-injection": "<6.4",
  6876. "symfony/property-access": "<6.4",
  6877. "symfony/property-info": "<6.4",
  6878. "symfony/uid": "<6.4",
  6879. "symfony/validator": "<6.4",
  6880. "symfony/yaml": "<6.4"
  6881. },
  6882. "require-dev": {
  6883. "phpdocumentor/reflection-docblock": "^5.2",
  6884. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6885. "seld/jsonlint": "^1.10",
  6886. "symfony/cache": "^6.4|^7.0|^8.0",
  6887. "symfony/config": "^6.4|^7.0|^8.0",
  6888. "symfony/console": "^6.4|^7.0|^8.0",
  6889. "symfony/dependency-injection": "^7.2|^8.0",
  6890. "symfony/error-handler": "^6.4|^7.0|^8.0",
  6891. "symfony/filesystem": "^6.4|^7.0|^8.0",
  6892. "symfony/form": "^6.4|^7.0|^8.0",
  6893. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6894. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6895. "symfony/messenger": "^6.4|^7.0|^8.0",
  6896. "symfony/mime": "^6.4|^7.0|^8.0",
  6897. "symfony/property-access": "^6.4|^7.0|^8.0",
  6898. "symfony/property-info": "^6.4|^7.0|^8.0",
  6899. "symfony/translation-contracts": "^2.5|^3",
  6900. "symfony/type-info": "^7.1.8|^8.0",
  6901. "symfony/uid": "^6.4|^7.0|^8.0",
  6902. "symfony/validator": "^6.4|^7.0|^8.0",
  6903. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  6904. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  6905. "symfony/yaml": "^6.4|^7.0|^8.0"
  6906. },
  6907. "type": "library",
  6908. "autoload": {
  6909. "psr-4": {
  6910. "Symfony\\Component\\Serializer\\": ""
  6911. },
  6912. "exclude-from-classmap": [
  6913. "/Tests/"
  6914. ]
  6915. },
  6916. "notification-url": "https://packagist.org/downloads/",
  6917. "license": [
  6918. "MIT"
  6919. ],
  6920. "authors": [
  6921. {
  6922. "name": "Fabien Potencier",
  6923. "email": "fabien@symfony.com"
  6924. },
  6925. {
  6926. "name": "Symfony Community",
  6927. "homepage": "https://symfony.com/contributors"
  6928. }
  6929. ],
  6930. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6931. "homepage": "https://symfony.com",
  6932. "support": {
  6933. "source": "https://github.com/symfony/serializer/tree/v7.4.5"
  6934. },
  6935. "funding": [
  6936. {
  6937. "url": "https://symfony.com/sponsor",
  6938. "type": "custom"
  6939. },
  6940. {
  6941. "url": "https://github.com/fabpot",
  6942. "type": "github"
  6943. },
  6944. {
  6945. "url": "https://github.com/nicolas-grekas",
  6946. "type": "github"
  6947. },
  6948. {
  6949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6950. "type": "tidelift"
  6951. }
  6952. ],
  6953. "time": "2026-01-27T08:59:58+00:00"
  6954. },
  6955. {
  6956. "name": "symfony/service-contracts",
  6957. "version": "v3.6.1",
  6958. "source": {
  6959. "type": "git",
  6960. "url": "https://github.com/symfony/service-contracts.git",
  6961. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  6962. },
  6963. "dist": {
  6964. "type": "zip",
  6965. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  6966. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  6967. "shasum": ""
  6968. },
  6969. "require": {
  6970. "php": ">=8.1",
  6971. "psr/container": "^1.1|^2.0",
  6972. "symfony/deprecation-contracts": "^2.5|^3"
  6973. },
  6974. "conflict": {
  6975. "ext-psr": "<1.1|>=2"
  6976. },
  6977. "type": "library",
  6978. "extra": {
  6979. "thanks": {
  6980. "url": "https://github.com/symfony/contracts",
  6981. "name": "symfony/contracts"
  6982. },
  6983. "branch-alias": {
  6984. "dev-main": "3.6-dev"
  6985. }
  6986. },
  6987. "autoload": {
  6988. "psr-4": {
  6989. "Symfony\\Contracts\\Service\\": ""
  6990. },
  6991. "exclude-from-classmap": [
  6992. "/Test/"
  6993. ]
  6994. },
  6995. "notification-url": "https://packagist.org/downloads/",
  6996. "license": [
  6997. "MIT"
  6998. ],
  6999. "authors": [
  7000. {
  7001. "name": "Nicolas Grekas",
  7002. "email": "p@tchwork.com"
  7003. },
  7004. {
  7005. "name": "Symfony Community",
  7006. "homepage": "https://symfony.com/contributors"
  7007. }
  7008. ],
  7009. "description": "Generic abstractions related to writing services",
  7010. "homepage": "https://symfony.com",
  7011. "keywords": [
  7012. "abstractions",
  7013. "contracts",
  7014. "decoupling",
  7015. "interfaces",
  7016. "interoperability",
  7017. "standards"
  7018. ],
  7019. "support": {
  7020. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  7021. },
  7022. "funding": [
  7023. {
  7024. "url": "https://symfony.com/sponsor",
  7025. "type": "custom"
  7026. },
  7027. {
  7028. "url": "https://github.com/fabpot",
  7029. "type": "github"
  7030. },
  7031. {
  7032. "url": "https://github.com/nicolas-grekas",
  7033. "type": "github"
  7034. },
  7035. {
  7036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7037. "type": "tidelift"
  7038. }
  7039. ],
  7040. "time": "2025-07-15T11:30:57+00:00"
  7041. },
  7042. {
  7043. "name": "symfony/stimulus-bundle",
  7044. "version": "v2.32.0",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/symfony/stimulus-bundle.git",
  7048. "reference": "dfbf6b443bb381cb611e06f64dc23603b614b575"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/dfbf6b443bb381cb611e06f64dc23603b614b575",
  7053. "reference": "dfbf6b443bb381cb611e06f64dc23603b614b575",
  7054. "shasum": ""
  7055. },
  7056. "require": {
  7057. "php": ">=8.1",
  7058. "symfony/config": "^5.4|^6.0|^7.0|^8.0",
  7059. "symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
  7060. "symfony/deprecation-contracts": "^2.0|^3.0",
  7061. "symfony/finder": "^5.4|^6.0|^7.0|^8.0",
  7062. "symfony/http-kernel": "^5.4|^6.0|^7.0|^8.0",
  7063. "twig/twig": "^2.15.3|^3.8"
  7064. },
  7065. "require-dev": {
  7066. "symfony/asset-mapper": "^6.3|^7.0|^8.0",
  7067. "symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
  7068. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0|^8.0",
  7069. "symfony/twig-bundle": "^5.4|^6.0|^7.0|^8.0",
  7070. "zenstruck/browser": "^1.4"
  7071. },
  7072. "type": "symfony-bundle",
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Symfony\\UX\\StimulusBundle\\": "src"
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Symfony Community",
  7085. "homepage": "https://symfony.com/contributors"
  7086. }
  7087. ],
  7088. "description": "Integration with your Symfony app & Stimulus!",
  7089. "keywords": [
  7090. "symfony-ux"
  7091. ],
  7092. "support": {
  7093. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.32.0"
  7094. },
  7095. "funding": [
  7096. {
  7097. "url": "https://symfony.com/sponsor",
  7098. "type": "custom"
  7099. },
  7100. {
  7101. "url": "https://github.com/fabpot",
  7102. "type": "github"
  7103. },
  7104. {
  7105. "url": "https://github.com/nicolas-grekas",
  7106. "type": "github"
  7107. },
  7108. {
  7109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7110. "type": "tidelift"
  7111. }
  7112. ],
  7113. "time": "2025-12-02T07:12:06+00:00"
  7114. },
  7115. {
  7116. "name": "symfony/stopwatch",
  7117. "version": "v7.4.0",
  7118. "source": {
  7119. "type": "git",
  7120. "url": "https://github.com/symfony/stopwatch.git",
  7121. "reference": "8a24af0a2e8a872fb745047180649b8418303084"
  7122. },
  7123. "dist": {
  7124. "type": "zip",
  7125. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8a24af0a2e8a872fb745047180649b8418303084",
  7126. "reference": "8a24af0a2e8a872fb745047180649b8418303084",
  7127. "shasum": ""
  7128. },
  7129. "require": {
  7130. "php": ">=8.2",
  7131. "symfony/service-contracts": "^2.5|^3"
  7132. },
  7133. "type": "library",
  7134. "autoload": {
  7135. "psr-4": {
  7136. "Symfony\\Component\\Stopwatch\\": ""
  7137. },
  7138. "exclude-from-classmap": [
  7139. "/Tests/"
  7140. ]
  7141. },
  7142. "notification-url": "https://packagist.org/downloads/",
  7143. "license": [
  7144. "MIT"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "Fabien Potencier",
  7149. "email": "fabien@symfony.com"
  7150. },
  7151. {
  7152. "name": "Symfony Community",
  7153. "homepage": "https://symfony.com/contributors"
  7154. }
  7155. ],
  7156. "description": "Provides a way to profile code",
  7157. "homepage": "https://symfony.com",
  7158. "support": {
  7159. "source": "https://github.com/symfony/stopwatch/tree/v7.4.0"
  7160. },
  7161. "funding": [
  7162. {
  7163. "url": "https://symfony.com/sponsor",
  7164. "type": "custom"
  7165. },
  7166. {
  7167. "url": "https://github.com/fabpot",
  7168. "type": "github"
  7169. },
  7170. {
  7171. "url": "https://github.com/nicolas-grekas",
  7172. "type": "github"
  7173. },
  7174. {
  7175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7176. "type": "tidelift"
  7177. }
  7178. ],
  7179. "time": "2025-08-04T07:05:15+00:00"
  7180. },
  7181. {
  7182. "name": "symfony/string",
  7183. "version": "v7.4.4",
  7184. "source": {
  7185. "type": "git",
  7186. "url": "https://github.com/symfony/string.git",
  7187. "reference": "1c4b10461bf2ec27537b5f36105337262f5f5d6f"
  7188. },
  7189. "dist": {
  7190. "type": "zip",
  7191. "url": "https://api.github.com/repos/symfony/string/zipball/1c4b10461bf2ec27537b5f36105337262f5f5d6f",
  7192. "reference": "1c4b10461bf2ec27537b5f36105337262f5f5d6f",
  7193. "shasum": ""
  7194. },
  7195. "require": {
  7196. "php": ">=8.2",
  7197. "symfony/deprecation-contracts": "^2.5|^3.0",
  7198. "symfony/polyfill-ctype": "~1.8",
  7199. "symfony/polyfill-intl-grapheme": "~1.33",
  7200. "symfony/polyfill-intl-normalizer": "~1.0",
  7201. "symfony/polyfill-mbstring": "~1.0"
  7202. },
  7203. "conflict": {
  7204. "symfony/translation-contracts": "<2.5"
  7205. },
  7206. "require-dev": {
  7207. "symfony/emoji": "^7.1|^8.0",
  7208. "symfony/http-client": "^6.4|^7.0|^8.0",
  7209. "symfony/intl": "^6.4|^7.0|^8.0",
  7210. "symfony/translation-contracts": "^2.5|^3.0",
  7211. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  7212. },
  7213. "type": "library",
  7214. "autoload": {
  7215. "files": [
  7216. "Resources/functions.php"
  7217. ],
  7218. "psr-4": {
  7219. "Symfony\\Component\\String\\": ""
  7220. },
  7221. "exclude-from-classmap": [
  7222. "/Tests/"
  7223. ]
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Nicolas Grekas",
  7232. "email": "p@tchwork.com"
  7233. },
  7234. {
  7235. "name": "Symfony Community",
  7236. "homepage": "https://symfony.com/contributors"
  7237. }
  7238. ],
  7239. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7240. "homepage": "https://symfony.com",
  7241. "keywords": [
  7242. "grapheme",
  7243. "i18n",
  7244. "string",
  7245. "unicode",
  7246. "utf-8",
  7247. "utf8"
  7248. ],
  7249. "support": {
  7250. "source": "https://github.com/symfony/string/tree/v7.4.4"
  7251. },
  7252. "funding": [
  7253. {
  7254. "url": "https://symfony.com/sponsor",
  7255. "type": "custom"
  7256. },
  7257. {
  7258. "url": "https://github.com/fabpot",
  7259. "type": "github"
  7260. },
  7261. {
  7262. "url": "https://github.com/nicolas-grekas",
  7263. "type": "github"
  7264. },
  7265. {
  7266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7267. "type": "tidelift"
  7268. }
  7269. ],
  7270. "time": "2026-01-12T10:54:30+00:00"
  7271. },
  7272. {
  7273. "name": "symfony/translation",
  7274. "version": "v7.4.4",
  7275. "source": {
  7276. "type": "git",
  7277. "url": "https://github.com/symfony/translation.git",
  7278. "reference": "bfde13711f53f549e73b06d27b35a55207528877"
  7279. },
  7280. "dist": {
  7281. "type": "zip",
  7282. "url": "https://api.github.com/repos/symfony/translation/zipball/bfde13711f53f549e73b06d27b35a55207528877",
  7283. "reference": "bfde13711f53f549e73b06d27b35a55207528877",
  7284. "shasum": ""
  7285. },
  7286. "require": {
  7287. "php": ">=8.2",
  7288. "symfony/deprecation-contracts": "^2.5|^3",
  7289. "symfony/polyfill-mbstring": "~1.0",
  7290. "symfony/translation-contracts": "^2.5.3|^3.3"
  7291. },
  7292. "conflict": {
  7293. "nikic/php-parser": "<5.0",
  7294. "symfony/config": "<6.4",
  7295. "symfony/console": "<6.4",
  7296. "symfony/dependency-injection": "<6.4",
  7297. "symfony/http-client-contracts": "<2.5",
  7298. "symfony/http-kernel": "<6.4",
  7299. "symfony/service-contracts": "<2.5",
  7300. "symfony/twig-bundle": "<6.4",
  7301. "symfony/yaml": "<6.4"
  7302. },
  7303. "provide": {
  7304. "symfony/translation-implementation": "2.3|3.0"
  7305. },
  7306. "require-dev": {
  7307. "nikic/php-parser": "^5.0",
  7308. "psr/log": "^1|^2|^3",
  7309. "symfony/config": "^6.4|^7.0|^8.0",
  7310. "symfony/console": "^6.4|^7.0|^8.0",
  7311. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7312. "symfony/finder": "^6.4|^7.0|^8.0",
  7313. "symfony/http-client-contracts": "^2.5|^3.0",
  7314. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7315. "symfony/intl": "^6.4|^7.0|^8.0",
  7316. "symfony/polyfill-intl-icu": "^1.21",
  7317. "symfony/routing": "^6.4|^7.0|^8.0",
  7318. "symfony/service-contracts": "^2.5|^3",
  7319. "symfony/yaml": "^6.4|^7.0|^8.0"
  7320. },
  7321. "type": "library",
  7322. "autoload": {
  7323. "files": [
  7324. "Resources/functions.php"
  7325. ],
  7326. "psr-4": {
  7327. "Symfony\\Component\\Translation\\": ""
  7328. },
  7329. "exclude-from-classmap": [
  7330. "/Tests/"
  7331. ]
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Fabien Potencier",
  7340. "email": "fabien@symfony.com"
  7341. },
  7342. {
  7343. "name": "Symfony Community",
  7344. "homepage": "https://symfony.com/contributors"
  7345. }
  7346. ],
  7347. "description": "Provides tools to internationalize your application",
  7348. "homepage": "https://symfony.com",
  7349. "support": {
  7350. "source": "https://github.com/symfony/translation/tree/v7.4.4"
  7351. },
  7352. "funding": [
  7353. {
  7354. "url": "https://symfony.com/sponsor",
  7355. "type": "custom"
  7356. },
  7357. {
  7358. "url": "https://github.com/fabpot",
  7359. "type": "github"
  7360. },
  7361. {
  7362. "url": "https://github.com/nicolas-grekas",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2026-01-13T10:40:19+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/translation-contracts",
  7374. "version": "v3.6.1",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/translation-contracts.git",
  7378. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  7383. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": ">=8.1"
  7388. },
  7389. "type": "library",
  7390. "extra": {
  7391. "thanks": {
  7392. "url": "https://github.com/symfony/contracts",
  7393. "name": "symfony/contracts"
  7394. },
  7395. "branch-alias": {
  7396. "dev-main": "3.6-dev"
  7397. }
  7398. },
  7399. "autoload": {
  7400. "psr-4": {
  7401. "Symfony\\Contracts\\Translation\\": ""
  7402. },
  7403. "exclude-from-classmap": [
  7404. "/Test/"
  7405. ]
  7406. },
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "MIT"
  7410. ],
  7411. "authors": [
  7412. {
  7413. "name": "Nicolas Grekas",
  7414. "email": "p@tchwork.com"
  7415. },
  7416. {
  7417. "name": "Symfony Community",
  7418. "homepage": "https://symfony.com/contributors"
  7419. }
  7420. ],
  7421. "description": "Generic abstractions related to translation",
  7422. "homepage": "https://symfony.com",
  7423. "keywords": [
  7424. "abstractions",
  7425. "contracts",
  7426. "decoupling",
  7427. "interfaces",
  7428. "interoperability",
  7429. "standards"
  7430. ],
  7431. "support": {
  7432. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  7433. },
  7434. "funding": [
  7435. {
  7436. "url": "https://symfony.com/sponsor",
  7437. "type": "custom"
  7438. },
  7439. {
  7440. "url": "https://github.com/fabpot",
  7441. "type": "github"
  7442. },
  7443. {
  7444. "url": "https://github.com/nicolas-grekas",
  7445. "type": "github"
  7446. },
  7447. {
  7448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7449. "type": "tidelift"
  7450. }
  7451. ],
  7452. "time": "2025-07-15T13:41:35+00:00"
  7453. },
  7454. {
  7455. "name": "symfony/twig-bridge",
  7456. "version": "v7.4.5",
  7457. "source": {
  7458. "type": "git",
  7459. "url": "https://github.com/symfony/twig-bridge.git",
  7460. "reference": "f2dd26b604e856476ef7e0efa4568bc07eb7ddc8"
  7461. },
  7462. "dist": {
  7463. "type": "zip",
  7464. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/f2dd26b604e856476ef7e0efa4568bc07eb7ddc8",
  7465. "reference": "f2dd26b604e856476ef7e0efa4568bc07eb7ddc8",
  7466. "shasum": ""
  7467. },
  7468. "require": {
  7469. "php": ">=8.2",
  7470. "symfony/deprecation-contracts": "^2.5|^3",
  7471. "symfony/translation-contracts": "^2.5|^3",
  7472. "twig/twig": "^3.21"
  7473. },
  7474. "conflict": {
  7475. "phpdocumentor/reflection-docblock": "<5.2|>=6",
  7476. "phpdocumentor/type-resolver": "<1.5.1",
  7477. "symfony/console": "<6.4",
  7478. "symfony/form": "<6.4.32|>7,<7.3.10|>7.4,<7.4.4|>8.0,<8.0.4",
  7479. "symfony/http-foundation": "<6.4",
  7480. "symfony/http-kernel": "<6.4",
  7481. "symfony/mime": "<6.4",
  7482. "symfony/serializer": "<6.4",
  7483. "symfony/translation": "<6.4",
  7484. "symfony/workflow": "<6.4"
  7485. },
  7486. "require-dev": {
  7487. "egulias/email-validator": "^2.1.10|^3|^4",
  7488. "league/html-to-markdown": "^5.0",
  7489. "phpdocumentor/reflection-docblock": "^5.2",
  7490. "symfony/asset": "^6.4|^7.0|^8.0",
  7491. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  7492. "symfony/console": "^6.4|^7.0|^8.0",
  7493. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7494. "symfony/emoji": "^7.1|^8.0",
  7495. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7496. "symfony/finder": "^6.4|^7.0|^8.0",
  7497. "symfony/form": "^6.4.32|~7.3.10|^7.4.4|^8.0.4",
  7498. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  7499. "symfony/http-foundation": "^7.3|^8.0",
  7500. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7501. "symfony/intl": "^6.4|^7.0|^8.0",
  7502. "symfony/mime": "^6.4|^7.0|^8.0",
  7503. "symfony/polyfill-intl-icu": "~1.0",
  7504. "symfony/property-info": "^6.4|^7.0|^8.0",
  7505. "symfony/routing": "^6.4|^7.0|^8.0",
  7506. "symfony/security-acl": "^2.8|^3.0",
  7507. "symfony/security-core": "^6.4|^7.0|^8.0",
  7508. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  7509. "symfony/security-http": "^6.4|^7.0|^8.0",
  7510. "symfony/serializer": "^6.4.3|^7.0.3|^8.0",
  7511. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  7512. "symfony/translation": "^6.4|^7.0|^8.0",
  7513. "symfony/validator": "^6.4|^7.0|^8.0",
  7514. "symfony/web-link": "^6.4|^7.0|^8.0",
  7515. "symfony/workflow": "^6.4|^7.0|^8.0",
  7516. "symfony/yaml": "^6.4|^7.0|^8.0",
  7517. "twig/cssinliner-extra": "^3",
  7518. "twig/inky-extra": "^3",
  7519. "twig/markdown-extra": "^3"
  7520. },
  7521. "type": "symfony-bridge",
  7522. "autoload": {
  7523. "psr-4": {
  7524. "Symfony\\Bridge\\Twig\\": ""
  7525. },
  7526. "exclude-from-classmap": [
  7527. "/Tests/"
  7528. ]
  7529. },
  7530. "notification-url": "https://packagist.org/downloads/",
  7531. "license": [
  7532. "MIT"
  7533. ],
  7534. "authors": [
  7535. {
  7536. "name": "Fabien Potencier",
  7537. "email": "fabien@symfony.com"
  7538. },
  7539. {
  7540. "name": "Symfony Community",
  7541. "homepage": "https://symfony.com/contributors"
  7542. }
  7543. ],
  7544. "description": "Provides integration for Twig with various Symfony components",
  7545. "homepage": "https://symfony.com",
  7546. "support": {
  7547. "source": "https://github.com/symfony/twig-bridge/tree/v7.4.5"
  7548. },
  7549. "funding": [
  7550. {
  7551. "url": "https://symfony.com/sponsor",
  7552. "type": "custom"
  7553. },
  7554. {
  7555. "url": "https://github.com/fabpot",
  7556. "type": "github"
  7557. },
  7558. {
  7559. "url": "https://github.com/nicolas-grekas",
  7560. "type": "github"
  7561. },
  7562. {
  7563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7564. "type": "tidelift"
  7565. }
  7566. ],
  7567. "time": "2026-01-27T08:59:58+00:00"
  7568. },
  7569. {
  7570. "name": "symfony/twig-bundle",
  7571. "version": "v7.4.4",
  7572. "source": {
  7573. "type": "git",
  7574. "url": "https://github.com/symfony/twig-bundle.git",
  7575. "reference": "e8829e02ff96a391ed0703bac9e7ff0537480b6b"
  7576. },
  7577. "dist": {
  7578. "type": "zip",
  7579. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/e8829e02ff96a391ed0703bac9e7ff0537480b6b",
  7580. "reference": "e8829e02ff96a391ed0703bac9e7ff0537480b6b",
  7581. "shasum": ""
  7582. },
  7583. "require": {
  7584. "composer-runtime-api": ">=2.1",
  7585. "php": ">=8.2",
  7586. "symfony/config": "^7.4|^8.0",
  7587. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7588. "symfony/deprecation-contracts": "^2.5|^3",
  7589. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7590. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  7591. "symfony/twig-bridge": "^7.3|^8.0",
  7592. "twig/twig": "^3.12"
  7593. },
  7594. "conflict": {
  7595. "symfony/framework-bundle": "<6.4",
  7596. "symfony/translation": "<6.4"
  7597. },
  7598. "require-dev": {
  7599. "symfony/asset": "^6.4|^7.0|^8.0",
  7600. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7601. "symfony/finder": "^6.4|^7.0|^8.0",
  7602. "symfony/form": "^6.4|^7.0|^8.0",
  7603. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  7604. "symfony/routing": "^6.4|^7.0|^8.0",
  7605. "symfony/runtime": "^6.4.13|^7.1.6",
  7606. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  7607. "symfony/translation": "^6.4|^7.0|^8.0",
  7608. "symfony/web-link": "^6.4|^7.0|^8.0",
  7609. "symfony/yaml": "^6.4|^7.0|^8.0"
  7610. },
  7611. "type": "symfony-bundle",
  7612. "autoload": {
  7613. "psr-4": {
  7614. "Symfony\\Bundle\\TwigBundle\\": ""
  7615. },
  7616. "exclude-from-classmap": [
  7617. "/Tests/"
  7618. ]
  7619. },
  7620. "notification-url": "https://packagist.org/downloads/",
  7621. "license": [
  7622. "MIT"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "Fabien Potencier",
  7627. "email": "fabien@symfony.com"
  7628. },
  7629. {
  7630. "name": "Symfony Community",
  7631. "homepage": "https://symfony.com/contributors"
  7632. }
  7633. ],
  7634. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7635. "homepage": "https://symfony.com",
  7636. "support": {
  7637. "source": "https://github.com/symfony/twig-bundle/tree/v7.4.4"
  7638. },
  7639. "funding": [
  7640. {
  7641. "url": "https://symfony.com/sponsor",
  7642. "type": "custom"
  7643. },
  7644. {
  7645. "url": "https://github.com/fabpot",
  7646. "type": "github"
  7647. },
  7648. {
  7649. "url": "https://github.com/nicolas-grekas",
  7650. "type": "github"
  7651. },
  7652. {
  7653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7654. "type": "tidelift"
  7655. }
  7656. ],
  7657. "time": "2026-01-06T12:34:24+00:00"
  7658. },
  7659. {
  7660. "name": "symfony/type-info",
  7661. "version": "v7.4.4",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://github.com/symfony/type-info.git",
  7665. "reference": "f83c725e72b39b2704b9d6fc85070ad6ac7a5889"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://api.github.com/repos/symfony/type-info/zipball/f83c725e72b39b2704b9d6fc85070ad6ac7a5889",
  7670. "reference": "f83c725e72b39b2704b9d6fc85070ad6ac7a5889",
  7671. "shasum": ""
  7672. },
  7673. "require": {
  7674. "php": ">=8.2",
  7675. "psr/container": "^1.1|^2.0",
  7676. "symfony/deprecation-contracts": "^2.5|^3"
  7677. },
  7678. "conflict": {
  7679. "phpstan/phpdoc-parser": "<1.30"
  7680. },
  7681. "require-dev": {
  7682. "phpstan/phpdoc-parser": "^1.30|^2.0"
  7683. },
  7684. "type": "library",
  7685. "autoload": {
  7686. "psr-4": {
  7687. "Symfony\\Component\\TypeInfo\\": ""
  7688. },
  7689. "exclude-from-classmap": [
  7690. "/Tests/"
  7691. ]
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "MIT"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Mathias Arlaud",
  7700. "email": "mathias.arlaud@gmail.com"
  7701. },
  7702. {
  7703. "name": "Baptiste LEDUC",
  7704. "email": "baptiste.leduc@gmail.com"
  7705. },
  7706. {
  7707. "name": "Symfony Community",
  7708. "homepage": "https://symfony.com/contributors"
  7709. }
  7710. ],
  7711. "description": "Extracts PHP types information.",
  7712. "homepage": "https://symfony.com",
  7713. "keywords": [
  7714. "PHPStan",
  7715. "phpdoc",
  7716. "symfony",
  7717. "type"
  7718. ],
  7719. "support": {
  7720. "source": "https://github.com/symfony/type-info/tree/v7.4.4"
  7721. },
  7722. "funding": [
  7723. {
  7724. "url": "https://symfony.com/sponsor",
  7725. "type": "custom"
  7726. },
  7727. {
  7728. "url": "https://github.com/fabpot",
  7729. "type": "github"
  7730. },
  7731. {
  7732. "url": "https://github.com/nicolas-grekas",
  7733. "type": "github"
  7734. },
  7735. {
  7736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7737. "type": "tidelift"
  7738. }
  7739. ],
  7740. "time": "2026-01-09T12:14:21+00:00"
  7741. },
  7742. {
  7743. "name": "symfony/ux-chartjs",
  7744. "version": "v2.32.0",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://github.com/symfony/ux-chartjs.git",
  7748. "reference": "5d65b055255a546801eec8a6d48eca7b98d4c613"
  7749. },
  7750. "dist": {
  7751. "type": "zip",
  7752. "url": "https://api.github.com/repos/symfony/ux-chartjs/zipball/5d65b055255a546801eec8a6d48eca7b98d4c613",
  7753. "reference": "5d65b055255a546801eec8a6d48eca7b98d4c613",
  7754. "shasum": ""
  7755. },
  7756. "require": {
  7757. "php": ">=8.1",
  7758. "symfony/config": "^5.4|^6.0|^7.0|^8.0",
  7759. "symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
  7760. "symfony/http-kernel": "^5.4|^6.0|^7.0|^8.0",
  7761. "symfony/stimulus-bundle": "^2.9.1"
  7762. },
  7763. "conflict": {
  7764. "symfony/flex": "<1.13"
  7765. },
  7766. "require-dev": {
  7767. "symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
  7768. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0|^8.0",
  7769. "symfony/twig-bundle": "^5.4|^6.0|^7.0|^8.0",
  7770. "symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0"
  7771. },
  7772. "type": "symfony-bundle",
  7773. "extra": {
  7774. "thanks": {
  7775. "url": "https://github.com/symfony/ux",
  7776. "name": "symfony/ux"
  7777. }
  7778. },
  7779. "autoload": {
  7780. "psr-4": {
  7781. "Symfony\\UX\\Chartjs\\": "src/"
  7782. }
  7783. },
  7784. "notification-url": "https://packagist.org/downloads/",
  7785. "license": [
  7786. "MIT"
  7787. ],
  7788. "authors": [
  7789. {
  7790. "name": "Titouan Galopin",
  7791. "email": "galopintitouan@gmail.com"
  7792. },
  7793. {
  7794. "name": "Symfony Community",
  7795. "homepage": "https://symfony.com/contributors"
  7796. }
  7797. ],
  7798. "description": "Chart.js integration for Symfony",
  7799. "homepage": "https://symfony.com",
  7800. "keywords": [
  7801. "symfony-ux"
  7802. ],
  7803. "support": {
  7804. "source": "https://github.com/symfony/ux-chartjs/tree/v2.32.0"
  7805. },
  7806. "funding": [
  7807. {
  7808. "url": "https://symfony.com/sponsor",
  7809. "type": "custom"
  7810. },
  7811. {
  7812. "url": "https://github.com/fabpot",
  7813. "type": "github"
  7814. },
  7815. {
  7816. "url": "https://github.com/nicolas-grekas",
  7817. "type": "github"
  7818. },
  7819. {
  7820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7821. "type": "tidelift"
  7822. }
  7823. ],
  7824. "time": "2025-12-16T07:08:36+00:00"
  7825. },
  7826. {
  7827. "name": "symfony/validator",
  7828. "version": "v7.4.5",
  7829. "source": {
  7830. "type": "git",
  7831. "url": "https://github.com/symfony/validator.git",
  7832. "reference": "fcec92c40df1c93507857da08226005573b655c6"
  7833. },
  7834. "dist": {
  7835. "type": "zip",
  7836. "url": "https://api.github.com/repos/symfony/validator/zipball/fcec92c40df1c93507857da08226005573b655c6",
  7837. "reference": "fcec92c40df1c93507857da08226005573b655c6",
  7838. "shasum": ""
  7839. },
  7840. "require": {
  7841. "php": ">=8.2",
  7842. "symfony/deprecation-contracts": "^2.5|^3",
  7843. "symfony/polyfill-ctype": "~1.8",
  7844. "symfony/polyfill-mbstring": "~1.0",
  7845. "symfony/polyfill-php83": "^1.27",
  7846. "symfony/translation-contracts": "^2.5|^3"
  7847. },
  7848. "conflict": {
  7849. "doctrine/lexer": "<1.1",
  7850. "symfony/dependency-injection": "<6.4",
  7851. "symfony/doctrine-bridge": "<7.0",
  7852. "symfony/expression-language": "<6.4",
  7853. "symfony/http-kernel": "<6.4",
  7854. "symfony/intl": "<6.4",
  7855. "symfony/property-info": "<6.4",
  7856. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7857. "symfony/var-exporter": "<6.4.25|>=7.0,<7.3.3",
  7858. "symfony/yaml": "<6.4"
  7859. },
  7860. "require-dev": {
  7861. "egulias/email-validator": "^2.1.10|^3|^4",
  7862. "symfony/cache": "^6.4|^7.0|^8.0",
  7863. "symfony/config": "^6.4|^7.0|^8.0",
  7864. "symfony/console": "^6.4|^7.0|^8.0",
  7865. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7866. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7867. "symfony/finder": "^6.4|^7.0|^8.0",
  7868. "symfony/http-client": "^6.4|^7.0|^8.0",
  7869. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7870. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7871. "symfony/intl": "^6.4|^7.0|^8.0",
  7872. "symfony/mime": "^6.4|^7.0|^8.0",
  7873. "symfony/process": "^6.4|^7.0|^8.0",
  7874. "symfony/property-access": "^6.4|^7.0|^8.0",
  7875. "symfony/property-info": "^6.4|^7.0|^8.0",
  7876. "symfony/string": "^6.4|^7.0|^8.0",
  7877. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  7878. "symfony/type-info": "^7.1.8",
  7879. "symfony/yaml": "^6.4|^7.0|^8.0"
  7880. },
  7881. "type": "library",
  7882. "autoload": {
  7883. "psr-4": {
  7884. "Symfony\\Component\\Validator\\": ""
  7885. },
  7886. "exclude-from-classmap": [
  7887. "/Tests/",
  7888. "/Resources/bin/"
  7889. ]
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Fabien Potencier",
  7898. "email": "fabien@symfony.com"
  7899. },
  7900. {
  7901. "name": "Symfony Community",
  7902. "homepage": "https://symfony.com/contributors"
  7903. }
  7904. ],
  7905. "description": "Provides tools to validate values",
  7906. "homepage": "https://symfony.com",
  7907. "support": {
  7908. "source": "https://github.com/symfony/validator/tree/v7.4.5"
  7909. },
  7910. "funding": [
  7911. {
  7912. "url": "https://symfony.com/sponsor",
  7913. "type": "custom"
  7914. },
  7915. {
  7916. "url": "https://github.com/fabpot",
  7917. "type": "github"
  7918. },
  7919. {
  7920. "url": "https://github.com/nicolas-grekas",
  7921. "type": "github"
  7922. },
  7923. {
  7924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7925. "type": "tidelift"
  7926. }
  7927. ],
  7928. "time": "2026-01-27T08:59:58+00:00"
  7929. },
  7930. {
  7931. "name": "symfony/var-dumper",
  7932. "version": "v7.4.4",
  7933. "source": {
  7934. "type": "git",
  7935. "url": "https://github.com/symfony/var-dumper.git",
  7936. "reference": "0e4769b46a0c3c62390d124635ce59f66874b282"
  7937. },
  7938. "dist": {
  7939. "type": "zip",
  7940. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0e4769b46a0c3c62390d124635ce59f66874b282",
  7941. "reference": "0e4769b46a0c3c62390d124635ce59f66874b282",
  7942. "shasum": ""
  7943. },
  7944. "require": {
  7945. "php": ">=8.2",
  7946. "symfony/deprecation-contracts": "^2.5|^3",
  7947. "symfony/polyfill-mbstring": "~1.0"
  7948. },
  7949. "conflict": {
  7950. "symfony/console": "<6.4"
  7951. },
  7952. "require-dev": {
  7953. "symfony/console": "^6.4|^7.0|^8.0",
  7954. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7955. "symfony/process": "^6.4|^7.0|^8.0",
  7956. "symfony/uid": "^6.4|^7.0|^8.0",
  7957. "twig/twig": "^3.12"
  7958. },
  7959. "bin": [
  7960. "Resources/bin/var-dump-server"
  7961. ],
  7962. "type": "library",
  7963. "autoload": {
  7964. "files": [
  7965. "Resources/functions/dump.php"
  7966. ],
  7967. "psr-4": {
  7968. "Symfony\\Component\\VarDumper\\": ""
  7969. },
  7970. "exclude-from-classmap": [
  7971. "/Tests/"
  7972. ]
  7973. },
  7974. "notification-url": "https://packagist.org/downloads/",
  7975. "license": [
  7976. "MIT"
  7977. ],
  7978. "authors": [
  7979. {
  7980. "name": "Nicolas Grekas",
  7981. "email": "p@tchwork.com"
  7982. },
  7983. {
  7984. "name": "Symfony Community",
  7985. "homepage": "https://symfony.com/contributors"
  7986. }
  7987. ],
  7988. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7989. "homepage": "https://symfony.com",
  7990. "keywords": [
  7991. "debug",
  7992. "dump"
  7993. ],
  7994. "support": {
  7995. "source": "https://github.com/symfony/var-dumper/tree/v7.4.4"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://symfony.com/sponsor",
  8000. "type": "custom"
  8001. },
  8002. {
  8003. "url": "https://github.com/fabpot",
  8004. "type": "github"
  8005. },
  8006. {
  8007. "url": "https://github.com/nicolas-grekas",
  8008. "type": "github"
  8009. },
  8010. {
  8011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8012. "type": "tidelift"
  8013. }
  8014. ],
  8015. "time": "2026-01-01T22:13:48+00:00"
  8016. },
  8017. {
  8018. "name": "symfony/var-exporter",
  8019. "version": "v7.4.0",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/symfony/var-exporter.git",
  8023. "reference": "03a60f169c79a28513a78c967316fbc8bf17816f"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/03a60f169c79a28513a78c967316fbc8bf17816f",
  8028. "reference": "03a60f169c79a28513a78c967316fbc8bf17816f",
  8029. "shasum": ""
  8030. },
  8031. "require": {
  8032. "php": ">=8.2",
  8033. "symfony/deprecation-contracts": "^2.5|^3"
  8034. },
  8035. "require-dev": {
  8036. "symfony/property-access": "^6.4|^7.0|^8.0",
  8037. "symfony/serializer": "^6.4|^7.0|^8.0",
  8038. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  8039. },
  8040. "type": "library",
  8041. "autoload": {
  8042. "psr-4": {
  8043. "Symfony\\Component\\VarExporter\\": ""
  8044. },
  8045. "exclude-from-classmap": [
  8046. "/Tests/"
  8047. ]
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "MIT"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "Nicolas Grekas",
  8056. "email": "p@tchwork.com"
  8057. },
  8058. {
  8059. "name": "Symfony Community",
  8060. "homepage": "https://symfony.com/contributors"
  8061. }
  8062. ],
  8063. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8064. "homepage": "https://symfony.com",
  8065. "keywords": [
  8066. "clone",
  8067. "construct",
  8068. "export",
  8069. "hydrate",
  8070. "instantiate",
  8071. "lazy-loading",
  8072. "proxy",
  8073. "serialize"
  8074. ],
  8075. "support": {
  8076. "source": "https://github.com/symfony/var-exporter/tree/v7.4.0"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://symfony.com/sponsor",
  8081. "type": "custom"
  8082. },
  8083. {
  8084. "url": "https://github.com/fabpot",
  8085. "type": "github"
  8086. },
  8087. {
  8088. "url": "https://github.com/nicolas-grekas",
  8089. "type": "github"
  8090. },
  8091. {
  8092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8093. "type": "tidelift"
  8094. }
  8095. ],
  8096. "time": "2025-09-11T10:15:23+00:00"
  8097. },
  8098. {
  8099. "name": "symfony/web-link",
  8100. "version": "v7.4.4",
  8101. "source": {
  8102. "type": "git",
  8103. "url": "https://github.com/symfony/web-link.git",
  8104. "reference": "9ff1f19069e3d2d341d60729392a4a6dfc45052a"
  8105. },
  8106. "dist": {
  8107. "type": "zip",
  8108. "url": "https://api.github.com/repos/symfony/web-link/zipball/9ff1f19069e3d2d341d60729392a4a6dfc45052a",
  8109. "reference": "9ff1f19069e3d2d341d60729392a4a6dfc45052a",
  8110. "shasum": ""
  8111. },
  8112. "require": {
  8113. "php": ">=8.2",
  8114. "psr/link": "^1.1|^2.0"
  8115. },
  8116. "conflict": {
  8117. "symfony/http-kernel": "<6.4"
  8118. },
  8119. "provide": {
  8120. "psr/link-implementation": "1.0|2.0"
  8121. },
  8122. "require-dev": {
  8123. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  8124. },
  8125. "type": "library",
  8126. "autoload": {
  8127. "psr-4": {
  8128. "Symfony\\Component\\WebLink\\": ""
  8129. },
  8130. "exclude-from-classmap": [
  8131. "/Tests/"
  8132. ]
  8133. },
  8134. "notification-url": "https://packagist.org/downloads/",
  8135. "license": [
  8136. "MIT"
  8137. ],
  8138. "authors": [
  8139. {
  8140. "name": "Kévin Dunglas",
  8141. "email": "dunglas@gmail.com"
  8142. },
  8143. {
  8144. "name": "Symfony Community",
  8145. "homepage": "https://symfony.com/contributors"
  8146. }
  8147. ],
  8148. "description": "Manages links between resources",
  8149. "homepage": "https://symfony.com",
  8150. "keywords": [
  8151. "dns-prefetch",
  8152. "http",
  8153. "http2",
  8154. "link",
  8155. "performance",
  8156. "prefetch",
  8157. "preload",
  8158. "prerender",
  8159. "psr13",
  8160. "push"
  8161. ],
  8162. "support": {
  8163. "source": "https://github.com/symfony/web-link/tree/v7.4.4"
  8164. },
  8165. "funding": [
  8166. {
  8167. "url": "https://symfony.com/sponsor",
  8168. "type": "custom"
  8169. },
  8170. {
  8171. "url": "https://github.com/fabpot",
  8172. "type": "github"
  8173. },
  8174. {
  8175. "url": "https://github.com/nicolas-grekas",
  8176. "type": "github"
  8177. },
  8178. {
  8179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8180. "type": "tidelift"
  8181. }
  8182. ],
  8183. "time": "2026-01-01T22:13:48+00:00"
  8184. },
  8185. {
  8186. "name": "symfony/webpack-encore-bundle",
  8187. "version": "v2.4.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8191. "reference": "5b932e0feddd81aaf0ecd7d5fcd2e450e5a7817e"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/5b932e0feddd81aaf0ecd7d5fcd2e450e5a7817e",
  8196. "reference": "5b932e0feddd81aaf0ecd7d5fcd2e450e5a7817e",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "php": ">=8.1.0",
  8201. "symfony/asset": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8202. "symfony/config": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8203. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8204. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8205. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  8206. },
  8207. "require-dev": {
  8208. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8209. "symfony/http-client": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8210. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8211. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0 || ^8.0",
  8212. "symfony/web-link": "^5.4 || ^6.2 || ^7.0 || ^8.0"
  8213. },
  8214. "type": "symfony-bundle",
  8215. "extra": {
  8216. "thanks": {
  8217. "url": "https://github.com/symfony/webpack-encore",
  8218. "name": "symfony/webpack-encore"
  8219. }
  8220. },
  8221. "autoload": {
  8222. "psr-4": {
  8223. "Symfony\\WebpackEncoreBundle\\": "src"
  8224. }
  8225. },
  8226. "notification-url": "https://packagist.org/downloads/",
  8227. "license": [
  8228. "MIT"
  8229. ],
  8230. "authors": [
  8231. {
  8232. "name": "Symfony Community",
  8233. "homepage": "https://symfony.com/contributors"
  8234. }
  8235. ],
  8236. "description": "Integration of your Symfony app with Webpack Encore",
  8237. "support": {
  8238. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8239. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.4.0"
  8240. },
  8241. "funding": [
  8242. {
  8243. "url": "https://symfony.com/sponsor",
  8244. "type": "custom"
  8245. },
  8246. {
  8247. "url": "https://github.com/fabpot",
  8248. "type": "github"
  8249. },
  8250. {
  8251. "url": "https://github.com/nicolas-grekas",
  8252. "type": "github"
  8253. },
  8254. {
  8255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8256. "type": "tidelift"
  8257. }
  8258. ],
  8259. "time": "2025-11-27T13:41:46+00:00"
  8260. },
  8261. {
  8262. "name": "symfony/yaml",
  8263. "version": "v7.4.1",
  8264. "source": {
  8265. "type": "git",
  8266. "url": "https://github.com/symfony/yaml.git",
  8267. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345"
  8268. },
  8269. "dist": {
  8270. "type": "zip",
  8271. "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345",
  8272. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345",
  8273. "shasum": ""
  8274. },
  8275. "require": {
  8276. "php": ">=8.2",
  8277. "symfony/deprecation-contracts": "^2.5|^3",
  8278. "symfony/polyfill-ctype": "^1.8"
  8279. },
  8280. "conflict": {
  8281. "symfony/console": "<6.4"
  8282. },
  8283. "require-dev": {
  8284. "symfony/console": "^6.4|^7.0|^8.0"
  8285. },
  8286. "bin": [
  8287. "Resources/bin/yaml-lint"
  8288. ],
  8289. "type": "library",
  8290. "autoload": {
  8291. "psr-4": {
  8292. "Symfony\\Component\\Yaml\\": ""
  8293. },
  8294. "exclude-from-classmap": [
  8295. "/Tests/"
  8296. ]
  8297. },
  8298. "notification-url": "https://packagist.org/downloads/",
  8299. "license": [
  8300. "MIT"
  8301. ],
  8302. "authors": [
  8303. {
  8304. "name": "Fabien Potencier",
  8305. "email": "fabien@symfony.com"
  8306. },
  8307. {
  8308. "name": "Symfony Community",
  8309. "homepage": "https://symfony.com/contributors"
  8310. }
  8311. ],
  8312. "description": "Loads and dumps YAML files",
  8313. "homepage": "https://symfony.com",
  8314. "support": {
  8315. "source": "https://github.com/symfony/yaml/tree/v7.4.1"
  8316. },
  8317. "funding": [
  8318. {
  8319. "url": "https://symfony.com/sponsor",
  8320. "type": "custom"
  8321. },
  8322. {
  8323. "url": "https://github.com/fabpot",
  8324. "type": "github"
  8325. },
  8326. {
  8327. "url": "https://github.com/nicolas-grekas",
  8328. "type": "github"
  8329. },
  8330. {
  8331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8332. "type": "tidelift"
  8333. }
  8334. ],
  8335. "time": "2025-12-04T18:11:45+00:00"
  8336. },
  8337. {
  8338. "name": "twig/extra-bundle",
  8339. "version": "v3.23.0",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8343. "reference": "7a27e784dc56eddfef5e9295829b290ce06f1682"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/7a27e784dc56eddfef5e9295829b290ce06f1682",
  8348. "reference": "7a27e784dc56eddfef5e9295829b290ce06f1682",
  8349. "shasum": ""
  8350. },
  8351. "require": {
  8352. "php": ">=8.1.0",
  8353. "symfony/framework-bundle": "^5.4|^6.4|^7.0|^8.0",
  8354. "symfony/twig-bundle": "^5.4|^6.4|^7.0|^8.0",
  8355. "twig/twig": "^3.2|^4.0"
  8356. },
  8357. "require-dev": {
  8358. "league/commonmark": "^2.7",
  8359. "symfony/phpunit-bridge": "^6.4|^7.0",
  8360. "twig/cache-extra": "^3.0",
  8361. "twig/cssinliner-extra": "^3.0",
  8362. "twig/html-extra": "^3.0",
  8363. "twig/inky-extra": "^3.0",
  8364. "twig/intl-extra": "^3.0",
  8365. "twig/markdown-extra": "^3.0",
  8366. "twig/string-extra": "^3.0"
  8367. },
  8368. "type": "symfony-bundle",
  8369. "autoload": {
  8370. "psr-4": {
  8371. "Twig\\Extra\\TwigExtraBundle\\": ""
  8372. },
  8373. "exclude-from-classmap": [
  8374. "/Tests/"
  8375. ]
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "MIT"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "Fabien Potencier",
  8384. "email": "fabien@symfony.com",
  8385. "homepage": "http://fabien.potencier.org",
  8386. "role": "Lead Developer"
  8387. }
  8388. ],
  8389. "description": "A Symfony bundle for extra Twig extensions",
  8390. "homepage": "https://twig.symfony.com",
  8391. "keywords": [
  8392. "bundle",
  8393. "extra",
  8394. "twig"
  8395. ],
  8396. "support": {
  8397. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.23.0"
  8398. },
  8399. "funding": [
  8400. {
  8401. "url": "https://github.com/fabpot",
  8402. "type": "github"
  8403. },
  8404. {
  8405. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8406. "type": "tidelift"
  8407. }
  8408. ],
  8409. "time": "2025-12-18T20:46:15+00:00"
  8410. },
  8411. {
  8412. "name": "twig/markdown-extra",
  8413. "version": "v3.23.0",
  8414. "source": {
  8415. "type": "git",
  8416. "url": "https://github.com/twigphp/markdown-extra.git",
  8417. "reference": "faf069b259e2d3930c73c2f53e2dec8440bd90a2"
  8418. },
  8419. "dist": {
  8420. "type": "zip",
  8421. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/faf069b259e2d3930c73c2f53e2dec8440bd90a2",
  8422. "reference": "faf069b259e2d3930c73c2f53e2dec8440bd90a2",
  8423. "shasum": ""
  8424. },
  8425. "require": {
  8426. "php": ">=8.1.0",
  8427. "symfony/deprecation-contracts": "^2.5|^3",
  8428. "twig/twig": "^3.13|^4.0"
  8429. },
  8430. "require-dev": {
  8431. "erusev/parsedown": "dev-master as 1.x-dev",
  8432. "league/commonmark": "^2.7",
  8433. "league/html-to-markdown": "^4.8|^5.0",
  8434. "michelf/php-markdown": "^1.8|^2.0",
  8435. "symfony/phpunit-bridge": "^6.4|^7.0"
  8436. },
  8437. "type": "library",
  8438. "autoload": {
  8439. "files": [
  8440. "Resources/functions.php"
  8441. ],
  8442. "psr-4": {
  8443. "Twig\\Extra\\Markdown\\": ""
  8444. },
  8445. "exclude-from-classmap": [
  8446. "/Tests/"
  8447. ]
  8448. },
  8449. "notification-url": "https://packagist.org/downloads/",
  8450. "license": [
  8451. "MIT"
  8452. ],
  8453. "authors": [
  8454. {
  8455. "name": "Fabien Potencier",
  8456. "email": "fabien@symfony.com",
  8457. "homepage": "http://fabien.potencier.org",
  8458. "role": "Lead Developer"
  8459. }
  8460. ],
  8461. "description": "A Twig extension for Markdown",
  8462. "homepage": "https://twig.symfony.com",
  8463. "keywords": [
  8464. "html",
  8465. "markdown",
  8466. "twig"
  8467. ],
  8468. "support": {
  8469. "source": "https://github.com/twigphp/markdown-extra/tree/v3.23.0"
  8470. },
  8471. "funding": [
  8472. {
  8473. "url": "https://github.com/fabpot",
  8474. "type": "github"
  8475. },
  8476. {
  8477. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8478. "type": "tidelift"
  8479. }
  8480. ],
  8481. "time": "2025-12-02T14:45:16+00:00"
  8482. },
  8483. {
  8484. "name": "twig/twig",
  8485. "version": "v3.23.0",
  8486. "source": {
  8487. "type": "git",
  8488. "url": "https://github.com/twigphp/Twig.git",
  8489. "reference": "a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9"
  8490. },
  8491. "dist": {
  8492. "type": "zip",
  8493. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9",
  8494. "reference": "a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9",
  8495. "shasum": ""
  8496. },
  8497. "require": {
  8498. "php": ">=8.1.0",
  8499. "symfony/deprecation-contracts": "^2.5|^3",
  8500. "symfony/polyfill-ctype": "^1.8",
  8501. "symfony/polyfill-mbstring": "^1.3"
  8502. },
  8503. "require-dev": {
  8504. "phpstan/phpstan": "^2.0",
  8505. "psr/container": "^1.0|^2.0",
  8506. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8507. },
  8508. "type": "library",
  8509. "autoload": {
  8510. "files": [
  8511. "src/Resources/core.php",
  8512. "src/Resources/debug.php",
  8513. "src/Resources/escaper.php",
  8514. "src/Resources/string_loader.php"
  8515. ],
  8516. "psr-4": {
  8517. "Twig\\": "src/"
  8518. }
  8519. },
  8520. "notification-url": "https://packagist.org/downloads/",
  8521. "license": [
  8522. "BSD-3-Clause"
  8523. ],
  8524. "authors": [
  8525. {
  8526. "name": "Fabien Potencier",
  8527. "email": "fabien@symfony.com",
  8528. "homepage": "http://fabien.potencier.org",
  8529. "role": "Lead Developer"
  8530. },
  8531. {
  8532. "name": "Twig Team",
  8533. "role": "Contributors"
  8534. },
  8535. {
  8536. "name": "Armin Ronacher",
  8537. "email": "armin.ronacher@active-4.com",
  8538. "role": "Project Founder"
  8539. }
  8540. ],
  8541. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8542. "homepage": "https://twig.symfony.com",
  8543. "keywords": [
  8544. "templating"
  8545. ],
  8546. "support": {
  8547. "issues": "https://github.com/twigphp/Twig/issues",
  8548. "source": "https://github.com/twigphp/Twig/tree/v3.23.0"
  8549. },
  8550. "funding": [
  8551. {
  8552. "url": "https://github.com/fabpot",
  8553. "type": "github"
  8554. },
  8555. {
  8556. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8557. "type": "tidelift"
  8558. }
  8559. ],
  8560. "time": "2026-01-23T21:00:41+00:00"
  8561. },
  8562. {
  8563. "name": "webmozart/assert",
  8564. "version": "2.1.4",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://github.com/webmozarts/assert.git",
  8568. "reference": "b39f1870fc7c3e9e4a26106df5053354b9260a33"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://api.github.com/repos/webmozarts/assert/zipball/b39f1870fc7c3e9e4a26106df5053354b9260a33",
  8573. "reference": "b39f1870fc7c3e9e4a26106df5053354b9260a33",
  8574. "shasum": ""
  8575. },
  8576. "require": {
  8577. "ext-ctype": "*",
  8578. "ext-date": "*",
  8579. "ext-filter": "*",
  8580. "php": "^8.2"
  8581. },
  8582. "suggest": {
  8583. "ext-intl": "",
  8584. "ext-simplexml": "",
  8585. "ext-spl": ""
  8586. },
  8587. "type": "library",
  8588. "extra": {
  8589. "branch-alias": {
  8590. "dev-feature/2-0": "2.0-dev"
  8591. }
  8592. },
  8593. "autoload": {
  8594. "psr-4": {
  8595. "Webmozart\\Assert\\": "src/"
  8596. }
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "MIT"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Bernhard Schussek",
  8605. "email": "bschussek@gmail.com"
  8606. },
  8607. {
  8608. "name": "Woody Gilk",
  8609. "email": "woody.gilk@gmail.com"
  8610. }
  8611. ],
  8612. "description": "Assertions to validate method input/output with nice error messages.",
  8613. "keywords": [
  8614. "assert",
  8615. "check",
  8616. "validate"
  8617. ],
  8618. "support": {
  8619. "issues": "https://github.com/webmozarts/assert/issues",
  8620. "source": "https://github.com/webmozarts/assert/tree/2.1.4"
  8621. },
  8622. "time": "2026-02-17T12:17:51+00:00"
  8623. }
  8624. ],
  8625. "packages-dev": [
  8626. {
  8627. "name": "myclabs/deep-copy",
  8628. "version": "1.13.4",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/myclabs/DeepCopy.git",
  8632. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  8637. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  8638. "shasum": ""
  8639. },
  8640. "require": {
  8641. "php": "^7.1 || ^8.0"
  8642. },
  8643. "conflict": {
  8644. "doctrine/collections": "<1.6.8",
  8645. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8646. },
  8647. "require-dev": {
  8648. "doctrine/collections": "^1.6.8",
  8649. "doctrine/common": "^2.13.3 || ^3.2.2",
  8650. "phpspec/prophecy": "^1.10",
  8651. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8652. },
  8653. "type": "library",
  8654. "autoload": {
  8655. "files": [
  8656. "src/DeepCopy/deep_copy.php"
  8657. ],
  8658. "psr-4": {
  8659. "DeepCopy\\": "src/DeepCopy/"
  8660. }
  8661. },
  8662. "notification-url": "https://packagist.org/downloads/",
  8663. "license": [
  8664. "MIT"
  8665. ],
  8666. "description": "Create deep copies (clones) of your objects",
  8667. "keywords": [
  8668. "clone",
  8669. "copy",
  8670. "duplicate",
  8671. "object",
  8672. "object graph"
  8673. ],
  8674. "support": {
  8675. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8676. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  8677. },
  8678. "funding": [
  8679. {
  8680. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8681. "type": "tidelift"
  8682. }
  8683. ],
  8684. "time": "2025-08-01T08:46:24+00:00"
  8685. },
  8686. {
  8687. "name": "nikic/php-parser",
  8688. "version": "v5.7.0",
  8689. "source": {
  8690. "type": "git",
  8691. "url": "https://github.com/nikic/PHP-Parser.git",
  8692. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  8693. },
  8694. "dist": {
  8695. "type": "zip",
  8696. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  8697. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  8698. "shasum": ""
  8699. },
  8700. "require": {
  8701. "ext-ctype": "*",
  8702. "ext-json": "*",
  8703. "ext-tokenizer": "*",
  8704. "php": ">=7.4"
  8705. },
  8706. "require-dev": {
  8707. "ircmaxell/php-yacc": "^0.0.7",
  8708. "phpunit/phpunit": "^9.0"
  8709. },
  8710. "bin": [
  8711. "bin/php-parse"
  8712. ],
  8713. "type": "library",
  8714. "extra": {
  8715. "branch-alias": {
  8716. "dev-master": "5.x-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "psr-4": {
  8721. "PhpParser\\": "lib/PhpParser"
  8722. }
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "BSD-3-Clause"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Nikita Popov"
  8731. }
  8732. ],
  8733. "description": "A PHP parser written in PHP",
  8734. "keywords": [
  8735. "parser",
  8736. "php"
  8737. ],
  8738. "support": {
  8739. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8740. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  8741. },
  8742. "time": "2025-12-06T11:56:16+00:00"
  8743. },
  8744. {
  8745. "name": "phar-io/manifest",
  8746. "version": "2.0.4",
  8747. "source": {
  8748. "type": "git",
  8749. "url": "https://github.com/phar-io/manifest.git",
  8750. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8751. },
  8752. "dist": {
  8753. "type": "zip",
  8754. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8755. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8756. "shasum": ""
  8757. },
  8758. "require": {
  8759. "ext-dom": "*",
  8760. "ext-libxml": "*",
  8761. "ext-phar": "*",
  8762. "ext-xmlwriter": "*",
  8763. "phar-io/version": "^3.0.1",
  8764. "php": "^7.2 || ^8.0"
  8765. },
  8766. "type": "library",
  8767. "extra": {
  8768. "branch-alias": {
  8769. "dev-master": "2.0.x-dev"
  8770. }
  8771. },
  8772. "autoload": {
  8773. "classmap": [
  8774. "src/"
  8775. ]
  8776. },
  8777. "notification-url": "https://packagist.org/downloads/",
  8778. "license": [
  8779. "BSD-3-Clause"
  8780. ],
  8781. "authors": [
  8782. {
  8783. "name": "Arne Blankerts",
  8784. "email": "arne@blankerts.de",
  8785. "role": "Developer"
  8786. },
  8787. {
  8788. "name": "Sebastian Heuer",
  8789. "email": "sebastian@phpeople.de",
  8790. "role": "Developer"
  8791. },
  8792. {
  8793. "name": "Sebastian Bergmann",
  8794. "email": "sebastian@phpunit.de",
  8795. "role": "Developer"
  8796. }
  8797. ],
  8798. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8799. "support": {
  8800. "issues": "https://github.com/phar-io/manifest/issues",
  8801. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8802. },
  8803. "funding": [
  8804. {
  8805. "url": "https://github.com/theseer",
  8806. "type": "github"
  8807. }
  8808. ],
  8809. "time": "2024-03-03T12:33:53+00:00"
  8810. },
  8811. {
  8812. "name": "phar-io/version",
  8813. "version": "3.2.1",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/phar-io/version.git",
  8817. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8822. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8823. "shasum": ""
  8824. },
  8825. "require": {
  8826. "php": "^7.2 || ^8.0"
  8827. },
  8828. "type": "library",
  8829. "autoload": {
  8830. "classmap": [
  8831. "src/"
  8832. ]
  8833. },
  8834. "notification-url": "https://packagist.org/downloads/",
  8835. "license": [
  8836. "BSD-3-Clause"
  8837. ],
  8838. "authors": [
  8839. {
  8840. "name": "Arne Blankerts",
  8841. "email": "arne@blankerts.de",
  8842. "role": "Developer"
  8843. },
  8844. {
  8845. "name": "Sebastian Heuer",
  8846. "email": "sebastian@phpeople.de",
  8847. "role": "Developer"
  8848. },
  8849. {
  8850. "name": "Sebastian Bergmann",
  8851. "email": "sebastian@phpunit.de",
  8852. "role": "Developer"
  8853. }
  8854. ],
  8855. "description": "Library for handling version information and constraints",
  8856. "support": {
  8857. "issues": "https://github.com/phar-io/version/issues",
  8858. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8859. },
  8860. "time": "2022-02-21T01:04:05+00:00"
  8861. },
  8862. {
  8863. "name": "phpunit/php-code-coverage",
  8864. "version": "9.2.32",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8868. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8873. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "ext-dom": "*",
  8878. "ext-libxml": "*",
  8879. "ext-xmlwriter": "*",
  8880. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8881. "php": ">=7.3",
  8882. "phpunit/php-file-iterator": "^3.0.6",
  8883. "phpunit/php-text-template": "^2.0.4",
  8884. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8885. "sebastian/complexity": "^2.0.3",
  8886. "sebastian/environment": "^5.1.5",
  8887. "sebastian/lines-of-code": "^1.0.4",
  8888. "sebastian/version": "^3.0.2",
  8889. "theseer/tokenizer": "^1.2.3"
  8890. },
  8891. "require-dev": {
  8892. "phpunit/phpunit": "^9.6"
  8893. },
  8894. "suggest": {
  8895. "ext-pcov": "PHP extension that provides line coverage",
  8896. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8897. },
  8898. "type": "library",
  8899. "extra": {
  8900. "branch-alias": {
  8901. "dev-main": "9.2.x-dev"
  8902. }
  8903. },
  8904. "autoload": {
  8905. "classmap": [
  8906. "src/"
  8907. ]
  8908. },
  8909. "notification-url": "https://packagist.org/downloads/",
  8910. "license": [
  8911. "BSD-3-Clause"
  8912. ],
  8913. "authors": [
  8914. {
  8915. "name": "Sebastian Bergmann",
  8916. "email": "sebastian@phpunit.de",
  8917. "role": "lead"
  8918. }
  8919. ],
  8920. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8921. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8922. "keywords": [
  8923. "coverage",
  8924. "testing",
  8925. "xunit"
  8926. ],
  8927. "support": {
  8928. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8929. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8930. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8931. },
  8932. "funding": [
  8933. {
  8934. "url": "https://github.com/sebastianbergmann",
  8935. "type": "github"
  8936. }
  8937. ],
  8938. "time": "2024-08-22T04:23:01+00:00"
  8939. },
  8940. {
  8941. "name": "phpunit/php-file-iterator",
  8942. "version": "3.0.6",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8946. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8951. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8952. "shasum": ""
  8953. },
  8954. "require": {
  8955. "php": ">=7.3"
  8956. },
  8957. "require-dev": {
  8958. "phpunit/phpunit": "^9.3"
  8959. },
  8960. "type": "library",
  8961. "extra": {
  8962. "branch-alias": {
  8963. "dev-master": "3.0-dev"
  8964. }
  8965. },
  8966. "autoload": {
  8967. "classmap": [
  8968. "src/"
  8969. ]
  8970. },
  8971. "notification-url": "https://packagist.org/downloads/",
  8972. "license": [
  8973. "BSD-3-Clause"
  8974. ],
  8975. "authors": [
  8976. {
  8977. "name": "Sebastian Bergmann",
  8978. "email": "sebastian@phpunit.de",
  8979. "role": "lead"
  8980. }
  8981. ],
  8982. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8983. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8984. "keywords": [
  8985. "filesystem",
  8986. "iterator"
  8987. ],
  8988. "support": {
  8989. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8990. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8991. },
  8992. "funding": [
  8993. {
  8994. "url": "https://github.com/sebastianbergmann",
  8995. "type": "github"
  8996. }
  8997. ],
  8998. "time": "2021-12-02T12:48:52+00:00"
  8999. },
  9000. {
  9001. "name": "phpunit/php-invoker",
  9002. "version": "3.1.1",
  9003. "source": {
  9004. "type": "git",
  9005. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9006. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9007. },
  9008. "dist": {
  9009. "type": "zip",
  9010. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9011. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9012. "shasum": ""
  9013. },
  9014. "require": {
  9015. "php": ">=7.3"
  9016. },
  9017. "require-dev": {
  9018. "ext-pcntl": "*",
  9019. "phpunit/phpunit": "^9.3"
  9020. },
  9021. "suggest": {
  9022. "ext-pcntl": "*"
  9023. },
  9024. "type": "library",
  9025. "extra": {
  9026. "branch-alias": {
  9027. "dev-master": "3.1-dev"
  9028. }
  9029. },
  9030. "autoload": {
  9031. "classmap": [
  9032. "src/"
  9033. ]
  9034. },
  9035. "notification-url": "https://packagist.org/downloads/",
  9036. "license": [
  9037. "BSD-3-Clause"
  9038. ],
  9039. "authors": [
  9040. {
  9041. "name": "Sebastian Bergmann",
  9042. "email": "sebastian@phpunit.de",
  9043. "role": "lead"
  9044. }
  9045. ],
  9046. "description": "Invoke callables with a timeout",
  9047. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9048. "keywords": [
  9049. "process"
  9050. ],
  9051. "support": {
  9052. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9053. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9054. },
  9055. "funding": [
  9056. {
  9057. "url": "https://github.com/sebastianbergmann",
  9058. "type": "github"
  9059. }
  9060. ],
  9061. "time": "2020-09-28T05:58:55+00:00"
  9062. },
  9063. {
  9064. "name": "phpunit/php-text-template",
  9065. "version": "2.0.4",
  9066. "source": {
  9067. "type": "git",
  9068. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9069. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9070. },
  9071. "dist": {
  9072. "type": "zip",
  9073. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9074. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9075. "shasum": ""
  9076. },
  9077. "require": {
  9078. "php": ">=7.3"
  9079. },
  9080. "require-dev": {
  9081. "phpunit/phpunit": "^9.3"
  9082. },
  9083. "type": "library",
  9084. "extra": {
  9085. "branch-alias": {
  9086. "dev-master": "2.0-dev"
  9087. }
  9088. },
  9089. "autoload": {
  9090. "classmap": [
  9091. "src/"
  9092. ]
  9093. },
  9094. "notification-url": "https://packagist.org/downloads/",
  9095. "license": [
  9096. "BSD-3-Clause"
  9097. ],
  9098. "authors": [
  9099. {
  9100. "name": "Sebastian Bergmann",
  9101. "email": "sebastian@phpunit.de",
  9102. "role": "lead"
  9103. }
  9104. ],
  9105. "description": "Simple template engine.",
  9106. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9107. "keywords": [
  9108. "template"
  9109. ],
  9110. "support": {
  9111. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9112. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9113. },
  9114. "funding": [
  9115. {
  9116. "url": "https://github.com/sebastianbergmann",
  9117. "type": "github"
  9118. }
  9119. ],
  9120. "time": "2020-10-26T05:33:50+00:00"
  9121. },
  9122. {
  9123. "name": "phpunit/php-timer",
  9124. "version": "5.0.3",
  9125. "source": {
  9126. "type": "git",
  9127. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9128. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9129. },
  9130. "dist": {
  9131. "type": "zip",
  9132. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9133. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9134. "shasum": ""
  9135. },
  9136. "require": {
  9137. "php": ">=7.3"
  9138. },
  9139. "require-dev": {
  9140. "phpunit/phpunit": "^9.3"
  9141. },
  9142. "type": "library",
  9143. "extra": {
  9144. "branch-alias": {
  9145. "dev-master": "5.0-dev"
  9146. }
  9147. },
  9148. "autoload": {
  9149. "classmap": [
  9150. "src/"
  9151. ]
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "BSD-3-Clause"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Sebastian Bergmann",
  9160. "email": "sebastian@phpunit.de",
  9161. "role": "lead"
  9162. }
  9163. ],
  9164. "description": "Utility class for timing",
  9165. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9166. "keywords": [
  9167. "timer"
  9168. ],
  9169. "support": {
  9170. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9171. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9172. },
  9173. "funding": [
  9174. {
  9175. "url": "https://github.com/sebastianbergmann",
  9176. "type": "github"
  9177. }
  9178. ],
  9179. "time": "2020-10-26T13:16:10+00:00"
  9180. },
  9181. {
  9182. "name": "phpunit/phpunit",
  9183. "version": "9.6.34",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9187. "reference": "b36f02317466907a230d3aa1d34467041271ef4a"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a",
  9192. "reference": "b36f02317466907a230d3aa1d34467041271ef4a",
  9193. "shasum": ""
  9194. },
  9195. "require": {
  9196. "doctrine/instantiator": "^1.5.0 || ^2",
  9197. "ext-dom": "*",
  9198. "ext-json": "*",
  9199. "ext-libxml": "*",
  9200. "ext-mbstring": "*",
  9201. "ext-xml": "*",
  9202. "ext-xmlwriter": "*",
  9203. "myclabs/deep-copy": "^1.13.4",
  9204. "phar-io/manifest": "^2.0.4",
  9205. "phar-io/version": "^3.2.1",
  9206. "php": ">=7.3",
  9207. "phpunit/php-code-coverage": "^9.2.32",
  9208. "phpunit/php-file-iterator": "^3.0.6",
  9209. "phpunit/php-invoker": "^3.1.1",
  9210. "phpunit/php-text-template": "^2.0.4",
  9211. "phpunit/php-timer": "^5.0.3",
  9212. "sebastian/cli-parser": "^1.0.2",
  9213. "sebastian/code-unit": "^1.0.8",
  9214. "sebastian/comparator": "^4.0.10",
  9215. "sebastian/diff": "^4.0.6",
  9216. "sebastian/environment": "^5.1.5",
  9217. "sebastian/exporter": "^4.0.8",
  9218. "sebastian/global-state": "^5.0.8",
  9219. "sebastian/object-enumerator": "^4.0.4",
  9220. "sebastian/resource-operations": "^3.0.4",
  9221. "sebastian/type": "^3.2.1",
  9222. "sebastian/version": "^3.0.2"
  9223. },
  9224. "suggest": {
  9225. "ext-soap": "To be able to generate mocks based on WSDL files",
  9226. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9227. },
  9228. "bin": [
  9229. "phpunit"
  9230. ],
  9231. "type": "library",
  9232. "extra": {
  9233. "branch-alias": {
  9234. "dev-master": "9.6-dev"
  9235. }
  9236. },
  9237. "autoload": {
  9238. "files": [
  9239. "src/Framework/Assert/Functions.php"
  9240. ],
  9241. "classmap": [
  9242. "src/"
  9243. ]
  9244. },
  9245. "notification-url": "https://packagist.org/downloads/",
  9246. "license": [
  9247. "BSD-3-Clause"
  9248. ],
  9249. "authors": [
  9250. {
  9251. "name": "Sebastian Bergmann",
  9252. "email": "sebastian@phpunit.de",
  9253. "role": "lead"
  9254. }
  9255. ],
  9256. "description": "The PHP Unit Testing framework.",
  9257. "homepage": "https://phpunit.de/",
  9258. "keywords": [
  9259. "phpunit",
  9260. "testing",
  9261. "xunit"
  9262. ],
  9263. "support": {
  9264. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9265. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9266. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.34"
  9267. },
  9268. "funding": [
  9269. {
  9270. "url": "https://phpunit.de/sponsors.html",
  9271. "type": "custom"
  9272. },
  9273. {
  9274. "url": "https://github.com/sebastianbergmann",
  9275. "type": "github"
  9276. },
  9277. {
  9278. "url": "https://liberapay.com/sebastianbergmann",
  9279. "type": "liberapay"
  9280. },
  9281. {
  9282. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9283. "type": "thanks_dev"
  9284. },
  9285. {
  9286. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9287. "type": "tidelift"
  9288. }
  9289. ],
  9290. "time": "2026-01-27T05:45:00+00:00"
  9291. },
  9292. {
  9293. "name": "sebastian/cli-parser",
  9294. "version": "1.0.2",
  9295. "source": {
  9296. "type": "git",
  9297. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9298. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9299. },
  9300. "dist": {
  9301. "type": "zip",
  9302. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9303. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9304. "shasum": ""
  9305. },
  9306. "require": {
  9307. "php": ">=7.3"
  9308. },
  9309. "require-dev": {
  9310. "phpunit/phpunit": "^9.3"
  9311. },
  9312. "type": "library",
  9313. "extra": {
  9314. "branch-alias": {
  9315. "dev-master": "1.0-dev"
  9316. }
  9317. },
  9318. "autoload": {
  9319. "classmap": [
  9320. "src/"
  9321. ]
  9322. },
  9323. "notification-url": "https://packagist.org/downloads/",
  9324. "license": [
  9325. "BSD-3-Clause"
  9326. ],
  9327. "authors": [
  9328. {
  9329. "name": "Sebastian Bergmann",
  9330. "email": "sebastian@phpunit.de",
  9331. "role": "lead"
  9332. }
  9333. ],
  9334. "description": "Library for parsing CLI options",
  9335. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9336. "support": {
  9337. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9338. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9339. },
  9340. "funding": [
  9341. {
  9342. "url": "https://github.com/sebastianbergmann",
  9343. "type": "github"
  9344. }
  9345. ],
  9346. "time": "2024-03-02T06:27:43+00:00"
  9347. },
  9348. {
  9349. "name": "sebastian/code-unit",
  9350. "version": "1.0.8",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9354. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9359. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9360. "shasum": ""
  9361. },
  9362. "require": {
  9363. "php": ">=7.3"
  9364. },
  9365. "require-dev": {
  9366. "phpunit/phpunit": "^9.3"
  9367. },
  9368. "type": "library",
  9369. "extra": {
  9370. "branch-alias": {
  9371. "dev-master": "1.0-dev"
  9372. }
  9373. },
  9374. "autoload": {
  9375. "classmap": [
  9376. "src/"
  9377. ]
  9378. },
  9379. "notification-url": "https://packagist.org/downloads/",
  9380. "license": [
  9381. "BSD-3-Clause"
  9382. ],
  9383. "authors": [
  9384. {
  9385. "name": "Sebastian Bergmann",
  9386. "email": "sebastian@phpunit.de",
  9387. "role": "lead"
  9388. }
  9389. ],
  9390. "description": "Collection of value objects that represent the PHP code units",
  9391. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9392. "support": {
  9393. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9394. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9395. },
  9396. "funding": [
  9397. {
  9398. "url": "https://github.com/sebastianbergmann",
  9399. "type": "github"
  9400. }
  9401. ],
  9402. "time": "2020-10-26T13:08:54+00:00"
  9403. },
  9404. {
  9405. "name": "sebastian/code-unit-reverse-lookup",
  9406. "version": "2.0.3",
  9407. "source": {
  9408. "type": "git",
  9409. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9410. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9411. },
  9412. "dist": {
  9413. "type": "zip",
  9414. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9415. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9416. "shasum": ""
  9417. },
  9418. "require": {
  9419. "php": ">=7.3"
  9420. },
  9421. "require-dev": {
  9422. "phpunit/phpunit": "^9.3"
  9423. },
  9424. "type": "library",
  9425. "extra": {
  9426. "branch-alias": {
  9427. "dev-master": "2.0-dev"
  9428. }
  9429. },
  9430. "autoload": {
  9431. "classmap": [
  9432. "src/"
  9433. ]
  9434. },
  9435. "notification-url": "https://packagist.org/downloads/",
  9436. "license": [
  9437. "BSD-3-Clause"
  9438. ],
  9439. "authors": [
  9440. {
  9441. "name": "Sebastian Bergmann",
  9442. "email": "sebastian@phpunit.de"
  9443. }
  9444. ],
  9445. "description": "Looks up which function or method a line of code belongs to",
  9446. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9447. "support": {
  9448. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9449. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9450. },
  9451. "funding": [
  9452. {
  9453. "url": "https://github.com/sebastianbergmann",
  9454. "type": "github"
  9455. }
  9456. ],
  9457. "time": "2020-09-28T05:30:19+00:00"
  9458. },
  9459. {
  9460. "name": "sebastian/comparator",
  9461. "version": "4.0.10",
  9462. "source": {
  9463. "type": "git",
  9464. "url": "https://github.com/sebastianbergmann/comparator.git",
  9465. "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d"
  9466. },
  9467. "dist": {
  9468. "type": "zip",
  9469. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d",
  9470. "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d",
  9471. "shasum": ""
  9472. },
  9473. "require": {
  9474. "php": ">=7.3",
  9475. "sebastian/diff": "^4.0",
  9476. "sebastian/exporter": "^4.0"
  9477. },
  9478. "require-dev": {
  9479. "phpunit/phpunit": "^9.3"
  9480. },
  9481. "type": "library",
  9482. "extra": {
  9483. "branch-alias": {
  9484. "dev-master": "4.0-dev"
  9485. }
  9486. },
  9487. "autoload": {
  9488. "classmap": [
  9489. "src/"
  9490. ]
  9491. },
  9492. "notification-url": "https://packagist.org/downloads/",
  9493. "license": [
  9494. "BSD-3-Clause"
  9495. ],
  9496. "authors": [
  9497. {
  9498. "name": "Sebastian Bergmann",
  9499. "email": "sebastian@phpunit.de"
  9500. },
  9501. {
  9502. "name": "Jeff Welch",
  9503. "email": "whatthejeff@gmail.com"
  9504. },
  9505. {
  9506. "name": "Volker Dusch",
  9507. "email": "github@wallbash.com"
  9508. },
  9509. {
  9510. "name": "Bernhard Schussek",
  9511. "email": "bschussek@2bepublished.at"
  9512. }
  9513. ],
  9514. "description": "Provides the functionality to compare PHP values for equality",
  9515. "homepage": "https://github.com/sebastianbergmann/comparator",
  9516. "keywords": [
  9517. "comparator",
  9518. "compare",
  9519. "equality"
  9520. ],
  9521. "support": {
  9522. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9523. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.10"
  9524. },
  9525. "funding": [
  9526. {
  9527. "url": "https://github.com/sebastianbergmann",
  9528. "type": "github"
  9529. },
  9530. {
  9531. "url": "https://liberapay.com/sebastianbergmann",
  9532. "type": "liberapay"
  9533. },
  9534. {
  9535. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9536. "type": "thanks_dev"
  9537. },
  9538. {
  9539. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9540. "type": "tidelift"
  9541. }
  9542. ],
  9543. "time": "2026-01-24T09:22:56+00:00"
  9544. },
  9545. {
  9546. "name": "sebastian/complexity",
  9547. "version": "2.0.3",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/sebastianbergmann/complexity.git",
  9551. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9556. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9557. "shasum": ""
  9558. },
  9559. "require": {
  9560. "nikic/php-parser": "^4.18 || ^5.0",
  9561. "php": ">=7.3"
  9562. },
  9563. "require-dev": {
  9564. "phpunit/phpunit": "^9.3"
  9565. },
  9566. "type": "library",
  9567. "extra": {
  9568. "branch-alias": {
  9569. "dev-master": "2.0-dev"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "classmap": [
  9574. "src/"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "BSD-3-Clause"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Sebastian Bergmann",
  9584. "email": "sebastian@phpunit.de",
  9585. "role": "lead"
  9586. }
  9587. ],
  9588. "description": "Library for calculating the complexity of PHP code units",
  9589. "homepage": "https://github.com/sebastianbergmann/complexity",
  9590. "support": {
  9591. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9592. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9593. },
  9594. "funding": [
  9595. {
  9596. "url": "https://github.com/sebastianbergmann",
  9597. "type": "github"
  9598. }
  9599. ],
  9600. "time": "2023-12-22T06:19:30+00:00"
  9601. },
  9602. {
  9603. "name": "sebastian/diff",
  9604. "version": "4.0.6",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/sebastianbergmann/diff.git",
  9608. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9613. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9614. "shasum": ""
  9615. },
  9616. "require": {
  9617. "php": ">=7.3"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^9.3",
  9621. "symfony/process": "^4.2 || ^5"
  9622. },
  9623. "type": "library",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-master": "4.0-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "classmap": [
  9631. "src/"
  9632. ]
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "BSD-3-Clause"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Sebastian Bergmann",
  9641. "email": "sebastian@phpunit.de"
  9642. },
  9643. {
  9644. "name": "Kore Nordmann",
  9645. "email": "mail@kore-nordmann.de"
  9646. }
  9647. ],
  9648. "description": "Diff implementation",
  9649. "homepage": "https://github.com/sebastianbergmann/diff",
  9650. "keywords": [
  9651. "diff",
  9652. "udiff",
  9653. "unidiff",
  9654. "unified diff"
  9655. ],
  9656. "support": {
  9657. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9658. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://github.com/sebastianbergmann",
  9663. "type": "github"
  9664. }
  9665. ],
  9666. "time": "2024-03-02T06:30:58+00:00"
  9667. },
  9668. {
  9669. "name": "sebastian/environment",
  9670. "version": "5.1.5",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/sebastianbergmann/environment.git",
  9674. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9679. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=7.3"
  9684. },
  9685. "require-dev": {
  9686. "phpunit/phpunit": "^9.3"
  9687. },
  9688. "suggest": {
  9689. "ext-posix": "*"
  9690. },
  9691. "type": "library",
  9692. "extra": {
  9693. "branch-alias": {
  9694. "dev-master": "5.1-dev"
  9695. }
  9696. },
  9697. "autoload": {
  9698. "classmap": [
  9699. "src/"
  9700. ]
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "BSD-3-Clause"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Sebastian Bergmann",
  9709. "email": "sebastian@phpunit.de"
  9710. }
  9711. ],
  9712. "description": "Provides functionality to handle HHVM/PHP environments",
  9713. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9714. "keywords": [
  9715. "Xdebug",
  9716. "environment",
  9717. "hhvm"
  9718. ],
  9719. "support": {
  9720. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9721. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9722. },
  9723. "funding": [
  9724. {
  9725. "url": "https://github.com/sebastianbergmann",
  9726. "type": "github"
  9727. }
  9728. ],
  9729. "time": "2023-02-03T06:03:51+00:00"
  9730. },
  9731. {
  9732. "name": "sebastian/exporter",
  9733. "version": "4.0.8",
  9734. "source": {
  9735. "type": "git",
  9736. "url": "https://github.com/sebastianbergmann/exporter.git",
  9737. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  9738. },
  9739. "dist": {
  9740. "type": "zip",
  9741. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9742. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9743. "shasum": ""
  9744. },
  9745. "require": {
  9746. "php": ">=7.3",
  9747. "sebastian/recursion-context": "^4.0"
  9748. },
  9749. "require-dev": {
  9750. "ext-mbstring": "*",
  9751. "phpunit/phpunit": "^9.3"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-master": "4.0-dev"
  9757. }
  9758. },
  9759. "autoload": {
  9760. "classmap": [
  9761. "src/"
  9762. ]
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "BSD-3-Clause"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Sebastian Bergmann",
  9771. "email": "sebastian@phpunit.de"
  9772. },
  9773. {
  9774. "name": "Jeff Welch",
  9775. "email": "whatthejeff@gmail.com"
  9776. },
  9777. {
  9778. "name": "Volker Dusch",
  9779. "email": "github@wallbash.com"
  9780. },
  9781. {
  9782. "name": "Adam Harvey",
  9783. "email": "aharvey@php.net"
  9784. },
  9785. {
  9786. "name": "Bernhard Schussek",
  9787. "email": "bschussek@gmail.com"
  9788. }
  9789. ],
  9790. "description": "Provides the functionality to export PHP variables for visualization",
  9791. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9792. "keywords": [
  9793. "export",
  9794. "exporter"
  9795. ],
  9796. "support": {
  9797. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9798. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  9799. },
  9800. "funding": [
  9801. {
  9802. "url": "https://github.com/sebastianbergmann",
  9803. "type": "github"
  9804. },
  9805. {
  9806. "url": "https://liberapay.com/sebastianbergmann",
  9807. "type": "liberapay"
  9808. },
  9809. {
  9810. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9811. "type": "thanks_dev"
  9812. },
  9813. {
  9814. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  9815. "type": "tidelift"
  9816. }
  9817. ],
  9818. "time": "2025-09-24T06:03:27+00:00"
  9819. },
  9820. {
  9821. "name": "sebastian/global-state",
  9822. "version": "5.0.8",
  9823. "source": {
  9824. "type": "git",
  9825. "url": "https://github.com/sebastianbergmann/global-state.git",
  9826. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  9827. },
  9828. "dist": {
  9829. "type": "zip",
  9830. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9831. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9832. "shasum": ""
  9833. },
  9834. "require": {
  9835. "php": ">=7.3",
  9836. "sebastian/object-reflector": "^2.0",
  9837. "sebastian/recursion-context": "^4.0"
  9838. },
  9839. "require-dev": {
  9840. "ext-dom": "*",
  9841. "phpunit/phpunit": "^9.3"
  9842. },
  9843. "suggest": {
  9844. "ext-uopz": "*"
  9845. },
  9846. "type": "library",
  9847. "extra": {
  9848. "branch-alias": {
  9849. "dev-master": "5.0-dev"
  9850. }
  9851. },
  9852. "autoload": {
  9853. "classmap": [
  9854. "src/"
  9855. ]
  9856. },
  9857. "notification-url": "https://packagist.org/downloads/",
  9858. "license": [
  9859. "BSD-3-Clause"
  9860. ],
  9861. "authors": [
  9862. {
  9863. "name": "Sebastian Bergmann",
  9864. "email": "sebastian@phpunit.de"
  9865. }
  9866. ],
  9867. "description": "Snapshotting of global state",
  9868. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9869. "keywords": [
  9870. "global state"
  9871. ],
  9872. "support": {
  9873. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9874. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  9875. },
  9876. "funding": [
  9877. {
  9878. "url": "https://github.com/sebastianbergmann",
  9879. "type": "github"
  9880. },
  9881. {
  9882. "url": "https://liberapay.com/sebastianbergmann",
  9883. "type": "liberapay"
  9884. },
  9885. {
  9886. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9887. "type": "thanks_dev"
  9888. },
  9889. {
  9890. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  9891. "type": "tidelift"
  9892. }
  9893. ],
  9894. "time": "2025-08-10T07:10:35+00:00"
  9895. },
  9896. {
  9897. "name": "sebastian/lines-of-code",
  9898. "version": "1.0.4",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9902. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9907. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9908. "shasum": ""
  9909. },
  9910. "require": {
  9911. "nikic/php-parser": "^4.18 || ^5.0",
  9912. "php": ">=7.3"
  9913. },
  9914. "require-dev": {
  9915. "phpunit/phpunit": "^9.3"
  9916. },
  9917. "type": "library",
  9918. "extra": {
  9919. "branch-alias": {
  9920. "dev-master": "1.0-dev"
  9921. }
  9922. },
  9923. "autoload": {
  9924. "classmap": [
  9925. "src/"
  9926. ]
  9927. },
  9928. "notification-url": "https://packagist.org/downloads/",
  9929. "license": [
  9930. "BSD-3-Clause"
  9931. ],
  9932. "authors": [
  9933. {
  9934. "name": "Sebastian Bergmann",
  9935. "email": "sebastian@phpunit.de",
  9936. "role": "lead"
  9937. }
  9938. ],
  9939. "description": "Library for counting the lines of code in PHP source code",
  9940. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9941. "support": {
  9942. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9943. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9944. },
  9945. "funding": [
  9946. {
  9947. "url": "https://github.com/sebastianbergmann",
  9948. "type": "github"
  9949. }
  9950. ],
  9951. "time": "2023-12-22T06:20:34+00:00"
  9952. },
  9953. {
  9954. "name": "sebastian/object-enumerator",
  9955. "version": "4.0.4",
  9956. "source": {
  9957. "type": "git",
  9958. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9959. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9960. },
  9961. "dist": {
  9962. "type": "zip",
  9963. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9964. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9965. "shasum": ""
  9966. },
  9967. "require": {
  9968. "php": ">=7.3",
  9969. "sebastian/object-reflector": "^2.0",
  9970. "sebastian/recursion-context": "^4.0"
  9971. },
  9972. "require-dev": {
  9973. "phpunit/phpunit": "^9.3"
  9974. },
  9975. "type": "library",
  9976. "extra": {
  9977. "branch-alias": {
  9978. "dev-master": "4.0-dev"
  9979. }
  9980. },
  9981. "autoload": {
  9982. "classmap": [
  9983. "src/"
  9984. ]
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "BSD-3-Clause"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Sebastian Bergmann",
  9993. "email": "sebastian@phpunit.de"
  9994. }
  9995. ],
  9996. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9997. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9998. "support": {
  9999. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10000. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://github.com/sebastianbergmann",
  10005. "type": "github"
  10006. }
  10007. ],
  10008. "time": "2020-10-26T13:12:34+00:00"
  10009. },
  10010. {
  10011. "name": "sebastian/object-reflector",
  10012. "version": "2.0.4",
  10013. "source": {
  10014. "type": "git",
  10015. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10016. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10017. },
  10018. "dist": {
  10019. "type": "zip",
  10020. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10021. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10022. "shasum": ""
  10023. },
  10024. "require": {
  10025. "php": ">=7.3"
  10026. },
  10027. "require-dev": {
  10028. "phpunit/phpunit": "^9.3"
  10029. },
  10030. "type": "library",
  10031. "extra": {
  10032. "branch-alias": {
  10033. "dev-master": "2.0-dev"
  10034. }
  10035. },
  10036. "autoload": {
  10037. "classmap": [
  10038. "src/"
  10039. ]
  10040. },
  10041. "notification-url": "https://packagist.org/downloads/",
  10042. "license": [
  10043. "BSD-3-Clause"
  10044. ],
  10045. "authors": [
  10046. {
  10047. "name": "Sebastian Bergmann",
  10048. "email": "sebastian@phpunit.de"
  10049. }
  10050. ],
  10051. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10052. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10053. "support": {
  10054. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10055. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://github.com/sebastianbergmann",
  10060. "type": "github"
  10061. }
  10062. ],
  10063. "time": "2020-10-26T13:14:26+00:00"
  10064. },
  10065. {
  10066. "name": "sebastian/recursion-context",
  10067. "version": "4.0.6",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10071. "reference": "539c6691e0623af6dc6f9c20384c120f963465a0"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0",
  10076. "reference": "539c6691e0623af6dc6f9c20384c120f963465a0",
  10077. "shasum": ""
  10078. },
  10079. "require": {
  10080. "php": ">=7.3"
  10081. },
  10082. "require-dev": {
  10083. "phpunit/phpunit": "^9.3"
  10084. },
  10085. "type": "library",
  10086. "extra": {
  10087. "branch-alias": {
  10088. "dev-master": "4.0-dev"
  10089. }
  10090. },
  10091. "autoload": {
  10092. "classmap": [
  10093. "src/"
  10094. ]
  10095. },
  10096. "notification-url": "https://packagist.org/downloads/",
  10097. "license": [
  10098. "BSD-3-Clause"
  10099. ],
  10100. "authors": [
  10101. {
  10102. "name": "Sebastian Bergmann",
  10103. "email": "sebastian@phpunit.de"
  10104. },
  10105. {
  10106. "name": "Jeff Welch",
  10107. "email": "whatthejeff@gmail.com"
  10108. },
  10109. {
  10110. "name": "Adam Harvey",
  10111. "email": "aharvey@php.net"
  10112. }
  10113. ],
  10114. "description": "Provides functionality to recursively process PHP variables",
  10115. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10116. "support": {
  10117. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10118. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.6"
  10119. },
  10120. "funding": [
  10121. {
  10122. "url": "https://github.com/sebastianbergmann",
  10123. "type": "github"
  10124. },
  10125. {
  10126. "url": "https://liberapay.com/sebastianbergmann",
  10127. "type": "liberapay"
  10128. },
  10129. {
  10130. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10131. "type": "thanks_dev"
  10132. },
  10133. {
  10134. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  10135. "type": "tidelift"
  10136. }
  10137. ],
  10138. "time": "2025-08-10T06:57:39+00:00"
  10139. },
  10140. {
  10141. "name": "sebastian/resource-operations",
  10142. "version": "3.0.4",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10146. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10151. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10152. "shasum": ""
  10153. },
  10154. "require": {
  10155. "php": ">=7.3"
  10156. },
  10157. "require-dev": {
  10158. "phpunit/phpunit": "^9.0"
  10159. },
  10160. "type": "library",
  10161. "extra": {
  10162. "branch-alias": {
  10163. "dev-main": "3.0-dev"
  10164. }
  10165. },
  10166. "autoload": {
  10167. "classmap": [
  10168. "src/"
  10169. ]
  10170. },
  10171. "notification-url": "https://packagist.org/downloads/",
  10172. "license": [
  10173. "BSD-3-Clause"
  10174. ],
  10175. "authors": [
  10176. {
  10177. "name": "Sebastian Bergmann",
  10178. "email": "sebastian@phpunit.de"
  10179. }
  10180. ],
  10181. "description": "Provides a list of PHP built-in functions that operate on resources",
  10182. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10183. "support": {
  10184. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10185. },
  10186. "funding": [
  10187. {
  10188. "url": "https://github.com/sebastianbergmann",
  10189. "type": "github"
  10190. }
  10191. ],
  10192. "time": "2024-03-14T16:00:52+00:00"
  10193. },
  10194. {
  10195. "name": "sebastian/type",
  10196. "version": "3.2.1",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/sebastianbergmann/type.git",
  10200. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10205. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10206. "shasum": ""
  10207. },
  10208. "require": {
  10209. "php": ">=7.3"
  10210. },
  10211. "require-dev": {
  10212. "phpunit/phpunit": "^9.5"
  10213. },
  10214. "type": "library",
  10215. "extra": {
  10216. "branch-alias": {
  10217. "dev-master": "3.2-dev"
  10218. }
  10219. },
  10220. "autoload": {
  10221. "classmap": [
  10222. "src/"
  10223. ]
  10224. },
  10225. "notification-url": "https://packagist.org/downloads/",
  10226. "license": [
  10227. "BSD-3-Clause"
  10228. ],
  10229. "authors": [
  10230. {
  10231. "name": "Sebastian Bergmann",
  10232. "email": "sebastian@phpunit.de",
  10233. "role": "lead"
  10234. }
  10235. ],
  10236. "description": "Collection of value objects that represent the types of the PHP type system",
  10237. "homepage": "https://github.com/sebastianbergmann/type",
  10238. "support": {
  10239. "issues": "https://github.com/sebastianbergmann/type/issues",
  10240. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10241. },
  10242. "funding": [
  10243. {
  10244. "url": "https://github.com/sebastianbergmann",
  10245. "type": "github"
  10246. }
  10247. ],
  10248. "time": "2023-02-03T06:13:03+00:00"
  10249. },
  10250. {
  10251. "name": "sebastian/version",
  10252. "version": "3.0.2",
  10253. "source": {
  10254. "type": "git",
  10255. "url": "https://github.com/sebastianbergmann/version.git",
  10256. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10257. },
  10258. "dist": {
  10259. "type": "zip",
  10260. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10261. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10262. "shasum": ""
  10263. },
  10264. "require": {
  10265. "php": ">=7.3"
  10266. },
  10267. "type": "library",
  10268. "extra": {
  10269. "branch-alias": {
  10270. "dev-master": "3.0-dev"
  10271. }
  10272. },
  10273. "autoload": {
  10274. "classmap": [
  10275. "src/"
  10276. ]
  10277. },
  10278. "notification-url": "https://packagist.org/downloads/",
  10279. "license": [
  10280. "BSD-3-Clause"
  10281. ],
  10282. "authors": [
  10283. {
  10284. "name": "Sebastian Bergmann",
  10285. "email": "sebastian@phpunit.de",
  10286. "role": "lead"
  10287. }
  10288. ],
  10289. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10290. "homepage": "https://github.com/sebastianbergmann/version",
  10291. "support": {
  10292. "issues": "https://github.com/sebastianbergmann/version/issues",
  10293. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10294. },
  10295. "funding": [
  10296. {
  10297. "url": "https://github.com/sebastianbergmann",
  10298. "type": "github"
  10299. }
  10300. ],
  10301. "time": "2020-09-28T06:39:44+00:00"
  10302. },
  10303. {
  10304. "name": "symfony/browser-kit",
  10305. "version": "v7.4.4",
  10306. "source": {
  10307. "type": "git",
  10308. "url": "https://github.com/symfony/browser-kit.git",
  10309. "reference": "bed167eadaaba641f51fc842c9227aa5e251309e"
  10310. },
  10311. "dist": {
  10312. "type": "zip",
  10313. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/bed167eadaaba641f51fc842c9227aa5e251309e",
  10314. "reference": "bed167eadaaba641f51fc842c9227aa5e251309e",
  10315. "shasum": ""
  10316. },
  10317. "require": {
  10318. "php": ">=8.2",
  10319. "symfony/deprecation-contracts": "^2.5|^3",
  10320. "symfony/dom-crawler": "^6.4|^7.0|^8.0"
  10321. },
  10322. "require-dev": {
  10323. "symfony/css-selector": "^6.4|^7.0|^8.0",
  10324. "symfony/http-client": "^6.4|^7.0|^8.0",
  10325. "symfony/mime": "^6.4|^7.0|^8.0",
  10326. "symfony/process": "^6.4|^7.0|^8.0"
  10327. },
  10328. "type": "library",
  10329. "autoload": {
  10330. "psr-4": {
  10331. "Symfony\\Component\\BrowserKit\\": ""
  10332. },
  10333. "exclude-from-classmap": [
  10334. "/Tests/"
  10335. ]
  10336. },
  10337. "notification-url": "https://packagist.org/downloads/",
  10338. "license": [
  10339. "MIT"
  10340. ],
  10341. "authors": [
  10342. {
  10343. "name": "Fabien Potencier",
  10344. "email": "fabien@symfony.com"
  10345. },
  10346. {
  10347. "name": "Symfony Community",
  10348. "homepage": "https://symfony.com/contributors"
  10349. }
  10350. ],
  10351. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10352. "homepage": "https://symfony.com",
  10353. "support": {
  10354. "source": "https://github.com/symfony/browser-kit/tree/v7.4.4"
  10355. },
  10356. "funding": [
  10357. {
  10358. "url": "https://symfony.com/sponsor",
  10359. "type": "custom"
  10360. },
  10361. {
  10362. "url": "https://github.com/fabpot",
  10363. "type": "github"
  10364. },
  10365. {
  10366. "url": "https://github.com/nicolas-grekas",
  10367. "type": "github"
  10368. },
  10369. {
  10370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10371. "type": "tidelift"
  10372. }
  10373. ],
  10374. "time": "2026-01-13T10:40:19+00:00"
  10375. },
  10376. {
  10377. "name": "symfony/css-selector",
  10378. "version": "v7.4.0",
  10379. "source": {
  10380. "type": "git",
  10381. "url": "https://github.com/symfony/css-selector.git",
  10382. "reference": "ab862f478513e7ca2fe9ec117a6f01a8da6e1135"
  10383. },
  10384. "dist": {
  10385. "type": "zip",
  10386. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab862f478513e7ca2fe9ec117a6f01a8da6e1135",
  10387. "reference": "ab862f478513e7ca2fe9ec117a6f01a8da6e1135",
  10388. "shasum": ""
  10389. },
  10390. "require": {
  10391. "php": ">=8.2"
  10392. },
  10393. "type": "library",
  10394. "autoload": {
  10395. "psr-4": {
  10396. "Symfony\\Component\\CssSelector\\": ""
  10397. },
  10398. "exclude-from-classmap": [
  10399. "/Tests/"
  10400. ]
  10401. },
  10402. "notification-url": "https://packagist.org/downloads/",
  10403. "license": [
  10404. "MIT"
  10405. ],
  10406. "authors": [
  10407. {
  10408. "name": "Fabien Potencier",
  10409. "email": "fabien@symfony.com"
  10410. },
  10411. {
  10412. "name": "Jean-François Simon",
  10413. "email": "jeanfrancois.simon@sensiolabs.com"
  10414. },
  10415. {
  10416. "name": "Symfony Community",
  10417. "homepage": "https://symfony.com/contributors"
  10418. }
  10419. ],
  10420. "description": "Converts CSS selectors to XPath expressions",
  10421. "homepage": "https://symfony.com",
  10422. "support": {
  10423. "source": "https://github.com/symfony/css-selector/tree/v7.4.0"
  10424. },
  10425. "funding": [
  10426. {
  10427. "url": "https://symfony.com/sponsor",
  10428. "type": "custom"
  10429. },
  10430. {
  10431. "url": "https://github.com/fabpot",
  10432. "type": "github"
  10433. },
  10434. {
  10435. "url": "https://github.com/nicolas-grekas",
  10436. "type": "github"
  10437. },
  10438. {
  10439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10440. "type": "tidelift"
  10441. }
  10442. ],
  10443. "time": "2025-10-30T13:39:42+00:00"
  10444. },
  10445. {
  10446. "name": "symfony/debug-bundle",
  10447. "version": "v7.4.0",
  10448. "source": {
  10449. "type": "git",
  10450. "url": "https://github.com/symfony/debug-bundle.git",
  10451. "reference": "329383fb895353e3c8ab792cc35c4a7e7b17881b"
  10452. },
  10453. "dist": {
  10454. "type": "zip",
  10455. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/329383fb895353e3c8ab792cc35c4a7e7b17881b",
  10456. "reference": "329383fb895353e3c8ab792cc35c4a7e7b17881b",
  10457. "shasum": ""
  10458. },
  10459. "require": {
  10460. "composer-runtime-api": ">=2.1",
  10461. "ext-xml": "*",
  10462. "php": ">=8.2",
  10463. "symfony/config": "^7.3|^8.0",
  10464. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  10465. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  10466. "symfony/twig-bridge": "^6.4|^7.0|^8.0",
  10467. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  10468. },
  10469. "require-dev": {
  10470. "symfony/web-profiler-bundle": "^6.4|^7.0|^8.0"
  10471. },
  10472. "type": "symfony-bundle",
  10473. "autoload": {
  10474. "psr-4": {
  10475. "Symfony\\Bundle\\DebugBundle\\": ""
  10476. },
  10477. "exclude-from-classmap": [
  10478. "/Tests/"
  10479. ]
  10480. },
  10481. "notification-url": "https://packagist.org/downloads/",
  10482. "license": [
  10483. "MIT"
  10484. ],
  10485. "authors": [
  10486. {
  10487. "name": "Fabien Potencier",
  10488. "email": "fabien@symfony.com"
  10489. },
  10490. {
  10491. "name": "Symfony Community",
  10492. "homepage": "https://symfony.com/contributors"
  10493. }
  10494. ],
  10495. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10496. "homepage": "https://symfony.com",
  10497. "support": {
  10498. "source": "https://github.com/symfony/debug-bundle/tree/v7.4.0"
  10499. },
  10500. "funding": [
  10501. {
  10502. "url": "https://symfony.com/sponsor",
  10503. "type": "custom"
  10504. },
  10505. {
  10506. "url": "https://github.com/fabpot",
  10507. "type": "github"
  10508. },
  10509. {
  10510. "url": "https://github.com/nicolas-grekas",
  10511. "type": "github"
  10512. },
  10513. {
  10514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10515. "type": "tidelift"
  10516. }
  10517. ],
  10518. "time": "2025-10-24T13:56:35+00:00"
  10519. },
  10520. {
  10521. "name": "symfony/dom-crawler",
  10522. "version": "v7.4.4",
  10523. "source": {
  10524. "type": "git",
  10525. "url": "https://github.com/symfony/dom-crawler.git",
  10526. "reference": "71fd6a82fc357c8b5de22f78b228acfc43dee965"
  10527. },
  10528. "dist": {
  10529. "type": "zip",
  10530. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/71fd6a82fc357c8b5de22f78b228acfc43dee965",
  10531. "reference": "71fd6a82fc357c8b5de22f78b228acfc43dee965",
  10532. "shasum": ""
  10533. },
  10534. "require": {
  10535. "masterminds/html5": "^2.6",
  10536. "php": ">=8.2",
  10537. "symfony/deprecation-contracts": "^2.5|^3",
  10538. "symfony/polyfill-ctype": "~1.8",
  10539. "symfony/polyfill-mbstring": "~1.0"
  10540. },
  10541. "require-dev": {
  10542. "symfony/css-selector": "^6.4|^7.0|^8.0"
  10543. },
  10544. "type": "library",
  10545. "autoload": {
  10546. "psr-4": {
  10547. "Symfony\\Component\\DomCrawler\\": ""
  10548. },
  10549. "exclude-from-classmap": [
  10550. "/Tests/"
  10551. ]
  10552. },
  10553. "notification-url": "https://packagist.org/downloads/",
  10554. "license": [
  10555. "MIT"
  10556. ],
  10557. "authors": [
  10558. {
  10559. "name": "Fabien Potencier",
  10560. "email": "fabien@symfony.com"
  10561. },
  10562. {
  10563. "name": "Symfony Community",
  10564. "homepage": "https://symfony.com/contributors"
  10565. }
  10566. ],
  10567. "description": "Eases DOM navigation for HTML and XML documents",
  10568. "homepage": "https://symfony.com",
  10569. "support": {
  10570. "source": "https://github.com/symfony/dom-crawler/tree/v7.4.4"
  10571. },
  10572. "funding": [
  10573. {
  10574. "url": "https://symfony.com/sponsor",
  10575. "type": "custom"
  10576. },
  10577. {
  10578. "url": "https://github.com/fabpot",
  10579. "type": "github"
  10580. },
  10581. {
  10582. "url": "https://github.com/nicolas-grekas",
  10583. "type": "github"
  10584. },
  10585. {
  10586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10587. "type": "tidelift"
  10588. }
  10589. ],
  10590. "time": "2026-01-05T08:47:25+00:00"
  10591. },
  10592. {
  10593. "name": "symfony/maker-bundle",
  10594. "version": "v1.66.0",
  10595. "source": {
  10596. "type": "git",
  10597. "url": "https://github.com/symfony/maker-bundle.git",
  10598. "reference": "b5b4afa2a570b926682e9f34615a6766dd560ff4"
  10599. },
  10600. "dist": {
  10601. "type": "zip",
  10602. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/b5b4afa2a570b926682e9f34615a6766dd560ff4",
  10603. "reference": "b5b4afa2a570b926682e9f34615a6766dd560ff4",
  10604. "shasum": ""
  10605. },
  10606. "require": {
  10607. "doctrine/inflector": "^2.0",
  10608. "nikic/php-parser": "^5.0",
  10609. "php": ">=8.1",
  10610. "symfony/config": "^6.4|^7.0|^8.0",
  10611. "symfony/console": "^6.4|^7.0|^8.0",
  10612. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  10613. "symfony/deprecation-contracts": "^2.2|^3",
  10614. "symfony/filesystem": "^6.4|^7.0|^8.0",
  10615. "symfony/finder": "^6.4|^7.0|^8.0",
  10616. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  10617. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  10618. "symfony/process": "^6.4|^7.0|^8.0"
  10619. },
  10620. "conflict": {
  10621. "doctrine/doctrine-bundle": "<2.10",
  10622. "doctrine/orm": "<2.15"
  10623. },
  10624. "require-dev": {
  10625. "composer/semver": "^3.0",
  10626. "doctrine/doctrine-bundle": "^2.10|^3.0",
  10627. "doctrine/orm": "^2.15|^3",
  10628. "doctrine/persistence": "^3.1|^4.0",
  10629. "symfony/http-client": "^6.4|^7.0|^8.0",
  10630. "symfony/phpunit-bridge": "^6.4.1|^7.0|^8.0",
  10631. "symfony/security-core": "^6.4|^7.0|^8.0",
  10632. "symfony/security-http": "^6.4|^7.0|^8.0",
  10633. "symfony/yaml": "^6.4|^7.0|^8.0",
  10634. "twig/twig": "^3.0|^4.x-dev"
  10635. },
  10636. "type": "symfony-bundle",
  10637. "extra": {
  10638. "branch-alias": {
  10639. "dev-main": "1.x-dev"
  10640. }
  10641. },
  10642. "autoload": {
  10643. "psr-4": {
  10644. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10645. }
  10646. },
  10647. "notification-url": "https://packagist.org/downloads/",
  10648. "license": [
  10649. "MIT"
  10650. ],
  10651. "authors": [
  10652. {
  10653. "name": "Symfony Community",
  10654. "homepage": "https://symfony.com/contributors"
  10655. }
  10656. ],
  10657. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10658. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10659. "keywords": [
  10660. "code generator",
  10661. "dev",
  10662. "generator",
  10663. "scaffold",
  10664. "scaffolding"
  10665. ],
  10666. "support": {
  10667. "issues": "https://github.com/symfony/maker-bundle/issues",
  10668. "source": "https://github.com/symfony/maker-bundle/tree/v1.66.0"
  10669. },
  10670. "funding": [
  10671. {
  10672. "url": "https://symfony.com/sponsor",
  10673. "type": "custom"
  10674. },
  10675. {
  10676. "url": "https://github.com/fabpot",
  10677. "type": "github"
  10678. },
  10679. {
  10680. "url": "https://github.com/nicolas-grekas",
  10681. "type": "github"
  10682. },
  10683. {
  10684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10685. "type": "tidelift"
  10686. }
  10687. ],
  10688. "time": "2026-02-09T08:55:54+00:00"
  10689. },
  10690. {
  10691. "name": "symfony/phpunit-bridge",
  10692. "version": "v7.4.3",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/symfony/phpunit-bridge.git",
  10696. "reference": "f933e68bb9df29d08077a37e1515a23fea8562ab"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/f933e68bb9df29d08077a37e1515a23fea8562ab",
  10701. "reference": "f933e68bb9df29d08077a37e1515a23fea8562ab",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "php": ">=8.1.0"
  10706. },
  10707. "require-dev": {
  10708. "symfony/deprecation-contracts": "^2.5|^3",
  10709. "symfony/error-handler": "^6.4.3|^7.0.3|^8.0"
  10710. },
  10711. "bin": [
  10712. "bin/simple-phpunit"
  10713. ],
  10714. "type": "symfony-bridge",
  10715. "extra": {
  10716. "thanks": {
  10717. "url": "https://github.com/sebastianbergmann/phpunit",
  10718. "name": "phpunit/phpunit"
  10719. }
  10720. },
  10721. "autoload": {
  10722. "files": [
  10723. "bootstrap.php"
  10724. ],
  10725. "psr-4": {
  10726. "Symfony\\Bridge\\PhpUnit\\": ""
  10727. },
  10728. "exclude-from-classmap": [
  10729. "/Tests/",
  10730. "/bin/"
  10731. ]
  10732. },
  10733. "notification-url": "https://packagist.org/downloads/",
  10734. "license": [
  10735. "MIT"
  10736. ],
  10737. "authors": [
  10738. {
  10739. "name": "Nicolas Grekas",
  10740. "email": "p@tchwork.com"
  10741. },
  10742. {
  10743. "name": "Symfony Community",
  10744. "homepage": "https://symfony.com/contributors"
  10745. }
  10746. ],
  10747. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10748. "homepage": "https://symfony.com",
  10749. "keywords": [
  10750. "testing"
  10751. ],
  10752. "support": {
  10753. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.4.3"
  10754. },
  10755. "funding": [
  10756. {
  10757. "url": "https://symfony.com/sponsor",
  10758. "type": "custom"
  10759. },
  10760. {
  10761. "url": "https://github.com/fabpot",
  10762. "type": "github"
  10763. },
  10764. {
  10765. "url": "https://github.com/nicolas-grekas",
  10766. "type": "github"
  10767. },
  10768. {
  10769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10770. "type": "tidelift"
  10771. }
  10772. ],
  10773. "time": "2025-12-09T15:33:45+00:00"
  10774. },
  10775. {
  10776. "name": "symfony/web-profiler-bundle",
  10777. "version": "v7.4.4",
  10778. "source": {
  10779. "type": "git",
  10780. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10781. "reference": "be165e29e6109efb89bfaefe56e3deccf72a8643"
  10782. },
  10783. "dist": {
  10784. "type": "zip",
  10785. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/be165e29e6109efb89bfaefe56e3deccf72a8643",
  10786. "reference": "be165e29e6109efb89bfaefe56e3deccf72a8643",
  10787. "shasum": ""
  10788. },
  10789. "require": {
  10790. "composer-runtime-api": ">=2.1",
  10791. "php": ">=8.2",
  10792. "symfony/config": "^7.3|^8.0",
  10793. "symfony/deprecation-contracts": "^2.5|^3",
  10794. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  10795. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  10796. "symfony/routing": "^6.4|^7.0|^8.0",
  10797. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  10798. "twig/twig": "^3.15"
  10799. },
  10800. "conflict": {
  10801. "symfony/form": "<6.4",
  10802. "symfony/mailer": "<6.4",
  10803. "symfony/messenger": "<6.4",
  10804. "symfony/serializer": "<7.2",
  10805. "symfony/workflow": "<7.3"
  10806. },
  10807. "require-dev": {
  10808. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  10809. "symfony/console": "^6.4|^7.0|^8.0",
  10810. "symfony/css-selector": "^6.4|^7.0|^8.0",
  10811. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  10812. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  10813. },
  10814. "type": "symfony-bundle",
  10815. "autoload": {
  10816. "psr-4": {
  10817. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10818. },
  10819. "exclude-from-classmap": [
  10820. "/Tests/"
  10821. ]
  10822. },
  10823. "notification-url": "https://packagist.org/downloads/",
  10824. "license": [
  10825. "MIT"
  10826. ],
  10827. "authors": [
  10828. {
  10829. "name": "Fabien Potencier",
  10830. "email": "fabien@symfony.com"
  10831. },
  10832. {
  10833. "name": "Symfony Community",
  10834. "homepage": "https://symfony.com/contributors"
  10835. }
  10836. ],
  10837. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10838. "homepage": "https://symfony.com",
  10839. "keywords": [
  10840. "dev"
  10841. ],
  10842. "support": {
  10843. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.4.4"
  10844. },
  10845. "funding": [
  10846. {
  10847. "url": "https://symfony.com/sponsor",
  10848. "type": "custom"
  10849. },
  10850. {
  10851. "url": "https://github.com/fabpot",
  10852. "type": "github"
  10853. },
  10854. {
  10855. "url": "https://github.com/nicolas-grekas",
  10856. "type": "github"
  10857. },
  10858. {
  10859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10860. "type": "tidelift"
  10861. }
  10862. ],
  10863. "time": "2026-01-07T11:56:45+00:00"
  10864. },
  10865. {
  10866. "name": "theseer/tokenizer",
  10867. "version": "1.3.1",
  10868. "source": {
  10869. "type": "git",
  10870. "url": "https://github.com/theseer/tokenizer.git",
  10871. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10872. },
  10873. "dist": {
  10874. "type": "zip",
  10875. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10876. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10877. "shasum": ""
  10878. },
  10879. "require": {
  10880. "ext-dom": "*",
  10881. "ext-tokenizer": "*",
  10882. "ext-xmlwriter": "*",
  10883. "php": "^7.2 || ^8.0"
  10884. },
  10885. "type": "library",
  10886. "autoload": {
  10887. "classmap": [
  10888. "src/"
  10889. ]
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "BSD-3-Clause"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Arne Blankerts",
  10898. "email": "arne@blankerts.de",
  10899. "role": "Developer"
  10900. }
  10901. ],
  10902. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10903. "support": {
  10904. "issues": "https://github.com/theseer/tokenizer/issues",
  10905. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10906. },
  10907. "funding": [
  10908. {
  10909. "url": "https://github.com/theseer",
  10910. "type": "github"
  10911. }
  10912. ],
  10913. "time": "2025-11-17T20:03:58+00:00"
  10914. }
  10915. ],
  10916. "aliases": [],
  10917. "minimum-stability": "stable",
  10918. "stability-flags": {},
  10919. "prefer-stable": false,
  10920. "prefer-lowest": false,
  10921. "platform": {
  10922. "php": "^8.2",
  10923. "ext-ctype": "*",
  10924. "ext-iconv": "*"
  10925. },
  10926. "platform-dev": {},
  10927. "platform-overrides": {
  10928. "php": "8.2"
  10929. },
  10930. "plugin-api-version": "2.9.0"
  10931. }