composer.lock 428 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780
  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": "2e8b87fab601521e94b21f3187970a93",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.5.11",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "68ff39175e8e94a4bb1d259407ce51a6a60f09e6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/68ff39175e8e94a4bb1d259407ce51a6a60f09e6",
  20. "reference": "68ff39175e8e94a4bb1d259407ce51a6a60f09e6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^7.2 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^1.10",
  30. "phpunit/phpunit": "^8 || ^9",
  31. "psr/log": "^1.0 || ^2.0 || ^3.0",
  32. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.5.11"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. }
  78. ],
  79. "time": "2026-03-30T09:16:10+00:00"
  80. },
  81. {
  82. "name": "composer/semver",
  83. "version": "3.4.4",
  84. "source": {
  85. "type": "git",
  86. "url": "https://github.com/composer/semver.git",
  87. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  88. },
  89. "dist": {
  90. "type": "zip",
  91. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  92. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  93. "shasum": ""
  94. },
  95. "require": {
  96. "php": "^5.3.2 || ^7.0 || ^8.0"
  97. },
  98. "require-dev": {
  99. "phpstan/phpstan": "^1.11",
  100. "symfony/phpunit-bridge": "^3 || ^7"
  101. },
  102. "type": "library",
  103. "extra": {
  104. "branch-alias": {
  105. "dev-main": "3.x-dev"
  106. }
  107. },
  108. "autoload": {
  109. "psr-4": {
  110. "Composer\\Semver\\": "src"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Nils Adermann",
  120. "email": "naderman@naderman.de",
  121. "homepage": "http://www.naderman.de"
  122. },
  123. {
  124. "name": "Jordi Boggiano",
  125. "email": "j.boggiano@seld.be",
  126. "homepage": "http://seld.be"
  127. },
  128. {
  129. "name": "Rob Bast",
  130. "email": "rob.bast@gmail.com",
  131. "homepage": "http://robbast.nl"
  132. }
  133. ],
  134. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  135. "keywords": [
  136. "semantic",
  137. "semver",
  138. "validation",
  139. "versioning"
  140. ],
  141. "support": {
  142. "irc": "ircs://irc.libera.chat:6697/composer",
  143. "issues": "https://github.com/composer/semver/issues",
  144. "source": "https://github.com/composer/semver/tree/3.4.4"
  145. },
  146. "funding": [
  147. {
  148. "url": "https://packagist.com",
  149. "type": "custom"
  150. },
  151. {
  152. "url": "https://github.com/composer",
  153. "type": "github"
  154. }
  155. ],
  156. "time": "2025-08-20T19:15:30+00:00"
  157. },
  158. {
  159. "name": "dflydev/dot-access-data",
  160. "version": "v3.0.3",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  164. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  169. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": "^7.1 || ^8.0"
  174. },
  175. "require-dev": {
  176. "phpstan/phpstan": "^0.12.42",
  177. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  178. "scrutinizer/ocular": "1.6.0",
  179. "squizlabs/php_codesniffer": "^3.5",
  180. "vimeo/psalm": "^4.0.0"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-main": "3.x-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Dflydev\\DotAccessData\\": "src/"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Dragonfly Development Inc.",
  200. "email": "info@dflydev.com",
  201. "homepage": "http://dflydev.com"
  202. },
  203. {
  204. "name": "Beau Simensen",
  205. "email": "beau@dflydev.com",
  206. "homepage": "http://beausimensen.com"
  207. },
  208. {
  209. "name": "Carlos Frutos",
  210. "email": "carlos@kiwing.it",
  211. "homepage": "https://github.com/cfrutos"
  212. },
  213. {
  214. "name": "Colin O'Dell",
  215. "email": "colinodell@gmail.com",
  216. "homepage": "https://www.colinodell.com"
  217. }
  218. ],
  219. "description": "Given a deep data structure, access data by dot notation.",
  220. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  221. "keywords": [
  222. "access",
  223. "data",
  224. "dot",
  225. "notation"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  229. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  230. },
  231. "time": "2024-07-08T12:26:09+00:00"
  232. },
  233. {
  234. "name": "doctrine/collections",
  235. "version": "2.6.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/collections.git",
  239. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  244. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "doctrine/deprecations": "^1",
  249. "php": "^8.1",
  250. "symfony/polyfill-php84": "^1.30"
  251. },
  252. "require-dev": {
  253. "doctrine/coding-standard": "^14",
  254. "ext-json": "*",
  255. "phpstan/phpstan": "^2.1.30",
  256. "phpstan/phpstan-phpunit": "^2.0.7",
  257. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  258. },
  259. "type": "library",
  260. "autoload": {
  261. "psr-4": {
  262. "Doctrine\\Common\\Collections\\": "src"
  263. }
  264. },
  265. "notification-url": "https://packagist.org/downloads/",
  266. "license": [
  267. "MIT"
  268. ],
  269. "authors": [
  270. {
  271. "name": "Guilherme Blanco",
  272. "email": "guilhermeblanco@gmail.com"
  273. },
  274. {
  275. "name": "Roman Borschel",
  276. "email": "roman@code-factory.org"
  277. },
  278. {
  279. "name": "Benjamin Eberlei",
  280. "email": "kontakt@beberlei.de"
  281. },
  282. {
  283. "name": "Jonathan Wage",
  284. "email": "jonwage@gmail.com"
  285. },
  286. {
  287. "name": "Johannes Schmitt",
  288. "email": "schmittjoh@gmail.com"
  289. }
  290. ],
  291. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  292. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  293. "keywords": [
  294. "array",
  295. "collections",
  296. "iterators",
  297. "php"
  298. ],
  299. "support": {
  300. "issues": "https://github.com/doctrine/collections/issues",
  301. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  302. },
  303. "funding": [
  304. {
  305. "url": "https://www.doctrine-project.org/sponsorship.html",
  306. "type": "custom"
  307. },
  308. {
  309. "url": "https://www.patreon.com/phpdoctrine",
  310. "type": "patreon"
  311. },
  312. {
  313. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  314. "type": "tidelift"
  315. }
  316. ],
  317. "time": "2026-01-15T10:01:58+00:00"
  318. },
  319. {
  320. "name": "doctrine/dbal",
  321. "version": "4.4.3",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/doctrine/dbal.git",
  325. "reference": "61e730f1658814821a85f2402c945f3883407dec"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61e730f1658814821a85f2402c945f3883407dec",
  330. "reference": "61e730f1658814821a85f2402c945f3883407dec",
  331. "shasum": ""
  332. },
  333. "require": {
  334. "doctrine/deprecations": "^1.1.5",
  335. "php": "^8.2",
  336. "psr/cache": "^1|^2|^3",
  337. "psr/log": "^1|^2|^3"
  338. },
  339. "require-dev": {
  340. "doctrine/coding-standard": "14.0.0",
  341. "fig/log-test": "^1",
  342. "jetbrains/phpstorm-stubs": "2023.2",
  343. "phpstan/phpstan": "2.1.30",
  344. "phpstan/phpstan-phpunit": "2.0.7",
  345. "phpstan/phpstan-strict-rules": "^2",
  346. "phpunit/phpunit": "11.5.50",
  347. "slevomat/coding-standard": "8.27.1",
  348. "squizlabs/php_codesniffer": "4.0.1",
  349. "symfony/cache": "^6.3.8|^7.0|^8.0",
  350. "symfony/console": "^5.4|^6.3|^7.0|^8.0"
  351. },
  352. "suggest": {
  353. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  354. },
  355. "type": "library",
  356. "autoload": {
  357. "psr-4": {
  358. "Doctrine\\DBAL\\": "src"
  359. }
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "MIT"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Guilherme Blanco",
  368. "email": "guilhermeblanco@gmail.com"
  369. },
  370. {
  371. "name": "Roman Borschel",
  372. "email": "roman@code-factory.org"
  373. },
  374. {
  375. "name": "Benjamin Eberlei",
  376. "email": "kontakt@beberlei.de"
  377. },
  378. {
  379. "name": "Jonathan Wage",
  380. "email": "jonwage@gmail.com"
  381. }
  382. ],
  383. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  384. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  385. "keywords": [
  386. "abstraction",
  387. "database",
  388. "db2",
  389. "dbal",
  390. "mariadb",
  391. "mssql",
  392. "mysql",
  393. "oci8",
  394. "oracle",
  395. "pdo",
  396. "pgsql",
  397. "postgresql",
  398. "queryobject",
  399. "sasql",
  400. "sql",
  401. "sqlite",
  402. "sqlserver",
  403. "sqlsrv"
  404. ],
  405. "support": {
  406. "issues": "https://github.com/doctrine/dbal/issues",
  407. "source": "https://github.com/doctrine/dbal/tree/4.4.3"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://www.doctrine-project.org/sponsorship.html",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://www.patreon.com/phpdoctrine",
  416. "type": "patreon"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2026-03-20T08:52:12+00:00"
  424. },
  425. {
  426. "name": "doctrine/deprecations",
  427. "version": "1.1.6",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/doctrine/deprecations.git",
  431. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  436. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "php": "^7.1 || ^8.0"
  441. },
  442. "conflict": {
  443. "phpunit/phpunit": "<=7.5 || >=14"
  444. },
  445. "require-dev": {
  446. "doctrine/coding-standard": "^9 || ^12 || ^14",
  447. "phpstan/phpstan": "1.4.10 || 2.1.30",
  448. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  449. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  450. "psr/log": "^1 || ^2 || ^3"
  451. },
  452. "suggest": {
  453. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  454. },
  455. "type": "library",
  456. "autoload": {
  457. "psr-4": {
  458. "Doctrine\\Deprecations\\": "src"
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "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.",
  466. "homepage": "https://www.doctrine-project.org/",
  467. "support": {
  468. "issues": "https://github.com/doctrine/deprecations/issues",
  469. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  470. },
  471. "time": "2026-02-07T07:09:04+00:00"
  472. },
  473. {
  474. "name": "doctrine/doctrine-bundle",
  475. "version": "3.2.2",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/doctrine/DoctrineBundle.git",
  479. "reference": "af84173db6978c3d2688ea3bcf3a91720b0704ce"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/af84173db6978c3d2688ea3bcf3a91720b0704ce",
  484. "reference": "af84173db6978c3d2688ea3bcf3a91720b0704ce",
  485. "shasum": ""
  486. },
  487. "require": {
  488. "doctrine/dbal": "^4.0",
  489. "doctrine/deprecations": "^1.0",
  490. "doctrine/persistence": "^4",
  491. "doctrine/sql-formatter": "^1.0.1",
  492. "php": "^8.4",
  493. "symfony/cache": "^6.4 || ^7.0 || ^8.0",
  494. "symfony/config": "^6.4 || ^7.0 || ^8.0",
  495. "symfony/console": "^6.4 || ^7.0 || ^8.0",
  496. "symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
  497. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3 || ^8.0",
  498. "symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
  499. "symfony/service-contracts": "^3"
  500. },
  501. "conflict": {
  502. "doctrine/orm": "<3.0 || >=4.0",
  503. "twig/twig": "<3.0.4"
  504. },
  505. "require-dev": {
  506. "doctrine/coding-standard": "^14",
  507. "doctrine/orm": "^3.4.4",
  508. "phpstan/phpstan": "2.1.1",
  509. "phpstan/phpstan-phpunit": "2.0.3",
  510. "phpstan/phpstan-strict-rules": "^2",
  511. "phpstan/phpstan-symfony": "^2.0",
  512. "phpunit/phpunit": "^12.3.10",
  513. "psr/log": "^3.0",
  514. "symfony/doctrine-messenger": "^6.4 || ^7.0 || ^8.0",
  515. "symfony/expression-language": "^6.4 || ^7.0 || ^8.0",
  516. "symfony/messenger": "^6.4 || ^7.0 || ^8.0",
  517. "symfony/property-info": "^6.4 || ^7.0 || ^8.0",
  518. "symfony/security-bundle": "^6.4 || ^7.0 || ^8.0",
  519. "symfony/stopwatch": "^6.4 || ^7.0 || ^8.0",
  520. "symfony/string": "^6.4 || ^7.0 || ^8.0",
  521. "symfony/twig-bridge": "^6.4 || ^7.0 || ^8.0",
  522. "symfony/validator": "^6.4 || ^7.0 || ^8.0",
  523. "symfony/web-profiler-bundle": "^6.4 || ^7.0 || ^8.0",
  524. "symfony/yaml": "^6.4 || ^7.0 || ^8.0",
  525. "twig/twig": "^3.21.1"
  526. },
  527. "suggest": {
  528. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  529. "ext-pdo": "*",
  530. "symfony/web-profiler-bundle": "To use the data collector."
  531. },
  532. "type": "symfony-bundle",
  533. "autoload": {
  534. "psr-4": {
  535. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Fabien Potencier",
  545. "email": "fabien@symfony.com"
  546. },
  547. {
  548. "name": "Benjamin Eberlei",
  549. "email": "kontakt@beberlei.de"
  550. },
  551. {
  552. "name": "Symfony Community",
  553. "homepage": "https://symfony.com/contributors"
  554. },
  555. {
  556. "name": "Doctrine Project",
  557. "homepage": "https://www.doctrine-project.org/"
  558. }
  559. ],
  560. "description": "Symfony DoctrineBundle",
  561. "homepage": "https://www.doctrine-project.org",
  562. "keywords": [
  563. "database",
  564. "dbal",
  565. "orm",
  566. "persistence"
  567. ],
  568. "support": {
  569. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  570. "source": "https://github.com/doctrine/DoctrineBundle/tree/3.2.2"
  571. },
  572. "funding": [
  573. {
  574. "url": "https://www.doctrine-project.org/sponsorship.html",
  575. "type": "custom"
  576. },
  577. {
  578. "url": "https://www.patreon.com/phpdoctrine",
  579. "type": "patreon"
  580. },
  581. {
  582. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  583. "type": "tidelift"
  584. }
  585. ],
  586. "time": "2025-12-24T12:24:29+00:00"
  587. },
  588. {
  589. "name": "doctrine/doctrine-migrations-bundle",
  590. "version": "3.7.0",
  591. "source": {
  592. "type": "git",
  593. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  594. "reference": "1e380c6dd8ac8488217f39cff6b77e367f1a644b"
  595. },
  596. "dist": {
  597. "type": "zip",
  598. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1e380c6dd8ac8488217f39cff6b77e367f1a644b",
  599. "reference": "1e380c6dd8ac8488217f39cff6b77e367f1a644b",
  600. "shasum": ""
  601. },
  602. "require": {
  603. "doctrine/doctrine-bundle": "^2.4 || ^3.0",
  604. "doctrine/migrations": "^3.2",
  605. "php": "^7.2 || ^8.0",
  606. "symfony/deprecation-contracts": "^2.1 || ^3",
  607. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  608. },
  609. "require-dev": {
  610. "composer/semver": "^3.0",
  611. "doctrine/coding-standard": "^12 || ^14",
  612. "doctrine/orm": "^2.6 || ^3",
  613. "phpstan/phpstan": "^1.4 || ^2",
  614. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  615. "phpstan/phpstan-phpunit": "^1 || ^2",
  616. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  617. "phpstan/phpstan-symfony": "^1.3 || ^2",
  618. "phpunit/phpunit": "^8.5 || ^9.5",
  619. "symfony/phpunit-bridge": "^6.3 || ^7 || ^8",
  620. "symfony/var-exporter": "^5.4 || ^6 || ^7 || ^8"
  621. },
  622. "type": "symfony-bundle",
  623. "autoload": {
  624. "psr-4": {
  625. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "MIT"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Fabien Potencier",
  635. "email": "fabien@symfony.com"
  636. },
  637. {
  638. "name": "Doctrine Project",
  639. "homepage": "https://www.doctrine-project.org"
  640. },
  641. {
  642. "name": "Symfony Community",
  643. "homepage": "https://symfony.com/contributors"
  644. }
  645. ],
  646. "description": "Symfony DoctrineMigrationsBundle",
  647. "homepage": "https://www.doctrine-project.org",
  648. "keywords": [
  649. "dbal",
  650. "migrations",
  651. "schema"
  652. ],
  653. "support": {
  654. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  655. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.7.0"
  656. },
  657. "funding": [
  658. {
  659. "url": "https://www.doctrine-project.org/sponsorship.html",
  660. "type": "custom"
  661. },
  662. {
  663. "url": "https://www.patreon.com/phpdoctrine",
  664. "type": "patreon"
  665. },
  666. {
  667. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  668. "type": "tidelift"
  669. }
  670. ],
  671. "time": "2025-11-15T19:02:59+00:00"
  672. },
  673. {
  674. "name": "doctrine/event-manager",
  675. "version": "2.1.1",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/doctrine/event-manager.git",
  679. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  684. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "php": "^8.1"
  689. },
  690. "conflict": {
  691. "doctrine/common": "<2.9"
  692. },
  693. "require-dev": {
  694. "doctrine/coding-standard": "^14",
  695. "phpdocumentor/guides-cli": "^1.4",
  696. "phpstan/phpstan": "^2.1.32",
  697. "phpunit/phpunit": "^10.5.58"
  698. },
  699. "type": "library",
  700. "autoload": {
  701. "psr-4": {
  702. "Doctrine\\Common\\": "src"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Guilherme Blanco",
  712. "email": "guilhermeblanco@gmail.com"
  713. },
  714. {
  715. "name": "Roman Borschel",
  716. "email": "roman@code-factory.org"
  717. },
  718. {
  719. "name": "Benjamin Eberlei",
  720. "email": "kontakt@beberlei.de"
  721. },
  722. {
  723. "name": "Jonathan Wage",
  724. "email": "jonwage@gmail.com"
  725. },
  726. {
  727. "name": "Johannes Schmitt",
  728. "email": "schmittjoh@gmail.com"
  729. },
  730. {
  731. "name": "Marco Pivetta",
  732. "email": "ocramius@gmail.com"
  733. }
  734. ],
  735. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  736. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  737. "keywords": [
  738. "event",
  739. "event dispatcher",
  740. "event manager",
  741. "event system",
  742. "events"
  743. ],
  744. "support": {
  745. "issues": "https://github.com/doctrine/event-manager/issues",
  746. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  747. },
  748. "funding": [
  749. {
  750. "url": "https://www.doctrine-project.org/sponsorship.html",
  751. "type": "custom"
  752. },
  753. {
  754. "url": "https://www.patreon.com/phpdoctrine",
  755. "type": "patreon"
  756. },
  757. {
  758. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  759. "type": "tidelift"
  760. }
  761. ],
  762. "time": "2026-01-29T07:11:08+00:00"
  763. },
  764. {
  765. "name": "doctrine/inflector",
  766. "version": "2.1.0",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/doctrine/inflector.git",
  770. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  775. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "php": "^7.2 || ^8.0"
  780. },
  781. "require-dev": {
  782. "doctrine/coding-standard": "^12.0 || ^13.0",
  783. "phpstan/phpstan": "^1.12 || ^2.0",
  784. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  785. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  786. "phpunit/phpunit": "^8.5 || ^12.2"
  787. },
  788. "type": "library",
  789. "autoload": {
  790. "psr-4": {
  791. "Doctrine\\Inflector\\": "src"
  792. }
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "MIT"
  797. ],
  798. "authors": [
  799. {
  800. "name": "Guilherme Blanco",
  801. "email": "guilhermeblanco@gmail.com"
  802. },
  803. {
  804. "name": "Roman Borschel",
  805. "email": "roman@code-factory.org"
  806. },
  807. {
  808. "name": "Benjamin Eberlei",
  809. "email": "kontakt@beberlei.de"
  810. },
  811. {
  812. "name": "Jonathan Wage",
  813. "email": "jonwage@gmail.com"
  814. },
  815. {
  816. "name": "Johannes Schmitt",
  817. "email": "schmittjoh@gmail.com"
  818. }
  819. ],
  820. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  821. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  822. "keywords": [
  823. "inflection",
  824. "inflector",
  825. "lowercase",
  826. "manipulation",
  827. "php",
  828. "plural",
  829. "singular",
  830. "strings",
  831. "uppercase",
  832. "words"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/doctrine/inflector/issues",
  836. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://www.doctrine-project.org/sponsorship.html",
  841. "type": "custom"
  842. },
  843. {
  844. "url": "https://www.patreon.com/phpdoctrine",
  845. "type": "patreon"
  846. },
  847. {
  848. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  849. "type": "tidelift"
  850. }
  851. ],
  852. "time": "2025-08-10T19:31:58+00:00"
  853. },
  854. {
  855. "name": "doctrine/instantiator",
  856. "version": "2.1.0",
  857. "source": {
  858. "type": "git",
  859. "url": "https://github.com/doctrine/instantiator.git",
  860. "reference": "23da848e1a2308728fe5fdddabf4be17ff9720c7"
  861. },
  862. "dist": {
  863. "type": "zip",
  864. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/23da848e1a2308728fe5fdddabf4be17ff9720c7",
  865. "reference": "23da848e1a2308728fe5fdddabf4be17ff9720c7",
  866. "shasum": ""
  867. },
  868. "require": {
  869. "php": "^8.4"
  870. },
  871. "require-dev": {
  872. "doctrine/coding-standard": "^14",
  873. "ext-pdo": "*",
  874. "ext-phar": "*",
  875. "phpbench/phpbench": "^1.2",
  876. "phpstan/phpstan": "^2.1",
  877. "phpstan/phpstan-phpunit": "^2.0",
  878. "phpunit/phpunit": "^10.5.58"
  879. },
  880. "type": "library",
  881. "autoload": {
  882. "psr-4": {
  883. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Marco Pivetta",
  893. "email": "ocramius@gmail.com",
  894. "homepage": "https://ocramius.github.io/"
  895. }
  896. ],
  897. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  898. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  899. "keywords": [
  900. "constructor",
  901. "instantiate"
  902. ],
  903. "support": {
  904. "issues": "https://github.com/doctrine/instantiator/issues",
  905. "source": "https://github.com/doctrine/instantiator/tree/2.1.0"
  906. },
  907. "funding": [
  908. {
  909. "url": "https://www.doctrine-project.org/sponsorship.html",
  910. "type": "custom"
  911. },
  912. {
  913. "url": "https://www.patreon.com/phpdoctrine",
  914. "type": "patreon"
  915. },
  916. {
  917. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  918. "type": "tidelift"
  919. }
  920. ],
  921. "time": "2026-01-05T06:47:08+00:00"
  922. },
  923. {
  924. "name": "doctrine/lexer",
  925. "version": "3.0.1",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/doctrine/lexer.git",
  929. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  934. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  935. "shasum": ""
  936. },
  937. "require": {
  938. "php": "^8.1"
  939. },
  940. "require-dev": {
  941. "doctrine/coding-standard": "^12",
  942. "phpstan/phpstan": "^1.10",
  943. "phpunit/phpunit": "^10.5",
  944. "psalm/plugin-phpunit": "^0.18.3",
  945. "vimeo/psalm": "^5.21"
  946. },
  947. "type": "library",
  948. "autoload": {
  949. "psr-4": {
  950. "Doctrine\\Common\\Lexer\\": "src"
  951. }
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Guilherme Blanco",
  960. "email": "guilhermeblanco@gmail.com"
  961. },
  962. {
  963. "name": "Roman Borschel",
  964. "email": "roman@code-factory.org"
  965. },
  966. {
  967. "name": "Johannes Schmitt",
  968. "email": "schmittjoh@gmail.com"
  969. }
  970. ],
  971. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  972. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  973. "keywords": [
  974. "annotations",
  975. "docblock",
  976. "lexer",
  977. "parser",
  978. "php"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/doctrine/lexer/issues",
  982. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  983. },
  984. "funding": [
  985. {
  986. "url": "https://www.doctrine-project.org/sponsorship.html",
  987. "type": "custom"
  988. },
  989. {
  990. "url": "https://www.patreon.com/phpdoctrine",
  991. "type": "patreon"
  992. },
  993. {
  994. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  995. "type": "tidelift"
  996. }
  997. ],
  998. "time": "2024-02-05T11:56:58+00:00"
  999. },
  1000. {
  1001. "name": "doctrine/migrations",
  1002. "version": "3.9.6",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/doctrine/migrations.git",
  1006. "reference": "ffd8355cdd8505fc650d9604f058bf62aedd80a1"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/doctrine/migrations/zipball/ffd8355cdd8505fc650d9604f058bf62aedd80a1",
  1011. "reference": "ffd8355cdd8505fc650d9604f058bf62aedd80a1",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "composer-runtime-api": "^2",
  1016. "doctrine/dbal": "^3.6 || ^4",
  1017. "doctrine/deprecations": "^0.5.3 || ^1",
  1018. "doctrine/event-manager": "^1.2 || ^2.0",
  1019. "php": "^8.1",
  1020. "psr/log": "^1.1.3 || ^2 || ^3",
  1021. "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1022. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1023. "symfony/var-exporter": "^6.2 || ^7.0 || ^8.0"
  1024. },
  1025. "conflict": {
  1026. "doctrine/orm": "<2.12 || >=4"
  1027. },
  1028. "require-dev": {
  1029. "doctrine/coding-standard": "^14",
  1030. "doctrine/orm": "^2.13 || ^3",
  1031. "doctrine/persistence": "^2 || ^3 || ^4",
  1032. "doctrine/sql-formatter": "^1.0",
  1033. "ext-pdo_sqlite": "*",
  1034. "fig/log-test": "^1",
  1035. "phpstan/phpstan": "^2",
  1036. "phpstan/phpstan-deprecation-rules": "^2",
  1037. "phpstan/phpstan-phpunit": "^2",
  1038. "phpstan/phpstan-strict-rules": "^2",
  1039. "phpstan/phpstan-symfony": "^2",
  1040. "phpunit/phpunit": "^10.3 || ^11.0 || ^12.0",
  1041. "symfony/cache": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1042. "symfony/process": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1043. "symfony/yaml": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  1044. },
  1045. "suggest": {
  1046. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1047. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1048. },
  1049. "bin": [
  1050. "bin/doctrine-migrations"
  1051. ],
  1052. "type": "library",
  1053. "autoload": {
  1054. "psr-4": {
  1055. "Doctrine\\Migrations\\": "src"
  1056. }
  1057. },
  1058. "notification-url": "https://packagist.org/downloads/",
  1059. "license": [
  1060. "MIT"
  1061. ],
  1062. "authors": [
  1063. {
  1064. "name": "Benjamin Eberlei",
  1065. "email": "kontakt@beberlei.de"
  1066. },
  1067. {
  1068. "name": "Jonathan Wage",
  1069. "email": "jonwage@gmail.com"
  1070. },
  1071. {
  1072. "name": "Michael Simonson",
  1073. "email": "contact@mikesimonson.com"
  1074. }
  1075. ],
  1076. "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.",
  1077. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1078. "keywords": [
  1079. "database",
  1080. "dbal",
  1081. "migrations"
  1082. ],
  1083. "support": {
  1084. "issues": "https://github.com/doctrine/migrations/issues",
  1085. "source": "https://github.com/doctrine/migrations/tree/3.9.6"
  1086. },
  1087. "funding": [
  1088. {
  1089. "url": "https://www.doctrine-project.org/sponsorship.html",
  1090. "type": "custom"
  1091. },
  1092. {
  1093. "url": "https://www.patreon.com/phpdoctrine",
  1094. "type": "patreon"
  1095. },
  1096. {
  1097. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1098. "type": "tidelift"
  1099. }
  1100. ],
  1101. "time": "2026-02-11T06:46:11+00:00"
  1102. },
  1103. {
  1104. "name": "doctrine/orm",
  1105. "version": "3.6.3",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/doctrine/orm.git",
  1109. "reference": "e88cd591f0786089dee22b972c28aa2076df51c0"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/doctrine/orm/zipball/e88cd591f0786089dee22b972c28aa2076df51c0",
  1114. "reference": "e88cd591f0786089dee22b972c28aa2076df51c0",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "composer-runtime-api": "^2",
  1119. "doctrine/collections": "^2.2",
  1120. "doctrine/dbal": "^3.8.2 || ^4",
  1121. "doctrine/deprecations": "^0.5.3 || ^1",
  1122. "doctrine/event-manager": "^1.2 || ^2",
  1123. "doctrine/inflector": "^1.4 || ^2.0",
  1124. "doctrine/instantiator": "^1.3 || ^2",
  1125. "doctrine/lexer": "^3",
  1126. "doctrine/persistence": "^3.3.1 || ^4",
  1127. "ext-ctype": "*",
  1128. "php": "^8.1",
  1129. "psr/cache": "^1 || ^2 || ^3",
  1130. "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  1131. "symfony/var-exporter": "^6.3.9 || ^7.0 || ^8.0"
  1132. },
  1133. "require-dev": {
  1134. "doctrine/coding-standard": "^14.0",
  1135. "phpbench/phpbench": "^1.0",
  1136. "phpstan/extension-installer": "^1.4",
  1137. "phpstan/phpstan": "2.1.23",
  1138. "phpstan/phpstan-deprecation-rules": "^2",
  1139. "phpunit/phpunit": "^10.5.0 || ^11.5",
  1140. "psr/log": "^1 || ^2 || ^3",
  1141. "symfony/cache": "^5.4 || ^6.2 || ^7.0 || ^8.0"
  1142. },
  1143. "suggest": {
  1144. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1145. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1146. },
  1147. "type": "library",
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Doctrine\\ORM\\": "src"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Guilherme Blanco",
  1160. "email": "guilhermeblanco@gmail.com"
  1161. },
  1162. {
  1163. "name": "Roman Borschel",
  1164. "email": "roman@code-factory.org"
  1165. },
  1166. {
  1167. "name": "Benjamin Eberlei",
  1168. "email": "kontakt@beberlei.de"
  1169. },
  1170. {
  1171. "name": "Jonathan Wage",
  1172. "email": "jonwage@gmail.com"
  1173. },
  1174. {
  1175. "name": "Marco Pivetta",
  1176. "email": "ocramius@gmail.com"
  1177. }
  1178. ],
  1179. "description": "Object-Relational-Mapper for PHP",
  1180. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1181. "keywords": [
  1182. "database",
  1183. "orm"
  1184. ],
  1185. "support": {
  1186. "issues": "https://github.com/doctrine/orm/issues",
  1187. "source": "https://github.com/doctrine/orm/tree/3.6.3"
  1188. },
  1189. "time": "2026-04-02T06:53:27+00:00"
  1190. },
  1191. {
  1192. "name": "doctrine/persistence",
  1193. "version": "4.1.1",
  1194. "source": {
  1195. "type": "git",
  1196. "url": "https://github.com/doctrine/persistence.git",
  1197. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1198. },
  1199. "dist": {
  1200. "type": "zip",
  1201. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1202. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1203. "shasum": ""
  1204. },
  1205. "require": {
  1206. "doctrine/event-manager": "^1 || ^2",
  1207. "php": "^8.1",
  1208. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/coding-standard": "^14",
  1212. "phpstan/phpstan": "2.1.30",
  1213. "phpstan/phpstan-phpunit": "^2",
  1214. "phpstan/phpstan-strict-rules": "^2",
  1215. "phpunit/phpunit": "^10.5.58 || ^12",
  1216. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1217. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1218. },
  1219. "type": "library",
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Persistence\\": "src/Persistence"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Guilherme Blanco",
  1232. "email": "guilhermeblanco@gmail.com"
  1233. },
  1234. {
  1235. "name": "Roman Borschel",
  1236. "email": "roman@code-factory.org"
  1237. },
  1238. {
  1239. "name": "Benjamin Eberlei",
  1240. "email": "kontakt@beberlei.de"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. },
  1250. {
  1251. "name": "Marco Pivetta",
  1252. "email": "ocramius@gmail.com"
  1253. }
  1254. ],
  1255. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1256. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1257. "keywords": [
  1258. "mapper",
  1259. "object",
  1260. "odm",
  1261. "orm",
  1262. "persistence"
  1263. ],
  1264. "support": {
  1265. "issues": "https://github.com/doctrine/persistence/issues",
  1266. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1267. },
  1268. "funding": [
  1269. {
  1270. "url": "https://www.doctrine-project.org/sponsorship.html",
  1271. "type": "custom"
  1272. },
  1273. {
  1274. "url": "https://www.patreon.com/phpdoctrine",
  1275. "type": "patreon"
  1276. },
  1277. {
  1278. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1279. "type": "tidelift"
  1280. }
  1281. ],
  1282. "time": "2025-10-16T20:13:18+00:00"
  1283. },
  1284. {
  1285. "name": "doctrine/sql-formatter",
  1286. "version": "1.5.4",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/doctrine/sql-formatter.git",
  1290. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/9563949f5cd3bd12a17d12fb980528bc141c5806",
  1295. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": "^8.1"
  1300. },
  1301. "require-dev": {
  1302. "doctrine/coding-standard": "^14",
  1303. "ergebnis/phpunit-slow-test-detector": "^2.20",
  1304. "phpstan/phpstan": "^2.1.31",
  1305. "phpunit/phpunit": "^10.5.58"
  1306. },
  1307. "bin": [
  1308. "bin/sql-formatter"
  1309. ],
  1310. "type": "library",
  1311. "autoload": {
  1312. "psr-4": {
  1313. "Doctrine\\SqlFormatter\\": "src"
  1314. }
  1315. },
  1316. "notification-url": "https://packagist.org/downloads/",
  1317. "license": [
  1318. "MIT"
  1319. ],
  1320. "authors": [
  1321. {
  1322. "name": "Jeremy Dorn",
  1323. "email": "jeremy@jeremydorn.com",
  1324. "homepage": "https://jeremydorn.com/"
  1325. }
  1326. ],
  1327. "description": "a PHP SQL highlighting library",
  1328. "homepage": "https://github.com/doctrine/sql-formatter/",
  1329. "keywords": [
  1330. "highlight",
  1331. "sql"
  1332. ],
  1333. "support": {
  1334. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1335. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.4"
  1336. },
  1337. "time": "2026-02-08T16:21:46+00:00"
  1338. },
  1339. {
  1340. "name": "egulias/email-validator",
  1341. "version": "4.0.4",
  1342. "source": {
  1343. "type": "git",
  1344. "url": "https://github.com/egulias/EmailValidator.git",
  1345. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1346. },
  1347. "dist": {
  1348. "type": "zip",
  1349. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1350. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1351. "shasum": ""
  1352. },
  1353. "require": {
  1354. "doctrine/lexer": "^2.0 || ^3.0",
  1355. "php": ">=8.1",
  1356. "symfony/polyfill-intl-idn": "^1.26"
  1357. },
  1358. "require-dev": {
  1359. "phpunit/phpunit": "^10.2",
  1360. "vimeo/psalm": "^5.12"
  1361. },
  1362. "suggest": {
  1363. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1364. },
  1365. "type": "library",
  1366. "extra": {
  1367. "branch-alias": {
  1368. "dev-master": "4.0.x-dev"
  1369. }
  1370. },
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Egulias\\EmailValidator\\": "src"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "authors": [
  1381. {
  1382. "name": "Eduardo Gulias Davis"
  1383. }
  1384. ],
  1385. "description": "A library for validating emails against several RFCs",
  1386. "homepage": "https://github.com/egulias/EmailValidator",
  1387. "keywords": [
  1388. "email",
  1389. "emailvalidation",
  1390. "emailvalidator",
  1391. "validation",
  1392. "validator"
  1393. ],
  1394. "support": {
  1395. "issues": "https://github.com/egulias/EmailValidator/issues",
  1396. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1397. },
  1398. "funding": [
  1399. {
  1400. "url": "https://github.com/egulias",
  1401. "type": "github"
  1402. }
  1403. ],
  1404. "time": "2025-03-06T22:45:56+00:00"
  1405. },
  1406. {
  1407. "name": "embed/embed",
  1408. "version": "v4.4.17",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/php-embed/Embed.git",
  1412. "reference": "b2ea091a5586c14ea5f2c5bf52fb0ef38e5aef87"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/php-embed/Embed/zipball/b2ea091a5586c14ea5f2c5bf52fb0ef38e5aef87",
  1417. "reference": "b2ea091a5586c14ea5f2c5bf52fb0ef38e5aef87",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "composer/ca-bundle": "^1.0",
  1422. "ext-curl": "*",
  1423. "ext-dom": "*",
  1424. "ext-json": "*",
  1425. "ext-mbstring": "*",
  1426. "ml/json-ld": "^1.1",
  1427. "oscarotero/html-parser": "^0.1.4",
  1428. "php": "^7.4|^8",
  1429. "psr/http-client": "^1.0",
  1430. "psr/http-factory": "^1.0",
  1431. "psr/http-message": "^1.0|^2.0"
  1432. },
  1433. "require-dev": {
  1434. "brick/varexporter": "^0.3.1",
  1435. "friendsofphp/php-cs-fixer": "^2.0",
  1436. "nyholm/psr7": "^1.2",
  1437. "oscarotero/php-cs-fixer-config": "^1.0",
  1438. "phpunit/phpunit": "^9.0",
  1439. "symfony/css-selector": "^5.0"
  1440. },
  1441. "suggest": {
  1442. "symfony/css-selector": "If you want to get elements using css selectors"
  1443. },
  1444. "type": "library",
  1445. "autoload": {
  1446. "files": [
  1447. "src/functions.php"
  1448. ],
  1449. "psr-4": {
  1450. "Embed\\": "src"
  1451. }
  1452. },
  1453. "notification-url": "https://packagist.org/downloads/",
  1454. "license": [
  1455. "MIT"
  1456. ],
  1457. "authors": [
  1458. {
  1459. "name": "Oscar Otero",
  1460. "email": "oom@oscarotero.com",
  1461. "homepage": "http://oscarotero.com",
  1462. "role": "Developer"
  1463. }
  1464. ],
  1465. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1466. "homepage": "https://github.com/oscarotero/Embed",
  1467. "keywords": [
  1468. "embed",
  1469. "embedly",
  1470. "oembed",
  1471. "opengraph",
  1472. "twitter cards"
  1473. ],
  1474. "support": {
  1475. "email": "oom@oscarotero.com",
  1476. "issues": "https://github.com/oscarotero/Embed/issues",
  1477. "source": "https://github.com/php-embed/Embed/tree/v4.4.17"
  1478. },
  1479. "funding": [
  1480. {
  1481. "url": "https://paypal.me/oscarotero",
  1482. "type": "custom"
  1483. },
  1484. {
  1485. "url": "https://github.com/oscarotero",
  1486. "type": "github"
  1487. },
  1488. {
  1489. "url": "https://www.patreon.com/misteroom",
  1490. "type": "patreon"
  1491. }
  1492. ],
  1493. "time": "2025-05-13T12:42:29+00:00"
  1494. },
  1495. {
  1496. "name": "laminas/laminas-diactoros",
  1497. "version": "3.8.0",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/laminas/laminas-diactoros.git",
  1501. "reference": "60c182916b2749480895601649563970f3f12ec4"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/60c182916b2749480895601649563970f3f12ec4",
  1506. "reference": "60c182916b2749480895601649563970f3f12ec4",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  1511. "psr/http-factory": "^1.1",
  1512. "psr/http-message": "^1.1 || ^2.0"
  1513. },
  1514. "conflict": {
  1515. "amphp/amp": "<2.6.4"
  1516. },
  1517. "provide": {
  1518. "psr/http-factory-implementation": "^1.0",
  1519. "psr/http-message-implementation": "^1.1 || ^2.0"
  1520. },
  1521. "require-dev": {
  1522. "ext-curl": "*",
  1523. "ext-dom": "*",
  1524. "ext-gd": "*",
  1525. "ext-libxml": "*",
  1526. "http-interop/http-factory-tests": "^2.2.0",
  1527. "laminas/laminas-coding-standard": "~3.1.0",
  1528. "php-http/psr7-integration-tests": "^1.4.0",
  1529. "phpunit/phpunit": "^10.5.36",
  1530. "psalm/plugin-phpunit": "^0.19.5",
  1531. "vimeo/psalm": "^6.13"
  1532. },
  1533. "type": "library",
  1534. "extra": {
  1535. "laminas": {
  1536. "module": "Laminas\\Diactoros",
  1537. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "files": [
  1542. "src/functions/create_uploaded_file.php",
  1543. "src/functions/marshal_headers_from_sapi.php",
  1544. "src/functions/marshal_method_from_sapi.php",
  1545. "src/functions/marshal_protocol_version_from_sapi.php",
  1546. "src/functions/normalize_server.php",
  1547. "src/functions/normalize_uploaded_files.php",
  1548. "src/functions/parse_cookie_header.php"
  1549. ],
  1550. "psr-4": {
  1551. "Laminas\\Diactoros\\": "src/"
  1552. }
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "BSD-3-Clause"
  1557. ],
  1558. "description": "PSR HTTP Message implementations",
  1559. "homepage": "https://laminas.dev",
  1560. "keywords": [
  1561. "http",
  1562. "laminas",
  1563. "psr",
  1564. "psr-17",
  1565. "psr-7"
  1566. ],
  1567. "support": {
  1568. "chat": "https://laminas.dev/chat",
  1569. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  1570. "forum": "https://discourse.laminas.dev",
  1571. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  1572. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  1573. "source": "https://github.com/laminas/laminas-diactoros"
  1574. },
  1575. "funding": [
  1576. {
  1577. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1578. "type": "community_bridge"
  1579. }
  1580. ],
  1581. "time": "2025-10-12T15:31:36+00:00"
  1582. },
  1583. {
  1584. "name": "laminas/laminas-escaper",
  1585. "version": "2.18.0",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://github.com/laminas/laminas-escaper.git",
  1589. "reference": "06f211dfffff18d91844c1f55250d5d13c007e18"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/06f211dfffff18d91844c1f55250d5d13c007e18",
  1594. "reference": "06f211dfffff18d91844c1f55250d5d13c007e18",
  1595. "shasum": ""
  1596. },
  1597. "require": {
  1598. "ext-ctype": "*",
  1599. "ext-mbstring": "*",
  1600. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  1601. },
  1602. "conflict": {
  1603. "zendframework/zend-escaper": "*"
  1604. },
  1605. "require-dev": {
  1606. "infection/infection": "^0.31.0",
  1607. "laminas/laminas-coding-standard": "~3.1.0",
  1608. "phpunit/phpunit": "^11.5.42",
  1609. "psalm/plugin-phpunit": "^0.19.5",
  1610. "vimeo/psalm": "^6.13.1"
  1611. },
  1612. "type": "library",
  1613. "autoload": {
  1614. "psr-4": {
  1615. "Laminas\\Escaper\\": "src/"
  1616. }
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "BSD-3-Clause"
  1621. ],
  1622. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  1623. "homepage": "https://laminas.dev",
  1624. "keywords": [
  1625. "escaper",
  1626. "laminas"
  1627. ],
  1628. "support": {
  1629. "chat": "https://laminas.dev/chat",
  1630. "docs": "https://docs.laminas.dev/laminas-escaper/",
  1631. "forum": "https://discourse.laminas.dev",
  1632. "issues": "https://github.com/laminas/laminas-escaper/issues",
  1633. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  1634. "source": "https://github.com/laminas/laminas-escaper"
  1635. },
  1636. "funding": [
  1637. {
  1638. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1639. "type": "community_bridge"
  1640. }
  1641. ],
  1642. "time": "2025-10-14T18:31:13+00:00"
  1643. },
  1644. {
  1645. "name": "laminas/laminas-feed",
  1646. "version": "2.26.1",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/laminas/laminas-feed.git",
  1650. "reference": "8b651d72f2a4ce0df53e1999de3fe16c78e37a2c"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8b651d72f2a4ce0df53e1999de3fe16c78e37a2c",
  1655. "reference": "8b651d72f2a4ce0df53e1999de3fe16c78e37a2c",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "ext-dom": "*",
  1660. "ext-filter": "*",
  1661. "ext-libxml": "*",
  1662. "laminas/laminas-escaper": "^2.9",
  1663. "laminas/laminas-stdlib": "^3.6",
  1664. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  1665. },
  1666. "conflict": {
  1667. "laminas/laminas-servicemanager": "<3.3",
  1668. "zendframework/zend-feed": "*"
  1669. },
  1670. "require-dev": {
  1671. "laminas/laminas-cache": "^2.13.2 || ^3.12",
  1672. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3",
  1673. "laminas/laminas-coding-standard": "~2.5.0",
  1674. "laminas/laminas-db": "^2.18",
  1675. "laminas/laminas-http": "^2.19",
  1676. "laminas/laminas-servicemanager": "^3.22.1",
  1677. "laminas/laminas-validator": "^2.46",
  1678. "phpunit/phpunit": "^10.5.5",
  1679. "psalm/plugin-phpunit": "^0.19.0",
  1680. "psr/http-message": "^2.0",
  1681. "vimeo/psalm": "^5.18.0"
  1682. },
  1683. "suggest": {
  1684. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  1685. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  1686. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  1687. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  1688. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  1689. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  1690. },
  1691. "type": "library",
  1692. "autoload": {
  1693. "psr-4": {
  1694. "Laminas\\Feed\\": "src/"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "BSD-3-Clause"
  1700. ],
  1701. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  1702. "homepage": "https://laminas.dev",
  1703. "keywords": [
  1704. "atom",
  1705. "feed",
  1706. "laminas",
  1707. "rss"
  1708. ],
  1709. "support": {
  1710. "chat": "https://laminas.dev/chat",
  1711. "docs": "https://docs.laminas.dev/laminas-feed/",
  1712. "forum": "https://discourse.laminas.dev",
  1713. "issues": "https://github.com/laminas/laminas-feed/issues",
  1714. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  1715. "source": "https://github.com/laminas/laminas-feed"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1720. "type": "community_bridge"
  1721. }
  1722. ],
  1723. "time": "2026-03-03T09:55:19+00:00"
  1724. },
  1725. {
  1726. "name": "laminas/laminas-stdlib",
  1727. "version": "3.21.0",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/laminas/laminas-stdlib.git",
  1731. "reference": "b1c81514cfe158aadf724c42b34d3d0a8164c096"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b1c81514cfe158aadf724c42b34d3d0a8164c096",
  1736. "reference": "b1c81514cfe158aadf724c42b34d3d0a8164c096",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  1741. },
  1742. "conflict": {
  1743. "zendframework/zend-stdlib": "*"
  1744. },
  1745. "require-dev": {
  1746. "laminas/laminas-coding-standard": "^3.1.0",
  1747. "phpbench/phpbench": "^1.4.1",
  1748. "phpunit/phpunit": "^11.5.42",
  1749. "psalm/plugin-phpunit": "^0.19.5",
  1750. "vimeo/psalm": "^6.13.1"
  1751. },
  1752. "type": "library",
  1753. "autoload": {
  1754. "psr-4": {
  1755. "Laminas\\Stdlib\\": "src/"
  1756. }
  1757. },
  1758. "notification-url": "https://packagist.org/downloads/",
  1759. "license": [
  1760. "BSD-3-Clause"
  1761. ],
  1762. "description": "SPL extensions, array utilities, error handlers, and more",
  1763. "homepage": "https://laminas.dev",
  1764. "keywords": [
  1765. "laminas",
  1766. "stdlib"
  1767. ],
  1768. "support": {
  1769. "chat": "https://laminas.dev/chat",
  1770. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  1771. "forum": "https://discourse.laminas.dev",
  1772. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  1773. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  1774. "source": "https://github.com/laminas/laminas-stdlib"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1779. "type": "community_bridge"
  1780. }
  1781. ],
  1782. "time": "2025-10-11T18:13:12+00:00"
  1783. },
  1784. {
  1785. "name": "league/commonmark",
  1786. "version": "2.8.2",
  1787. "source": {
  1788. "type": "git",
  1789. "url": "https://github.com/thephpleague/commonmark.git",
  1790. "reference": "59fb075d2101740c337c7216e3f32b36c204218b"
  1791. },
  1792. "dist": {
  1793. "type": "zip",
  1794. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b",
  1795. "reference": "59fb075d2101740c337c7216e3f32b36c204218b",
  1796. "shasum": ""
  1797. },
  1798. "require": {
  1799. "ext-mbstring": "*",
  1800. "league/config": "^1.1.1",
  1801. "php": "^7.4 || ^8.0",
  1802. "psr/event-dispatcher": "^1.0",
  1803. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1804. "symfony/polyfill-php80": "^1.16"
  1805. },
  1806. "require-dev": {
  1807. "cebe/markdown": "^1.0",
  1808. "commonmark/cmark": "0.31.1",
  1809. "commonmark/commonmark.js": "0.31.1",
  1810. "composer/package-versions-deprecated": "^1.8",
  1811. "embed/embed": "^4.4",
  1812. "erusev/parsedown": "^1.0",
  1813. "ext-json": "*",
  1814. "github/gfm": "0.29.0",
  1815. "michelf/php-markdown": "^1.4 || ^2.0",
  1816. "nyholm/psr7": "^1.5",
  1817. "phpstan/phpstan": "^1.8.2",
  1818. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1819. "scrutinizer/ocular": "^1.8.1",
  1820. "symfony/finder": "^5.3 | ^6.0 | ^7.0 || ^8.0",
  1821. "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0",
  1822. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.0",
  1823. "unleashedtech/php-coding-standard": "^3.1.1",
  1824. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  1825. },
  1826. "suggest": {
  1827. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "branch-alias": {
  1832. "dev-main": "2.9-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "League\\CommonMark\\": "src"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "BSD-3-Clause"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Colin O'Dell",
  1847. "email": "colinodell@gmail.com",
  1848. "homepage": "https://www.colinodell.com",
  1849. "role": "Lead Developer"
  1850. }
  1851. ],
  1852. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1853. "homepage": "https://commonmark.thephpleague.com",
  1854. "keywords": [
  1855. "commonmark",
  1856. "flavored",
  1857. "gfm",
  1858. "github",
  1859. "github-flavored",
  1860. "markdown",
  1861. "md",
  1862. "parser"
  1863. ],
  1864. "support": {
  1865. "docs": "https://commonmark.thephpleague.com/",
  1866. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1867. "issues": "https://github.com/thephpleague/commonmark/issues",
  1868. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1869. "source": "https://github.com/thephpleague/commonmark"
  1870. },
  1871. "funding": [
  1872. {
  1873. "url": "https://www.colinodell.com/sponsor",
  1874. "type": "custom"
  1875. },
  1876. {
  1877. "url": "https://www.paypal.me/colinpodell/10.00",
  1878. "type": "custom"
  1879. },
  1880. {
  1881. "url": "https://github.com/colinodell",
  1882. "type": "github"
  1883. },
  1884. {
  1885. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1886. "type": "tidelift"
  1887. }
  1888. ],
  1889. "time": "2026-03-19T13:16:38+00:00"
  1890. },
  1891. {
  1892. "name": "league/config",
  1893. "version": "v1.2.0",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/thephpleague/config.git",
  1897. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1902. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "dflydev/dot-access-data": "^3.0.1",
  1907. "nette/schema": "^1.2",
  1908. "php": "^7.4 || ^8.0"
  1909. },
  1910. "require-dev": {
  1911. "phpstan/phpstan": "^1.8.2",
  1912. "phpunit/phpunit": "^9.5.5",
  1913. "scrutinizer/ocular": "^1.8.1",
  1914. "unleashedtech/php-coding-standard": "^3.1",
  1915. "vimeo/psalm": "^4.7.3"
  1916. },
  1917. "type": "library",
  1918. "extra": {
  1919. "branch-alias": {
  1920. "dev-main": "1.2-dev"
  1921. }
  1922. },
  1923. "autoload": {
  1924. "psr-4": {
  1925. "League\\Config\\": "src"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "BSD-3-Clause"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Colin O'Dell",
  1935. "email": "colinodell@gmail.com",
  1936. "homepage": "https://www.colinodell.com",
  1937. "role": "Lead Developer"
  1938. }
  1939. ],
  1940. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1941. "homepage": "https://config.thephpleague.com",
  1942. "keywords": [
  1943. "array",
  1944. "config",
  1945. "configuration",
  1946. "dot",
  1947. "dot-access",
  1948. "nested",
  1949. "schema"
  1950. ],
  1951. "support": {
  1952. "docs": "https://config.thephpleague.com/",
  1953. "issues": "https://github.com/thephpleague/config/issues",
  1954. "rss": "https://github.com/thephpleague/config/releases.atom",
  1955. "source": "https://github.com/thephpleague/config"
  1956. },
  1957. "funding": [
  1958. {
  1959. "url": "https://www.colinodell.com/sponsor",
  1960. "type": "custom"
  1961. },
  1962. {
  1963. "url": "https://www.paypal.me/colinpodell/10.00",
  1964. "type": "custom"
  1965. },
  1966. {
  1967. "url": "https://github.com/colinodell",
  1968. "type": "github"
  1969. }
  1970. ],
  1971. "time": "2022-12-11T20:36:23+00:00"
  1972. },
  1973. {
  1974. "name": "ml/iri",
  1975. "version": "1.1.4",
  1976. "target-dir": "ML/IRI",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/lanthaler/IRI.git",
  1980. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  1985. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "lib-pcre": ">=4.0",
  1990. "php": ">=5.3.0"
  1991. },
  1992. "type": "library",
  1993. "autoload": {
  1994. "psr-0": {
  1995. "ML\\IRI": ""
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Markus Lanthaler",
  2005. "email": "mail@markus-lanthaler.com",
  2006. "homepage": "http://www.markus-lanthaler.com",
  2007. "role": "Developer"
  2008. }
  2009. ],
  2010. "description": "IRI handling for PHP",
  2011. "homepage": "http://www.markus-lanthaler.com",
  2012. "keywords": [
  2013. "URN",
  2014. "iri",
  2015. "uri",
  2016. "url"
  2017. ],
  2018. "support": {
  2019. "issues": "https://github.com/lanthaler/IRI/issues",
  2020. "source": "https://github.com/lanthaler/IRI/tree/master"
  2021. },
  2022. "time": "2014-01-21T13:43:39+00:00"
  2023. },
  2024. {
  2025. "name": "ml/json-ld",
  2026. "version": "1.2.1",
  2027. "source": {
  2028. "type": "git",
  2029. "url": "https://github.com/lanthaler/JsonLD.git",
  2030. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  2031. },
  2032. "dist": {
  2033. "type": "zip",
  2034. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2035. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2036. "shasum": ""
  2037. },
  2038. "require": {
  2039. "ext-json": "*",
  2040. "ml/iri": "^1.1.1",
  2041. "php": ">=5.3.0"
  2042. },
  2043. "require-dev": {
  2044. "json-ld/tests": "1.0",
  2045. "phpunit/phpunit": "^4"
  2046. },
  2047. "type": "library",
  2048. "autoload": {
  2049. "psr-4": {
  2050. "ML\\JsonLD\\": ""
  2051. }
  2052. },
  2053. "notification-url": "https://packagist.org/downloads/",
  2054. "license": [
  2055. "MIT"
  2056. ],
  2057. "authors": [
  2058. {
  2059. "name": "Markus Lanthaler",
  2060. "email": "mail@markus-lanthaler.com",
  2061. "homepage": "http://www.markus-lanthaler.com",
  2062. "role": "Developer"
  2063. }
  2064. ],
  2065. "description": "JSON-LD Processor for PHP",
  2066. "homepage": "http://www.markus-lanthaler.com",
  2067. "keywords": [
  2068. "JSON-LD",
  2069. "jsonld"
  2070. ],
  2071. "support": {
  2072. "issues": "https://github.com/lanthaler/JsonLD/issues",
  2073. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  2074. },
  2075. "time": "2022-09-29T08:45:17+00:00"
  2076. },
  2077. {
  2078. "name": "monolog/monolog",
  2079. "version": "3.10.0",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/Seldaek/monolog.git",
  2083. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  2088. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "php": ">=8.1",
  2093. "psr/log": "^2.0 || ^3.0"
  2094. },
  2095. "provide": {
  2096. "psr/log-implementation": "3.0.0"
  2097. },
  2098. "require-dev": {
  2099. "aws/aws-sdk-php": "^3.0",
  2100. "doctrine/couchdb": "~1.0@dev",
  2101. "elasticsearch/elasticsearch": "^7 || ^8",
  2102. "ext-json": "*",
  2103. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2104. "guzzlehttp/guzzle": "^7.4.5",
  2105. "guzzlehttp/psr7": "^2.2",
  2106. "mongodb/mongodb": "^1.8 || ^2.0",
  2107. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2108. "php-console/php-console": "^3.1.8",
  2109. "phpstan/phpstan": "^2",
  2110. "phpstan/phpstan-deprecation-rules": "^2",
  2111. "phpstan/phpstan-strict-rules": "^2",
  2112. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2113. "predis/predis": "^1.1 || ^2",
  2114. "rollbar/rollbar": "^4.0",
  2115. "ruflin/elastica": "^7 || ^8",
  2116. "symfony/mailer": "^5.4 || ^6",
  2117. "symfony/mime": "^5.4 || ^6"
  2118. },
  2119. "suggest": {
  2120. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2121. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2122. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2123. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2124. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2125. "ext-mbstring": "Allow to work properly with unicode symbols",
  2126. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2127. "ext-openssl": "Required to send log messages using SSL",
  2128. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2129. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2130. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2131. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2132. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2133. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2134. },
  2135. "type": "library",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-main": "3.x-dev"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "psr-4": {
  2143. "Monolog\\": "src/Monolog"
  2144. }
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Jordi Boggiano",
  2153. "email": "j.boggiano@seld.be",
  2154. "homepage": "https://seld.be"
  2155. }
  2156. ],
  2157. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2158. "homepage": "https://github.com/Seldaek/monolog",
  2159. "keywords": [
  2160. "log",
  2161. "logging",
  2162. "psr-3"
  2163. ],
  2164. "support": {
  2165. "issues": "https://github.com/Seldaek/monolog/issues",
  2166. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  2167. },
  2168. "funding": [
  2169. {
  2170. "url": "https://github.com/Seldaek",
  2171. "type": "github"
  2172. },
  2173. {
  2174. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2175. "type": "tidelift"
  2176. }
  2177. ],
  2178. "time": "2026-01-02T08:56:05+00:00"
  2179. },
  2180. {
  2181. "name": "nette/schema",
  2182. "version": "v1.3.5",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/nette/schema.git",
  2186. "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002",
  2191. "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002",
  2192. "shasum": ""
  2193. },
  2194. "require": {
  2195. "nette/utils": "^4.0",
  2196. "php": "8.1 - 8.5"
  2197. },
  2198. "require-dev": {
  2199. "nette/phpstan-rules": "^1.0",
  2200. "nette/tester": "^2.6",
  2201. "phpstan/extension-installer": "^1.4@stable",
  2202. "phpstan/phpstan": "^2.1.39@stable",
  2203. "tracy/tracy": "^2.8"
  2204. },
  2205. "type": "library",
  2206. "extra": {
  2207. "branch-alias": {
  2208. "dev-master": "1.3-dev"
  2209. }
  2210. },
  2211. "autoload": {
  2212. "psr-4": {
  2213. "Nette\\": "src"
  2214. },
  2215. "classmap": [
  2216. "src/"
  2217. ]
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "BSD-3-Clause",
  2222. "GPL-2.0-only",
  2223. "GPL-3.0-only"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "David Grudl",
  2228. "homepage": "https://davidgrudl.com"
  2229. },
  2230. {
  2231. "name": "Nette Community",
  2232. "homepage": "https://nette.org/contributors"
  2233. }
  2234. ],
  2235. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2236. "homepage": "https://nette.org",
  2237. "keywords": [
  2238. "config",
  2239. "nette"
  2240. ],
  2241. "support": {
  2242. "issues": "https://github.com/nette/schema/issues",
  2243. "source": "https://github.com/nette/schema/tree/v1.3.5"
  2244. },
  2245. "time": "2026-02-23T03:47:12+00:00"
  2246. },
  2247. {
  2248. "name": "nette/utils",
  2249. "version": "v4.1.3",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/nette/utils.git",
  2253. "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/nette/utils/zipball/bb3ea637e3d131d72acc033cfc2746ee893349fe",
  2258. "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": "8.2 - 8.5"
  2263. },
  2264. "conflict": {
  2265. "nette/finder": "<3",
  2266. "nette/schema": "<1.2.2"
  2267. },
  2268. "require-dev": {
  2269. "jetbrains/phpstorm-attributes": "^1.2",
  2270. "nette/phpstan-rules": "^1.0",
  2271. "nette/tester": "^2.5",
  2272. "phpstan/extension-installer": "^1.4@stable",
  2273. "phpstan/phpstan": "^2.1@stable",
  2274. "tracy/tracy": "^2.9"
  2275. },
  2276. "suggest": {
  2277. "ext-gd": "to use Image",
  2278. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2279. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2280. "ext-json": "to use Nette\\Utils\\Json",
  2281. "ext-mbstring": "to use Strings::lower() etc...",
  2282. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2283. },
  2284. "type": "library",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-master": "4.1-dev"
  2288. }
  2289. },
  2290. "autoload": {
  2291. "psr-4": {
  2292. "Nette\\": "src"
  2293. },
  2294. "classmap": [
  2295. "src/"
  2296. ]
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "BSD-3-Clause",
  2301. "GPL-2.0-only",
  2302. "GPL-3.0-only"
  2303. ],
  2304. "authors": [
  2305. {
  2306. "name": "David Grudl",
  2307. "homepage": "https://davidgrudl.com"
  2308. },
  2309. {
  2310. "name": "Nette Community",
  2311. "homepage": "https://nette.org/contributors"
  2312. }
  2313. ],
  2314. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2315. "homepage": "https://nette.org",
  2316. "keywords": [
  2317. "array",
  2318. "core",
  2319. "datetime",
  2320. "images",
  2321. "json",
  2322. "nette",
  2323. "paginator",
  2324. "password",
  2325. "slugify",
  2326. "string",
  2327. "unicode",
  2328. "utf-8",
  2329. "utility",
  2330. "validation"
  2331. ],
  2332. "support": {
  2333. "issues": "https://github.com/nette/utils/issues",
  2334. "source": "https://github.com/nette/utils/tree/v4.1.3"
  2335. },
  2336. "time": "2026-02-13T03:05:33+00:00"
  2337. },
  2338. {
  2339. "name": "oscarotero/html-parser",
  2340. "version": "v0.1.8",
  2341. "source": {
  2342. "type": "git",
  2343. "url": "https://github.com/oscarotero/html-parser.git",
  2344. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d"
  2345. },
  2346. "dist": {
  2347. "type": "zip",
  2348. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d",
  2349. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d",
  2350. "shasum": ""
  2351. },
  2352. "require": {
  2353. "php": "^7.2 || ^8"
  2354. },
  2355. "require-dev": {
  2356. "friendsofphp/php-cs-fixer": "^2.11",
  2357. "phpunit/phpunit": "^8.0"
  2358. },
  2359. "type": "library",
  2360. "autoload": {
  2361. "psr-4": {
  2362. "HtmlParser\\": "src"
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Oscar Otero",
  2372. "email": "oom@oscarotero.com",
  2373. "homepage": "http://oscarotero.com",
  2374. "role": "Developer"
  2375. }
  2376. ],
  2377. "description": "Parse html strings to DOMDocument",
  2378. "homepage": "https://github.com/oscarotero/html-parser",
  2379. "keywords": [
  2380. "dom",
  2381. "html",
  2382. "parser"
  2383. ],
  2384. "support": {
  2385. "email": "oom@oscarotero.com",
  2386. "issues": "https://github.com/oscarotero/html-parser/issues",
  2387. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8"
  2388. },
  2389. "time": "2023-11-29T20:28:41+00:00"
  2390. },
  2391. {
  2392. "name": "phpdocumentor/reflection-common",
  2393. "version": "2.2.0",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2397. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2402. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2403. "shasum": ""
  2404. },
  2405. "require": {
  2406. "php": "^7.2 || ^8.0"
  2407. },
  2408. "type": "library",
  2409. "extra": {
  2410. "branch-alias": {
  2411. "dev-2.x": "2.x-dev"
  2412. }
  2413. },
  2414. "autoload": {
  2415. "psr-4": {
  2416. "phpDocumentor\\Reflection\\": "src/"
  2417. }
  2418. },
  2419. "notification-url": "https://packagist.org/downloads/",
  2420. "license": [
  2421. "MIT"
  2422. ],
  2423. "authors": [
  2424. {
  2425. "name": "Jaap van Otterdijk",
  2426. "email": "opensource@ijaap.nl"
  2427. }
  2428. ],
  2429. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2430. "homepage": "http://www.phpdoc.org",
  2431. "keywords": [
  2432. "FQSEN",
  2433. "phpDocumentor",
  2434. "phpdoc",
  2435. "reflection",
  2436. "static analysis"
  2437. ],
  2438. "support": {
  2439. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2440. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2441. },
  2442. "time": "2020-06-27T09:03:43+00:00"
  2443. },
  2444. {
  2445. "name": "phpdocumentor/reflection-docblock",
  2446. "version": "5.6.7",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2450. "reference": "31a105931bc8ffa3a123383829772e832fd8d903"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/31a105931bc8ffa3a123383829772e832fd8d903",
  2455. "reference": "31a105931bc8ffa3a123383829772e832fd8d903",
  2456. "shasum": ""
  2457. },
  2458. "require": {
  2459. "doctrine/deprecations": "^1.1",
  2460. "ext-filter": "*",
  2461. "php": "^7.4 || ^8.0",
  2462. "phpdocumentor/reflection-common": "^2.2",
  2463. "phpdocumentor/type-resolver": "^1.7",
  2464. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2465. "webmozart/assert": "^1.9.1 || ^2"
  2466. },
  2467. "require-dev": {
  2468. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2469. "phpstan/extension-installer": "^1.1",
  2470. "phpstan/phpstan": "^1.8",
  2471. "phpstan/phpstan-mockery": "^1.1",
  2472. "phpstan/phpstan-webmozart-assert": "^1.2",
  2473. "phpunit/phpunit": "^9.5",
  2474. "psalm/phar": "^5.26"
  2475. },
  2476. "type": "library",
  2477. "extra": {
  2478. "branch-alias": {
  2479. "dev-master": "5.x-dev"
  2480. }
  2481. },
  2482. "autoload": {
  2483. "psr-4": {
  2484. "phpDocumentor\\Reflection\\": "src"
  2485. }
  2486. },
  2487. "notification-url": "https://packagist.org/downloads/",
  2488. "license": [
  2489. "MIT"
  2490. ],
  2491. "authors": [
  2492. {
  2493. "name": "Mike van Riel",
  2494. "email": "me@mikevanriel.com"
  2495. },
  2496. {
  2497. "name": "Jaap van Otterdijk",
  2498. "email": "opensource@ijaap.nl"
  2499. }
  2500. ],
  2501. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2502. "support": {
  2503. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2504. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.7"
  2505. },
  2506. "time": "2026-03-18T20:47:46+00:00"
  2507. },
  2508. {
  2509. "name": "phpdocumentor/type-resolver",
  2510. "version": "1.12.0",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2514. "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
  2519. "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
  2520. "shasum": ""
  2521. },
  2522. "require": {
  2523. "doctrine/deprecations": "^1.0",
  2524. "php": "^7.3 || ^8.0",
  2525. "phpdocumentor/reflection-common": "^2.0",
  2526. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2527. },
  2528. "require-dev": {
  2529. "ext-tokenizer": "*",
  2530. "phpbench/phpbench": "^1.2",
  2531. "phpstan/extension-installer": "^1.1",
  2532. "phpstan/phpstan": "^1.8",
  2533. "phpstan/phpstan-phpunit": "^1.1",
  2534. "phpunit/phpunit": "^9.5",
  2535. "rector/rector": "^0.13.9",
  2536. "vimeo/psalm": "^4.25"
  2537. },
  2538. "type": "library",
  2539. "extra": {
  2540. "branch-alias": {
  2541. "dev-1.x": "1.x-dev"
  2542. }
  2543. },
  2544. "autoload": {
  2545. "psr-4": {
  2546. "phpDocumentor\\Reflection\\": "src"
  2547. }
  2548. },
  2549. "notification-url": "https://packagist.org/downloads/",
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "Mike van Riel",
  2556. "email": "me@mikevanriel.com"
  2557. }
  2558. ],
  2559. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2560. "support": {
  2561. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2562. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
  2563. },
  2564. "time": "2025-11-21T15:09:14+00:00"
  2565. },
  2566. {
  2567. "name": "phpstan/phpdoc-parser",
  2568. "version": "1.33.0",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2572. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2577. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "php": "^7.2 || ^8.0"
  2582. },
  2583. "require-dev": {
  2584. "doctrine/annotations": "^2.0",
  2585. "nikic/php-parser": "^4.15",
  2586. "php-parallel-lint/php-parallel-lint": "^1.2",
  2587. "phpstan/extension-installer": "^1.0",
  2588. "phpstan/phpstan": "^1.5",
  2589. "phpstan/phpstan-phpunit": "^1.1",
  2590. "phpstan/phpstan-strict-rules": "^1.0",
  2591. "phpunit/phpunit": "^9.5",
  2592. "symfony/process": "^5.2"
  2593. },
  2594. "type": "library",
  2595. "autoload": {
  2596. "psr-4": {
  2597. "PHPStan\\PhpDocParser\\": [
  2598. "src/"
  2599. ]
  2600. }
  2601. },
  2602. "notification-url": "https://packagist.org/downloads/",
  2603. "license": [
  2604. "MIT"
  2605. ],
  2606. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2607. "support": {
  2608. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2609. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2610. },
  2611. "time": "2024-10-13T11:25:22+00:00"
  2612. },
  2613. {
  2614. "name": "psr/cache",
  2615. "version": "3.0.0",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/php-fig/cache.git",
  2619. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2624. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=8.0.0"
  2629. },
  2630. "type": "library",
  2631. "extra": {
  2632. "branch-alias": {
  2633. "dev-master": "1.0.x-dev"
  2634. }
  2635. },
  2636. "autoload": {
  2637. "psr-4": {
  2638. "Psr\\Cache\\": "src/"
  2639. }
  2640. },
  2641. "notification-url": "https://packagist.org/downloads/",
  2642. "license": [
  2643. "MIT"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "PHP-FIG",
  2648. "homepage": "https://www.php-fig.org/"
  2649. }
  2650. ],
  2651. "description": "Common interface for caching libraries",
  2652. "keywords": [
  2653. "cache",
  2654. "psr",
  2655. "psr-6"
  2656. ],
  2657. "support": {
  2658. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2659. },
  2660. "time": "2021-02-03T23:26:27+00:00"
  2661. },
  2662. {
  2663. "name": "psr/clock",
  2664. "version": "1.0.0",
  2665. "source": {
  2666. "type": "git",
  2667. "url": "https://github.com/php-fig/clock.git",
  2668. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2669. },
  2670. "dist": {
  2671. "type": "zip",
  2672. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2673. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2674. "shasum": ""
  2675. },
  2676. "require": {
  2677. "php": "^7.0 || ^8.0"
  2678. },
  2679. "type": "library",
  2680. "autoload": {
  2681. "psr-4": {
  2682. "Psr\\Clock\\": "src/"
  2683. }
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "MIT"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "PHP-FIG",
  2692. "homepage": "https://www.php-fig.org/"
  2693. }
  2694. ],
  2695. "description": "Common interface for reading the clock.",
  2696. "homepage": "https://github.com/php-fig/clock",
  2697. "keywords": [
  2698. "clock",
  2699. "now",
  2700. "psr",
  2701. "psr-20",
  2702. "time"
  2703. ],
  2704. "support": {
  2705. "issues": "https://github.com/php-fig/clock/issues",
  2706. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2707. },
  2708. "time": "2022-11-25T14:36:26+00:00"
  2709. },
  2710. {
  2711. "name": "psr/container",
  2712. "version": "2.0.2",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/php-fig/container.git",
  2716. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2721. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": ">=7.4.0"
  2726. },
  2727. "type": "library",
  2728. "extra": {
  2729. "branch-alias": {
  2730. "dev-master": "2.0.x-dev"
  2731. }
  2732. },
  2733. "autoload": {
  2734. "psr-4": {
  2735. "Psr\\Container\\": "src/"
  2736. }
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "MIT"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "PHP-FIG",
  2745. "homepage": "https://www.php-fig.org/"
  2746. }
  2747. ],
  2748. "description": "Common Container Interface (PHP FIG PSR-11)",
  2749. "homepage": "https://github.com/php-fig/container",
  2750. "keywords": [
  2751. "PSR-11",
  2752. "container",
  2753. "container-interface",
  2754. "container-interop",
  2755. "psr"
  2756. ],
  2757. "support": {
  2758. "issues": "https://github.com/php-fig/container/issues",
  2759. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2760. },
  2761. "time": "2021-11-05T16:47:00+00:00"
  2762. },
  2763. {
  2764. "name": "psr/event-dispatcher",
  2765. "version": "1.0.0",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/php-fig/event-dispatcher.git",
  2769. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2774. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": ">=7.2.0"
  2779. },
  2780. "type": "library",
  2781. "extra": {
  2782. "branch-alias": {
  2783. "dev-master": "1.0.x-dev"
  2784. }
  2785. },
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Psr\\EventDispatcher\\": "src/"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "PHP-FIG",
  2798. "homepage": "http://www.php-fig.org/"
  2799. }
  2800. ],
  2801. "description": "Standard interfaces for event handling.",
  2802. "keywords": [
  2803. "events",
  2804. "psr",
  2805. "psr-14"
  2806. ],
  2807. "support": {
  2808. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2809. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2810. },
  2811. "time": "2019-01-08T18:20:26+00:00"
  2812. },
  2813. {
  2814. "name": "psr/http-client",
  2815. "version": "1.0.3",
  2816. "source": {
  2817. "type": "git",
  2818. "url": "https://github.com/php-fig/http-client.git",
  2819. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2820. },
  2821. "dist": {
  2822. "type": "zip",
  2823. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2824. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2825. "shasum": ""
  2826. },
  2827. "require": {
  2828. "php": "^7.0 || ^8.0",
  2829. "psr/http-message": "^1.0 || ^2.0"
  2830. },
  2831. "type": "library",
  2832. "extra": {
  2833. "branch-alias": {
  2834. "dev-master": "1.0.x-dev"
  2835. }
  2836. },
  2837. "autoload": {
  2838. "psr-4": {
  2839. "Psr\\Http\\Client\\": "src/"
  2840. }
  2841. },
  2842. "notification-url": "https://packagist.org/downloads/",
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "authors": [
  2847. {
  2848. "name": "PHP-FIG",
  2849. "homepage": "https://www.php-fig.org/"
  2850. }
  2851. ],
  2852. "description": "Common interface for HTTP clients",
  2853. "homepage": "https://github.com/php-fig/http-client",
  2854. "keywords": [
  2855. "http",
  2856. "http-client",
  2857. "psr",
  2858. "psr-18"
  2859. ],
  2860. "support": {
  2861. "source": "https://github.com/php-fig/http-client"
  2862. },
  2863. "time": "2023-09-23T14:17:50+00:00"
  2864. },
  2865. {
  2866. "name": "psr/http-factory",
  2867. "version": "1.1.0",
  2868. "source": {
  2869. "type": "git",
  2870. "url": "https://github.com/php-fig/http-factory.git",
  2871. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2872. },
  2873. "dist": {
  2874. "type": "zip",
  2875. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2876. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2877. "shasum": ""
  2878. },
  2879. "require": {
  2880. "php": ">=7.1",
  2881. "psr/http-message": "^1.0 || ^2.0"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "1.0.x-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-4": {
  2891. "Psr\\Http\\Message\\": "src/"
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "PHP-FIG",
  2901. "homepage": "https://www.php-fig.org/"
  2902. }
  2903. ],
  2904. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2905. "keywords": [
  2906. "factory",
  2907. "http",
  2908. "message",
  2909. "psr",
  2910. "psr-17",
  2911. "psr-7",
  2912. "request",
  2913. "response"
  2914. ],
  2915. "support": {
  2916. "source": "https://github.com/php-fig/http-factory"
  2917. },
  2918. "time": "2024-04-15T12:06:14+00:00"
  2919. },
  2920. {
  2921. "name": "psr/http-message",
  2922. "version": "2.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/php-fig/http-message.git",
  2926. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2931. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2932. "shasum": ""
  2933. },
  2934. "require": {
  2935. "php": "^7.2 || ^8.0"
  2936. },
  2937. "type": "library",
  2938. "extra": {
  2939. "branch-alias": {
  2940. "dev-master": "2.0.x-dev"
  2941. }
  2942. },
  2943. "autoload": {
  2944. "psr-4": {
  2945. "Psr\\Http\\Message\\": "src/"
  2946. }
  2947. },
  2948. "notification-url": "https://packagist.org/downloads/",
  2949. "license": [
  2950. "MIT"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "PHP-FIG",
  2955. "homepage": "https://www.php-fig.org/"
  2956. }
  2957. ],
  2958. "description": "Common interface for HTTP messages",
  2959. "homepage": "https://github.com/php-fig/http-message",
  2960. "keywords": [
  2961. "http",
  2962. "http-message",
  2963. "psr",
  2964. "psr-7",
  2965. "request",
  2966. "response"
  2967. ],
  2968. "support": {
  2969. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2970. },
  2971. "time": "2023-04-04T09:54:51+00:00"
  2972. },
  2973. {
  2974. "name": "psr/link",
  2975. "version": "2.0.1",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://github.com/php-fig/link.git",
  2979. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2984. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2985. "shasum": ""
  2986. },
  2987. "require": {
  2988. "php": ">=8.0.0"
  2989. },
  2990. "suggest": {
  2991. "fig/link-util": "Provides some useful PSR-13 utilities"
  2992. },
  2993. "type": "library",
  2994. "extra": {
  2995. "branch-alias": {
  2996. "dev-master": "2.0.x-dev"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Psr\\Link\\": "src/"
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "authors": [
  3009. {
  3010. "name": "PHP-FIG",
  3011. "homepage": "http://www.php-fig.org/"
  3012. }
  3013. ],
  3014. "description": "Common interfaces for HTTP links",
  3015. "homepage": "https://github.com/php-fig/link",
  3016. "keywords": [
  3017. "http",
  3018. "http-link",
  3019. "link",
  3020. "psr",
  3021. "psr-13",
  3022. "rest"
  3023. ],
  3024. "support": {
  3025. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3026. },
  3027. "time": "2021-03-11T23:00:27+00:00"
  3028. },
  3029. {
  3030. "name": "psr/log",
  3031. "version": "3.0.2",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/php-fig/log.git",
  3035. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3040. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "php": ">=8.0.0"
  3045. },
  3046. "type": "library",
  3047. "extra": {
  3048. "branch-alias": {
  3049. "dev-master": "3.x-dev"
  3050. }
  3051. },
  3052. "autoload": {
  3053. "psr-4": {
  3054. "Psr\\Log\\": "src"
  3055. }
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "MIT"
  3060. ],
  3061. "authors": [
  3062. {
  3063. "name": "PHP-FIG",
  3064. "homepage": "https://www.php-fig.org/"
  3065. }
  3066. ],
  3067. "description": "Common interface for logging libraries",
  3068. "homepage": "https://github.com/php-fig/log",
  3069. "keywords": [
  3070. "log",
  3071. "psr",
  3072. "psr-3"
  3073. ],
  3074. "support": {
  3075. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3076. },
  3077. "time": "2024-09-11T13:17:53+00:00"
  3078. },
  3079. {
  3080. "name": "symfony/apache-pack",
  3081. "version": "v1.0.1",
  3082. "source": {
  3083. "type": "git",
  3084. "url": "https://github.com/symfony/apache-pack.git",
  3085. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3086. },
  3087. "dist": {
  3088. "type": "zip",
  3089. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3090. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3091. "shasum": ""
  3092. },
  3093. "type": "symfony-pack",
  3094. "notification-url": "https://packagist.org/downloads/",
  3095. "license": [
  3096. "MIT"
  3097. ],
  3098. "description": "A pack for Apache support in Symfony",
  3099. "support": {
  3100. "issues": "https://github.com/symfony/apache-pack/issues",
  3101. "source": "https://github.com/symfony/apache-pack/tree/master"
  3102. },
  3103. "time": "2017-12-12T01:46:35+00:00"
  3104. },
  3105. {
  3106. "name": "symfony/asset",
  3107. "version": "v7.4.8",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/symfony/asset.git",
  3111. "reference": "d2e2f014ccd6ec9fae8dbe6336a4164346a2a856"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/symfony/asset/zipball/d2e2f014ccd6ec9fae8dbe6336a4164346a2a856",
  3116. "reference": "d2e2f014ccd6ec9fae8dbe6336a4164346a2a856",
  3117. "shasum": ""
  3118. },
  3119. "require": {
  3120. "php": ">=8.2"
  3121. },
  3122. "conflict": {
  3123. "symfony/http-foundation": "<6.4"
  3124. },
  3125. "require-dev": {
  3126. "symfony/http-client": "^6.4|^7.0|^8.0",
  3127. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3128. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  3129. },
  3130. "type": "library",
  3131. "autoload": {
  3132. "psr-4": {
  3133. "Symfony\\Component\\Asset\\": ""
  3134. },
  3135. "exclude-from-classmap": [
  3136. "/Tests/"
  3137. ]
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "Fabien Potencier",
  3146. "email": "fabien@symfony.com"
  3147. },
  3148. {
  3149. "name": "Symfony Community",
  3150. "homepage": "https://symfony.com/contributors"
  3151. }
  3152. ],
  3153. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3154. "homepage": "https://symfony.com",
  3155. "support": {
  3156. "source": "https://github.com/symfony/asset/tree/v7.4.8"
  3157. },
  3158. "funding": [
  3159. {
  3160. "url": "https://symfony.com/sponsor",
  3161. "type": "custom"
  3162. },
  3163. {
  3164. "url": "https://github.com/fabpot",
  3165. "type": "github"
  3166. },
  3167. {
  3168. "url": "https://github.com/nicolas-grekas",
  3169. "type": "github"
  3170. },
  3171. {
  3172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3173. "type": "tidelift"
  3174. }
  3175. ],
  3176. "time": "2026-03-24T13:12:05+00:00"
  3177. },
  3178. {
  3179. "name": "symfony/asset-mapper",
  3180. "version": "v7.4.8",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/symfony/asset-mapper.git",
  3184. "reference": "752bb3e9662b226ca87dd55fdbc58300a6eec462"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/752bb3e9662b226ca87dd55fdbc58300a6eec462",
  3189. "reference": "752bb3e9662b226ca87dd55fdbc58300a6eec462",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "composer/semver": "^3.0",
  3194. "php": ">=8.2",
  3195. "symfony/deprecation-contracts": "^2.1|^3",
  3196. "symfony/filesystem": "^7.1|^8.0",
  3197. "symfony/http-client": "^6.4|^7.0|^8.0"
  3198. },
  3199. "conflict": {
  3200. "symfony/framework-bundle": "<6.4"
  3201. },
  3202. "require-dev": {
  3203. "symfony/asset": "^6.4|^7.0|^8.0",
  3204. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  3205. "symfony/console": "^6.4.13|^7.1.6|^8.0",
  3206. "symfony/event-dispatcher-contracts": "^3.0",
  3207. "symfony/finder": "^6.4|^7.0|^8.0",
  3208. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  3209. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3210. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  3211. "symfony/process": "^6.4|^7.0|^8.0",
  3212. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  3213. "symfony/web-link": "^6.4|^7.0|^8.0"
  3214. },
  3215. "type": "library",
  3216. "autoload": {
  3217. "psr-4": {
  3218. "Symfony\\Component\\AssetMapper\\": ""
  3219. },
  3220. "exclude-from-classmap": [
  3221. "/Tests/"
  3222. ]
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "MIT"
  3227. ],
  3228. "authors": [
  3229. {
  3230. "name": "Fabien Potencier",
  3231. "email": "fabien@symfony.com"
  3232. },
  3233. {
  3234. "name": "Symfony Community",
  3235. "homepage": "https://symfony.com/contributors"
  3236. }
  3237. ],
  3238. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3239. "homepage": "https://symfony.com",
  3240. "support": {
  3241. "source": "https://github.com/symfony/asset-mapper/tree/v7.4.8"
  3242. },
  3243. "funding": [
  3244. {
  3245. "url": "https://symfony.com/sponsor",
  3246. "type": "custom"
  3247. },
  3248. {
  3249. "url": "https://github.com/fabpot",
  3250. "type": "github"
  3251. },
  3252. {
  3253. "url": "https://github.com/nicolas-grekas",
  3254. "type": "github"
  3255. },
  3256. {
  3257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3258. "type": "tidelift"
  3259. }
  3260. ],
  3261. "time": "2026-03-24T13:12:05+00:00"
  3262. },
  3263. {
  3264. "name": "symfony/cache",
  3265. "version": "v7.4.8",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/symfony/cache.git",
  3269. "reference": "467464da294734b0fb17e853e5712abc8470f819"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/symfony/cache/zipball/467464da294734b0fb17e853e5712abc8470f819",
  3274. "reference": "467464da294734b0fb17e853e5712abc8470f819",
  3275. "shasum": ""
  3276. },
  3277. "require": {
  3278. "php": ">=8.2",
  3279. "psr/cache": "^2.0|^3.0",
  3280. "psr/log": "^1.1|^2|^3",
  3281. "symfony/cache-contracts": "^3.6",
  3282. "symfony/deprecation-contracts": "^2.5|^3",
  3283. "symfony/service-contracts": "^2.5|^3",
  3284. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  3285. },
  3286. "conflict": {
  3287. "doctrine/dbal": "<3.6",
  3288. "ext-redis": "<6.1",
  3289. "ext-relay": "<0.12.1",
  3290. "symfony/dependency-injection": "<6.4",
  3291. "symfony/http-kernel": "<6.4",
  3292. "symfony/var-dumper": "<6.4"
  3293. },
  3294. "provide": {
  3295. "psr/cache-implementation": "2.0|3.0",
  3296. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3297. "symfony/cache-implementation": "1.1|2.0|3.0"
  3298. },
  3299. "require-dev": {
  3300. "cache/integration-tests": "dev-master",
  3301. "doctrine/dbal": "^3.6|^4",
  3302. "predis/predis": "^1.1|^2.0",
  3303. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3304. "symfony/clock": "^6.4|^7.0|^8.0",
  3305. "symfony/config": "^6.4|^7.0|^8.0",
  3306. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3307. "symfony/filesystem": "^6.4|^7.0|^8.0",
  3308. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3309. "symfony/messenger": "^6.4|^7.0|^8.0",
  3310. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3311. },
  3312. "type": "library",
  3313. "autoload": {
  3314. "psr-4": {
  3315. "Symfony\\Component\\Cache\\": ""
  3316. },
  3317. "classmap": [
  3318. "Traits/ValueWrapper.php"
  3319. ],
  3320. "exclude-from-classmap": [
  3321. "/Tests/"
  3322. ]
  3323. },
  3324. "notification-url": "https://packagist.org/downloads/",
  3325. "license": [
  3326. "MIT"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "Nicolas Grekas",
  3331. "email": "p@tchwork.com"
  3332. },
  3333. {
  3334. "name": "Symfony Community",
  3335. "homepage": "https://symfony.com/contributors"
  3336. }
  3337. ],
  3338. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3339. "homepage": "https://symfony.com",
  3340. "keywords": [
  3341. "caching",
  3342. "psr6"
  3343. ],
  3344. "support": {
  3345. "source": "https://github.com/symfony/cache/tree/v7.4.8"
  3346. },
  3347. "funding": [
  3348. {
  3349. "url": "https://symfony.com/sponsor",
  3350. "type": "custom"
  3351. },
  3352. {
  3353. "url": "https://github.com/fabpot",
  3354. "type": "github"
  3355. },
  3356. {
  3357. "url": "https://github.com/nicolas-grekas",
  3358. "type": "github"
  3359. },
  3360. {
  3361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3362. "type": "tidelift"
  3363. }
  3364. ],
  3365. "time": "2026-03-30T15:15:47+00:00"
  3366. },
  3367. {
  3368. "name": "symfony/cache-contracts",
  3369. "version": "v3.6.0",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/symfony/cache-contracts.git",
  3373. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3378. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "php": ">=8.1",
  3383. "psr/cache": "^3.0"
  3384. },
  3385. "type": "library",
  3386. "extra": {
  3387. "thanks": {
  3388. "url": "https://github.com/symfony/contracts",
  3389. "name": "symfony/contracts"
  3390. },
  3391. "branch-alias": {
  3392. "dev-main": "3.6-dev"
  3393. }
  3394. },
  3395. "autoload": {
  3396. "psr-4": {
  3397. "Symfony\\Contracts\\Cache\\": ""
  3398. }
  3399. },
  3400. "notification-url": "https://packagist.org/downloads/",
  3401. "license": [
  3402. "MIT"
  3403. ],
  3404. "authors": [
  3405. {
  3406. "name": "Nicolas Grekas",
  3407. "email": "p@tchwork.com"
  3408. },
  3409. {
  3410. "name": "Symfony Community",
  3411. "homepage": "https://symfony.com/contributors"
  3412. }
  3413. ],
  3414. "description": "Generic abstractions related to caching",
  3415. "homepage": "https://symfony.com",
  3416. "keywords": [
  3417. "abstractions",
  3418. "contracts",
  3419. "decoupling",
  3420. "interfaces",
  3421. "interoperability",
  3422. "standards"
  3423. ],
  3424. "support": {
  3425. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  3426. },
  3427. "funding": [
  3428. {
  3429. "url": "https://symfony.com/sponsor",
  3430. "type": "custom"
  3431. },
  3432. {
  3433. "url": "https://github.com/fabpot",
  3434. "type": "github"
  3435. },
  3436. {
  3437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3438. "type": "tidelift"
  3439. }
  3440. ],
  3441. "time": "2025-03-13T15:25:07+00:00"
  3442. },
  3443. {
  3444. "name": "symfony/clock",
  3445. "version": "v7.4.8",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/symfony/clock.git",
  3449. "reference": "674fa3b98e21531dd040e613479f5f6fa8f32111"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/symfony/clock/zipball/674fa3b98e21531dd040e613479f5f6fa8f32111",
  3454. "reference": "674fa3b98e21531dd040e613479f5f6fa8f32111",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "php": ">=8.2",
  3459. "psr/clock": "^1.0",
  3460. "symfony/polyfill-php83": "^1.28"
  3461. },
  3462. "provide": {
  3463. "psr/clock-implementation": "1.0"
  3464. },
  3465. "type": "library",
  3466. "autoload": {
  3467. "files": [
  3468. "Resources/now.php"
  3469. ],
  3470. "psr-4": {
  3471. "Symfony\\Component\\Clock\\": ""
  3472. },
  3473. "exclude-from-classmap": [
  3474. "/Tests/"
  3475. ]
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "Nicolas Grekas",
  3484. "email": "p@tchwork.com"
  3485. },
  3486. {
  3487. "name": "Symfony Community",
  3488. "homepage": "https://symfony.com/contributors"
  3489. }
  3490. ],
  3491. "description": "Decouples applications from the system clock",
  3492. "homepage": "https://symfony.com",
  3493. "keywords": [
  3494. "clock",
  3495. "psr20",
  3496. "time"
  3497. ],
  3498. "support": {
  3499. "source": "https://github.com/symfony/clock/tree/v7.4.8"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://symfony.com/sponsor",
  3504. "type": "custom"
  3505. },
  3506. {
  3507. "url": "https://github.com/fabpot",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://github.com/nicolas-grekas",
  3512. "type": "github"
  3513. },
  3514. {
  3515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3516. "type": "tidelift"
  3517. }
  3518. ],
  3519. "time": "2026-03-24T13:12:05+00:00"
  3520. },
  3521. {
  3522. "name": "symfony/config",
  3523. "version": "v7.4.8",
  3524. "source": {
  3525. "type": "git",
  3526. "url": "https://github.com/symfony/config.git",
  3527. "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b"
  3528. },
  3529. "dist": {
  3530. "type": "zip",
  3531. "url": "https://api.github.com/repos/symfony/config/zipball/2d19dde43fa2ff720b9a40763ace7226594f503b",
  3532. "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b",
  3533. "shasum": ""
  3534. },
  3535. "require": {
  3536. "php": ">=8.2",
  3537. "symfony/deprecation-contracts": "^2.5|^3",
  3538. "symfony/filesystem": "^7.1|^8.0",
  3539. "symfony/polyfill-ctype": "~1.8"
  3540. },
  3541. "conflict": {
  3542. "symfony/finder": "<6.4",
  3543. "symfony/service-contracts": "<2.5"
  3544. },
  3545. "require-dev": {
  3546. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3547. "symfony/finder": "^6.4|^7.0|^8.0",
  3548. "symfony/messenger": "^6.4|^7.0|^8.0",
  3549. "symfony/service-contracts": "^2.5|^3",
  3550. "symfony/yaml": "^6.4|^7.0|^8.0"
  3551. },
  3552. "type": "library",
  3553. "autoload": {
  3554. "psr-4": {
  3555. "Symfony\\Component\\Config\\": ""
  3556. },
  3557. "exclude-from-classmap": [
  3558. "/Tests/"
  3559. ]
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Fabien Potencier",
  3568. "email": "fabien@symfony.com"
  3569. },
  3570. {
  3571. "name": "Symfony Community",
  3572. "homepage": "https://symfony.com/contributors"
  3573. }
  3574. ],
  3575. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3576. "homepage": "https://symfony.com",
  3577. "support": {
  3578. "source": "https://github.com/symfony/config/tree/v7.4.8"
  3579. },
  3580. "funding": [
  3581. {
  3582. "url": "https://symfony.com/sponsor",
  3583. "type": "custom"
  3584. },
  3585. {
  3586. "url": "https://github.com/fabpot",
  3587. "type": "github"
  3588. },
  3589. {
  3590. "url": "https://github.com/nicolas-grekas",
  3591. "type": "github"
  3592. },
  3593. {
  3594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3595. "type": "tidelift"
  3596. }
  3597. ],
  3598. "time": "2026-03-24T13:12:05+00:00"
  3599. },
  3600. {
  3601. "name": "symfony/console",
  3602. "version": "v7.4.8",
  3603. "source": {
  3604. "type": "git",
  3605. "url": "https://github.com/symfony/console.git",
  3606. "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707"
  3607. },
  3608. "dist": {
  3609. "type": "zip",
  3610. "url": "https://api.github.com/repos/symfony/console/zipball/1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707",
  3611. "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707",
  3612. "shasum": ""
  3613. },
  3614. "require": {
  3615. "php": ">=8.2",
  3616. "symfony/deprecation-contracts": "^2.5|^3",
  3617. "symfony/polyfill-mbstring": "~1.0",
  3618. "symfony/service-contracts": "^2.5|^3",
  3619. "symfony/string": "^7.2|^8.0"
  3620. },
  3621. "conflict": {
  3622. "symfony/dependency-injection": "<6.4",
  3623. "symfony/dotenv": "<6.4",
  3624. "symfony/event-dispatcher": "<6.4",
  3625. "symfony/lock": "<6.4",
  3626. "symfony/process": "<6.4"
  3627. },
  3628. "provide": {
  3629. "psr/log-implementation": "1.0|2.0|3.0"
  3630. },
  3631. "require-dev": {
  3632. "psr/log": "^1|^2|^3",
  3633. "symfony/config": "^6.4|^7.0|^8.0",
  3634. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3635. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3636. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3637. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3638. "symfony/lock": "^6.4|^7.0|^8.0",
  3639. "symfony/messenger": "^6.4|^7.0|^8.0",
  3640. "symfony/process": "^6.4|^7.0|^8.0",
  3641. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3642. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3643. },
  3644. "type": "library",
  3645. "autoload": {
  3646. "psr-4": {
  3647. "Symfony\\Component\\Console\\": ""
  3648. },
  3649. "exclude-from-classmap": [
  3650. "/Tests/"
  3651. ]
  3652. },
  3653. "notification-url": "https://packagist.org/downloads/",
  3654. "license": [
  3655. "MIT"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "Fabien Potencier",
  3660. "email": "fabien@symfony.com"
  3661. },
  3662. {
  3663. "name": "Symfony Community",
  3664. "homepage": "https://symfony.com/contributors"
  3665. }
  3666. ],
  3667. "description": "Eases the creation of beautiful and testable command line interfaces",
  3668. "homepage": "https://symfony.com",
  3669. "keywords": [
  3670. "cli",
  3671. "command-line",
  3672. "console",
  3673. "terminal"
  3674. ],
  3675. "support": {
  3676. "source": "https://github.com/symfony/console/tree/v7.4.8"
  3677. },
  3678. "funding": [
  3679. {
  3680. "url": "https://symfony.com/sponsor",
  3681. "type": "custom"
  3682. },
  3683. {
  3684. "url": "https://github.com/fabpot",
  3685. "type": "github"
  3686. },
  3687. {
  3688. "url": "https://github.com/nicolas-grekas",
  3689. "type": "github"
  3690. },
  3691. {
  3692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3693. "type": "tidelift"
  3694. }
  3695. ],
  3696. "time": "2026-03-30T13:54:39+00:00"
  3697. },
  3698. {
  3699. "name": "symfony/dependency-injection",
  3700. "version": "v7.4.8",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/symfony/dependency-injection.git",
  3704. "reference": "f7025fd7b687c240426562f86ada06a93b1e771d"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f7025fd7b687c240426562f86ada06a93b1e771d",
  3709. "reference": "f7025fd7b687c240426562f86ada06a93b1e771d",
  3710. "shasum": ""
  3711. },
  3712. "require": {
  3713. "php": ">=8.2",
  3714. "psr/container": "^1.1|^2.0",
  3715. "symfony/deprecation-contracts": "^2.5|^3",
  3716. "symfony/service-contracts": "^3.6",
  3717. "symfony/var-exporter": "^6.4.20|^7.2.5|^8.0"
  3718. },
  3719. "conflict": {
  3720. "ext-psr": "<1.1|>=2",
  3721. "symfony/config": "<6.4",
  3722. "symfony/finder": "<6.4",
  3723. "symfony/yaml": "<6.4"
  3724. },
  3725. "provide": {
  3726. "psr/container-implementation": "1.1|2.0",
  3727. "symfony/service-implementation": "1.1|2.0|3.0"
  3728. },
  3729. "require-dev": {
  3730. "symfony/config": "^6.4|^7.0|^8.0",
  3731. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3732. "symfony/yaml": "^6.4|^7.0|^8.0"
  3733. },
  3734. "type": "library",
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Symfony\\Component\\DependencyInjection\\": ""
  3738. },
  3739. "exclude-from-classmap": [
  3740. "/Tests/"
  3741. ]
  3742. },
  3743. "notification-url": "https://packagist.org/downloads/",
  3744. "license": [
  3745. "MIT"
  3746. ],
  3747. "authors": [
  3748. {
  3749. "name": "Fabien Potencier",
  3750. "email": "fabien@symfony.com"
  3751. },
  3752. {
  3753. "name": "Symfony Community",
  3754. "homepage": "https://symfony.com/contributors"
  3755. }
  3756. ],
  3757. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3758. "homepage": "https://symfony.com",
  3759. "support": {
  3760. "source": "https://github.com/symfony/dependency-injection/tree/v7.4.8"
  3761. },
  3762. "funding": [
  3763. {
  3764. "url": "https://symfony.com/sponsor",
  3765. "type": "custom"
  3766. },
  3767. {
  3768. "url": "https://github.com/fabpot",
  3769. "type": "github"
  3770. },
  3771. {
  3772. "url": "https://github.com/nicolas-grekas",
  3773. "type": "github"
  3774. },
  3775. {
  3776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3777. "type": "tidelift"
  3778. }
  3779. ],
  3780. "time": "2026-03-31T06:50:29+00:00"
  3781. },
  3782. {
  3783. "name": "symfony/deprecation-contracts",
  3784. "version": "v3.6.0",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/symfony/deprecation-contracts.git",
  3788. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3793. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3794. "shasum": ""
  3795. },
  3796. "require": {
  3797. "php": ">=8.1"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "thanks": {
  3802. "url": "https://github.com/symfony/contracts",
  3803. "name": "symfony/contracts"
  3804. },
  3805. "branch-alias": {
  3806. "dev-main": "3.6-dev"
  3807. }
  3808. },
  3809. "autoload": {
  3810. "files": [
  3811. "function.php"
  3812. ]
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Nicolas Grekas",
  3821. "email": "p@tchwork.com"
  3822. },
  3823. {
  3824. "name": "Symfony Community",
  3825. "homepage": "https://symfony.com/contributors"
  3826. }
  3827. ],
  3828. "description": "A generic function and convention to trigger deprecation notices",
  3829. "homepage": "https://symfony.com",
  3830. "support": {
  3831. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://symfony.com/sponsor",
  3836. "type": "custom"
  3837. },
  3838. {
  3839. "url": "https://github.com/fabpot",
  3840. "type": "github"
  3841. },
  3842. {
  3843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3844. "type": "tidelift"
  3845. }
  3846. ],
  3847. "time": "2024-09-25T14:21:43+00:00"
  3848. },
  3849. {
  3850. "name": "symfony/doctrine-bridge",
  3851. "version": "v7.4.8",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/symfony/doctrine-bridge.git",
  3855. "reference": "3f8f805e54ecb5cbd487b1eff8837a8bbd278669"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/3f8f805e54ecb5cbd487b1eff8837a8bbd278669",
  3860. "reference": "3f8f805e54ecb5cbd487b1eff8837a8bbd278669",
  3861. "shasum": ""
  3862. },
  3863. "require": {
  3864. "doctrine/event-manager": "^2",
  3865. "doctrine/persistence": "^3.1|^4",
  3866. "php": ">=8.2",
  3867. "symfony/deprecation-contracts": "^2.5|^3",
  3868. "symfony/polyfill-ctype": "~1.8",
  3869. "symfony/polyfill-mbstring": "~1.0",
  3870. "symfony/service-contracts": "^2.5|^3"
  3871. },
  3872. "conflict": {
  3873. "doctrine/collections": "<1.8",
  3874. "doctrine/dbal": "<3.6",
  3875. "doctrine/lexer": "<1.1",
  3876. "doctrine/orm": "<2.15",
  3877. "symfony/cache": "<6.4",
  3878. "symfony/dependency-injection": "<6.4",
  3879. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3880. "symfony/http-foundation": "<6.4",
  3881. "symfony/http-kernel": "<6.4",
  3882. "symfony/lock": "<6.4",
  3883. "symfony/messenger": "<6.4",
  3884. "symfony/property-info": "<6.4",
  3885. "symfony/security-bundle": "<6.4",
  3886. "symfony/security-core": "<6.4",
  3887. "symfony/validator": "<7.4"
  3888. },
  3889. "require-dev": {
  3890. "doctrine/collections": "^1.8|^2.0",
  3891. "doctrine/data-fixtures": "^1.1|^2",
  3892. "doctrine/dbal": "^3.6|^4",
  3893. "doctrine/orm": "^2.15|^3",
  3894. "psr/log": "^1|^2|^3",
  3895. "symfony/cache": "^6.4|^7.0|^8.0",
  3896. "symfony/config": "^6.4|^7.0|^8.0",
  3897. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3898. "symfony/doctrine-messenger": "^6.4|^7.0|^8.0",
  3899. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3900. "symfony/form": "^7.2|^8.0",
  3901. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3902. "symfony/lock": "^6.4|^7.0|^8.0",
  3903. "symfony/messenger": "^6.4|^7.0|^8.0",
  3904. "symfony/property-access": "^6.4|^7.0|^8.0",
  3905. "symfony/property-info": "^6.4|^7.0|^8.0",
  3906. "symfony/security-core": "^6.4|^7.0|^8.0",
  3907. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3908. "symfony/translation": "^6.4|^7.0|^8.0",
  3909. "symfony/type-info": "^7.1.8|^8.0",
  3910. "symfony/uid": "^6.4|^7.0|^8.0",
  3911. "symfony/validator": "^7.4|^8.0",
  3912. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3913. },
  3914. "type": "symfony-bridge",
  3915. "autoload": {
  3916. "psr-4": {
  3917. "Symfony\\Bridge\\Doctrine\\": ""
  3918. },
  3919. "exclude-from-classmap": [
  3920. "/Tests/"
  3921. ]
  3922. },
  3923. "notification-url": "https://packagist.org/downloads/",
  3924. "license": [
  3925. "MIT"
  3926. ],
  3927. "authors": [
  3928. {
  3929. "name": "Fabien Potencier",
  3930. "email": "fabien@symfony.com"
  3931. },
  3932. {
  3933. "name": "Symfony Community",
  3934. "homepage": "https://symfony.com/contributors"
  3935. }
  3936. ],
  3937. "description": "Provides integration for Doctrine with various Symfony components",
  3938. "homepage": "https://symfony.com",
  3939. "support": {
  3940. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.4.8"
  3941. },
  3942. "funding": [
  3943. {
  3944. "url": "https://symfony.com/sponsor",
  3945. "type": "custom"
  3946. },
  3947. {
  3948. "url": "https://github.com/fabpot",
  3949. "type": "github"
  3950. },
  3951. {
  3952. "url": "https://github.com/nicolas-grekas",
  3953. "type": "github"
  3954. },
  3955. {
  3956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3957. "type": "tidelift"
  3958. }
  3959. ],
  3960. "time": "2026-03-24T13:12:05+00:00"
  3961. },
  3962. {
  3963. "name": "symfony/doctrine-messenger",
  3964. "version": "v7.4.6",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/symfony/doctrine-messenger.git",
  3968. "reference": "a429cd95983eaea2371ea279bed3b8a93b9ecdd3"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/a429cd95983eaea2371ea279bed3b8a93b9ecdd3",
  3973. "reference": "a429cd95983eaea2371ea279bed3b8a93b9ecdd3",
  3974. "shasum": ""
  3975. },
  3976. "require": {
  3977. "doctrine/dbal": "^3.6|^4",
  3978. "php": ">=8.2",
  3979. "symfony/messenger": "^7.2|^8.0",
  3980. "symfony/service-contracts": "^2.5|^3"
  3981. },
  3982. "conflict": {
  3983. "doctrine/persistence": "<1.3"
  3984. },
  3985. "require-dev": {
  3986. "doctrine/persistence": "^1.3|^2|^3",
  3987. "symfony/property-access": "^6.4|^7.0|^8.0",
  3988. "symfony/serializer": "^6.4|^7.0|^8.0"
  3989. },
  3990. "type": "symfony-messenger-bridge",
  3991. "autoload": {
  3992. "psr-4": {
  3993. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3994. },
  3995. "exclude-from-classmap": [
  3996. "/Tests/"
  3997. ]
  3998. },
  3999. "notification-url": "https://packagist.org/downloads/",
  4000. "license": [
  4001. "MIT"
  4002. ],
  4003. "authors": [
  4004. {
  4005. "name": "Fabien Potencier",
  4006. "email": "fabien@symfony.com"
  4007. },
  4008. {
  4009. "name": "Symfony Community",
  4010. "homepage": "https://symfony.com/contributors"
  4011. }
  4012. ],
  4013. "description": "Symfony Doctrine Messenger Bridge",
  4014. "homepage": "https://symfony.com",
  4015. "support": {
  4016. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.4.6"
  4017. },
  4018. "funding": [
  4019. {
  4020. "url": "https://symfony.com/sponsor",
  4021. "type": "custom"
  4022. },
  4023. {
  4024. "url": "https://github.com/fabpot",
  4025. "type": "github"
  4026. },
  4027. {
  4028. "url": "https://github.com/nicolas-grekas",
  4029. "type": "github"
  4030. },
  4031. {
  4032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4033. "type": "tidelift"
  4034. }
  4035. ],
  4036. "time": "2026-02-18T09:40:04+00:00"
  4037. },
  4038. {
  4039. "name": "symfony/dotenv",
  4040. "version": "v7.4.8",
  4041. "source": {
  4042. "type": "git",
  4043. "url": "https://github.com/symfony/dotenv.git",
  4044. "reference": "5df79f11350166125fe754c85b87f7e13d735314"
  4045. },
  4046. "dist": {
  4047. "type": "zip",
  4048. "url": "https://api.github.com/repos/symfony/dotenv/zipball/5df79f11350166125fe754c85b87f7e13d735314",
  4049. "reference": "5df79f11350166125fe754c85b87f7e13d735314",
  4050. "shasum": ""
  4051. },
  4052. "require": {
  4053. "php": ">=8.2"
  4054. },
  4055. "conflict": {
  4056. "symfony/console": "<6.4",
  4057. "symfony/process": "<6.4"
  4058. },
  4059. "require-dev": {
  4060. "symfony/console": "^6.4|^7.0|^8.0",
  4061. "symfony/process": "^6.4|^7.0|^8.0"
  4062. },
  4063. "type": "library",
  4064. "autoload": {
  4065. "psr-4": {
  4066. "Symfony\\Component\\Dotenv\\": ""
  4067. },
  4068. "exclude-from-classmap": [
  4069. "/Tests/"
  4070. ]
  4071. },
  4072. "notification-url": "https://packagist.org/downloads/",
  4073. "license": [
  4074. "MIT"
  4075. ],
  4076. "authors": [
  4077. {
  4078. "name": "Fabien Potencier",
  4079. "email": "fabien@symfony.com"
  4080. },
  4081. {
  4082. "name": "Symfony Community",
  4083. "homepage": "https://symfony.com/contributors"
  4084. }
  4085. ],
  4086. "description": "Registers environment variables from a .env file",
  4087. "homepage": "https://symfony.com",
  4088. "keywords": [
  4089. "dotenv",
  4090. "env",
  4091. "environment"
  4092. ],
  4093. "support": {
  4094. "source": "https://github.com/symfony/dotenv/tree/v7.4.8"
  4095. },
  4096. "funding": [
  4097. {
  4098. "url": "https://symfony.com/sponsor",
  4099. "type": "custom"
  4100. },
  4101. {
  4102. "url": "https://github.com/fabpot",
  4103. "type": "github"
  4104. },
  4105. {
  4106. "url": "https://github.com/nicolas-grekas",
  4107. "type": "github"
  4108. },
  4109. {
  4110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4111. "type": "tidelift"
  4112. }
  4113. ],
  4114. "time": "2026-03-30T12:55:43+00:00"
  4115. },
  4116. {
  4117. "name": "symfony/error-handler",
  4118. "version": "v7.4.8",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/symfony/error-handler.git",
  4122. "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa",
  4127. "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "php": ">=8.2",
  4132. "psr/log": "^1|^2|^3",
  4133. "symfony/polyfill-php85": "^1.32",
  4134. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  4135. },
  4136. "conflict": {
  4137. "symfony/deprecation-contracts": "<2.5",
  4138. "symfony/http-kernel": "<6.4"
  4139. },
  4140. "require-dev": {
  4141. "symfony/console": "^6.4|^7.0|^8.0",
  4142. "symfony/deprecation-contracts": "^2.5|^3",
  4143. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4144. "symfony/serializer": "^6.4|^7.0|^8.0",
  4145. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  4146. },
  4147. "bin": [
  4148. "Resources/bin/patch-type-declarations"
  4149. ],
  4150. "type": "library",
  4151. "autoload": {
  4152. "psr-4": {
  4153. "Symfony\\Component\\ErrorHandler\\": ""
  4154. },
  4155. "exclude-from-classmap": [
  4156. "/Tests/"
  4157. ]
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "MIT"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "Fabien Potencier",
  4166. "email": "fabien@symfony.com"
  4167. },
  4168. {
  4169. "name": "Symfony Community",
  4170. "homepage": "https://symfony.com/contributors"
  4171. }
  4172. ],
  4173. "description": "Provides tools to manage errors and ease debugging PHP code",
  4174. "homepage": "https://symfony.com",
  4175. "support": {
  4176. "source": "https://github.com/symfony/error-handler/tree/v7.4.8"
  4177. },
  4178. "funding": [
  4179. {
  4180. "url": "https://symfony.com/sponsor",
  4181. "type": "custom"
  4182. },
  4183. {
  4184. "url": "https://github.com/fabpot",
  4185. "type": "github"
  4186. },
  4187. {
  4188. "url": "https://github.com/nicolas-grekas",
  4189. "type": "github"
  4190. },
  4191. {
  4192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4193. "type": "tidelift"
  4194. }
  4195. ],
  4196. "time": "2026-03-24T13:12:05+00:00"
  4197. },
  4198. {
  4199. "name": "symfony/event-dispatcher",
  4200. "version": "v7.4.8",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/symfony/event-dispatcher.git",
  4204. "reference": "f57b899fa736fd71121168ef268f23c206083f0a"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f57b899fa736fd71121168ef268f23c206083f0a",
  4209. "reference": "f57b899fa736fd71121168ef268f23c206083f0a",
  4210. "shasum": ""
  4211. },
  4212. "require": {
  4213. "php": ">=8.2",
  4214. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4215. },
  4216. "conflict": {
  4217. "symfony/dependency-injection": "<6.4",
  4218. "symfony/service-contracts": "<2.5"
  4219. },
  4220. "provide": {
  4221. "psr/event-dispatcher-implementation": "1.0",
  4222. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4223. },
  4224. "require-dev": {
  4225. "psr/log": "^1|^2|^3",
  4226. "symfony/config": "^6.4|^7.0|^8.0",
  4227. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4228. "symfony/error-handler": "^6.4|^7.0|^8.0",
  4229. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4230. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  4231. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  4232. "symfony/service-contracts": "^2.5|^3",
  4233. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  4234. },
  4235. "type": "library",
  4236. "autoload": {
  4237. "psr-4": {
  4238. "Symfony\\Component\\EventDispatcher\\": ""
  4239. },
  4240. "exclude-from-classmap": [
  4241. "/Tests/"
  4242. ]
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "Fabien Potencier",
  4251. "email": "fabien@symfony.com"
  4252. },
  4253. {
  4254. "name": "Symfony Community",
  4255. "homepage": "https://symfony.com/contributors"
  4256. }
  4257. ],
  4258. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4259. "homepage": "https://symfony.com",
  4260. "support": {
  4261. "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.8"
  4262. },
  4263. "funding": [
  4264. {
  4265. "url": "https://symfony.com/sponsor",
  4266. "type": "custom"
  4267. },
  4268. {
  4269. "url": "https://github.com/fabpot",
  4270. "type": "github"
  4271. },
  4272. {
  4273. "url": "https://github.com/nicolas-grekas",
  4274. "type": "github"
  4275. },
  4276. {
  4277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4278. "type": "tidelift"
  4279. }
  4280. ],
  4281. "time": "2026-03-30T13:54:39+00:00"
  4282. },
  4283. {
  4284. "name": "symfony/event-dispatcher-contracts",
  4285. "version": "v3.6.0",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4289. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  4294. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  4295. "shasum": ""
  4296. },
  4297. "require": {
  4298. "php": ">=8.1",
  4299. "psr/event-dispatcher": "^1"
  4300. },
  4301. "type": "library",
  4302. "extra": {
  4303. "thanks": {
  4304. "url": "https://github.com/symfony/contracts",
  4305. "name": "symfony/contracts"
  4306. },
  4307. "branch-alias": {
  4308. "dev-main": "3.6-dev"
  4309. }
  4310. },
  4311. "autoload": {
  4312. "psr-4": {
  4313. "Symfony\\Contracts\\EventDispatcher\\": ""
  4314. }
  4315. },
  4316. "notification-url": "https://packagist.org/downloads/",
  4317. "license": [
  4318. "MIT"
  4319. ],
  4320. "authors": [
  4321. {
  4322. "name": "Nicolas Grekas",
  4323. "email": "p@tchwork.com"
  4324. },
  4325. {
  4326. "name": "Symfony Community",
  4327. "homepage": "https://symfony.com/contributors"
  4328. }
  4329. ],
  4330. "description": "Generic abstractions related to dispatching event",
  4331. "homepage": "https://symfony.com",
  4332. "keywords": [
  4333. "abstractions",
  4334. "contracts",
  4335. "decoupling",
  4336. "interfaces",
  4337. "interoperability",
  4338. "standards"
  4339. ],
  4340. "support": {
  4341. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  4342. },
  4343. "funding": [
  4344. {
  4345. "url": "https://symfony.com/sponsor",
  4346. "type": "custom"
  4347. },
  4348. {
  4349. "url": "https://github.com/fabpot",
  4350. "type": "github"
  4351. },
  4352. {
  4353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4354. "type": "tidelift"
  4355. }
  4356. ],
  4357. "time": "2024-09-25T14:21:43+00:00"
  4358. },
  4359. {
  4360. "name": "symfony/expression-language",
  4361. "version": "v7.4.8",
  4362. "source": {
  4363. "type": "git",
  4364. "url": "https://github.com/symfony/expression-language.git",
  4365. "reference": "87ff95687748f4af65e4d5a6e917d448ec52aa83"
  4366. },
  4367. "dist": {
  4368. "type": "zip",
  4369. "url": "https://api.github.com/repos/symfony/expression-language/zipball/87ff95687748f4af65e4d5a6e917d448ec52aa83",
  4370. "reference": "87ff95687748f4af65e4d5a6e917d448ec52aa83",
  4371. "shasum": ""
  4372. },
  4373. "require": {
  4374. "php": ">=8.2",
  4375. "symfony/cache": "^6.4|^7.0|^8.0",
  4376. "symfony/deprecation-contracts": "^2.5|^3",
  4377. "symfony/service-contracts": "^2.5|^3"
  4378. },
  4379. "type": "library",
  4380. "autoload": {
  4381. "psr-4": {
  4382. "Symfony\\Component\\ExpressionLanguage\\": ""
  4383. },
  4384. "exclude-from-classmap": [
  4385. "/Tests/"
  4386. ]
  4387. },
  4388. "notification-url": "https://packagist.org/downloads/",
  4389. "license": [
  4390. "MIT"
  4391. ],
  4392. "authors": [
  4393. {
  4394. "name": "Fabien Potencier",
  4395. "email": "fabien@symfony.com"
  4396. },
  4397. {
  4398. "name": "Symfony Community",
  4399. "homepage": "https://symfony.com/contributors"
  4400. }
  4401. ],
  4402. "description": "Provides an engine that can compile and evaluate expressions",
  4403. "homepage": "https://symfony.com",
  4404. "support": {
  4405. "source": "https://github.com/symfony/expression-language/tree/v7.4.8"
  4406. },
  4407. "funding": [
  4408. {
  4409. "url": "https://symfony.com/sponsor",
  4410. "type": "custom"
  4411. },
  4412. {
  4413. "url": "https://github.com/fabpot",
  4414. "type": "github"
  4415. },
  4416. {
  4417. "url": "https://github.com/nicolas-grekas",
  4418. "type": "github"
  4419. },
  4420. {
  4421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4422. "type": "tidelift"
  4423. }
  4424. ],
  4425. "time": "2026-03-24T13:12:05+00:00"
  4426. },
  4427. {
  4428. "name": "symfony/filesystem",
  4429. "version": "v7.4.8",
  4430. "source": {
  4431. "type": "git",
  4432. "url": "https://github.com/symfony/filesystem.git",
  4433. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5"
  4434. },
  4435. "dist": {
  4436. "type": "zip",
  4437. "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5",
  4438. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5",
  4439. "shasum": ""
  4440. },
  4441. "require": {
  4442. "php": ">=8.2",
  4443. "symfony/polyfill-ctype": "~1.8",
  4444. "symfony/polyfill-mbstring": "~1.8"
  4445. },
  4446. "require-dev": {
  4447. "symfony/process": "^6.4|^7.0|^8.0"
  4448. },
  4449. "type": "library",
  4450. "autoload": {
  4451. "psr-4": {
  4452. "Symfony\\Component\\Filesystem\\": ""
  4453. },
  4454. "exclude-from-classmap": [
  4455. "/Tests/"
  4456. ]
  4457. },
  4458. "notification-url": "https://packagist.org/downloads/",
  4459. "license": [
  4460. "MIT"
  4461. ],
  4462. "authors": [
  4463. {
  4464. "name": "Fabien Potencier",
  4465. "email": "fabien@symfony.com"
  4466. },
  4467. {
  4468. "name": "Symfony Community",
  4469. "homepage": "https://symfony.com/contributors"
  4470. }
  4471. ],
  4472. "description": "Provides basic utilities for the filesystem",
  4473. "homepage": "https://symfony.com",
  4474. "support": {
  4475. "source": "https://github.com/symfony/filesystem/tree/v7.4.8"
  4476. },
  4477. "funding": [
  4478. {
  4479. "url": "https://symfony.com/sponsor",
  4480. "type": "custom"
  4481. },
  4482. {
  4483. "url": "https://github.com/fabpot",
  4484. "type": "github"
  4485. },
  4486. {
  4487. "url": "https://github.com/nicolas-grekas",
  4488. "type": "github"
  4489. },
  4490. {
  4491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4492. "type": "tidelift"
  4493. }
  4494. ],
  4495. "time": "2026-03-24T13:12:05+00:00"
  4496. },
  4497. {
  4498. "name": "symfony/finder",
  4499. "version": "v7.4.8",
  4500. "source": {
  4501. "type": "git",
  4502. "url": "https://github.com/symfony/finder.git",
  4503. "reference": "e0be088d22278583a82da281886e8c3592fbf149"
  4504. },
  4505. "dist": {
  4506. "type": "zip",
  4507. "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149",
  4508. "reference": "e0be088d22278583a82da281886e8c3592fbf149",
  4509. "shasum": ""
  4510. },
  4511. "require": {
  4512. "php": ">=8.2"
  4513. },
  4514. "require-dev": {
  4515. "symfony/filesystem": "^6.4|^7.0|^8.0"
  4516. },
  4517. "type": "library",
  4518. "autoload": {
  4519. "psr-4": {
  4520. "Symfony\\Component\\Finder\\": ""
  4521. },
  4522. "exclude-from-classmap": [
  4523. "/Tests/"
  4524. ]
  4525. },
  4526. "notification-url": "https://packagist.org/downloads/",
  4527. "license": [
  4528. "MIT"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "Fabien Potencier",
  4533. "email": "fabien@symfony.com"
  4534. },
  4535. {
  4536. "name": "Symfony Community",
  4537. "homepage": "https://symfony.com/contributors"
  4538. }
  4539. ],
  4540. "description": "Finds files and directories via an intuitive fluent interface",
  4541. "homepage": "https://symfony.com",
  4542. "support": {
  4543. "source": "https://github.com/symfony/finder/tree/v7.4.8"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://symfony.com/sponsor",
  4548. "type": "custom"
  4549. },
  4550. {
  4551. "url": "https://github.com/fabpot",
  4552. "type": "github"
  4553. },
  4554. {
  4555. "url": "https://github.com/nicolas-grekas",
  4556. "type": "github"
  4557. },
  4558. {
  4559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4560. "type": "tidelift"
  4561. }
  4562. ],
  4563. "time": "2026-03-24T13:12:05+00:00"
  4564. },
  4565. {
  4566. "name": "symfony/flex",
  4567. "version": "v2.10.0",
  4568. "source": {
  4569. "type": "git",
  4570. "url": "https://github.com/symfony/flex.git",
  4571. "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d"
  4572. },
  4573. "dist": {
  4574. "type": "zip",
  4575. "url": "https://api.github.com/repos/symfony/flex/zipball/9cd384775973eabbf6e8b05784dda279fc67c28d",
  4576. "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d",
  4577. "shasum": ""
  4578. },
  4579. "require": {
  4580. "composer-plugin-api": "^2.1",
  4581. "php": ">=8.1"
  4582. },
  4583. "conflict": {
  4584. "composer/semver": "<1.7.2",
  4585. "symfony/dotenv": "<5.4"
  4586. },
  4587. "require-dev": {
  4588. "composer/composer": "^2.1",
  4589. "symfony/dotenv": "^6.4|^7.4|^8.0",
  4590. "symfony/filesystem": "^6.4|^7.4|^8.0",
  4591. "symfony/phpunit-bridge": "^6.4|^7.4|^8.0",
  4592. "symfony/process": "^6.4|^7.4|^8.0"
  4593. },
  4594. "type": "composer-plugin",
  4595. "extra": {
  4596. "class": "Symfony\\Flex\\Flex"
  4597. },
  4598. "autoload": {
  4599. "psr-4": {
  4600. "Symfony\\Flex\\": "src"
  4601. }
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "MIT"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Fabien Potencier",
  4610. "email": "fabien.potencier@gmail.com"
  4611. }
  4612. ],
  4613. "description": "Composer plugin for Symfony",
  4614. "support": {
  4615. "issues": "https://github.com/symfony/flex/issues",
  4616. "source": "https://github.com/symfony/flex/tree/v2.10.0"
  4617. },
  4618. "funding": [
  4619. {
  4620. "url": "https://symfony.com/sponsor",
  4621. "type": "custom"
  4622. },
  4623. {
  4624. "url": "https://github.com/fabpot",
  4625. "type": "github"
  4626. },
  4627. {
  4628. "url": "https://github.com/nicolas-grekas",
  4629. "type": "github"
  4630. },
  4631. {
  4632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4633. "type": "tidelift"
  4634. }
  4635. ],
  4636. "time": "2025-11-16T09:38:19+00:00"
  4637. },
  4638. {
  4639. "name": "symfony/form",
  4640. "version": "v7.4.8",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/symfony/form.git",
  4644. "reference": "fbb79fc4de32f091ec697276824331f5de3a87b4"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/symfony/form/zipball/fbb79fc4de32f091ec697276824331f5de3a87b4",
  4649. "reference": "fbb79fc4de32f091ec697276824331f5de3a87b4",
  4650. "shasum": ""
  4651. },
  4652. "require": {
  4653. "php": ">=8.2",
  4654. "symfony/deprecation-contracts": "^2.5|^3",
  4655. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4656. "symfony/options-resolver": "^7.3|^8.0",
  4657. "symfony/polyfill-ctype": "~1.8",
  4658. "symfony/polyfill-intl-icu": "^1.21",
  4659. "symfony/polyfill-mbstring": "~1.0",
  4660. "symfony/property-access": "^6.4|^7.0|^8.0",
  4661. "symfony/service-contracts": "^2.5|^3"
  4662. },
  4663. "conflict": {
  4664. "symfony/console": "<6.4",
  4665. "symfony/dependency-injection": "<6.4",
  4666. "symfony/doctrine-bridge": "<6.4",
  4667. "symfony/error-handler": "<6.4",
  4668. "symfony/framework-bundle": "<6.4",
  4669. "symfony/http-kernel": "<6.4",
  4670. "symfony/intl": "<7.4",
  4671. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4672. "symfony/translation-contracts": "<2.5",
  4673. "symfony/twig-bridge": "<6.4"
  4674. },
  4675. "require-dev": {
  4676. "doctrine/collections": "^1.0|^2.0",
  4677. "symfony/clock": "^6.4|^7.0|^8.0",
  4678. "symfony/config": "^6.4|^7.0|^8.0",
  4679. "symfony/console": "^6.4|^7.0|^8.0",
  4680. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4681. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4682. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  4683. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  4684. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4685. "symfony/intl": "^7.4|^8.0",
  4686. "symfony/security-core": "^6.4|^7.0|^8.0",
  4687. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  4688. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  4689. "symfony/uid": "^6.4|^7.0|^8.0",
  4690. "symfony/validator": "^6.4.12|^7.1.5|^8.0",
  4691. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  4692. },
  4693. "type": "library",
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Symfony\\Component\\Form\\": ""
  4697. },
  4698. "exclude-from-classmap": [
  4699. "/Tests/"
  4700. ]
  4701. },
  4702. "notification-url": "https://packagist.org/downloads/",
  4703. "license": [
  4704. "MIT"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Fabien Potencier",
  4709. "email": "fabien@symfony.com"
  4710. },
  4711. {
  4712. "name": "Symfony Community",
  4713. "homepage": "https://symfony.com/contributors"
  4714. }
  4715. ],
  4716. "description": "Allows to easily create, process and reuse HTML forms",
  4717. "homepage": "https://symfony.com",
  4718. "support": {
  4719. "source": "https://github.com/symfony/form/tree/v7.4.8"
  4720. },
  4721. "funding": [
  4722. {
  4723. "url": "https://symfony.com/sponsor",
  4724. "type": "custom"
  4725. },
  4726. {
  4727. "url": "https://github.com/fabpot",
  4728. "type": "github"
  4729. },
  4730. {
  4731. "url": "https://github.com/nicolas-grekas",
  4732. "type": "github"
  4733. },
  4734. {
  4735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4736. "type": "tidelift"
  4737. }
  4738. ],
  4739. "time": "2026-03-24T13:12:05+00:00"
  4740. },
  4741. {
  4742. "name": "symfony/framework-bundle",
  4743. "version": "v7.4.8",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://github.com/symfony/framework-bundle.git",
  4747. "reference": "180533cfbac2144349044267db31d5d3df9957cb"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/180533cfbac2144349044267db31d5d3df9957cb",
  4752. "reference": "180533cfbac2144349044267db31d5d3df9957cb",
  4753. "shasum": ""
  4754. },
  4755. "require": {
  4756. "composer-runtime-api": ">=2.1",
  4757. "ext-xml": "*",
  4758. "php": ">=8.2",
  4759. "symfony/cache": "^6.4.12|^7.0|^8.0",
  4760. "symfony/config": "^7.4.4|^8.0.4",
  4761. "symfony/dependency-injection": "^7.4.4|^8.0.4",
  4762. "symfony/deprecation-contracts": "^2.5|^3",
  4763. "symfony/error-handler": "^7.3|^8.0",
  4764. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  4765. "symfony/filesystem": "^7.1|^8.0",
  4766. "symfony/finder": "^6.4|^7.0|^8.0",
  4767. "symfony/http-foundation": "^7.4|^8.0",
  4768. "symfony/http-kernel": "^7.4|^8.0",
  4769. "symfony/polyfill-mbstring": "~1.0",
  4770. "symfony/polyfill-php85": "^1.32",
  4771. "symfony/routing": "^7.4|^8.0"
  4772. },
  4773. "conflict": {
  4774. "doctrine/persistence": "<1.3",
  4775. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  4776. "phpdocumentor/type-resolver": "<1.5.1",
  4777. "symfony/asset": "<6.4",
  4778. "symfony/asset-mapper": "<6.4",
  4779. "symfony/clock": "<6.4",
  4780. "symfony/console": "<6.4",
  4781. "symfony/dom-crawler": "<6.4",
  4782. "symfony/dotenv": "<6.4",
  4783. "symfony/form": "<7.4",
  4784. "symfony/http-client": "<6.4",
  4785. "symfony/lock": "<6.4",
  4786. "symfony/mailer": "<6.4",
  4787. "symfony/messenger": "<7.4",
  4788. "symfony/mime": "<6.4",
  4789. "symfony/property-access": "<6.4",
  4790. "symfony/property-info": "<6.4",
  4791. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4792. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4793. "symfony/security-core": "<6.4",
  4794. "symfony/security-csrf": "<7.2",
  4795. "symfony/serializer": "<7.2.5",
  4796. "symfony/stopwatch": "<6.4",
  4797. "symfony/translation": "<7.3",
  4798. "symfony/twig-bridge": "<6.4",
  4799. "symfony/twig-bundle": "<6.4",
  4800. "symfony/validator": "<6.4",
  4801. "symfony/web-profiler-bundle": "<6.4",
  4802. "symfony/webhook": "<7.2",
  4803. "symfony/workflow": "<7.4"
  4804. },
  4805. "require-dev": {
  4806. "doctrine/persistence": "^1.3|^2|^3",
  4807. "dragonmantank/cron-expression": "^3.1",
  4808. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  4809. "seld/jsonlint": "^1.10",
  4810. "symfony/asset": "^6.4|^7.0|^8.0",
  4811. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  4812. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  4813. "symfony/clock": "^6.4|^7.0|^8.0",
  4814. "symfony/console": "^6.4|^7.0|^8.0",
  4815. "symfony/css-selector": "^6.4|^7.0|^8.0",
  4816. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  4817. "symfony/dotenv": "^6.4|^7.0|^8.0",
  4818. "symfony/expression-language": "^6.4|^7.0|^8.0",
  4819. "symfony/form": "^7.4|^8.0",
  4820. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  4821. "symfony/http-client": "^6.4|^7.0|^8.0",
  4822. "symfony/json-streamer": "^7.3|^8.0",
  4823. "symfony/lock": "^6.4|^7.0|^8.0",
  4824. "symfony/mailer": "^6.4|^7.0|^8.0",
  4825. "symfony/messenger": "^7.4|^8.0",
  4826. "symfony/mime": "^6.4|^7.0|^8.0",
  4827. "symfony/notifier": "^6.4|^7.0|^8.0",
  4828. "symfony/object-mapper": "^7.3|^8.0",
  4829. "symfony/polyfill-intl-icu": "~1.0",
  4830. "symfony/process": "^6.4|^7.0|^8.0",
  4831. "symfony/property-info": "^6.4|^7.0|^8.0",
  4832. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  4833. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  4834. "symfony/scheduler": "^6.4.4|^7.0.4|^8.0",
  4835. "symfony/security-bundle": "^6.4|^7.0|^8.0",
  4836. "symfony/semaphore": "^6.4|^7.0|^8.0",
  4837. "symfony/serializer": "^7.2.5|^8.0",
  4838. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  4839. "symfony/string": "^6.4|^7.0|^8.0",
  4840. "symfony/translation": "^7.3|^8.0",
  4841. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  4842. "symfony/type-info": "^7.1.8|^8.0",
  4843. "symfony/uid": "^6.4|^7.0|^8.0",
  4844. "symfony/validator": "^7.4|^8.0",
  4845. "symfony/web-link": "^6.4|^7.0|^8.0",
  4846. "symfony/webhook": "^7.2|^8.0",
  4847. "symfony/workflow": "^7.4|^8.0",
  4848. "symfony/yaml": "^7.3|^8.0",
  4849. "twig/twig": "^3.12"
  4850. },
  4851. "type": "symfony-bundle",
  4852. "autoload": {
  4853. "psr-4": {
  4854. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4855. },
  4856. "exclude-from-classmap": [
  4857. "/Tests/"
  4858. ]
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "MIT"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Fabien Potencier",
  4867. "email": "fabien@symfony.com"
  4868. },
  4869. {
  4870. "name": "Symfony Community",
  4871. "homepage": "https://symfony.com/contributors"
  4872. }
  4873. ],
  4874. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4875. "homepage": "https://symfony.com",
  4876. "support": {
  4877. "source": "https://github.com/symfony/framework-bundle/tree/v7.4.8"
  4878. },
  4879. "funding": [
  4880. {
  4881. "url": "https://symfony.com/sponsor",
  4882. "type": "custom"
  4883. },
  4884. {
  4885. "url": "https://github.com/fabpot",
  4886. "type": "github"
  4887. },
  4888. {
  4889. "url": "https://github.com/nicolas-grekas",
  4890. "type": "github"
  4891. },
  4892. {
  4893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4894. "type": "tidelift"
  4895. }
  4896. ],
  4897. "time": "2026-03-30T12:55:43+00:00"
  4898. },
  4899. {
  4900. "name": "symfony/http-client",
  4901. "version": "v7.4.8",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://github.com/symfony/http-client.git",
  4905. "reference": "01933e626c3de76bea1e22641e205e78f6a34342"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://api.github.com/repos/symfony/http-client/zipball/01933e626c3de76bea1e22641e205e78f6a34342",
  4910. "reference": "01933e626c3de76bea1e22641e205e78f6a34342",
  4911. "shasum": ""
  4912. },
  4913. "require": {
  4914. "php": ">=8.2",
  4915. "psr/log": "^1|^2|^3",
  4916. "symfony/deprecation-contracts": "^2.5|^3",
  4917. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  4918. "symfony/polyfill-php83": "^1.29",
  4919. "symfony/service-contracts": "^2.5|^3"
  4920. },
  4921. "conflict": {
  4922. "amphp/amp": "<2.5",
  4923. "amphp/socket": "<1.1",
  4924. "php-http/discovery": "<1.15",
  4925. "symfony/http-foundation": "<6.4"
  4926. },
  4927. "provide": {
  4928. "php-http/async-client-implementation": "*",
  4929. "php-http/client-implementation": "*",
  4930. "psr/http-client-implementation": "1.0",
  4931. "symfony/http-client-implementation": "3.0"
  4932. },
  4933. "require-dev": {
  4934. "amphp/http-client": "^4.2.1|^5.0",
  4935. "amphp/http-tunnel": "^1.0|^2.0",
  4936. "guzzlehttp/promises": "^1.4|^2.0",
  4937. "nyholm/psr7": "^1.0",
  4938. "php-http/httplug": "^1.0|^2.0",
  4939. "psr/http-client": "^1.0",
  4940. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  4941. "symfony/cache": "^6.4|^7.0|^8.0",
  4942. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4943. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4944. "symfony/messenger": "^6.4|^7.0|^8.0",
  4945. "symfony/process": "^6.4|^7.0|^8.0",
  4946. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  4947. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  4948. },
  4949. "type": "library",
  4950. "autoload": {
  4951. "psr-4": {
  4952. "Symfony\\Component\\HttpClient\\": ""
  4953. },
  4954. "exclude-from-classmap": [
  4955. "/Tests/"
  4956. ]
  4957. },
  4958. "notification-url": "https://packagist.org/downloads/",
  4959. "license": [
  4960. "MIT"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "Nicolas Grekas",
  4965. "email": "p@tchwork.com"
  4966. },
  4967. {
  4968. "name": "Symfony Community",
  4969. "homepage": "https://symfony.com/contributors"
  4970. }
  4971. ],
  4972. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4973. "homepage": "https://symfony.com",
  4974. "keywords": [
  4975. "http"
  4976. ],
  4977. "support": {
  4978. "source": "https://github.com/symfony/http-client/tree/v7.4.8"
  4979. },
  4980. "funding": [
  4981. {
  4982. "url": "https://symfony.com/sponsor",
  4983. "type": "custom"
  4984. },
  4985. {
  4986. "url": "https://github.com/fabpot",
  4987. "type": "github"
  4988. },
  4989. {
  4990. "url": "https://github.com/nicolas-grekas",
  4991. "type": "github"
  4992. },
  4993. {
  4994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4995. "type": "tidelift"
  4996. }
  4997. ],
  4998. "time": "2026-03-30T12:55:43+00:00"
  4999. },
  5000. {
  5001. "name": "symfony/http-client-contracts",
  5002. "version": "v3.6.0",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/symfony/http-client-contracts.git",
  5006. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  5011. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "php": ">=8.1"
  5016. },
  5017. "type": "library",
  5018. "extra": {
  5019. "thanks": {
  5020. "url": "https://github.com/symfony/contracts",
  5021. "name": "symfony/contracts"
  5022. },
  5023. "branch-alias": {
  5024. "dev-main": "3.6-dev"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Symfony\\Contracts\\HttpClient\\": ""
  5030. },
  5031. "exclude-from-classmap": [
  5032. "/Test/"
  5033. ]
  5034. },
  5035. "notification-url": "https://packagist.org/downloads/",
  5036. "license": [
  5037. "MIT"
  5038. ],
  5039. "authors": [
  5040. {
  5041. "name": "Nicolas Grekas",
  5042. "email": "p@tchwork.com"
  5043. },
  5044. {
  5045. "name": "Symfony Community",
  5046. "homepage": "https://symfony.com/contributors"
  5047. }
  5048. ],
  5049. "description": "Generic abstractions related to HTTP clients",
  5050. "homepage": "https://symfony.com",
  5051. "keywords": [
  5052. "abstractions",
  5053. "contracts",
  5054. "decoupling",
  5055. "interfaces",
  5056. "interoperability",
  5057. "standards"
  5058. ],
  5059. "support": {
  5060. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  5061. },
  5062. "funding": [
  5063. {
  5064. "url": "https://symfony.com/sponsor",
  5065. "type": "custom"
  5066. },
  5067. {
  5068. "url": "https://github.com/fabpot",
  5069. "type": "github"
  5070. },
  5071. {
  5072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5073. "type": "tidelift"
  5074. }
  5075. ],
  5076. "time": "2025-04-29T11:18:49+00:00"
  5077. },
  5078. {
  5079. "name": "symfony/http-foundation",
  5080. "version": "v7.4.8",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/symfony/http-foundation.git",
  5084. "reference": "9381209597ec66c25be154cbf2289076e64d1eab"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9381209597ec66c25be154cbf2289076e64d1eab",
  5089. "reference": "9381209597ec66c25be154cbf2289076e64d1eab",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "php": ">=8.2",
  5094. "symfony/deprecation-contracts": "^2.5|^3",
  5095. "symfony/polyfill-mbstring": "^1.1"
  5096. },
  5097. "conflict": {
  5098. "doctrine/dbal": "<3.6",
  5099. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5100. },
  5101. "require-dev": {
  5102. "doctrine/dbal": "^3.6|^4",
  5103. "predis/predis": "^1.1|^2.0",
  5104. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  5105. "symfony/clock": "^6.4|^7.0|^8.0",
  5106. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5107. "symfony/expression-language": "^6.4|^7.0|^8.0",
  5108. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5109. "symfony/mime": "^6.4|^7.0|^8.0",
  5110. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  5111. },
  5112. "type": "library",
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Symfony\\Component\\HttpFoundation\\": ""
  5116. },
  5117. "exclude-from-classmap": [
  5118. "/Tests/"
  5119. ]
  5120. },
  5121. "notification-url": "https://packagist.org/downloads/",
  5122. "license": [
  5123. "MIT"
  5124. ],
  5125. "authors": [
  5126. {
  5127. "name": "Fabien Potencier",
  5128. "email": "fabien@symfony.com"
  5129. },
  5130. {
  5131. "name": "Symfony Community",
  5132. "homepage": "https://symfony.com/contributors"
  5133. }
  5134. ],
  5135. "description": "Defines an object-oriented layer for the HTTP specification",
  5136. "homepage": "https://symfony.com",
  5137. "support": {
  5138. "source": "https://github.com/symfony/http-foundation/tree/v7.4.8"
  5139. },
  5140. "funding": [
  5141. {
  5142. "url": "https://symfony.com/sponsor",
  5143. "type": "custom"
  5144. },
  5145. {
  5146. "url": "https://github.com/fabpot",
  5147. "type": "github"
  5148. },
  5149. {
  5150. "url": "https://github.com/nicolas-grekas",
  5151. "type": "github"
  5152. },
  5153. {
  5154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5155. "type": "tidelift"
  5156. }
  5157. ],
  5158. "time": "2026-03-24T13:12:05+00:00"
  5159. },
  5160. {
  5161. "name": "symfony/http-kernel",
  5162. "version": "v7.4.8",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/symfony/http-kernel.git",
  5166. "reference": "017e76ad089bac281553389269e259e155935e1a"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/017e76ad089bac281553389269e259e155935e1a",
  5171. "reference": "017e76ad089bac281553389269e259e155935e1a",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "php": ">=8.2",
  5176. "psr/log": "^1|^2|^3",
  5177. "symfony/deprecation-contracts": "^2.5|^3",
  5178. "symfony/error-handler": "^6.4|^7.0|^8.0",
  5179. "symfony/event-dispatcher": "^7.3|^8.0",
  5180. "symfony/http-foundation": "^7.4|^8.0",
  5181. "symfony/polyfill-ctype": "^1.8"
  5182. },
  5183. "conflict": {
  5184. "symfony/browser-kit": "<6.4",
  5185. "symfony/cache": "<6.4",
  5186. "symfony/config": "<6.4",
  5187. "symfony/console": "<6.4",
  5188. "symfony/dependency-injection": "<6.4",
  5189. "symfony/doctrine-bridge": "<6.4",
  5190. "symfony/flex": "<2.10",
  5191. "symfony/form": "<6.4",
  5192. "symfony/http-client": "<6.4",
  5193. "symfony/http-client-contracts": "<2.5",
  5194. "symfony/mailer": "<6.4",
  5195. "symfony/messenger": "<6.4",
  5196. "symfony/translation": "<6.4",
  5197. "symfony/translation-contracts": "<2.5",
  5198. "symfony/twig-bridge": "<6.4",
  5199. "symfony/validator": "<6.4",
  5200. "symfony/var-dumper": "<6.4",
  5201. "twig/twig": "<3.12"
  5202. },
  5203. "provide": {
  5204. "psr/log-implementation": "1.0|2.0|3.0"
  5205. },
  5206. "require-dev": {
  5207. "psr/cache": "^1.0|^2.0|^3.0",
  5208. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  5209. "symfony/clock": "^6.4|^7.0|^8.0",
  5210. "symfony/config": "^6.4|^7.0|^8.0",
  5211. "symfony/console": "^6.4|^7.0|^8.0",
  5212. "symfony/css-selector": "^6.4|^7.0|^8.0",
  5213. "symfony/dependency-injection": "^6.4.1|^7.0.1|^8.0",
  5214. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  5215. "symfony/expression-language": "^6.4|^7.0|^8.0",
  5216. "symfony/finder": "^6.4|^7.0|^8.0",
  5217. "symfony/http-client-contracts": "^2.5|^3",
  5218. "symfony/process": "^6.4|^7.0|^8.0",
  5219. "symfony/property-access": "^7.1|^8.0",
  5220. "symfony/routing": "^6.4|^7.0|^8.0",
  5221. "symfony/serializer": "^7.1|^8.0",
  5222. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  5223. "symfony/translation": "^6.4|^7.0|^8.0",
  5224. "symfony/translation-contracts": "^2.5|^3",
  5225. "symfony/uid": "^6.4|^7.0|^8.0",
  5226. "symfony/validator": "^6.4|^7.0|^8.0",
  5227. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  5228. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  5229. "twig/twig": "^3.12"
  5230. },
  5231. "type": "library",
  5232. "autoload": {
  5233. "psr-4": {
  5234. "Symfony\\Component\\HttpKernel\\": ""
  5235. },
  5236. "exclude-from-classmap": [
  5237. "/Tests/"
  5238. ]
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "MIT"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Fabien Potencier",
  5247. "email": "fabien@symfony.com"
  5248. },
  5249. {
  5250. "name": "Symfony Community",
  5251. "homepage": "https://symfony.com/contributors"
  5252. }
  5253. ],
  5254. "description": "Provides a structured process for converting a Request into a Response",
  5255. "homepage": "https://symfony.com",
  5256. "support": {
  5257. "source": "https://github.com/symfony/http-kernel/tree/v7.4.8"
  5258. },
  5259. "funding": [
  5260. {
  5261. "url": "https://symfony.com/sponsor",
  5262. "type": "custom"
  5263. },
  5264. {
  5265. "url": "https://github.com/fabpot",
  5266. "type": "github"
  5267. },
  5268. {
  5269. "url": "https://github.com/nicolas-grekas",
  5270. "type": "github"
  5271. },
  5272. {
  5273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5274. "type": "tidelift"
  5275. }
  5276. ],
  5277. "time": "2026-03-31T20:57:01+00:00"
  5278. },
  5279. {
  5280. "name": "symfony/intl",
  5281. "version": "v7.4.8",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://github.com/symfony/intl.git",
  5285. "reference": "7cfb7792d580dea833647420afd5f2f98df8457b"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://api.github.com/repos/symfony/intl/zipball/7cfb7792d580dea833647420afd5f2f98df8457b",
  5290. "reference": "7cfb7792d580dea833647420afd5f2f98df8457b",
  5291. "shasum": ""
  5292. },
  5293. "require": {
  5294. "php": ">=8.2",
  5295. "symfony/deprecation-contracts": "^2.5|^3"
  5296. },
  5297. "conflict": {
  5298. "symfony/string": "<7.1"
  5299. },
  5300. "require-dev": {
  5301. "symfony/filesystem": "^6.4|^7.0|^8.0",
  5302. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  5303. },
  5304. "type": "library",
  5305. "autoload": {
  5306. "psr-4": {
  5307. "Symfony\\Component\\Intl\\": ""
  5308. },
  5309. "exclude-from-classmap": [
  5310. "/Tests/",
  5311. "/Resources/data/"
  5312. ]
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "MIT"
  5317. ],
  5318. "authors": [
  5319. {
  5320. "name": "Bernhard Schussek",
  5321. "email": "bschussek@gmail.com"
  5322. },
  5323. {
  5324. "name": "Eriksen Costa",
  5325. "email": "eriksen.costa@infranology.com.br"
  5326. },
  5327. {
  5328. "name": "Igor Wiedler",
  5329. "email": "igor@wiedler.ch"
  5330. },
  5331. {
  5332. "name": "Symfony Community",
  5333. "homepage": "https://symfony.com/contributors"
  5334. }
  5335. ],
  5336. "description": "Provides access to the localization data of the ICU library",
  5337. "homepage": "https://symfony.com",
  5338. "keywords": [
  5339. "i18n",
  5340. "icu",
  5341. "internationalization",
  5342. "intl",
  5343. "l10n",
  5344. "localization"
  5345. ],
  5346. "support": {
  5347. "source": "https://github.com/symfony/intl/tree/v7.4.8"
  5348. },
  5349. "funding": [
  5350. {
  5351. "url": "https://symfony.com/sponsor",
  5352. "type": "custom"
  5353. },
  5354. {
  5355. "url": "https://github.com/fabpot",
  5356. "type": "github"
  5357. },
  5358. {
  5359. "url": "https://github.com/nicolas-grekas",
  5360. "type": "github"
  5361. },
  5362. {
  5363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5364. "type": "tidelift"
  5365. }
  5366. ],
  5367. "time": "2026-03-30T12:55:43+00:00"
  5368. },
  5369. {
  5370. "name": "symfony/mailer",
  5371. "version": "v7.4.8",
  5372. "source": {
  5373. "type": "git",
  5374. "url": "https://github.com/symfony/mailer.git",
  5375. "reference": "f6ea532250b476bfc1b56699b388a1bdbf168f62"
  5376. },
  5377. "dist": {
  5378. "type": "zip",
  5379. "url": "https://api.github.com/repos/symfony/mailer/zipball/f6ea532250b476bfc1b56699b388a1bdbf168f62",
  5380. "reference": "f6ea532250b476bfc1b56699b388a1bdbf168f62",
  5381. "shasum": ""
  5382. },
  5383. "require": {
  5384. "egulias/email-validator": "^2.1.10|^3|^4",
  5385. "php": ">=8.2",
  5386. "psr/event-dispatcher": "^1",
  5387. "psr/log": "^1|^2|^3",
  5388. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  5389. "symfony/mime": "^7.2|^8.0",
  5390. "symfony/service-contracts": "^2.5|^3"
  5391. },
  5392. "conflict": {
  5393. "symfony/http-client-contracts": "<2.5",
  5394. "symfony/http-kernel": "<6.4",
  5395. "symfony/messenger": "<6.4",
  5396. "symfony/mime": "<6.4",
  5397. "symfony/twig-bridge": "<6.4"
  5398. },
  5399. "require-dev": {
  5400. "symfony/console": "^6.4|^7.0|^8.0",
  5401. "symfony/http-client": "^6.4|^7.0|^8.0",
  5402. "symfony/messenger": "^6.4|^7.0|^8.0",
  5403. "symfony/twig-bridge": "^6.4|^7.0|^8.0"
  5404. },
  5405. "type": "library",
  5406. "autoload": {
  5407. "psr-4": {
  5408. "Symfony\\Component\\Mailer\\": ""
  5409. },
  5410. "exclude-from-classmap": [
  5411. "/Tests/"
  5412. ]
  5413. },
  5414. "notification-url": "https://packagist.org/downloads/",
  5415. "license": [
  5416. "MIT"
  5417. ],
  5418. "authors": [
  5419. {
  5420. "name": "Fabien Potencier",
  5421. "email": "fabien@symfony.com"
  5422. },
  5423. {
  5424. "name": "Symfony Community",
  5425. "homepage": "https://symfony.com/contributors"
  5426. }
  5427. ],
  5428. "description": "Helps sending emails",
  5429. "homepage": "https://symfony.com",
  5430. "support": {
  5431. "source": "https://github.com/symfony/mailer/tree/v7.4.8"
  5432. },
  5433. "funding": [
  5434. {
  5435. "url": "https://symfony.com/sponsor",
  5436. "type": "custom"
  5437. },
  5438. {
  5439. "url": "https://github.com/fabpot",
  5440. "type": "github"
  5441. },
  5442. {
  5443. "url": "https://github.com/nicolas-grekas",
  5444. "type": "github"
  5445. },
  5446. {
  5447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5448. "type": "tidelift"
  5449. }
  5450. ],
  5451. "time": "2026-03-24T13:12:05+00:00"
  5452. },
  5453. {
  5454. "name": "symfony/messenger",
  5455. "version": "v7.4.8",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/symfony/messenger.git",
  5459. "reference": "ddf5ab29bc0329ece30e16f01c86abb6241e92d8"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/symfony/messenger/zipball/ddf5ab29bc0329ece30e16f01c86abb6241e92d8",
  5464. "reference": "ddf5ab29bc0329ece30e16f01c86abb6241e92d8",
  5465. "shasum": ""
  5466. },
  5467. "require": {
  5468. "php": ">=8.2",
  5469. "psr/log": "^1|^2|^3",
  5470. "symfony/clock": "^6.4|^7.0|^8.0",
  5471. "symfony/deprecation-contracts": "^2.5|^3"
  5472. },
  5473. "conflict": {
  5474. "symfony/console": "<7.2",
  5475. "symfony/event-dispatcher": "<6.4",
  5476. "symfony/event-dispatcher-contracts": "<2.5",
  5477. "symfony/framework-bundle": "<6.4",
  5478. "symfony/http-kernel": "<7.3",
  5479. "symfony/lock": "<7.4",
  5480. "symfony/serializer": "<6.4.32|>=7.3,<7.3.10|>=7.4,<7.4.4|>=8.0,<8.0.4"
  5481. },
  5482. "require-dev": {
  5483. "psr/cache": "^1.0|^2.0|^3.0",
  5484. "symfony/console": "^7.2|^8.0",
  5485. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5486. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  5487. "symfony/http-kernel": "^7.3|^8.0",
  5488. "symfony/lock": "^7.4|^8.0",
  5489. "symfony/process": "^6.4|^7.0|^8.0",
  5490. "symfony/property-access": "^6.4|^7.0|^8.0",
  5491. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  5492. "symfony/routing": "^6.4|^7.0|^8.0",
  5493. "symfony/serializer": "^6.4.32|~7.3.10|^7.4.4|^8.0.4",
  5494. "symfony/service-contracts": "^2.5|^3",
  5495. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  5496. "symfony/validator": "^6.4|^7.0|^8.0",
  5497. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  5498. },
  5499. "type": "library",
  5500. "autoload": {
  5501. "psr-4": {
  5502. "Symfony\\Component\\Messenger\\": ""
  5503. },
  5504. "exclude-from-classmap": [
  5505. "/Tests/"
  5506. ]
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Samuel Roze",
  5515. "email": "samuel.roze@gmail.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5523. "homepage": "https://symfony.com",
  5524. "support": {
  5525. "source": "https://github.com/symfony/messenger/tree/v7.4.8"
  5526. },
  5527. "funding": [
  5528. {
  5529. "url": "https://symfony.com/sponsor",
  5530. "type": "custom"
  5531. },
  5532. {
  5533. "url": "https://github.com/fabpot",
  5534. "type": "github"
  5535. },
  5536. {
  5537. "url": "https://github.com/nicolas-grekas",
  5538. "type": "github"
  5539. },
  5540. {
  5541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5542. "type": "tidelift"
  5543. }
  5544. ],
  5545. "time": "2026-03-30T12:55:43+00:00"
  5546. },
  5547. {
  5548. "name": "symfony/mime",
  5549. "version": "v7.4.8",
  5550. "source": {
  5551. "type": "git",
  5552. "url": "https://github.com/symfony/mime.git",
  5553. "reference": "6df02f99998081032da3407a8d6c4e1dcb5d4379"
  5554. },
  5555. "dist": {
  5556. "type": "zip",
  5557. "url": "https://api.github.com/repos/symfony/mime/zipball/6df02f99998081032da3407a8d6c4e1dcb5d4379",
  5558. "reference": "6df02f99998081032da3407a8d6c4e1dcb5d4379",
  5559. "shasum": ""
  5560. },
  5561. "require": {
  5562. "php": ">=8.2",
  5563. "symfony/deprecation-contracts": "^2.5|^3",
  5564. "symfony/polyfill-intl-idn": "^1.10",
  5565. "symfony/polyfill-mbstring": "^1.0"
  5566. },
  5567. "conflict": {
  5568. "egulias/email-validator": "~3.0.0",
  5569. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  5570. "phpdocumentor/type-resolver": "<1.5.1",
  5571. "symfony/mailer": "<6.4",
  5572. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5573. },
  5574. "require-dev": {
  5575. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5576. "league/html-to-markdown": "^5.0",
  5577. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  5578. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5579. "symfony/process": "^6.4|^7.0|^8.0",
  5580. "symfony/property-access": "^6.4|^7.0|^8.0",
  5581. "symfony/property-info": "^6.4|^7.0|^8.0",
  5582. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  5583. },
  5584. "type": "library",
  5585. "autoload": {
  5586. "psr-4": {
  5587. "Symfony\\Component\\Mime\\": ""
  5588. },
  5589. "exclude-from-classmap": [
  5590. "/Tests/"
  5591. ]
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Fabien Potencier",
  5600. "email": "fabien@symfony.com"
  5601. },
  5602. {
  5603. "name": "Symfony Community",
  5604. "homepage": "https://symfony.com/contributors"
  5605. }
  5606. ],
  5607. "description": "Allows manipulating MIME messages",
  5608. "homepage": "https://symfony.com",
  5609. "keywords": [
  5610. "mime",
  5611. "mime-type"
  5612. ],
  5613. "support": {
  5614. "source": "https://github.com/symfony/mime/tree/v7.4.8"
  5615. },
  5616. "funding": [
  5617. {
  5618. "url": "https://symfony.com/sponsor",
  5619. "type": "custom"
  5620. },
  5621. {
  5622. "url": "https://github.com/fabpot",
  5623. "type": "github"
  5624. },
  5625. {
  5626. "url": "https://github.com/nicolas-grekas",
  5627. "type": "github"
  5628. },
  5629. {
  5630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5631. "type": "tidelift"
  5632. }
  5633. ],
  5634. "time": "2026-03-30T14:11:46+00:00"
  5635. },
  5636. {
  5637. "name": "symfony/monolog-bridge",
  5638. "version": "v7.4.8",
  5639. "source": {
  5640. "type": "git",
  5641. "url": "https://github.com/symfony/monolog-bridge.git",
  5642. "reference": "b52aeb44645a9a84a1795b973cc5c77a76df0720"
  5643. },
  5644. "dist": {
  5645. "type": "zip",
  5646. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/b52aeb44645a9a84a1795b973cc5c77a76df0720",
  5647. "reference": "b52aeb44645a9a84a1795b973cc5c77a76df0720",
  5648. "shasum": ""
  5649. },
  5650. "require": {
  5651. "monolog/monolog": "^3",
  5652. "php": ">=8.2",
  5653. "symfony/deprecation-contracts": "^2.5|^3",
  5654. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5655. "symfony/service-contracts": "^2.5|^3"
  5656. },
  5657. "conflict": {
  5658. "symfony/console": "<6.4",
  5659. "symfony/http-foundation": "<6.4",
  5660. "symfony/security-core": "<6.4"
  5661. },
  5662. "require-dev": {
  5663. "symfony/console": "^6.4|^7.0|^8.0",
  5664. "symfony/http-client": "^6.4|^7.0|^8.0",
  5665. "symfony/mailer": "^6.4|^7.0|^8.0",
  5666. "symfony/messenger": "^6.4|^7.0|^8.0",
  5667. "symfony/mime": "^6.4|^7.0|^8.0",
  5668. "symfony/security-core": "^6.4|^7.0|^8.0",
  5669. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  5670. },
  5671. "type": "symfony-bridge",
  5672. "autoload": {
  5673. "psr-4": {
  5674. "Symfony\\Bridge\\Monolog\\": ""
  5675. },
  5676. "exclude-from-classmap": [
  5677. "/Tests/"
  5678. ]
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Fabien Potencier",
  5687. "email": "fabien@symfony.com"
  5688. },
  5689. {
  5690. "name": "Symfony Community",
  5691. "homepage": "https://symfony.com/contributors"
  5692. }
  5693. ],
  5694. "description": "Provides integration for Monolog with various Symfony components",
  5695. "homepage": "https://symfony.com",
  5696. "support": {
  5697. "source": "https://github.com/symfony/monolog-bridge/tree/v7.4.8"
  5698. },
  5699. "funding": [
  5700. {
  5701. "url": "https://symfony.com/sponsor",
  5702. "type": "custom"
  5703. },
  5704. {
  5705. "url": "https://github.com/fabpot",
  5706. "type": "github"
  5707. },
  5708. {
  5709. "url": "https://github.com/nicolas-grekas",
  5710. "type": "github"
  5711. },
  5712. {
  5713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5714. "type": "tidelift"
  5715. }
  5716. ],
  5717. "time": "2026-03-30T13:54:39+00:00"
  5718. },
  5719. {
  5720. "name": "symfony/monolog-bundle",
  5721. "version": "v3.11.2",
  5722. "source": {
  5723. "type": "git",
  5724. "url": "https://github.com/symfony/monolog-bundle.git",
  5725. "reference": "d87468010570b2ec766152184918ee8d267c7411"
  5726. },
  5727. "dist": {
  5728. "type": "zip",
  5729. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/d87468010570b2ec766152184918ee8d267c7411",
  5730. "reference": "d87468010570b2ec766152184918ee8d267c7411",
  5731. "shasum": ""
  5732. },
  5733. "require": {
  5734. "composer-runtime-api": "^2.0",
  5735. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5736. "php": ">=8.1",
  5737. "symfony/config": "^6.4 || ^7.0",
  5738. "symfony/dependency-injection": "^6.4 || ^7.0",
  5739. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  5740. "symfony/http-kernel": "^6.4 || ^7.0",
  5741. "symfony/monolog-bridge": "^6.4 || ^7.0",
  5742. "symfony/polyfill-php84": "^1.30"
  5743. },
  5744. "require-dev": {
  5745. "symfony/console": "^6.4 || ^7.0",
  5746. "symfony/phpunit-bridge": "^7.3.3",
  5747. "symfony/yaml": "^6.4 || ^7.0"
  5748. },
  5749. "type": "symfony-bundle",
  5750. "autoload": {
  5751. "psr-4": {
  5752. "Symfony\\Bundle\\MonologBundle\\": "src"
  5753. }
  5754. },
  5755. "notification-url": "https://packagist.org/downloads/",
  5756. "license": [
  5757. "MIT"
  5758. ],
  5759. "authors": [
  5760. {
  5761. "name": "Fabien Potencier",
  5762. "email": "fabien@symfony.com"
  5763. },
  5764. {
  5765. "name": "Symfony Community",
  5766. "homepage": "https://symfony.com/contributors"
  5767. }
  5768. ],
  5769. "description": "Symfony MonologBundle",
  5770. "homepage": "https://symfony.com",
  5771. "keywords": [
  5772. "log",
  5773. "logging"
  5774. ],
  5775. "support": {
  5776. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5777. "source": "https://github.com/symfony/monolog-bundle/tree/v3.11.2"
  5778. },
  5779. "funding": [
  5780. {
  5781. "url": "https://symfony.com/sponsor",
  5782. "type": "custom"
  5783. },
  5784. {
  5785. "url": "https://github.com/fabpot",
  5786. "type": "github"
  5787. },
  5788. {
  5789. "url": "https://github.com/nicolas-grekas",
  5790. "type": "github"
  5791. },
  5792. {
  5793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5794. "type": "tidelift"
  5795. }
  5796. ],
  5797. "time": "2026-04-02T18:23:01+00:00"
  5798. },
  5799. {
  5800. "name": "symfony/notifier",
  5801. "version": "v7.4.8",
  5802. "source": {
  5803. "type": "git",
  5804. "url": "https://github.com/symfony/notifier.git",
  5805. "reference": "cc04bd417f84777bf09c14bd7dcb00010c9f1e52"
  5806. },
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://api.github.com/repos/symfony/notifier/zipball/cc04bd417f84777bf09c14bd7dcb00010c9f1e52",
  5810. "reference": "cc04bd417f84777bf09c14bd7dcb00010c9f1e52",
  5811. "shasum": ""
  5812. },
  5813. "require": {
  5814. "php": ">=8.2",
  5815. "psr/log": "^1|^2|^3"
  5816. },
  5817. "conflict": {
  5818. "symfony/event-dispatcher": "<6.4",
  5819. "symfony/event-dispatcher-contracts": "<2.5",
  5820. "symfony/http-client-contracts": "<2.5",
  5821. "symfony/http-kernel": "<6.4"
  5822. },
  5823. "require-dev": {
  5824. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  5825. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5826. "symfony/http-client": "^6.4|^7.0|^8.0",
  5827. "symfony/http-client-contracts": "^2.5|^3",
  5828. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  5829. "symfony/messenger": "^6.4|^7.0|^8.0"
  5830. },
  5831. "type": "library",
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Symfony\\Component\\Notifier\\": ""
  5835. },
  5836. "exclude-from-classmap": [
  5837. "/Tests/"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Fabien Potencier",
  5847. "email": "fabien@symfony.com"
  5848. },
  5849. {
  5850. "name": "Symfony Community",
  5851. "homepage": "https://symfony.com/contributors"
  5852. }
  5853. ],
  5854. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5855. "homepage": "https://symfony.com",
  5856. "keywords": [
  5857. "notification",
  5858. "notifier"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/symfony/notifier/tree/v7.4.8"
  5862. },
  5863. "funding": [
  5864. {
  5865. "url": "https://symfony.com/sponsor",
  5866. "type": "custom"
  5867. },
  5868. {
  5869. "url": "https://github.com/fabpot",
  5870. "type": "github"
  5871. },
  5872. {
  5873. "url": "https://github.com/nicolas-grekas",
  5874. "type": "github"
  5875. },
  5876. {
  5877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5878. "type": "tidelift"
  5879. }
  5880. ],
  5881. "time": "2026-03-24T13:12:05+00:00"
  5882. },
  5883. {
  5884. "name": "symfony/options-resolver",
  5885. "version": "v7.4.8",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/symfony/options-resolver.git",
  5889. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  5894. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  5895. "shasum": ""
  5896. },
  5897. "require": {
  5898. "php": ">=8.2",
  5899. "symfony/deprecation-contracts": "^2.5|^3"
  5900. },
  5901. "type": "library",
  5902. "autoload": {
  5903. "psr-4": {
  5904. "Symfony\\Component\\OptionsResolver\\": ""
  5905. },
  5906. "exclude-from-classmap": [
  5907. "/Tests/"
  5908. ]
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Fabien Potencier",
  5917. "email": "fabien@symfony.com"
  5918. },
  5919. {
  5920. "name": "Symfony Community",
  5921. "homepage": "https://symfony.com/contributors"
  5922. }
  5923. ],
  5924. "description": "Provides an improved replacement for the array_replace PHP function",
  5925. "homepage": "https://symfony.com",
  5926. "keywords": [
  5927. "config",
  5928. "configuration",
  5929. "options"
  5930. ],
  5931. "support": {
  5932. "source": "https://github.com/symfony/options-resolver/tree/v7.4.8"
  5933. },
  5934. "funding": [
  5935. {
  5936. "url": "https://symfony.com/sponsor",
  5937. "type": "custom"
  5938. },
  5939. {
  5940. "url": "https://github.com/fabpot",
  5941. "type": "github"
  5942. },
  5943. {
  5944. "url": "https://github.com/nicolas-grekas",
  5945. "type": "github"
  5946. },
  5947. {
  5948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5949. "type": "tidelift"
  5950. }
  5951. ],
  5952. "time": "2026-03-24T13:12:05+00:00"
  5953. },
  5954. {
  5955. "name": "symfony/password-hasher",
  5956. "version": "v7.4.8",
  5957. "source": {
  5958. "type": "git",
  5959. "url": "https://github.com/symfony/password-hasher.git",
  5960. "reference": "18a7d92126c95962f7efbcc9e421ba710a366847"
  5961. },
  5962. "dist": {
  5963. "type": "zip",
  5964. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/18a7d92126c95962f7efbcc9e421ba710a366847",
  5965. "reference": "18a7d92126c95962f7efbcc9e421ba710a366847",
  5966. "shasum": ""
  5967. },
  5968. "require": {
  5969. "php": ">=8.2"
  5970. },
  5971. "conflict": {
  5972. "symfony/security-core": "<6.4"
  5973. },
  5974. "require-dev": {
  5975. "symfony/console": "^6.4|^7.0|^8.0",
  5976. "symfony/security-core": "^6.4|^7.0|^8.0"
  5977. },
  5978. "type": "library",
  5979. "autoload": {
  5980. "psr-4": {
  5981. "Symfony\\Component\\PasswordHasher\\": ""
  5982. },
  5983. "exclude-from-classmap": [
  5984. "/Tests/"
  5985. ]
  5986. },
  5987. "notification-url": "https://packagist.org/downloads/",
  5988. "license": [
  5989. "MIT"
  5990. ],
  5991. "authors": [
  5992. {
  5993. "name": "Robin Chalas",
  5994. "email": "robin.chalas@gmail.com"
  5995. },
  5996. {
  5997. "name": "Symfony Community",
  5998. "homepage": "https://symfony.com/contributors"
  5999. }
  6000. ],
  6001. "description": "Provides password hashing utilities",
  6002. "homepage": "https://symfony.com",
  6003. "keywords": [
  6004. "hashing",
  6005. "password"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/symfony/password-hasher/tree/v7.4.8"
  6009. },
  6010. "funding": [
  6011. {
  6012. "url": "https://symfony.com/sponsor",
  6013. "type": "custom"
  6014. },
  6015. {
  6016. "url": "https://github.com/fabpot",
  6017. "type": "github"
  6018. },
  6019. {
  6020. "url": "https://github.com/nicolas-grekas",
  6021. "type": "github"
  6022. },
  6023. {
  6024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6025. "type": "tidelift"
  6026. }
  6027. ],
  6028. "time": "2026-03-24T13:12:05+00:00"
  6029. },
  6030. {
  6031. "name": "symfony/polyfill-intl-grapheme",
  6032. "version": "v1.33.0",
  6033. "source": {
  6034. "type": "git",
  6035. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6036. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6037. },
  6038. "dist": {
  6039. "type": "zip",
  6040. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6041. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6042. "shasum": ""
  6043. },
  6044. "require": {
  6045. "php": ">=7.2"
  6046. },
  6047. "suggest": {
  6048. "ext-intl": "For best performance"
  6049. },
  6050. "type": "library",
  6051. "extra": {
  6052. "thanks": {
  6053. "url": "https://github.com/symfony/polyfill",
  6054. "name": "symfony/polyfill"
  6055. }
  6056. },
  6057. "autoload": {
  6058. "files": [
  6059. "bootstrap.php"
  6060. ],
  6061. "psr-4": {
  6062. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6063. }
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Nicolas Grekas",
  6072. "email": "p@tchwork.com"
  6073. },
  6074. {
  6075. "name": "Symfony Community",
  6076. "homepage": "https://symfony.com/contributors"
  6077. }
  6078. ],
  6079. "description": "Symfony polyfill for intl's grapheme_* functions",
  6080. "homepage": "https://symfony.com",
  6081. "keywords": [
  6082. "compatibility",
  6083. "grapheme",
  6084. "intl",
  6085. "polyfill",
  6086. "portable",
  6087. "shim"
  6088. ],
  6089. "support": {
  6090. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6091. },
  6092. "funding": [
  6093. {
  6094. "url": "https://symfony.com/sponsor",
  6095. "type": "custom"
  6096. },
  6097. {
  6098. "url": "https://github.com/fabpot",
  6099. "type": "github"
  6100. },
  6101. {
  6102. "url": "https://github.com/nicolas-grekas",
  6103. "type": "github"
  6104. },
  6105. {
  6106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6107. "type": "tidelift"
  6108. }
  6109. ],
  6110. "time": "2025-06-27T09:58:17+00:00"
  6111. },
  6112. {
  6113. "name": "symfony/polyfill-intl-icu",
  6114. "version": "v1.33.0",
  6115. "source": {
  6116. "type": "git",
  6117. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6118. "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c"
  6119. },
  6120. "dist": {
  6121. "type": "zip",
  6122. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c",
  6123. "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c",
  6124. "shasum": ""
  6125. },
  6126. "require": {
  6127. "php": ">=7.2"
  6128. },
  6129. "suggest": {
  6130. "ext-intl": "For best performance and support of other locales than \"en\""
  6131. },
  6132. "type": "library",
  6133. "extra": {
  6134. "thanks": {
  6135. "url": "https://github.com/symfony/polyfill",
  6136. "name": "symfony/polyfill"
  6137. }
  6138. },
  6139. "autoload": {
  6140. "files": [
  6141. "bootstrap.php"
  6142. ],
  6143. "psr-4": {
  6144. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6145. },
  6146. "classmap": [
  6147. "Resources/stubs"
  6148. ],
  6149. "exclude-from-classmap": [
  6150. "/Tests/"
  6151. ]
  6152. },
  6153. "notification-url": "https://packagist.org/downloads/",
  6154. "license": [
  6155. "MIT"
  6156. ],
  6157. "authors": [
  6158. {
  6159. "name": "Nicolas Grekas",
  6160. "email": "p@tchwork.com"
  6161. },
  6162. {
  6163. "name": "Symfony Community",
  6164. "homepage": "https://symfony.com/contributors"
  6165. }
  6166. ],
  6167. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6168. "homepage": "https://symfony.com",
  6169. "keywords": [
  6170. "compatibility",
  6171. "icu",
  6172. "intl",
  6173. "polyfill",
  6174. "portable",
  6175. "shim"
  6176. ],
  6177. "support": {
  6178. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.33.0"
  6179. },
  6180. "funding": [
  6181. {
  6182. "url": "https://symfony.com/sponsor",
  6183. "type": "custom"
  6184. },
  6185. {
  6186. "url": "https://github.com/fabpot",
  6187. "type": "github"
  6188. },
  6189. {
  6190. "url": "https://github.com/nicolas-grekas",
  6191. "type": "github"
  6192. },
  6193. {
  6194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6195. "type": "tidelift"
  6196. }
  6197. ],
  6198. "time": "2025-06-20T22:24:30+00:00"
  6199. },
  6200. {
  6201. "name": "symfony/polyfill-intl-idn",
  6202. "version": "v1.33.0",
  6203. "source": {
  6204. "type": "git",
  6205. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6206. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6207. },
  6208. "dist": {
  6209. "type": "zip",
  6210. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6211. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6212. "shasum": ""
  6213. },
  6214. "require": {
  6215. "php": ">=7.2",
  6216. "symfony/polyfill-intl-normalizer": "^1.10"
  6217. },
  6218. "suggest": {
  6219. "ext-intl": "For best performance"
  6220. },
  6221. "type": "library",
  6222. "extra": {
  6223. "thanks": {
  6224. "url": "https://github.com/symfony/polyfill",
  6225. "name": "symfony/polyfill"
  6226. }
  6227. },
  6228. "autoload": {
  6229. "files": [
  6230. "bootstrap.php"
  6231. ],
  6232. "psr-4": {
  6233. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Laurent Bassin",
  6243. "email": "laurent@bassin.info"
  6244. },
  6245. {
  6246. "name": "Trevor Rowbotham",
  6247. "email": "trevor.rowbotham@pm.me"
  6248. },
  6249. {
  6250. "name": "Symfony Community",
  6251. "homepage": "https://symfony.com/contributors"
  6252. }
  6253. ],
  6254. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6255. "homepage": "https://symfony.com",
  6256. "keywords": [
  6257. "compatibility",
  6258. "idn",
  6259. "intl",
  6260. "polyfill",
  6261. "portable",
  6262. "shim"
  6263. ],
  6264. "support": {
  6265. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  6266. },
  6267. "funding": [
  6268. {
  6269. "url": "https://symfony.com/sponsor",
  6270. "type": "custom"
  6271. },
  6272. {
  6273. "url": "https://github.com/fabpot",
  6274. "type": "github"
  6275. },
  6276. {
  6277. "url": "https://github.com/nicolas-grekas",
  6278. "type": "github"
  6279. },
  6280. {
  6281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6282. "type": "tidelift"
  6283. }
  6284. ],
  6285. "time": "2024-09-10T14:38:51+00:00"
  6286. },
  6287. {
  6288. "name": "symfony/polyfill-intl-normalizer",
  6289. "version": "v1.33.0",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6293. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6298. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "php": ">=7.2"
  6303. },
  6304. "suggest": {
  6305. "ext-intl": "For best performance"
  6306. },
  6307. "type": "library",
  6308. "extra": {
  6309. "thanks": {
  6310. "url": "https://github.com/symfony/polyfill",
  6311. "name": "symfony/polyfill"
  6312. }
  6313. },
  6314. "autoload": {
  6315. "files": [
  6316. "bootstrap.php"
  6317. ],
  6318. "psr-4": {
  6319. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6320. },
  6321. "classmap": [
  6322. "Resources/stubs"
  6323. ]
  6324. },
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "MIT"
  6328. ],
  6329. "authors": [
  6330. {
  6331. "name": "Nicolas Grekas",
  6332. "email": "p@tchwork.com"
  6333. },
  6334. {
  6335. "name": "Symfony Community",
  6336. "homepage": "https://symfony.com/contributors"
  6337. }
  6338. ],
  6339. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6340. "homepage": "https://symfony.com",
  6341. "keywords": [
  6342. "compatibility",
  6343. "intl",
  6344. "normalizer",
  6345. "polyfill",
  6346. "portable",
  6347. "shim"
  6348. ],
  6349. "support": {
  6350. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  6351. },
  6352. "funding": [
  6353. {
  6354. "url": "https://symfony.com/sponsor",
  6355. "type": "custom"
  6356. },
  6357. {
  6358. "url": "https://github.com/fabpot",
  6359. "type": "github"
  6360. },
  6361. {
  6362. "url": "https://github.com/nicolas-grekas",
  6363. "type": "github"
  6364. },
  6365. {
  6366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6367. "type": "tidelift"
  6368. }
  6369. ],
  6370. "time": "2024-09-09T11:45:10+00:00"
  6371. },
  6372. {
  6373. "name": "symfony/polyfill-mbstring",
  6374. "version": "v1.33.0",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6378. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6383. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6384. "shasum": ""
  6385. },
  6386. "require": {
  6387. "ext-iconv": "*",
  6388. "php": ">=7.2"
  6389. },
  6390. "provide": {
  6391. "ext-mbstring": "*"
  6392. },
  6393. "suggest": {
  6394. "ext-mbstring": "For best performance"
  6395. },
  6396. "type": "library",
  6397. "extra": {
  6398. "thanks": {
  6399. "url": "https://github.com/symfony/polyfill",
  6400. "name": "symfony/polyfill"
  6401. }
  6402. },
  6403. "autoload": {
  6404. "files": [
  6405. "bootstrap.php"
  6406. ],
  6407. "psr-4": {
  6408. "Symfony\\Polyfill\\Mbstring\\": ""
  6409. }
  6410. },
  6411. "notification-url": "https://packagist.org/downloads/",
  6412. "license": [
  6413. "MIT"
  6414. ],
  6415. "authors": [
  6416. {
  6417. "name": "Nicolas Grekas",
  6418. "email": "p@tchwork.com"
  6419. },
  6420. {
  6421. "name": "Symfony Community",
  6422. "homepage": "https://symfony.com/contributors"
  6423. }
  6424. ],
  6425. "description": "Symfony polyfill for the Mbstring extension",
  6426. "homepage": "https://symfony.com",
  6427. "keywords": [
  6428. "compatibility",
  6429. "mbstring",
  6430. "polyfill",
  6431. "portable",
  6432. "shim"
  6433. ],
  6434. "support": {
  6435. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  6436. },
  6437. "funding": [
  6438. {
  6439. "url": "https://symfony.com/sponsor",
  6440. "type": "custom"
  6441. },
  6442. {
  6443. "url": "https://github.com/fabpot",
  6444. "type": "github"
  6445. },
  6446. {
  6447. "url": "https://github.com/nicolas-grekas",
  6448. "type": "github"
  6449. },
  6450. {
  6451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6452. "type": "tidelift"
  6453. }
  6454. ],
  6455. "time": "2024-12-23T08:48:59+00:00"
  6456. },
  6457. {
  6458. "name": "symfony/polyfill-php83",
  6459. "version": "v1.33.0",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/symfony/polyfill-php83.git",
  6463. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  6468. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  6469. "shasum": ""
  6470. },
  6471. "require": {
  6472. "php": ">=7.2"
  6473. },
  6474. "type": "library",
  6475. "extra": {
  6476. "thanks": {
  6477. "url": "https://github.com/symfony/polyfill",
  6478. "name": "symfony/polyfill"
  6479. }
  6480. },
  6481. "autoload": {
  6482. "files": [
  6483. "bootstrap.php"
  6484. ],
  6485. "psr-4": {
  6486. "Symfony\\Polyfill\\Php83\\": ""
  6487. },
  6488. "classmap": [
  6489. "Resources/stubs"
  6490. ]
  6491. },
  6492. "notification-url": "https://packagist.org/downloads/",
  6493. "license": [
  6494. "MIT"
  6495. ],
  6496. "authors": [
  6497. {
  6498. "name": "Nicolas Grekas",
  6499. "email": "p@tchwork.com"
  6500. },
  6501. {
  6502. "name": "Symfony Community",
  6503. "homepage": "https://symfony.com/contributors"
  6504. }
  6505. ],
  6506. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6507. "homepage": "https://symfony.com",
  6508. "keywords": [
  6509. "compatibility",
  6510. "polyfill",
  6511. "portable",
  6512. "shim"
  6513. ],
  6514. "support": {
  6515. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  6516. },
  6517. "funding": [
  6518. {
  6519. "url": "https://symfony.com/sponsor",
  6520. "type": "custom"
  6521. },
  6522. {
  6523. "url": "https://github.com/fabpot",
  6524. "type": "github"
  6525. },
  6526. {
  6527. "url": "https://github.com/nicolas-grekas",
  6528. "type": "github"
  6529. },
  6530. {
  6531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6532. "type": "tidelift"
  6533. }
  6534. ],
  6535. "time": "2025-07-08T02:45:35+00:00"
  6536. },
  6537. {
  6538. "name": "symfony/polyfill-php84",
  6539. "version": "v1.33.0",
  6540. "source": {
  6541. "type": "git",
  6542. "url": "https://github.com/symfony/polyfill-php84.git",
  6543. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  6544. },
  6545. "dist": {
  6546. "type": "zip",
  6547. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  6548. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  6549. "shasum": ""
  6550. },
  6551. "require": {
  6552. "php": ">=7.2"
  6553. },
  6554. "type": "library",
  6555. "extra": {
  6556. "thanks": {
  6557. "url": "https://github.com/symfony/polyfill",
  6558. "name": "symfony/polyfill"
  6559. }
  6560. },
  6561. "autoload": {
  6562. "files": [
  6563. "bootstrap.php"
  6564. ],
  6565. "psr-4": {
  6566. "Symfony\\Polyfill\\Php84\\": ""
  6567. },
  6568. "classmap": [
  6569. "Resources/stubs"
  6570. ]
  6571. },
  6572. "notification-url": "https://packagist.org/downloads/",
  6573. "license": [
  6574. "MIT"
  6575. ],
  6576. "authors": [
  6577. {
  6578. "name": "Nicolas Grekas",
  6579. "email": "p@tchwork.com"
  6580. },
  6581. {
  6582. "name": "Symfony Community",
  6583. "homepage": "https://symfony.com/contributors"
  6584. }
  6585. ],
  6586. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  6587. "homepage": "https://symfony.com",
  6588. "keywords": [
  6589. "compatibility",
  6590. "polyfill",
  6591. "portable",
  6592. "shim"
  6593. ],
  6594. "support": {
  6595. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  6596. },
  6597. "funding": [
  6598. {
  6599. "url": "https://symfony.com/sponsor",
  6600. "type": "custom"
  6601. },
  6602. {
  6603. "url": "https://github.com/fabpot",
  6604. "type": "github"
  6605. },
  6606. {
  6607. "url": "https://github.com/nicolas-grekas",
  6608. "type": "github"
  6609. },
  6610. {
  6611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6612. "type": "tidelift"
  6613. }
  6614. ],
  6615. "time": "2025-06-24T13:30:11+00:00"
  6616. },
  6617. {
  6618. "name": "symfony/polyfill-php85",
  6619. "version": "v1.33.0",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://github.com/symfony/polyfill-php85.git",
  6623. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  6628. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  6629. "shasum": ""
  6630. },
  6631. "require": {
  6632. "php": ">=7.2"
  6633. },
  6634. "type": "library",
  6635. "extra": {
  6636. "thanks": {
  6637. "url": "https://github.com/symfony/polyfill",
  6638. "name": "symfony/polyfill"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "files": [
  6643. "bootstrap.php"
  6644. ],
  6645. "psr-4": {
  6646. "Symfony\\Polyfill\\Php85\\": ""
  6647. },
  6648. "classmap": [
  6649. "Resources/stubs"
  6650. ]
  6651. },
  6652. "notification-url": "https://packagist.org/downloads/",
  6653. "license": [
  6654. "MIT"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Nicolas Grekas",
  6659. "email": "p@tchwork.com"
  6660. },
  6661. {
  6662. "name": "Symfony Community",
  6663. "homepage": "https://symfony.com/contributors"
  6664. }
  6665. ],
  6666. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  6667. "homepage": "https://symfony.com",
  6668. "keywords": [
  6669. "compatibility",
  6670. "polyfill",
  6671. "portable",
  6672. "shim"
  6673. ],
  6674. "support": {
  6675. "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://github.com/nicolas-grekas",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6692. "type": "tidelift"
  6693. }
  6694. ],
  6695. "time": "2025-06-23T16:12:55+00:00"
  6696. },
  6697. {
  6698. "name": "symfony/process",
  6699. "version": "v7.4.8",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/symfony/process.git",
  6703. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/symfony/process/zipball/60f19cd3badc8de688421e21e4305eba50f8089a",
  6708. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "php": ">=8.2"
  6713. },
  6714. "type": "library",
  6715. "autoload": {
  6716. "psr-4": {
  6717. "Symfony\\Component\\Process\\": ""
  6718. },
  6719. "exclude-from-classmap": [
  6720. "/Tests/"
  6721. ]
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Fabien Potencier",
  6730. "email": "fabien@symfony.com"
  6731. },
  6732. {
  6733. "name": "Symfony Community",
  6734. "homepage": "https://symfony.com/contributors"
  6735. }
  6736. ],
  6737. "description": "Executes commands in sub-processes",
  6738. "homepage": "https://symfony.com",
  6739. "support": {
  6740. "source": "https://github.com/symfony/process/tree/v7.4.8"
  6741. },
  6742. "funding": [
  6743. {
  6744. "url": "https://symfony.com/sponsor",
  6745. "type": "custom"
  6746. },
  6747. {
  6748. "url": "https://github.com/fabpot",
  6749. "type": "github"
  6750. },
  6751. {
  6752. "url": "https://github.com/nicolas-grekas",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6757. "type": "tidelift"
  6758. }
  6759. ],
  6760. "time": "2026-03-24T13:12:05+00:00"
  6761. },
  6762. {
  6763. "name": "symfony/property-access",
  6764. "version": "v7.4.8",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/symfony/property-access.git",
  6768. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/symfony/property-access/zipball/b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  6773. "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "php": ">=8.2",
  6778. "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4"
  6779. },
  6780. "require-dev": {
  6781. "symfony/cache": "^6.4|^7.0|^8.0",
  6782. "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0"
  6783. },
  6784. "type": "library",
  6785. "autoload": {
  6786. "psr-4": {
  6787. "Symfony\\Component\\PropertyAccess\\": ""
  6788. },
  6789. "exclude-from-classmap": [
  6790. "/Tests/"
  6791. ]
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "MIT"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Fabien Potencier",
  6800. "email": "fabien@symfony.com"
  6801. },
  6802. {
  6803. "name": "Symfony Community",
  6804. "homepage": "https://symfony.com/contributors"
  6805. }
  6806. ],
  6807. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6808. "homepage": "https://symfony.com",
  6809. "keywords": [
  6810. "access",
  6811. "array",
  6812. "extraction",
  6813. "index",
  6814. "injection",
  6815. "object",
  6816. "property",
  6817. "property-path",
  6818. "reflection"
  6819. ],
  6820. "support": {
  6821. "source": "https://github.com/symfony/property-access/tree/v7.4.8"
  6822. },
  6823. "funding": [
  6824. {
  6825. "url": "https://symfony.com/sponsor",
  6826. "type": "custom"
  6827. },
  6828. {
  6829. "url": "https://github.com/fabpot",
  6830. "type": "github"
  6831. },
  6832. {
  6833. "url": "https://github.com/nicolas-grekas",
  6834. "type": "github"
  6835. },
  6836. {
  6837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6838. "type": "tidelift"
  6839. }
  6840. ],
  6841. "time": "2026-03-24T13:12:05+00:00"
  6842. },
  6843. {
  6844. "name": "symfony/property-info",
  6845. "version": "v7.4.8",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/symfony/property-info.git",
  6849. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/symfony/property-info/zipball/ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  6854. "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "php": ">=8.2",
  6859. "symfony/deprecation-contracts": "^2.5|^3",
  6860. "symfony/string": "^6.4|^7.0|^8.0",
  6861. "symfony/type-info": "^7.4.7|^8.0.7"
  6862. },
  6863. "conflict": {
  6864. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  6865. "phpdocumentor/type-resolver": "<1.5.1",
  6866. "symfony/cache": "<6.4",
  6867. "symfony/dependency-injection": "<6.4",
  6868. "symfony/serializer": "<6.4"
  6869. },
  6870. "require-dev": {
  6871. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  6872. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6873. "symfony/cache": "^6.4|^7.0|^8.0",
  6874. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6875. "symfony/serializer": "^6.4|^7.0|^8.0"
  6876. },
  6877. "type": "library",
  6878. "autoload": {
  6879. "psr-4": {
  6880. "Symfony\\Component\\PropertyInfo\\": ""
  6881. },
  6882. "exclude-from-classmap": [
  6883. "/Tests/"
  6884. ]
  6885. },
  6886. "notification-url": "https://packagist.org/downloads/",
  6887. "license": [
  6888. "MIT"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Kévin Dunglas",
  6893. "email": "dunglas@gmail.com"
  6894. },
  6895. {
  6896. "name": "Symfony Community",
  6897. "homepage": "https://symfony.com/contributors"
  6898. }
  6899. ],
  6900. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6901. "homepage": "https://symfony.com",
  6902. "keywords": [
  6903. "doctrine",
  6904. "phpdoc",
  6905. "property",
  6906. "symfony",
  6907. "type",
  6908. "validator"
  6909. ],
  6910. "support": {
  6911. "source": "https://github.com/symfony/property-info/tree/v7.4.8"
  6912. },
  6913. "funding": [
  6914. {
  6915. "url": "https://symfony.com/sponsor",
  6916. "type": "custom"
  6917. },
  6918. {
  6919. "url": "https://github.com/fabpot",
  6920. "type": "github"
  6921. },
  6922. {
  6923. "url": "https://github.com/nicolas-grekas",
  6924. "type": "github"
  6925. },
  6926. {
  6927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6928. "type": "tidelift"
  6929. }
  6930. ],
  6931. "time": "2026-03-24T13:12:05+00:00"
  6932. },
  6933. {
  6934. "name": "symfony/routing",
  6935. "version": "v7.4.8",
  6936. "source": {
  6937. "type": "git",
  6938. "url": "https://github.com/symfony/routing.git",
  6939. "reference": "9608de9873ec86e754fb6c0a0fa7e5f1a960eb6b"
  6940. },
  6941. "dist": {
  6942. "type": "zip",
  6943. "url": "https://api.github.com/repos/symfony/routing/zipball/9608de9873ec86e754fb6c0a0fa7e5f1a960eb6b",
  6944. "reference": "9608de9873ec86e754fb6c0a0fa7e5f1a960eb6b",
  6945. "shasum": ""
  6946. },
  6947. "require": {
  6948. "php": ">=8.2",
  6949. "symfony/deprecation-contracts": "^2.5|^3"
  6950. },
  6951. "conflict": {
  6952. "symfony/config": "<6.4",
  6953. "symfony/dependency-injection": "<6.4",
  6954. "symfony/yaml": "<6.4"
  6955. },
  6956. "require-dev": {
  6957. "psr/log": "^1|^2|^3",
  6958. "symfony/config": "^6.4|^7.0|^8.0",
  6959. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6960. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6961. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6962. "symfony/yaml": "^6.4|^7.0|^8.0"
  6963. },
  6964. "type": "library",
  6965. "autoload": {
  6966. "psr-4": {
  6967. "Symfony\\Component\\Routing\\": ""
  6968. },
  6969. "exclude-from-classmap": [
  6970. "/Tests/"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "MIT"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Fabien Potencier",
  6980. "email": "fabien@symfony.com"
  6981. },
  6982. {
  6983. "name": "Symfony Community",
  6984. "homepage": "https://symfony.com/contributors"
  6985. }
  6986. ],
  6987. "description": "Maps an HTTP request to a set of configuration variables",
  6988. "homepage": "https://symfony.com",
  6989. "keywords": [
  6990. "router",
  6991. "routing",
  6992. "uri",
  6993. "url"
  6994. ],
  6995. "support": {
  6996. "source": "https://github.com/symfony/routing/tree/v7.4.8"
  6997. },
  6998. "funding": [
  6999. {
  7000. "url": "https://symfony.com/sponsor",
  7001. "type": "custom"
  7002. },
  7003. {
  7004. "url": "https://github.com/fabpot",
  7005. "type": "github"
  7006. },
  7007. {
  7008. "url": "https://github.com/nicolas-grekas",
  7009. "type": "github"
  7010. },
  7011. {
  7012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7013. "type": "tidelift"
  7014. }
  7015. ],
  7016. "time": "2026-03-24T13:12:05+00:00"
  7017. },
  7018. {
  7019. "name": "symfony/runtime",
  7020. "version": "v7.4.8",
  7021. "source": {
  7022. "type": "git",
  7023. "url": "https://github.com/symfony/runtime.git",
  7024. "reference": "6d792a64fec1eae2f011cfe9ab5978a9eab3071e"
  7025. },
  7026. "dist": {
  7027. "type": "zip",
  7028. "url": "https://api.github.com/repos/symfony/runtime/zipball/6d792a64fec1eae2f011cfe9ab5978a9eab3071e",
  7029. "reference": "6d792a64fec1eae2f011cfe9ab5978a9eab3071e",
  7030. "shasum": ""
  7031. },
  7032. "require": {
  7033. "composer-plugin-api": "^1.0|^2.0",
  7034. "php": ">=8.2"
  7035. },
  7036. "conflict": {
  7037. "symfony/dotenv": "<6.4"
  7038. },
  7039. "require-dev": {
  7040. "composer/composer": "^2.6",
  7041. "symfony/console": "^6.4|^7.0|^8.0",
  7042. "symfony/dotenv": "^6.4|^7.0|^8.0",
  7043. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7044. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  7045. },
  7046. "type": "composer-plugin",
  7047. "extra": {
  7048. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  7049. },
  7050. "autoload": {
  7051. "psr-4": {
  7052. "Symfony\\Component\\Runtime\\": "",
  7053. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  7054. },
  7055. "exclude-from-classmap": [
  7056. "/Tests/"
  7057. ]
  7058. },
  7059. "notification-url": "https://packagist.org/downloads/",
  7060. "license": [
  7061. "MIT"
  7062. ],
  7063. "authors": [
  7064. {
  7065. "name": "Nicolas Grekas",
  7066. "email": "p@tchwork.com"
  7067. },
  7068. {
  7069. "name": "Symfony Community",
  7070. "homepage": "https://symfony.com/contributors"
  7071. }
  7072. ],
  7073. "description": "Enables decoupling PHP applications from global state",
  7074. "homepage": "https://symfony.com",
  7075. "keywords": [
  7076. "runtime"
  7077. ],
  7078. "support": {
  7079. "source": "https://github.com/symfony/runtime/tree/v7.4.8"
  7080. },
  7081. "funding": [
  7082. {
  7083. "url": "https://symfony.com/sponsor",
  7084. "type": "custom"
  7085. },
  7086. {
  7087. "url": "https://github.com/fabpot",
  7088. "type": "github"
  7089. },
  7090. {
  7091. "url": "https://github.com/nicolas-grekas",
  7092. "type": "github"
  7093. },
  7094. {
  7095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7096. "type": "tidelift"
  7097. }
  7098. ],
  7099. "time": "2026-03-24T13:12:05+00:00"
  7100. },
  7101. {
  7102. "name": "symfony/security-bundle",
  7103. "version": "v7.4.8",
  7104. "source": {
  7105. "type": "git",
  7106. "url": "https://github.com/symfony/security-bundle.git",
  7107. "reference": "6f73fdfd9ad23bf24b6f6c8d35be3ea6853d91af"
  7108. },
  7109. "dist": {
  7110. "type": "zip",
  7111. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/6f73fdfd9ad23bf24b6f6c8d35be3ea6853d91af",
  7112. "reference": "6f73fdfd9ad23bf24b6f6c8d35be3ea6853d91af",
  7113. "shasum": ""
  7114. },
  7115. "require": {
  7116. "composer-runtime-api": ">=2.1",
  7117. "ext-xml": "*",
  7118. "php": ">=8.2",
  7119. "symfony/clock": "^6.4|^7.0|^8.0",
  7120. "symfony/config": "^7.4|^8.0",
  7121. "symfony/dependency-injection": "^6.4.11|^7.1.4|^8.0",
  7122. "symfony/deprecation-contracts": "^2.5|^3",
  7123. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  7124. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7125. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  7126. "symfony/password-hasher": "^6.4|^7.0|^8.0",
  7127. "symfony/security-core": "^7.4|^8.0",
  7128. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  7129. "symfony/security-http": "^7.4|^8.0",
  7130. "symfony/service-contracts": "^2.5|^3"
  7131. },
  7132. "conflict": {
  7133. "symfony/browser-kit": "<6.4",
  7134. "symfony/console": "<6.4",
  7135. "symfony/framework-bundle": "<6.4",
  7136. "symfony/http-client": "<6.4",
  7137. "symfony/ldap": "<6.4",
  7138. "symfony/serializer": "<6.4",
  7139. "symfony/twig-bundle": "<6.4",
  7140. "symfony/validator": "<6.4"
  7141. },
  7142. "require-dev": {
  7143. "symfony/asset": "^6.4|^7.0|^8.0",
  7144. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  7145. "symfony/console": "^6.4|^7.0|^8.0",
  7146. "symfony/css-selector": "^6.4|^7.0|^8.0",
  7147. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  7148. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7149. "symfony/form": "^6.4|^7.0|^8.0",
  7150. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  7151. "symfony/http-client": "^6.4|^7.0|^8.0",
  7152. "symfony/ldap": "^6.4|^7.0|^8.0",
  7153. "symfony/process": "^6.4|^7.0|^8.0",
  7154. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  7155. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  7156. "symfony/serializer": "^6.4|^7.0|^8.0",
  7157. "symfony/translation": "^6.4|^7.0|^8.0",
  7158. "symfony/twig-bridge": "^6.4|^7.0|^8.0",
  7159. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  7160. "symfony/validator": "^6.4|^7.0|^8.0",
  7161. "symfony/yaml": "^6.4|^7.0|^8.0",
  7162. "twig/twig": "^3.15",
  7163. "web-token/jwt-library": "^3.3.2|^4.0"
  7164. },
  7165. "type": "symfony-bundle",
  7166. "autoload": {
  7167. "psr-4": {
  7168. "Symfony\\Bundle\\SecurityBundle\\": ""
  7169. },
  7170. "exclude-from-classmap": [
  7171. "/Tests/"
  7172. ]
  7173. },
  7174. "notification-url": "https://packagist.org/downloads/",
  7175. "license": [
  7176. "MIT"
  7177. ],
  7178. "authors": [
  7179. {
  7180. "name": "Fabien Potencier",
  7181. "email": "fabien@symfony.com"
  7182. },
  7183. {
  7184. "name": "Symfony Community",
  7185. "homepage": "https://symfony.com/contributors"
  7186. }
  7187. ],
  7188. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  7189. "homepage": "https://symfony.com",
  7190. "support": {
  7191. "source": "https://github.com/symfony/security-bundle/tree/v7.4.8"
  7192. },
  7193. "funding": [
  7194. {
  7195. "url": "https://symfony.com/sponsor",
  7196. "type": "custom"
  7197. },
  7198. {
  7199. "url": "https://github.com/fabpot",
  7200. "type": "github"
  7201. },
  7202. {
  7203. "url": "https://github.com/nicolas-grekas",
  7204. "type": "github"
  7205. },
  7206. {
  7207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7208. "type": "tidelift"
  7209. }
  7210. ],
  7211. "time": "2026-03-30T13:54:39+00:00"
  7212. },
  7213. {
  7214. "name": "symfony/security-core",
  7215. "version": "v7.4.8",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/symfony/security-core.git",
  7219. "reference": "23e0cd6615661e33e53faf714bf6a130c2f75c25"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/symfony/security-core/zipball/23e0cd6615661e33e53faf714bf6a130c2f75c25",
  7224. "reference": "23e0cd6615661e33e53faf714bf6a130c2f75c25",
  7225. "shasum": ""
  7226. },
  7227. "require": {
  7228. "php": ">=8.2",
  7229. "symfony/deprecation-contracts": "^2.5|^3",
  7230. "symfony/event-dispatcher-contracts": "^2.5|^3",
  7231. "symfony/password-hasher": "^6.4|^7.0|^8.0",
  7232. "symfony/service-contracts": "^2.5|^3"
  7233. },
  7234. "conflict": {
  7235. "symfony/dependency-injection": "<6.4",
  7236. "symfony/event-dispatcher": "<6.4",
  7237. "symfony/http-foundation": "<6.4",
  7238. "symfony/ldap": "<6.4",
  7239. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7240. "symfony/validator": "<6.4"
  7241. },
  7242. "require-dev": {
  7243. "psr/cache": "^1.0|^2.0|^3.0",
  7244. "psr/container": "^1.1|^2.0",
  7245. "psr/log": "^1|^2|^3",
  7246. "symfony/cache": "^6.4|^7.0|^8.0",
  7247. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7248. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  7249. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7250. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7251. "symfony/ldap": "^6.4|^7.0|^8.0",
  7252. "symfony/string": "^6.4|^7.0|^8.0",
  7253. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  7254. "symfony/validator": "^6.4|^7.0|^8.0"
  7255. },
  7256. "type": "library",
  7257. "autoload": {
  7258. "psr-4": {
  7259. "Symfony\\Component\\Security\\Core\\": ""
  7260. },
  7261. "exclude-from-classmap": [
  7262. "/Tests/"
  7263. ]
  7264. },
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "MIT"
  7268. ],
  7269. "authors": [
  7270. {
  7271. "name": "Fabien Potencier",
  7272. "email": "fabien@symfony.com"
  7273. },
  7274. {
  7275. "name": "Symfony Community",
  7276. "homepage": "https://symfony.com/contributors"
  7277. }
  7278. ],
  7279. "description": "Symfony Security Component - Core Library",
  7280. "homepage": "https://symfony.com",
  7281. "support": {
  7282. "source": "https://github.com/symfony/security-core/tree/v7.4.8"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://symfony.com/sponsor",
  7287. "type": "custom"
  7288. },
  7289. {
  7290. "url": "https://github.com/fabpot",
  7291. "type": "github"
  7292. },
  7293. {
  7294. "url": "https://github.com/nicolas-grekas",
  7295. "type": "github"
  7296. },
  7297. {
  7298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7299. "type": "tidelift"
  7300. }
  7301. ],
  7302. "time": "2026-03-31T07:00:19+00:00"
  7303. },
  7304. {
  7305. "name": "symfony/security-csrf",
  7306. "version": "v7.4.8",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/symfony/security-csrf.git",
  7310. "reference": "16b3aa2f67d02fb0dbd013a8759bbe90daaa9c5d"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/16b3aa2f67d02fb0dbd013a8759bbe90daaa9c5d",
  7315. "reference": "16b3aa2f67d02fb0dbd013a8759bbe90daaa9c5d",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "php": ">=8.2",
  7320. "symfony/security-core": "^6.4|^7.0|^8.0"
  7321. },
  7322. "conflict": {
  7323. "symfony/http-foundation": "<6.4"
  7324. },
  7325. "require-dev": {
  7326. "psr/log": "^1|^2|^3",
  7327. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7328. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  7329. },
  7330. "type": "library",
  7331. "autoload": {
  7332. "psr-4": {
  7333. "Symfony\\Component\\Security\\Csrf\\": ""
  7334. },
  7335. "exclude-from-classmap": [
  7336. "/Tests/"
  7337. ]
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "MIT"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Fabien Potencier",
  7346. "email": "fabien@symfony.com"
  7347. },
  7348. {
  7349. "name": "Symfony Community",
  7350. "homepage": "https://symfony.com/contributors"
  7351. }
  7352. ],
  7353. "description": "Symfony Security Component - CSRF Library",
  7354. "homepage": "https://symfony.com",
  7355. "support": {
  7356. "source": "https://github.com/symfony/security-csrf/tree/v7.4.8"
  7357. },
  7358. "funding": [
  7359. {
  7360. "url": "https://symfony.com/sponsor",
  7361. "type": "custom"
  7362. },
  7363. {
  7364. "url": "https://github.com/fabpot",
  7365. "type": "github"
  7366. },
  7367. {
  7368. "url": "https://github.com/nicolas-grekas",
  7369. "type": "github"
  7370. },
  7371. {
  7372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7373. "type": "tidelift"
  7374. }
  7375. ],
  7376. "time": "2026-03-24T13:12:05+00:00"
  7377. },
  7378. {
  7379. "name": "symfony/security-http",
  7380. "version": "v7.4.8",
  7381. "source": {
  7382. "type": "git",
  7383. "url": "https://github.com/symfony/security-http.git",
  7384. "reference": "1b07d7d472ba967fd66697067e6274084d2d1d7c"
  7385. },
  7386. "dist": {
  7387. "type": "zip",
  7388. "url": "https://api.github.com/repos/symfony/security-http/zipball/1b07d7d472ba967fd66697067e6274084d2d1d7c",
  7389. "reference": "1b07d7d472ba967fd66697067e6274084d2d1d7c",
  7390. "shasum": ""
  7391. },
  7392. "require": {
  7393. "php": ">=8.2",
  7394. "symfony/deprecation-contracts": "^2.5|^3",
  7395. "symfony/event-dispatcher": "^6.4|^7.0",
  7396. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7397. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7398. "symfony/polyfill-mbstring": "~1.0",
  7399. "symfony/property-access": "^6.4|^7.0|^8.0",
  7400. "symfony/security-core": "^7.3|^8.0",
  7401. "symfony/service-contracts": "^2.5|^3"
  7402. },
  7403. "conflict": {
  7404. "symfony/clock": "<6.4",
  7405. "symfony/http-client-contracts": "<3.0",
  7406. "symfony/security-bundle": "<6.4",
  7407. "symfony/security-csrf": "<6.4"
  7408. },
  7409. "require-dev": {
  7410. "psr/log": "^1|^2|^3",
  7411. "symfony/cache": "^6.4|^7.0|^8.0",
  7412. "symfony/clock": "^6.4|^7.0|^8.0",
  7413. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7414. "symfony/http-client": "^6.4|^7.0|^8.0",
  7415. "symfony/http-client-contracts": "^3.0",
  7416. "symfony/rate-limiter": "^6.4|^7.0|^8.0",
  7417. "symfony/routing": "^6.4|^7.0|^8.0",
  7418. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  7419. "symfony/translation": "^6.4|^7.0|^8.0",
  7420. "web-token/jwt-library": "^3.3.2|^4.0"
  7421. },
  7422. "type": "library",
  7423. "autoload": {
  7424. "psr-4": {
  7425. "Symfony\\Component\\Security\\Http\\": ""
  7426. },
  7427. "exclude-from-classmap": [
  7428. "/Tests/"
  7429. ]
  7430. },
  7431. "notification-url": "https://packagist.org/downloads/",
  7432. "license": [
  7433. "MIT"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Fabien Potencier",
  7438. "email": "fabien@symfony.com"
  7439. },
  7440. {
  7441. "name": "Symfony Community",
  7442. "homepage": "https://symfony.com/contributors"
  7443. }
  7444. ],
  7445. "description": "Symfony Security Component - HTTP Integration",
  7446. "homepage": "https://symfony.com",
  7447. "support": {
  7448. "source": "https://github.com/symfony/security-http/tree/v7.4.8"
  7449. },
  7450. "funding": [
  7451. {
  7452. "url": "https://symfony.com/sponsor",
  7453. "type": "custom"
  7454. },
  7455. {
  7456. "url": "https://github.com/fabpot",
  7457. "type": "github"
  7458. },
  7459. {
  7460. "url": "https://github.com/nicolas-grekas",
  7461. "type": "github"
  7462. },
  7463. {
  7464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7465. "type": "tidelift"
  7466. }
  7467. ],
  7468. "time": "2026-03-24T13:12:05+00:00"
  7469. },
  7470. {
  7471. "name": "symfony/serializer",
  7472. "version": "v7.4.8",
  7473. "source": {
  7474. "type": "git",
  7475. "url": "https://github.com/symfony/serializer.git",
  7476. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455"
  7477. },
  7478. "dist": {
  7479. "type": "zip",
  7480. "url": "https://api.github.com/repos/symfony/serializer/zipball/006fd51717addf2df2bd1a64dafef6b7fab6b455",
  7481. "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455",
  7482. "shasum": ""
  7483. },
  7484. "require": {
  7485. "php": ">=8.2",
  7486. "symfony/deprecation-contracts": "^2.5|^3",
  7487. "symfony/polyfill-ctype": "~1.8",
  7488. "symfony/polyfill-php84": "^1.30"
  7489. },
  7490. "conflict": {
  7491. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  7492. "phpdocumentor/type-resolver": "<1.5.1",
  7493. "symfony/dependency-injection": "<6.4",
  7494. "symfony/property-access": "<6.4",
  7495. "symfony/property-info": "<6.4",
  7496. "symfony/type-info": "<7.2.5",
  7497. "symfony/uid": "<6.4",
  7498. "symfony/validator": "<6.4",
  7499. "symfony/yaml": "<6.4"
  7500. },
  7501. "require-dev": {
  7502. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  7503. "phpstan/phpdoc-parser": "^1.0|^2.0",
  7504. "seld/jsonlint": "^1.10",
  7505. "symfony/cache": "^6.4|^7.0|^8.0",
  7506. "symfony/config": "^6.4|^7.0|^8.0",
  7507. "symfony/console": "^6.4|^7.0|^8.0",
  7508. "symfony/dependency-injection": "^7.2|^8.0",
  7509. "symfony/error-handler": "^6.4|^7.0|^8.0",
  7510. "symfony/filesystem": "^6.4|^7.0|^8.0",
  7511. "symfony/form": "^6.4|^7.0|^8.0",
  7512. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7513. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7514. "symfony/messenger": "^6.4|^7.0|^8.0",
  7515. "symfony/mime": "^6.4|^7.0|^8.0",
  7516. "symfony/property-access": "^6.4|^7.0|^8.0",
  7517. "symfony/property-info": "^6.4|^7.0|^8.0",
  7518. "symfony/translation-contracts": "^2.5|^3",
  7519. "symfony/type-info": "^7.2.5|^8.0",
  7520. "symfony/uid": "^6.4|^7.0|^8.0",
  7521. "symfony/validator": "^6.4|^7.0|^8.0",
  7522. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  7523. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  7524. "symfony/yaml": "^6.4|^7.0|^8.0"
  7525. },
  7526. "type": "library",
  7527. "autoload": {
  7528. "psr-4": {
  7529. "Symfony\\Component\\Serializer\\": ""
  7530. },
  7531. "exclude-from-classmap": [
  7532. "/Tests/"
  7533. ]
  7534. },
  7535. "notification-url": "https://packagist.org/downloads/",
  7536. "license": [
  7537. "MIT"
  7538. ],
  7539. "authors": [
  7540. {
  7541. "name": "Fabien Potencier",
  7542. "email": "fabien@symfony.com"
  7543. },
  7544. {
  7545. "name": "Symfony Community",
  7546. "homepage": "https://symfony.com/contributors"
  7547. }
  7548. ],
  7549. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7550. "homepage": "https://symfony.com",
  7551. "support": {
  7552. "source": "https://github.com/symfony/serializer/tree/v7.4.8"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://symfony.com/sponsor",
  7557. "type": "custom"
  7558. },
  7559. {
  7560. "url": "https://github.com/fabpot",
  7561. "type": "github"
  7562. },
  7563. {
  7564. "url": "https://github.com/nicolas-grekas",
  7565. "type": "github"
  7566. },
  7567. {
  7568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7569. "type": "tidelift"
  7570. }
  7571. ],
  7572. "time": "2026-03-30T21:34:42+00:00"
  7573. },
  7574. {
  7575. "name": "symfony/service-contracts",
  7576. "version": "v3.6.1",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/symfony/service-contracts.git",
  7580. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  7585. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "php": ">=8.1",
  7590. "psr/container": "^1.1|^2.0",
  7591. "symfony/deprecation-contracts": "^2.5|^3"
  7592. },
  7593. "conflict": {
  7594. "ext-psr": "<1.1|>=2"
  7595. },
  7596. "type": "library",
  7597. "extra": {
  7598. "thanks": {
  7599. "url": "https://github.com/symfony/contracts",
  7600. "name": "symfony/contracts"
  7601. },
  7602. "branch-alias": {
  7603. "dev-main": "3.6-dev"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "psr-4": {
  7608. "Symfony\\Contracts\\Service\\": ""
  7609. },
  7610. "exclude-from-classmap": [
  7611. "/Test/"
  7612. ]
  7613. },
  7614. "notification-url": "https://packagist.org/downloads/",
  7615. "license": [
  7616. "MIT"
  7617. ],
  7618. "authors": [
  7619. {
  7620. "name": "Nicolas Grekas",
  7621. "email": "p@tchwork.com"
  7622. },
  7623. {
  7624. "name": "Symfony Community",
  7625. "homepage": "https://symfony.com/contributors"
  7626. }
  7627. ],
  7628. "description": "Generic abstractions related to writing services",
  7629. "homepage": "https://symfony.com",
  7630. "keywords": [
  7631. "abstractions",
  7632. "contracts",
  7633. "decoupling",
  7634. "interfaces",
  7635. "interoperability",
  7636. "standards"
  7637. ],
  7638. "support": {
  7639. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  7640. },
  7641. "funding": [
  7642. {
  7643. "url": "https://symfony.com/sponsor",
  7644. "type": "custom"
  7645. },
  7646. {
  7647. "url": "https://github.com/fabpot",
  7648. "type": "github"
  7649. },
  7650. {
  7651. "url": "https://github.com/nicolas-grekas",
  7652. "type": "github"
  7653. },
  7654. {
  7655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7656. "type": "tidelift"
  7657. }
  7658. ],
  7659. "time": "2025-07-15T11:30:57+00:00"
  7660. },
  7661. {
  7662. "name": "symfony/stimulus-bundle",
  7663. "version": "v2.34.0",
  7664. "source": {
  7665. "type": "git",
  7666. "url": "https://github.com/symfony/stimulus-bundle.git",
  7667. "reference": "d610a2e021cf63f955838b4bfe40da7e4cafe850"
  7668. },
  7669. "dist": {
  7670. "type": "zip",
  7671. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/d610a2e021cf63f955838b4bfe40da7e4cafe850",
  7672. "reference": "d610a2e021cf63f955838b4bfe40da7e4cafe850",
  7673. "shasum": ""
  7674. },
  7675. "require": {
  7676. "php": ">=8.1",
  7677. "symfony/config": "^5.4|^6.0|^7.0|^8.0",
  7678. "symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
  7679. "symfony/deprecation-contracts": "^2.0|^3.0",
  7680. "symfony/finder": "^5.4|^6.0|^7.0|^8.0",
  7681. "symfony/http-kernel": "^5.4|^6.0|^7.0|^8.0",
  7682. "twig/twig": "^2.15.3|^3.8"
  7683. },
  7684. "require-dev": {
  7685. "symfony/asset-mapper": "^6.3|^7.0|^8.0",
  7686. "symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
  7687. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0|^8.0",
  7688. "symfony/twig-bundle": "^5.4|^6.0|^7.0|^8.0",
  7689. "zenstruck/browser": "^1.4"
  7690. },
  7691. "type": "symfony-bundle",
  7692. "autoload": {
  7693. "psr-4": {
  7694. "Symfony\\UX\\StimulusBundle\\": "src"
  7695. }
  7696. },
  7697. "notification-url": "https://packagist.org/downloads/",
  7698. "license": [
  7699. "MIT"
  7700. ],
  7701. "authors": [
  7702. {
  7703. "name": "Symfony Community",
  7704. "homepage": "https://symfony.com/contributors"
  7705. }
  7706. ],
  7707. "description": "Integration with your Symfony app & Stimulus!",
  7708. "keywords": [
  7709. "symfony-ux"
  7710. ],
  7711. "support": {
  7712. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.34.0"
  7713. },
  7714. "funding": [
  7715. {
  7716. "url": "https://symfony.com/sponsor",
  7717. "type": "custom"
  7718. },
  7719. {
  7720. "url": "https://github.com/fabpot",
  7721. "type": "github"
  7722. },
  7723. {
  7724. "url": "https://github.com/nicolas-grekas",
  7725. "type": "github"
  7726. },
  7727. {
  7728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7729. "type": "tidelift"
  7730. }
  7731. ],
  7732. "time": "2026-03-21T22:29:11+00:00"
  7733. },
  7734. {
  7735. "name": "symfony/stopwatch",
  7736. "version": "v7.4.8",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/symfony/stopwatch.git",
  7740. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  7745. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  7746. "shasum": ""
  7747. },
  7748. "require": {
  7749. "php": ">=8.2",
  7750. "symfony/service-contracts": "^2.5|^3"
  7751. },
  7752. "type": "library",
  7753. "autoload": {
  7754. "psr-4": {
  7755. "Symfony\\Component\\Stopwatch\\": ""
  7756. },
  7757. "exclude-from-classmap": [
  7758. "/Tests/"
  7759. ]
  7760. },
  7761. "notification-url": "https://packagist.org/downloads/",
  7762. "license": [
  7763. "MIT"
  7764. ],
  7765. "authors": [
  7766. {
  7767. "name": "Fabien Potencier",
  7768. "email": "fabien@symfony.com"
  7769. },
  7770. {
  7771. "name": "Symfony Community",
  7772. "homepage": "https://symfony.com/contributors"
  7773. }
  7774. ],
  7775. "description": "Provides a way to profile code",
  7776. "homepage": "https://symfony.com",
  7777. "support": {
  7778. "source": "https://github.com/symfony/stopwatch/tree/v7.4.8"
  7779. },
  7780. "funding": [
  7781. {
  7782. "url": "https://symfony.com/sponsor",
  7783. "type": "custom"
  7784. },
  7785. {
  7786. "url": "https://github.com/fabpot",
  7787. "type": "github"
  7788. },
  7789. {
  7790. "url": "https://github.com/nicolas-grekas",
  7791. "type": "github"
  7792. },
  7793. {
  7794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7795. "type": "tidelift"
  7796. }
  7797. ],
  7798. "time": "2026-03-24T13:12:05+00:00"
  7799. },
  7800. {
  7801. "name": "symfony/string",
  7802. "version": "v7.4.8",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/symfony/string.git",
  7806. "reference": "114ac57257d75df748eda23dd003878080b8e688"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688",
  7811. "reference": "114ac57257d75df748eda23dd003878080b8e688",
  7812. "shasum": ""
  7813. },
  7814. "require": {
  7815. "php": ">=8.2",
  7816. "symfony/deprecation-contracts": "^2.5|^3.0",
  7817. "symfony/polyfill-ctype": "~1.8",
  7818. "symfony/polyfill-intl-grapheme": "~1.33",
  7819. "symfony/polyfill-intl-normalizer": "~1.0",
  7820. "symfony/polyfill-mbstring": "~1.0"
  7821. },
  7822. "conflict": {
  7823. "symfony/translation-contracts": "<2.5"
  7824. },
  7825. "require-dev": {
  7826. "symfony/emoji": "^7.1|^8.0",
  7827. "symfony/http-client": "^6.4|^7.0|^8.0",
  7828. "symfony/intl": "^6.4|^7.0|^8.0",
  7829. "symfony/translation-contracts": "^2.5|^3.0",
  7830. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  7831. },
  7832. "type": "library",
  7833. "autoload": {
  7834. "files": [
  7835. "Resources/functions.php"
  7836. ],
  7837. "psr-4": {
  7838. "Symfony\\Component\\String\\": ""
  7839. },
  7840. "exclude-from-classmap": [
  7841. "/Tests/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "MIT"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Nicolas Grekas",
  7851. "email": "p@tchwork.com"
  7852. },
  7853. {
  7854. "name": "Symfony Community",
  7855. "homepage": "https://symfony.com/contributors"
  7856. }
  7857. ],
  7858. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7859. "homepage": "https://symfony.com",
  7860. "keywords": [
  7861. "grapheme",
  7862. "i18n",
  7863. "string",
  7864. "unicode",
  7865. "utf-8",
  7866. "utf8"
  7867. ],
  7868. "support": {
  7869. "source": "https://github.com/symfony/string/tree/v7.4.8"
  7870. },
  7871. "funding": [
  7872. {
  7873. "url": "https://symfony.com/sponsor",
  7874. "type": "custom"
  7875. },
  7876. {
  7877. "url": "https://github.com/fabpot",
  7878. "type": "github"
  7879. },
  7880. {
  7881. "url": "https://github.com/nicolas-grekas",
  7882. "type": "github"
  7883. },
  7884. {
  7885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7886. "type": "tidelift"
  7887. }
  7888. ],
  7889. "time": "2026-03-24T13:12:05+00:00"
  7890. },
  7891. {
  7892. "name": "symfony/translation",
  7893. "version": "v7.4.8",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://github.com/symfony/translation.git",
  7897. "reference": "33600f8489485425bfcddd0d983391038d3422e7"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://api.github.com/repos/symfony/translation/zipball/33600f8489485425bfcddd0d983391038d3422e7",
  7902. "reference": "33600f8489485425bfcddd0d983391038d3422e7",
  7903. "shasum": ""
  7904. },
  7905. "require": {
  7906. "php": ">=8.2",
  7907. "symfony/deprecation-contracts": "^2.5|^3",
  7908. "symfony/polyfill-mbstring": "~1.0",
  7909. "symfony/translation-contracts": "^2.5.3|^3.3"
  7910. },
  7911. "conflict": {
  7912. "nikic/php-parser": "<5.0",
  7913. "symfony/config": "<6.4",
  7914. "symfony/console": "<6.4",
  7915. "symfony/dependency-injection": "<6.4",
  7916. "symfony/http-client-contracts": "<2.5",
  7917. "symfony/http-kernel": "<6.4",
  7918. "symfony/service-contracts": "<2.5",
  7919. "symfony/twig-bundle": "<6.4",
  7920. "symfony/yaml": "<6.4"
  7921. },
  7922. "provide": {
  7923. "symfony/translation-implementation": "2.3|3.0"
  7924. },
  7925. "require-dev": {
  7926. "nikic/php-parser": "^5.0",
  7927. "psr/log": "^1|^2|^3",
  7928. "symfony/config": "^6.4|^7.0|^8.0",
  7929. "symfony/console": "^6.4|^7.0|^8.0",
  7930. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7931. "symfony/finder": "^6.4|^7.0|^8.0",
  7932. "symfony/http-client-contracts": "^2.5|^3.0",
  7933. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7934. "symfony/intl": "^6.4|^7.0|^8.0",
  7935. "symfony/polyfill-intl-icu": "^1.21",
  7936. "symfony/routing": "^6.4|^7.0|^8.0",
  7937. "symfony/service-contracts": "^2.5|^3",
  7938. "symfony/yaml": "^6.4|^7.0|^8.0"
  7939. },
  7940. "type": "library",
  7941. "autoload": {
  7942. "files": [
  7943. "Resources/functions.php"
  7944. ],
  7945. "psr-4": {
  7946. "Symfony\\Component\\Translation\\": ""
  7947. },
  7948. "exclude-from-classmap": [
  7949. "/Tests/"
  7950. ]
  7951. },
  7952. "notification-url": "https://packagist.org/downloads/",
  7953. "license": [
  7954. "MIT"
  7955. ],
  7956. "authors": [
  7957. {
  7958. "name": "Fabien Potencier",
  7959. "email": "fabien@symfony.com"
  7960. },
  7961. {
  7962. "name": "Symfony Community",
  7963. "homepage": "https://symfony.com/contributors"
  7964. }
  7965. ],
  7966. "description": "Provides tools to internationalize your application",
  7967. "homepage": "https://symfony.com",
  7968. "support": {
  7969. "source": "https://github.com/symfony/translation/tree/v7.4.8"
  7970. },
  7971. "funding": [
  7972. {
  7973. "url": "https://symfony.com/sponsor",
  7974. "type": "custom"
  7975. },
  7976. {
  7977. "url": "https://github.com/fabpot",
  7978. "type": "github"
  7979. },
  7980. {
  7981. "url": "https://github.com/nicolas-grekas",
  7982. "type": "github"
  7983. },
  7984. {
  7985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7986. "type": "tidelift"
  7987. }
  7988. ],
  7989. "time": "2026-03-24T13:12:05+00:00"
  7990. },
  7991. {
  7992. "name": "symfony/translation-contracts",
  7993. "version": "v3.6.1",
  7994. "source": {
  7995. "type": "git",
  7996. "url": "https://github.com/symfony/translation-contracts.git",
  7997. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  7998. },
  7999. "dist": {
  8000. "type": "zip",
  8001. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  8002. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  8003. "shasum": ""
  8004. },
  8005. "require": {
  8006. "php": ">=8.1"
  8007. },
  8008. "type": "library",
  8009. "extra": {
  8010. "thanks": {
  8011. "url": "https://github.com/symfony/contracts",
  8012. "name": "symfony/contracts"
  8013. },
  8014. "branch-alias": {
  8015. "dev-main": "3.6-dev"
  8016. }
  8017. },
  8018. "autoload": {
  8019. "psr-4": {
  8020. "Symfony\\Contracts\\Translation\\": ""
  8021. },
  8022. "exclude-from-classmap": [
  8023. "/Test/"
  8024. ]
  8025. },
  8026. "notification-url": "https://packagist.org/downloads/",
  8027. "license": [
  8028. "MIT"
  8029. ],
  8030. "authors": [
  8031. {
  8032. "name": "Nicolas Grekas",
  8033. "email": "p@tchwork.com"
  8034. },
  8035. {
  8036. "name": "Symfony Community",
  8037. "homepage": "https://symfony.com/contributors"
  8038. }
  8039. ],
  8040. "description": "Generic abstractions related to translation",
  8041. "homepage": "https://symfony.com",
  8042. "keywords": [
  8043. "abstractions",
  8044. "contracts",
  8045. "decoupling",
  8046. "interfaces",
  8047. "interoperability",
  8048. "standards"
  8049. ],
  8050. "support": {
  8051. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  8052. },
  8053. "funding": [
  8054. {
  8055. "url": "https://symfony.com/sponsor",
  8056. "type": "custom"
  8057. },
  8058. {
  8059. "url": "https://github.com/fabpot",
  8060. "type": "github"
  8061. },
  8062. {
  8063. "url": "https://github.com/nicolas-grekas",
  8064. "type": "github"
  8065. },
  8066. {
  8067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8068. "type": "tidelift"
  8069. }
  8070. ],
  8071. "time": "2025-07-15T13:41:35+00:00"
  8072. },
  8073. {
  8074. "name": "symfony/twig-bridge",
  8075. "version": "v7.4.8",
  8076. "source": {
  8077. "type": "git",
  8078. "url": "https://github.com/symfony/twig-bridge.git",
  8079. "reference": "ac43e7e59298ed1ce98c8d228b651d46e907d02c"
  8080. },
  8081. "dist": {
  8082. "type": "zip",
  8083. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/ac43e7e59298ed1ce98c8d228b651d46e907d02c",
  8084. "reference": "ac43e7e59298ed1ce98c8d228b651d46e907d02c",
  8085. "shasum": ""
  8086. },
  8087. "require": {
  8088. "php": ">=8.2",
  8089. "symfony/deprecation-contracts": "^2.5|^3",
  8090. "symfony/translation-contracts": "^2.5|^3",
  8091. "twig/twig": "^3.21"
  8092. },
  8093. "conflict": {
  8094. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  8095. "phpdocumentor/type-resolver": "<1.5.1",
  8096. "symfony/console": "<6.4",
  8097. "symfony/form": "<6.4.32|>7,<7.3.10|>7.4,<7.4.4|>8.0,<8.0.4",
  8098. "symfony/http-foundation": "<6.4",
  8099. "symfony/http-kernel": "<6.4",
  8100. "symfony/mime": "<6.4.36|>7,<7.4.8|>8.0,<8.0.8",
  8101. "symfony/serializer": "<6.4",
  8102. "symfony/translation": "<6.4",
  8103. "symfony/workflow": "<6.4"
  8104. },
  8105. "require-dev": {
  8106. "egulias/email-validator": "^2.1.10|^3|^4",
  8107. "league/html-to-markdown": "^5.0",
  8108. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  8109. "symfony/asset": "^6.4|^7.0|^8.0",
  8110. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  8111. "symfony/console": "^6.4|^7.0|^8.0",
  8112. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8113. "symfony/emoji": "^7.1|^8.0",
  8114. "symfony/expression-language": "^6.4|^7.0|^8.0",
  8115. "symfony/finder": "^6.4|^7.0|^8.0",
  8116. "symfony/form": "^6.4.32|~7.3.10|^7.4.4|^8.0.4",
  8117. "symfony/html-sanitizer": "^6.4|^7.0|^8.0",
  8118. "symfony/http-foundation": "^7.3|^8.0",
  8119. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  8120. "symfony/intl": "^6.4|^7.0|^8.0",
  8121. "symfony/mime": "^6.4.36|^7.4.8|^8.0.8",
  8122. "symfony/polyfill-intl-icu": "~1.0",
  8123. "symfony/property-info": "^6.4|^7.0|^8.0",
  8124. "symfony/routing": "^6.4|^7.0|^8.0",
  8125. "symfony/security-acl": "^2.8|^3.0",
  8126. "symfony/security-core": "^6.4|^7.0|^8.0",
  8127. "symfony/security-csrf": "^6.4|^7.0|^8.0",
  8128. "symfony/security-http": "^6.4|^7.0|^8.0",
  8129. "symfony/serializer": "^6.4.3|^7.0.3|^8.0",
  8130. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  8131. "symfony/translation": "^6.4|^7.0|^8.0",
  8132. "symfony/validator": "^6.4|^7.0|^8.0",
  8133. "symfony/web-link": "^6.4|^7.0|^8.0",
  8134. "symfony/workflow": "^6.4|^7.0|^8.0",
  8135. "symfony/yaml": "^6.4|^7.0|^8.0",
  8136. "twig/cssinliner-extra": "^3",
  8137. "twig/inky-extra": "^3",
  8138. "twig/markdown-extra": "^3"
  8139. },
  8140. "type": "symfony-bridge",
  8141. "autoload": {
  8142. "psr-4": {
  8143. "Symfony\\Bridge\\Twig\\": ""
  8144. },
  8145. "exclude-from-classmap": [
  8146. "/Tests/"
  8147. ]
  8148. },
  8149. "notification-url": "https://packagist.org/downloads/",
  8150. "license": [
  8151. "MIT"
  8152. ],
  8153. "authors": [
  8154. {
  8155. "name": "Fabien Potencier",
  8156. "email": "fabien@symfony.com"
  8157. },
  8158. {
  8159. "name": "Symfony Community",
  8160. "homepage": "https://symfony.com/contributors"
  8161. }
  8162. ],
  8163. "description": "Provides integration for Twig with various Symfony components",
  8164. "homepage": "https://symfony.com",
  8165. "support": {
  8166. "source": "https://github.com/symfony/twig-bridge/tree/v7.4.8"
  8167. },
  8168. "funding": [
  8169. {
  8170. "url": "https://symfony.com/sponsor",
  8171. "type": "custom"
  8172. },
  8173. {
  8174. "url": "https://github.com/fabpot",
  8175. "type": "github"
  8176. },
  8177. {
  8178. "url": "https://github.com/nicolas-grekas",
  8179. "type": "github"
  8180. },
  8181. {
  8182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8183. "type": "tidelift"
  8184. }
  8185. ],
  8186. "time": "2026-03-30T15:17:09+00:00"
  8187. },
  8188. {
  8189. "name": "symfony/twig-bundle",
  8190. "version": "v7.4.8",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/symfony/twig-bundle.git",
  8194. "reference": "ba1e06d7ff1ebb1d1799b6608d925f4eaba88d95"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/ba1e06d7ff1ebb1d1799b6608d925f4eaba88d95",
  8199. "reference": "ba1e06d7ff1ebb1d1799b6608d925f4eaba88d95",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "composer-runtime-api": ">=2.1",
  8204. "php": ">=8.2",
  8205. "symfony/config": "^7.4|^8.0",
  8206. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8207. "symfony/deprecation-contracts": "^2.5|^3",
  8208. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  8209. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  8210. "symfony/twig-bridge": "^7.3|^8.0",
  8211. "twig/twig": "^3.12"
  8212. },
  8213. "conflict": {
  8214. "symfony/framework-bundle": "<6.4",
  8215. "symfony/translation": "<6.4"
  8216. },
  8217. "require-dev": {
  8218. "symfony/asset": "^6.4|^7.0|^8.0",
  8219. "symfony/expression-language": "^6.4|^7.0|^8.0",
  8220. "symfony/finder": "^6.4|^7.0|^8.0",
  8221. "symfony/form": "^6.4|^7.0|^8.0",
  8222. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  8223. "symfony/routing": "^6.4|^7.0|^8.0",
  8224. "symfony/runtime": "^6.4.13|^7.1.6",
  8225. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  8226. "symfony/translation": "^6.4|^7.0|^8.0",
  8227. "symfony/web-link": "^6.4|^7.0|^8.0",
  8228. "symfony/yaml": "^6.4|^7.0|^8.0"
  8229. },
  8230. "type": "symfony-bundle",
  8231. "autoload": {
  8232. "psr-4": {
  8233. "Symfony\\Bundle\\TwigBundle\\": ""
  8234. },
  8235. "exclude-from-classmap": [
  8236. "/Tests/"
  8237. ]
  8238. },
  8239. "notification-url": "https://packagist.org/downloads/",
  8240. "license": [
  8241. "MIT"
  8242. ],
  8243. "authors": [
  8244. {
  8245. "name": "Fabien Potencier",
  8246. "email": "fabien@symfony.com"
  8247. },
  8248. {
  8249. "name": "Symfony Community",
  8250. "homepage": "https://symfony.com/contributors"
  8251. }
  8252. ],
  8253. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8254. "homepage": "https://symfony.com",
  8255. "support": {
  8256. "source": "https://github.com/symfony/twig-bundle/tree/v7.4.8"
  8257. },
  8258. "funding": [
  8259. {
  8260. "url": "https://symfony.com/sponsor",
  8261. "type": "custom"
  8262. },
  8263. {
  8264. "url": "https://github.com/fabpot",
  8265. "type": "github"
  8266. },
  8267. {
  8268. "url": "https://github.com/nicolas-grekas",
  8269. "type": "github"
  8270. },
  8271. {
  8272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8273. "type": "tidelift"
  8274. }
  8275. ],
  8276. "time": "2026-03-24T13:12:05+00:00"
  8277. },
  8278. {
  8279. "name": "symfony/type-info",
  8280. "version": "v7.4.8",
  8281. "source": {
  8282. "type": "git",
  8283. "url": "https://github.com/symfony/type-info.git",
  8284. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd"
  8285. },
  8286. "dist": {
  8287. "type": "zip",
  8288. "url": "https://api.github.com/repos/symfony/type-info/zipball/6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  8289. "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd",
  8290. "shasum": ""
  8291. },
  8292. "require": {
  8293. "php": ">=8.2",
  8294. "psr/container": "^1.1|^2.0",
  8295. "symfony/deprecation-contracts": "^2.5|^3"
  8296. },
  8297. "conflict": {
  8298. "phpstan/phpdoc-parser": "<1.30"
  8299. },
  8300. "require-dev": {
  8301. "phpstan/phpdoc-parser": "^1.30|^2.0"
  8302. },
  8303. "type": "library",
  8304. "autoload": {
  8305. "psr-4": {
  8306. "Symfony\\Component\\TypeInfo\\": ""
  8307. },
  8308. "exclude-from-classmap": [
  8309. "/Tests/"
  8310. ]
  8311. },
  8312. "notification-url": "https://packagist.org/downloads/",
  8313. "license": [
  8314. "MIT"
  8315. ],
  8316. "authors": [
  8317. {
  8318. "name": "Mathias Arlaud",
  8319. "email": "mathias.arlaud@gmail.com"
  8320. },
  8321. {
  8322. "name": "Baptiste LEDUC",
  8323. "email": "baptiste.leduc@gmail.com"
  8324. },
  8325. {
  8326. "name": "Symfony Community",
  8327. "homepage": "https://symfony.com/contributors"
  8328. }
  8329. ],
  8330. "description": "Extracts PHP types information.",
  8331. "homepage": "https://symfony.com",
  8332. "keywords": [
  8333. "PHPStan",
  8334. "phpdoc",
  8335. "symfony",
  8336. "type"
  8337. ],
  8338. "support": {
  8339. "source": "https://github.com/symfony/type-info/tree/v7.4.8"
  8340. },
  8341. "funding": [
  8342. {
  8343. "url": "https://symfony.com/sponsor",
  8344. "type": "custom"
  8345. },
  8346. {
  8347. "url": "https://github.com/fabpot",
  8348. "type": "github"
  8349. },
  8350. {
  8351. "url": "https://github.com/nicolas-grekas",
  8352. "type": "github"
  8353. },
  8354. {
  8355. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8356. "type": "tidelift"
  8357. }
  8358. ],
  8359. "time": "2026-03-24T13:12:05+00:00"
  8360. },
  8361. {
  8362. "name": "symfony/ux-turbo",
  8363. "version": "v2.34.0",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/symfony/ux-turbo.git",
  8367. "reference": "87511f621db238302a3bb819958a72feda27fc45"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/87511f621db238302a3bb819958a72feda27fc45",
  8372. "reference": "87511f621db238302a3bb819958a72feda27fc45",
  8373. "shasum": ""
  8374. },
  8375. "require": {
  8376. "php": ">=8.1",
  8377. "symfony/stimulus-bundle": "^2.9.1"
  8378. },
  8379. "conflict": {
  8380. "symfony/flex": "<1.13"
  8381. },
  8382. "require-dev": {
  8383. "dbrekelmans/bdi": "dev-main",
  8384. "doctrine/doctrine-bundle": "^2.4.3|^3.0|^4.0",
  8385. "doctrine/orm": "^2.8|^3.0",
  8386. "php-webdriver/webdriver": "^1.15",
  8387. "phpstan/phpstan": "^2.1.17",
  8388. "symfony/asset-mapper": "^6.4|^7.0|^8.0",
  8389. "symfony/debug-bundle": "^5.4|^6.0|^7.0|^8.0",
  8390. "symfony/expression-language": "^5.4|^6.0|^7.0|^8.0",
  8391. "symfony/form": "^5.4|^6.0|^7.0|^8.0",
  8392. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  8393. "symfony/mercure-bundle": "^0.3.7|^0.4.1",
  8394. "symfony/messenger": "^5.4|^6.0|^7.0|^8.0",
  8395. "symfony/panther": "^2.2",
  8396. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0|^8.0",
  8397. "symfony/process": "^5.4|6.3.*|^7.0|^8.0",
  8398. "symfony/property-access": "^5.4|^6.0|^7.0|^8.0",
  8399. "symfony/security-core": "^5.4|^6.0|^7.0|^8.0",
  8400. "symfony/stopwatch": "^5.4|^6.0|^7.0|^8.0",
  8401. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  8402. "symfony/ux-twig-component": "^2.21",
  8403. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0|^8.0"
  8404. },
  8405. "type": "symfony-bundle",
  8406. "extra": {
  8407. "thanks": {
  8408. "url": "https://github.com/symfony/ux",
  8409. "name": "symfony/ux"
  8410. }
  8411. },
  8412. "autoload": {
  8413. "psr-4": {
  8414. "Symfony\\UX\\Turbo\\": "src/"
  8415. }
  8416. },
  8417. "notification-url": "https://packagist.org/downloads/",
  8418. "license": [
  8419. "MIT"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Kévin Dunglas",
  8424. "email": "kevin@dunglas.fr"
  8425. },
  8426. {
  8427. "name": "Symfony Community",
  8428. "homepage": "https://symfony.com/contributors"
  8429. }
  8430. ],
  8431. "description": "Hotwire Turbo integration for Symfony",
  8432. "homepage": "https://symfony.com",
  8433. "keywords": [
  8434. "hotwire",
  8435. "javascript",
  8436. "mercure",
  8437. "symfony-ux",
  8438. "turbo",
  8439. "turbo-stream"
  8440. ],
  8441. "support": {
  8442. "source": "https://github.com/symfony/ux-turbo/tree/v2.34.0"
  8443. },
  8444. "funding": [
  8445. {
  8446. "url": "https://symfony.com/sponsor",
  8447. "type": "custom"
  8448. },
  8449. {
  8450. "url": "https://github.com/fabpot",
  8451. "type": "github"
  8452. },
  8453. {
  8454. "url": "https://github.com/nicolas-grekas",
  8455. "type": "github"
  8456. },
  8457. {
  8458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8459. "type": "tidelift"
  8460. }
  8461. ],
  8462. "time": "2026-03-21T22:29:11+00:00"
  8463. },
  8464. {
  8465. "name": "symfony/validator",
  8466. "version": "v7.4.8",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/symfony/validator.git",
  8470. "reference": "8f73cbddae916756f319b3e195088da216f0f12f"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/symfony/validator/zipball/8f73cbddae916756f319b3e195088da216f0f12f",
  8475. "reference": "8f73cbddae916756f319b3e195088da216f0f12f",
  8476. "shasum": ""
  8477. },
  8478. "require": {
  8479. "php": ">=8.2",
  8480. "symfony/deprecation-contracts": "^2.5|^3",
  8481. "symfony/polyfill-ctype": "~1.8",
  8482. "symfony/polyfill-mbstring": "~1.0",
  8483. "symfony/polyfill-php83": "^1.27",
  8484. "symfony/translation-contracts": "^2.5|^3"
  8485. },
  8486. "conflict": {
  8487. "doctrine/lexer": "<1.1",
  8488. "symfony/dependency-injection": "<6.4",
  8489. "symfony/doctrine-bridge": "<7.0",
  8490. "symfony/expression-language": "<6.4",
  8491. "symfony/http-kernel": "<6.4",
  8492. "symfony/intl": "<6.4",
  8493. "symfony/property-info": "<6.4",
  8494. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8495. "symfony/var-exporter": "<6.4.25|>=7.0,<7.3.3",
  8496. "symfony/yaml": "<6.4"
  8497. },
  8498. "require-dev": {
  8499. "egulias/email-validator": "^2.1.10|^3|^4",
  8500. "symfony/cache": "^6.4|^7.0|^8.0",
  8501. "symfony/config": "^6.4|^7.0|^8.0",
  8502. "symfony/console": "^6.4|^7.0|^8.0",
  8503. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8504. "symfony/expression-language": "^6.4|^7.0|^8.0",
  8505. "symfony/finder": "^6.4|^7.0|^8.0",
  8506. "symfony/http-client": "^6.4|^7.0|^8.0",
  8507. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  8508. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  8509. "symfony/intl": "^6.4|^7.0|^8.0",
  8510. "symfony/mime": "^6.4|^7.0|^8.0",
  8511. "symfony/process": "^6.4|^7.0|^8.0",
  8512. "symfony/property-access": "^6.4|^7.0|^8.0",
  8513. "symfony/property-info": "^6.4|^7.0|^8.0",
  8514. "symfony/string": "^6.4|^7.0|^8.0",
  8515. "symfony/translation": "^6.4.3|^7.0.3|^8.0",
  8516. "symfony/type-info": "^7.1.8",
  8517. "symfony/yaml": "^6.4|^7.0|^8.0"
  8518. },
  8519. "type": "library",
  8520. "autoload": {
  8521. "psr-4": {
  8522. "Symfony\\Component\\Validator\\": ""
  8523. },
  8524. "exclude-from-classmap": [
  8525. "/Tests/",
  8526. "/Resources/bin/"
  8527. ]
  8528. },
  8529. "notification-url": "https://packagist.org/downloads/",
  8530. "license": [
  8531. "MIT"
  8532. ],
  8533. "authors": [
  8534. {
  8535. "name": "Fabien Potencier",
  8536. "email": "fabien@symfony.com"
  8537. },
  8538. {
  8539. "name": "Symfony Community",
  8540. "homepage": "https://symfony.com/contributors"
  8541. }
  8542. ],
  8543. "description": "Provides tools to validate values",
  8544. "homepage": "https://symfony.com",
  8545. "support": {
  8546. "source": "https://github.com/symfony/validator/tree/v7.4.8"
  8547. },
  8548. "funding": [
  8549. {
  8550. "url": "https://symfony.com/sponsor",
  8551. "type": "custom"
  8552. },
  8553. {
  8554. "url": "https://github.com/fabpot",
  8555. "type": "github"
  8556. },
  8557. {
  8558. "url": "https://github.com/nicolas-grekas",
  8559. "type": "github"
  8560. },
  8561. {
  8562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8563. "type": "tidelift"
  8564. }
  8565. ],
  8566. "time": "2026-03-30T12:55:43+00:00"
  8567. },
  8568. {
  8569. "name": "symfony/var-dumper",
  8570. "version": "v7.4.8",
  8571. "source": {
  8572. "type": "git",
  8573. "url": "https://github.com/symfony/var-dumper.git",
  8574. "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd"
  8575. },
  8576. "dist": {
  8577. "type": "zip",
  8578. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9510c3966f749a1d1ff0059e1eabef6cc621e7fd",
  8579. "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd",
  8580. "shasum": ""
  8581. },
  8582. "require": {
  8583. "php": ">=8.2",
  8584. "symfony/deprecation-contracts": "^2.5|^3",
  8585. "symfony/polyfill-mbstring": "~1.0"
  8586. },
  8587. "conflict": {
  8588. "symfony/console": "<6.4"
  8589. },
  8590. "require-dev": {
  8591. "symfony/console": "^6.4|^7.0|^8.0",
  8592. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  8593. "symfony/process": "^6.4|^7.0|^8.0",
  8594. "symfony/uid": "^6.4|^7.0|^8.0",
  8595. "twig/twig": "^3.12"
  8596. },
  8597. "bin": [
  8598. "Resources/bin/var-dump-server"
  8599. ],
  8600. "type": "library",
  8601. "autoload": {
  8602. "files": [
  8603. "Resources/functions/dump.php"
  8604. ],
  8605. "psr-4": {
  8606. "Symfony\\Component\\VarDumper\\": ""
  8607. },
  8608. "exclude-from-classmap": [
  8609. "/Tests/"
  8610. ]
  8611. },
  8612. "notification-url": "https://packagist.org/downloads/",
  8613. "license": [
  8614. "MIT"
  8615. ],
  8616. "authors": [
  8617. {
  8618. "name": "Nicolas Grekas",
  8619. "email": "p@tchwork.com"
  8620. },
  8621. {
  8622. "name": "Symfony Community",
  8623. "homepage": "https://symfony.com/contributors"
  8624. }
  8625. ],
  8626. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8627. "homepage": "https://symfony.com",
  8628. "keywords": [
  8629. "debug",
  8630. "dump"
  8631. ],
  8632. "support": {
  8633. "source": "https://github.com/symfony/var-dumper/tree/v7.4.8"
  8634. },
  8635. "funding": [
  8636. {
  8637. "url": "https://symfony.com/sponsor",
  8638. "type": "custom"
  8639. },
  8640. {
  8641. "url": "https://github.com/fabpot",
  8642. "type": "github"
  8643. },
  8644. {
  8645. "url": "https://github.com/nicolas-grekas",
  8646. "type": "github"
  8647. },
  8648. {
  8649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8650. "type": "tidelift"
  8651. }
  8652. ],
  8653. "time": "2026-03-30T13:44:50+00:00"
  8654. },
  8655. {
  8656. "name": "symfony/var-exporter",
  8657. "version": "v7.4.8",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/symfony/var-exporter.git",
  8661. "reference": "398907e89a2a56fe426f7955c6fa943ec0c77225"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/398907e89a2a56fe426f7955c6fa943ec0c77225",
  8666. "reference": "398907e89a2a56fe426f7955c6fa943ec0c77225",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": ">=8.2",
  8671. "symfony/deprecation-contracts": "^2.5|^3"
  8672. },
  8673. "require-dev": {
  8674. "symfony/property-access": "^6.4|^7.0|^8.0",
  8675. "symfony/serializer": "^6.4|^7.0|^8.0",
  8676. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  8677. },
  8678. "type": "library",
  8679. "autoload": {
  8680. "psr-4": {
  8681. "Symfony\\Component\\VarExporter\\": ""
  8682. },
  8683. "exclude-from-classmap": [
  8684. "/Tests/"
  8685. ]
  8686. },
  8687. "notification-url": "https://packagist.org/downloads/",
  8688. "license": [
  8689. "MIT"
  8690. ],
  8691. "authors": [
  8692. {
  8693. "name": "Nicolas Grekas",
  8694. "email": "p@tchwork.com"
  8695. },
  8696. {
  8697. "name": "Symfony Community",
  8698. "homepage": "https://symfony.com/contributors"
  8699. }
  8700. ],
  8701. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8702. "homepage": "https://symfony.com",
  8703. "keywords": [
  8704. "clone",
  8705. "construct",
  8706. "export",
  8707. "hydrate",
  8708. "instantiate",
  8709. "lazy-loading",
  8710. "proxy",
  8711. "serialize"
  8712. ],
  8713. "support": {
  8714. "source": "https://github.com/symfony/var-exporter/tree/v7.4.8"
  8715. },
  8716. "funding": [
  8717. {
  8718. "url": "https://symfony.com/sponsor",
  8719. "type": "custom"
  8720. },
  8721. {
  8722. "url": "https://github.com/fabpot",
  8723. "type": "github"
  8724. },
  8725. {
  8726. "url": "https://github.com/nicolas-grekas",
  8727. "type": "github"
  8728. },
  8729. {
  8730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8731. "type": "tidelift"
  8732. }
  8733. ],
  8734. "time": "2026-03-24T13:12:05+00:00"
  8735. },
  8736. {
  8737. "name": "symfony/web-link",
  8738. "version": "v7.4.8",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/symfony/web-link.git",
  8742. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/symfony/web-link/zipball/0711009963009e7d6d59149327f3ad633ee3fe25",
  8747. "reference": "0711009963009e7d6d59149327f3ad633ee3fe25",
  8748. "shasum": ""
  8749. },
  8750. "require": {
  8751. "php": ">=8.2",
  8752. "psr/link": "^1.1|^2.0"
  8753. },
  8754. "conflict": {
  8755. "symfony/http-kernel": "<6.4"
  8756. },
  8757. "provide": {
  8758. "psr/link-implementation": "1.0|2.0"
  8759. },
  8760. "require-dev": {
  8761. "symfony/http-kernel": "^6.4|^7.0|^8.0"
  8762. },
  8763. "type": "library",
  8764. "autoload": {
  8765. "psr-4": {
  8766. "Symfony\\Component\\WebLink\\": ""
  8767. },
  8768. "exclude-from-classmap": [
  8769. "/Tests/"
  8770. ]
  8771. },
  8772. "notification-url": "https://packagist.org/downloads/",
  8773. "license": [
  8774. "MIT"
  8775. ],
  8776. "authors": [
  8777. {
  8778. "name": "Kévin Dunglas",
  8779. "email": "dunglas@gmail.com"
  8780. },
  8781. {
  8782. "name": "Symfony Community",
  8783. "homepage": "https://symfony.com/contributors"
  8784. }
  8785. ],
  8786. "description": "Manages links between resources",
  8787. "homepage": "https://symfony.com",
  8788. "keywords": [
  8789. "dns-prefetch",
  8790. "http",
  8791. "http2",
  8792. "link",
  8793. "performance",
  8794. "prefetch",
  8795. "preload",
  8796. "prerender",
  8797. "psr13",
  8798. "push"
  8799. ],
  8800. "support": {
  8801. "source": "https://github.com/symfony/web-link/tree/v7.4.8"
  8802. },
  8803. "funding": [
  8804. {
  8805. "url": "https://symfony.com/sponsor",
  8806. "type": "custom"
  8807. },
  8808. {
  8809. "url": "https://github.com/fabpot",
  8810. "type": "github"
  8811. },
  8812. {
  8813. "url": "https://github.com/nicolas-grekas",
  8814. "type": "github"
  8815. },
  8816. {
  8817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8818. "type": "tidelift"
  8819. }
  8820. ],
  8821. "time": "2026-03-24T13:12:05+00:00"
  8822. },
  8823. {
  8824. "name": "symfony/workflow",
  8825. "version": "v7.4.8",
  8826. "source": {
  8827. "type": "git",
  8828. "url": "https://github.com/symfony/workflow.git",
  8829. "reference": "f2bb1dc60b53e9908a8aff57c92643d6ca761ac5"
  8830. },
  8831. "dist": {
  8832. "type": "zip",
  8833. "url": "https://api.github.com/repos/symfony/workflow/zipball/f2bb1dc60b53e9908a8aff57c92643d6ca761ac5",
  8834. "reference": "f2bb1dc60b53e9908a8aff57c92643d6ca761ac5",
  8835. "shasum": ""
  8836. },
  8837. "require": {
  8838. "php": ">=8.2",
  8839. "symfony/deprecation-contracts": "2.5|^3"
  8840. },
  8841. "conflict": {
  8842. "symfony/event-dispatcher": "<6.4"
  8843. },
  8844. "require-dev": {
  8845. "psr/log": "^1|^2|^3",
  8846. "symfony/config": "^6.4|^7.0|^8.0",
  8847. "symfony/console": "^6.4|^7.0|^8.0",
  8848. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8849. "symfony/error-handler": "^6.4|^7.0|^8.0",
  8850. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  8851. "symfony/expression-language": "^6.4|^7.0|^8.0",
  8852. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  8853. "symfony/security-core": "^6.4|^7.0|^8.0",
  8854. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  8855. "symfony/validator": "^6.4|^7.0|^8.0"
  8856. },
  8857. "type": "library",
  8858. "autoload": {
  8859. "psr-4": {
  8860. "Symfony\\Component\\Workflow\\": ""
  8861. },
  8862. "exclude-from-classmap": [
  8863. "/Tests/"
  8864. ]
  8865. },
  8866. "notification-url": "https://packagist.org/downloads/",
  8867. "license": [
  8868. "MIT"
  8869. ],
  8870. "authors": [
  8871. {
  8872. "name": "Fabien Potencier",
  8873. "email": "fabien@symfony.com"
  8874. },
  8875. {
  8876. "name": "Grégoire Pineau",
  8877. "email": "lyrixx@lyrixx.info"
  8878. },
  8879. {
  8880. "name": "Symfony Community",
  8881. "homepage": "https://symfony.com/contributors"
  8882. }
  8883. ],
  8884. "description": "Provides tools for managing a workflow or finite state machine",
  8885. "homepage": "https://symfony.com",
  8886. "keywords": [
  8887. "petrinet",
  8888. "place",
  8889. "state",
  8890. "statemachine",
  8891. "transition",
  8892. "workflow"
  8893. ],
  8894. "support": {
  8895. "source": "https://github.com/symfony/workflow/tree/v7.4.8"
  8896. },
  8897. "funding": [
  8898. {
  8899. "url": "https://symfony.com/sponsor",
  8900. "type": "custom"
  8901. },
  8902. {
  8903. "url": "https://github.com/fabpot",
  8904. "type": "github"
  8905. },
  8906. {
  8907. "url": "https://github.com/nicolas-grekas",
  8908. "type": "github"
  8909. },
  8910. {
  8911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8912. "type": "tidelift"
  8913. }
  8914. ],
  8915. "time": "2026-03-24T13:12:05+00:00"
  8916. },
  8917. {
  8918. "name": "symfony/yaml",
  8919. "version": "v7.4.8",
  8920. "source": {
  8921. "type": "git",
  8922. "url": "https://github.com/symfony/yaml.git",
  8923. "reference": "c58fdf7b3d6c2995368264c49e4e8b05bcff2883"
  8924. },
  8925. "dist": {
  8926. "type": "zip",
  8927. "url": "https://api.github.com/repos/symfony/yaml/zipball/c58fdf7b3d6c2995368264c49e4e8b05bcff2883",
  8928. "reference": "c58fdf7b3d6c2995368264c49e4e8b05bcff2883",
  8929. "shasum": ""
  8930. },
  8931. "require": {
  8932. "php": ">=8.2",
  8933. "symfony/deprecation-contracts": "^2.5|^3",
  8934. "symfony/polyfill-ctype": "^1.8"
  8935. },
  8936. "conflict": {
  8937. "symfony/console": "<6.4"
  8938. },
  8939. "require-dev": {
  8940. "symfony/console": "^6.4|^7.0|^8.0"
  8941. },
  8942. "bin": [
  8943. "Resources/bin/yaml-lint"
  8944. ],
  8945. "type": "library",
  8946. "autoload": {
  8947. "psr-4": {
  8948. "Symfony\\Component\\Yaml\\": ""
  8949. },
  8950. "exclude-from-classmap": [
  8951. "/Tests/"
  8952. ]
  8953. },
  8954. "notification-url": "https://packagist.org/downloads/",
  8955. "license": [
  8956. "MIT"
  8957. ],
  8958. "authors": [
  8959. {
  8960. "name": "Fabien Potencier",
  8961. "email": "fabien@symfony.com"
  8962. },
  8963. {
  8964. "name": "Symfony Community",
  8965. "homepage": "https://symfony.com/contributors"
  8966. }
  8967. ],
  8968. "description": "Loads and dumps YAML files",
  8969. "homepage": "https://symfony.com",
  8970. "support": {
  8971. "source": "https://github.com/symfony/yaml/tree/v7.4.8"
  8972. },
  8973. "funding": [
  8974. {
  8975. "url": "https://symfony.com/sponsor",
  8976. "type": "custom"
  8977. },
  8978. {
  8979. "url": "https://github.com/fabpot",
  8980. "type": "github"
  8981. },
  8982. {
  8983. "url": "https://github.com/nicolas-grekas",
  8984. "type": "github"
  8985. },
  8986. {
  8987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8988. "type": "tidelift"
  8989. }
  8990. ],
  8991. "time": "2026-03-24T13:12:05+00:00"
  8992. },
  8993. {
  8994. "name": "twig/extra-bundle",
  8995. "version": "v3.24.0",
  8996. "source": {
  8997. "type": "git",
  8998. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8999. "reference": "6a621fcb1f28aa9ea7b34a99047ae0cdf5b834c9"
  9000. },
  9001. "dist": {
  9002. "type": "zip",
  9003. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/6a621fcb1f28aa9ea7b34a99047ae0cdf5b834c9",
  9004. "reference": "6a621fcb1f28aa9ea7b34a99047ae0cdf5b834c9",
  9005. "shasum": ""
  9006. },
  9007. "require": {
  9008. "php": ">=8.1.0",
  9009. "symfony/framework-bundle": "^5.4|^6.4|^7.0|^8.0",
  9010. "symfony/twig-bundle": "^5.4|^6.4|^7.0|^8.0",
  9011. "twig/twig": "^3.2|^4.0"
  9012. },
  9013. "require-dev": {
  9014. "league/commonmark": "^2.7",
  9015. "symfony/phpunit-bridge": "^6.4|^7.0",
  9016. "twig/cache-extra": "^3.0",
  9017. "twig/cssinliner-extra": "^3.0",
  9018. "twig/html-extra": "^3.0",
  9019. "twig/inky-extra": "^3.0",
  9020. "twig/intl-extra": "^3.0",
  9021. "twig/markdown-extra": "^3.0",
  9022. "twig/string-extra": "^3.0"
  9023. },
  9024. "type": "symfony-bundle",
  9025. "autoload": {
  9026. "psr-4": {
  9027. "Twig\\Extra\\TwigExtraBundle\\": ""
  9028. },
  9029. "exclude-from-classmap": [
  9030. "/Tests/"
  9031. ]
  9032. },
  9033. "notification-url": "https://packagist.org/downloads/",
  9034. "license": [
  9035. "MIT"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Fabien Potencier",
  9040. "email": "fabien@symfony.com",
  9041. "homepage": "http://fabien.potencier.org",
  9042. "role": "Lead Developer"
  9043. }
  9044. ],
  9045. "description": "A Symfony bundle for extra Twig extensions",
  9046. "homepage": "https://twig.symfony.com",
  9047. "keywords": [
  9048. "bundle",
  9049. "extra",
  9050. "twig"
  9051. ],
  9052. "support": {
  9053. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.24.0"
  9054. },
  9055. "funding": [
  9056. {
  9057. "url": "https://github.com/fabpot",
  9058. "type": "github"
  9059. },
  9060. {
  9061. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9062. "type": "tidelift"
  9063. }
  9064. ],
  9065. "time": "2026-02-07T08:07:38+00:00"
  9066. },
  9067. {
  9068. "name": "twig/intl-extra",
  9069. "version": "v3.24.0",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/twigphp/intl-extra.git",
  9073. "reference": "32f15a38d45a8d0ec11bc8a3d97d3ac2a261499f"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/32f15a38d45a8d0ec11bc8a3d97d3ac2a261499f",
  9078. "reference": "32f15a38d45a8d0ec11bc8a3d97d3ac2a261499f",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "php": ">=8.1.0",
  9083. "symfony/intl": "^5.4|^6.4|^7.0|^8.0",
  9084. "twig/twig": "^3.13|^4.0"
  9085. },
  9086. "require-dev": {
  9087. "symfony/phpunit-bridge": "^6.4|^7.0"
  9088. },
  9089. "type": "library",
  9090. "autoload": {
  9091. "psr-4": {
  9092. "Twig\\Extra\\Intl\\": ""
  9093. },
  9094. "exclude-from-classmap": [
  9095. "/Tests/"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "MIT"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Fabien Potencier",
  9105. "email": "fabien@symfony.com",
  9106. "homepage": "http://fabien.potencier.org",
  9107. "role": "Lead Developer"
  9108. }
  9109. ],
  9110. "description": "A Twig extension for Intl",
  9111. "homepage": "https://twig.symfony.com",
  9112. "keywords": [
  9113. "intl",
  9114. "twig"
  9115. ],
  9116. "support": {
  9117. "source": "https://github.com/twigphp/intl-extra/tree/v3.24.0"
  9118. },
  9119. "funding": [
  9120. {
  9121. "url": "https://github.com/fabpot",
  9122. "type": "github"
  9123. },
  9124. {
  9125. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9126. "type": "tidelift"
  9127. }
  9128. ],
  9129. "time": "2026-01-17T13:57:47+00:00"
  9130. },
  9131. {
  9132. "name": "twig/markdown-extra",
  9133. "version": "v3.24.0",
  9134. "source": {
  9135. "type": "git",
  9136. "url": "https://github.com/twigphp/markdown-extra.git",
  9137. "reference": "67a11120356e034a5bbc70c5b9b9a4d0f31ca06e"
  9138. },
  9139. "dist": {
  9140. "type": "zip",
  9141. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/67a11120356e034a5bbc70c5b9b9a4d0f31ca06e",
  9142. "reference": "67a11120356e034a5bbc70c5b9b9a4d0f31ca06e",
  9143. "shasum": ""
  9144. },
  9145. "require": {
  9146. "php": ">=8.1.0",
  9147. "symfony/deprecation-contracts": "^2.5|^3",
  9148. "twig/twig": "^3.13|^4.0"
  9149. },
  9150. "require-dev": {
  9151. "erusev/parsedown": "dev-master as 1.x-dev",
  9152. "league/commonmark": "^2.7",
  9153. "league/html-to-markdown": "^4.8|^5.0",
  9154. "michelf/php-markdown": "^1.8|^2.0",
  9155. "symfony/phpunit-bridge": "^6.4|^7.0"
  9156. },
  9157. "type": "library",
  9158. "autoload": {
  9159. "files": [
  9160. "Resources/functions.php"
  9161. ],
  9162. "psr-4": {
  9163. "Twig\\Extra\\Markdown\\": ""
  9164. },
  9165. "exclude-from-classmap": [
  9166. "/Tests/"
  9167. ]
  9168. },
  9169. "notification-url": "https://packagist.org/downloads/",
  9170. "license": [
  9171. "MIT"
  9172. ],
  9173. "authors": [
  9174. {
  9175. "name": "Fabien Potencier",
  9176. "email": "fabien@symfony.com",
  9177. "homepage": "http://fabien.potencier.org",
  9178. "role": "Lead Developer"
  9179. }
  9180. ],
  9181. "description": "A Twig extension for Markdown",
  9182. "homepage": "https://twig.symfony.com",
  9183. "keywords": [
  9184. "html",
  9185. "markdown",
  9186. "twig"
  9187. ],
  9188. "support": {
  9189. "source": "https://github.com/twigphp/markdown-extra/tree/v3.24.0"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://github.com/fabpot",
  9194. "type": "github"
  9195. },
  9196. {
  9197. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9198. "type": "tidelift"
  9199. }
  9200. ],
  9201. "time": "2026-02-07T08:07:38+00:00"
  9202. },
  9203. {
  9204. "name": "twig/twig",
  9205. "version": "v3.24.0",
  9206. "source": {
  9207. "type": "git",
  9208. "url": "https://github.com/twigphp/Twig.git",
  9209. "reference": "a6769aefb305efef849dc25c9fd1653358c148f0"
  9210. },
  9211. "dist": {
  9212. "type": "zip",
  9213. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6769aefb305efef849dc25c9fd1653358c148f0",
  9214. "reference": "a6769aefb305efef849dc25c9fd1653358c148f0",
  9215. "shasum": ""
  9216. },
  9217. "require": {
  9218. "php": ">=8.1.0",
  9219. "symfony/deprecation-contracts": "^2.5|^3",
  9220. "symfony/polyfill-ctype": "^1.8",
  9221. "symfony/polyfill-mbstring": "^1.3"
  9222. },
  9223. "require-dev": {
  9224. "php-cs-fixer/shim": "^3.0@stable",
  9225. "phpstan/phpstan": "^2.0@stable",
  9226. "psr/container": "^1.0|^2.0",
  9227. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  9228. },
  9229. "type": "library",
  9230. "autoload": {
  9231. "files": [
  9232. "src/Resources/core.php",
  9233. "src/Resources/debug.php",
  9234. "src/Resources/escaper.php",
  9235. "src/Resources/string_loader.php"
  9236. ],
  9237. "psr-4": {
  9238. "Twig\\": "src/"
  9239. }
  9240. },
  9241. "notification-url": "https://packagist.org/downloads/",
  9242. "license": [
  9243. "BSD-3-Clause"
  9244. ],
  9245. "authors": [
  9246. {
  9247. "name": "Fabien Potencier",
  9248. "email": "fabien@symfony.com",
  9249. "homepage": "http://fabien.potencier.org",
  9250. "role": "Lead Developer"
  9251. },
  9252. {
  9253. "name": "Twig Team",
  9254. "role": "Contributors"
  9255. },
  9256. {
  9257. "name": "Armin Ronacher",
  9258. "email": "armin.ronacher@active-4.com",
  9259. "role": "Project Founder"
  9260. }
  9261. ],
  9262. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9263. "homepage": "https://twig.symfony.com",
  9264. "keywords": [
  9265. "templating"
  9266. ],
  9267. "support": {
  9268. "issues": "https://github.com/twigphp/Twig/issues",
  9269. "source": "https://github.com/twigphp/Twig/tree/v3.24.0"
  9270. },
  9271. "funding": [
  9272. {
  9273. "url": "https://github.com/fabpot",
  9274. "type": "github"
  9275. },
  9276. {
  9277. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9278. "type": "tidelift"
  9279. }
  9280. ],
  9281. "time": "2026-03-17T21:31:11+00:00"
  9282. },
  9283. {
  9284. "name": "webmozart/assert",
  9285. "version": "2.1.6",
  9286. "source": {
  9287. "type": "git",
  9288. "url": "https://github.com/webmozarts/assert.git",
  9289. "reference": "ff31ad6efc62e66e518fbab1cde3453d389bcdc8"
  9290. },
  9291. "dist": {
  9292. "type": "zip",
  9293. "url": "https://api.github.com/repos/webmozarts/assert/zipball/ff31ad6efc62e66e518fbab1cde3453d389bcdc8",
  9294. "reference": "ff31ad6efc62e66e518fbab1cde3453d389bcdc8",
  9295. "shasum": ""
  9296. },
  9297. "require": {
  9298. "ext-ctype": "*",
  9299. "ext-date": "*",
  9300. "ext-filter": "*",
  9301. "php": "^8.2"
  9302. },
  9303. "suggest": {
  9304. "ext-intl": "",
  9305. "ext-simplexml": "",
  9306. "ext-spl": ""
  9307. },
  9308. "type": "library",
  9309. "extra": {
  9310. "branch-alias": {
  9311. "dev-feature/2-0": "2.0-dev"
  9312. }
  9313. },
  9314. "autoload": {
  9315. "psr-4": {
  9316. "Webmozart\\Assert\\": "src/"
  9317. }
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "MIT"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Bernhard Schussek",
  9326. "email": "bschussek@gmail.com"
  9327. },
  9328. {
  9329. "name": "Woody Gilk",
  9330. "email": "woody.gilk@gmail.com"
  9331. }
  9332. ],
  9333. "description": "Assertions to validate method input/output with nice error messages.",
  9334. "keywords": [
  9335. "assert",
  9336. "check",
  9337. "validate"
  9338. ],
  9339. "support": {
  9340. "issues": "https://github.com/webmozarts/assert/issues",
  9341. "source": "https://github.com/webmozarts/assert/tree/2.1.6"
  9342. },
  9343. "time": "2026-02-27T10:28:38+00:00"
  9344. }
  9345. ],
  9346. "packages-dev": [
  9347. {
  9348. "name": "fakerphp/faker",
  9349. "version": "v1.24.1",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/FakerPHP/Faker.git",
  9353. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9358. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9359. "shasum": ""
  9360. },
  9361. "require": {
  9362. "php": "^7.4 || ^8.0",
  9363. "psr/container": "^1.0 || ^2.0",
  9364. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9365. },
  9366. "conflict": {
  9367. "fzaninotto/faker": "*"
  9368. },
  9369. "require-dev": {
  9370. "bamarni/composer-bin-plugin": "^1.4.1",
  9371. "doctrine/persistence": "^1.3 || ^2.0",
  9372. "ext-intl": "*",
  9373. "phpunit/phpunit": "^9.5.26",
  9374. "symfony/phpunit-bridge": "^5.4.16"
  9375. },
  9376. "suggest": {
  9377. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9378. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9379. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9380. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9381. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9382. },
  9383. "type": "library",
  9384. "autoload": {
  9385. "psr-4": {
  9386. "Faker\\": "src/Faker/"
  9387. }
  9388. },
  9389. "notification-url": "https://packagist.org/downloads/",
  9390. "license": [
  9391. "MIT"
  9392. ],
  9393. "authors": [
  9394. {
  9395. "name": "François Zaninotto"
  9396. }
  9397. ],
  9398. "description": "Faker is a PHP library that generates fake data for you.",
  9399. "keywords": [
  9400. "data",
  9401. "faker",
  9402. "fixtures"
  9403. ],
  9404. "support": {
  9405. "issues": "https://github.com/FakerPHP/Faker/issues",
  9406. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9407. },
  9408. "time": "2024-11-21T13:46:39+00:00"
  9409. },
  9410. {
  9411. "name": "masterminds/html5",
  9412. "version": "2.10.0",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/Masterminds/html5-php.git",
  9416. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  9421. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  9422. "shasum": ""
  9423. },
  9424. "require": {
  9425. "ext-dom": "*",
  9426. "php": ">=5.3.0"
  9427. },
  9428. "require-dev": {
  9429. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9430. },
  9431. "type": "library",
  9432. "extra": {
  9433. "branch-alias": {
  9434. "dev-master": "2.7-dev"
  9435. }
  9436. },
  9437. "autoload": {
  9438. "psr-4": {
  9439. "Masterminds\\": "src"
  9440. }
  9441. },
  9442. "notification-url": "https://packagist.org/downloads/",
  9443. "license": [
  9444. "MIT"
  9445. ],
  9446. "authors": [
  9447. {
  9448. "name": "Matt Butcher",
  9449. "email": "technosophos@gmail.com"
  9450. },
  9451. {
  9452. "name": "Matt Farina",
  9453. "email": "matt@mattfarina.com"
  9454. },
  9455. {
  9456. "name": "Asmir Mustafic",
  9457. "email": "goetas@gmail.com"
  9458. }
  9459. ],
  9460. "description": "An HTML5 parser and serializer.",
  9461. "homepage": "http://masterminds.github.io/html5-php",
  9462. "keywords": [
  9463. "HTML5",
  9464. "dom",
  9465. "html",
  9466. "parser",
  9467. "querypath",
  9468. "serializer",
  9469. "xml"
  9470. ],
  9471. "support": {
  9472. "issues": "https://github.com/Masterminds/html5-php/issues",
  9473. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  9474. },
  9475. "time": "2025-07-25T09:04:22+00:00"
  9476. },
  9477. {
  9478. "name": "myclabs/deep-copy",
  9479. "version": "1.13.4",
  9480. "source": {
  9481. "type": "git",
  9482. "url": "https://github.com/myclabs/DeepCopy.git",
  9483. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  9484. },
  9485. "dist": {
  9486. "type": "zip",
  9487. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  9488. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  9489. "shasum": ""
  9490. },
  9491. "require": {
  9492. "php": "^7.1 || ^8.0"
  9493. },
  9494. "conflict": {
  9495. "doctrine/collections": "<1.6.8",
  9496. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9497. },
  9498. "require-dev": {
  9499. "doctrine/collections": "^1.6.8",
  9500. "doctrine/common": "^2.13.3 || ^3.2.2",
  9501. "phpspec/prophecy": "^1.10",
  9502. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9503. },
  9504. "type": "library",
  9505. "autoload": {
  9506. "files": [
  9507. "src/DeepCopy/deep_copy.php"
  9508. ],
  9509. "psr-4": {
  9510. "DeepCopy\\": "src/DeepCopy/"
  9511. }
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "MIT"
  9516. ],
  9517. "description": "Create deep copies (clones) of your objects",
  9518. "keywords": [
  9519. "clone",
  9520. "copy",
  9521. "duplicate",
  9522. "object",
  9523. "object graph"
  9524. ],
  9525. "support": {
  9526. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9527. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  9528. },
  9529. "funding": [
  9530. {
  9531. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9532. "type": "tidelift"
  9533. }
  9534. ],
  9535. "time": "2025-08-01T08:46:24+00:00"
  9536. },
  9537. {
  9538. "name": "nikic/php-parser",
  9539. "version": "v5.7.0",
  9540. "source": {
  9541. "type": "git",
  9542. "url": "https://github.com/nikic/PHP-Parser.git",
  9543. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  9544. },
  9545. "dist": {
  9546. "type": "zip",
  9547. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9548. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9549. "shasum": ""
  9550. },
  9551. "require": {
  9552. "ext-ctype": "*",
  9553. "ext-json": "*",
  9554. "ext-tokenizer": "*",
  9555. "php": ">=7.4"
  9556. },
  9557. "require-dev": {
  9558. "ircmaxell/php-yacc": "^0.0.7",
  9559. "phpunit/phpunit": "^9.0"
  9560. },
  9561. "bin": [
  9562. "bin/php-parse"
  9563. ],
  9564. "type": "library",
  9565. "extra": {
  9566. "branch-alias": {
  9567. "dev-master": "5.x-dev"
  9568. }
  9569. },
  9570. "autoload": {
  9571. "psr-4": {
  9572. "PhpParser\\": "lib/PhpParser"
  9573. }
  9574. },
  9575. "notification-url": "https://packagist.org/downloads/",
  9576. "license": [
  9577. "BSD-3-Clause"
  9578. ],
  9579. "authors": [
  9580. {
  9581. "name": "Nikita Popov"
  9582. }
  9583. ],
  9584. "description": "A PHP parser written in PHP",
  9585. "keywords": [
  9586. "parser",
  9587. "php"
  9588. ],
  9589. "support": {
  9590. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9591. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  9592. },
  9593. "time": "2025-12-06T11:56:16+00:00"
  9594. },
  9595. {
  9596. "name": "phar-io/manifest",
  9597. "version": "2.0.4",
  9598. "source": {
  9599. "type": "git",
  9600. "url": "https://github.com/phar-io/manifest.git",
  9601. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9602. },
  9603. "dist": {
  9604. "type": "zip",
  9605. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9606. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9607. "shasum": ""
  9608. },
  9609. "require": {
  9610. "ext-dom": "*",
  9611. "ext-libxml": "*",
  9612. "ext-phar": "*",
  9613. "ext-xmlwriter": "*",
  9614. "phar-io/version": "^3.0.1",
  9615. "php": "^7.2 || ^8.0"
  9616. },
  9617. "type": "library",
  9618. "extra": {
  9619. "branch-alias": {
  9620. "dev-master": "2.0.x-dev"
  9621. }
  9622. },
  9623. "autoload": {
  9624. "classmap": [
  9625. "src/"
  9626. ]
  9627. },
  9628. "notification-url": "https://packagist.org/downloads/",
  9629. "license": [
  9630. "BSD-3-Clause"
  9631. ],
  9632. "authors": [
  9633. {
  9634. "name": "Arne Blankerts",
  9635. "email": "arne@blankerts.de",
  9636. "role": "Developer"
  9637. },
  9638. {
  9639. "name": "Sebastian Heuer",
  9640. "email": "sebastian@phpeople.de",
  9641. "role": "Developer"
  9642. },
  9643. {
  9644. "name": "Sebastian Bergmann",
  9645. "email": "sebastian@phpunit.de",
  9646. "role": "Developer"
  9647. }
  9648. ],
  9649. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9650. "support": {
  9651. "issues": "https://github.com/phar-io/manifest/issues",
  9652. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9653. },
  9654. "funding": [
  9655. {
  9656. "url": "https://github.com/theseer",
  9657. "type": "github"
  9658. }
  9659. ],
  9660. "time": "2024-03-03T12:33:53+00:00"
  9661. },
  9662. {
  9663. "name": "phar-io/version",
  9664. "version": "3.2.1",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/phar-io/version.git",
  9668. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9673. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9674. "shasum": ""
  9675. },
  9676. "require": {
  9677. "php": "^7.2 || ^8.0"
  9678. },
  9679. "type": "library",
  9680. "autoload": {
  9681. "classmap": [
  9682. "src/"
  9683. ]
  9684. },
  9685. "notification-url": "https://packagist.org/downloads/",
  9686. "license": [
  9687. "BSD-3-Clause"
  9688. ],
  9689. "authors": [
  9690. {
  9691. "name": "Arne Blankerts",
  9692. "email": "arne@blankerts.de",
  9693. "role": "Developer"
  9694. },
  9695. {
  9696. "name": "Sebastian Heuer",
  9697. "email": "sebastian@phpeople.de",
  9698. "role": "Developer"
  9699. },
  9700. {
  9701. "name": "Sebastian Bergmann",
  9702. "email": "sebastian@phpunit.de",
  9703. "role": "Developer"
  9704. }
  9705. ],
  9706. "description": "Library for handling version information and constraints",
  9707. "support": {
  9708. "issues": "https://github.com/phar-io/version/issues",
  9709. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9710. },
  9711. "time": "2022-02-21T01:04:05+00:00"
  9712. },
  9713. {
  9714. "name": "phpunit/php-code-coverage",
  9715. "version": "9.2.32",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9719. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9724. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "ext-dom": "*",
  9729. "ext-libxml": "*",
  9730. "ext-xmlwriter": "*",
  9731. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9732. "php": ">=7.3",
  9733. "phpunit/php-file-iterator": "^3.0.6",
  9734. "phpunit/php-text-template": "^2.0.4",
  9735. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9736. "sebastian/complexity": "^2.0.3",
  9737. "sebastian/environment": "^5.1.5",
  9738. "sebastian/lines-of-code": "^1.0.4",
  9739. "sebastian/version": "^3.0.2",
  9740. "theseer/tokenizer": "^1.2.3"
  9741. },
  9742. "require-dev": {
  9743. "phpunit/phpunit": "^9.6"
  9744. },
  9745. "suggest": {
  9746. "ext-pcov": "PHP extension that provides line coverage",
  9747. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9748. },
  9749. "type": "library",
  9750. "extra": {
  9751. "branch-alias": {
  9752. "dev-main": "9.2.x-dev"
  9753. }
  9754. },
  9755. "autoload": {
  9756. "classmap": [
  9757. "src/"
  9758. ]
  9759. },
  9760. "notification-url": "https://packagist.org/downloads/",
  9761. "license": [
  9762. "BSD-3-Clause"
  9763. ],
  9764. "authors": [
  9765. {
  9766. "name": "Sebastian Bergmann",
  9767. "email": "sebastian@phpunit.de",
  9768. "role": "lead"
  9769. }
  9770. ],
  9771. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9772. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9773. "keywords": [
  9774. "coverage",
  9775. "testing",
  9776. "xunit"
  9777. ],
  9778. "support": {
  9779. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9780. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9781. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9782. },
  9783. "funding": [
  9784. {
  9785. "url": "https://github.com/sebastianbergmann",
  9786. "type": "github"
  9787. }
  9788. ],
  9789. "time": "2024-08-22T04:23:01+00:00"
  9790. },
  9791. {
  9792. "name": "phpunit/php-file-iterator",
  9793. "version": "3.0.6",
  9794. "source": {
  9795. "type": "git",
  9796. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9797. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9798. },
  9799. "dist": {
  9800. "type": "zip",
  9801. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9802. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9803. "shasum": ""
  9804. },
  9805. "require": {
  9806. "php": ">=7.3"
  9807. },
  9808. "require-dev": {
  9809. "phpunit/phpunit": "^9.3"
  9810. },
  9811. "type": "library",
  9812. "extra": {
  9813. "branch-alias": {
  9814. "dev-master": "3.0-dev"
  9815. }
  9816. },
  9817. "autoload": {
  9818. "classmap": [
  9819. "src/"
  9820. ]
  9821. },
  9822. "notification-url": "https://packagist.org/downloads/",
  9823. "license": [
  9824. "BSD-3-Clause"
  9825. ],
  9826. "authors": [
  9827. {
  9828. "name": "Sebastian Bergmann",
  9829. "email": "sebastian@phpunit.de",
  9830. "role": "lead"
  9831. }
  9832. ],
  9833. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9834. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9835. "keywords": [
  9836. "filesystem",
  9837. "iterator"
  9838. ],
  9839. "support": {
  9840. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9841. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9842. },
  9843. "funding": [
  9844. {
  9845. "url": "https://github.com/sebastianbergmann",
  9846. "type": "github"
  9847. }
  9848. ],
  9849. "time": "2021-12-02T12:48:52+00:00"
  9850. },
  9851. {
  9852. "name": "phpunit/php-invoker",
  9853. "version": "3.1.1",
  9854. "source": {
  9855. "type": "git",
  9856. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9857. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9858. },
  9859. "dist": {
  9860. "type": "zip",
  9861. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9862. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9863. "shasum": ""
  9864. },
  9865. "require": {
  9866. "php": ">=7.3"
  9867. },
  9868. "require-dev": {
  9869. "ext-pcntl": "*",
  9870. "phpunit/phpunit": "^9.3"
  9871. },
  9872. "suggest": {
  9873. "ext-pcntl": "*"
  9874. },
  9875. "type": "library",
  9876. "extra": {
  9877. "branch-alias": {
  9878. "dev-master": "3.1-dev"
  9879. }
  9880. },
  9881. "autoload": {
  9882. "classmap": [
  9883. "src/"
  9884. ]
  9885. },
  9886. "notification-url": "https://packagist.org/downloads/",
  9887. "license": [
  9888. "BSD-3-Clause"
  9889. ],
  9890. "authors": [
  9891. {
  9892. "name": "Sebastian Bergmann",
  9893. "email": "sebastian@phpunit.de",
  9894. "role": "lead"
  9895. }
  9896. ],
  9897. "description": "Invoke callables with a timeout",
  9898. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9899. "keywords": [
  9900. "process"
  9901. ],
  9902. "support": {
  9903. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9904. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9905. },
  9906. "funding": [
  9907. {
  9908. "url": "https://github.com/sebastianbergmann",
  9909. "type": "github"
  9910. }
  9911. ],
  9912. "time": "2020-09-28T05:58:55+00:00"
  9913. },
  9914. {
  9915. "name": "phpunit/php-text-template",
  9916. "version": "2.0.4",
  9917. "source": {
  9918. "type": "git",
  9919. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9920. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9921. },
  9922. "dist": {
  9923. "type": "zip",
  9924. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9925. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9926. "shasum": ""
  9927. },
  9928. "require": {
  9929. "php": ">=7.3"
  9930. },
  9931. "require-dev": {
  9932. "phpunit/phpunit": "^9.3"
  9933. },
  9934. "type": "library",
  9935. "extra": {
  9936. "branch-alias": {
  9937. "dev-master": "2.0-dev"
  9938. }
  9939. },
  9940. "autoload": {
  9941. "classmap": [
  9942. "src/"
  9943. ]
  9944. },
  9945. "notification-url": "https://packagist.org/downloads/",
  9946. "license": [
  9947. "BSD-3-Clause"
  9948. ],
  9949. "authors": [
  9950. {
  9951. "name": "Sebastian Bergmann",
  9952. "email": "sebastian@phpunit.de",
  9953. "role": "lead"
  9954. }
  9955. ],
  9956. "description": "Simple template engine.",
  9957. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9958. "keywords": [
  9959. "template"
  9960. ],
  9961. "support": {
  9962. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9963. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9964. },
  9965. "funding": [
  9966. {
  9967. "url": "https://github.com/sebastianbergmann",
  9968. "type": "github"
  9969. }
  9970. ],
  9971. "time": "2020-10-26T05:33:50+00:00"
  9972. },
  9973. {
  9974. "name": "phpunit/php-timer",
  9975. "version": "5.0.3",
  9976. "source": {
  9977. "type": "git",
  9978. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9979. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9980. },
  9981. "dist": {
  9982. "type": "zip",
  9983. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9984. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9985. "shasum": ""
  9986. },
  9987. "require": {
  9988. "php": ">=7.3"
  9989. },
  9990. "require-dev": {
  9991. "phpunit/phpunit": "^9.3"
  9992. },
  9993. "type": "library",
  9994. "extra": {
  9995. "branch-alias": {
  9996. "dev-master": "5.0-dev"
  9997. }
  9998. },
  9999. "autoload": {
  10000. "classmap": [
  10001. "src/"
  10002. ]
  10003. },
  10004. "notification-url": "https://packagist.org/downloads/",
  10005. "license": [
  10006. "BSD-3-Clause"
  10007. ],
  10008. "authors": [
  10009. {
  10010. "name": "Sebastian Bergmann",
  10011. "email": "sebastian@phpunit.de",
  10012. "role": "lead"
  10013. }
  10014. ],
  10015. "description": "Utility class for timing",
  10016. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10017. "keywords": [
  10018. "timer"
  10019. ],
  10020. "support": {
  10021. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10022. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/sebastianbergmann",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2020-10-26T13:16:10+00:00"
  10031. },
  10032. {
  10033. "name": "phpunit/phpunit",
  10034. "version": "9.6.34",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10038. "reference": "b36f02317466907a230d3aa1d34467041271ef4a"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a",
  10043. "reference": "b36f02317466907a230d3aa1d34467041271ef4a",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "doctrine/instantiator": "^1.5.0 || ^2",
  10048. "ext-dom": "*",
  10049. "ext-json": "*",
  10050. "ext-libxml": "*",
  10051. "ext-mbstring": "*",
  10052. "ext-xml": "*",
  10053. "ext-xmlwriter": "*",
  10054. "myclabs/deep-copy": "^1.13.4",
  10055. "phar-io/manifest": "^2.0.4",
  10056. "phar-io/version": "^3.2.1",
  10057. "php": ">=7.3",
  10058. "phpunit/php-code-coverage": "^9.2.32",
  10059. "phpunit/php-file-iterator": "^3.0.6",
  10060. "phpunit/php-invoker": "^3.1.1",
  10061. "phpunit/php-text-template": "^2.0.4",
  10062. "phpunit/php-timer": "^5.0.3",
  10063. "sebastian/cli-parser": "^1.0.2",
  10064. "sebastian/code-unit": "^1.0.8",
  10065. "sebastian/comparator": "^4.0.10",
  10066. "sebastian/diff": "^4.0.6",
  10067. "sebastian/environment": "^5.1.5",
  10068. "sebastian/exporter": "^4.0.8",
  10069. "sebastian/global-state": "^5.0.8",
  10070. "sebastian/object-enumerator": "^4.0.4",
  10071. "sebastian/resource-operations": "^3.0.4",
  10072. "sebastian/type": "^3.2.1",
  10073. "sebastian/version": "^3.0.2"
  10074. },
  10075. "suggest": {
  10076. "ext-soap": "To be able to generate mocks based on WSDL files",
  10077. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10078. },
  10079. "bin": [
  10080. "phpunit"
  10081. ],
  10082. "type": "library",
  10083. "extra": {
  10084. "branch-alias": {
  10085. "dev-master": "9.6-dev"
  10086. }
  10087. },
  10088. "autoload": {
  10089. "files": [
  10090. "src/Framework/Assert/Functions.php"
  10091. ],
  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. "role": "lead"
  10105. }
  10106. ],
  10107. "description": "The PHP Unit Testing framework.",
  10108. "homepage": "https://phpunit.de/",
  10109. "keywords": [
  10110. "phpunit",
  10111. "testing",
  10112. "xunit"
  10113. ],
  10114. "support": {
  10115. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10116. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10117. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.34"
  10118. },
  10119. "funding": [
  10120. {
  10121. "url": "https://phpunit.de/sponsors.html",
  10122. "type": "custom"
  10123. },
  10124. {
  10125. "url": "https://github.com/sebastianbergmann",
  10126. "type": "github"
  10127. },
  10128. {
  10129. "url": "https://liberapay.com/sebastianbergmann",
  10130. "type": "liberapay"
  10131. },
  10132. {
  10133. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10134. "type": "thanks_dev"
  10135. },
  10136. {
  10137. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10138. "type": "tidelift"
  10139. }
  10140. ],
  10141. "time": "2026-01-27T05:45:00+00:00"
  10142. },
  10143. {
  10144. "name": "sebastian/cli-parser",
  10145. "version": "1.0.2",
  10146. "source": {
  10147. "type": "git",
  10148. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10149. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  10150. },
  10151. "dist": {
  10152. "type": "zip",
  10153. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10154. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10155. "shasum": ""
  10156. },
  10157. "require": {
  10158. "php": ">=7.3"
  10159. },
  10160. "require-dev": {
  10161. "phpunit/phpunit": "^9.3"
  10162. },
  10163. "type": "library",
  10164. "extra": {
  10165. "branch-alias": {
  10166. "dev-master": "1.0-dev"
  10167. }
  10168. },
  10169. "autoload": {
  10170. "classmap": [
  10171. "src/"
  10172. ]
  10173. },
  10174. "notification-url": "https://packagist.org/downloads/",
  10175. "license": [
  10176. "BSD-3-Clause"
  10177. ],
  10178. "authors": [
  10179. {
  10180. "name": "Sebastian Bergmann",
  10181. "email": "sebastian@phpunit.de",
  10182. "role": "lead"
  10183. }
  10184. ],
  10185. "description": "Library for parsing CLI options",
  10186. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10187. "support": {
  10188. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10189. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  10190. },
  10191. "funding": [
  10192. {
  10193. "url": "https://github.com/sebastianbergmann",
  10194. "type": "github"
  10195. }
  10196. ],
  10197. "time": "2024-03-02T06:27:43+00:00"
  10198. },
  10199. {
  10200. "name": "sebastian/code-unit",
  10201. "version": "1.0.8",
  10202. "source": {
  10203. "type": "git",
  10204. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10205. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10206. },
  10207. "dist": {
  10208. "type": "zip",
  10209. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10210. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10211. "shasum": ""
  10212. },
  10213. "require": {
  10214. "php": ">=7.3"
  10215. },
  10216. "require-dev": {
  10217. "phpunit/phpunit": "^9.3"
  10218. },
  10219. "type": "library",
  10220. "extra": {
  10221. "branch-alias": {
  10222. "dev-master": "1.0-dev"
  10223. }
  10224. },
  10225. "autoload": {
  10226. "classmap": [
  10227. "src/"
  10228. ]
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "BSD-3-Clause"
  10233. ],
  10234. "authors": [
  10235. {
  10236. "name": "Sebastian Bergmann",
  10237. "email": "sebastian@phpunit.de",
  10238. "role": "lead"
  10239. }
  10240. ],
  10241. "description": "Collection of value objects that represent the PHP code units",
  10242. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10243. "support": {
  10244. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10245. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10246. },
  10247. "funding": [
  10248. {
  10249. "url": "https://github.com/sebastianbergmann",
  10250. "type": "github"
  10251. }
  10252. ],
  10253. "time": "2020-10-26T13:08:54+00:00"
  10254. },
  10255. {
  10256. "name": "sebastian/code-unit-reverse-lookup",
  10257. "version": "2.0.3",
  10258. "source": {
  10259. "type": "git",
  10260. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10261. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10262. },
  10263. "dist": {
  10264. "type": "zip",
  10265. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10266. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10267. "shasum": ""
  10268. },
  10269. "require": {
  10270. "php": ">=7.3"
  10271. },
  10272. "require-dev": {
  10273. "phpunit/phpunit": "^9.3"
  10274. },
  10275. "type": "library",
  10276. "extra": {
  10277. "branch-alias": {
  10278. "dev-master": "2.0-dev"
  10279. }
  10280. },
  10281. "autoload": {
  10282. "classmap": [
  10283. "src/"
  10284. ]
  10285. },
  10286. "notification-url": "https://packagist.org/downloads/",
  10287. "license": [
  10288. "BSD-3-Clause"
  10289. ],
  10290. "authors": [
  10291. {
  10292. "name": "Sebastian Bergmann",
  10293. "email": "sebastian@phpunit.de"
  10294. }
  10295. ],
  10296. "description": "Looks up which function or method a line of code belongs to",
  10297. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10298. "support": {
  10299. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10300. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10301. },
  10302. "funding": [
  10303. {
  10304. "url": "https://github.com/sebastianbergmann",
  10305. "type": "github"
  10306. }
  10307. ],
  10308. "time": "2020-09-28T05:30:19+00:00"
  10309. },
  10310. {
  10311. "name": "sebastian/comparator",
  10312. "version": "4.0.10",
  10313. "source": {
  10314. "type": "git",
  10315. "url": "https://github.com/sebastianbergmann/comparator.git",
  10316. "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d"
  10317. },
  10318. "dist": {
  10319. "type": "zip",
  10320. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d",
  10321. "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d",
  10322. "shasum": ""
  10323. },
  10324. "require": {
  10325. "php": ">=7.3",
  10326. "sebastian/diff": "^4.0",
  10327. "sebastian/exporter": "^4.0"
  10328. },
  10329. "require-dev": {
  10330. "phpunit/phpunit": "^9.3"
  10331. },
  10332. "type": "library",
  10333. "extra": {
  10334. "branch-alias": {
  10335. "dev-master": "4.0-dev"
  10336. }
  10337. },
  10338. "autoload": {
  10339. "classmap": [
  10340. "src/"
  10341. ]
  10342. },
  10343. "notification-url": "https://packagist.org/downloads/",
  10344. "license": [
  10345. "BSD-3-Clause"
  10346. ],
  10347. "authors": [
  10348. {
  10349. "name": "Sebastian Bergmann",
  10350. "email": "sebastian@phpunit.de"
  10351. },
  10352. {
  10353. "name": "Jeff Welch",
  10354. "email": "whatthejeff@gmail.com"
  10355. },
  10356. {
  10357. "name": "Volker Dusch",
  10358. "email": "github@wallbash.com"
  10359. },
  10360. {
  10361. "name": "Bernhard Schussek",
  10362. "email": "bschussek@2bepublished.at"
  10363. }
  10364. ],
  10365. "description": "Provides the functionality to compare PHP values for equality",
  10366. "homepage": "https://github.com/sebastianbergmann/comparator",
  10367. "keywords": [
  10368. "comparator",
  10369. "compare",
  10370. "equality"
  10371. ],
  10372. "support": {
  10373. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10374. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.10"
  10375. },
  10376. "funding": [
  10377. {
  10378. "url": "https://github.com/sebastianbergmann",
  10379. "type": "github"
  10380. },
  10381. {
  10382. "url": "https://liberapay.com/sebastianbergmann",
  10383. "type": "liberapay"
  10384. },
  10385. {
  10386. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10387. "type": "thanks_dev"
  10388. },
  10389. {
  10390. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  10391. "type": "tidelift"
  10392. }
  10393. ],
  10394. "time": "2026-01-24T09:22:56+00:00"
  10395. },
  10396. {
  10397. "name": "sebastian/complexity",
  10398. "version": "2.0.3",
  10399. "source": {
  10400. "type": "git",
  10401. "url": "https://github.com/sebastianbergmann/complexity.git",
  10402. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10403. },
  10404. "dist": {
  10405. "type": "zip",
  10406. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10407. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10408. "shasum": ""
  10409. },
  10410. "require": {
  10411. "nikic/php-parser": "^4.18 || ^5.0",
  10412. "php": ">=7.3"
  10413. },
  10414. "require-dev": {
  10415. "phpunit/phpunit": "^9.3"
  10416. },
  10417. "type": "library",
  10418. "extra": {
  10419. "branch-alias": {
  10420. "dev-master": "2.0-dev"
  10421. }
  10422. },
  10423. "autoload": {
  10424. "classmap": [
  10425. "src/"
  10426. ]
  10427. },
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "BSD-3-Clause"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Sebastian Bergmann",
  10435. "email": "sebastian@phpunit.de",
  10436. "role": "lead"
  10437. }
  10438. ],
  10439. "description": "Library for calculating the complexity of PHP code units",
  10440. "homepage": "https://github.com/sebastianbergmann/complexity",
  10441. "support": {
  10442. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10443. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10444. },
  10445. "funding": [
  10446. {
  10447. "url": "https://github.com/sebastianbergmann",
  10448. "type": "github"
  10449. }
  10450. ],
  10451. "time": "2023-12-22T06:19:30+00:00"
  10452. },
  10453. {
  10454. "name": "sebastian/diff",
  10455. "version": "4.0.6",
  10456. "source": {
  10457. "type": "git",
  10458. "url": "https://github.com/sebastianbergmann/diff.git",
  10459. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10460. },
  10461. "dist": {
  10462. "type": "zip",
  10463. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10464. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10465. "shasum": ""
  10466. },
  10467. "require": {
  10468. "php": ">=7.3"
  10469. },
  10470. "require-dev": {
  10471. "phpunit/phpunit": "^9.3",
  10472. "symfony/process": "^4.2 || ^5"
  10473. },
  10474. "type": "library",
  10475. "extra": {
  10476. "branch-alias": {
  10477. "dev-master": "4.0-dev"
  10478. }
  10479. },
  10480. "autoload": {
  10481. "classmap": [
  10482. "src/"
  10483. ]
  10484. },
  10485. "notification-url": "https://packagist.org/downloads/",
  10486. "license": [
  10487. "BSD-3-Clause"
  10488. ],
  10489. "authors": [
  10490. {
  10491. "name": "Sebastian Bergmann",
  10492. "email": "sebastian@phpunit.de"
  10493. },
  10494. {
  10495. "name": "Kore Nordmann",
  10496. "email": "mail@kore-nordmann.de"
  10497. }
  10498. ],
  10499. "description": "Diff implementation",
  10500. "homepage": "https://github.com/sebastianbergmann/diff",
  10501. "keywords": [
  10502. "diff",
  10503. "udiff",
  10504. "unidiff",
  10505. "unified diff"
  10506. ],
  10507. "support": {
  10508. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10509. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10510. },
  10511. "funding": [
  10512. {
  10513. "url": "https://github.com/sebastianbergmann",
  10514. "type": "github"
  10515. }
  10516. ],
  10517. "time": "2024-03-02T06:30:58+00:00"
  10518. },
  10519. {
  10520. "name": "sebastian/environment",
  10521. "version": "5.1.5",
  10522. "source": {
  10523. "type": "git",
  10524. "url": "https://github.com/sebastianbergmann/environment.git",
  10525. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10526. },
  10527. "dist": {
  10528. "type": "zip",
  10529. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10530. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10531. "shasum": ""
  10532. },
  10533. "require": {
  10534. "php": ">=7.3"
  10535. },
  10536. "require-dev": {
  10537. "phpunit/phpunit": "^9.3"
  10538. },
  10539. "suggest": {
  10540. "ext-posix": "*"
  10541. },
  10542. "type": "library",
  10543. "extra": {
  10544. "branch-alias": {
  10545. "dev-master": "5.1-dev"
  10546. }
  10547. },
  10548. "autoload": {
  10549. "classmap": [
  10550. "src/"
  10551. ]
  10552. },
  10553. "notification-url": "https://packagist.org/downloads/",
  10554. "license": [
  10555. "BSD-3-Clause"
  10556. ],
  10557. "authors": [
  10558. {
  10559. "name": "Sebastian Bergmann",
  10560. "email": "sebastian@phpunit.de"
  10561. }
  10562. ],
  10563. "description": "Provides functionality to handle HHVM/PHP environments",
  10564. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10565. "keywords": [
  10566. "Xdebug",
  10567. "environment",
  10568. "hhvm"
  10569. ],
  10570. "support": {
  10571. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10572. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10573. },
  10574. "funding": [
  10575. {
  10576. "url": "https://github.com/sebastianbergmann",
  10577. "type": "github"
  10578. }
  10579. ],
  10580. "time": "2023-02-03T06:03:51+00:00"
  10581. },
  10582. {
  10583. "name": "sebastian/exporter",
  10584. "version": "4.0.8",
  10585. "source": {
  10586. "type": "git",
  10587. "url": "https://github.com/sebastianbergmann/exporter.git",
  10588. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  10589. },
  10590. "dist": {
  10591. "type": "zip",
  10592. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10593. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10594. "shasum": ""
  10595. },
  10596. "require": {
  10597. "php": ">=7.3",
  10598. "sebastian/recursion-context": "^4.0"
  10599. },
  10600. "require-dev": {
  10601. "ext-mbstring": "*",
  10602. "phpunit/phpunit": "^9.3"
  10603. },
  10604. "type": "library",
  10605. "extra": {
  10606. "branch-alias": {
  10607. "dev-master": "4.0-dev"
  10608. }
  10609. },
  10610. "autoload": {
  10611. "classmap": [
  10612. "src/"
  10613. ]
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "BSD-3-Clause"
  10618. ],
  10619. "authors": [
  10620. {
  10621. "name": "Sebastian Bergmann",
  10622. "email": "sebastian@phpunit.de"
  10623. },
  10624. {
  10625. "name": "Jeff Welch",
  10626. "email": "whatthejeff@gmail.com"
  10627. },
  10628. {
  10629. "name": "Volker Dusch",
  10630. "email": "github@wallbash.com"
  10631. },
  10632. {
  10633. "name": "Adam Harvey",
  10634. "email": "aharvey@php.net"
  10635. },
  10636. {
  10637. "name": "Bernhard Schussek",
  10638. "email": "bschussek@gmail.com"
  10639. }
  10640. ],
  10641. "description": "Provides the functionality to export PHP variables for visualization",
  10642. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10643. "keywords": [
  10644. "export",
  10645. "exporter"
  10646. ],
  10647. "support": {
  10648. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10649. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10650. },
  10651. "funding": [
  10652. {
  10653. "url": "https://github.com/sebastianbergmann",
  10654. "type": "github"
  10655. },
  10656. {
  10657. "url": "https://liberapay.com/sebastianbergmann",
  10658. "type": "liberapay"
  10659. },
  10660. {
  10661. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10662. "type": "thanks_dev"
  10663. },
  10664. {
  10665. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10666. "type": "tidelift"
  10667. }
  10668. ],
  10669. "time": "2025-09-24T06:03:27+00:00"
  10670. },
  10671. {
  10672. "name": "sebastian/global-state",
  10673. "version": "5.0.8",
  10674. "source": {
  10675. "type": "git",
  10676. "url": "https://github.com/sebastianbergmann/global-state.git",
  10677. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10678. },
  10679. "dist": {
  10680. "type": "zip",
  10681. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10682. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10683. "shasum": ""
  10684. },
  10685. "require": {
  10686. "php": ">=7.3",
  10687. "sebastian/object-reflector": "^2.0",
  10688. "sebastian/recursion-context": "^4.0"
  10689. },
  10690. "require-dev": {
  10691. "ext-dom": "*",
  10692. "phpunit/phpunit": "^9.3"
  10693. },
  10694. "suggest": {
  10695. "ext-uopz": "*"
  10696. },
  10697. "type": "library",
  10698. "extra": {
  10699. "branch-alias": {
  10700. "dev-master": "5.0-dev"
  10701. }
  10702. },
  10703. "autoload": {
  10704. "classmap": [
  10705. "src/"
  10706. ]
  10707. },
  10708. "notification-url": "https://packagist.org/downloads/",
  10709. "license": [
  10710. "BSD-3-Clause"
  10711. ],
  10712. "authors": [
  10713. {
  10714. "name": "Sebastian Bergmann",
  10715. "email": "sebastian@phpunit.de"
  10716. }
  10717. ],
  10718. "description": "Snapshotting of global state",
  10719. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10720. "keywords": [
  10721. "global state"
  10722. ],
  10723. "support": {
  10724. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10725. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10726. },
  10727. "funding": [
  10728. {
  10729. "url": "https://github.com/sebastianbergmann",
  10730. "type": "github"
  10731. },
  10732. {
  10733. "url": "https://liberapay.com/sebastianbergmann",
  10734. "type": "liberapay"
  10735. },
  10736. {
  10737. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10738. "type": "thanks_dev"
  10739. },
  10740. {
  10741. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10742. "type": "tidelift"
  10743. }
  10744. ],
  10745. "time": "2025-08-10T07:10:35+00:00"
  10746. },
  10747. {
  10748. "name": "sebastian/lines-of-code",
  10749. "version": "1.0.4",
  10750. "source": {
  10751. "type": "git",
  10752. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10753. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10754. },
  10755. "dist": {
  10756. "type": "zip",
  10757. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10758. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10759. "shasum": ""
  10760. },
  10761. "require": {
  10762. "nikic/php-parser": "^4.18 || ^5.0",
  10763. "php": ">=7.3"
  10764. },
  10765. "require-dev": {
  10766. "phpunit/phpunit": "^9.3"
  10767. },
  10768. "type": "library",
  10769. "extra": {
  10770. "branch-alias": {
  10771. "dev-master": "1.0-dev"
  10772. }
  10773. },
  10774. "autoload": {
  10775. "classmap": [
  10776. "src/"
  10777. ]
  10778. },
  10779. "notification-url": "https://packagist.org/downloads/",
  10780. "license": [
  10781. "BSD-3-Clause"
  10782. ],
  10783. "authors": [
  10784. {
  10785. "name": "Sebastian Bergmann",
  10786. "email": "sebastian@phpunit.de",
  10787. "role": "lead"
  10788. }
  10789. ],
  10790. "description": "Library for counting the lines of code in PHP source code",
  10791. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10792. "support": {
  10793. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10794. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10795. },
  10796. "funding": [
  10797. {
  10798. "url": "https://github.com/sebastianbergmann",
  10799. "type": "github"
  10800. }
  10801. ],
  10802. "time": "2023-12-22T06:20:34+00:00"
  10803. },
  10804. {
  10805. "name": "sebastian/object-enumerator",
  10806. "version": "4.0.4",
  10807. "source": {
  10808. "type": "git",
  10809. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10810. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10811. },
  10812. "dist": {
  10813. "type": "zip",
  10814. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10815. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10816. "shasum": ""
  10817. },
  10818. "require": {
  10819. "php": ">=7.3",
  10820. "sebastian/object-reflector": "^2.0",
  10821. "sebastian/recursion-context": "^4.0"
  10822. },
  10823. "require-dev": {
  10824. "phpunit/phpunit": "^9.3"
  10825. },
  10826. "type": "library",
  10827. "extra": {
  10828. "branch-alias": {
  10829. "dev-master": "4.0-dev"
  10830. }
  10831. },
  10832. "autoload": {
  10833. "classmap": [
  10834. "src/"
  10835. ]
  10836. },
  10837. "notification-url": "https://packagist.org/downloads/",
  10838. "license": [
  10839. "BSD-3-Clause"
  10840. ],
  10841. "authors": [
  10842. {
  10843. "name": "Sebastian Bergmann",
  10844. "email": "sebastian@phpunit.de"
  10845. }
  10846. ],
  10847. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10848. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10849. "support": {
  10850. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10851. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10852. },
  10853. "funding": [
  10854. {
  10855. "url": "https://github.com/sebastianbergmann",
  10856. "type": "github"
  10857. }
  10858. ],
  10859. "time": "2020-10-26T13:12:34+00:00"
  10860. },
  10861. {
  10862. "name": "sebastian/object-reflector",
  10863. "version": "2.0.4",
  10864. "source": {
  10865. "type": "git",
  10866. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10867. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10868. },
  10869. "dist": {
  10870. "type": "zip",
  10871. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10872. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10873. "shasum": ""
  10874. },
  10875. "require": {
  10876. "php": ">=7.3"
  10877. },
  10878. "require-dev": {
  10879. "phpunit/phpunit": "^9.3"
  10880. },
  10881. "type": "library",
  10882. "extra": {
  10883. "branch-alias": {
  10884. "dev-master": "2.0-dev"
  10885. }
  10886. },
  10887. "autoload": {
  10888. "classmap": [
  10889. "src/"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "BSD-3-Clause"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Sebastian Bergmann",
  10899. "email": "sebastian@phpunit.de"
  10900. }
  10901. ],
  10902. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10903. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10904. "support": {
  10905. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10906. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10907. },
  10908. "funding": [
  10909. {
  10910. "url": "https://github.com/sebastianbergmann",
  10911. "type": "github"
  10912. }
  10913. ],
  10914. "time": "2020-10-26T13:14:26+00:00"
  10915. },
  10916. {
  10917. "name": "sebastian/recursion-context",
  10918. "version": "4.0.6",
  10919. "source": {
  10920. "type": "git",
  10921. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10922. "reference": "539c6691e0623af6dc6f9c20384c120f963465a0"
  10923. },
  10924. "dist": {
  10925. "type": "zip",
  10926. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0",
  10927. "reference": "539c6691e0623af6dc6f9c20384c120f963465a0",
  10928. "shasum": ""
  10929. },
  10930. "require": {
  10931. "php": ">=7.3"
  10932. },
  10933. "require-dev": {
  10934. "phpunit/phpunit": "^9.3"
  10935. },
  10936. "type": "library",
  10937. "extra": {
  10938. "branch-alias": {
  10939. "dev-master": "4.0-dev"
  10940. }
  10941. },
  10942. "autoload": {
  10943. "classmap": [
  10944. "src/"
  10945. ]
  10946. },
  10947. "notification-url": "https://packagist.org/downloads/",
  10948. "license": [
  10949. "BSD-3-Clause"
  10950. ],
  10951. "authors": [
  10952. {
  10953. "name": "Sebastian Bergmann",
  10954. "email": "sebastian@phpunit.de"
  10955. },
  10956. {
  10957. "name": "Jeff Welch",
  10958. "email": "whatthejeff@gmail.com"
  10959. },
  10960. {
  10961. "name": "Adam Harvey",
  10962. "email": "aharvey@php.net"
  10963. }
  10964. ],
  10965. "description": "Provides functionality to recursively process PHP variables",
  10966. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10967. "support": {
  10968. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10969. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.6"
  10970. },
  10971. "funding": [
  10972. {
  10973. "url": "https://github.com/sebastianbergmann",
  10974. "type": "github"
  10975. },
  10976. {
  10977. "url": "https://liberapay.com/sebastianbergmann",
  10978. "type": "liberapay"
  10979. },
  10980. {
  10981. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10982. "type": "thanks_dev"
  10983. },
  10984. {
  10985. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  10986. "type": "tidelift"
  10987. }
  10988. ],
  10989. "time": "2025-08-10T06:57:39+00:00"
  10990. },
  10991. {
  10992. "name": "sebastian/resource-operations",
  10993. "version": "3.0.4",
  10994. "source": {
  10995. "type": "git",
  10996. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10997. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10998. },
  10999. "dist": {
  11000. "type": "zip",
  11001. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  11002. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  11003. "shasum": ""
  11004. },
  11005. "require": {
  11006. "php": ">=7.3"
  11007. },
  11008. "require-dev": {
  11009. "phpunit/phpunit": "^9.0"
  11010. },
  11011. "type": "library",
  11012. "extra": {
  11013. "branch-alias": {
  11014. "dev-main": "3.0-dev"
  11015. }
  11016. },
  11017. "autoload": {
  11018. "classmap": [
  11019. "src/"
  11020. ]
  11021. },
  11022. "notification-url": "https://packagist.org/downloads/",
  11023. "license": [
  11024. "BSD-3-Clause"
  11025. ],
  11026. "authors": [
  11027. {
  11028. "name": "Sebastian Bergmann",
  11029. "email": "sebastian@phpunit.de"
  11030. }
  11031. ],
  11032. "description": "Provides a list of PHP built-in functions that operate on resources",
  11033. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11034. "support": {
  11035. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  11036. },
  11037. "funding": [
  11038. {
  11039. "url": "https://github.com/sebastianbergmann",
  11040. "type": "github"
  11041. }
  11042. ],
  11043. "time": "2024-03-14T16:00:52+00:00"
  11044. },
  11045. {
  11046. "name": "sebastian/type",
  11047. "version": "3.2.1",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/sebastianbergmann/type.git",
  11051. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11056. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11057. "shasum": ""
  11058. },
  11059. "require": {
  11060. "php": ">=7.3"
  11061. },
  11062. "require-dev": {
  11063. "phpunit/phpunit": "^9.5"
  11064. },
  11065. "type": "library",
  11066. "extra": {
  11067. "branch-alias": {
  11068. "dev-master": "3.2-dev"
  11069. }
  11070. },
  11071. "autoload": {
  11072. "classmap": [
  11073. "src/"
  11074. ]
  11075. },
  11076. "notification-url": "https://packagist.org/downloads/",
  11077. "license": [
  11078. "BSD-3-Clause"
  11079. ],
  11080. "authors": [
  11081. {
  11082. "name": "Sebastian Bergmann",
  11083. "email": "sebastian@phpunit.de",
  11084. "role": "lead"
  11085. }
  11086. ],
  11087. "description": "Collection of value objects that represent the types of the PHP type system",
  11088. "homepage": "https://github.com/sebastianbergmann/type",
  11089. "support": {
  11090. "issues": "https://github.com/sebastianbergmann/type/issues",
  11091. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11092. },
  11093. "funding": [
  11094. {
  11095. "url": "https://github.com/sebastianbergmann",
  11096. "type": "github"
  11097. }
  11098. ],
  11099. "time": "2023-02-03T06:13:03+00:00"
  11100. },
  11101. {
  11102. "name": "sebastian/version",
  11103. "version": "3.0.2",
  11104. "source": {
  11105. "type": "git",
  11106. "url": "https://github.com/sebastianbergmann/version.git",
  11107. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11108. },
  11109. "dist": {
  11110. "type": "zip",
  11111. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11112. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11113. "shasum": ""
  11114. },
  11115. "require": {
  11116. "php": ">=7.3"
  11117. },
  11118. "type": "library",
  11119. "extra": {
  11120. "branch-alias": {
  11121. "dev-master": "3.0-dev"
  11122. }
  11123. },
  11124. "autoload": {
  11125. "classmap": [
  11126. "src/"
  11127. ]
  11128. },
  11129. "notification-url": "https://packagist.org/downloads/",
  11130. "license": [
  11131. "BSD-3-Clause"
  11132. ],
  11133. "authors": [
  11134. {
  11135. "name": "Sebastian Bergmann",
  11136. "email": "sebastian@phpunit.de",
  11137. "role": "lead"
  11138. }
  11139. ],
  11140. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11141. "homepage": "https://github.com/sebastianbergmann/version",
  11142. "support": {
  11143. "issues": "https://github.com/sebastianbergmann/version/issues",
  11144. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11145. },
  11146. "funding": [
  11147. {
  11148. "url": "https://github.com/sebastianbergmann",
  11149. "type": "github"
  11150. }
  11151. ],
  11152. "time": "2020-09-28T06:39:44+00:00"
  11153. },
  11154. {
  11155. "name": "symfony/browser-kit",
  11156. "version": "v7.4.8",
  11157. "source": {
  11158. "type": "git",
  11159. "url": "https://github.com/symfony/browser-kit.git",
  11160. "reference": "41850d8f8ddef9a9cd7314fa9f4902cf48885521"
  11161. },
  11162. "dist": {
  11163. "type": "zip",
  11164. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/41850d8f8ddef9a9cd7314fa9f4902cf48885521",
  11165. "reference": "41850d8f8ddef9a9cd7314fa9f4902cf48885521",
  11166. "shasum": ""
  11167. },
  11168. "require": {
  11169. "php": ">=8.2",
  11170. "symfony/deprecation-contracts": "^2.5|^3",
  11171. "symfony/dom-crawler": "^6.4|^7.0|^8.0"
  11172. },
  11173. "require-dev": {
  11174. "symfony/css-selector": "^6.4|^7.0|^8.0",
  11175. "symfony/http-client": "^6.4|^7.0|^8.0",
  11176. "symfony/mime": "^6.4|^7.0|^8.0",
  11177. "symfony/process": "^6.4|^7.0|^8.0"
  11178. },
  11179. "type": "library",
  11180. "autoload": {
  11181. "psr-4": {
  11182. "Symfony\\Component\\BrowserKit\\": ""
  11183. },
  11184. "exclude-from-classmap": [
  11185. "/Tests/"
  11186. ]
  11187. },
  11188. "notification-url": "https://packagist.org/downloads/",
  11189. "license": [
  11190. "MIT"
  11191. ],
  11192. "authors": [
  11193. {
  11194. "name": "Fabien Potencier",
  11195. "email": "fabien@symfony.com"
  11196. },
  11197. {
  11198. "name": "Symfony Community",
  11199. "homepage": "https://symfony.com/contributors"
  11200. }
  11201. ],
  11202. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  11203. "homepage": "https://symfony.com",
  11204. "support": {
  11205. "source": "https://github.com/symfony/browser-kit/tree/v7.4.8"
  11206. },
  11207. "funding": [
  11208. {
  11209. "url": "https://symfony.com/sponsor",
  11210. "type": "custom"
  11211. },
  11212. {
  11213. "url": "https://github.com/fabpot",
  11214. "type": "github"
  11215. },
  11216. {
  11217. "url": "https://github.com/nicolas-grekas",
  11218. "type": "github"
  11219. },
  11220. {
  11221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11222. "type": "tidelift"
  11223. }
  11224. ],
  11225. "time": "2026-03-24T13:12:05+00:00"
  11226. },
  11227. {
  11228. "name": "symfony/css-selector",
  11229. "version": "v7.4.8",
  11230. "source": {
  11231. "type": "git",
  11232. "url": "https://github.com/symfony/css-selector.git",
  11233. "reference": "b055f228a4178a1d6774909903905e3475f3eac8"
  11234. },
  11235. "dist": {
  11236. "type": "zip",
  11237. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b055f228a4178a1d6774909903905e3475f3eac8",
  11238. "reference": "b055f228a4178a1d6774909903905e3475f3eac8",
  11239. "shasum": ""
  11240. },
  11241. "require": {
  11242. "php": ">=8.2"
  11243. },
  11244. "type": "library",
  11245. "autoload": {
  11246. "psr-4": {
  11247. "Symfony\\Component\\CssSelector\\": ""
  11248. },
  11249. "exclude-from-classmap": [
  11250. "/Tests/"
  11251. ]
  11252. },
  11253. "notification-url": "https://packagist.org/downloads/",
  11254. "license": [
  11255. "MIT"
  11256. ],
  11257. "authors": [
  11258. {
  11259. "name": "Fabien Potencier",
  11260. "email": "fabien@symfony.com"
  11261. },
  11262. {
  11263. "name": "Jean-François Simon",
  11264. "email": "jeanfrancois.simon@sensiolabs.com"
  11265. },
  11266. {
  11267. "name": "Symfony Community",
  11268. "homepage": "https://symfony.com/contributors"
  11269. }
  11270. ],
  11271. "description": "Converts CSS selectors to XPath expressions",
  11272. "homepage": "https://symfony.com",
  11273. "support": {
  11274. "source": "https://github.com/symfony/css-selector/tree/v7.4.8"
  11275. },
  11276. "funding": [
  11277. {
  11278. "url": "https://symfony.com/sponsor",
  11279. "type": "custom"
  11280. },
  11281. {
  11282. "url": "https://github.com/fabpot",
  11283. "type": "github"
  11284. },
  11285. {
  11286. "url": "https://github.com/nicolas-grekas",
  11287. "type": "github"
  11288. },
  11289. {
  11290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11291. "type": "tidelift"
  11292. }
  11293. ],
  11294. "time": "2026-03-24T13:12:05+00:00"
  11295. },
  11296. {
  11297. "name": "symfony/debug-bundle",
  11298. "version": "v7.4.8",
  11299. "source": {
  11300. "type": "git",
  11301. "url": "https://github.com/symfony/debug-bundle.git",
  11302. "reference": "3eb18c1e6cd16da2cea1f1b5162e442af4afee44"
  11303. },
  11304. "dist": {
  11305. "type": "zip",
  11306. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/3eb18c1e6cd16da2cea1f1b5162e442af4afee44",
  11307. "reference": "3eb18c1e6cd16da2cea1f1b5162e442af4afee44",
  11308. "shasum": ""
  11309. },
  11310. "require": {
  11311. "composer-runtime-api": ">=2.1",
  11312. "ext-xml": "*",
  11313. "php": ">=8.2",
  11314. "symfony/config": "^7.3|^8.0",
  11315. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  11316. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  11317. "symfony/twig-bridge": "^6.4|^7.0|^8.0",
  11318. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  11319. },
  11320. "require-dev": {
  11321. "symfony/web-profiler-bundle": "^6.4|^7.0|^8.0"
  11322. },
  11323. "type": "symfony-bundle",
  11324. "autoload": {
  11325. "psr-4": {
  11326. "Symfony\\Bundle\\DebugBundle\\": ""
  11327. },
  11328. "exclude-from-classmap": [
  11329. "/Tests/"
  11330. ]
  11331. },
  11332. "notification-url": "https://packagist.org/downloads/",
  11333. "license": [
  11334. "MIT"
  11335. ],
  11336. "authors": [
  11337. {
  11338. "name": "Fabien Potencier",
  11339. "email": "fabien@symfony.com"
  11340. },
  11341. {
  11342. "name": "Symfony Community",
  11343. "homepage": "https://symfony.com/contributors"
  11344. }
  11345. ],
  11346. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  11347. "homepage": "https://symfony.com",
  11348. "support": {
  11349. "source": "https://github.com/symfony/debug-bundle/tree/v7.4.8"
  11350. },
  11351. "funding": [
  11352. {
  11353. "url": "https://symfony.com/sponsor",
  11354. "type": "custom"
  11355. },
  11356. {
  11357. "url": "https://github.com/fabpot",
  11358. "type": "github"
  11359. },
  11360. {
  11361. "url": "https://github.com/nicolas-grekas",
  11362. "type": "github"
  11363. },
  11364. {
  11365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11366. "type": "tidelift"
  11367. }
  11368. ],
  11369. "time": "2026-03-24T13:12:05+00:00"
  11370. },
  11371. {
  11372. "name": "symfony/dom-crawler",
  11373. "version": "v7.4.8",
  11374. "source": {
  11375. "type": "git",
  11376. "url": "https://github.com/symfony/dom-crawler.git",
  11377. "reference": "2918e7c2ba964defca1f5b69c6f74886529e2dc8"
  11378. },
  11379. "dist": {
  11380. "type": "zip",
  11381. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2918e7c2ba964defca1f5b69c6f74886529e2dc8",
  11382. "reference": "2918e7c2ba964defca1f5b69c6f74886529e2dc8",
  11383. "shasum": ""
  11384. },
  11385. "require": {
  11386. "masterminds/html5": "^2.6",
  11387. "php": ">=8.2",
  11388. "symfony/deprecation-contracts": "^2.5|^3",
  11389. "symfony/polyfill-ctype": "~1.8",
  11390. "symfony/polyfill-mbstring": "~1.0"
  11391. },
  11392. "require-dev": {
  11393. "symfony/css-selector": "^6.4|^7.0|^8.0"
  11394. },
  11395. "type": "library",
  11396. "autoload": {
  11397. "psr-4": {
  11398. "Symfony\\Component\\DomCrawler\\": ""
  11399. },
  11400. "exclude-from-classmap": [
  11401. "/Tests/"
  11402. ]
  11403. },
  11404. "notification-url": "https://packagist.org/downloads/",
  11405. "license": [
  11406. "MIT"
  11407. ],
  11408. "authors": [
  11409. {
  11410. "name": "Fabien Potencier",
  11411. "email": "fabien@symfony.com"
  11412. },
  11413. {
  11414. "name": "Symfony Community",
  11415. "homepage": "https://symfony.com/contributors"
  11416. }
  11417. ],
  11418. "description": "Eases DOM navigation for HTML and XML documents",
  11419. "homepage": "https://symfony.com",
  11420. "support": {
  11421. "source": "https://github.com/symfony/dom-crawler/tree/v7.4.8"
  11422. },
  11423. "funding": [
  11424. {
  11425. "url": "https://symfony.com/sponsor",
  11426. "type": "custom"
  11427. },
  11428. {
  11429. "url": "https://github.com/fabpot",
  11430. "type": "github"
  11431. },
  11432. {
  11433. "url": "https://github.com/nicolas-grekas",
  11434. "type": "github"
  11435. },
  11436. {
  11437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11438. "type": "tidelift"
  11439. }
  11440. ],
  11441. "time": "2026-03-24T13:12:05+00:00"
  11442. },
  11443. {
  11444. "name": "symfony/maker-bundle",
  11445. "version": "v1.67.0",
  11446. "source": {
  11447. "type": "git",
  11448. "url": "https://github.com/symfony/maker-bundle.git",
  11449. "reference": "6ce8b313845f16bcf385ee3cb31d8b24e30d5516"
  11450. },
  11451. "dist": {
  11452. "type": "zip",
  11453. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/6ce8b313845f16bcf385ee3cb31d8b24e30d5516",
  11454. "reference": "6ce8b313845f16bcf385ee3cb31d8b24e30d5516",
  11455. "shasum": ""
  11456. },
  11457. "require": {
  11458. "composer-runtime-api": "^2.1",
  11459. "doctrine/inflector": "^2.0",
  11460. "nikic/php-parser": "^5.0",
  11461. "php": ">=8.1",
  11462. "symfony/config": "^6.4|^7.0|^8.0",
  11463. "symfony/console": "^6.4|^7.0|^8.0",
  11464. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  11465. "symfony/deprecation-contracts": "^2.2|^3",
  11466. "symfony/filesystem": "^6.4|^7.0|^8.0",
  11467. "symfony/finder": "^6.4|^7.0|^8.0",
  11468. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  11469. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  11470. "symfony/process": "^6.4|^7.0|^8.0"
  11471. },
  11472. "conflict": {
  11473. "doctrine/doctrine-bundle": "<2.10",
  11474. "doctrine/orm": "<2.15"
  11475. },
  11476. "require-dev": {
  11477. "composer/semver": "^3.0",
  11478. "doctrine/doctrine-bundle": "^2.10|^3.0",
  11479. "doctrine/orm": "^2.15|^3",
  11480. "doctrine/persistence": "^3.1|^4.0",
  11481. "symfony/http-client": "^6.4|^7.0|^8.0",
  11482. "symfony/phpunit-bridge": "^6.4.1|^7.0|^8.0",
  11483. "symfony/security-core": "^6.4|^7.0|^8.0",
  11484. "symfony/security-http": "^6.4|^7.0|^8.0",
  11485. "symfony/yaml": "^6.4|^7.0|^8.0",
  11486. "twig/twig": "^3.0|^4.x-dev"
  11487. },
  11488. "type": "symfony-bundle",
  11489. "extra": {
  11490. "branch-alias": {
  11491. "dev-main": "1.x-dev"
  11492. }
  11493. },
  11494. "autoload": {
  11495. "psr-4": {
  11496. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11497. }
  11498. },
  11499. "notification-url": "https://packagist.org/downloads/",
  11500. "license": [
  11501. "MIT"
  11502. ],
  11503. "authors": [
  11504. {
  11505. "name": "Symfony Community",
  11506. "homepage": "https://symfony.com/contributors"
  11507. }
  11508. ],
  11509. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11510. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11511. "keywords": [
  11512. "code generator",
  11513. "dev",
  11514. "generator",
  11515. "scaffold",
  11516. "scaffolding"
  11517. ],
  11518. "support": {
  11519. "issues": "https://github.com/symfony/maker-bundle/issues",
  11520. "source": "https://github.com/symfony/maker-bundle/tree/v1.67.0"
  11521. },
  11522. "funding": [
  11523. {
  11524. "url": "https://symfony.com/sponsor",
  11525. "type": "custom"
  11526. },
  11527. {
  11528. "url": "https://github.com/fabpot",
  11529. "type": "github"
  11530. },
  11531. {
  11532. "url": "https://github.com/nicolas-grekas",
  11533. "type": "github"
  11534. },
  11535. {
  11536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11537. "type": "tidelift"
  11538. }
  11539. ],
  11540. "time": "2026-03-18T13:39:06+00:00"
  11541. },
  11542. {
  11543. "name": "symfony/phpunit-bridge",
  11544. "version": "v7.4.8",
  11545. "source": {
  11546. "type": "git",
  11547. "url": "https://github.com/symfony/phpunit-bridge.git",
  11548. "reference": "140bbbe1cd1c21a084494ccddeee33f3c3381d7d"
  11549. },
  11550. "dist": {
  11551. "type": "zip",
  11552. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/140bbbe1cd1c21a084494ccddeee33f3c3381d7d",
  11553. "reference": "140bbbe1cd1c21a084494ccddeee33f3c3381d7d",
  11554. "shasum": ""
  11555. },
  11556. "require": {
  11557. "php": ">=8.1.0"
  11558. },
  11559. "require-dev": {
  11560. "symfony/deprecation-contracts": "^2.5|^3",
  11561. "symfony/error-handler": "^6.4.3|^7.0.3|^8.0"
  11562. },
  11563. "bin": [
  11564. "bin/simple-phpunit"
  11565. ],
  11566. "type": "symfony-bridge",
  11567. "extra": {
  11568. "thanks": {
  11569. "url": "https://github.com/sebastianbergmann/phpunit",
  11570. "name": "phpunit/phpunit"
  11571. }
  11572. },
  11573. "autoload": {
  11574. "files": [
  11575. "bootstrap.php"
  11576. ],
  11577. "psr-4": {
  11578. "Symfony\\Bridge\\PhpUnit\\": ""
  11579. },
  11580. "exclude-from-classmap": [
  11581. "/Tests/",
  11582. "/bin/"
  11583. ]
  11584. },
  11585. "notification-url": "https://packagist.org/downloads/",
  11586. "license": [
  11587. "MIT"
  11588. ],
  11589. "authors": [
  11590. {
  11591. "name": "Nicolas Grekas",
  11592. "email": "p@tchwork.com"
  11593. },
  11594. {
  11595. "name": "Symfony Community",
  11596. "homepage": "https://symfony.com/contributors"
  11597. }
  11598. ],
  11599. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  11600. "homepage": "https://symfony.com",
  11601. "keywords": [
  11602. "testing"
  11603. ],
  11604. "support": {
  11605. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.4.8"
  11606. },
  11607. "funding": [
  11608. {
  11609. "url": "https://symfony.com/sponsor",
  11610. "type": "custom"
  11611. },
  11612. {
  11613. "url": "https://github.com/fabpot",
  11614. "type": "github"
  11615. },
  11616. {
  11617. "url": "https://github.com/nicolas-grekas",
  11618. "type": "github"
  11619. },
  11620. {
  11621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11622. "type": "tidelift"
  11623. }
  11624. ],
  11625. "time": "2026-03-24T13:12:05+00:00"
  11626. },
  11627. {
  11628. "name": "symfony/web-profiler-bundle",
  11629. "version": "v7.4.8",
  11630. "source": {
  11631. "type": "git",
  11632. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11633. "reference": "79f039096c67cc1cc3f607d2ba72af86cd27e6a4"
  11634. },
  11635. "dist": {
  11636. "type": "zip",
  11637. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/79f039096c67cc1cc3f607d2ba72af86cd27e6a4",
  11638. "reference": "79f039096c67cc1cc3f607d2ba72af86cd27e6a4",
  11639. "shasum": ""
  11640. },
  11641. "require": {
  11642. "composer-runtime-api": ">=2.1",
  11643. "php": ">=8.2",
  11644. "symfony/config": "^7.3|^8.0",
  11645. "symfony/deprecation-contracts": "^2.5|^3",
  11646. "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
  11647. "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
  11648. "symfony/routing": "^6.4|^7.0|^8.0",
  11649. "symfony/twig-bundle": "^6.4|^7.0|^8.0",
  11650. "twig/twig": "^3.15"
  11651. },
  11652. "conflict": {
  11653. "symfony/form": "<6.4",
  11654. "symfony/mailer": "<6.4",
  11655. "symfony/messenger": "<6.4",
  11656. "symfony/serializer": "<7.2",
  11657. "symfony/workflow": "<7.3"
  11658. },
  11659. "require-dev": {
  11660. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  11661. "symfony/console": "^6.4|^7.0|^8.0",
  11662. "symfony/css-selector": "^6.4|^7.0|^8.0",
  11663. "symfony/runtime": "^6.4.13|^7.1.6|^8.0",
  11664. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  11665. },
  11666. "type": "symfony-bundle",
  11667. "autoload": {
  11668. "psr-4": {
  11669. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11670. },
  11671. "exclude-from-classmap": [
  11672. "/Tests/"
  11673. ]
  11674. },
  11675. "notification-url": "https://packagist.org/downloads/",
  11676. "license": [
  11677. "MIT"
  11678. ],
  11679. "authors": [
  11680. {
  11681. "name": "Fabien Potencier",
  11682. "email": "fabien@symfony.com"
  11683. },
  11684. {
  11685. "name": "Symfony Community",
  11686. "homepage": "https://symfony.com/contributors"
  11687. }
  11688. ],
  11689. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11690. "homepage": "https://symfony.com",
  11691. "keywords": [
  11692. "dev"
  11693. ],
  11694. "support": {
  11695. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.4.8"
  11696. },
  11697. "funding": [
  11698. {
  11699. "url": "https://symfony.com/sponsor",
  11700. "type": "custom"
  11701. },
  11702. {
  11703. "url": "https://github.com/fabpot",
  11704. "type": "github"
  11705. },
  11706. {
  11707. "url": "https://github.com/nicolas-grekas",
  11708. "type": "github"
  11709. },
  11710. {
  11711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11712. "type": "tidelift"
  11713. }
  11714. ],
  11715. "time": "2026-03-24T13:12:05+00:00"
  11716. },
  11717. {
  11718. "name": "theseer/tokenizer",
  11719. "version": "1.3.1",
  11720. "source": {
  11721. "type": "git",
  11722. "url": "https://github.com/theseer/tokenizer.git",
  11723. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  11724. },
  11725. "dist": {
  11726. "type": "zip",
  11727. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  11728. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  11729. "shasum": ""
  11730. },
  11731. "require": {
  11732. "ext-dom": "*",
  11733. "ext-tokenizer": "*",
  11734. "ext-xmlwriter": "*",
  11735. "php": "^7.2 || ^8.0"
  11736. },
  11737. "type": "library",
  11738. "autoload": {
  11739. "classmap": [
  11740. "src/"
  11741. ]
  11742. },
  11743. "notification-url": "https://packagist.org/downloads/",
  11744. "license": [
  11745. "BSD-3-Clause"
  11746. ],
  11747. "authors": [
  11748. {
  11749. "name": "Arne Blankerts",
  11750. "email": "arne@blankerts.de",
  11751. "role": "Developer"
  11752. }
  11753. ],
  11754. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11755. "support": {
  11756. "issues": "https://github.com/theseer/tokenizer/issues",
  11757. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  11758. },
  11759. "funding": [
  11760. {
  11761. "url": "https://github.com/theseer",
  11762. "type": "github"
  11763. }
  11764. ],
  11765. "time": "2025-11-17T20:03:58+00:00"
  11766. }
  11767. ],
  11768. "aliases": [],
  11769. "minimum-stability": "stable",
  11770. "stability-flags": {},
  11771. "prefer-stable": true,
  11772. "prefer-lowest": false,
  11773. "platform": {
  11774. "php": ">=8.2",
  11775. "ext-ctype": "*",
  11776. "ext-iconv": "*"
  11777. },
  11778. "platform-dev": {},
  11779. "plugin-api-version": "2.9.0"
  11780. }