composer.lock 352 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718
  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": "f17c83386904be5fbae1adf19e62b937",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  20. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.11",
  28. "symfony/phpunit-bridge": "^3 || ^7"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Composer\\Semver\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Nils Adermann",
  48. "email": "naderman@naderman.de",
  49. "homepage": "http://www.naderman.de"
  50. },
  51. {
  52. "name": "Jordi Boggiano",
  53. "email": "j.boggiano@seld.be",
  54. "homepage": "http://seld.be"
  55. },
  56. {
  57. "name": "Rob Bast",
  58. "email": "rob.bast@gmail.com",
  59. "homepage": "http://robbast.nl"
  60. }
  61. ],
  62. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  63. "keywords": [
  64. "semantic",
  65. "semver",
  66. "validation",
  67. "versioning"
  68. ],
  69. "support": {
  70. "irc": "ircs://irc.libera.chat:6697/composer",
  71. "issues": "https://github.com/composer/semver/issues",
  72. "source": "https://github.com/composer/semver/tree/3.4.3"
  73. },
  74. "funding": [
  75. {
  76. "url": "https://packagist.com",
  77. "type": "custom"
  78. },
  79. {
  80. "url": "https://github.com/composer",
  81. "type": "github"
  82. },
  83. {
  84. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  85. "type": "tidelift"
  86. }
  87. ],
  88. "time": "2024-09-19T14:15:21+00:00"
  89. },
  90. {
  91. "name": "doctrine/collections",
  92. "version": "2.3.0",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/doctrine/collections.git",
  96. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  101. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "doctrine/deprecations": "^1",
  106. "php": "^8.1",
  107. "symfony/polyfill-php84": "^1.30"
  108. },
  109. "require-dev": {
  110. "doctrine/coding-standard": "^12",
  111. "ext-json": "*",
  112. "phpstan/phpstan": "^1.8",
  113. "phpstan/phpstan-phpunit": "^1.0",
  114. "phpunit/phpunit": "^10.5"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "psr-4": {
  119. "Doctrine\\Common\\Collections\\": "src"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Guilherme Blanco",
  129. "email": "guilhermeblanco@gmail.com"
  130. },
  131. {
  132. "name": "Roman Borschel",
  133. "email": "roman@code-factory.org"
  134. },
  135. {
  136. "name": "Benjamin Eberlei",
  137. "email": "kontakt@beberlei.de"
  138. },
  139. {
  140. "name": "Jonathan Wage",
  141. "email": "jonwage@gmail.com"
  142. },
  143. {
  144. "name": "Johannes Schmitt",
  145. "email": "schmittjoh@gmail.com"
  146. }
  147. ],
  148. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  149. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  150. "keywords": [
  151. "array",
  152. "collections",
  153. "iterators",
  154. "php"
  155. ],
  156. "support": {
  157. "issues": "https://github.com/doctrine/collections/issues",
  158. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  159. },
  160. "funding": [
  161. {
  162. "url": "https://www.doctrine-project.org/sponsorship.html",
  163. "type": "custom"
  164. },
  165. {
  166. "url": "https://www.patreon.com/phpdoctrine",
  167. "type": "patreon"
  168. },
  169. {
  170. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  171. "type": "tidelift"
  172. }
  173. ],
  174. "time": "2025-03-22T10:17:19+00:00"
  175. },
  176. {
  177. "name": "doctrine/dbal",
  178. "version": "3.10.0",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/doctrine/dbal.git",
  182. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/doctrine/dbal/zipball/1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  187. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "composer-runtime-api": "^2",
  192. "doctrine/deprecations": "^0.5.3|^1",
  193. "doctrine/event-manager": "^1|^2",
  194. "php": "^7.4 || ^8.0",
  195. "psr/cache": "^1|^2|^3",
  196. "psr/log": "^1|^2|^3"
  197. },
  198. "conflict": {
  199. "doctrine/cache": "< 1.11"
  200. },
  201. "require-dev": {
  202. "doctrine/cache": "^1.11|^2.0",
  203. "doctrine/coding-standard": "13.0.0",
  204. "fig/log-test": "^1",
  205. "jetbrains/phpstorm-stubs": "2023.1",
  206. "phpstan/phpstan": "2.1.17",
  207. "phpstan/phpstan-strict-rules": "^2",
  208. "phpunit/phpunit": "9.6.23",
  209. "slevomat/coding-standard": "8.16.2",
  210. "squizlabs/php_codesniffer": "3.13.1",
  211. "symfony/cache": "^5.4|^6.0|^7.0",
  212. "symfony/console": "^4.4|^5.4|^6.0|^7.0"
  213. },
  214. "suggest": {
  215. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  216. },
  217. "bin": [
  218. "bin/doctrine-dbal"
  219. ],
  220. "type": "library",
  221. "autoload": {
  222. "psr-4": {
  223. "Doctrine\\DBAL\\": "src"
  224. }
  225. },
  226. "notification-url": "https://packagist.org/downloads/",
  227. "license": [
  228. "MIT"
  229. ],
  230. "authors": [
  231. {
  232. "name": "Guilherme Blanco",
  233. "email": "guilhermeblanco@gmail.com"
  234. },
  235. {
  236. "name": "Roman Borschel",
  237. "email": "roman@code-factory.org"
  238. },
  239. {
  240. "name": "Benjamin Eberlei",
  241. "email": "kontakt@beberlei.de"
  242. },
  243. {
  244. "name": "Jonathan Wage",
  245. "email": "jonwage@gmail.com"
  246. }
  247. ],
  248. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  249. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  250. "keywords": [
  251. "abstraction",
  252. "database",
  253. "db2",
  254. "dbal",
  255. "mariadb",
  256. "mssql",
  257. "mysql",
  258. "oci8",
  259. "oracle",
  260. "pdo",
  261. "pgsql",
  262. "postgresql",
  263. "queryobject",
  264. "sasql",
  265. "sql",
  266. "sqlite",
  267. "sqlserver",
  268. "sqlsrv"
  269. ],
  270. "support": {
  271. "issues": "https://github.com/doctrine/dbal/issues",
  272. "source": "https://github.com/doctrine/dbal/tree/3.10.0"
  273. },
  274. "funding": [
  275. {
  276. "url": "https://www.doctrine-project.org/sponsorship.html",
  277. "type": "custom"
  278. },
  279. {
  280. "url": "https://www.patreon.com/phpdoctrine",
  281. "type": "patreon"
  282. },
  283. {
  284. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  285. "type": "tidelift"
  286. }
  287. ],
  288. "time": "2025-07-10T21:11:04+00:00"
  289. },
  290. {
  291. "name": "doctrine/deprecations",
  292. "version": "1.1.5",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/doctrine/deprecations.git",
  296. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  301. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "php": "^7.1 || ^8.0"
  306. },
  307. "conflict": {
  308. "phpunit/phpunit": "<=7.5 || >=13"
  309. },
  310. "require-dev": {
  311. "doctrine/coding-standard": "^9 || ^12 || ^13",
  312. "phpstan/phpstan": "1.4.10 || 2.1.11",
  313. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  314. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  315. "psr/log": "^1 || ^2 || ^3"
  316. },
  317. "suggest": {
  318. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  319. },
  320. "type": "library",
  321. "autoload": {
  322. "psr-4": {
  323. "Doctrine\\Deprecations\\": "src"
  324. }
  325. },
  326. "notification-url": "https://packagist.org/downloads/",
  327. "license": [
  328. "MIT"
  329. ],
  330. "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.",
  331. "homepage": "https://www.doctrine-project.org/",
  332. "support": {
  333. "issues": "https://github.com/doctrine/deprecations/issues",
  334. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  335. },
  336. "time": "2025-04-07T20:06:18+00:00"
  337. },
  338. {
  339. "name": "doctrine/doctrine-bundle",
  340. "version": "2.15.0",
  341. "source": {
  342. "type": "git",
  343. "url": "https://github.com/doctrine/DoctrineBundle.git",
  344. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6"
  345. },
  346. "dist": {
  347. "type": "zip",
  348. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d88294521a1bca943240adca65fa19ca8a7288c6",
  349. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6",
  350. "shasum": ""
  351. },
  352. "require": {
  353. "doctrine/dbal": "^3.7.0 || ^4.0",
  354. "doctrine/persistence": "^3.1 || ^4",
  355. "doctrine/sql-formatter": "^1.0.1",
  356. "php": "^8.1",
  357. "symfony/cache": "^6.4 || ^7.0",
  358. "symfony/config": "^6.4 || ^7.0",
  359. "symfony/console": "^6.4 || ^7.0",
  360. "symfony/dependency-injection": "^6.4 || ^7.0",
  361. "symfony/deprecation-contracts": "^2.1 || ^3",
  362. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  363. "symfony/framework-bundle": "^6.4 || ^7.0",
  364. "symfony/service-contracts": "^2.5 || ^3"
  365. },
  366. "conflict": {
  367. "doctrine/annotations": ">=3.0",
  368. "doctrine/cache": "< 1.11",
  369. "doctrine/orm": "<2.17 || >=4.0",
  370. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  371. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  372. },
  373. "require-dev": {
  374. "doctrine/annotations": "^1 || ^2",
  375. "doctrine/cache": "^1.11 || ^2.0",
  376. "doctrine/coding-standard": "^13",
  377. "doctrine/deprecations": "^1.0",
  378. "doctrine/orm": "^2.17 || ^3.1",
  379. "friendsofphp/proxy-manager-lts": "^1.0",
  380. "phpstan/phpstan": "2.1.1",
  381. "phpstan/phpstan-phpunit": "2.0.3",
  382. "phpstan/phpstan-strict-rules": "^2",
  383. "phpunit/phpunit": "^9.6.22",
  384. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  385. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  386. "symfony/messenger": "^6.4 || ^7.0",
  387. "symfony/phpunit-bridge": "^7.2",
  388. "symfony/property-info": "^6.4 || ^7.0",
  389. "symfony/security-bundle": "^6.4 || ^7.0",
  390. "symfony/stopwatch": "^6.4 || ^7.0",
  391. "symfony/string": "^6.4 || ^7.0",
  392. "symfony/twig-bridge": "^6.4 || ^7.0",
  393. "symfony/validator": "^6.4 || ^7.0",
  394. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  395. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  396. "symfony/yaml": "^6.4 || ^7.0",
  397. "twig/twig": "^2.13 || ^3.0.4"
  398. },
  399. "suggest": {
  400. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  401. "ext-pdo": "*",
  402. "symfony/web-profiler-bundle": "To use the data collector."
  403. },
  404. "type": "symfony-bundle",
  405. "autoload": {
  406. "psr-4": {
  407. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Fabien Potencier",
  417. "email": "fabien@symfony.com"
  418. },
  419. {
  420. "name": "Benjamin Eberlei",
  421. "email": "kontakt@beberlei.de"
  422. },
  423. {
  424. "name": "Symfony Community",
  425. "homepage": "https://symfony.com/contributors"
  426. },
  427. {
  428. "name": "Doctrine Project",
  429. "homepage": "https://www.doctrine-project.org/"
  430. }
  431. ],
  432. "description": "Symfony DoctrineBundle",
  433. "homepage": "https://www.doctrine-project.org",
  434. "keywords": [
  435. "database",
  436. "dbal",
  437. "orm",
  438. "persistence"
  439. ],
  440. "support": {
  441. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  442. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.15.0"
  443. },
  444. "funding": [
  445. {
  446. "url": "https://www.doctrine-project.org/sponsorship.html",
  447. "type": "custom"
  448. },
  449. {
  450. "url": "https://www.patreon.com/phpdoctrine",
  451. "type": "patreon"
  452. },
  453. {
  454. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  455. "type": "tidelift"
  456. }
  457. ],
  458. "time": "2025-06-16T19:53:58+00:00"
  459. },
  460. {
  461. "name": "doctrine/doctrine-migrations-bundle",
  462. "version": "3.4.2",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  466. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  471. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "doctrine/doctrine-bundle": "^2.4",
  476. "doctrine/migrations": "^3.2",
  477. "php": "^7.2 || ^8.0",
  478. "symfony/deprecation-contracts": "^2.1 || ^3",
  479. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  480. },
  481. "require-dev": {
  482. "composer/semver": "^3.0",
  483. "doctrine/coding-standard": "^12",
  484. "doctrine/orm": "^2.6 || ^3",
  485. "phpstan/phpstan": "^1.4 || ^2",
  486. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  487. "phpstan/phpstan-phpunit": "^1 || ^2",
  488. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  489. "phpstan/phpstan-symfony": "^1.3 || ^2",
  490. "phpunit/phpunit": "^8.5 || ^9.5",
  491. "symfony/phpunit-bridge": "^6.3 || ^7",
  492. "symfony/var-exporter": "^5.4 || ^6 || ^7"
  493. },
  494. "type": "symfony-bundle",
  495. "autoload": {
  496. "psr-4": {
  497. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Fabien Potencier",
  507. "email": "fabien@symfony.com"
  508. },
  509. {
  510. "name": "Doctrine Project",
  511. "homepage": "https://www.doctrine-project.org"
  512. },
  513. {
  514. "name": "Symfony Community",
  515. "homepage": "https://symfony.com/contributors"
  516. }
  517. ],
  518. "description": "Symfony DoctrineMigrationsBundle",
  519. "homepage": "https://www.doctrine-project.org",
  520. "keywords": [
  521. "dbal",
  522. "migrations",
  523. "schema"
  524. ],
  525. "support": {
  526. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  527. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.4.2"
  528. },
  529. "funding": [
  530. {
  531. "url": "https://www.doctrine-project.org/sponsorship.html",
  532. "type": "custom"
  533. },
  534. {
  535. "url": "https://www.patreon.com/phpdoctrine",
  536. "type": "patreon"
  537. },
  538. {
  539. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  540. "type": "tidelift"
  541. }
  542. ],
  543. "time": "2025-03-11T17:36:26+00:00"
  544. },
  545. {
  546. "name": "doctrine/event-manager",
  547. "version": "2.0.1",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/doctrine/event-manager.git",
  551. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  556. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "php": "^8.1"
  561. },
  562. "conflict": {
  563. "doctrine/common": "<2.9"
  564. },
  565. "require-dev": {
  566. "doctrine/coding-standard": "^12",
  567. "phpstan/phpstan": "^1.8.8",
  568. "phpunit/phpunit": "^10.5",
  569. "vimeo/psalm": "^5.24"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "Doctrine\\Common\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Guilherme Blanco",
  584. "email": "guilhermeblanco@gmail.com"
  585. },
  586. {
  587. "name": "Roman Borschel",
  588. "email": "roman@code-factory.org"
  589. },
  590. {
  591. "name": "Benjamin Eberlei",
  592. "email": "kontakt@beberlei.de"
  593. },
  594. {
  595. "name": "Jonathan Wage",
  596. "email": "jonwage@gmail.com"
  597. },
  598. {
  599. "name": "Johannes Schmitt",
  600. "email": "schmittjoh@gmail.com"
  601. },
  602. {
  603. "name": "Marco Pivetta",
  604. "email": "ocramius@gmail.com"
  605. }
  606. ],
  607. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  608. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  609. "keywords": [
  610. "event",
  611. "event dispatcher",
  612. "event manager",
  613. "event system",
  614. "events"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/doctrine/event-manager/issues",
  618. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://www.doctrine-project.org/sponsorship.html",
  623. "type": "custom"
  624. },
  625. {
  626. "url": "https://www.patreon.com/phpdoctrine",
  627. "type": "patreon"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-05-22T20:47:39+00:00"
  635. },
  636. {
  637. "name": "doctrine/inflector",
  638. "version": "2.0.10",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/doctrine/inflector.git",
  642. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  647. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2 || ^8.0"
  652. },
  653. "require-dev": {
  654. "doctrine/coding-standard": "^11.0",
  655. "phpstan/phpstan": "^1.8",
  656. "phpstan/phpstan-phpunit": "^1.1",
  657. "phpstan/phpstan-strict-rules": "^1.3",
  658. "phpunit/phpunit": "^8.5 || ^9.5",
  659. "vimeo/psalm": "^4.25 || ^5.4"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "guilhermeblanco@gmail.com"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "roman@code-factory.org"
  679. },
  680. {
  681. "name": "Benjamin Eberlei",
  682. "email": "kontakt@beberlei.de"
  683. },
  684. {
  685. "name": "Jonathan Wage",
  686. "email": "jonwage@gmail.com"
  687. },
  688. {
  689. "name": "Johannes Schmitt",
  690. "email": "schmittjoh@gmail.com"
  691. }
  692. ],
  693. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  694. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  695. "keywords": [
  696. "inflection",
  697. "inflector",
  698. "lowercase",
  699. "manipulation",
  700. "php",
  701. "plural",
  702. "singular",
  703. "strings",
  704. "uppercase",
  705. "words"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/doctrine/inflector/issues",
  709. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://www.doctrine-project.org/sponsorship.html",
  714. "type": "custom"
  715. },
  716. {
  717. "url": "https://www.patreon.com/phpdoctrine",
  718. "type": "patreon"
  719. },
  720. {
  721. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  722. "type": "tidelift"
  723. }
  724. ],
  725. "time": "2024-02-18T20:23:39+00:00"
  726. },
  727. {
  728. "name": "doctrine/instantiator",
  729. "version": "2.0.0",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/doctrine/instantiator.git",
  733. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  738. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "^8.1"
  743. },
  744. "require-dev": {
  745. "doctrine/coding-standard": "^11",
  746. "ext-pdo": "*",
  747. "ext-phar": "*",
  748. "phpbench/phpbench": "^1.2",
  749. "phpstan/phpstan": "^1.9.4",
  750. "phpstan/phpstan-phpunit": "^1.3",
  751. "phpunit/phpunit": "^9.5.27",
  752. "vimeo/psalm": "^5.4"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-4": {
  757. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Marco Pivetta",
  767. "email": "ocramius@gmail.com",
  768. "homepage": "https://ocramius.github.io/"
  769. }
  770. ],
  771. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  772. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  773. "keywords": [
  774. "constructor",
  775. "instantiate"
  776. ],
  777. "support": {
  778. "issues": "https://github.com/doctrine/instantiator/issues",
  779. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  780. },
  781. "funding": [
  782. {
  783. "url": "https://www.doctrine-project.org/sponsorship.html",
  784. "type": "custom"
  785. },
  786. {
  787. "url": "https://www.patreon.com/phpdoctrine",
  788. "type": "patreon"
  789. },
  790. {
  791. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  792. "type": "tidelift"
  793. }
  794. ],
  795. "time": "2022-12-30T00:23:10+00:00"
  796. },
  797. {
  798. "name": "doctrine/lexer",
  799. "version": "3.0.1",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/doctrine/lexer.git",
  803. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  808. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  809. "shasum": ""
  810. },
  811. "require": {
  812. "php": "^8.1"
  813. },
  814. "require-dev": {
  815. "doctrine/coding-standard": "^12",
  816. "phpstan/phpstan": "^1.10",
  817. "phpunit/phpunit": "^10.5",
  818. "psalm/plugin-phpunit": "^0.18.3",
  819. "vimeo/psalm": "^5.21"
  820. },
  821. "type": "library",
  822. "autoload": {
  823. "psr-4": {
  824. "Doctrine\\Common\\Lexer\\": "src"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Guilherme Blanco",
  834. "email": "guilhermeblanco@gmail.com"
  835. },
  836. {
  837. "name": "Roman Borschel",
  838. "email": "roman@code-factory.org"
  839. },
  840. {
  841. "name": "Johannes Schmitt",
  842. "email": "schmittjoh@gmail.com"
  843. }
  844. ],
  845. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  846. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  847. "keywords": [
  848. "annotations",
  849. "docblock",
  850. "lexer",
  851. "parser",
  852. "php"
  853. ],
  854. "support": {
  855. "issues": "https://github.com/doctrine/lexer/issues",
  856. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  857. },
  858. "funding": [
  859. {
  860. "url": "https://www.doctrine-project.org/sponsorship.html",
  861. "type": "custom"
  862. },
  863. {
  864. "url": "https://www.patreon.com/phpdoctrine",
  865. "type": "patreon"
  866. },
  867. {
  868. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  869. "type": "tidelift"
  870. }
  871. ],
  872. "time": "2024-02-05T11:56:58+00:00"
  873. },
  874. {
  875. "name": "doctrine/migrations",
  876. "version": "3.9.1",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/doctrine/migrations.git",
  880. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/doctrine/migrations/zipball/0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  885. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  886. "shasum": ""
  887. },
  888. "require": {
  889. "composer-runtime-api": "^2",
  890. "doctrine/dbal": "^3.6 || ^4",
  891. "doctrine/deprecations": "^0.5.3 || ^1",
  892. "doctrine/event-manager": "^1.2 || ^2.0",
  893. "php": "^8.1",
  894. "psr/log": "^1.1.3 || ^2 || ^3",
  895. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  896. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  897. "symfony/var-exporter": "^6.2 || ^7.0"
  898. },
  899. "conflict": {
  900. "doctrine/orm": "<2.12 || >=4"
  901. },
  902. "require-dev": {
  903. "doctrine/coding-standard": "^12",
  904. "doctrine/orm": "^2.13 || ^3",
  905. "doctrine/persistence": "^2 || ^3 || ^4",
  906. "doctrine/sql-formatter": "^1.0",
  907. "ext-pdo_sqlite": "*",
  908. "fig/log-test": "^1",
  909. "phpstan/phpstan": "^1.10",
  910. "phpstan/phpstan-deprecation-rules": "^1.1",
  911. "phpstan/phpstan-phpunit": "^1.3",
  912. "phpstan/phpstan-strict-rules": "^1.4",
  913. "phpstan/phpstan-symfony": "^1.3",
  914. "phpunit/phpunit": "^10.3",
  915. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  916. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  917. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  918. },
  919. "suggest": {
  920. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  921. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  922. },
  923. "bin": [
  924. "bin/doctrine-migrations"
  925. ],
  926. "type": "library",
  927. "autoload": {
  928. "psr-4": {
  929. "Doctrine\\Migrations\\": "src"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Benjamin Eberlei",
  939. "email": "kontakt@beberlei.de"
  940. },
  941. {
  942. "name": "Jonathan Wage",
  943. "email": "jonwage@gmail.com"
  944. },
  945. {
  946. "name": "Michael Simonson",
  947. "email": "contact@mikesimonson.com"
  948. }
  949. ],
  950. "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.",
  951. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  952. "keywords": [
  953. "database",
  954. "dbal",
  955. "migrations"
  956. ],
  957. "support": {
  958. "issues": "https://github.com/doctrine/migrations/issues",
  959. "source": "https://github.com/doctrine/migrations/tree/3.9.1"
  960. },
  961. "funding": [
  962. {
  963. "url": "https://www.doctrine-project.org/sponsorship.html",
  964. "type": "custom"
  965. },
  966. {
  967. "url": "https://www.patreon.com/phpdoctrine",
  968. "type": "patreon"
  969. },
  970. {
  971. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  972. "type": "tidelift"
  973. }
  974. ],
  975. "time": "2025-06-27T07:19:23+00:00"
  976. },
  977. {
  978. "name": "doctrine/orm",
  979. "version": "3.5.0",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/doctrine/orm.git",
  983. "reference": "6deec3655ba3e8f15280aac11e264225854d2369"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/doctrine/orm/zipball/6deec3655ba3e8f15280aac11e264225854d2369",
  988. "reference": "6deec3655ba3e8f15280aac11e264225854d2369",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "composer-runtime-api": "^2",
  993. "doctrine/collections": "^2.2",
  994. "doctrine/dbal": "^3.8.2 || ^4",
  995. "doctrine/deprecations": "^0.5.3 || ^1",
  996. "doctrine/event-manager": "^1.2 || ^2",
  997. "doctrine/inflector": "^1.4 || ^2.0",
  998. "doctrine/instantiator": "^1.3 || ^2",
  999. "doctrine/lexer": "^3",
  1000. "doctrine/persistence": "^3.3.1 || ^4",
  1001. "ext-ctype": "*",
  1002. "php": "^8.1",
  1003. "psr/cache": "^1 || ^2 || ^3",
  1004. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1005. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1006. },
  1007. "require-dev": {
  1008. "doctrine/coding-standard": "^13.0",
  1009. "phpbench/phpbench": "^1.0",
  1010. "phpdocumentor/guides-cli": "^1.4",
  1011. "phpstan/extension-installer": "^1.4",
  1012. "phpstan/phpstan": "2.0.3",
  1013. "phpstan/phpstan-deprecation-rules": "^2",
  1014. "phpunit/phpunit": "^10.4.0",
  1015. "psr/log": "^1 || ^2 || ^3",
  1016. "squizlabs/php_codesniffer": "3.12.0",
  1017. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1018. },
  1019. "suggest": {
  1020. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1021. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1022. },
  1023. "type": "library",
  1024. "autoload": {
  1025. "psr-4": {
  1026. "Doctrine\\ORM\\": "src"
  1027. }
  1028. },
  1029. "notification-url": "https://packagist.org/downloads/",
  1030. "license": [
  1031. "MIT"
  1032. ],
  1033. "authors": [
  1034. {
  1035. "name": "Guilherme Blanco",
  1036. "email": "guilhermeblanco@gmail.com"
  1037. },
  1038. {
  1039. "name": "Roman Borschel",
  1040. "email": "roman@code-factory.org"
  1041. },
  1042. {
  1043. "name": "Benjamin Eberlei",
  1044. "email": "kontakt@beberlei.de"
  1045. },
  1046. {
  1047. "name": "Jonathan Wage",
  1048. "email": "jonwage@gmail.com"
  1049. },
  1050. {
  1051. "name": "Marco Pivetta",
  1052. "email": "ocramius@gmail.com"
  1053. }
  1054. ],
  1055. "description": "Object-Relational-Mapper for PHP",
  1056. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1057. "keywords": [
  1058. "database",
  1059. "orm"
  1060. ],
  1061. "support": {
  1062. "issues": "https://github.com/doctrine/orm/issues",
  1063. "source": "https://github.com/doctrine/orm/tree/3.5.0"
  1064. },
  1065. "time": "2025-07-01T17:40:53+00:00"
  1066. },
  1067. {
  1068. "name": "doctrine/persistence",
  1069. "version": "4.0.0",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/doctrine/persistence.git",
  1073. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1078. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "doctrine/event-manager": "^1 || ^2",
  1083. "php": "^8.1",
  1084. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1085. },
  1086. "conflict": {
  1087. "doctrine/common": "<2.10"
  1088. },
  1089. "require-dev": {
  1090. "doctrine/coding-standard": "^12",
  1091. "phpstan/phpstan": "1.12.7",
  1092. "phpstan/phpstan-phpunit": "^1",
  1093. "phpstan/phpstan-strict-rules": "^1.1",
  1094. "phpunit/phpunit": "^9.6",
  1095. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Persistence\\": "src/Persistence"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Guilherme Blanco",
  1110. "email": "guilhermeblanco@gmail.com"
  1111. },
  1112. {
  1113. "name": "Roman Borschel",
  1114. "email": "roman@code-factory.org"
  1115. },
  1116. {
  1117. "name": "Benjamin Eberlei",
  1118. "email": "kontakt@beberlei.de"
  1119. },
  1120. {
  1121. "name": "Jonathan Wage",
  1122. "email": "jonwage@gmail.com"
  1123. },
  1124. {
  1125. "name": "Johannes Schmitt",
  1126. "email": "schmittjoh@gmail.com"
  1127. },
  1128. {
  1129. "name": "Marco Pivetta",
  1130. "email": "ocramius@gmail.com"
  1131. }
  1132. ],
  1133. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1134. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1135. "keywords": [
  1136. "mapper",
  1137. "object",
  1138. "odm",
  1139. "orm",
  1140. "persistence"
  1141. ],
  1142. "support": {
  1143. "issues": "https://github.com/doctrine/persistence/issues",
  1144. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1145. },
  1146. "funding": [
  1147. {
  1148. "url": "https://www.doctrine-project.org/sponsorship.html",
  1149. "type": "custom"
  1150. },
  1151. {
  1152. "url": "https://www.patreon.com/phpdoctrine",
  1153. "type": "patreon"
  1154. },
  1155. {
  1156. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1157. "type": "tidelift"
  1158. }
  1159. ],
  1160. "time": "2024-11-01T21:49:07+00:00"
  1161. },
  1162. {
  1163. "name": "doctrine/sql-formatter",
  1164. "version": "1.5.2",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/doctrine/sql-formatter.git",
  1168. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1173. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": "^8.1"
  1178. },
  1179. "require-dev": {
  1180. "doctrine/coding-standard": "^12",
  1181. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1182. "phpstan/phpstan": "^1.10",
  1183. "phpunit/phpunit": "^10.5"
  1184. },
  1185. "bin": [
  1186. "bin/sql-formatter"
  1187. ],
  1188. "type": "library",
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Doctrine\\SqlFormatter\\": "src"
  1192. }
  1193. },
  1194. "notification-url": "https://packagist.org/downloads/",
  1195. "license": [
  1196. "MIT"
  1197. ],
  1198. "authors": [
  1199. {
  1200. "name": "Jeremy Dorn",
  1201. "email": "jeremy@jeremydorn.com",
  1202. "homepage": "https://jeremydorn.com/"
  1203. }
  1204. ],
  1205. "description": "a PHP SQL highlighting library",
  1206. "homepage": "https://github.com/doctrine/sql-formatter/",
  1207. "keywords": [
  1208. "highlight",
  1209. "sql"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1213. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1214. },
  1215. "time": "2025-01-24T11:45:48+00:00"
  1216. },
  1217. {
  1218. "name": "egulias/email-validator",
  1219. "version": "4.0.4",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/egulias/EmailValidator.git",
  1223. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1228. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "doctrine/lexer": "^2.0 || ^3.0",
  1233. "php": ">=8.1",
  1234. "symfony/polyfill-intl-idn": "^1.26"
  1235. },
  1236. "require-dev": {
  1237. "phpunit/phpunit": "^10.2",
  1238. "vimeo/psalm": "^5.12"
  1239. },
  1240. "suggest": {
  1241. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "4.0.x-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Egulias\\EmailValidator\\": "src"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Eduardo Gulias Davis"
  1261. }
  1262. ],
  1263. "description": "A library for validating emails against several RFCs",
  1264. "homepage": "https://github.com/egulias/EmailValidator",
  1265. "keywords": [
  1266. "email",
  1267. "emailvalidation",
  1268. "emailvalidator",
  1269. "validation",
  1270. "validator"
  1271. ],
  1272. "support": {
  1273. "issues": "https://github.com/egulias/EmailValidator/issues",
  1274. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1275. },
  1276. "funding": [
  1277. {
  1278. "url": "https://github.com/egulias",
  1279. "type": "github"
  1280. }
  1281. ],
  1282. "time": "2025-03-06T22:45:56+00:00"
  1283. },
  1284. {
  1285. "name": "masterminds/html5",
  1286. "version": "2.9.0",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/Masterminds/html5-php.git",
  1290. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1295. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "ext-dom": "*",
  1300. "php": ">=5.3.0"
  1301. },
  1302. "require-dev": {
  1303. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1304. },
  1305. "type": "library",
  1306. "extra": {
  1307. "branch-alias": {
  1308. "dev-master": "2.7-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "psr-4": {
  1313. "Masterminds\\": "src"
  1314. }
  1315. },
  1316. "notification-url": "https://packagist.org/downloads/",
  1317. "license": [
  1318. "MIT"
  1319. ],
  1320. "authors": [
  1321. {
  1322. "name": "Matt Butcher",
  1323. "email": "technosophos@gmail.com"
  1324. },
  1325. {
  1326. "name": "Matt Farina",
  1327. "email": "matt@mattfarina.com"
  1328. },
  1329. {
  1330. "name": "Asmir Mustafic",
  1331. "email": "goetas@gmail.com"
  1332. }
  1333. ],
  1334. "description": "An HTML5 parser and serializer.",
  1335. "homepage": "http://masterminds.github.io/html5-php",
  1336. "keywords": [
  1337. "HTML5",
  1338. "dom",
  1339. "html",
  1340. "parser",
  1341. "querypath",
  1342. "serializer",
  1343. "xml"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/Masterminds/html5-php/issues",
  1347. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  1348. },
  1349. "time": "2024-03-31T07:05:07+00:00"
  1350. },
  1351. {
  1352. "name": "monolog/monolog",
  1353. "version": "3.9.0",
  1354. "source": {
  1355. "type": "git",
  1356. "url": "https://github.com/Seldaek/monolog.git",
  1357. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  1358. },
  1359. "dist": {
  1360. "type": "zip",
  1361. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1362. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1363. "shasum": ""
  1364. },
  1365. "require": {
  1366. "php": ">=8.1",
  1367. "psr/log": "^2.0 || ^3.0"
  1368. },
  1369. "provide": {
  1370. "psr/log-implementation": "3.0.0"
  1371. },
  1372. "require-dev": {
  1373. "aws/aws-sdk-php": "^3.0",
  1374. "doctrine/couchdb": "~1.0@dev",
  1375. "elasticsearch/elasticsearch": "^7 || ^8",
  1376. "ext-json": "*",
  1377. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1378. "guzzlehttp/guzzle": "^7.4.5",
  1379. "guzzlehttp/psr7": "^2.2",
  1380. "mongodb/mongodb": "^1.8",
  1381. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1382. "php-console/php-console": "^3.1.8",
  1383. "phpstan/phpstan": "^2",
  1384. "phpstan/phpstan-deprecation-rules": "^2",
  1385. "phpstan/phpstan-strict-rules": "^2",
  1386. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1387. "predis/predis": "^1.1 || ^2",
  1388. "rollbar/rollbar": "^4.0",
  1389. "ruflin/elastica": "^7 || ^8",
  1390. "symfony/mailer": "^5.4 || ^6",
  1391. "symfony/mime": "^5.4 || ^6"
  1392. },
  1393. "suggest": {
  1394. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1395. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1396. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1397. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1398. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1399. "ext-mbstring": "Allow to work properly with unicode symbols",
  1400. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1401. "ext-openssl": "Required to send log messages using SSL",
  1402. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1403. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1404. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1405. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1406. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1407. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-main": "3.x-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "psr-4": {
  1417. "Monolog\\": "src/Monolog"
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "authors": [
  1425. {
  1426. "name": "Jordi Boggiano",
  1427. "email": "j.boggiano@seld.be",
  1428. "homepage": "https://seld.be"
  1429. }
  1430. ],
  1431. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1432. "homepage": "https://github.com/Seldaek/monolog",
  1433. "keywords": [
  1434. "log",
  1435. "logging",
  1436. "psr-3"
  1437. ],
  1438. "support": {
  1439. "issues": "https://github.com/Seldaek/monolog/issues",
  1440. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  1441. },
  1442. "funding": [
  1443. {
  1444. "url": "https://github.com/Seldaek",
  1445. "type": "github"
  1446. },
  1447. {
  1448. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1449. "type": "tidelift"
  1450. }
  1451. ],
  1452. "time": "2025-03-24T10:02:05+00:00"
  1453. },
  1454. {
  1455. "name": "myclabs/deep-copy",
  1456. "version": "1.13.3",
  1457. "source": {
  1458. "type": "git",
  1459. "url": "https://github.com/myclabs/DeepCopy.git",
  1460. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  1461. },
  1462. "dist": {
  1463. "type": "zip",
  1464. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  1465. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  1466. "shasum": ""
  1467. },
  1468. "require": {
  1469. "php": "^7.1 || ^8.0"
  1470. },
  1471. "conflict": {
  1472. "doctrine/collections": "<1.6.8",
  1473. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  1474. },
  1475. "require-dev": {
  1476. "doctrine/collections": "^1.6.8",
  1477. "doctrine/common": "^2.13.3 || ^3.2.2",
  1478. "phpspec/prophecy": "^1.10",
  1479. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  1480. },
  1481. "type": "library",
  1482. "autoload": {
  1483. "files": [
  1484. "src/DeepCopy/deep_copy.php"
  1485. ],
  1486. "psr-4": {
  1487. "DeepCopy\\": "src/DeepCopy/"
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "MIT"
  1493. ],
  1494. "description": "Create deep copies (clones) of your objects",
  1495. "keywords": [
  1496. "clone",
  1497. "copy",
  1498. "duplicate",
  1499. "object",
  1500. "object graph"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/myclabs/DeepCopy/issues",
  1504. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  1505. },
  1506. "funding": [
  1507. {
  1508. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  1509. "type": "tidelift"
  1510. }
  1511. ],
  1512. "time": "2025-07-05T12:25:42+00:00"
  1513. },
  1514. {
  1515. "name": "nikic/php-parser",
  1516. "version": "v5.5.0",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/nikic/PHP-Parser.git",
  1520. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  1525. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "ext-ctype": "*",
  1530. "ext-json": "*",
  1531. "ext-tokenizer": "*",
  1532. "php": ">=7.4"
  1533. },
  1534. "require-dev": {
  1535. "ircmaxell/php-yacc": "^0.0.7",
  1536. "phpunit/phpunit": "^9.0"
  1537. },
  1538. "bin": [
  1539. "bin/php-parse"
  1540. ],
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "5.0-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-4": {
  1549. "PhpParser\\": "lib/PhpParser"
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "BSD-3-Clause"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Nikita Popov"
  1559. }
  1560. ],
  1561. "description": "A PHP parser written in PHP",
  1562. "keywords": [
  1563. "parser",
  1564. "php"
  1565. ],
  1566. "support": {
  1567. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1568. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  1569. },
  1570. "time": "2025-05-31T08:24:38+00:00"
  1571. },
  1572. {
  1573. "name": "phar-io/manifest",
  1574. "version": "2.0.4",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/phar-io/manifest.git",
  1578. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  1583. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  1584. "shasum": ""
  1585. },
  1586. "require": {
  1587. "ext-dom": "*",
  1588. "ext-libxml": "*",
  1589. "ext-phar": "*",
  1590. "ext-xmlwriter": "*",
  1591. "phar-io/version": "^3.0.1",
  1592. "php": "^7.2 || ^8.0"
  1593. },
  1594. "type": "library",
  1595. "extra": {
  1596. "branch-alias": {
  1597. "dev-master": "2.0.x-dev"
  1598. }
  1599. },
  1600. "autoload": {
  1601. "classmap": [
  1602. "src/"
  1603. ]
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "BSD-3-Clause"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Arne Blankerts",
  1612. "email": "arne@blankerts.de",
  1613. "role": "Developer"
  1614. },
  1615. {
  1616. "name": "Sebastian Heuer",
  1617. "email": "sebastian@phpeople.de",
  1618. "role": "Developer"
  1619. },
  1620. {
  1621. "name": "Sebastian Bergmann",
  1622. "email": "sebastian@phpunit.de",
  1623. "role": "Developer"
  1624. }
  1625. ],
  1626. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1627. "support": {
  1628. "issues": "https://github.com/phar-io/manifest/issues",
  1629. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://github.com/theseer",
  1634. "type": "github"
  1635. }
  1636. ],
  1637. "time": "2024-03-03T12:33:53+00:00"
  1638. },
  1639. {
  1640. "name": "phar-io/version",
  1641. "version": "3.2.1",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/phar-io/version.git",
  1645. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1650. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "php": "^7.2 || ^8.0"
  1655. },
  1656. "type": "library",
  1657. "autoload": {
  1658. "classmap": [
  1659. "src/"
  1660. ]
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "BSD-3-Clause"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Arne Blankerts",
  1669. "email": "arne@blankerts.de",
  1670. "role": "Developer"
  1671. },
  1672. {
  1673. "name": "Sebastian Heuer",
  1674. "email": "sebastian@phpeople.de",
  1675. "role": "Developer"
  1676. },
  1677. {
  1678. "name": "Sebastian Bergmann",
  1679. "email": "sebastian@phpunit.de",
  1680. "role": "Developer"
  1681. }
  1682. ],
  1683. "description": "Library for handling version information and constraints",
  1684. "support": {
  1685. "issues": "https://github.com/phar-io/version/issues",
  1686. "source": "https://github.com/phar-io/version/tree/3.2.1"
  1687. },
  1688. "time": "2022-02-21T01:04:05+00:00"
  1689. },
  1690. {
  1691. "name": "phpdocumentor/reflection-common",
  1692. "version": "2.2.0",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1696. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1701. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1702. "shasum": ""
  1703. },
  1704. "require": {
  1705. "php": "^7.2 || ^8.0"
  1706. },
  1707. "type": "library",
  1708. "extra": {
  1709. "branch-alias": {
  1710. "dev-2.x": "2.x-dev"
  1711. }
  1712. },
  1713. "autoload": {
  1714. "psr-4": {
  1715. "phpDocumentor\\Reflection\\": "src/"
  1716. }
  1717. },
  1718. "notification-url": "https://packagist.org/downloads/",
  1719. "license": [
  1720. "MIT"
  1721. ],
  1722. "authors": [
  1723. {
  1724. "name": "Jaap van Otterdijk",
  1725. "email": "opensource@ijaap.nl"
  1726. }
  1727. ],
  1728. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1729. "homepage": "http://www.phpdoc.org",
  1730. "keywords": [
  1731. "FQSEN",
  1732. "phpDocumentor",
  1733. "phpdoc",
  1734. "reflection",
  1735. "static analysis"
  1736. ],
  1737. "support": {
  1738. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1739. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1740. },
  1741. "time": "2020-06-27T09:03:43+00:00"
  1742. },
  1743. {
  1744. "name": "phpdocumentor/reflection-docblock",
  1745. "version": "5.6.2",
  1746. "source": {
  1747. "type": "git",
  1748. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1749. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  1750. },
  1751. "dist": {
  1752. "type": "zip",
  1753. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  1754. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  1755. "shasum": ""
  1756. },
  1757. "require": {
  1758. "doctrine/deprecations": "^1.1",
  1759. "ext-filter": "*",
  1760. "php": "^7.4 || ^8.0",
  1761. "phpdocumentor/reflection-common": "^2.2",
  1762. "phpdocumentor/type-resolver": "^1.7",
  1763. "phpstan/phpdoc-parser": "^1.7|^2.0",
  1764. "webmozart/assert": "^1.9.1"
  1765. },
  1766. "require-dev": {
  1767. "mockery/mockery": "~1.3.5 || ~1.6.0",
  1768. "phpstan/extension-installer": "^1.1",
  1769. "phpstan/phpstan": "^1.8",
  1770. "phpstan/phpstan-mockery": "^1.1",
  1771. "phpstan/phpstan-webmozart-assert": "^1.2",
  1772. "phpunit/phpunit": "^9.5",
  1773. "psalm/phar": "^5.26"
  1774. },
  1775. "type": "library",
  1776. "extra": {
  1777. "branch-alias": {
  1778. "dev-master": "5.x-dev"
  1779. }
  1780. },
  1781. "autoload": {
  1782. "psr-4": {
  1783. "phpDocumentor\\Reflection\\": "src"
  1784. }
  1785. },
  1786. "notification-url": "https://packagist.org/downloads/",
  1787. "license": [
  1788. "MIT"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Mike van Riel",
  1793. "email": "me@mikevanriel.com"
  1794. },
  1795. {
  1796. "name": "Jaap van Otterdijk",
  1797. "email": "opensource@ijaap.nl"
  1798. }
  1799. ],
  1800. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1801. "support": {
  1802. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1803. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  1804. },
  1805. "time": "2025-04-13T19:20:35+00:00"
  1806. },
  1807. {
  1808. "name": "phpdocumentor/type-resolver",
  1809. "version": "1.10.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1813. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1818. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1819. "shasum": ""
  1820. },
  1821. "require": {
  1822. "doctrine/deprecations": "^1.0",
  1823. "php": "^7.3 || ^8.0",
  1824. "phpdocumentor/reflection-common": "^2.0",
  1825. "phpstan/phpdoc-parser": "^1.18|^2.0"
  1826. },
  1827. "require-dev": {
  1828. "ext-tokenizer": "*",
  1829. "phpbench/phpbench": "^1.2",
  1830. "phpstan/extension-installer": "^1.1",
  1831. "phpstan/phpstan": "^1.8",
  1832. "phpstan/phpstan-phpunit": "^1.1",
  1833. "phpunit/phpunit": "^9.5",
  1834. "rector/rector": "^0.13.9",
  1835. "vimeo/psalm": "^4.25"
  1836. },
  1837. "type": "library",
  1838. "extra": {
  1839. "branch-alias": {
  1840. "dev-1.x": "1.x-dev"
  1841. }
  1842. },
  1843. "autoload": {
  1844. "psr-4": {
  1845. "phpDocumentor\\Reflection\\": "src"
  1846. }
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Mike van Riel",
  1855. "email": "me@mikevanriel.com"
  1856. }
  1857. ],
  1858. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1859. "support": {
  1860. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1861. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  1862. },
  1863. "time": "2024-11-09T15:12:26+00:00"
  1864. },
  1865. {
  1866. "name": "phpstan/phpdoc-parser",
  1867. "version": "2.2.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1871. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1876. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "php": "^7.4 || ^8.0"
  1881. },
  1882. "require-dev": {
  1883. "doctrine/annotations": "^2.0",
  1884. "nikic/php-parser": "^5.3.0",
  1885. "php-parallel-lint/php-parallel-lint": "^1.2",
  1886. "phpstan/extension-installer": "^1.0",
  1887. "phpstan/phpstan": "^2.0",
  1888. "phpstan/phpstan-phpunit": "^2.0",
  1889. "phpstan/phpstan-strict-rules": "^2.0",
  1890. "phpunit/phpunit": "^9.6",
  1891. "symfony/process": "^5.2"
  1892. },
  1893. "type": "library",
  1894. "autoload": {
  1895. "psr-4": {
  1896. "PHPStan\\PhpDocParser\\": [
  1897. "src/"
  1898. ]
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1906. "support": {
  1907. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1908. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  1909. },
  1910. "time": "2025-07-13T07:04:09+00:00"
  1911. },
  1912. {
  1913. "name": "phpunit/php-code-coverage",
  1914. "version": "12.3.1",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1918. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170",
  1923. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170",
  1924. "shasum": ""
  1925. },
  1926. "require": {
  1927. "ext-dom": "*",
  1928. "ext-libxml": "*",
  1929. "ext-xmlwriter": "*",
  1930. "nikic/php-parser": "^5.4.0",
  1931. "php": ">=8.3",
  1932. "phpunit/php-file-iterator": "^6.0",
  1933. "phpunit/php-text-template": "^5.0",
  1934. "sebastian/complexity": "^5.0",
  1935. "sebastian/environment": "^8.0",
  1936. "sebastian/lines-of-code": "^4.0",
  1937. "sebastian/version": "^6.0",
  1938. "theseer/tokenizer": "^1.2.3"
  1939. },
  1940. "require-dev": {
  1941. "phpunit/phpunit": "^12.1"
  1942. },
  1943. "suggest": {
  1944. "ext-pcov": "PHP extension that provides line coverage",
  1945. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-main": "12.3.x-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "classmap": [
  1955. "src/"
  1956. ]
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "BSD-3-Clause"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Sebastian Bergmann",
  1965. "email": "sebastian@phpunit.de",
  1966. "role": "lead"
  1967. }
  1968. ],
  1969. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1970. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1971. "keywords": [
  1972. "coverage",
  1973. "testing",
  1974. "xunit"
  1975. ],
  1976. "support": {
  1977. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1978. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  1979. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1"
  1980. },
  1981. "funding": [
  1982. {
  1983. "url": "https://github.com/sebastianbergmann",
  1984. "type": "github"
  1985. },
  1986. {
  1987. "url": "https://liberapay.com/sebastianbergmann",
  1988. "type": "liberapay"
  1989. },
  1990. {
  1991. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  1992. "type": "thanks_dev"
  1993. },
  1994. {
  1995. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  1996. "type": "tidelift"
  1997. }
  1998. ],
  1999. "time": "2025-06-18T08:58:13+00:00"
  2000. },
  2001. {
  2002. "name": "phpunit/php-file-iterator",
  2003. "version": "6.0.0",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2007. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  2012. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "php": ">=8.3"
  2017. },
  2018. "require-dev": {
  2019. "phpunit/phpunit": "^12.0"
  2020. },
  2021. "type": "library",
  2022. "extra": {
  2023. "branch-alias": {
  2024. "dev-main": "6.0-dev"
  2025. }
  2026. },
  2027. "autoload": {
  2028. "classmap": [
  2029. "src/"
  2030. ]
  2031. },
  2032. "notification-url": "https://packagist.org/downloads/",
  2033. "license": [
  2034. "BSD-3-Clause"
  2035. ],
  2036. "authors": [
  2037. {
  2038. "name": "Sebastian Bergmann",
  2039. "email": "sebastian@phpunit.de",
  2040. "role": "lead"
  2041. }
  2042. ],
  2043. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2044. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2045. "keywords": [
  2046. "filesystem",
  2047. "iterator"
  2048. ],
  2049. "support": {
  2050. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  2051. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  2052. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  2053. },
  2054. "funding": [
  2055. {
  2056. "url": "https://github.com/sebastianbergmann",
  2057. "type": "github"
  2058. }
  2059. ],
  2060. "time": "2025-02-07T04:58:37+00:00"
  2061. },
  2062. {
  2063. "name": "phpunit/php-invoker",
  2064. "version": "6.0.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  2068. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  2073. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "php": ">=8.3"
  2078. },
  2079. "require-dev": {
  2080. "ext-pcntl": "*",
  2081. "phpunit/phpunit": "^12.0"
  2082. },
  2083. "suggest": {
  2084. "ext-pcntl": "*"
  2085. },
  2086. "type": "library",
  2087. "extra": {
  2088. "branch-alias": {
  2089. "dev-main": "6.0-dev"
  2090. }
  2091. },
  2092. "autoload": {
  2093. "classmap": [
  2094. "src/"
  2095. ]
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "BSD-3-Clause"
  2100. ],
  2101. "authors": [
  2102. {
  2103. "name": "Sebastian Bergmann",
  2104. "email": "sebastian@phpunit.de",
  2105. "role": "lead"
  2106. }
  2107. ],
  2108. "description": "Invoke callables with a timeout",
  2109. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  2110. "keywords": [
  2111. "process"
  2112. ],
  2113. "support": {
  2114. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  2115. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  2116. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  2117. },
  2118. "funding": [
  2119. {
  2120. "url": "https://github.com/sebastianbergmann",
  2121. "type": "github"
  2122. }
  2123. ],
  2124. "time": "2025-02-07T04:58:58+00:00"
  2125. },
  2126. {
  2127. "name": "phpunit/php-text-template",
  2128. "version": "5.0.0",
  2129. "source": {
  2130. "type": "git",
  2131. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2132. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  2133. },
  2134. "dist": {
  2135. "type": "zip",
  2136. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  2137. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  2138. "shasum": ""
  2139. },
  2140. "require": {
  2141. "php": ">=8.3"
  2142. },
  2143. "require-dev": {
  2144. "phpunit/phpunit": "^12.0"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "branch-alias": {
  2149. "dev-main": "5.0-dev"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "classmap": [
  2154. "src/"
  2155. ]
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "BSD-3-Clause"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Sebastian Bergmann",
  2164. "email": "sebastian@phpunit.de",
  2165. "role": "lead"
  2166. }
  2167. ],
  2168. "description": "Simple template engine.",
  2169. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2170. "keywords": [
  2171. "template"
  2172. ],
  2173. "support": {
  2174. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  2175. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  2176. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  2177. },
  2178. "funding": [
  2179. {
  2180. "url": "https://github.com/sebastianbergmann",
  2181. "type": "github"
  2182. }
  2183. ],
  2184. "time": "2025-02-07T04:59:16+00:00"
  2185. },
  2186. {
  2187. "name": "phpunit/php-timer",
  2188. "version": "8.0.0",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2192. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  2197. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=8.3"
  2202. },
  2203. "require-dev": {
  2204. "phpunit/phpunit": "^12.0"
  2205. },
  2206. "type": "library",
  2207. "extra": {
  2208. "branch-alias": {
  2209. "dev-main": "8.0-dev"
  2210. }
  2211. },
  2212. "autoload": {
  2213. "classmap": [
  2214. "src/"
  2215. ]
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "BSD-3-Clause"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Sebastian Bergmann",
  2224. "email": "sebastian@phpunit.de",
  2225. "role": "lead"
  2226. }
  2227. ],
  2228. "description": "Utility class for timing",
  2229. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2230. "keywords": [
  2231. "timer"
  2232. ],
  2233. "support": {
  2234. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  2235. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  2236. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  2237. },
  2238. "funding": [
  2239. {
  2240. "url": "https://github.com/sebastianbergmann",
  2241. "type": "github"
  2242. }
  2243. ],
  2244. "time": "2025-02-07T04:59:38+00:00"
  2245. },
  2246. {
  2247. "name": "phpunit/phpunit",
  2248. "version": "12.2.7",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2252. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414",
  2257. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414",
  2258. "shasum": ""
  2259. },
  2260. "require": {
  2261. "ext-dom": "*",
  2262. "ext-json": "*",
  2263. "ext-libxml": "*",
  2264. "ext-mbstring": "*",
  2265. "ext-xml": "*",
  2266. "ext-xmlwriter": "*",
  2267. "myclabs/deep-copy": "^1.13.3",
  2268. "phar-io/manifest": "^2.0.4",
  2269. "phar-io/version": "^3.2.1",
  2270. "php": ">=8.3",
  2271. "phpunit/php-code-coverage": "^12.3.1",
  2272. "phpunit/php-file-iterator": "^6.0.0",
  2273. "phpunit/php-invoker": "^6.0.0",
  2274. "phpunit/php-text-template": "^5.0.0",
  2275. "phpunit/php-timer": "^8.0.0",
  2276. "sebastian/cli-parser": "^4.0.0",
  2277. "sebastian/comparator": "^7.1.0",
  2278. "sebastian/diff": "^7.0.0",
  2279. "sebastian/environment": "^8.0.2",
  2280. "sebastian/exporter": "^7.0.0",
  2281. "sebastian/global-state": "^8.0.0",
  2282. "sebastian/object-enumerator": "^7.0.0",
  2283. "sebastian/type": "^6.0.2",
  2284. "sebastian/version": "^6.0.0",
  2285. "staabm/side-effects-detector": "^1.0.5"
  2286. },
  2287. "bin": [
  2288. "phpunit"
  2289. ],
  2290. "type": "library",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-main": "12.2-dev"
  2294. }
  2295. },
  2296. "autoload": {
  2297. "files": [
  2298. "src/Framework/Assert/Functions.php"
  2299. ],
  2300. "classmap": [
  2301. "src/"
  2302. ]
  2303. },
  2304. "notification-url": "https://packagist.org/downloads/",
  2305. "license": [
  2306. "BSD-3-Clause"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "Sebastian Bergmann",
  2311. "email": "sebastian@phpunit.de",
  2312. "role": "lead"
  2313. }
  2314. ],
  2315. "description": "The PHP Unit Testing framework.",
  2316. "homepage": "https://phpunit.de/",
  2317. "keywords": [
  2318. "phpunit",
  2319. "testing",
  2320. "xunit"
  2321. ],
  2322. "support": {
  2323. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  2324. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  2325. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7"
  2326. },
  2327. "funding": [
  2328. {
  2329. "url": "https://phpunit.de/sponsors.html",
  2330. "type": "custom"
  2331. },
  2332. {
  2333. "url": "https://github.com/sebastianbergmann",
  2334. "type": "github"
  2335. },
  2336. {
  2337. "url": "https://liberapay.com/sebastianbergmann",
  2338. "type": "liberapay"
  2339. },
  2340. {
  2341. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  2342. "type": "thanks_dev"
  2343. },
  2344. {
  2345. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  2346. "type": "tidelift"
  2347. }
  2348. ],
  2349. "time": "2025-07-11T04:11:13+00:00"
  2350. },
  2351. {
  2352. "name": "psr/cache",
  2353. "version": "3.0.0",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/php-fig/cache.git",
  2357. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2362. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2363. "shasum": ""
  2364. },
  2365. "require": {
  2366. "php": ">=8.0.0"
  2367. },
  2368. "type": "library",
  2369. "extra": {
  2370. "branch-alias": {
  2371. "dev-master": "1.0.x-dev"
  2372. }
  2373. },
  2374. "autoload": {
  2375. "psr-4": {
  2376. "Psr\\Cache\\": "src/"
  2377. }
  2378. },
  2379. "notification-url": "https://packagist.org/downloads/",
  2380. "license": [
  2381. "MIT"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "PHP-FIG",
  2386. "homepage": "https://www.php-fig.org/"
  2387. }
  2388. ],
  2389. "description": "Common interface for caching libraries",
  2390. "keywords": [
  2391. "cache",
  2392. "psr",
  2393. "psr-6"
  2394. ],
  2395. "support": {
  2396. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2397. },
  2398. "time": "2021-02-03T23:26:27+00:00"
  2399. },
  2400. {
  2401. "name": "psr/clock",
  2402. "version": "1.0.0",
  2403. "source": {
  2404. "type": "git",
  2405. "url": "https://github.com/php-fig/clock.git",
  2406. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2407. },
  2408. "dist": {
  2409. "type": "zip",
  2410. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2411. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2412. "shasum": ""
  2413. },
  2414. "require": {
  2415. "php": "^7.0 || ^8.0"
  2416. },
  2417. "type": "library",
  2418. "autoload": {
  2419. "psr-4": {
  2420. "Psr\\Clock\\": "src/"
  2421. }
  2422. },
  2423. "notification-url": "https://packagist.org/downloads/",
  2424. "license": [
  2425. "MIT"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "PHP-FIG",
  2430. "homepage": "https://www.php-fig.org/"
  2431. }
  2432. ],
  2433. "description": "Common interface for reading the clock.",
  2434. "homepage": "https://github.com/php-fig/clock",
  2435. "keywords": [
  2436. "clock",
  2437. "now",
  2438. "psr",
  2439. "psr-20",
  2440. "time"
  2441. ],
  2442. "support": {
  2443. "issues": "https://github.com/php-fig/clock/issues",
  2444. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2445. },
  2446. "time": "2022-11-25T14:36:26+00:00"
  2447. },
  2448. {
  2449. "name": "psr/container",
  2450. "version": "2.0.2",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/php-fig/container.git",
  2454. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2459. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2460. "shasum": ""
  2461. },
  2462. "require": {
  2463. "php": ">=7.4.0"
  2464. },
  2465. "type": "library",
  2466. "extra": {
  2467. "branch-alias": {
  2468. "dev-master": "2.0.x-dev"
  2469. }
  2470. },
  2471. "autoload": {
  2472. "psr-4": {
  2473. "Psr\\Container\\": "src/"
  2474. }
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "PHP-FIG",
  2483. "homepage": "https://www.php-fig.org/"
  2484. }
  2485. ],
  2486. "description": "Common Container Interface (PHP FIG PSR-11)",
  2487. "homepage": "https://github.com/php-fig/container",
  2488. "keywords": [
  2489. "PSR-11",
  2490. "container",
  2491. "container-interface",
  2492. "container-interop",
  2493. "psr"
  2494. ],
  2495. "support": {
  2496. "issues": "https://github.com/php-fig/container/issues",
  2497. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2498. },
  2499. "time": "2021-11-05T16:47:00+00:00"
  2500. },
  2501. {
  2502. "name": "psr/event-dispatcher",
  2503. "version": "1.0.0",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/php-fig/event-dispatcher.git",
  2507. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2512. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "php": ">=7.2.0"
  2517. },
  2518. "type": "library",
  2519. "extra": {
  2520. "branch-alias": {
  2521. "dev-master": "1.0.x-dev"
  2522. }
  2523. },
  2524. "autoload": {
  2525. "psr-4": {
  2526. "Psr\\EventDispatcher\\": "src/"
  2527. }
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "PHP-FIG",
  2536. "homepage": "http://www.php-fig.org/"
  2537. }
  2538. ],
  2539. "description": "Standard interfaces for event handling.",
  2540. "keywords": [
  2541. "events",
  2542. "psr",
  2543. "psr-14"
  2544. ],
  2545. "support": {
  2546. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2547. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2548. },
  2549. "time": "2019-01-08T18:20:26+00:00"
  2550. },
  2551. {
  2552. "name": "psr/link",
  2553. "version": "2.0.1",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/php-fig/link.git",
  2557. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2562. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "php": ">=8.0.0"
  2567. },
  2568. "suggest": {
  2569. "fig/link-util": "Provides some useful PSR-13 utilities"
  2570. },
  2571. "type": "library",
  2572. "extra": {
  2573. "branch-alias": {
  2574. "dev-master": "2.0.x-dev"
  2575. }
  2576. },
  2577. "autoload": {
  2578. "psr-4": {
  2579. "Psr\\Link\\": "src/"
  2580. }
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "PHP-FIG",
  2589. "homepage": "http://www.php-fig.org/"
  2590. }
  2591. ],
  2592. "description": "Common interfaces for HTTP links",
  2593. "homepage": "https://github.com/php-fig/link",
  2594. "keywords": [
  2595. "http",
  2596. "http-link",
  2597. "link",
  2598. "psr",
  2599. "psr-13",
  2600. "rest"
  2601. ],
  2602. "support": {
  2603. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2604. },
  2605. "time": "2021-03-11T23:00:27+00:00"
  2606. },
  2607. {
  2608. "name": "psr/log",
  2609. "version": "3.0.2",
  2610. "source": {
  2611. "type": "git",
  2612. "url": "https://github.com/php-fig/log.git",
  2613. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2614. },
  2615. "dist": {
  2616. "type": "zip",
  2617. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2618. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2619. "shasum": ""
  2620. },
  2621. "require": {
  2622. "php": ">=8.0.0"
  2623. },
  2624. "type": "library",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-master": "3.x-dev"
  2628. }
  2629. },
  2630. "autoload": {
  2631. "psr-4": {
  2632. "Psr\\Log\\": "src"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "PHP-FIG",
  2642. "homepage": "https://www.php-fig.org/"
  2643. }
  2644. ],
  2645. "description": "Common interface for logging libraries",
  2646. "homepage": "https://github.com/php-fig/log",
  2647. "keywords": [
  2648. "log",
  2649. "psr",
  2650. "psr-3"
  2651. ],
  2652. "support": {
  2653. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2654. },
  2655. "time": "2024-09-11T13:17:53+00:00"
  2656. },
  2657. {
  2658. "name": "sebastian/cli-parser",
  2659. "version": "4.0.0",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  2663. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  2668. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  2669. "shasum": ""
  2670. },
  2671. "require": {
  2672. "php": ">=8.3"
  2673. },
  2674. "require-dev": {
  2675. "phpunit/phpunit": "^12.0"
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-main": "4.0-dev"
  2681. }
  2682. },
  2683. "autoload": {
  2684. "classmap": [
  2685. "src/"
  2686. ]
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "BSD-3-Clause"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Sebastian Bergmann",
  2695. "email": "sebastian@phpunit.de",
  2696. "role": "lead"
  2697. }
  2698. ],
  2699. "description": "Library for parsing CLI options",
  2700. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  2701. "support": {
  2702. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  2703. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  2704. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  2705. },
  2706. "funding": [
  2707. {
  2708. "url": "https://github.com/sebastianbergmann",
  2709. "type": "github"
  2710. }
  2711. ],
  2712. "time": "2025-02-07T04:53:50+00:00"
  2713. },
  2714. {
  2715. "name": "sebastian/comparator",
  2716. "version": "7.1.0",
  2717. "source": {
  2718. "type": "git",
  2719. "url": "https://github.com/sebastianbergmann/comparator.git",
  2720. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f"
  2721. },
  2722. "dist": {
  2723. "type": "zip",
  2724. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/03d905327dccc0851c9a08d6a979dfc683826b6f",
  2725. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f",
  2726. "shasum": ""
  2727. },
  2728. "require": {
  2729. "ext-dom": "*",
  2730. "ext-mbstring": "*",
  2731. "php": ">=8.3",
  2732. "sebastian/diff": "^7.0",
  2733. "sebastian/exporter": "^7.0"
  2734. },
  2735. "require-dev": {
  2736. "phpunit/phpunit": "^12.2"
  2737. },
  2738. "suggest": {
  2739. "ext-bcmath": "For comparing BcMath\\Number objects"
  2740. },
  2741. "type": "library",
  2742. "extra": {
  2743. "branch-alias": {
  2744. "dev-main": "7.1-dev"
  2745. }
  2746. },
  2747. "autoload": {
  2748. "classmap": [
  2749. "src/"
  2750. ]
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "BSD-3-Clause"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Sebastian Bergmann",
  2759. "email": "sebastian@phpunit.de"
  2760. },
  2761. {
  2762. "name": "Jeff Welch",
  2763. "email": "whatthejeff@gmail.com"
  2764. },
  2765. {
  2766. "name": "Volker Dusch",
  2767. "email": "github@wallbash.com"
  2768. },
  2769. {
  2770. "name": "Bernhard Schussek",
  2771. "email": "bschussek@2bepublished.at"
  2772. }
  2773. ],
  2774. "description": "Provides the functionality to compare PHP values for equality",
  2775. "homepage": "https://github.com/sebastianbergmann/comparator",
  2776. "keywords": [
  2777. "comparator",
  2778. "compare",
  2779. "equality"
  2780. ],
  2781. "support": {
  2782. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2783. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  2784. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.0"
  2785. },
  2786. "funding": [
  2787. {
  2788. "url": "https://github.com/sebastianbergmann",
  2789. "type": "github"
  2790. },
  2791. {
  2792. "url": "https://liberapay.com/sebastianbergmann",
  2793. "type": "liberapay"
  2794. },
  2795. {
  2796. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  2797. "type": "thanks_dev"
  2798. },
  2799. {
  2800. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  2801. "type": "tidelift"
  2802. }
  2803. ],
  2804. "time": "2025-06-17T07:41:58+00:00"
  2805. },
  2806. {
  2807. "name": "sebastian/complexity",
  2808. "version": "5.0.0",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/sebastianbergmann/complexity.git",
  2812. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  2817. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "nikic/php-parser": "^5.0",
  2822. "php": ">=8.3"
  2823. },
  2824. "require-dev": {
  2825. "phpunit/phpunit": "^12.0"
  2826. },
  2827. "type": "library",
  2828. "extra": {
  2829. "branch-alias": {
  2830. "dev-main": "5.0-dev"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "classmap": [
  2835. "src/"
  2836. ]
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "BSD-3-Clause"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "Sebastian Bergmann",
  2845. "email": "sebastian@phpunit.de",
  2846. "role": "lead"
  2847. }
  2848. ],
  2849. "description": "Library for calculating the complexity of PHP code units",
  2850. "homepage": "https://github.com/sebastianbergmann/complexity",
  2851. "support": {
  2852. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  2853. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  2854. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  2855. },
  2856. "funding": [
  2857. {
  2858. "url": "https://github.com/sebastianbergmann",
  2859. "type": "github"
  2860. }
  2861. ],
  2862. "time": "2025-02-07T04:55:25+00:00"
  2863. },
  2864. {
  2865. "name": "sebastian/diff",
  2866. "version": "7.0.0",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/sebastianbergmann/diff.git",
  2870. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  2875. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  2876. "shasum": ""
  2877. },
  2878. "require": {
  2879. "php": ">=8.3"
  2880. },
  2881. "require-dev": {
  2882. "phpunit/phpunit": "^12.0",
  2883. "symfony/process": "^7.2"
  2884. },
  2885. "type": "library",
  2886. "extra": {
  2887. "branch-alias": {
  2888. "dev-main": "7.0-dev"
  2889. }
  2890. },
  2891. "autoload": {
  2892. "classmap": [
  2893. "src/"
  2894. ]
  2895. },
  2896. "notification-url": "https://packagist.org/downloads/",
  2897. "license": [
  2898. "BSD-3-Clause"
  2899. ],
  2900. "authors": [
  2901. {
  2902. "name": "Sebastian Bergmann",
  2903. "email": "sebastian@phpunit.de"
  2904. },
  2905. {
  2906. "name": "Kore Nordmann",
  2907. "email": "mail@kore-nordmann.de"
  2908. }
  2909. ],
  2910. "description": "Diff implementation",
  2911. "homepage": "https://github.com/sebastianbergmann/diff",
  2912. "keywords": [
  2913. "diff",
  2914. "udiff",
  2915. "unidiff",
  2916. "unified diff"
  2917. ],
  2918. "support": {
  2919. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2920. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  2921. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  2922. },
  2923. "funding": [
  2924. {
  2925. "url": "https://github.com/sebastianbergmann",
  2926. "type": "github"
  2927. }
  2928. ],
  2929. "time": "2025-02-07T04:55:46+00:00"
  2930. },
  2931. {
  2932. "name": "sebastian/environment",
  2933. "version": "8.0.2",
  2934. "source": {
  2935. "type": "git",
  2936. "url": "https://github.com/sebastianbergmann/environment.git",
  2937. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792"
  2938. },
  2939. "dist": {
  2940. "type": "zip",
  2941. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  2942. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  2943. "shasum": ""
  2944. },
  2945. "require": {
  2946. "php": ">=8.3"
  2947. },
  2948. "require-dev": {
  2949. "phpunit/phpunit": "^12.0"
  2950. },
  2951. "suggest": {
  2952. "ext-posix": "*"
  2953. },
  2954. "type": "library",
  2955. "extra": {
  2956. "branch-alias": {
  2957. "dev-main": "8.0-dev"
  2958. }
  2959. },
  2960. "autoload": {
  2961. "classmap": [
  2962. "src/"
  2963. ]
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "BSD-3-Clause"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Sebastian Bergmann",
  2972. "email": "sebastian@phpunit.de"
  2973. }
  2974. ],
  2975. "description": "Provides functionality to handle HHVM/PHP environments",
  2976. "homepage": "https://github.com/sebastianbergmann/environment",
  2977. "keywords": [
  2978. "Xdebug",
  2979. "environment",
  2980. "hhvm"
  2981. ],
  2982. "support": {
  2983. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2984. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  2985. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.2"
  2986. },
  2987. "funding": [
  2988. {
  2989. "url": "https://github.com/sebastianbergmann",
  2990. "type": "github"
  2991. },
  2992. {
  2993. "url": "https://liberapay.com/sebastianbergmann",
  2994. "type": "liberapay"
  2995. },
  2996. {
  2997. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  2998. "type": "thanks_dev"
  2999. },
  3000. {
  3001. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  3002. "type": "tidelift"
  3003. }
  3004. ],
  3005. "time": "2025-05-21T15:05:44+00:00"
  3006. },
  3007. {
  3008. "name": "sebastian/exporter",
  3009. "version": "7.0.0",
  3010. "source": {
  3011. "type": "git",
  3012. "url": "https://github.com/sebastianbergmann/exporter.git",
  3013. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  3014. },
  3015. "dist": {
  3016. "type": "zip",
  3017. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  3018. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  3019. "shasum": ""
  3020. },
  3021. "require": {
  3022. "ext-mbstring": "*",
  3023. "php": ">=8.3",
  3024. "sebastian/recursion-context": "^7.0"
  3025. },
  3026. "require-dev": {
  3027. "phpunit/phpunit": "^12.0"
  3028. },
  3029. "type": "library",
  3030. "extra": {
  3031. "branch-alias": {
  3032. "dev-main": "7.0-dev"
  3033. }
  3034. },
  3035. "autoload": {
  3036. "classmap": [
  3037. "src/"
  3038. ]
  3039. },
  3040. "notification-url": "https://packagist.org/downloads/",
  3041. "license": [
  3042. "BSD-3-Clause"
  3043. ],
  3044. "authors": [
  3045. {
  3046. "name": "Sebastian Bergmann",
  3047. "email": "sebastian@phpunit.de"
  3048. },
  3049. {
  3050. "name": "Jeff Welch",
  3051. "email": "whatthejeff@gmail.com"
  3052. },
  3053. {
  3054. "name": "Volker Dusch",
  3055. "email": "github@wallbash.com"
  3056. },
  3057. {
  3058. "name": "Adam Harvey",
  3059. "email": "aharvey@php.net"
  3060. },
  3061. {
  3062. "name": "Bernhard Schussek",
  3063. "email": "bschussek@gmail.com"
  3064. }
  3065. ],
  3066. "description": "Provides the functionality to export PHP variables for visualization",
  3067. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  3068. "keywords": [
  3069. "export",
  3070. "exporter"
  3071. ],
  3072. "support": {
  3073. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  3074. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  3075. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  3076. },
  3077. "funding": [
  3078. {
  3079. "url": "https://github.com/sebastianbergmann",
  3080. "type": "github"
  3081. }
  3082. ],
  3083. "time": "2025-02-07T04:56:42+00:00"
  3084. },
  3085. {
  3086. "name": "sebastian/global-state",
  3087. "version": "8.0.0",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/sebastianbergmann/global-state.git",
  3091. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  3096. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  3097. "shasum": ""
  3098. },
  3099. "require": {
  3100. "php": ">=8.3",
  3101. "sebastian/object-reflector": "^5.0",
  3102. "sebastian/recursion-context": "^7.0"
  3103. },
  3104. "require-dev": {
  3105. "ext-dom": "*",
  3106. "phpunit/phpunit": "^12.0"
  3107. },
  3108. "type": "library",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-main": "8.0-dev"
  3112. }
  3113. },
  3114. "autoload": {
  3115. "classmap": [
  3116. "src/"
  3117. ]
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "BSD-3-Clause"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Sebastian Bergmann",
  3126. "email": "sebastian@phpunit.de"
  3127. }
  3128. ],
  3129. "description": "Snapshotting of global state",
  3130. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  3131. "keywords": [
  3132. "global state"
  3133. ],
  3134. "support": {
  3135. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  3136. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  3137. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.0"
  3138. },
  3139. "funding": [
  3140. {
  3141. "url": "https://github.com/sebastianbergmann",
  3142. "type": "github"
  3143. }
  3144. ],
  3145. "time": "2025-02-07T04:56:59+00:00"
  3146. },
  3147. {
  3148. "name": "sebastian/lines-of-code",
  3149. "version": "4.0.0",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  3153. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  3158. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "nikic/php-parser": "^5.0",
  3163. "php": ">=8.3"
  3164. },
  3165. "require-dev": {
  3166. "phpunit/phpunit": "^12.0"
  3167. },
  3168. "type": "library",
  3169. "extra": {
  3170. "branch-alias": {
  3171. "dev-main": "4.0-dev"
  3172. }
  3173. },
  3174. "autoload": {
  3175. "classmap": [
  3176. "src/"
  3177. ]
  3178. },
  3179. "notification-url": "https://packagist.org/downloads/",
  3180. "license": [
  3181. "BSD-3-Clause"
  3182. ],
  3183. "authors": [
  3184. {
  3185. "name": "Sebastian Bergmann",
  3186. "email": "sebastian@phpunit.de",
  3187. "role": "lead"
  3188. }
  3189. ],
  3190. "description": "Library for counting the lines of code in PHP source code",
  3191. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  3192. "support": {
  3193. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  3194. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  3195. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://github.com/sebastianbergmann",
  3200. "type": "github"
  3201. }
  3202. ],
  3203. "time": "2025-02-07T04:57:28+00:00"
  3204. },
  3205. {
  3206. "name": "sebastian/object-enumerator",
  3207. "version": "7.0.0",
  3208. "source": {
  3209. "type": "git",
  3210. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3211. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  3212. },
  3213. "dist": {
  3214. "type": "zip",
  3215. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  3216. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  3217. "shasum": ""
  3218. },
  3219. "require": {
  3220. "php": ">=8.3",
  3221. "sebastian/object-reflector": "^5.0",
  3222. "sebastian/recursion-context": "^7.0"
  3223. },
  3224. "require-dev": {
  3225. "phpunit/phpunit": "^12.0"
  3226. },
  3227. "type": "library",
  3228. "extra": {
  3229. "branch-alias": {
  3230. "dev-main": "7.0-dev"
  3231. }
  3232. },
  3233. "autoload": {
  3234. "classmap": [
  3235. "src/"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "BSD-3-Clause"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Sebastian Bergmann",
  3245. "email": "sebastian@phpunit.de"
  3246. }
  3247. ],
  3248. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3249. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3250. "support": {
  3251. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  3252. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  3253. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  3254. },
  3255. "funding": [
  3256. {
  3257. "url": "https://github.com/sebastianbergmann",
  3258. "type": "github"
  3259. }
  3260. ],
  3261. "time": "2025-02-07T04:57:48+00:00"
  3262. },
  3263. {
  3264. "name": "sebastian/object-reflector",
  3265. "version": "5.0.0",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3269. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  3274. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  3275. "shasum": ""
  3276. },
  3277. "require": {
  3278. "php": ">=8.3"
  3279. },
  3280. "require-dev": {
  3281. "phpunit/phpunit": "^12.0"
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-main": "5.0-dev"
  3287. }
  3288. },
  3289. "autoload": {
  3290. "classmap": [
  3291. "src/"
  3292. ]
  3293. },
  3294. "notification-url": "https://packagist.org/downloads/",
  3295. "license": [
  3296. "BSD-3-Clause"
  3297. ],
  3298. "authors": [
  3299. {
  3300. "name": "Sebastian Bergmann",
  3301. "email": "sebastian@phpunit.de"
  3302. }
  3303. ],
  3304. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3305. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3306. "support": {
  3307. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  3308. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  3309. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  3310. },
  3311. "funding": [
  3312. {
  3313. "url": "https://github.com/sebastianbergmann",
  3314. "type": "github"
  3315. }
  3316. ],
  3317. "time": "2025-02-07T04:58:17+00:00"
  3318. },
  3319. {
  3320. "name": "sebastian/recursion-context",
  3321. "version": "7.0.0",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3325. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  3330. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  3331. "shasum": ""
  3332. },
  3333. "require": {
  3334. "php": ">=8.3"
  3335. },
  3336. "require-dev": {
  3337. "phpunit/phpunit": "^12.0"
  3338. },
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-main": "7.0-dev"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "classmap": [
  3347. "src/"
  3348. ]
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "BSD-3-Clause"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Sebastian Bergmann",
  3357. "email": "sebastian@phpunit.de"
  3358. },
  3359. {
  3360. "name": "Jeff Welch",
  3361. "email": "whatthejeff@gmail.com"
  3362. },
  3363. {
  3364. "name": "Adam Harvey",
  3365. "email": "aharvey@php.net"
  3366. }
  3367. ],
  3368. "description": "Provides functionality to recursively process PHP variables",
  3369. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  3370. "support": {
  3371. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  3372. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  3373. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.0"
  3374. },
  3375. "funding": [
  3376. {
  3377. "url": "https://github.com/sebastianbergmann",
  3378. "type": "github"
  3379. }
  3380. ],
  3381. "time": "2025-02-07T05:00:01+00:00"
  3382. },
  3383. {
  3384. "name": "sebastian/type",
  3385. "version": "6.0.2",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/sebastianbergmann/type.git",
  3389. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/1d7cd6e514384c36d7a390347f57c385d4be6069",
  3394. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069",
  3395. "shasum": ""
  3396. },
  3397. "require": {
  3398. "php": ">=8.3"
  3399. },
  3400. "require-dev": {
  3401. "phpunit/phpunit": "^12.0"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-main": "6.0-dev"
  3407. }
  3408. },
  3409. "autoload": {
  3410. "classmap": [
  3411. "src/"
  3412. ]
  3413. },
  3414. "notification-url": "https://packagist.org/downloads/",
  3415. "license": [
  3416. "BSD-3-Clause"
  3417. ],
  3418. "authors": [
  3419. {
  3420. "name": "Sebastian Bergmann",
  3421. "email": "sebastian@phpunit.de",
  3422. "role": "lead"
  3423. }
  3424. ],
  3425. "description": "Collection of value objects that represent the types of the PHP type system",
  3426. "homepage": "https://github.com/sebastianbergmann/type",
  3427. "support": {
  3428. "issues": "https://github.com/sebastianbergmann/type/issues",
  3429. "security": "https://github.com/sebastianbergmann/type/security/policy",
  3430. "source": "https://github.com/sebastianbergmann/type/tree/6.0.2"
  3431. },
  3432. "funding": [
  3433. {
  3434. "url": "https://github.com/sebastianbergmann",
  3435. "type": "github"
  3436. }
  3437. ],
  3438. "time": "2025-03-18T13:37:31+00:00"
  3439. },
  3440. {
  3441. "name": "sebastian/version",
  3442. "version": "6.0.0",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/sebastianbergmann/version.git",
  3446. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  3451. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  3452. "shasum": ""
  3453. },
  3454. "require": {
  3455. "php": ">=8.3"
  3456. },
  3457. "type": "library",
  3458. "extra": {
  3459. "branch-alias": {
  3460. "dev-main": "6.0-dev"
  3461. }
  3462. },
  3463. "autoload": {
  3464. "classmap": [
  3465. "src/"
  3466. ]
  3467. },
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "BSD-3-Clause"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Sebastian Bergmann",
  3475. "email": "sebastian@phpunit.de",
  3476. "role": "lead"
  3477. }
  3478. ],
  3479. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3480. "homepage": "https://github.com/sebastianbergmann/version",
  3481. "support": {
  3482. "issues": "https://github.com/sebastianbergmann/version/issues",
  3483. "security": "https://github.com/sebastianbergmann/version/security/policy",
  3484. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  3485. },
  3486. "funding": [
  3487. {
  3488. "url": "https://github.com/sebastianbergmann",
  3489. "type": "github"
  3490. }
  3491. ],
  3492. "time": "2025-02-07T05:00:38+00:00"
  3493. },
  3494. {
  3495. "name": "staabm/side-effects-detector",
  3496. "version": "1.0.5",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/staabm/side-effects-detector.git",
  3500. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  3505. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  3506. "shasum": ""
  3507. },
  3508. "require": {
  3509. "ext-tokenizer": "*",
  3510. "php": "^7.4 || ^8.0"
  3511. },
  3512. "require-dev": {
  3513. "phpstan/extension-installer": "^1.4.3",
  3514. "phpstan/phpstan": "^1.12.6",
  3515. "phpunit/phpunit": "^9.6.21",
  3516. "symfony/var-dumper": "^5.4.43",
  3517. "tomasvotruba/type-coverage": "1.0.0",
  3518. "tomasvotruba/unused-public": "1.0.0"
  3519. },
  3520. "type": "library",
  3521. "autoload": {
  3522. "classmap": [
  3523. "lib/"
  3524. ]
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "description": "A static analysis tool to detect side effects in PHP code",
  3531. "keywords": [
  3532. "static analysis"
  3533. ],
  3534. "support": {
  3535. "issues": "https://github.com/staabm/side-effects-detector/issues",
  3536. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  3537. },
  3538. "funding": [
  3539. {
  3540. "url": "https://github.com/staabm",
  3541. "type": "github"
  3542. }
  3543. ],
  3544. "time": "2024-10-20T05:08:20+00:00"
  3545. },
  3546. {
  3547. "name": "symfony/asset",
  3548. "version": "v7.3.0",
  3549. "source": {
  3550. "type": "git",
  3551. "url": "https://github.com/symfony/asset.git",
  3552. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b"
  3553. },
  3554. "dist": {
  3555. "type": "zip",
  3556. "url": "https://api.github.com/repos/symfony/asset/zipball/56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  3557. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  3558. "shasum": ""
  3559. },
  3560. "require": {
  3561. "php": ">=8.2"
  3562. },
  3563. "conflict": {
  3564. "symfony/http-foundation": "<6.4"
  3565. },
  3566. "require-dev": {
  3567. "symfony/http-client": "^6.4|^7.0",
  3568. "symfony/http-foundation": "^6.4|^7.0",
  3569. "symfony/http-kernel": "^6.4|^7.0"
  3570. },
  3571. "type": "library",
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Symfony\\Component\\Asset\\": ""
  3575. },
  3576. "exclude-from-classmap": [
  3577. "/Tests/"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "Fabien Potencier",
  3587. "email": "fabien@symfony.com"
  3588. },
  3589. {
  3590. "name": "Symfony Community",
  3591. "homepage": "https://symfony.com/contributors"
  3592. }
  3593. ],
  3594. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3595. "homepage": "https://symfony.com",
  3596. "support": {
  3597. "source": "https://github.com/symfony/asset/tree/v7.3.0"
  3598. },
  3599. "funding": [
  3600. {
  3601. "url": "https://symfony.com/sponsor",
  3602. "type": "custom"
  3603. },
  3604. {
  3605. "url": "https://github.com/fabpot",
  3606. "type": "github"
  3607. },
  3608. {
  3609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3610. "type": "tidelift"
  3611. }
  3612. ],
  3613. "time": "2025-03-05T10:15:41+00:00"
  3614. },
  3615. {
  3616. "name": "symfony/asset-mapper",
  3617. "version": "v7.3.0",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/symfony/asset-mapper.git",
  3621. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/6516f38868b75c4902ea72a9fa44967628375ae7",
  3626. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7",
  3627. "shasum": ""
  3628. },
  3629. "require": {
  3630. "composer/semver": "^3.0",
  3631. "php": ">=8.2",
  3632. "symfony/deprecation-contracts": "^2.1|^3",
  3633. "symfony/filesystem": "^7.1",
  3634. "symfony/http-client": "^6.4|^7.0"
  3635. },
  3636. "conflict": {
  3637. "symfony/framework-bundle": "<6.4"
  3638. },
  3639. "require-dev": {
  3640. "symfony/asset": "^6.4|^7.0",
  3641. "symfony/browser-kit": "^6.4|^7.0",
  3642. "symfony/console": "^6.4|^7.0",
  3643. "symfony/event-dispatcher-contracts": "^3.0",
  3644. "symfony/finder": "^6.4|^7.0",
  3645. "symfony/framework-bundle": "^6.4|^7.0",
  3646. "symfony/http-foundation": "^6.4|^7.0",
  3647. "symfony/http-kernel": "^6.4|^7.0",
  3648. "symfony/process": "^6.4|^7.0",
  3649. "symfony/web-link": "^6.4|^7.0"
  3650. },
  3651. "type": "library",
  3652. "autoload": {
  3653. "psr-4": {
  3654. "Symfony\\Component\\AssetMapper\\": ""
  3655. },
  3656. "exclude-from-classmap": [
  3657. "/Tests/"
  3658. ]
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "MIT"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "Fabien Potencier",
  3667. "email": "fabien@symfony.com"
  3668. },
  3669. {
  3670. "name": "Symfony Community",
  3671. "homepage": "https://symfony.com/contributors"
  3672. }
  3673. ],
  3674. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3675. "homepage": "https://symfony.com",
  3676. "support": {
  3677. "source": "https://github.com/symfony/asset-mapper/tree/v7.3.0"
  3678. },
  3679. "funding": [
  3680. {
  3681. "url": "https://symfony.com/sponsor",
  3682. "type": "custom"
  3683. },
  3684. {
  3685. "url": "https://github.com/fabpot",
  3686. "type": "github"
  3687. },
  3688. {
  3689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3690. "type": "tidelift"
  3691. }
  3692. ],
  3693. "time": "2025-05-24T14:05:12+00:00"
  3694. },
  3695. {
  3696. "name": "symfony/browser-kit",
  3697. "version": "v7.3.0",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/symfony/browser-kit.git",
  3701. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/5384291845e74fd7d54f3d925c4a86ce12336593",
  3706. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593",
  3707. "shasum": ""
  3708. },
  3709. "require": {
  3710. "php": ">=8.2",
  3711. "symfony/dom-crawler": "^6.4|^7.0"
  3712. },
  3713. "require-dev": {
  3714. "symfony/css-selector": "^6.4|^7.0",
  3715. "symfony/http-client": "^6.4|^7.0",
  3716. "symfony/mime": "^6.4|^7.0",
  3717. "symfony/process": "^6.4|^7.0"
  3718. },
  3719. "type": "library",
  3720. "autoload": {
  3721. "psr-4": {
  3722. "Symfony\\Component\\BrowserKit\\": ""
  3723. },
  3724. "exclude-from-classmap": [
  3725. "/Tests/"
  3726. ]
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Fabien Potencier",
  3735. "email": "fabien@symfony.com"
  3736. },
  3737. {
  3738. "name": "Symfony Community",
  3739. "homepage": "https://symfony.com/contributors"
  3740. }
  3741. ],
  3742. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  3743. "homepage": "https://symfony.com",
  3744. "support": {
  3745. "source": "https://github.com/symfony/browser-kit/tree/v7.3.0"
  3746. },
  3747. "funding": [
  3748. {
  3749. "url": "https://symfony.com/sponsor",
  3750. "type": "custom"
  3751. },
  3752. {
  3753. "url": "https://github.com/fabpot",
  3754. "type": "github"
  3755. },
  3756. {
  3757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3758. "type": "tidelift"
  3759. }
  3760. ],
  3761. "time": "2025-03-05T10:15:41+00:00"
  3762. },
  3763. {
  3764. "name": "symfony/cache",
  3765. "version": "v7.3.1",
  3766. "source": {
  3767. "type": "git",
  3768. "url": "https://github.com/symfony/cache.git",
  3769. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
  3770. },
  3771. "dist": {
  3772. "type": "zip",
  3773. "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  3774. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  3775. "shasum": ""
  3776. },
  3777. "require": {
  3778. "php": ">=8.2",
  3779. "psr/cache": "^2.0|^3.0",
  3780. "psr/log": "^1.1|^2|^3",
  3781. "symfony/cache-contracts": "^3.6",
  3782. "symfony/deprecation-contracts": "^2.5|^3.0",
  3783. "symfony/service-contracts": "^2.5|^3",
  3784. "symfony/var-exporter": "^6.4|^7.0"
  3785. },
  3786. "conflict": {
  3787. "doctrine/dbal": "<3.6",
  3788. "symfony/dependency-injection": "<6.4",
  3789. "symfony/http-kernel": "<6.4",
  3790. "symfony/var-dumper": "<6.4"
  3791. },
  3792. "provide": {
  3793. "psr/cache-implementation": "2.0|3.0",
  3794. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3795. "symfony/cache-implementation": "1.1|2.0|3.0"
  3796. },
  3797. "require-dev": {
  3798. "cache/integration-tests": "dev-master",
  3799. "doctrine/dbal": "^3.6|^4",
  3800. "predis/predis": "^1.1|^2.0",
  3801. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3802. "symfony/clock": "^6.4|^7.0",
  3803. "symfony/config": "^6.4|^7.0",
  3804. "symfony/dependency-injection": "^6.4|^7.0",
  3805. "symfony/filesystem": "^6.4|^7.0",
  3806. "symfony/http-kernel": "^6.4|^7.0",
  3807. "symfony/messenger": "^6.4|^7.0",
  3808. "symfony/var-dumper": "^6.4|^7.0"
  3809. },
  3810. "type": "library",
  3811. "autoload": {
  3812. "psr-4": {
  3813. "Symfony\\Component\\Cache\\": ""
  3814. },
  3815. "classmap": [
  3816. "Traits/ValueWrapper.php"
  3817. ],
  3818. "exclude-from-classmap": [
  3819. "/Tests/"
  3820. ]
  3821. },
  3822. "notification-url": "https://packagist.org/downloads/",
  3823. "license": [
  3824. "MIT"
  3825. ],
  3826. "authors": [
  3827. {
  3828. "name": "Nicolas Grekas",
  3829. "email": "p@tchwork.com"
  3830. },
  3831. {
  3832. "name": "Symfony Community",
  3833. "homepage": "https://symfony.com/contributors"
  3834. }
  3835. ],
  3836. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3837. "homepage": "https://symfony.com",
  3838. "keywords": [
  3839. "caching",
  3840. "psr6"
  3841. ],
  3842. "support": {
  3843. "source": "https://github.com/symfony/cache/tree/v7.3.1"
  3844. },
  3845. "funding": [
  3846. {
  3847. "url": "https://symfony.com/sponsor",
  3848. "type": "custom"
  3849. },
  3850. {
  3851. "url": "https://github.com/fabpot",
  3852. "type": "github"
  3853. },
  3854. {
  3855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3856. "type": "tidelift"
  3857. }
  3858. ],
  3859. "time": "2025-06-27T19:55:54+00:00"
  3860. },
  3861. {
  3862. "name": "symfony/cache-contracts",
  3863. "version": "v3.6.0",
  3864. "source": {
  3865. "type": "git",
  3866. "url": "https://github.com/symfony/cache-contracts.git",
  3867. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  3868. },
  3869. "dist": {
  3870. "type": "zip",
  3871. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3872. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3873. "shasum": ""
  3874. },
  3875. "require": {
  3876. "php": ">=8.1",
  3877. "psr/cache": "^3.0"
  3878. },
  3879. "type": "library",
  3880. "extra": {
  3881. "thanks": {
  3882. "url": "https://github.com/symfony/contracts",
  3883. "name": "symfony/contracts"
  3884. },
  3885. "branch-alias": {
  3886. "dev-main": "3.6-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "psr-4": {
  3891. "Symfony\\Contracts\\Cache\\": ""
  3892. }
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Nicolas Grekas",
  3901. "email": "p@tchwork.com"
  3902. },
  3903. {
  3904. "name": "Symfony Community",
  3905. "homepage": "https://symfony.com/contributors"
  3906. }
  3907. ],
  3908. "description": "Generic abstractions related to caching",
  3909. "homepage": "https://symfony.com",
  3910. "keywords": [
  3911. "abstractions",
  3912. "contracts",
  3913. "decoupling",
  3914. "interfaces",
  3915. "interoperability",
  3916. "standards"
  3917. ],
  3918. "support": {
  3919. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  3920. },
  3921. "funding": [
  3922. {
  3923. "url": "https://symfony.com/sponsor",
  3924. "type": "custom"
  3925. },
  3926. {
  3927. "url": "https://github.com/fabpot",
  3928. "type": "github"
  3929. },
  3930. {
  3931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3932. "type": "tidelift"
  3933. }
  3934. ],
  3935. "time": "2025-03-13T15:25:07+00:00"
  3936. },
  3937. {
  3938. "name": "symfony/clock",
  3939. "version": "v7.3.0",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/symfony/clock.git",
  3943. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  3948. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "php": ">=8.2",
  3953. "psr/clock": "^1.0",
  3954. "symfony/polyfill-php83": "^1.28"
  3955. },
  3956. "provide": {
  3957. "psr/clock-implementation": "1.0"
  3958. },
  3959. "type": "library",
  3960. "autoload": {
  3961. "files": [
  3962. "Resources/now.php"
  3963. ],
  3964. "psr-4": {
  3965. "Symfony\\Component\\Clock\\": ""
  3966. },
  3967. "exclude-from-classmap": [
  3968. "/Tests/"
  3969. ]
  3970. },
  3971. "notification-url": "https://packagist.org/downloads/",
  3972. "license": [
  3973. "MIT"
  3974. ],
  3975. "authors": [
  3976. {
  3977. "name": "Nicolas Grekas",
  3978. "email": "p@tchwork.com"
  3979. },
  3980. {
  3981. "name": "Symfony Community",
  3982. "homepage": "https://symfony.com/contributors"
  3983. }
  3984. ],
  3985. "description": "Decouples applications from the system clock",
  3986. "homepage": "https://symfony.com",
  3987. "keywords": [
  3988. "clock",
  3989. "psr20",
  3990. "time"
  3991. ],
  3992. "support": {
  3993. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  3994. },
  3995. "funding": [
  3996. {
  3997. "url": "https://symfony.com/sponsor",
  3998. "type": "custom"
  3999. },
  4000. {
  4001. "url": "https://github.com/fabpot",
  4002. "type": "github"
  4003. },
  4004. {
  4005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4006. "type": "tidelift"
  4007. }
  4008. ],
  4009. "time": "2024-09-25T14:21:43+00:00"
  4010. },
  4011. {
  4012. "name": "symfony/config",
  4013. "version": "v7.3.0",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://github.com/symfony/config.git",
  4017. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://api.github.com/repos/symfony/config/zipball/ba62ae565f1327c2f6366726312ed828c85853bc",
  4022. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc",
  4023. "shasum": ""
  4024. },
  4025. "require": {
  4026. "php": ">=8.2",
  4027. "symfony/deprecation-contracts": "^2.5|^3",
  4028. "symfony/filesystem": "^7.1",
  4029. "symfony/polyfill-ctype": "~1.8"
  4030. },
  4031. "conflict": {
  4032. "symfony/finder": "<6.4",
  4033. "symfony/service-contracts": "<2.5"
  4034. },
  4035. "require-dev": {
  4036. "symfony/event-dispatcher": "^6.4|^7.0",
  4037. "symfony/finder": "^6.4|^7.0",
  4038. "symfony/messenger": "^6.4|^7.0",
  4039. "symfony/service-contracts": "^2.5|^3",
  4040. "symfony/yaml": "^6.4|^7.0"
  4041. },
  4042. "type": "library",
  4043. "autoload": {
  4044. "psr-4": {
  4045. "Symfony\\Component\\Config\\": ""
  4046. },
  4047. "exclude-from-classmap": [
  4048. "/Tests/"
  4049. ]
  4050. },
  4051. "notification-url": "https://packagist.org/downloads/",
  4052. "license": [
  4053. "MIT"
  4054. ],
  4055. "authors": [
  4056. {
  4057. "name": "Fabien Potencier",
  4058. "email": "fabien@symfony.com"
  4059. },
  4060. {
  4061. "name": "Symfony Community",
  4062. "homepage": "https://symfony.com/contributors"
  4063. }
  4064. ],
  4065. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  4066. "homepage": "https://symfony.com",
  4067. "support": {
  4068. "source": "https://github.com/symfony/config/tree/v7.3.0"
  4069. },
  4070. "funding": [
  4071. {
  4072. "url": "https://symfony.com/sponsor",
  4073. "type": "custom"
  4074. },
  4075. {
  4076. "url": "https://github.com/fabpot",
  4077. "type": "github"
  4078. },
  4079. {
  4080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4081. "type": "tidelift"
  4082. }
  4083. ],
  4084. "time": "2025-05-15T09:04:05+00:00"
  4085. },
  4086. {
  4087. "name": "symfony/console",
  4088. "version": "v7.3.1",
  4089. "source": {
  4090. "type": "git",
  4091. "url": "https://github.com/symfony/console.git",
  4092. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  4093. },
  4094. "dist": {
  4095. "type": "zip",
  4096. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  4097. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  4098. "shasum": ""
  4099. },
  4100. "require": {
  4101. "php": ">=8.2",
  4102. "symfony/deprecation-contracts": "^2.5|^3",
  4103. "symfony/polyfill-mbstring": "~1.0",
  4104. "symfony/service-contracts": "^2.5|^3",
  4105. "symfony/string": "^7.2"
  4106. },
  4107. "conflict": {
  4108. "symfony/dependency-injection": "<6.4",
  4109. "symfony/dotenv": "<6.4",
  4110. "symfony/event-dispatcher": "<6.4",
  4111. "symfony/lock": "<6.4",
  4112. "symfony/process": "<6.4"
  4113. },
  4114. "provide": {
  4115. "psr/log-implementation": "1.0|2.0|3.0"
  4116. },
  4117. "require-dev": {
  4118. "psr/log": "^1|^2|^3",
  4119. "symfony/config": "^6.4|^7.0",
  4120. "symfony/dependency-injection": "^6.4|^7.0",
  4121. "symfony/event-dispatcher": "^6.4|^7.0",
  4122. "symfony/http-foundation": "^6.4|^7.0",
  4123. "symfony/http-kernel": "^6.4|^7.0",
  4124. "symfony/lock": "^6.4|^7.0",
  4125. "symfony/messenger": "^6.4|^7.0",
  4126. "symfony/process": "^6.4|^7.0",
  4127. "symfony/stopwatch": "^6.4|^7.0",
  4128. "symfony/var-dumper": "^6.4|^7.0"
  4129. },
  4130. "type": "library",
  4131. "autoload": {
  4132. "psr-4": {
  4133. "Symfony\\Component\\Console\\": ""
  4134. },
  4135. "exclude-from-classmap": [
  4136. "/Tests/"
  4137. ]
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Fabien Potencier",
  4146. "email": "fabien@symfony.com"
  4147. },
  4148. {
  4149. "name": "Symfony Community",
  4150. "homepage": "https://symfony.com/contributors"
  4151. }
  4152. ],
  4153. "description": "Eases the creation of beautiful and testable command line interfaces",
  4154. "homepage": "https://symfony.com",
  4155. "keywords": [
  4156. "cli",
  4157. "command-line",
  4158. "console",
  4159. "terminal"
  4160. ],
  4161. "support": {
  4162. "source": "https://github.com/symfony/console/tree/v7.3.1"
  4163. },
  4164. "funding": [
  4165. {
  4166. "url": "https://symfony.com/sponsor",
  4167. "type": "custom"
  4168. },
  4169. {
  4170. "url": "https://github.com/fabpot",
  4171. "type": "github"
  4172. },
  4173. {
  4174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4175. "type": "tidelift"
  4176. }
  4177. ],
  4178. "time": "2025-06-27T19:55:54+00:00"
  4179. },
  4180. {
  4181. "name": "symfony/css-selector",
  4182. "version": "v7.3.0",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/symfony/css-selector.git",
  4186. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  4191. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  4192. "shasum": ""
  4193. },
  4194. "require": {
  4195. "php": ">=8.2"
  4196. },
  4197. "type": "library",
  4198. "autoload": {
  4199. "psr-4": {
  4200. "Symfony\\Component\\CssSelector\\": ""
  4201. },
  4202. "exclude-from-classmap": [
  4203. "/Tests/"
  4204. ]
  4205. },
  4206. "notification-url": "https://packagist.org/downloads/",
  4207. "license": [
  4208. "MIT"
  4209. ],
  4210. "authors": [
  4211. {
  4212. "name": "Fabien Potencier",
  4213. "email": "fabien@symfony.com"
  4214. },
  4215. {
  4216. "name": "Jean-François Simon",
  4217. "email": "jeanfrancois.simon@sensiolabs.com"
  4218. },
  4219. {
  4220. "name": "Symfony Community",
  4221. "homepage": "https://symfony.com/contributors"
  4222. }
  4223. ],
  4224. "description": "Converts CSS selectors to XPath expressions",
  4225. "homepage": "https://symfony.com",
  4226. "support": {
  4227. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  4228. },
  4229. "funding": [
  4230. {
  4231. "url": "https://symfony.com/sponsor",
  4232. "type": "custom"
  4233. },
  4234. {
  4235. "url": "https://github.com/fabpot",
  4236. "type": "github"
  4237. },
  4238. {
  4239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4240. "type": "tidelift"
  4241. }
  4242. ],
  4243. "time": "2024-09-25T14:21:43+00:00"
  4244. },
  4245. {
  4246. "name": "symfony/debug-bundle",
  4247. "version": "v7.3.0",
  4248. "source": {
  4249. "type": "git",
  4250. "url": "https://github.com/symfony/debug-bundle.git",
  4251. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8"
  4252. },
  4253. "dist": {
  4254. "type": "zip",
  4255. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/781acc90f31f5fe18915f9276890864ebbbe3da8",
  4256. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8",
  4257. "shasum": ""
  4258. },
  4259. "require": {
  4260. "composer-runtime-api": ">=2.1",
  4261. "ext-xml": "*",
  4262. "php": ">=8.2",
  4263. "symfony/config": "^7.3",
  4264. "symfony/dependency-injection": "^6.4|^7.0",
  4265. "symfony/http-kernel": "^6.4|^7.0",
  4266. "symfony/twig-bridge": "^6.4|^7.0",
  4267. "symfony/var-dumper": "^6.4|^7.0"
  4268. },
  4269. "require-dev": {
  4270. "symfony/web-profiler-bundle": "^6.4|^7.0"
  4271. },
  4272. "type": "symfony-bundle",
  4273. "autoload": {
  4274. "psr-4": {
  4275. "Symfony\\Bundle\\DebugBundle\\": ""
  4276. },
  4277. "exclude-from-classmap": [
  4278. "/Tests/"
  4279. ]
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Fabien Potencier",
  4288. "email": "fabien@symfony.com"
  4289. },
  4290. {
  4291. "name": "Symfony Community",
  4292. "homepage": "https://symfony.com/contributors"
  4293. }
  4294. ],
  4295. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  4296. "homepage": "https://symfony.com",
  4297. "support": {
  4298. "source": "https://github.com/symfony/debug-bundle/tree/v7.3.0"
  4299. },
  4300. "funding": [
  4301. {
  4302. "url": "https://symfony.com/sponsor",
  4303. "type": "custom"
  4304. },
  4305. {
  4306. "url": "https://github.com/fabpot",
  4307. "type": "github"
  4308. },
  4309. {
  4310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4311. "type": "tidelift"
  4312. }
  4313. ],
  4314. "time": "2025-05-04T13:21:13+00:00"
  4315. },
  4316. {
  4317. "name": "symfony/dependency-injection",
  4318. "version": "v7.3.1",
  4319. "source": {
  4320. "type": "git",
  4321. "url": "https://github.com/symfony/dependency-injection.git",
  4322. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8"
  4323. },
  4324. "dist": {
  4325. "type": "zip",
  4326. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  4327. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  4328. "shasum": ""
  4329. },
  4330. "require": {
  4331. "php": ">=8.2",
  4332. "psr/container": "^1.1|^2.0",
  4333. "symfony/deprecation-contracts": "^2.5|^3",
  4334. "symfony/service-contracts": "^3.5",
  4335. "symfony/var-exporter": "^6.4.20|^7.2.5"
  4336. },
  4337. "conflict": {
  4338. "ext-psr": "<1.1|>=2",
  4339. "symfony/config": "<6.4",
  4340. "symfony/finder": "<6.4",
  4341. "symfony/yaml": "<6.4"
  4342. },
  4343. "provide": {
  4344. "psr/container-implementation": "1.1|2.0",
  4345. "symfony/service-implementation": "1.1|2.0|3.0"
  4346. },
  4347. "require-dev": {
  4348. "symfony/config": "^6.4|^7.0",
  4349. "symfony/expression-language": "^6.4|^7.0",
  4350. "symfony/yaml": "^6.4|^7.0"
  4351. },
  4352. "type": "library",
  4353. "autoload": {
  4354. "psr-4": {
  4355. "Symfony\\Component\\DependencyInjection\\": ""
  4356. },
  4357. "exclude-from-classmap": [
  4358. "/Tests/"
  4359. ]
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Fabien Potencier",
  4368. "email": "fabien@symfony.com"
  4369. },
  4370. {
  4371. "name": "Symfony Community",
  4372. "homepage": "https://symfony.com/contributors"
  4373. }
  4374. ],
  4375. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  4376. "homepage": "https://symfony.com",
  4377. "support": {
  4378. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.1"
  4379. },
  4380. "funding": [
  4381. {
  4382. "url": "https://symfony.com/sponsor",
  4383. "type": "custom"
  4384. },
  4385. {
  4386. "url": "https://github.com/fabpot",
  4387. "type": "github"
  4388. },
  4389. {
  4390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4391. "type": "tidelift"
  4392. }
  4393. ],
  4394. "time": "2025-06-24T04:04:43+00:00"
  4395. },
  4396. {
  4397. "name": "symfony/deprecation-contracts",
  4398. "version": "v3.6.0",
  4399. "source": {
  4400. "type": "git",
  4401. "url": "https://github.com/symfony/deprecation-contracts.git",
  4402. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  4403. },
  4404. "dist": {
  4405. "type": "zip",
  4406. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  4407. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  4408. "shasum": ""
  4409. },
  4410. "require": {
  4411. "php": ">=8.1"
  4412. },
  4413. "type": "library",
  4414. "extra": {
  4415. "thanks": {
  4416. "url": "https://github.com/symfony/contracts",
  4417. "name": "symfony/contracts"
  4418. },
  4419. "branch-alias": {
  4420. "dev-main": "3.6-dev"
  4421. }
  4422. },
  4423. "autoload": {
  4424. "files": [
  4425. "function.php"
  4426. ]
  4427. },
  4428. "notification-url": "https://packagist.org/downloads/",
  4429. "license": [
  4430. "MIT"
  4431. ],
  4432. "authors": [
  4433. {
  4434. "name": "Nicolas Grekas",
  4435. "email": "p@tchwork.com"
  4436. },
  4437. {
  4438. "name": "Symfony Community",
  4439. "homepage": "https://symfony.com/contributors"
  4440. }
  4441. ],
  4442. "description": "A generic function and convention to trigger deprecation notices",
  4443. "homepage": "https://symfony.com",
  4444. "support": {
  4445. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  4446. },
  4447. "funding": [
  4448. {
  4449. "url": "https://symfony.com/sponsor",
  4450. "type": "custom"
  4451. },
  4452. {
  4453. "url": "https://github.com/fabpot",
  4454. "type": "github"
  4455. },
  4456. {
  4457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4458. "type": "tidelift"
  4459. }
  4460. ],
  4461. "time": "2024-09-25T14:21:43+00:00"
  4462. },
  4463. {
  4464. "name": "symfony/doctrine-bridge",
  4465. "version": "v7.3.1",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/symfony/doctrine-bridge.git",
  4469. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6c0acb248c46452ae2c15752dc71e72f3335403f",
  4474. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "doctrine/event-manager": "^2",
  4479. "doctrine/persistence": "^3.1|^4",
  4480. "php": ">=8.2",
  4481. "symfony/deprecation-contracts": "^2.5|^3",
  4482. "symfony/polyfill-ctype": "~1.8",
  4483. "symfony/polyfill-mbstring": "~1.0",
  4484. "symfony/service-contracts": "^2.5|^3"
  4485. },
  4486. "conflict": {
  4487. "doctrine/collections": "<1.8",
  4488. "doctrine/dbal": "<3.6",
  4489. "doctrine/lexer": "<1.1",
  4490. "doctrine/orm": "<2.15",
  4491. "symfony/cache": "<6.4",
  4492. "symfony/dependency-injection": "<6.4",
  4493. "symfony/form": "<6.4.6|>=7,<7.0.6",
  4494. "symfony/http-foundation": "<6.4",
  4495. "symfony/http-kernel": "<6.4",
  4496. "symfony/lock": "<6.4",
  4497. "symfony/messenger": "<6.4",
  4498. "symfony/property-info": "<6.4",
  4499. "symfony/security-bundle": "<6.4",
  4500. "symfony/security-core": "<6.4",
  4501. "symfony/validator": "<6.4"
  4502. },
  4503. "require-dev": {
  4504. "doctrine/collections": "^1.8|^2.0",
  4505. "doctrine/data-fixtures": "^1.1|^2",
  4506. "doctrine/dbal": "^3.6|^4",
  4507. "doctrine/orm": "^2.15|^3",
  4508. "psr/log": "^1|^2|^3",
  4509. "symfony/cache": "^6.4|^7.0",
  4510. "symfony/config": "^6.4|^7.0",
  4511. "symfony/dependency-injection": "^6.4|^7.0",
  4512. "symfony/doctrine-messenger": "^6.4|^7.0",
  4513. "symfony/expression-language": "^6.4|^7.0",
  4514. "symfony/form": "^6.4.6|^7.0.6",
  4515. "symfony/http-kernel": "^6.4|^7.0",
  4516. "symfony/lock": "^6.4|^7.0",
  4517. "symfony/messenger": "^6.4|^7.0",
  4518. "symfony/property-access": "^6.4|^7.0",
  4519. "symfony/property-info": "^6.4|^7.0",
  4520. "symfony/security-core": "^6.4|^7.0",
  4521. "symfony/stopwatch": "^6.4|^7.0",
  4522. "symfony/translation": "^6.4|^7.0",
  4523. "symfony/type-info": "^7.1",
  4524. "symfony/uid": "^6.4|^7.0",
  4525. "symfony/validator": "^6.4|^7.0",
  4526. "symfony/var-dumper": "^6.4|^7.0"
  4527. },
  4528. "type": "symfony-bridge",
  4529. "autoload": {
  4530. "psr-4": {
  4531. "Symfony\\Bridge\\Doctrine\\": ""
  4532. },
  4533. "exclude-from-classmap": [
  4534. "/Tests/"
  4535. ]
  4536. },
  4537. "notification-url": "https://packagist.org/downloads/",
  4538. "license": [
  4539. "MIT"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Fabien Potencier",
  4544. "email": "fabien@symfony.com"
  4545. },
  4546. {
  4547. "name": "Symfony Community",
  4548. "homepage": "https://symfony.com/contributors"
  4549. }
  4550. ],
  4551. "description": "Provides integration for Doctrine with various Symfony components",
  4552. "homepage": "https://symfony.com",
  4553. "support": {
  4554. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.3.1"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://symfony.com/sponsor",
  4559. "type": "custom"
  4560. },
  4561. {
  4562. "url": "https://github.com/fabpot",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2025-06-26T13:02:59+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/doctrine-messenger",
  4574. "version": "v7.3.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/doctrine-messenger.git",
  4578. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/099d9cd03f889c31c90d406fed07f25dc3732487",
  4583. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "doctrine/dbal": "^3.6|^4",
  4588. "php": ">=8.2",
  4589. "symfony/messenger": "^7.2",
  4590. "symfony/service-contracts": "^2.5|^3"
  4591. },
  4592. "conflict": {
  4593. "doctrine/persistence": "<1.3"
  4594. },
  4595. "require-dev": {
  4596. "doctrine/persistence": "^1.3|^2|^3",
  4597. "symfony/property-access": "^6.4|^7.0",
  4598. "symfony/serializer": "^6.4|^7.0"
  4599. },
  4600. "type": "symfony-messenger-bridge",
  4601. "autoload": {
  4602. "psr-4": {
  4603. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4604. },
  4605. "exclude-from-classmap": [
  4606. "/Tests/"
  4607. ]
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Fabien Potencier",
  4616. "email": "fabien@symfony.com"
  4617. },
  4618. {
  4619. "name": "Symfony Community",
  4620. "homepage": "https://symfony.com/contributors"
  4621. }
  4622. ],
  4623. "description": "Symfony Doctrine Messenger Bridge",
  4624. "homepage": "https://symfony.com",
  4625. "support": {
  4626. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.3.0"
  4627. },
  4628. "funding": [
  4629. {
  4630. "url": "https://symfony.com/sponsor",
  4631. "type": "custom"
  4632. },
  4633. {
  4634. "url": "https://github.com/fabpot",
  4635. "type": "github"
  4636. },
  4637. {
  4638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4639. "type": "tidelift"
  4640. }
  4641. ],
  4642. "time": "2025-03-26T11:30:13+00:00"
  4643. },
  4644. {
  4645. "name": "symfony/dom-crawler",
  4646. "version": "v7.3.1",
  4647. "source": {
  4648. "type": "git",
  4649. "url": "https://github.com/symfony/dom-crawler.git",
  4650. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
  4651. },
  4652. "dist": {
  4653. "type": "zip",
  4654. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  4655. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  4656. "shasum": ""
  4657. },
  4658. "require": {
  4659. "masterminds/html5": "^2.6",
  4660. "php": ">=8.2",
  4661. "symfony/polyfill-ctype": "~1.8",
  4662. "symfony/polyfill-mbstring": "~1.0"
  4663. },
  4664. "require-dev": {
  4665. "symfony/css-selector": "^6.4|^7.0"
  4666. },
  4667. "type": "library",
  4668. "autoload": {
  4669. "psr-4": {
  4670. "Symfony\\Component\\DomCrawler\\": ""
  4671. },
  4672. "exclude-from-classmap": [
  4673. "/Tests/"
  4674. ]
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Fabien Potencier",
  4683. "email": "fabien@symfony.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Eases DOM navigation for HTML and XML documents",
  4691. "homepage": "https://symfony.com",
  4692. "support": {
  4693. "source": "https://github.com/symfony/dom-crawler/tree/v7.3.1"
  4694. },
  4695. "funding": [
  4696. {
  4697. "url": "https://symfony.com/sponsor",
  4698. "type": "custom"
  4699. },
  4700. {
  4701. "url": "https://github.com/fabpot",
  4702. "type": "github"
  4703. },
  4704. {
  4705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4706. "type": "tidelift"
  4707. }
  4708. ],
  4709. "time": "2025-06-15T10:07:06+00:00"
  4710. },
  4711. {
  4712. "name": "symfony/dotenv",
  4713. "version": "v7.3.0",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/symfony/dotenv.git",
  4717. "reference": "28347a897771d0c28e99b75166dd2689099f3045"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/symfony/dotenv/zipball/28347a897771d0c28e99b75166dd2689099f3045",
  4722. "reference": "28347a897771d0c28e99b75166dd2689099f3045",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "php": ">=8.2"
  4727. },
  4728. "conflict": {
  4729. "symfony/console": "<6.4",
  4730. "symfony/process": "<6.4"
  4731. },
  4732. "require-dev": {
  4733. "symfony/console": "^6.4|^7.0",
  4734. "symfony/process": "^6.4|^7.0"
  4735. },
  4736. "type": "library",
  4737. "autoload": {
  4738. "psr-4": {
  4739. "Symfony\\Component\\Dotenv\\": ""
  4740. },
  4741. "exclude-from-classmap": [
  4742. "/Tests/"
  4743. ]
  4744. },
  4745. "notification-url": "https://packagist.org/downloads/",
  4746. "license": [
  4747. "MIT"
  4748. ],
  4749. "authors": [
  4750. {
  4751. "name": "Fabien Potencier",
  4752. "email": "fabien@symfony.com"
  4753. },
  4754. {
  4755. "name": "Symfony Community",
  4756. "homepage": "https://symfony.com/contributors"
  4757. }
  4758. ],
  4759. "description": "Registers environment variables from a .env file",
  4760. "homepage": "https://symfony.com",
  4761. "keywords": [
  4762. "dotenv",
  4763. "env",
  4764. "environment"
  4765. ],
  4766. "support": {
  4767. "source": "https://github.com/symfony/dotenv/tree/v7.3.0"
  4768. },
  4769. "funding": [
  4770. {
  4771. "url": "https://symfony.com/sponsor",
  4772. "type": "custom"
  4773. },
  4774. {
  4775. "url": "https://github.com/fabpot",
  4776. "type": "github"
  4777. },
  4778. {
  4779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4780. "type": "tidelift"
  4781. }
  4782. ],
  4783. "time": "2024-11-27T11:18:42+00:00"
  4784. },
  4785. {
  4786. "name": "symfony/error-handler",
  4787. "version": "v7.3.1",
  4788. "source": {
  4789. "type": "git",
  4790. "url": "https://github.com/symfony/error-handler.git",
  4791. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  4792. },
  4793. "dist": {
  4794. "type": "zip",
  4795. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  4796. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  4797. "shasum": ""
  4798. },
  4799. "require": {
  4800. "php": ">=8.2",
  4801. "psr/log": "^1|^2|^3",
  4802. "symfony/var-dumper": "^6.4|^7.0"
  4803. },
  4804. "conflict": {
  4805. "symfony/deprecation-contracts": "<2.5",
  4806. "symfony/http-kernel": "<6.4"
  4807. },
  4808. "require-dev": {
  4809. "symfony/console": "^6.4|^7.0",
  4810. "symfony/deprecation-contracts": "^2.5|^3",
  4811. "symfony/http-kernel": "^6.4|^7.0",
  4812. "symfony/serializer": "^6.4|^7.0",
  4813. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  4814. },
  4815. "bin": [
  4816. "Resources/bin/patch-type-declarations"
  4817. ],
  4818. "type": "library",
  4819. "autoload": {
  4820. "psr-4": {
  4821. "Symfony\\Component\\ErrorHandler\\": ""
  4822. },
  4823. "exclude-from-classmap": [
  4824. "/Tests/"
  4825. ]
  4826. },
  4827. "notification-url": "https://packagist.org/downloads/",
  4828. "license": [
  4829. "MIT"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Fabien Potencier",
  4834. "email": "fabien@symfony.com"
  4835. },
  4836. {
  4837. "name": "Symfony Community",
  4838. "homepage": "https://symfony.com/contributors"
  4839. }
  4840. ],
  4841. "description": "Provides tools to manage errors and ease debugging PHP code",
  4842. "homepage": "https://symfony.com",
  4843. "support": {
  4844. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  4845. },
  4846. "funding": [
  4847. {
  4848. "url": "https://symfony.com/sponsor",
  4849. "type": "custom"
  4850. },
  4851. {
  4852. "url": "https://github.com/fabpot",
  4853. "type": "github"
  4854. },
  4855. {
  4856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4857. "type": "tidelift"
  4858. }
  4859. ],
  4860. "time": "2025-06-13T07:48:40+00:00"
  4861. },
  4862. {
  4863. "name": "symfony/event-dispatcher",
  4864. "version": "v7.3.0",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://github.com/symfony/event-dispatcher.git",
  4868. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  4873. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  4874. "shasum": ""
  4875. },
  4876. "require": {
  4877. "php": ">=8.2",
  4878. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4879. },
  4880. "conflict": {
  4881. "symfony/dependency-injection": "<6.4",
  4882. "symfony/service-contracts": "<2.5"
  4883. },
  4884. "provide": {
  4885. "psr/event-dispatcher-implementation": "1.0",
  4886. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4887. },
  4888. "require-dev": {
  4889. "psr/log": "^1|^2|^3",
  4890. "symfony/config": "^6.4|^7.0",
  4891. "symfony/dependency-injection": "^6.4|^7.0",
  4892. "symfony/error-handler": "^6.4|^7.0",
  4893. "symfony/expression-language": "^6.4|^7.0",
  4894. "symfony/http-foundation": "^6.4|^7.0",
  4895. "symfony/service-contracts": "^2.5|^3",
  4896. "symfony/stopwatch": "^6.4|^7.0"
  4897. },
  4898. "type": "library",
  4899. "autoload": {
  4900. "psr-4": {
  4901. "Symfony\\Component\\EventDispatcher\\": ""
  4902. },
  4903. "exclude-from-classmap": [
  4904. "/Tests/"
  4905. ]
  4906. },
  4907. "notification-url": "https://packagist.org/downloads/",
  4908. "license": [
  4909. "MIT"
  4910. ],
  4911. "authors": [
  4912. {
  4913. "name": "Fabien Potencier",
  4914. "email": "fabien@symfony.com"
  4915. },
  4916. {
  4917. "name": "Symfony Community",
  4918. "homepage": "https://symfony.com/contributors"
  4919. }
  4920. ],
  4921. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4922. "homepage": "https://symfony.com",
  4923. "support": {
  4924. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  4925. },
  4926. "funding": [
  4927. {
  4928. "url": "https://symfony.com/sponsor",
  4929. "type": "custom"
  4930. },
  4931. {
  4932. "url": "https://github.com/fabpot",
  4933. "type": "github"
  4934. },
  4935. {
  4936. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4937. "type": "tidelift"
  4938. }
  4939. ],
  4940. "time": "2025-04-22T09:11:45+00:00"
  4941. },
  4942. {
  4943. "name": "symfony/event-dispatcher-contracts",
  4944. "version": "v3.6.0",
  4945. "source": {
  4946. "type": "git",
  4947. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4948. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  4949. },
  4950. "dist": {
  4951. "type": "zip",
  4952. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  4953. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  4954. "shasum": ""
  4955. },
  4956. "require": {
  4957. "php": ">=8.1",
  4958. "psr/event-dispatcher": "^1"
  4959. },
  4960. "type": "library",
  4961. "extra": {
  4962. "thanks": {
  4963. "url": "https://github.com/symfony/contracts",
  4964. "name": "symfony/contracts"
  4965. },
  4966. "branch-alias": {
  4967. "dev-main": "3.6-dev"
  4968. }
  4969. },
  4970. "autoload": {
  4971. "psr-4": {
  4972. "Symfony\\Contracts\\EventDispatcher\\": ""
  4973. }
  4974. },
  4975. "notification-url": "https://packagist.org/downloads/",
  4976. "license": [
  4977. "MIT"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "Nicolas Grekas",
  4982. "email": "p@tchwork.com"
  4983. },
  4984. {
  4985. "name": "Symfony Community",
  4986. "homepage": "https://symfony.com/contributors"
  4987. }
  4988. ],
  4989. "description": "Generic abstractions related to dispatching event",
  4990. "homepage": "https://symfony.com",
  4991. "keywords": [
  4992. "abstractions",
  4993. "contracts",
  4994. "decoupling",
  4995. "interfaces",
  4996. "interoperability",
  4997. "standards"
  4998. ],
  4999. "support": {
  5000. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  5001. },
  5002. "funding": [
  5003. {
  5004. "url": "https://symfony.com/sponsor",
  5005. "type": "custom"
  5006. },
  5007. {
  5008. "url": "https://github.com/fabpot",
  5009. "type": "github"
  5010. },
  5011. {
  5012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5013. "type": "tidelift"
  5014. }
  5015. ],
  5016. "time": "2024-09-25T14:21:43+00:00"
  5017. },
  5018. {
  5019. "name": "symfony/expression-language",
  5020. "version": "v7.3.0",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/symfony/expression-language.git",
  5024. "reference": "26f4884a455e755e630a5fc372df124a3578da2e"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/symfony/expression-language/zipball/26f4884a455e755e630a5fc372df124a3578da2e",
  5029. "reference": "26f4884a455e755e630a5fc372df124a3578da2e",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "php": ">=8.2",
  5034. "symfony/cache": "^6.4|^7.0",
  5035. "symfony/deprecation-contracts": "^2.5|^3",
  5036. "symfony/service-contracts": "^2.5|^3"
  5037. },
  5038. "type": "library",
  5039. "autoload": {
  5040. "psr-4": {
  5041. "Symfony\\Component\\ExpressionLanguage\\": ""
  5042. },
  5043. "exclude-from-classmap": [
  5044. "/Tests/"
  5045. ]
  5046. },
  5047. "notification-url": "https://packagist.org/downloads/",
  5048. "license": [
  5049. "MIT"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "Fabien Potencier",
  5054. "email": "fabien@symfony.com"
  5055. },
  5056. {
  5057. "name": "Symfony Community",
  5058. "homepage": "https://symfony.com/contributors"
  5059. }
  5060. ],
  5061. "description": "Provides an engine that can compile and evaluate expressions",
  5062. "homepage": "https://symfony.com",
  5063. "support": {
  5064. "source": "https://github.com/symfony/expression-language/tree/v7.3.0"
  5065. },
  5066. "funding": [
  5067. {
  5068. "url": "https://symfony.com/sponsor",
  5069. "type": "custom"
  5070. },
  5071. {
  5072. "url": "https://github.com/fabpot",
  5073. "type": "github"
  5074. },
  5075. {
  5076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5077. "type": "tidelift"
  5078. }
  5079. ],
  5080. "time": "2024-10-15T11:52:45+00:00"
  5081. },
  5082. {
  5083. "name": "symfony/filesystem",
  5084. "version": "v7.3.0",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/symfony/filesystem.git",
  5088. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  5093. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  5094. "shasum": ""
  5095. },
  5096. "require": {
  5097. "php": ">=8.2",
  5098. "symfony/polyfill-ctype": "~1.8",
  5099. "symfony/polyfill-mbstring": "~1.8"
  5100. },
  5101. "require-dev": {
  5102. "symfony/process": "^6.4|^7.0"
  5103. },
  5104. "type": "library",
  5105. "autoload": {
  5106. "psr-4": {
  5107. "Symfony\\Component\\Filesystem\\": ""
  5108. },
  5109. "exclude-from-classmap": [
  5110. "/Tests/"
  5111. ]
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Fabien Potencier",
  5120. "email": "fabien@symfony.com"
  5121. },
  5122. {
  5123. "name": "Symfony Community",
  5124. "homepage": "https://symfony.com/contributors"
  5125. }
  5126. ],
  5127. "description": "Provides basic utilities for the filesystem",
  5128. "homepage": "https://symfony.com",
  5129. "support": {
  5130. "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
  5131. },
  5132. "funding": [
  5133. {
  5134. "url": "https://symfony.com/sponsor",
  5135. "type": "custom"
  5136. },
  5137. {
  5138. "url": "https://github.com/fabpot",
  5139. "type": "github"
  5140. },
  5141. {
  5142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5143. "type": "tidelift"
  5144. }
  5145. ],
  5146. "time": "2024-10-25T15:15:23+00:00"
  5147. },
  5148. {
  5149. "name": "symfony/finder",
  5150. "version": "v7.3.0",
  5151. "source": {
  5152. "type": "git",
  5153. "url": "https://github.com/symfony/finder.git",
  5154. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  5155. },
  5156. "dist": {
  5157. "type": "zip",
  5158. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  5159. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  5160. "shasum": ""
  5161. },
  5162. "require": {
  5163. "php": ">=8.2"
  5164. },
  5165. "require-dev": {
  5166. "symfony/filesystem": "^6.4|^7.0"
  5167. },
  5168. "type": "library",
  5169. "autoload": {
  5170. "psr-4": {
  5171. "Symfony\\Component\\Finder\\": ""
  5172. },
  5173. "exclude-from-classmap": [
  5174. "/Tests/"
  5175. ]
  5176. },
  5177. "notification-url": "https://packagist.org/downloads/",
  5178. "license": [
  5179. "MIT"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "Fabien Potencier",
  5184. "email": "fabien@symfony.com"
  5185. },
  5186. {
  5187. "name": "Symfony Community",
  5188. "homepage": "https://symfony.com/contributors"
  5189. }
  5190. ],
  5191. "description": "Finds files and directories via an intuitive fluent interface",
  5192. "homepage": "https://symfony.com",
  5193. "support": {
  5194. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  5195. },
  5196. "funding": [
  5197. {
  5198. "url": "https://symfony.com/sponsor",
  5199. "type": "custom"
  5200. },
  5201. {
  5202. "url": "https://github.com/fabpot",
  5203. "type": "github"
  5204. },
  5205. {
  5206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5207. "type": "tidelift"
  5208. }
  5209. ],
  5210. "time": "2024-12-30T19:00:26+00:00"
  5211. },
  5212. {
  5213. "name": "symfony/flex",
  5214. "version": "v2.8.1",
  5215. "source": {
  5216. "type": "git",
  5217. "url": "https://github.com/symfony/flex.git",
  5218. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01"
  5219. },
  5220. "dist": {
  5221. "type": "zip",
  5222. "url": "https://api.github.com/repos/symfony/flex/zipball/423c36e369361003dc31ef11c5f15fb589e52c01",
  5223. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01",
  5224. "shasum": ""
  5225. },
  5226. "require": {
  5227. "composer-plugin-api": "^2.1",
  5228. "php": ">=8.0"
  5229. },
  5230. "conflict": {
  5231. "composer/semver": "<1.7.2"
  5232. },
  5233. "require-dev": {
  5234. "composer/composer": "^2.1",
  5235. "symfony/dotenv": "^5.4|^6.0",
  5236. "symfony/filesystem": "^5.4|^6.0",
  5237. "symfony/phpunit-bridge": "^5.4|^6.0",
  5238. "symfony/process": "^5.4|^6.0"
  5239. },
  5240. "type": "composer-plugin",
  5241. "extra": {
  5242. "class": "Symfony\\Flex\\Flex"
  5243. },
  5244. "autoload": {
  5245. "psr-4": {
  5246. "Symfony\\Flex\\": "src"
  5247. }
  5248. },
  5249. "notification-url": "https://packagist.org/downloads/",
  5250. "license": [
  5251. "MIT"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "Fabien Potencier",
  5256. "email": "fabien.potencier@gmail.com"
  5257. }
  5258. ],
  5259. "description": "Composer plugin for Symfony",
  5260. "support": {
  5261. "issues": "https://github.com/symfony/flex/issues",
  5262. "source": "https://github.com/symfony/flex/tree/v2.8.1"
  5263. },
  5264. "funding": [
  5265. {
  5266. "url": "https://symfony.com/sponsor",
  5267. "type": "custom"
  5268. },
  5269. {
  5270. "url": "https://github.com/fabpot",
  5271. "type": "github"
  5272. },
  5273. {
  5274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5275. "type": "tidelift"
  5276. }
  5277. ],
  5278. "time": "2025-07-05T07:45:19+00:00"
  5279. },
  5280. {
  5281. "name": "symfony/form",
  5282. "version": "v7.3.1",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/symfony/form.git",
  5286. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/symfony/form/zipball/e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  5291. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  5292. "shasum": ""
  5293. },
  5294. "require": {
  5295. "php": ">=8.2",
  5296. "symfony/deprecation-contracts": "^2.5|^3",
  5297. "symfony/event-dispatcher": "^6.4|^7.0",
  5298. "symfony/options-resolver": "^7.3",
  5299. "symfony/polyfill-ctype": "~1.8",
  5300. "symfony/polyfill-intl-icu": "^1.21",
  5301. "symfony/polyfill-mbstring": "~1.0",
  5302. "symfony/property-access": "^6.4|^7.0",
  5303. "symfony/service-contracts": "^2.5|^3"
  5304. },
  5305. "conflict": {
  5306. "symfony/console": "<6.4",
  5307. "symfony/dependency-injection": "<6.4",
  5308. "symfony/doctrine-bridge": "<6.4",
  5309. "symfony/error-handler": "<6.4",
  5310. "symfony/framework-bundle": "<6.4",
  5311. "symfony/http-kernel": "<6.4",
  5312. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5313. "symfony/translation-contracts": "<2.5",
  5314. "symfony/twig-bridge": "<6.4"
  5315. },
  5316. "require-dev": {
  5317. "doctrine/collections": "^1.0|^2.0",
  5318. "symfony/config": "^6.4|^7.0",
  5319. "symfony/console": "^6.4|^7.0",
  5320. "symfony/dependency-injection": "^6.4|^7.0",
  5321. "symfony/expression-language": "^6.4|^7.0",
  5322. "symfony/html-sanitizer": "^6.4|^7.0",
  5323. "symfony/http-foundation": "^6.4|^7.0",
  5324. "symfony/http-kernel": "^6.4|^7.0",
  5325. "symfony/intl": "^6.4|^7.0",
  5326. "symfony/security-core": "^6.4|^7.0",
  5327. "symfony/security-csrf": "^6.4|^7.0",
  5328. "symfony/translation": "^6.4.3|^7.0.3",
  5329. "symfony/uid": "^6.4|^7.0",
  5330. "symfony/validator": "^6.4|^7.0",
  5331. "symfony/var-dumper": "^6.4|^7.0"
  5332. },
  5333. "type": "library",
  5334. "autoload": {
  5335. "psr-4": {
  5336. "Symfony\\Component\\Form\\": ""
  5337. },
  5338. "exclude-from-classmap": [
  5339. "/Tests/"
  5340. ]
  5341. },
  5342. "notification-url": "https://packagist.org/downloads/",
  5343. "license": [
  5344. "MIT"
  5345. ],
  5346. "authors": [
  5347. {
  5348. "name": "Fabien Potencier",
  5349. "email": "fabien@symfony.com"
  5350. },
  5351. {
  5352. "name": "Symfony Community",
  5353. "homepage": "https://symfony.com/contributors"
  5354. }
  5355. ],
  5356. "description": "Allows to easily create, process and reuse HTML forms",
  5357. "homepage": "https://symfony.com",
  5358. "support": {
  5359. "source": "https://github.com/symfony/form/tree/v7.3.1"
  5360. },
  5361. "funding": [
  5362. {
  5363. "url": "https://symfony.com/sponsor",
  5364. "type": "custom"
  5365. },
  5366. {
  5367. "url": "https://github.com/fabpot",
  5368. "type": "github"
  5369. },
  5370. {
  5371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5372. "type": "tidelift"
  5373. }
  5374. ],
  5375. "time": "2025-06-13T07:48:40+00:00"
  5376. },
  5377. {
  5378. "name": "symfony/framework-bundle",
  5379. "version": "v7.3.1",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/symfony/framework-bundle.git",
  5383. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  5388. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "composer-runtime-api": ">=2.1",
  5393. "ext-xml": "*",
  5394. "php": ">=8.2",
  5395. "symfony/cache": "^6.4|^7.0",
  5396. "symfony/config": "^7.3",
  5397. "symfony/dependency-injection": "^7.2",
  5398. "symfony/deprecation-contracts": "^2.5|^3",
  5399. "symfony/error-handler": "^7.3",
  5400. "symfony/event-dispatcher": "^6.4|^7.0",
  5401. "symfony/filesystem": "^7.1",
  5402. "symfony/finder": "^6.4|^7.0",
  5403. "symfony/http-foundation": "^7.3",
  5404. "symfony/http-kernel": "^7.2",
  5405. "symfony/polyfill-mbstring": "~1.0",
  5406. "symfony/routing": "^6.4|^7.0"
  5407. },
  5408. "conflict": {
  5409. "doctrine/persistence": "<1.3",
  5410. "phpdocumentor/reflection-docblock": "<3.2.2",
  5411. "phpdocumentor/type-resolver": "<1.4.0",
  5412. "symfony/asset": "<6.4",
  5413. "symfony/asset-mapper": "<6.4",
  5414. "symfony/clock": "<6.4",
  5415. "symfony/console": "<6.4",
  5416. "symfony/dom-crawler": "<6.4",
  5417. "symfony/dotenv": "<6.4",
  5418. "symfony/form": "<6.4",
  5419. "symfony/http-client": "<6.4",
  5420. "symfony/json-streamer": ">=7.4",
  5421. "symfony/lock": "<6.4",
  5422. "symfony/mailer": "<6.4",
  5423. "symfony/messenger": "<6.4",
  5424. "symfony/mime": "<6.4",
  5425. "symfony/object-mapper": ">=7.4",
  5426. "symfony/property-access": "<6.4",
  5427. "symfony/property-info": "<6.4",
  5428. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  5429. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  5430. "symfony/security-core": "<6.4",
  5431. "symfony/security-csrf": "<7.2",
  5432. "symfony/serializer": "<7.2.5",
  5433. "symfony/stopwatch": "<6.4",
  5434. "symfony/translation": "<7.3",
  5435. "symfony/twig-bridge": "<6.4",
  5436. "symfony/twig-bundle": "<6.4",
  5437. "symfony/validator": "<6.4",
  5438. "symfony/web-profiler-bundle": "<6.4",
  5439. "symfony/webhook": "<7.2",
  5440. "symfony/workflow": "<7.3.0-beta2"
  5441. },
  5442. "require-dev": {
  5443. "doctrine/persistence": "^1.3|^2|^3",
  5444. "dragonmantank/cron-expression": "^3.1",
  5445. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5446. "seld/jsonlint": "^1.10",
  5447. "symfony/asset": "^6.4|^7.0",
  5448. "symfony/asset-mapper": "^6.4|^7.0",
  5449. "symfony/browser-kit": "^6.4|^7.0",
  5450. "symfony/clock": "^6.4|^7.0",
  5451. "symfony/console": "^6.4|^7.0",
  5452. "symfony/css-selector": "^6.4|^7.0",
  5453. "symfony/dom-crawler": "^6.4|^7.0",
  5454. "symfony/dotenv": "^6.4|^7.0",
  5455. "symfony/expression-language": "^6.4|^7.0",
  5456. "symfony/form": "^6.4|^7.0",
  5457. "symfony/html-sanitizer": "^6.4|^7.0",
  5458. "symfony/http-client": "^6.4|^7.0",
  5459. "symfony/json-streamer": "7.3.*",
  5460. "symfony/lock": "^6.4|^7.0",
  5461. "symfony/mailer": "^6.4|^7.0",
  5462. "symfony/messenger": "^6.4|^7.0",
  5463. "symfony/mime": "^6.4|^7.0",
  5464. "symfony/notifier": "^6.4|^7.0",
  5465. "symfony/object-mapper": "^v7.3.0-beta2",
  5466. "symfony/polyfill-intl-icu": "~1.0",
  5467. "symfony/process": "^6.4|^7.0",
  5468. "symfony/property-info": "^6.4|^7.0",
  5469. "symfony/rate-limiter": "^6.4|^7.0",
  5470. "symfony/scheduler": "^6.4.4|^7.0.4",
  5471. "symfony/security-bundle": "^6.4|^7.0",
  5472. "symfony/semaphore": "^6.4|^7.0",
  5473. "symfony/serializer": "^7.2.5",
  5474. "symfony/stopwatch": "^6.4|^7.0",
  5475. "symfony/string": "^6.4|^7.0",
  5476. "symfony/translation": "^7.3",
  5477. "symfony/twig-bundle": "^6.4|^7.0",
  5478. "symfony/type-info": "^7.1",
  5479. "symfony/uid": "^6.4|^7.0",
  5480. "symfony/validator": "^6.4|^7.0",
  5481. "symfony/web-link": "^6.4|^7.0",
  5482. "symfony/webhook": "^7.2",
  5483. "symfony/workflow": "^7.3",
  5484. "symfony/yaml": "^6.4|^7.0",
  5485. "twig/twig": "^3.12"
  5486. },
  5487. "type": "symfony-bundle",
  5488. "autoload": {
  5489. "psr-4": {
  5490. "Symfony\\Bundle\\FrameworkBundle\\": ""
  5491. },
  5492. "exclude-from-classmap": [
  5493. "/Tests/"
  5494. ]
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Fabien Potencier",
  5503. "email": "fabien@symfony.com"
  5504. },
  5505. {
  5506. "name": "Symfony Community",
  5507. "homepage": "https://symfony.com/contributors"
  5508. }
  5509. ],
  5510. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  5511. "homepage": "https://symfony.com",
  5512. "support": {
  5513. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.1"
  5514. },
  5515. "funding": [
  5516. {
  5517. "url": "https://symfony.com/sponsor",
  5518. "type": "custom"
  5519. },
  5520. {
  5521. "url": "https://github.com/fabpot",
  5522. "type": "github"
  5523. },
  5524. {
  5525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5526. "type": "tidelift"
  5527. }
  5528. ],
  5529. "time": "2025-06-27T19:55:54+00:00"
  5530. },
  5531. {
  5532. "name": "symfony/http-client",
  5533. "version": "v7.3.1",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/symfony/http-client.git",
  5537. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/symfony/http-client/zipball/4403d87a2c16f33345dca93407a8714ee8c05a64",
  5542. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=8.2",
  5547. "psr/log": "^1|^2|^3",
  5548. "symfony/deprecation-contracts": "^2.5|^3",
  5549. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  5550. "symfony/service-contracts": "^2.5|^3"
  5551. },
  5552. "conflict": {
  5553. "amphp/amp": "<2.5",
  5554. "amphp/socket": "<1.1",
  5555. "php-http/discovery": "<1.15",
  5556. "symfony/http-foundation": "<6.4"
  5557. },
  5558. "provide": {
  5559. "php-http/async-client-implementation": "*",
  5560. "php-http/client-implementation": "*",
  5561. "psr/http-client-implementation": "1.0",
  5562. "symfony/http-client-implementation": "3.0"
  5563. },
  5564. "require-dev": {
  5565. "amphp/http-client": "^4.2.1|^5.0",
  5566. "amphp/http-tunnel": "^1.0|^2.0",
  5567. "guzzlehttp/promises": "^1.4|^2.0",
  5568. "nyholm/psr7": "^1.0",
  5569. "php-http/httplug": "^1.0|^2.0",
  5570. "psr/http-client": "^1.0",
  5571. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  5572. "symfony/dependency-injection": "^6.4|^7.0",
  5573. "symfony/http-kernel": "^6.4|^7.0",
  5574. "symfony/messenger": "^6.4|^7.0",
  5575. "symfony/process": "^6.4|^7.0",
  5576. "symfony/rate-limiter": "^6.4|^7.0",
  5577. "symfony/stopwatch": "^6.4|^7.0"
  5578. },
  5579. "type": "library",
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Symfony\\Component\\HttpClient\\": ""
  5583. },
  5584. "exclude-from-classmap": [
  5585. "/Tests/"
  5586. ]
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Nicolas Grekas",
  5595. "email": "p@tchwork.com"
  5596. },
  5597. {
  5598. "name": "Symfony Community",
  5599. "homepage": "https://symfony.com/contributors"
  5600. }
  5601. ],
  5602. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5603. "homepage": "https://symfony.com",
  5604. "keywords": [
  5605. "http"
  5606. ],
  5607. "support": {
  5608. "source": "https://github.com/symfony/http-client/tree/v7.3.1"
  5609. },
  5610. "funding": [
  5611. {
  5612. "url": "https://symfony.com/sponsor",
  5613. "type": "custom"
  5614. },
  5615. {
  5616. "url": "https://github.com/fabpot",
  5617. "type": "github"
  5618. },
  5619. {
  5620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5621. "type": "tidelift"
  5622. }
  5623. ],
  5624. "time": "2025-06-28T07:58:39+00:00"
  5625. },
  5626. {
  5627. "name": "symfony/http-client-contracts",
  5628. "version": "v3.6.0",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/symfony/http-client-contracts.git",
  5632. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  5637. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  5638. "shasum": ""
  5639. },
  5640. "require": {
  5641. "php": ">=8.1"
  5642. },
  5643. "type": "library",
  5644. "extra": {
  5645. "thanks": {
  5646. "url": "https://github.com/symfony/contracts",
  5647. "name": "symfony/contracts"
  5648. },
  5649. "branch-alias": {
  5650. "dev-main": "3.6-dev"
  5651. }
  5652. },
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Symfony\\Contracts\\HttpClient\\": ""
  5656. },
  5657. "exclude-from-classmap": [
  5658. "/Test/"
  5659. ]
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Nicolas Grekas",
  5668. "email": "p@tchwork.com"
  5669. },
  5670. {
  5671. "name": "Symfony Community",
  5672. "homepage": "https://symfony.com/contributors"
  5673. }
  5674. ],
  5675. "description": "Generic abstractions related to HTTP clients",
  5676. "homepage": "https://symfony.com",
  5677. "keywords": [
  5678. "abstractions",
  5679. "contracts",
  5680. "decoupling",
  5681. "interfaces",
  5682. "interoperability",
  5683. "standards"
  5684. ],
  5685. "support": {
  5686. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  5687. },
  5688. "funding": [
  5689. {
  5690. "url": "https://symfony.com/sponsor",
  5691. "type": "custom"
  5692. },
  5693. {
  5694. "url": "https://github.com/fabpot",
  5695. "type": "github"
  5696. },
  5697. {
  5698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5699. "type": "tidelift"
  5700. }
  5701. ],
  5702. "time": "2025-04-29T11:18:49+00:00"
  5703. },
  5704. {
  5705. "name": "symfony/http-foundation",
  5706. "version": "v7.3.1",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://github.com/symfony/http-foundation.git",
  5710. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  5715. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  5716. "shasum": ""
  5717. },
  5718. "require": {
  5719. "php": ">=8.2",
  5720. "symfony/deprecation-contracts": "^2.5|^3.0",
  5721. "symfony/polyfill-mbstring": "~1.1",
  5722. "symfony/polyfill-php83": "^1.27"
  5723. },
  5724. "conflict": {
  5725. "doctrine/dbal": "<3.6",
  5726. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5727. },
  5728. "require-dev": {
  5729. "doctrine/dbal": "^3.6|^4",
  5730. "predis/predis": "^1.1|^2.0",
  5731. "symfony/cache": "^6.4.12|^7.1.5",
  5732. "symfony/clock": "^6.4|^7.0",
  5733. "symfony/dependency-injection": "^6.4|^7.0",
  5734. "symfony/expression-language": "^6.4|^7.0",
  5735. "symfony/http-kernel": "^6.4|^7.0",
  5736. "symfony/mime": "^6.4|^7.0",
  5737. "symfony/rate-limiter": "^6.4|^7.0"
  5738. },
  5739. "type": "library",
  5740. "autoload": {
  5741. "psr-4": {
  5742. "Symfony\\Component\\HttpFoundation\\": ""
  5743. },
  5744. "exclude-from-classmap": [
  5745. "/Tests/"
  5746. ]
  5747. },
  5748. "notification-url": "https://packagist.org/downloads/",
  5749. "license": [
  5750. "MIT"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Fabien Potencier",
  5755. "email": "fabien@symfony.com"
  5756. },
  5757. {
  5758. "name": "Symfony Community",
  5759. "homepage": "https://symfony.com/contributors"
  5760. }
  5761. ],
  5762. "description": "Defines an object-oriented layer for the HTTP specification",
  5763. "homepage": "https://symfony.com",
  5764. "support": {
  5765. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  5766. },
  5767. "funding": [
  5768. {
  5769. "url": "https://symfony.com/sponsor",
  5770. "type": "custom"
  5771. },
  5772. {
  5773. "url": "https://github.com/fabpot",
  5774. "type": "github"
  5775. },
  5776. {
  5777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5778. "type": "tidelift"
  5779. }
  5780. ],
  5781. "time": "2025-06-23T15:07:14+00:00"
  5782. },
  5783. {
  5784. "name": "symfony/http-kernel",
  5785. "version": "v7.3.1",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/symfony/http-kernel.git",
  5789. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5794. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5795. "shasum": ""
  5796. },
  5797. "require": {
  5798. "php": ">=8.2",
  5799. "psr/log": "^1|^2|^3",
  5800. "symfony/deprecation-contracts": "^2.5|^3",
  5801. "symfony/error-handler": "^6.4|^7.0",
  5802. "symfony/event-dispatcher": "^7.3",
  5803. "symfony/http-foundation": "^7.3",
  5804. "symfony/polyfill-ctype": "^1.8"
  5805. },
  5806. "conflict": {
  5807. "symfony/browser-kit": "<6.4",
  5808. "symfony/cache": "<6.4",
  5809. "symfony/config": "<6.4",
  5810. "symfony/console": "<6.4",
  5811. "symfony/dependency-injection": "<6.4",
  5812. "symfony/doctrine-bridge": "<6.4",
  5813. "symfony/form": "<6.4",
  5814. "symfony/http-client": "<6.4",
  5815. "symfony/http-client-contracts": "<2.5",
  5816. "symfony/mailer": "<6.4",
  5817. "symfony/messenger": "<6.4",
  5818. "symfony/translation": "<6.4",
  5819. "symfony/translation-contracts": "<2.5",
  5820. "symfony/twig-bridge": "<6.4",
  5821. "symfony/validator": "<6.4",
  5822. "symfony/var-dumper": "<6.4",
  5823. "twig/twig": "<3.12"
  5824. },
  5825. "provide": {
  5826. "psr/log-implementation": "1.0|2.0|3.0"
  5827. },
  5828. "require-dev": {
  5829. "psr/cache": "^1.0|^2.0|^3.0",
  5830. "symfony/browser-kit": "^6.4|^7.0",
  5831. "symfony/clock": "^6.4|^7.0",
  5832. "symfony/config": "^6.4|^7.0",
  5833. "symfony/console": "^6.4|^7.0",
  5834. "symfony/css-selector": "^6.4|^7.0",
  5835. "symfony/dependency-injection": "^6.4|^7.0",
  5836. "symfony/dom-crawler": "^6.4|^7.0",
  5837. "symfony/expression-language": "^6.4|^7.0",
  5838. "symfony/finder": "^6.4|^7.0",
  5839. "symfony/http-client-contracts": "^2.5|^3",
  5840. "symfony/process": "^6.4|^7.0",
  5841. "symfony/property-access": "^7.1",
  5842. "symfony/routing": "^6.4|^7.0",
  5843. "symfony/serializer": "^7.1",
  5844. "symfony/stopwatch": "^6.4|^7.0",
  5845. "symfony/translation": "^6.4|^7.0",
  5846. "symfony/translation-contracts": "^2.5|^3",
  5847. "symfony/uid": "^6.4|^7.0",
  5848. "symfony/validator": "^6.4|^7.0",
  5849. "symfony/var-dumper": "^6.4|^7.0",
  5850. "symfony/var-exporter": "^6.4|^7.0",
  5851. "twig/twig": "^3.12"
  5852. },
  5853. "type": "library",
  5854. "autoload": {
  5855. "psr-4": {
  5856. "Symfony\\Component\\HttpKernel\\": ""
  5857. },
  5858. "exclude-from-classmap": [
  5859. "/Tests/"
  5860. ]
  5861. },
  5862. "notification-url": "https://packagist.org/downloads/",
  5863. "license": [
  5864. "MIT"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "Fabien Potencier",
  5869. "email": "fabien@symfony.com"
  5870. },
  5871. {
  5872. "name": "Symfony Community",
  5873. "homepage": "https://symfony.com/contributors"
  5874. }
  5875. ],
  5876. "description": "Provides a structured process for converting a Request into a Response",
  5877. "homepage": "https://symfony.com",
  5878. "support": {
  5879. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  5880. },
  5881. "funding": [
  5882. {
  5883. "url": "https://symfony.com/sponsor",
  5884. "type": "custom"
  5885. },
  5886. {
  5887. "url": "https://github.com/fabpot",
  5888. "type": "github"
  5889. },
  5890. {
  5891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5892. "type": "tidelift"
  5893. }
  5894. ],
  5895. "time": "2025-06-28T08:24:55+00:00"
  5896. },
  5897. {
  5898. "name": "symfony/intl",
  5899. "version": "v7.3.1",
  5900. "source": {
  5901. "type": "git",
  5902. "url": "https://github.com/symfony/intl.git",
  5903. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45"
  5904. },
  5905. "dist": {
  5906. "type": "zip",
  5907. "url": "https://api.github.com/repos/symfony/intl/zipball/bd50940329ac1cfc4af0491cc4468f477d967e45",
  5908. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45",
  5909. "shasum": ""
  5910. },
  5911. "require": {
  5912. "php": ">=8.2",
  5913. "symfony/deprecation-contracts": "^2.5|^3"
  5914. },
  5915. "conflict": {
  5916. "symfony/string": "<7.1"
  5917. },
  5918. "require-dev": {
  5919. "symfony/filesystem": "^6.4|^7.0",
  5920. "symfony/var-exporter": "^6.4|^7.0"
  5921. },
  5922. "type": "library",
  5923. "autoload": {
  5924. "psr-4": {
  5925. "Symfony\\Component\\Intl\\": ""
  5926. },
  5927. "exclude-from-classmap": [
  5928. "/Tests/",
  5929. "/Resources/data/"
  5930. ]
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "Bernhard Schussek",
  5939. "email": "bschussek@gmail.com"
  5940. },
  5941. {
  5942. "name": "Eriksen Costa",
  5943. "email": "eriksen.costa@infranology.com.br"
  5944. },
  5945. {
  5946. "name": "Igor Wiedler",
  5947. "email": "igor@wiedler.ch"
  5948. },
  5949. {
  5950. "name": "Symfony Community",
  5951. "homepage": "https://symfony.com/contributors"
  5952. }
  5953. ],
  5954. "description": "Provides access to the localization data of the ICU library",
  5955. "homepage": "https://symfony.com",
  5956. "keywords": [
  5957. "i18n",
  5958. "icu",
  5959. "internationalization",
  5960. "intl",
  5961. "l10n",
  5962. "localization"
  5963. ],
  5964. "support": {
  5965. "source": "https://github.com/symfony/intl/tree/v7.3.1"
  5966. },
  5967. "funding": [
  5968. {
  5969. "url": "https://symfony.com/sponsor",
  5970. "type": "custom"
  5971. },
  5972. {
  5973. "url": "https://github.com/fabpot",
  5974. "type": "github"
  5975. },
  5976. {
  5977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5978. "type": "tidelift"
  5979. }
  5980. ],
  5981. "time": "2025-06-06T16:10:07+00:00"
  5982. },
  5983. {
  5984. "name": "symfony/mailer",
  5985. "version": "v7.3.1",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/symfony/mailer.git",
  5989. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  5994. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  5995. "shasum": ""
  5996. },
  5997. "require": {
  5998. "egulias/email-validator": "^2.1.10|^3|^4",
  5999. "php": ">=8.2",
  6000. "psr/event-dispatcher": "^1",
  6001. "psr/log": "^1|^2|^3",
  6002. "symfony/event-dispatcher": "^6.4|^7.0",
  6003. "symfony/mime": "^7.2",
  6004. "symfony/service-contracts": "^2.5|^3"
  6005. },
  6006. "conflict": {
  6007. "symfony/http-client-contracts": "<2.5",
  6008. "symfony/http-kernel": "<6.4",
  6009. "symfony/messenger": "<6.4",
  6010. "symfony/mime": "<6.4",
  6011. "symfony/twig-bridge": "<6.4"
  6012. },
  6013. "require-dev": {
  6014. "symfony/console": "^6.4|^7.0",
  6015. "symfony/http-client": "^6.4|^7.0",
  6016. "symfony/messenger": "^6.4|^7.0",
  6017. "symfony/twig-bridge": "^6.4|^7.0"
  6018. },
  6019. "type": "library",
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Symfony\\Component\\Mailer\\": ""
  6023. },
  6024. "exclude-from-classmap": [
  6025. "/Tests/"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Fabien Potencier",
  6035. "email": "fabien@symfony.com"
  6036. },
  6037. {
  6038. "name": "Symfony Community",
  6039. "homepage": "https://symfony.com/contributors"
  6040. }
  6041. ],
  6042. "description": "Helps sending emails",
  6043. "homepage": "https://symfony.com",
  6044. "support": {
  6045. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2025-06-27T19:55:54+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/maker-bundle",
  6065. "version": "v1.64.0",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/maker-bundle.git",
  6069. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c86da84640b0586e92aee2b276ee3638ef2f425a",
  6074. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "doctrine/inflector": "^2.0",
  6079. "nikic/php-parser": "^5.0",
  6080. "php": ">=8.1",
  6081. "symfony/config": "^6.4|^7.0",
  6082. "symfony/console": "^6.4|^7.0",
  6083. "symfony/dependency-injection": "^6.4|^7.0",
  6084. "symfony/deprecation-contracts": "^2.2|^3",
  6085. "symfony/filesystem": "^6.4|^7.0",
  6086. "symfony/finder": "^6.4|^7.0",
  6087. "symfony/framework-bundle": "^6.4|^7.0",
  6088. "symfony/http-kernel": "^6.4|^7.0",
  6089. "symfony/process": "^6.4|^7.0"
  6090. },
  6091. "conflict": {
  6092. "doctrine/doctrine-bundle": "<2.10",
  6093. "doctrine/orm": "<2.15"
  6094. },
  6095. "require-dev": {
  6096. "composer/semver": "^3.0",
  6097. "doctrine/doctrine-bundle": "^2.5.0",
  6098. "doctrine/orm": "^2.15|^3",
  6099. "symfony/http-client": "^6.4|^7.0",
  6100. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  6101. "symfony/security-core": "^6.4|^7.0",
  6102. "symfony/security-http": "^6.4|^7.0",
  6103. "symfony/yaml": "^6.4|^7.0",
  6104. "twig/twig": "^3.0|^4.x-dev"
  6105. },
  6106. "type": "symfony-bundle",
  6107. "extra": {
  6108. "branch-alias": {
  6109. "dev-main": "1.x-dev"
  6110. }
  6111. },
  6112. "autoload": {
  6113. "psr-4": {
  6114. "Symfony\\Bundle\\MakerBundle\\": "src/"
  6115. }
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Symfony Community",
  6124. "homepage": "https://symfony.com/contributors"
  6125. }
  6126. ],
  6127. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  6128. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  6129. "keywords": [
  6130. "code generator",
  6131. "dev",
  6132. "generator",
  6133. "scaffold",
  6134. "scaffolding"
  6135. ],
  6136. "support": {
  6137. "issues": "https://github.com/symfony/maker-bundle/issues",
  6138. "source": "https://github.com/symfony/maker-bundle/tree/v1.64.0"
  6139. },
  6140. "funding": [
  6141. {
  6142. "url": "https://symfony.com/sponsor",
  6143. "type": "custom"
  6144. },
  6145. {
  6146. "url": "https://github.com/fabpot",
  6147. "type": "github"
  6148. },
  6149. {
  6150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6151. "type": "tidelift"
  6152. }
  6153. ],
  6154. "time": "2025-06-23T16:12:08+00:00"
  6155. },
  6156. {
  6157. "name": "symfony/messenger",
  6158. "version": "v7.3.1",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://github.com/symfony/messenger.git",
  6162. "reference": "716c89b86ce58c4946d436d862694971c999d1aa"
  6163. },
  6164. "dist": {
  6165. "type": "zip",
  6166. "url": "https://api.github.com/repos/symfony/messenger/zipball/716c89b86ce58c4946d436d862694971c999d1aa",
  6167. "reference": "716c89b86ce58c4946d436d862694971c999d1aa",
  6168. "shasum": ""
  6169. },
  6170. "require": {
  6171. "php": ">=8.2",
  6172. "psr/log": "^1|^2|^3",
  6173. "symfony/clock": "^6.4|^7.0",
  6174. "symfony/deprecation-contracts": "^2.5|^3"
  6175. },
  6176. "conflict": {
  6177. "symfony/console": "<7.2",
  6178. "symfony/event-dispatcher": "<6.4",
  6179. "symfony/event-dispatcher-contracts": "<2.5",
  6180. "symfony/framework-bundle": "<6.4",
  6181. "symfony/http-kernel": "<6.4",
  6182. "symfony/lock": "<6.4",
  6183. "symfony/serializer": "<6.4"
  6184. },
  6185. "require-dev": {
  6186. "psr/cache": "^1.0|^2.0|^3.0",
  6187. "symfony/console": "^7.2",
  6188. "symfony/dependency-injection": "^6.4|^7.0",
  6189. "symfony/event-dispatcher": "^6.4|^7.0",
  6190. "symfony/http-kernel": "^6.4|^7.0",
  6191. "symfony/lock": "^6.4|^7.0",
  6192. "symfony/process": "^6.4|^7.0",
  6193. "symfony/property-access": "^6.4|^7.0",
  6194. "symfony/rate-limiter": "^6.4|^7.0",
  6195. "symfony/routing": "^6.4|^7.0",
  6196. "symfony/serializer": "^6.4|^7.0",
  6197. "symfony/service-contracts": "^2.5|^3",
  6198. "symfony/stopwatch": "^6.4|^7.0",
  6199. "symfony/validator": "^6.4|^7.0"
  6200. },
  6201. "type": "library",
  6202. "autoload": {
  6203. "psr-4": {
  6204. "Symfony\\Component\\Messenger\\": ""
  6205. },
  6206. "exclude-from-classmap": [
  6207. "/Tests/"
  6208. ]
  6209. },
  6210. "notification-url": "https://packagist.org/downloads/",
  6211. "license": [
  6212. "MIT"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "Samuel Roze",
  6217. "email": "samuel.roze@gmail.com"
  6218. },
  6219. {
  6220. "name": "Symfony Community",
  6221. "homepage": "https://symfony.com/contributors"
  6222. }
  6223. ],
  6224. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  6225. "homepage": "https://symfony.com",
  6226. "support": {
  6227. "source": "https://github.com/symfony/messenger/tree/v7.3.1"
  6228. },
  6229. "funding": [
  6230. {
  6231. "url": "https://symfony.com/sponsor",
  6232. "type": "custom"
  6233. },
  6234. {
  6235. "url": "https://github.com/fabpot",
  6236. "type": "github"
  6237. },
  6238. {
  6239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6240. "type": "tidelift"
  6241. }
  6242. ],
  6243. "time": "2025-06-27T19:55:54+00:00"
  6244. },
  6245. {
  6246. "name": "symfony/mime",
  6247. "version": "v7.3.0",
  6248. "source": {
  6249. "type": "git",
  6250. "url": "https://github.com/symfony/mime.git",
  6251. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  6252. },
  6253. "dist": {
  6254. "type": "zip",
  6255. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  6256. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  6257. "shasum": ""
  6258. },
  6259. "require": {
  6260. "php": ">=8.2",
  6261. "symfony/polyfill-intl-idn": "^1.10",
  6262. "symfony/polyfill-mbstring": "^1.0"
  6263. },
  6264. "conflict": {
  6265. "egulias/email-validator": "~3.0.0",
  6266. "phpdocumentor/reflection-docblock": "<3.2.2",
  6267. "phpdocumentor/type-resolver": "<1.4.0",
  6268. "symfony/mailer": "<6.4",
  6269. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6270. },
  6271. "require-dev": {
  6272. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6273. "league/html-to-markdown": "^5.0",
  6274. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6275. "symfony/dependency-injection": "^6.4|^7.0",
  6276. "symfony/process": "^6.4|^7.0",
  6277. "symfony/property-access": "^6.4|^7.0",
  6278. "symfony/property-info": "^6.4|^7.0",
  6279. "symfony/serializer": "^6.4.3|^7.0.3"
  6280. },
  6281. "type": "library",
  6282. "autoload": {
  6283. "psr-4": {
  6284. "Symfony\\Component\\Mime\\": ""
  6285. },
  6286. "exclude-from-classmap": [
  6287. "/Tests/"
  6288. ]
  6289. },
  6290. "notification-url": "https://packagist.org/downloads/",
  6291. "license": [
  6292. "MIT"
  6293. ],
  6294. "authors": [
  6295. {
  6296. "name": "Fabien Potencier",
  6297. "email": "fabien@symfony.com"
  6298. },
  6299. {
  6300. "name": "Symfony Community",
  6301. "homepage": "https://symfony.com/contributors"
  6302. }
  6303. ],
  6304. "description": "Allows manipulating MIME messages",
  6305. "homepage": "https://symfony.com",
  6306. "keywords": [
  6307. "mime",
  6308. "mime-type"
  6309. ],
  6310. "support": {
  6311. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  6312. },
  6313. "funding": [
  6314. {
  6315. "url": "https://symfony.com/sponsor",
  6316. "type": "custom"
  6317. },
  6318. {
  6319. "url": "https://github.com/fabpot",
  6320. "type": "github"
  6321. },
  6322. {
  6323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6324. "type": "tidelift"
  6325. }
  6326. ],
  6327. "time": "2025-02-19T08:51:26+00:00"
  6328. },
  6329. {
  6330. "name": "symfony/monolog-bridge",
  6331. "version": "v7.3.0",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/symfony/monolog-bridge.git",
  6335. "reference": "1b188c8abbbef25b111da878797514b7a8d33990"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1b188c8abbbef25b111da878797514b7a8d33990",
  6340. "reference": "1b188c8abbbef25b111da878797514b7a8d33990",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "monolog/monolog": "^3",
  6345. "php": ">=8.2",
  6346. "symfony/http-kernel": "^6.4|^7.0",
  6347. "symfony/service-contracts": "^2.5|^3"
  6348. },
  6349. "conflict": {
  6350. "symfony/console": "<6.4",
  6351. "symfony/http-foundation": "<6.4",
  6352. "symfony/security-core": "<6.4"
  6353. },
  6354. "require-dev": {
  6355. "symfony/console": "^6.4|^7.0",
  6356. "symfony/http-client": "^6.4|^7.0",
  6357. "symfony/mailer": "^6.4|^7.0",
  6358. "symfony/messenger": "^6.4|^7.0",
  6359. "symfony/mime": "^6.4|^7.0",
  6360. "symfony/security-core": "^6.4|^7.0",
  6361. "symfony/var-dumper": "^6.4|^7.0"
  6362. },
  6363. "type": "symfony-bridge",
  6364. "autoload": {
  6365. "psr-4": {
  6366. "Symfony\\Bridge\\Monolog\\": ""
  6367. },
  6368. "exclude-from-classmap": [
  6369. "/Tests/"
  6370. ]
  6371. },
  6372. "notification-url": "https://packagist.org/downloads/",
  6373. "license": [
  6374. "MIT"
  6375. ],
  6376. "authors": [
  6377. {
  6378. "name": "Fabien Potencier",
  6379. "email": "fabien@symfony.com"
  6380. },
  6381. {
  6382. "name": "Symfony Community",
  6383. "homepage": "https://symfony.com/contributors"
  6384. }
  6385. ],
  6386. "description": "Provides integration for Monolog with various Symfony components",
  6387. "homepage": "https://symfony.com",
  6388. "support": {
  6389. "source": "https://github.com/symfony/monolog-bridge/tree/v7.3.0"
  6390. },
  6391. "funding": [
  6392. {
  6393. "url": "https://symfony.com/sponsor",
  6394. "type": "custom"
  6395. },
  6396. {
  6397. "url": "https://github.com/fabpot",
  6398. "type": "github"
  6399. },
  6400. {
  6401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6402. "type": "tidelift"
  6403. }
  6404. ],
  6405. "time": "2025-03-21T12:17:46+00:00"
  6406. },
  6407. {
  6408. "name": "symfony/monolog-bundle",
  6409. "version": "v3.10.0",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/symfony/monolog-bundle.git",
  6413. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  6418. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  6419. "shasum": ""
  6420. },
  6421. "require": {
  6422. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  6423. "php": ">=7.2.5",
  6424. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  6425. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  6426. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  6427. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  6428. },
  6429. "require-dev": {
  6430. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  6431. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  6432. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  6433. },
  6434. "type": "symfony-bundle",
  6435. "extra": {
  6436. "branch-alias": {
  6437. "dev-master": "3.x-dev"
  6438. }
  6439. },
  6440. "autoload": {
  6441. "psr-4": {
  6442. "Symfony\\Bundle\\MonologBundle\\": ""
  6443. },
  6444. "exclude-from-classmap": [
  6445. "/Tests/"
  6446. ]
  6447. },
  6448. "notification-url": "https://packagist.org/downloads/",
  6449. "license": [
  6450. "MIT"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "Fabien Potencier",
  6455. "email": "fabien@symfony.com"
  6456. },
  6457. {
  6458. "name": "Symfony Community",
  6459. "homepage": "https://symfony.com/contributors"
  6460. }
  6461. ],
  6462. "description": "Symfony MonologBundle",
  6463. "homepage": "https://symfony.com",
  6464. "keywords": [
  6465. "log",
  6466. "logging"
  6467. ],
  6468. "support": {
  6469. "issues": "https://github.com/symfony/monolog-bundle/issues",
  6470. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  6471. },
  6472. "funding": [
  6473. {
  6474. "url": "https://symfony.com/sponsor",
  6475. "type": "custom"
  6476. },
  6477. {
  6478. "url": "https://github.com/fabpot",
  6479. "type": "github"
  6480. },
  6481. {
  6482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6483. "type": "tidelift"
  6484. }
  6485. ],
  6486. "time": "2023-11-06T17:08:13+00:00"
  6487. },
  6488. {
  6489. "name": "symfony/notifier",
  6490. "version": "v7.3.0",
  6491. "source": {
  6492. "type": "git",
  6493. "url": "https://github.com/symfony/notifier.git",
  6494. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e"
  6495. },
  6496. "dist": {
  6497. "type": "zip",
  6498. "url": "https://api.github.com/repos/symfony/notifier/zipball/9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  6499. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  6500. "shasum": ""
  6501. },
  6502. "require": {
  6503. "php": ">=8.2",
  6504. "psr/log": "^1|^2|^3"
  6505. },
  6506. "conflict": {
  6507. "symfony/event-dispatcher": "<6.4",
  6508. "symfony/event-dispatcher-contracts": "<2.5",
  6509. "symfony/http-client-contracts": "<2.5",
  6510. "symfony/http-kernel": "<6.4"
  6511. },
  6512. "require-dev": {
  6513. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6514. "symfony/http-client-contracts": "^2.5|^3",
  6515. "symfony/http-foundation": "^6.4|^7.0",
  6516. "symfony/messenger": "^6.4|^7.0"
  6517. },
  6518. "type": "library",
  6519. "autoload": {
  6520. "psr-4": {
  6521. "Symfony\\Component\\Notifier\\": ""
  6522. },
  6523. "exclude-from-classmap": [
  6524. "/Tests/"
  6525. ]
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Fabien Potencier",
  6534. "email": "fabien@symfony.com"
  6535. },
  6536. {
  6537. "name": "Symfony Community",
  6538. "homepage": "https://symfony.com/contributors"
  6539. }
  6540. ],
  6541. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  6542. "homepage": "https://symfony.com",
  6543. "keywords": [
  6544. "notification",
  6545. "notifier"
  6546. ],
  6547. "support": {
  6548. "source": "https://github.com/symfony/notifier/tree/v7.3.0"
  6549. },
  6550. "funding": [
  6551. {
  6552. "url": "https://symfony.com/sponsor",
  6553. "type": "custom"
  6554. },
  6555. {
  6556. "url": "https://github.com/fabpot",
  6557. "type": "github"
  6558. },
  6559. {
  6560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6561. "type": "tidelift"
  6562. }
  6563. ],
  6564. "time": "2025-05-01T12:12:53+00:00"
  6565. },
  6566. {
  6567. "name": "symfony/options-resolver",
  6568. "version": "v7.3.0",
  6569. "source": {
  6570. "type": "git",
  6571. "url": "https://github.com/symfony/options-resolver.git",
  6572. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
  6573. },
  6574. "dist": {
  6575. "type": "zip",
  6576. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
  6577. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
  6578. "shasum": ""
  6579. },
  6580. "require": {
  6581. "php": ">=8.2",
  6582. "symfony/deprecation-contracts": "^2.5|^3"
  6583. },
  6584. "type": "library",
  6585. "autoload": {
  6586. "psr-4": {
  6587. "Symfony\\Component\\OptionsResolver\\": ""
  6588. },
  6589. "exclude-from-classmap": [
  6590. "/Tests/"
  6591. ]
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "MIT"
  6596. ],
  6597. "authors": [
  6598. {
  6599. "name": "Fabien Potencier",
  6600. "email": "fabien@symfony.com"
  6601. },
  6602. {
  6603. "name": "Symfony Community",
  6604. "homepage": "https://symfony.com/contributors"
  6605. }
  6606. ],
  6607. "description": "Provides an improved replacement for the array_replace PHP function",
  6608. "homepage": "https://symfony.com",
  6609. "keywords": [
  6610. "config",
  6611. "configuration",
  6612. "options"
  6613. ],
  6614. "support": {
  6615. "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
  6616. },
  6617. "funding": [
  6618. {
  6619. "url": "https://symfony.com/sponsor",
  6620. "type": "custom"
  6621. },
  6622. {
  6623. "url": "https://github.com/fabpot",
  6624. "type": "github"
  6625. },
  6626. {
  6627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6628. "type": "tidelift"
  6629. }
  6630. ],
  6631. "time": "2025-04-04T13:12:05+00:00"
  6632. },
  6633. {
  6634. "name": "symfony/password-hasher",
  6635. "version": "v7.3.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/symfony/password-hasher.git",
  6639. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  6644. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=8.2"
  6649. },
  6650. "conflict": {
  6651. "symfony/security-core": "<6.4"
  6652. },
  6653. "require-dev": {
  6654. "symfony/console": "^6.4|^7.0",
  6655. "symfony/security-core": "^6.4|^7.0"
  6656. },
  6657. "type": "library",
  6658. "autoload": {
  6659. "psr-4": {
  6660. "Symfony\\Component\\PasswordHasher\\": ""
  6661. },
  6662. "exclude-from-classmap": [
  6663. "/Tests/"
  6664. ]
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "license": [
  6668. "MIT"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Robin Chalas",
  6673. "email": "robin.chalas@gmail.com"
  6674. },
  6675. {
  6676. "name": "Symfony Community",
  6677. "homepage": "https://symfony.com/contributors"
  6678. }
  6679. ],
  6680. "description": "Provides password hashing utilities",
  6681. "homepage": "https://symfony.com",
  6682. "keywords": [
  6683. "hashing",
  6684. "password"
  6685. ],
  6686. "support": {
  6687. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  6688. },
  6689. "funding": [
  6690. {
  6691. "url": "https://symfony.com/sponsor",
  6692. "type": "custom"
  6693. },
  6694. {
  6695. "url": "https://github.com/fabpot",
  6696. "type": "github"
  6697. },
  6698. {
  6699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6700. "type": "tidelift"
  6701. }
  6702. ],
  6703. "time": "2025-02-04T08:22:58+00:00"
  6704. },
  6705. {
  6706. "name": "symfony/polyfill-intl-grapheme",
  6707. "version": "v1.32.0",
  6708. "source": {
  6709. "type": "git",
  6710. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6711. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6712. },
  6713. "dist": {
  6714. "type": "zip",
  6715. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6716. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6717. "shasum": ""
  6718. },
  6719. "require": {
  6720. "php": ">=7.2"
  6721. },
  6722. "suggest": {
  6723. "ext-intl": "For best performance"
  6724. },
  6725. "type": "library",
  6726. "extra": {
  6727. "thanks": {
  6728. "url": "https://github.com/symfony/polyfill",
  6729. "name": "symfony/polyfill"
  6730. }
  6731. },
  6732. "autoload": {
  6733. "files": [
  6734. "bootstrap.php"
  6735. ],
  6736. "psr-4": {
  6737. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6738. }
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "MIT"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Nicolas Grekas",
  6747. "email": "p@tchwork.com"
  6748. },
  6749. {
  6750. "name": "Symfony Community",
  6751. "homepage": "https://symfony.com/contributors"
  6752. }
  6753. ],
  6754. "description": "Symfony polyfill for intl's grapheme_* functions",
  6755. "homepage": "https://symfony.com",
  6756. "keywords": [
  6757. "compatibility",
  6758. "grapheme",
  6759. "intl",
  6760. "polyfill",
  6761. "portable",
  6762. "shim"
  6763. ],
  6764. "support": {
  6765. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6766. },
  6767. "funding": [
  6768. {
  6769. "url": "https://symfony.com/sponsor",
  6770. "type": "custom"
  6771. },
  6772. {
  6773. "url": "https://github.com/fabpot",
  6774. "type": "github"
  6775. },
  6776. {
  6777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6778. "type": "tidelift"
  6779. }
  6780. ],
  6781. "time": "2024-09-09T11:45:10+00:00"
  6782. },
  6783. {
  6784. "name": "symfony/polyfill-intl-icu",
  6785. "version": "v1.32.0",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6789. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  6794. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  6795. "shasum": ""
  6796. },
  6797. "require": {
  6798. "php": ">=7.2"
  6799. },
  6800. "suggest": {
  6801. "ext-intl": "For best performance and support of other locales than \"en\""
  6802. },
  6803. "type": "library",
  6804. "extra": {
  6805. "thanks": {
  6806. "url": "https://github.com/symfony/polyfill",
  6807. "name": "symfony/polyfill"
  6808. }
  6809. },
  6810. "autoload": {
  6811. "files": [
  6812. "bootstrap.php"
  6813. ],
  6814. "psr-4": {
  6815. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6816. },
  6817. "classmap": [
  6818. "Resources/stubs"
  6819. ],
  6820. "exclude-from-classmap": [
  6821. "/Tests/"
  6822. ]
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "MIT"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "Nicolas Grekas",
  6831. "email": "p@tchwork.com"
  6832. },
  6833. {
  6834. "name": "Symfony Community",
  6835. "homepage": "https://symfony.com/contributors"
  6836. }
  6837. ],
  6838. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6839. "homepage": "https://symfony.com",
  6840. "keywords": [
  6841. "compatibility",
  6842. "icu",
  6843. "intl",
  6844. "polyfill",
  6845. "portable",
  6846. "shim"
  6847. ],
  6848. "support": {
  6849. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  6850. },
  6851. "funding": [
  6852. {
  6853. "url": "https://symfony.com/sponsor",
  6854. "type": "custom"
  6855. },
  6856. {
  6857. "url": "https://github.com/fabpot",
  6858. "type": "github"
  6859. },
  6860. {
  6861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6862. "type": "tidelift"
  6863. }
  6864. ],
  6865. "time": "2024-12-21T18:38:29+00:00"
  6866. },
  6867. {
  6868. "name": "symfony/polyfill-intl-idn",
  6869. "version": "v1.32.0",
  6870. "source": {
  6871. "type": "git",
  6872. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6873. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6874. },
  6875. "dist": {
  6876. "type": "zip",
  6877. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6878. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6879. "shasum": ""
  6880. },
  6881. "require": {
  6882. "php": ">=7.2",
  6883. "symfony/polyfill-intl-normalizer": "^1.10"
  6884. },
  6885. "suggest": {
  6886. "ext-intl": "For best performance"
  6887. },
  6888. "type": "library",
  6889. "extra": {
  6890. "thanks": {
  6891. "url": "https://github.com/symfony/polyfill",
  6892. "name": "symfony/polyfill"
  6893. }
  6894. },
  6895. "autoload": {
  6896. "files": [
  6897. "bootstrap.php"
  6898. ],
  6899. "psr-4": {
  6900. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6901. }
  6902. },
  6903. "notification-url": "https://packagist.org/downloads/",
  6904. "license": [
  6905. "MIT"
  6906. ],
  6907. "authors": [
  6908. {
  6909. "name": "Laurent Bassin",
  6910. "email": "laurent@bassin.info"
  6911. },
  6912. {
  6913. "name": "Trevor Rowbotham",
  6914. "email": "trevor.rowbotham@pm.me"
  6915. },
  6916. {
  6917. "name": "Symfony Community",
  6918. "homepage": "https://symfony.com/contributors"
  6919. }
  6920. ],
  6921. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6922. "homepage": "https://symfony.com",
  6923. "keywords": [
  6924. "compatibility",
  6925. "idn",
  6926. "intl",
  6927. "polyfill",
  6928. "portable",
  6929. "shim"
  6930. ],
  6931. "support": {
  6932. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://symfony.com/sponsor",
  6937. "type": "custom"
  6938. },
  6939. {
  6940. "url": "https://github.com/fabpot",
  6941. "type": "github"
  6942. },
  6943. {
  6944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6945. "type": "tidelift"
  6946. }
  6947. ],
  6948. "time": "2024-09-10T14:38:51+00:00"
  6949. },
  6950. {
  6951. "name": "symfony/polyfill-intl-normalizer",
  6952. "version": "v1.32.0",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6956. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6961. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "php": ">=7.2"
  6966. },
  6967. "suggest": {
  6968. "ext-intl": "For best performance"
  6969. },
  6970. "type": "library",
  6971. "extra": {
  6972. "thanks": {
  6973. "url": "https://github.com/symfony/polyfill",
  6974. "name": "symfony/polyfill"
  6975. }
  6976. },
  6977. "autoload": {
  6978. "files": [
  6979. "bootstrap.php"
  6980. ],
  6981. "psr-4": {
  6982. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6983. },
  6984. "classmap": [
  6985. "Resources/stubs"
  6986. ]
  6987. },
  6988. "notification-url": "https://packagist.org/downloads/",
  6989. "license": [
  6990. "MIT"
  6991. ],
  6992. "authors": [
  6993. {
  6994. "name": "Nicolas Grekas",
  6995. "email": "p@tchwork.com"
  6996. },
  6997. {
  6998. "name": "Symfony Community",
  6999. "homepage": "https://symfony.com/contributors"
  7000. }
  7001. ],
  7002. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7003. "homepage": "https://symfony.com",
  7004. "keywords": [
  7005. "compatibility",
  7006. "intl",
  7007. "normalizer",
  7008. "polyfill",
  7009. "portable",
  7010. "shim"
  7011. ],
  7012. "support": {
  7013. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  7014. },
  7015. "funding": [
  7016. {
  7017. "url": "https://symfony.com/sponsor",
  7018. "type": "custom"
  7019. },
  7020. {
  7021. "url": "https://github.com/fabpot",
  7022. "type": "github"
  7023. },
  7024. {
  7025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7026. "type": "tidelift"
  7027. }
  7028. ],
  7029. "time": "2024-09-09T11:45:10+00:00"
  7030. },
  7031. {
  7032. "name": "symfony/polyfill-mbstring",
  7033. "version": "v1.32.0",
  7034. "source": {
  7035. "type": "git",
  7036. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7037. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  7038. },
  7039. "dist": {
  7040. "type": "zip",
  7041. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7042. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7043. "shasum": ""
  7044. },
  7045. "require": {
  7046. "ext-iconv": "*",
  7047. "php": ">=7.2"
  7048. },
  7049. "provide": {
  7050. "ext-mbstring": "*"
  7051. },
  7052. "suggest": {
  7053. "ext-mbstring": "For best performance"
  7054. },
  7055. "type": "library",
  7056. "extra": {
  7057. "thanks": {
  7058. "url": "https://github.com/symfony/polyfill",
  7059. "name": "symfony/polyfill"
  7060. }
  7061. },
  7062. "autoload": {
  7063. "files": [
  7064. "bootstrap.php"
  7065. ],
  7066. "psr-4": {
  7067. "Symfony\\Polyfill\\Mbstring\\": ""
  7068. }
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "MIT"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Nicolas Grekas",
  7077. "email": "p@tchwork.com"
  7078. },
  7079. {
  7080. "name": "Symfony Community",
  7081. "homepage": "https://symfony.com/contributors"
  7082. }
  7083. ],
  7084. "description": "Symfony polyfill for the Mbstring extension",
  7085. "homepage": "https://symfony.com",
  7086. "keywords": [
  7087. "compatibility",
  7088. "mbstring",
  7089. "polyfill",
  7090. "portable",
  7091. "shim"
  7092. ],
  7093. "support": {
  7094. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2024-12-23T08:48:59+00:00"
  7111. },
  7112. {
  7113. "name": "symfony/polyfill-php83",
  7114. "version": "v1.32.0",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/symfony/polyfill-php83.git",
  7118. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  7123. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": ">=7.2"
  7128. },
  7129. "type": "library",
  7130. "extra": {
  7131. "thanks": {
  7132. "url": "https://github.com/symfony/polyfill",
  7133. "name": "symfony/polyfill"
  7134. }
  7135. },
  7136. "autoload": {
  7137. "files": [
  7138. "bootstrap.php"
  7139. ],
  7140. "psr-4": {
  7141. "Symfony\\Polyfill\\Php83\\": ""
  7142. },
  7143. "classmap": [
  7144. "Resources/stubs"
  7145. ]
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "MIT"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Nicolas Grekas",
  7154. "email": "p@tchwork.com"
  7155. },
  7156. {
  7157. "name": "Symfony Community",
  7158. "homepage": "https://symfony.com/contributors"
  7159. }
  7160. ],
  7161. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7162. "homepage": "https://symfony.com",
  7163. "keywords": [
  7164. "compatibility",
  7165. "polyfill",
  7166. "portable",
  7167. "shim"
  7168. ],
  7169. "support": {
  7170. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  7171. },
  7172. "funding": [
  7173. {
  7174. "url": "https://symfony.com/sponsor",
  7175. "type": "custom"
  7176. },
  7177. {
  7178. "url": "https://github.com/fabpot",
  7179. "type": "github"
  7180. },
  7181. {
  7182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7183. "type": "tidelift"
  7184. }
  7185. ],
  7186. "time": "2024-09-09T11:45:10+00:00"
  7187. },
  7188. {
  7189. "name": "symfony/polyfill-php84",
  7190. "version": "v1.32.0",
  7191. "source": {
  7192. "type": "git",
  7193. "url": "https://github.com/symfony/polyfill-php84.git",
  7194. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  7195. },
  7196. "dist": {
  7197. "type": "zip",
  7198. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  7199. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  7200. "shasum": ""
  7201. },
  7202. "require": {
  7203. "php": ">=7.2"
  7204. },
  7205. "type": "library",
  7206. "extra": {
  7207. "thanks": {
  7208. "url": "https://github.com/symfony/polyfill",
  7209. "name": "symfony/polyfill"
  7210. }
  7211. },
  7212. "autoload": {
  7213. "files": [
  7214. "bootstrap.php"
  7215. ],
  7216. "psr-4": {
  7217. "Symfony\\Polyfill\\Php84\\": ""
  7218. },
  7219. "classmap": [
  7220. "Resources/stubs"
  7221. ]
  7222. },
  7223. "notification-url": "https://packagist.org/downloads/",
  7224. "license": [
  7225. "MIT"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "Nicolas Grekas",
  7230. "email": "p@tchwork.com"
  7231. },
  7232. {
  7233. "name": "Symfony Community",
  7234. "homepage": "https://symfony.com/contributors"
  7235. }
  7236. ],
  7237. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  7238. "homepage": "https://symfony.com",
  7239. "keywords": [
  7240. "compatibility",
  7241. "polyfill",
  7242. "portable",
  7243. "shim"
  7244. ],
  7245. "support": {
  7246. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  7247. },
  7248. "funding": [
  7249. {
  7250. "url": "https://symfony.com/sponsor",
  7251. "type": "custom"
  7252. },
  7253. {
  7254. "url": "https://github.com/fabpot",
  7255. "type": "github"
  7256. },
  7257. {
  7258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7259. "type": "tidelift"
  7260. }
  7261. ],
  7262. "time": "2025-02-20T12:04:08+00:00"
  7263. },
  7264. {
  7265. "name": "symfony/process",
  7266. "version": "v7.3.0",
  7267. "source": {
  7268. "type": "git",
  7269. "url": "https://github.com/symfony/process.git",
  7270. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  7271. },
  7272. "dist": {
  7273. "type": "zip",
  7274. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  7275. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  7276. "shasum": ""
  7277. },
  7278. "require": {
  7279. "php": ">=8.2"
  7280. },
  7281. "type": "library",
  7282. "autoload": {
  7283. "psr-4": {
  7284. "Symfony\\Component\\Process\\": ""
  7285. },
  7286. "exclude-from-classmap": [
  7287. "/Tests/"
  7288. ]
  7289. },
  7290. "notification-url": "https://packagist.org/downloads/",
  7291. "license": [
  7292. "MIT"
  7293. ],
  7294. "authors": [
  7295. {
  7296. "name": "Fabien Potencier",
  7297. "email": "fabien@symfony.com"
  7298. },
  7299. {
  7300. "name": "Symfony Community",
  7301. "homepage": "https://symfony.com/contributors"
  7302. }
  7303. ],
  7304. "description": "Executes commands in sub-processes",
  7305. "homepage": "https://symfony.com",
  7306. "support": {
  7307. "source": "https://github.com/symfony/process/tree/v7.3.0"
  7308. },
  7309. "funding": [
  7310. {
  7311. "url": "https://symfony.com/sponsor",
  7312. "type": "custom"
  7313. },
  7314. {
  7315. "url": "https://github.com/fabpot",
  7316. "type": "github"
  7317. },
  7318. {
  7319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7320. "type": "tidelift"
  7321. }
  7322. ],
  7323. "time": "2025-04-17T09:11:12+00:00"
  7324. },
  7325. {
  7326. "name": "symfony/property-access",
  7327. "version": "v7.3.1",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/symfony/property-access.git",
  7331. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/symfony/property-access/zipball/518d15c8cca726ebe665dcd7154074584cf862e8",
  7336. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8",
  7337. "shasum": ""
  7338. },
  7339. "require": {
  7340. "php": ">=8.2",
  7341. "symfony/property-info": "^6.4|^7.0"
  7342. },
  7343. "require-dev": {
  7344. "symfony/cache": "^6.4|^7.0"
  7345. },
  7346. "type": "library",
  7347. "autoload": {
  7348. "psr-4": {
  7349. "Symfony\\Component\\PropertyAccess\\": ""
  7350. },
  7351. "exclude-from-classmap": [
  7352. "/Tests/"
  7353. ]
  7354. },
  7355. "notification-url": "https://packagist.org/downloads/",
  7356. "license": [
  7357. "MIT"
  7358. ],
  7359. "authors": [
  7360. {
  7361. "name": "Fabien Potencier",
  7362. "email": "fabien@symfony.com"
  7363. },
  7364. {
  7365. "name": "Symfony Community",
  7366. "homepage": "https://symfony.com/contributors"
  7367. }
  7368. ],
  7369. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  7370. "homepage": "https://symfony.com",
  7371. "keywords": [
  7372. "access",
  7373. "array",
  7374. "extraction",
  7375. "index",
  7376. "injection",
  7377. "object",
  7378. "property",
  7379. "property-path",
  7380. "reflection"
  7381. ],
  7382. "support": {
  7383. "source": "https://github.com/symfony/property-access/tree/v7.3.1"
  7384. },
  7385. "funding": [
  7386. {
  7387. "url": "https://symfony.com/sponsor",
  7388. "type": "custom"
  7389. },
  7390. {
  7391. "url": "https://github.com/fabpot",
  7392. "type": "github"
  7393. },
  7394. {
  7395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7396. "type": "tidelift"
  7397. }
  7398. ],
  7399. "time": "2025-06-24T04:04:43+00:00"
  7400. },
  7401. {
  7402. "name": "symfony/property-info",
  7403. "version": "v7.3.1",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/symfony/property-info.git",
  7407. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  7412. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "php": ">=8.2",
  7417. "symfony/deprecation-contracts": "^2.5|^3",
  7418. "symfony/string": "^6.4|^7.0",
  7419. "symfony/type-info": "~7.2.8|^7.3.1"
  7420. },
  7421. "conflict": {
  7422. "phpdocumentor/reflection-docblock": "<5.2",
  7423. "phpdocumentor/type-resolver": "<1.5.1",
  7424. "symfony/cache": "<6.4",
  7425. "symfony/dependency-injection": "<6.4",
  7426. "symfony/serializer": "<6.4"
  7427. },
  7428. "require-dev": {
  7429. "phpdocumentor/reflection-docblock": "^5.2",
  7430. "phpstan/phpdoc-parser": "^1.0|^2.0",
  7431. "symfony/cache": "^6.4|^7.0",
  7432. "symfony/dependency-injection": "^6.4|^7.0",
  7433. "symfony/serializer": "^6.4|^7.0"
  7434. },
  7435. "type": "library",
  7436. "autoload": {
  7437. "psr-4": {
  7438. "Symfony\\Component\\PropertyInfo\\": ""
  7439. },
  7440. "exclude-from-classmap": [
  7441. "/Tests/"
  7442. ]
  7443. },
  7444. "notification-url": "https://packagist.org/downloads/",
  7445. "license": [
  7446. "MIT"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "Kévin Dunglas",
  7451. "email": "dunglas@gmail.com"
  7452. },
  7453. {
  7454. "name": "Symfony Community",
  7455. "homepage": "https://symfony.com/contributors"
  7456. }
  7457. ],
  7458. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7459. "homepage": "https://symfony.com",
  7460. "keywords": [
  7461. "doctrine",
  7462. "phpdoc",
  7463. "property",
  7464. "symfony",
  7465. "type",
  7466. "validator"
  7467. ],
  7468. "support": {
  7469. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  7470. },
  7471. "funding": [
  7472. {
  7473. "url": "https://symfony.com/sponsor",
  7474. "type": "custom"
  7475. },
  7476. {
  7477. "url": "https://github.com/fabpot",
  7478. "type": "github"
  7479. },
  7480. {
  7481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7482. "type": "tidelift"
  7483. }
  7484. ],
  7485. "time": "2025-06-27T19:55:54+00:00"
  7486. },
  7487. {
  7488. "name": "symfony/routing",
  7489. "version": "v7.3.0",
  7490. "source": {
  7491. "type": "git",
  7492. "url": "https://github.com/symfony/routing.git",
  7493. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  7494. },
  7495. "dist": {
  7496. "type": "zip",
  7497. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  7498. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  7499. "shasum": ""
  7500. },
  7501. "require": {
  7502. "php": ">=8.2",
  7503. "symfony/deprecation-contracts": "^2.5|^3"
  7504. },
  7505. "conflict": {
  7506. "symfony/config": "<6.4",
  7507. "symfony/dependency-injection": "<6.4",
  7508. "symfony/yaml": "<6.4"
  7509. },
  7510. "require-dev": {
  7511. "psr/log": "^1|^2|^3",
  7512. "symfony/config": "^6.4|^7.0",
  7513. "symfony/dependency-injection": "^6.4|^7.0",
  7514. "symfony/expression-language": "^6.4|^7.0",
  7515. "symfony/http-foundation": "^6.4|^7.0",
  7516. "symfony/yaml": "^6.4|^7.0"
  7517. },
  7518. "type": "library",
  7519. "autoload": {
  7520. "psr-4": {
  7521. "Symfony\\Component\\Routing\\": ""
  7522. },
  7523. "exclude-from-classmap": [
  7524. "/Tests/"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Fabien Potencier",
  7534. "email": "fabien@symfony.com"
  7535. },
  7536. {
  7537. "name": "Symfony Community",
  7538. "homepage": "https://symfony.com/contributors"
  7539. }
  7540. ],
  7541. "description": "Maps an HTTP request to a set of configuration variables",
  7542. "homepage": "https://symfony.com",
  7543. "keywords": [
  7544. "router",
  7545. "routing",
  7546. "uri",
  7547. "url"
  7548. ],
  7549. "support": {
  7550. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  7551. },
  7552. "funding": [
  7553. {
  7554. "url": "https://symfony.com/sponsor",
  7555. "type": "custom"
  7556. },
  7557. {
  7558. "url": "https://github.com/fabpot",
  7559. "type": "github"
  7560. },
  7561. {
  7562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7563. "type": "tidelift"
  7564. }
  7565. ],
  7566. "time": "2025-05-24T20:43:28+00:00"
  7567. },
  7568. {
  7569. "name": "symfony/runtime",
  7570. "version": "v7.3.1",
  7571. "source": {
  7572. "type": "git",
  7573. "url": "https://github.com/symfony/runtime.git",
  7574. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9"
  7575. },
  7576. "dist": {
  7577. "type": "zip",
  7578. "url": "https://api.github.com/repos/symfony/runtime/zipball/9516056d432f8acdac9458eb41b80097da7a05c9",
  7579. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9",
  7580. "shasum": ""
  7581. },
  7582. "require": {
  7583. "composer-plugin-api": "^1.0|^2.0",
  7584. "php": ">=8.2"
  7585. },
  7586. "conflict": {
  7587. "symfony/dotenv": "<6.4"
  7588. },
  7589. "require-dev": {
  7590. "composer/composer": "^2.6",
  7591. "symfony/console": "^6.4|^7.0",
  7592. "symfony/dotenv": "^6.4|^7.0",
  7593. "symfony/http-foundation": "^6.4|^7.0",
  7594. "symfony/http-kernel": "^6.4|^7.0"
  7595. },
  7596. "type": "composer-plugin",
  7597. "extra": {
  7598. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  7599. },
  7600. "autoload": {
  7601. "psr-4": {
  7602. "Symfony\\Component\\Runtime\\": "",
  7603. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  7604. },
  7605. "exclude-from-classmap": [
  7606. "/Tests/"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Nicolas Grekas",
  7616. "email": "p@tchwork.com"
  7617. },
  7618. {
  7619. "name": "Symfony Community",
  7620. "homepage": "https://symfony.com/contributors"
  7621. }
  7622. ],
  7623. "description": "Enables decoupling PHP applications from global state",
  7624. "homepage": "https://symfony.com",
  7625. "keywords": [
  7626. "runtime"
  7627. ],
  7628. "support": {
  7629. "source": "https://github.com/symfony/runtime/tree/v7.3.1"
  7630. },
  7631. "funding": [
  7632. {
  7633. "url": "https://symfony.com/sponsor",
  7634. "type": "custom"
  7635. },
  7636. {
  7637. "url": "https://github.com/fabpot",
  7638. "type": "github"
  7639. },
  7640. {
  7641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7642. "type": "tidelift"
  7643. }
  7644. ],
  7645. "time": "2025-06-13T07:48:40+00:00"
  7646. },
  7647. {
  7648. "name": "symfony/security-bundle",
  7649. "version": "v7.3.1",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://github.com/symfony/security-bundle.git",
  7653. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079"
  7654. },
  7655. "dist": {
  7656. "type": "zip",
  7657. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/428a281fd66c8358adc2259c8578e6d81fbb7079",
  7658. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079",
  7659. "shasum": ""
  7660. },
  7661. "require": {
  7662. "composer-runtime-api": ">=2.1",
  7663. "ext-xml": "*",
  7664. "php": ">=8.2",
  7665. "symfony/clock": "^6.4|^7.0",
  7666. "symfony/config": "^7.3",
  7667. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  7668. "symfony/event-dispatcher": "^6.4|^7.0",
  7669. "symfony/http-foundation": "^6.4|^7.0",
  7670. "symfony/http-kernel": "^6.4|^7.0",
  7671. "symfony/password-hasher": "^6.4|^7.0",
  7672. "symfony/security-core": "^7.3",
  7673. "symfony/security-csrf": "^6.4|^7.0",
  7674. "symfony/security-http": "^7.3",
  7675. "symfony/service-contracts": "^2.5|^3"
  7676. },
  7677. "conflict": {
  7678. "symfony/browser-kit": "<6.4",
  7679. "symfony/console": "<6.4",
  7680. "symfony/framework-bundle": "<6.4",
  7681. "symfony/http-client": "<6.4",
  7682. "symfony/ldap": "<6.4",
  7683. "symfony/serializer": "<6.4",
  7684. "symfony/twig-bundle": "<6.4",
  7685. "symfony/validator": "<6.4"
  7686. },
  7687. "require-dev": {
  7688. "symfony/asset": "^6.4|^7.0",
  7689. "symfony/browser-kit": "^6.4|^7.0",
  7690. "symfony/console": "^6.4|^7.0",
  7691. "symfony/css-selector": "^6.4|^7.0",
  7692. "symfony/dom-crawler": "^6.4|^7.0",
  7693. "symfony/expression-language": "^6.4|^7.0",
  7694. "symfony/form": "^6.4|^7.0",
  7695. "symfony/framework-bundle": "^6.4|^7.0",
  7696. "symfony/http-client": "^6.4|^7.0",
  7697. "symfony/ldap": "^6.4|^7.0",
  7698. "symfony/process": "^6.4|^7.0",
  7699. "symfony/rate-limiter": "^6.4|^7.0",
  7700. "symfony/serializer": "^6.4|^7.0",
  7701. "symfony/translation": "^6.4|^7.0",
  7702. "symfony/twig-bridge": "^6.4|^7.0",
  7703. "symfony/twig-bundle": "^6.4|^7.0",
  7704. "symfony/validator": "^6.4|^7.0",
  7705. "symfony/yaml": "^6.4|^7.0",
  7706. "twig/twig": "^3.12",
  7707. "web-token/jwt-library": "^3.3.2|^4.0"
  7708. },
  7709. "type": "symfony-bundle",
  7710. "autoload": {
  7711. "psr-4": {
  7712. "Symfony\\Bundle\\SecurityBundle\\": ""
  7713. },
  7714. "exclude-from-classmap": [
  7715. "/Tests/"
  7716. ]
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "MIT"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Fabien Potencier",
  7725. "email": "fabien@symfony.com"
  7726. },
  7727. {
  7728. "name": "Symfony Community",
  7729. "homepage": "https://symfony.com/contributors"
  7730. }
  7731. ],
  7732. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  7733. "homepage": "https://symfony.com",
  7734. "support": {
  7735. "source": "https://github.com/symfony/security-bundle/tree/v7.3.1"
  7736. },
  7737. "funding": [
  7738. {
  7739. "url": "https://symfony.com/sponsor",
  7740. "type": "custom"
  7741. },
  7742. {
  7743. "url": "https://github.com/fabpot",
  7744. "type": "github"
  7745. },
  7746. {
  7747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7748. "type": "tidelift"
  7749. }
  7750. ],
  7751. "time": "2025-06-24T04:04:43+00:00"
  7752. },
  7753. {
  7754. "name": "symfony/security-core",
  7755. "version": "v7.3.1",
  7756. "source": {
  7757. "type": "git",
  7758. "url": "https://github.com/symfony/security-core.git",
  7759. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba"
  7760. },
  7761. "dist": {
  7762. "type": "zip",
  7763. "url": "https://api.github.com/repos/symfony/security-core/zipball/fafab1003a31e51506e1a0a83e81c072211d81ba",
  7764. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba",
  7765. "shasum": ""
  7766. },
  7767. "require": {
  7768. "php": ">=8.2",
  7769. "symfony/deprecation-contracts": "^2.5|^3",
  7770. "symfony/event-dispatcher-contracts": "^2.5|^3",
  7771. "symfony/password-hasher": "^6.4|^7.0",
  7772. "symfony/service-contracts": "^2.5|^3"
  7773. },
  7774. "conflict": {
  7775. "symfony/dependency-injection": "<6.4",
  7776. "symfony/event-dispatcher": "<6.4",
  7777. "symfony/http-foundation": "<6.4",
  7778. "symfony/ldap": "<6.4",
  7779. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7780. "symfony/validator": "<6.4"
  7781. },
  7782. "require-dev": {
  7783. "psr/cache": "^1.0|^2.0|^3.0",
  7784. "psr/container": "^1.1|^2.0",
  7785. "psr/log": "^1|^2|^3",
  7786. "symfony/cache": "^6.4|^7.0",
  7787. "symfony/dependency-injection": "^6.4|^7.0",
  7788. "symfony/event-dispatcher": "^6.4|^7.0",
  7789. "symfony/expression-language": "^6.4|^7.0",
  7790. "symfony/http-foundation": "^6.4|^7.0",
  7791. "symfony/ldap": "^6.4|^7.0",
  7792. "symfony/string": "^6.4|^7.0",
  7793. "symfony/translation": "^6.4.3|^7.0.3",
  7794. "symfony/validator": "^6.4|^7.0"
  7795. },
  7796. "type": "library",
  7797. "autoload": {
  7798. "psr-4": {
  7799. "Symfony\\Component\\Security\\Core\\": ""
  7800. },
  7801. "exclude-from-classmap": [
  7802. "/Tests/"
  7803. ]
  7804. },
  7805. "notification-url": "https://packagist.org/downloads/",
  7806. "license": [
  7807. "MIT"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Fabien Potencier",
  7812. "email": "fabien@symfony.com"
  7813. },
  7814. {
  7815. "name": "Symfony Community",
  7816. "homepage": "https://symfony.com/contributors"
  7817. }
  7818. ],
  7819. "description": "Symfony Security Component - Core Library",
  7820. "homepage": "https://symfony.com",
  7821. "support": {
  7822. "source": "https://github.com/symfony/security-core/tree/v7.3.1"
  7823. },
  7824. "funding": [
  7825. {
  7826. "url": "https://symfony.com/sponsor",
  7827. "type": "custom"
  7828. },
  7829. {
  7830. "url": "https://github.com/fabpot",
  7831. "type": "github"
  7832. },
  7833. {
  7834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7835. "type": "tidelift"
  7836. }
  7837. ],
  7838. "time": "2025-06-23T07:28:50+00:00"
  7839. },
  7840. {
  7841. "name": "symfony/security-csrf",
  7842. "version": "v7.3.0",
  7843. "source": {
  7844. "type": "git",
  7845. "url": "https://github.com/symfony/security-csrf.git",
  7846. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  7847. },
  7848. "dist": {
  7849. "type": "zip",
  7850. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  7851. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  7852. "shasum": ""
  7853. },
  7854. "require": {
  7855. "php": ">=8.2",
  7856. "symfony/security-core": "^6.4|^7.0"
  7857. },
  7858. "conflict": {
  7859. "symfony/http-foundation": "<6.4"
  7860. },
  7861. "require-dev": {
  7862. "psr/log": "^1|^2|^3",
  7863. "symfony/http-foundation": "^6.4|^7.0",
  7864. "symfony/http-kernel": "^6.4|^7.0"
  7865. },
  7866. "type": "library",
  7867. "autoload": {
  7868. "psr-4": {
  7869. "Symfony\\Component\\Security\\Csrf\\": ""
  7870. },
  7871. "exclude-from-classmap": [
  7872. "/Tests/"
  7873. ]
  7874. },
  7875. "notification-url": "https://packagist.org/downloads/",
  7876. "license": [
  7877. "MIT"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "Fabien Potencier",
  7882. "email": "fabien@symfony.com"
  7883. },
  7884. {
  7885. "name": "Symfony Community",
  7886. "homepage": "https://symfony.com/contributors"
  7887. }
  7888. ],
  7889. "description": "Symfony Security Component - CSRF Library",
  7890. "homepage": "https://symfony.com",
  7891. "support": {
  7892. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  7893. },
  7894. "funding": [
  7895. {
  7896. "url": "https://symfony.com/sponsor",
  7897. "type": "custom"
  7898. },
  7899. {
  7900. "url": "https://github.com/fabpot",
  7901. "type": "github"
  7902. },
  7903. {
  7904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7905. "type": "tidelift"
  7906. }
  7907. ],
  7908. "time": "2025-01-02T18:42:10+00:00"
  7909. },
  7910. {
  7911. "name": "symfony/security-http",
  7912. "version": "v7.3.1",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/symfony/security-http.git",
  7916. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/symfony/security-http/zipball/b7182ed0fd2359297f78ff6d407265168255ea84",
  7921. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84",
  7922. "shasum": ""
  7923. },
  7924. "require": {
  7925. "php": ">=8.2",
  7926. "symfony/deprecation-contracts": "^2.5|^3",
  7927. "symfony/http-foundation": "^6.4|^7.0",
  7928. "symfony/http-kernel": "^6.4|^7.0",
  7929. "symfony/polyfill-mbstring": "~1.0",
  7930. "symfony/property-access": "^6.4|^7.0",
  7931. "symfony/security-core": "^7.3",
  7932. "symfony/service-contracts": "^2.5|^3"
  7933. },
  7934. "conflict": {
  7935. "symfony/clock": "<6.4",
  7936. "symfony/event-dispatcher": "<6.4",
  7937. "symfony/http-client-contracts": "<3.0",
  7938. "symfony/security-bundle": "<6.4",
  7939. "symfony/security-csrf": "<6.4"
  7940. },
  7941. "require-dev": {
  7942. "psr/log": "^1|^2|^3",
  7943. "symfony/cache": "^6.4|^7.0",
  7944. "symfony/clock": "^6.4|^7.0",
  7945. "symfony/expression-language": "^6.4|^7.0",
  7946. "symfony/http-client": "^6.4|^7.0",
  7947. "symfony/http-client-contracts": "^3.0",
  7948. "symfony/rate-limiter": "^6.4|^7.0",
  7949. "symfony/routing": "^6.4|^7.0",
  7950. "symfony/security-csrf": "^6.4|^7.0",
  7951. "symfony/translation": "^6.4|^7.0",
  7952. "web-token/jwt-library": "^3.3.2|^4.0"
  7953. },
  7954. "type": "library",
  7955. "autoload": {
  7956. "psr-4": {
  7957. "Symfony\\Component\\Security\\Http\\": ""
  7958. },
  7959. "exclude-from-classmap": [
  7960. "/Tests/"
  7961. ]
  7962. },
  7963. "notification-url": "https://packagist.org/downloads/",
  7964. "license": [
  7965. "MIT"
  7966. ],
  7967. "authors": [
  7968. {
  7969. "name": "Fabien Potencier",
  7970. "email": "fabien@symfony.com"
  7971. },
  7972. {
  7973. "name": "Symfony Community",
  7974. "homepage": "https://symfony.com/contributors"
  7975. }
  7976. ],
  7977. "description": "Symfony Security Component - HTTP Integration",
  7978. "homepage": "https://symfony.com",
  7979. "support": {
  7980. "source": "https://github.com/symfony/security-http/tree/v7.3.1"
  7981. },
  7982. "funding": [
  7983. {
  7984. "url": "https://symfony.com/sponsor",
  7985. "type": "custom"
  7986. },
  7987. {
  7988. "url": "https://github.com/fabpot",
  7989. "type": "github"
  7990. },
  7991. {
  7992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7993. "type": "tidelift"
  7994. }
  7995. ],
  7996. "time": "2025-06-24T04:04:43+00:00"
  7997. },
  7998. {
  7999. "name": "symfony/serializer",
  8000. "version": "v7.3.1",
  8001. "source": {
  8002. "type": "git",
  8003. "url": "https://github.com/symfony/serializer.git",
  8004. "reference": "feaf837cedbbc8287986602223175d3fd639922d"
  8005. },
  8006. "dist": {
  8007. "type": "zip",
  8008. "url": "https://api.github.com/repos/symfony/serializer/zipball/feaf837cedbbc8287986602223175d3fd639922d",
  8009. "reference": "feaf837cedbbc8287986602223175d3fd639922d",
  8010. "shasum": ""
  8011. },
  8012. "require": {
  8013. "php": ">=8.2",
  8014. "symfony/deprecation-contracts": "^2.5|^3",
  8015. "symfony/polyfill-ctype": "~1.8"
  8016. },
  8017. "conflict": {
  8018. "phpdocumentor/reflection-docblock": "<3.2.2",
  8019. "phpdocumentor/type-resolver": "<1.4.0",
  8020. "symfony/dependency-injection": "<6.4",
  8021. "symfony/property-access": "<6.4",
  8022. "symfony/property-info": "<6.4",
  8023. "symfony/uid": "<6.4",
  8024. "symfony/validator": "<6.4",
  8025. "symfony/yaml": "<6.4"
  8026. },
  8027. "require-dev": {
  8028. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8029. "phpstan/phpdoc-parser": "^1.0|^2.0",
  8030. "seld/jsonlint": "^1.10",
  8031. "symfony/cache": "^6.4|^7.0",
  8032. "symfony/config": "^6.4|^7.0",
  8033. "symfony/console": "^6.4|^7.0",
  8034. "symfony/dependency-injection": "^7.2",
  8035. "symfony/error-handler": "^6.4|^7.0",
  8036. "symfony/filesystem": "^6.4|^7.0",
  8037. "symfony/form": "^6.4|^7.0",
  8038. "symfony/http-foundation": "^6.4|^7.0",
  8039. "symfony/http-kernel": "^6.4|^7.0",
  8040. "symfony/messenger": "^6.4|^7.0",
  8041. "symfony/mime": "^6.4|^7.0",
  8042. "symfony/property-access": "^6.4|^7.0",
  8043. "symfony/property-info": "^6.4|^7.0",
  8044. "symfony/translation-contracts": "^2.5|^3",
  8045. "symfony/type-info": "^7.1",
  8046. "symfony/uid": "^6.4|^7.0",
  8047. "symfony/validator": "^6.4|^7.0",
  8048. "symfony/var-dumper": "^6.4|^7.0",
  8049. "symfony/var-exporter": "^6.4|^7.0",
  8050. "symfony/yaml": "^6.4|^7.0"
  8051. },
  8052. "type": "library",
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Symfony\\Component\\Serializer\\": ""
  8056. },
  8057. "exclude-from-classmap": [
  8058. "/Tests/"
  8059. ]
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Fabien Potencier",
  8068. "email": "fabien@symfony.com"
  8069. },
  8070. {
  8071. "name": "Symfony Community",
  8072. "homepage": "https://symfony.com/contributors"
  8073. }
  8074. ],
  8075. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8076. "homepage": "https://symfony.com",
  8077. "support": {
  8078. "source": "https://github.com/symfony/serializer/tree/v7.3.1"
  8079. },
  8080. "funding": [
  8081. {
  8082. "url": "https://symfony.com/sponsor",
  8083. "type": "custom"
  8084. },
  8085. {
  8086. "url": "https://github.com/fabpot",
  8087. "type": "github"
  8088. },
  8089. {
  8090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8091. "type": "tidelift"
  8092. }
  8093. ],
  8094. "time": "2025-06-27T19:55:54+00:00"
  8095. },
  8096. {
  8097. "name": "symfony/service-contracts",
  8098. "version": "v3.6.0",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/symfony/service-contracts.git",
  8102. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8107. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "php": ">=8.1",
  8112. "psr/container": "^1.1|^2.0",
  8113. "symfony/deprecation-contracts": "^2.5|^3"
  8114. },
  8115. "conflict": {
  8116. "ext-psr": "<1.1|>=2"
  8117. },
  8118. "type": "library",
  8119. "extra": {
  8120. "thanks": {
  8121. "url": "https://github.com/symfony/contracts",
  8122. "name": "symfony/contracts"
  8123. },
  8124. "branch-alias": {
  8125. "dev-main": "3.6-dev"
  8126. }
  8127. },
  8128. "autoload": {
  8129. "psr-4": {
  8130. "Symfony\\Contracts\\Service\\": ""
  8131. },
  8132. "exclude-from-classmap": [
  8133. "/Test/"
  8134. ]
  8135. },
  8136. "notification-url": "https://packagist.org/downloads/",
  8137. "license": [
  8138. "MIT"
  8139. ],
  8140. "authors": [
  8141. {
  8142. "name": "Nicolas Grekas",
  8143. "email": "p@tchwork.com"
  8144. },
  8145. {
  8146. "name": "Symfony Community",
  8147. "homepage": "https://symfony.com/contributors"
  8148. }
  8149. ],
  8150. "description": "Generic abstractions related to writing services",
  8151. "homepage": "https://symfony.com",
  8152. "keywords": [
  8153. "abstractions",
  8154. "contracts",
  8155. "decoupling",
  8156. "interfaces",
  8157. "interoperability",
  8158. "standards"
  8159. ],
  8160. "support": {
  8161. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  8162. },
  8163. "funding": [
  8164. {
  8165. "url": "https://symfony.com/sponsor",
  8166. "type": "custom"
  8167. },
  8168. {
  8169. "url": "https://github.com/fabpot",
  8170. "type": "github"
  8171. },
  8172. {
  8173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8174. "type": "tidelift"
  8175. }
  8176. ],
  8177. "time": "2025-04-25T09:37:31+00:00"
  8178. },
  8179. {
  8180. "name": "symfony/stimulus-bundle",
  8181. "version": "v2.27.0",
  8182. "source": {
  8183. "type": "git",
  8184. "url": "https://github.com/symfony/stimulus-bundle.git",
  8185. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814"
  8186. },
  8187. "dist": {
  8188. "type": "zip",
  8189. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  8190. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  8191. "shasum": ""
  8192. },
  8193. "require": {
  8194. "php": ">=8.1",
  8195. "symfony/config": "^5.4|^6.0|^7.0",
  8196. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8197. "symfony/deprecation-contracts": "^2.0|^3.0",
  8198. "symfony/finder": "^5.4|^6.0|^7.0",
  8199. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8200. "twig/twig": "^2.15.3|^3.8"
  8201. },
  8202. "require-dev": {
  8203. "symfony/asset-mapper": "^6.3|^7.0",
  8204. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  8205. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8206. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  8207. "zenstruck/browser": "^1.4"
  8208. },
  8209. "type": "symfony-bundle",
  8210. "autoload": {
  8211. "psr-4": {
  8212. "Symfony\\UX\\StimulusBundle\\": "src"
  8213. }
  8214. },
  8215. "notification-url": "https://packagist.org/downloads/",
  8216. "license": [
  8217. "MIT"
  8218. ],
  8219. "authors": [
  8220. {
  8221. "name": "Symfony Community",
  8222. "homepage": "https://symfony.com/contributors"
  8223. }
  8224. ],
  8225. "description": "Integration with your Symfony app & Stimulus!",
  8226. "keywords": [
  8227. "symfony-ux"
  8228. ],
  8229. "support": {
  8230. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.27.0"
  8231. },
  8232. "funding": [
  8233. {
  8234. "url": "https://symfony.com/sponsor",
  8235. "type": "custom"
  8236. },
  8237. {
  8238. "url": "https://github.com/fabpot",
  8239. "type": "github"
  8240. },
  8241. {
  8242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8243. "type": "tidelift"
  8244. }
  8245. ],
  8246. "time": "2025-06-22T19:07:55+00:00"
  8247. },
  8248. {
  8249. "name": "symfony/stopwatch",
  8250. "version": "v7.3.0",
  8251. "source": {
  8252. "type": "git",
  8253. "url": "https://github.com/symfony/stopwatch.git",
  8254. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  8255. },
  8256. "dist": {
  8257. "type": "zip",
  8258. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  8259. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  8260. "shasum": ""
  8261. },
  8262. "require": {
  8263. "php": ">=8.2",
  8264. "symfony/service-contracts": "^2.5|^3"
  8265. },
  8266. "type": "library",
  8267. "autoload": {
  8268. "psr-4": {
  8269. "Symfony\\Component\\Stopwatch\\": ""
  8270. },
  8271. "exclude-from-classmap": [
  8272. "/Tests/"
  8273. ]
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "MIT"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "Fabien Potencier",
  8282. "email": "fabien@symfony.com"
  8283. },
  8284. {
  8285. "name": "Symfony Community",
  8286. "homepage": "https://symfony.com/contributors"
  8287. }
  8288. ],
  8289. "description": "Provides a way to profile code",
  8290. "homepage": "https://symfony.com",
  8291. "support": {
  8292. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  8293. },
  8294. "funding": [
  8295. {
  8296. "url": "https://symfony.com/sponsor",
  8297. "type": "custom"
  8298. },
  8299. {
  8300. "url": "https://github.com/fabpot",
  8301. "type": "github"
  8302. },
  8303. {
  8304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8305. "type": "tidelift"
  8306. }
  8307. ],
  8308. "time": "2025-02-24T10:49:57+00:00"
  8309. },
  8310. {
  8311. "name": "symfony/string",
  8312. "version": "v7.3.0",
  8313. "source": {
  8314. "type": "git",
  8315. "url": "https://github.com/symfony/string.git",
  8316. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  8317. },
  8318. "dist": {
  8319. "type": "zip",
  8320. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8321. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8322. "shasum": ""
  8323. },
  8324. "require": {
  8325. "php": ">=8.2",
  8326. "symfony/polyfill-ctype": "~1.8",
  8327. "symfony/polyfill-intl-grapheme": "~1.0",
  8328. "symfony/polyfill-intl-normalizer": "~1.0",
  8329. "symfony/polyfill-mbstring": "~1.0"
  8330. },
  8331. "conflict": {
  8332. "symfony/translation-contracts": "<2.5"
  8333. },
  8334. "require-dev": {
  8335. "symfony/emoji": "^7.1",
  8336. "symfony/error-handler": "^6.4|^7.0",
  8337. "symfony/http-client": "^6.4|^7.0",
  8338. "symfony/intl": "^6.4|^7.0",
  8339. "symfony/translation-contracts": "^2.5|^3.0",
  8340. "symfony/var-exporter": "^6.4|^7.0"
  8341. },
  8342. "type": "library",
  8343. "autoload": {
  8344. "files": [
  8345. "Resources/functions.php"
  8346. ],
  8347. "psr-4": {
  8348. "Symfony\\Component\\String\\": ""
  8349. },
  8350. "exclude-from-classmap": [
  8351. "/Tests/"
  8352. ]
  8353. },
  8354. "notification-url": "https://packagist.org/downloads/",
  8355. "license": [
  8356. "MIT"
  8357. ],
  8358. "authors": [
  8359. {
  8360. "name": "Nicolas Grekas",
  8361. "email": "p@tchwork.com"
  8362. },
  8363. {
  8364. "name": "Symfony Community",
  8365. "homepage": "https://symfony.com/contributors"
  8366. }
  8367. ],
  8368. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8369. "homepage": "https://symfony.com",
  8370. "keywords": [
  8371. "grapheme",
  8372. "i18n",
  8373. "string",
  8374. "unicode",
  8375. "utf-8",
  8376. "utf8"
  8377. ],
  8378. "support": {
  8379. "source": "https://github.com/symfony/string/tree/v7.3.0"
  8380. },
  8381. "funding": [
  8382. {
  8383. "url": "https://symfony.com/sponsor",
  8384. "type": "custom"
  8385. },
  8386. {
  8387. "url": "https://github.com/fabpot",
  8388. "type": "github"
  8389. },
  8390. {
  8391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8392. "type": "tidelift"
  8393. }
  8394. ],
  8395. "time": "2025-04-20T20:19:01+00:00"
  8396. },
  8397. {
  8398. "name": "symfony/translation",
  8399. "version": "v7.3.1",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/symfony/translation.git",
  8403. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  8408. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  8409. "shasum": ""
  8410. },
  8411. "require": {
  8412. "php": ">=8.2",
  8413. "symfony/deprecation-contracts": "^2.5|^3",
  8414. "symfony/polyfill-mbstring": "~1.0",
  8415. "symfony/translation-contracts": "^2.5|^3.0"
  8416. },
  8417. "conflict": {
  8418. "nikic/php-parser": "<5.0",
  8419. "symfony/config": "<6.4",
  8420. "symfony/console": "<6.4",
  8421. "symfony/dependency-injection": "<6.4",
  8422. "symfony/http-client-contracts": "<2.5",
  8423. "symfony/http-kernel": "<6.4",
  8424. "symfony/service-contracts": "<2.5",
  8425. "symfony/twig-bundle": "<6.4",
  8426. "symfony/yaml": "<6.4"
  8427. },
  8428. "provide": {
  8429. "symfony/translation-implementation": "2.3|3.0"
  8430. },
  8431. "require-dev": {
  8432. "nikic/php-parser": "^5.0",
  8433. "psr/log": "^1|^2|^3",
  8434. "symfony/config": "^6.4|^7.0",
  8435. "symfony/console": "^6.4|^7.0",
  8436. "symfony/dependency-injection": "^6.4|^7.0",
  8437. "symfony/finder": "^6.4|^7.0",
  8438. "symfony/http-client-contracts": "^2.5|^3.0",
  8439. "symfony/http-kernel": "^6.4|^7.0",
  8440. "symfony/intl": "^6.4|^7.0",
  8441. "symfony/polyfill-intl-icu": "^1.21",
  8442. "symfony/routing": "^6.4|^7.0",
  8443. "symfony/service-contracts": "^2.5|^3",
  8444. "symfony/yaml": "^6.4|^7.0"
  8445. },
  8446. "type": "library",
  8447. "autoload": {
  8448. "files": [
  8449. "Resources/functions.php"
  8450. ],
  8451. "psr-4": {
  8452. "Symfony\\Component\\Translation\\": ""
  8453. },
  8454. "exclude-from-classmap": [
  8455. "/Tests/"
  8456. ]
  8457. },
  8458. "notification-url": "https://packagist.org/downloads/",
  8459. "license": [
  8460. "MIT"
  8461. ],
  8462. "authors": [
  8463. {
  8464. "name": "Fabien Potencier",
  8465. "email": "fabien@symfony.com"
  8466. },
  8467. {
  8468. "name": "Symfony Community",
  8469. "homepage": "https://symfony.com/contributors"
  8470. }
  8471. ],
  8472. "description": "Provides tools to internationalize your application",
  8473. "homepage": "https://symfony.com",
  8474. "support": {
  8475. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  8476. },
  8477. "funding": [
  8478. {
  8479. "url": "https://symfony.com/sponsor",
  8480. "type": "custom"
  8481. },
  8482. {
  8483. "url": "https://github.com/fabpot",
  8484. "type": "github"
  8485. },
  8486. {
  8487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8488. "type": "tidelift"
  8489. }
  8490. ],
  8491. "time": "2025-06-27T19:55:54+00:00"
  8492. },
  8493. {
  8494. "name": "symfony/translation-contracts",
  8495. "version": "v3.6.0",
  8496. "source": {
  8497. "type": "git",
  8498. "url": "https://github.com/symfony/translation-contracts.git",
  8499. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  8500. },
  8501. "dist": {
  8502. "type": "zip",
  8503. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8504. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8505. "shasum": ""
  8506. },
  8507. "require": {
  8508. "php": ">=8.1"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "thanks": {
  8513. "url": "https://github.com/symfony/contracts",
  8514. "name": "symfony/contracts"
  8515. },
  8516. "branch-alias": {
  8517. "dev-main": "3.6-dev"
  8518. }
  8519. },
  8520. "autoload": {
  8521. "psr-4": {
  8522. "Symfony\\Contracts\\Translation\\": ""
  8523. },
  8524. "exclude-from-classmap": [
  8525. "/Test/"
  8526. ]
  8527. },
  8528. "notification-url": "https://packagist.org/downloads/",
  8529. "license": [
  8530. "MIT"
  8531. ],
  8532. "authors": [
  8533. {
  8534. "name": "Nicolas Grekas",
  8535. "email": "p@tchwork.com"
  8536. },
  8537. {
  8538. "name": "Symfony Community",
  8539. "homepage": "https://symfony.com/contributors"
  8540. }
  8541. ],
  8542. "description": "Generic abstractions related to translation",
  8543. "homepage": "https://symfony.com",
  8544. "keywords": [
  8545. "abstractions",
  8546. "contracts",
  8547. "decoupling",
  8548. "interfaces",
  8549. "interoperability",
  8550. "standards"
  8551. ],
  8552. "support": {
  8553. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  8554. },
  8555. "funding": [
  8556. {
  8557. "url": "https://symfony.com/sponsor",
  8558. "type": "custom"
  8559. },
  8560. {
  8561. "url": "https://github.com/fabpot",
  8562. "type": "github"
  8563. },
  8564. {
  8565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8566. "type": "tidelift"
  8567. }
  8568. ],
  8569. "time": "2024-09-27T08:32:26+00:00"
  8570. },
  8571. {
  8572. "name": "symfony/twig-bridge",
  8573. "version": "v7.3.0",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/symfony/twig-bridge.git",
  8577. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  8582. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "php": ">=8.2",
  8587. "symfony/deprecation-contracts": "^2.5|^3",
  8588. "symfony/translation-contracts": "^2.5|^3",
  8589. "twig/twig": "^3.21"
  8590. },
  8591. "conflict": {
  8592. "phpdocumentor/reflection-docblock": "<3.2.2",
  8593. "phpdocumentor/type-resolver": "<1.4.0",
  8594. "symfony/console": "<6.4",
  8595. "symfony/form": "<6.4",
  8596. "symfony/http-foundation": "<6.4",
  8597. "symfony/http-kernel": "<6.4",
  8598. "symfony/mime": "<6.4",
  8599. "symfony/serializer": "<6.4",
  8600. "symfony/translation": "<6.4",
  8601. "symfony/workflow": "<6.4"
  8602. },
  8603. "require-dev": {
  8604. "egulias/email-validator": "^2.1.10|^3|^4",
  8605. "league/html-to-markdown": "^5.0",
  8606. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8607. "symfony/asset": "^6.4|^7.0",
  8608. "symfony/asset-mapper": "^6.4|^7.0",
  8609. "symfony/console": "^6.4|^7.0",
  8610. "symfony/dependency-injection": "^6.4|^7.0",
  8611. "symfony/emoji": "^7.1",
  8612. "symfony/expression-language": "^6.4|^7.0",
  8613. "symfony/finder": "^6.4|^7.0",
  8614. "symfony/form": "^6.4.20|^7.2.5",
  8615. "symfony/html-sanitizer": "^6.4|^7.0",
  8616. "symfony/http-foundation": "^7.3",
  8617. "symfony/http-kernel": "^6.4|^7.0",
  8618. "symfony/intl": "^6.4|^7.0",
  8619. "symfony/mime": "^6.4|^7.0",
  8620. "symfony/polyfill-intl-icu": "~1.0",
  8621. "symfony/property-info": "^6.4|^7.0",
  8622. "symfony/routing": "^6.4|^7.0",
  8623. "symfony/security-acl": "^2.8|^3.0",
  8624. "symfony/security-core": "^6.4|^7.0",
  8625. "symfony/security-csrf": "^6.4|^7.0",
  8626. "symfony/security-http": "^6.4|^7.0",
  8627. "symfony/serializer": "^6.4.3|^7.0.3",
  8628. "symfony/stopwatch": "^6.4|^7.0",
  8629. "symfony/translation": "^6.4|^7.0",
  8630. "symfony/validator": "^6.4|^7.0",
  8631. "symfony/web-link": "^6.4|^7.0",
  8632. "symfony/workflow": "^6.4|^7.0",
  8633. "symfony/yaml": "^6.4|^7.0",
  8634. "twig/cssinliner-extra": "^3",
  8635. "twig/inky-extra": "^3",
  8636. "twig/markdown-extra": "^3"
  8637. },
  8638. "type": "symfony-bridge",
  8639. "autoload": {
  8640. "psr-4": {
  8641. "Symfony\\Bridge\\Twig\\": ""
  8642. },
  8643. "exclude-from-classmap": [
  8644. "/Tests/"
  8645. ]
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "MIT"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Fabien Potencier",
  8654. "email": "fabien@symfony.com"
  8655. },
  8656. {
  8657. "name": "Symfony Community",
  8658. "homepage": "https://symfony.com/contributors"
  8659. }
  8660. ],
  8661. "description": "Provides integration for Twig with various Symfony components",
  8662. "homepage": "https://symfony.com",
  8663. "support": {
  8664. "source": "https://github.com/symfony/twig-bridge/tree/v7.3.0"
  8665. },
  8666. "funding": [
  8667. {
  8668. "url": "https://symfony.com/sponsor",
  8669. "type": "custom"
  8670. },
  8671. {
  8672. "url": "https://github.com/fabpot",
  8673. "type": "github"
  8674. },
  8675. {
  8676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8677. "type": "tidelift"
  8678. }
  8679. ],
  8680. "time": "2025-05-19T13:28:56+00:00"
  8681. },
  8682. {
  8683. "name": "symfony/twig-bundle",
  8684. "version": "v7.3.1",
  8685. "source": {
  8686. "type": "git",
  8687. "url": "https://github.com/symfony/twig-bundle.git",
  8688. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896"
  8689. },
  8690. "dist": {
  8691. "type": "zip",
  8692. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  8693. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  8694. "shasum": ""
  8695. },
  8696. "require": {
  8697. "composer-runtime-api": ">=2.1",
  8698. "php": ">=8.2",
  8699. "symfony/config": "^7.3",
  8700. "symfony/dependency-injection": "^6.4|^7.0",
  8701. "symfony/http-foundation": "^6.4|^7.0",
  8702. "symfony/http-kernel": "^6.4|^7.0",
  8703. "symfony/twig-bridge": "^7.3",
  8704. "twig/twig": "^3.12"
  8705. },
  8706. "conflict": {
  8707. "symfony/framework-bundle": "<6.4",
  8708. "symfony/translation": "<6.4"
  8709. },
  8710. "require-dev": {
  8711. "symfony/asset": "^6.4|^7.0",
  8712. "symfony/expression-language": "^6.4|^7.0",
  8713. "symfony/finder": "^6.4|^7.0",
  8714. "symfony/form": "^6.4|^7.0",
  8715. "symfony/framework-bundle": "^6.4|^7.0",
  8716. "symfony/routing": "^6.4|^7.0",
  8717. "symfony/stopwatch": "^6.4|^7.0",
  8718. "symfony/translation": "^6.4|^7.0",
  8719. "symfony/web-link": "^6.4|^7.0",
  8720. "symfony/yaml": "^6.4|^7.0"
  8721. },
  8722. "type": "symfony-bundle",
  8723. "autoload": {
  8724. "psr-4": {
  8725. "Symfony\\Bundle\\TwigBundle\\": ""
  8726. },
  8727. "exclude-from-classmap": [
  8728. "/Tests/"
  8729. ]
  8730. },
  8731. "notification-url": "https://packagist.org/downloads/",
  8732. "license": [
  8733. "MIT"
  8734. ],
  8735. "authors": [
  8736. {
  8737. "name": "Fabien Potencier",
  8738. "email": "fabien@symfony.com"
  8739. },
  8740. {
  8741. "name": "Symfony Community",
  8742. "homepage": "https://symfony.com/contributors"
  8743. }
  8744. ],
  8745. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8746. "homepage": "https://symfony.com",
  8747. "support": {
  8748. "source": "https://github.com/symfony/twig-bundle/tree/v7.3.1"
  8749. },
  8750. "funding": [
  8751. {
  8752. "url": "https://symfony.com/sponsor",
  8753. "type": "custom"
  8754. },
  8755. {
  8756. "url": "https://github.com/fabpot",
  8757. "type": "github"
  8758. },
  8759. {
  8760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8761. "type": "tidelift"
  8762. }
  8763. ],
  8764. "time": "2025-06-24T04:04:43+00:00"
  8765. },
  8766. {
  8767. "name": "symfony/type-info",
  8768. "version": "v7.3.1",
  8769. "source": {
  8770. "type": "git",
  8771. "url": "https://github.com/symfony/type-info.git",
  8772. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150"
  8773. },
  8774. "dist": {
  8775. "type": "zip",
  8776. "url": "https://api.github.com/repos/symfony/type-info/zipball/5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  8777. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  8778. "shasum": ""
  8779. },
  8780. "require": {
  8781. "php": ">=8.2",
  8782. "psr/container": "^1.1|^2.0",
  8783. "symfony/deprecation-contracts": "^2.5|^3"
  8784. },
  8785. "conflict": {
  8786. "phpstan/phpdoc-parser": "<1.30"
  8787. },
  8788. "require-dev": {
  8789. "phpstan/phpdoc-parser": "^1.30|^2.0"
  8790. },
  8791. "type": "library",
  8792. "autoload": {
  8793. "psr-4": {
  8794. "Symfony\\Component\\TypeInfo\\": ""
  8795. },
  8796. "exclude-from-classmap": [
  8797. "/Tests/"
  8798. ]
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "MIT"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Mathias Arlaud",
  8807. "email": "mathias.arlaud@gmail.com"
  8808. },
  8809. {
  8810. "name": "Baptiste LEDUC",
  8811. "email": "baptiste.leduc@gmail.com"
  8812. },
  8813. {
  8814. "name": "Symfony Community",
  8815. "homepage": "https://symfony.com/contributors"
  8816. }
  8817. ],
  8818. "description": "Extracts PHP types information.",
  8819. "homepage": "https://symfony.com",
  8820. "keywords": [
  8821. "PHPStan",
  8822. "phpdoc",
  8823. "symfony",
  8824. "type"
  8825. ],
  8826. "support": {
  8827. "source": "https://github.com/symfony/type-info/tree/v7.3.1"
  8828. },
  8829. "funding": [
  8830. {
  8831. "url": "https://symfony.com/sponsor",
  8832. "type": "custom"
  8833. },
  8834. {
  8835. "url": "https://github.com/fabpot",
  8836. "type": "github"
  8837. },
  8838. {
  8839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8840. "type": "tidelift"
  8841. }
  8842. ],
  8843. "time": "2025-06-27T19:55:54+00:00"
  8844. },
  8845. {
  8846. "name": "symfony/ux-turbo",
  8847. "version": "v2.27.0",
  8848. "source": {
  8849. "type": "git",
  8850. "url": "https://github.com/symfony/ux-turbo.git",
  8851. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2"
  8852. },
  8853. "dist": {
  8854. "type": "zip",
  8855. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  8856. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  8857. "shasum": ""
  8858. },
  8859. "require": {
  8860. "php": ">=8.1",
  8861. "symfony/stimulus-bundle": "^2.9.1"
  8862. },
  8863. "conflict": {
  8864. "symfony/flex": "<1.13"
  8865. },
  8866. "require-dev": {
  8867. "dbrekelmans/bdi": "dev-main",
  8868. "doctrine/doctrine-bundle": "^2.4.3",
  8869. "doctrine/orm": "^2.8 | 3.0",
  8870. "php-webdriver/webdriver": "^1.15",
  8871. "phpstan/phpstan": "^2.1.17",
  8872. "symfony/asset-mapper": "^6.4|^7.0",
  8873. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  8874. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8875. "symfony/form": "^5.4|^6.0|^7.0",
  8876. "symfony/framework-bundle": "^6.4|^7.0",
  8877. "symfony/mercure-bundle": "^0.3.7",
  8878. "symfony/messenger": "^5.4|^6.0|^7.0",
  8879. "symfony/panther": "^2.2",
  8880. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8881. "symfony/process": "^5.4|6.3.*|^7.0",
  8882. "symfony/property-access": "^5.4|^6.0|^7.0",
  8883. "symfony/security-core": "^5.4|^6.0|^7.0",
  8884. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8885. "symfony/twig-bundle": "^6.4|^7.0",
  8886. "symfony/ux-twig-component": "^2.21",
  8887. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  8888. },
  8889. "type": "symfony-bundle",
  8890. "extra": {
  8891. "thanks": {
  8892. "url": "https://github.com/symfony/ux",
  8893. "name": "symfony/ux"
  8894. }
  8895. },
  8896. "autoload": {
  8897. "psr-4": {
  8898. "Symfony\\UX\\Turbo\\": "src/"
  8899. }
  8900. },
  8901. "notification-url": "https://packagist.org/downloads/",
  8902. "license": [
  8903. "MIT"
  8904. ],
  8905. "authors": [
  8906. {
  8907. "name": "Kévin Dunglas",
  8908. "email": "kevin@dunglas.fr"
  8909. },
  8910. {
  8911. "name": "Symfony Community",
  8912. "homepage": "https://symfony.com/contributors"
  8913. }
  8914. ],
  8915. "description": "Hotwire Turbo integration for Symfony",
  8916. "homepage": "https://symfony.com",
  8917. "keywords": [
  8918. "hotwire",
  8919. "javascript",
  8920. "mercure",
  8921. "symfony-ux",
  8922. "turbo",
  8923. "turbo-stream"
  8924. ],
  8925. "support": {
  8926. "source": "https://github.com/symfony/ux-turbo/tree/v2.27.0"
  8927. },
  8928. "funding": [
  8929. {
  8930. "url": "https://symfony.com/sponsor",
  8931. "type": "custom"
  8932. },
  8933. {
  8934. "url": "https://github.com/fabpot",
  8935. "type": "github"
  8936. },
  8937. {
  8938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8939. "type": "tidelift"
  8940. }
  8941. ],
  8942. "time": "2025-06-06T20:27:21+00:00"
  8943. },
  8944. {
  8945. "name": "symfony/validator",
  8946. "version": "v7.3.1",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/symfony/validator.git",
  8950. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/symfony/validator/zipball/e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  8955. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  8956. "shasum": ""
  8957. },
  8958. "require": {
  8959. "php": ">=8.2",
  8960. "symfony/deprecation-contracts": "^2.5|^3",
  8961. "symfony/polyfill-ctype": "~1.8",
  8962. "symfony/polyfill-mbstring": "~1.0",
  8963. "symfony/polyfill-php83": "^1.27",
  8964. "symfony/translation-contracts": "^2.5|^3"
  8965. },
  8966. "conflict": {
  8967. "doctrine/lexer": "<1.1",
  8968. "symfony/dependency-injection": "<6.4",
  8969. "symfony/doctrine-bridge": "<7.0",
  8970. "symfony/expression-language": "<6.4",
  8971. "symfony/http-kernel": "<6.4",
  8972. "symfony/intl": "<6.4",
  8973. "symfony/property-info": "<6.4",
  8974. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8975. "symfony/yaml": "<6.4"
  8976. },
  8977. "require-dev": {
  8978. "egulias/email-validator": "^2.1.10|^3|^4",
  8979. "symfony/cache": "^6.4|^7.0",
  8980. "symfony/config": "^6.4|^7.0",
  8981. "symfony/console": "^6.4|^7.0",
  8982. "symfony/dependency-injection": "^6.4|^7.0",
  8983. "symfony/expression-language": "^6.4|^7.0",
  8984. "symfony/finder": "^6.4|^7.0",
  8985. "symfony/http-client": "^6.4|^7.0",
  8986. "symfony/http-foundation": "^6.4|^7.0",
  8987. "symfony/http-kernel": "^6.4|^7.0",
  8988. "symfony/intl": "^6.4|^7.0",
  8989. "symfony/mime": "^6.4|^7.0",
  8990. "symfony/property-access": "^6.4|^7.0",
  8991. "symfony/property-info": "^6.4|^7.0",
  8992. "symfony/string": "^6.4|^7.0",
  8993. "symfony/translation": "^6.4.3|^7.0.3",
  8994. "symfony/type-info": "^7.1",
  8995. "symfony/yaml": "^6.4|^7.0"
  8996. },
  8997. "type": "library",
  8998. "autoload": {
  8999. "psr-4": {
  9000. "Symfony\\Component\\Validator\\": ""
  9001. },
  9002. "exclude-from-classmap": [
  9003. "/Tests/",
  9004. "/Resources/bin/"
  9005. ]
  9006. },
  9007. "notification-url": "https://packagist.org/downloads/",
  9008. "license": [
  9009. "MIT"
  9010. ],
  9011. "authors": [
  9012. {
  9013. "name": "Fabien Potencier",
  9014. "email": "fabien@symfony.com"
  9015. },
  9016. {
  9017. "name": "Symfony Community",
  9018. "homepage": "https://symfony.com/contributors"
  9019. }
  9020. ],
  9021. "description": "Provides tools to validate values",
  9022. "homepage": "https://symfony.com",
  9023. "support": {
  9024. "source": "https://github.com/symfony/validator/tree/v7.3.1"
  9025. },
  9026. "funding": [
  9027. {
  9028. "url": "https://symfony.com/sponsor",
  9029. "type": "custom"
  9030. },
  9031. {
  9032. "url": "https://github.com/fabpot",
  9033. "type": "github"
  9034. },
  9035. {
  9036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9037. "type": "tidelift"
  9038. }
  9039. ],
  9040. "time": "2025-06-26T13:22:23+00:00"
  9041. },
  9042. {
  9043. "name": "symfony/var-dumper",
  9044. "version": "v7.3.1",
  9045. "source": {
  9046. "type": "git",
  9047. "url": "https://github.com/symfony/var-dumper.git",
  9048. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  9049. },
  9050. "dist": {
  9051. "type": "zip",
  9052. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  9053. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  9054. "shasum": ""
  9055. },
  9056. "require": {
  9057. "php": ">=8.2",
  9058. "symfony/deprecation-contracts": "^2.5|^3",
  9059. "symfony/polyfill-mbstring": "~1.0"
  9060. },
  9061. "conflict": {
  9062. "symfony/console": "<6.4"
  9063. },
  9064. "require-dev": {
  9065. "ext-iconv": "*",
  9066. "symfony/console": "^6.4|^7.0",
  9067. "symfony/http-kernel": "^6.4|^7.0",
  9068. "symfony/process": "^6.4|^7.0",
  9069. "symfony/uid": "^6.4|^7.0",
  9070. "twig/twig": "^3.12"
  9071. },
  9072. "bin": [
  9073. "Resources/bin/var-dump-server"
  9074. ],
  9075. "type": "library",
  9076. "autoload": {
  9077. "files": [
  9078. "Resources/functions/dump.php"
  9079. ],
  9080. "psr-4": {
  9081. "Symfony\\Component\\VarDumper\\": ""
  9082. },
  9083. "exclude-from-classmap": [
  9084. "/Tests/"
  9085. ]
  9086. },
  9087. "notification-url": "https://packagist.org/downloads/",
  9088. "license": [
  9089. "MIT"
  9090. ],
  9091. "authors": [
  9092. {
  9093. "name": "Nicolas Grekas",
  9094. "email": "p@tchwork.com"
  9095. },
  9096. {
  9097. "name": "Symfony Community",
  9098. "homepage": "https://symfony.com/contributors"
  9099. }
  9100. ],
  9101. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9102. "homepage": "https://symfony.com",
  9103. "keywords": [
  9104. "debug",
  9105. "dump"
  9106. ],
  9107. "support": {
  9108. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  9109. },
  9110. "funding": [
  9111. {
  9112. "url": "https://symfony.com/sponsor",
  9113. "type": "custom"
  9114. },
  9115. {
  9116. "url": "https://github.com/fabpot",
  9117. "type": "github"
  9118. },
  9119. {
  9120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9121. "type": "tidelift"
  9122. }
  9123. ],
  9124. "time": "2025-06-27T19:55:54+00:00"
  9125. },
  9126. {
  9127. "name": "symfony/var-exporter",
  9128. "version": "v7.3.0",
  9129. "source": {
  9130. "type": "git",
  9131. "url": "https://github.com/symfony/var-exporter.git",
  9132. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c"
  9133. },
  9134. "dist": {
  9135. "type": "zip",
  9136. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c9a1168891b5aaadfd6332ef44393330b3498c4c",
  9137. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c",
  9138. "shasum": ""
  9139. },
  9140. "require": {
  9141. "php": ">=8.2",
  9142. "symfony/deprecation-contracts": "^2.5|^3"
  9143. },
  9144. "require-dev": {
  9145. "symfony/property-access": "^6.4|^7.0",
  9146. "symfony/serializer": "^6.4|^7.0",
  9147. "symfony/var-dumper": "^6.4|^7.0"
  9148. },
  9149. "type": "library",
  9150. "autoload": {
  9151. "psr-4": {
  9152. "Symfony\\Component\\VarExporter\\": ""
  9153. },
  9154. "exclude-from-classmap": [
  9155. "/Tests/"
  9156. ]
  9157. },
  9158. "notification-url": "https://packagist.org/downloads/",
  9159. "license": [
  9160. "MIT"
  9161. ],
  9162. "authors": [
  9163. {
  9164. "name": "Nicolas Grekas",
  9165. "email": "p@tchwork.com"
  9166. },
  9167. {
  9168. "name": "Symfony Community",
  9169. "homepage": "https://symfony.com/contributors"
  9170. }
  9171. ],
  9172. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9173. "homepage": "https://symfony.com",
  9174. "keywords": [
  9175. "clone",
  9176. "construct",
  9177. "export",
  9178. "hydrate",
  9179. "instantiate",
  9180. "lazy-loading",
  9181. "proxy",
  9182. "serialize"
  9183. ],
  9184. "support": {
  9185. "source": "https://github.com/symfony/var-exporter/tree/v7.3.0"
  9186. },
  9187. "funding": [
  9188. {
  9189. "url": "https://symfony.com/sponsor",
  9190. "type": "custom"
  9191. },
  9192. {
  9193. "url": "https://github.com/fabpot",
  9194. "type": "github"
  9195. },
  9196. {
  9197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9198. "type": "tidelift"
  9199. }
  9200. ],
  9201. "time": "2025-05-15T09:04:05+00:00"
  9202. },
  9203. {
  9204. "name": "symfony/web-link",
  9205. "version": "v7.3.0",
  9206. "source": {
  9207. "type": "git",
  9208. "url": "https://github.com/symfony/web-link.git",
  9209. "reference": "7697f74fce67555665339423ce453cc8216a98ff"
  9210. },
  9211. "dist": {
  9212. "type": "zip",
  9213. "url": "https://api.github.com/repos/symfony/web-link/zipball/7697f74fce67555665339423ce453cc8216a98ff",
  9214. "reference": "7697f74fce67555665339423ce453cc8216a98ff",
  9215. "shasum": ""
  9216. },
  9217. "require": {
  9218. "php": ">=8.2",
  9219. "psr/link": "^1.1|^2.0"
  9220. },
  9221. "conflict": {
  9222. "symfony/http-kernel": "<6.4"
  9223. },
  9224. "provide": {
  9225. "psr/link-implementation": "1.0|2.0"
  9226. },
  9227. "require-dev": {
  9228. "symfony/http-kernel": "^6.4|^7.0"
  9229. },
  9230. "type": "library",
  9231. "autoload": {
  9232. "psr-4": {
  9233. "Symfony\\Component\\WebLink\\": ""
  9234. },
  9235. "exclude-from-classmap": [
  9236. "/Tests/"
  9237. ]
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "MIT"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Kévin Dunglas",
  9246. "email": "dunglas@gmail.com"
  9247. },
  9248. {
  9249. "name": "Symfony Community",
  9250. "homepage": "https://symfony.com/contributors"
  9251. }
  9252. ],
  9253. "description": "Manages links between resources",
  9254. "homepage": "https://symfony.com",
  9255. "keywords": [
  9256. "dns-prefetch",
  9257. "http",
  9258. "http2",
  9259. "link",
  9260. "performance",
  9261. "prefetch",
  9262. "preload",
  9263. "prerender",
  9264. "psr13",
  9265. "push"
  9266. ],
  9267. "support": {
  9268. "source": "https://github.com/symfony/web-link/tree/v7.3.0"
  9269. },
  9270. "funding": [
  9271. {
  9272. "url": "https://symfony.com/sponsor",
  9273. "type": "custom"
  9274. },
  9275. {
  9276. "url": "https://github.com/fabpot",
  9277. "type": "github"
  9278. },
  9279. {
  9280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9281. "type": "tidelift"
  9282. }
  9283. ],
  9284. "time": "2025-05-19T13:28:18+00:00"
  9285. },
  9286. {
  9287. "name": "symfony/web-profiler-bundle",
  9288. "version": "v7.3.1",
  9289. "source": {
  9290. "type": "git",
  9291. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9292. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51"
  9293. },
  9294. "dist": {
  9295. "type": "zip",
  9296. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  9297. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  9298. "shasum": ""
  9299. },
  9300. "require": {
  9301. "composer-runtime-api": ">=2.1",
  9302. "php": ">=8.2",
  9303. "symfony/config": "^7.3",
  9304. "symfony/deprecation-contracts": "^2.5|^3",
  9305. "symfony/framework-bundle": "^6.4|^7.0",
  9306. "symfony/http-kernel": "^6.4|^7.0",
  9307. "symfony/routing": "^6.4|^7.0",
  9308. "symfony/twig-bundle": "^6.4|^7.0",
  9309. "twig/twig": "^3.12"
  9310. },
  9311. "conflict": {
  9312. "symfony/form": "<6.4",
  9313. "symfony/mailer": "<6.4",
  9314. "symfony/messenger": "<6.4",
  9315. "symfony/serializer": "<7.2",
  9316. "symfony/workflow": "<7.3"
  9317. },
  9318. "require-dev": {
  9319. "symfony/browser-kit": "^6.4|^7.0",
  9320. "symfony/console": "^6.4|^7.0",
  9321. "symfony/css-selector": "^6.4|^7.0",
  9322. "symfony/stopwatch": "^6.4|^7.0"
  9323. },
  9324. "type": "symfony-bundle",
  9325. "autoload": {
  9326. "psr-4": {
  9327. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9328. },
  9329. "exclude-from-classmap": [
  9330. "/Tests/"
  9331. ]
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "MIT"
  9336. ],
  9337. "authors": [
  9338. {
  9339. "name": "Fabien Potencier",
  9340. "email": "fabien@symfony.com"
  9341. },
  9342. {
  9343. "name": "Symfony Community",
  9344. "homepage": "https://symfony.com/contributors"
  9345. }
  9346. ],
  9347. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9348. "homepage": "https://symfony.com",
  9349. "keywords": [
  9350. "dev"
  9351. ],
  9352. "support": {
  9353. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.3.1"
  9354. },
  9355. "funding": [
  9356. {
  9357. "url": "https://symfony.com/sponsor",
  9358. "type": "custom"
  9359. },
  9360. {
  9361. "url": "https://github.com/fabpot",
  9362. "type": "github"
  9363. },
  9364. {
  9365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9366. "type": "tidelift"
  9367. }
  9368. ],
  9369. "time": "2025-06-05T09:30:41+00:00"
  9370. },
  9371. {
  9372. "name": "symfony/yaml",
  9373. "version": "v7.3.1",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/symfony/yaml.git",
  9377. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  9382. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  9383. "shasum": ""
  9384. },
  9385. "require": {
  9386. "php": ">=8.2",
  9387. "symfony/deprecation-contracts": "^2.5|^3.0",
  9388. "symfony/polyfill-ctype": "^1.8"
  9389. },
  9390. "conflict": {
  9391. "symfony/console": "<6.4"
  9392. },
  9393. "require-dev": {
  9394. "symfony/console": "^6.4|^7.0"
  9395. },
  9396. "bin": [
  9397. "Resources/bin/yaml-lint"
  9398. ],
  9399. "type": "library",
  9400. "autoload": {
  9401. "psr-4": {
  9402. "Symfony\\Component\\Yaml\\": ""
  9403. },
  9404. "exclude-from-classmap": [
  9405. "/Tests/"
  9406. ]
  9407. },
  9408. "notification-url": "https://packagist.org/downloads/",
  9409. "license": [
  9410. "MIT"
  9411. ],
  9412. "authors": [
  9413. {
  9414. "name": "Fabien Potencier",
  9415. "email": "fabien@symfony.com"
  9416. },
  9417. {
  9418. "name": "Symfony Community",
  9419. "homepage": "https://symfony.com/contributors"
  9420. }
  9421. ],
  9422. "description": "Loads and dumps YAML files",
  9423. "homepage": "https://symfony.com",
  9424. "support": {
  9425. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  9426. },
  9427. "funding": [
  9428. {
  9429. "url": "https://symfony.com/sponsor",
  9430. "type": "custom"
  9431. },
  9432. {
  9433. "url": "https://github.com/fabpot",
  9434. "type": "github"
  9435. },
  9436. {
  9437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9438. "type": "tidelift"
  9439. }
  9440. ],
  9441. "time": "2025-06-03T06:57:57+00:00"
  9442. },
  9443. {
  9444. "name": "theseer/tokenizer",
  9445. "version": "1.2.3",
  9446. "source": {
  9447. "type": "git",
  9448. "url": "https://github.com/theseer/tokenizer.git",
  9449. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9450. },
  9451. "dist": {
  9452. "type": "zip",
  9453. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9454. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9455. "shasum": ""
  9456. },
  9457. "require": {
  9458. "ext-dom": "*",
  9459. "ext-tokenizer": "*",
  9460. "ext-xmlwriter": "*",
  9461. "php": "^7.2 || ^8.0"
  9462. },
  9463. "type": "library",
  9464. "autoload": {
  9465. "classmap": [
  9466. "src/"
  9467. ]
  9468. },
  9469. "notification-url": "https://packagist.org/downloads/",
  9470. "license": [
  9471. "BSD-3-Clause"
  9472. ],
  9473. "authors": [
  9474. {
  9475. "name": "Arne Blankerts",
  9476. "email": "arne@blankerts.de",
  9477. "role": "Developer"
  9478. }
  9479. ],
  9480. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9481. "support": {
  9482. "issues": "https://github.com/theseer/tokenizer/issues",
  9483. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9484. },
  9485. "funding": [
  9486. {
  9487. "url": "https://github.com/theseer",
  9488. "type": "github"
  9489. }
  9490. ],
  9491. "time": "2024-03-03T12:36:25+00:00"
  9492. },
  9493. {
  9494. "name": "twig/extra-bundle",
  9495. "version": "v3.21.0",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  9499. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  9504. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  9505. "shasum": ""
  9506. },
  9507. "require": {
  9508. "php": ">=8.1.0",
  9509. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  9510. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  9511. "twig/twig": "^3.2|^4.0"
  9512. },
  9513. "require-dev": {
  9514. "league/commonmark": "^1.0|^2.0",
  9515. "symfony/phpunit-bridge": "^6.4|^7.0",
  9516. "twig/cache-extra": "^3.0",
  9517. "twig/cssinliner-extra": "^3.0",
  9518. "twig/html-extra": "^3.0",
  9519. "twig/inky-extra": "^3.0",
  9520. "twig/intl-extra": "^3.0",
  9521. "twig/markdown-extra": "^3.0",
  9522. "twig/string-extra": "^3.0"
  9523. },
  9524. "type": "symfony-bundle",
  9525. "autoload": {
  9526. "psr-4": {
  9527. "Twig\\Extra\\TwigExtraBundle\\": ""
  9528. },
  9529. "exclude-from-classmap": [
  9530. "/Tests/"
  9531. ]
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "MIT"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Fabien Potencier",
  9540. "email": "fabien@symfony.com",
  9541. "homepage": "http://fabien.potencier.org",
  9542. "role": "Lead Developer"
  9543. }
  9544. ],
  9545. "description": "A Symfony bundle for extra Twig extensions",
  9546. "homepage": "https://twig.symfony.com",
  9547. "keywords": [
  9548. "bundle",
  9549. "extra",
  9550. "twig"
  9551. ],
  9552. "support": {
  9553. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  9554. },
  9555. "funding": [
  9556. {
  9557. "url": "https://github.com/fabpot",
  9558. "type": "github"
  9559. },
  9560. {
  9561. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9562. "type": "tidelift"
  9563. }
  9564. ],
  9565. "time": "2025-02-19T14:29:33+00:00"
  9566. },
  9567. {
  9568. "name": "twig/twig",
  9569. "version": "v3.21.1",
  9570. "source": {
  9571. "type": "git",
  9572. "url": "https://github.com/twigphp/Twig.git",
  9573. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  9574. },
  9575. "dist": {
  9576. "type": "zip",
  9577. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  9578. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  9579. "shasum": ""
  9580. },
  9581. "require": {
  9582. "php": ">=8.1.0",
  9583. "symfony/deprecation-contracts": "^2.5|^3",
  9584. "symfony/polyfill-ctype": "^1.8",
  9585. "symfony/polyfill-mbstring": "^1.3"
  9586. },
  9587. "require-dev": {
  9588. "phpstan/phpstan": "^2.0",
  9589. "psr/container": "^1.0|^2.0",
  9590. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  9591. },
  9592. "type": "library",
  9593. "autoload": {
  9594. "files": [
  9595. "src/Resources/core.php",
  9596. "src/Resources/debug.php",
  9597. "src/Resources/escaper.php",
  9598. "src/Resources/string_loader.php"
  9599. ],
  9600. "psr-4": {
  9601. "Twig\\": "src/"
  9602. }
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "BSD-3-Clause"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Fabien Potencier",
  9611. "email": "fabien@symfony.com",
  9612. "homepage": "http://fabien.potencier.org",
  9613. "role": "Lead Developer"
  9614. },
  9615. {
  9616. "name": "Twig Team",
  9617. "role": "Contributors"
  9618. },
  9619. {
  9620. "name": "Armin Ronacher",
  9621. "email": "armin.ronacher@active-4.com",
  9622. "role": "Project Founder"
  9623. }
  9624. ],
  9625. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9626. "homepage": "https://twig.symfony.com",
  9627. "keywords": [
  9628. "templating"
  9629. ],
  9630. "support": {
  9631. "issues": "https://github.com/twigphp/Twig/issues",
  9632. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  9633. },
  9634. "funding": [
  9635. {
  9636. "url": "https://github.com/fabpot",
  9637. "type": "github"
  9638. },
  9639. {
  9640. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9641. "type": "tidelift"
  9642. }
  9643. ],
  9644. "time": "2025-05-03T07:21:55+00:00"
  9645. },
  9646. {
  9647. "name": "webmozart/assert",
  9648. "version": "1.11.0",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/webmozarts/assert.git",
  9652. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9657. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9658. "shasum": ""
  9659. },
  9660. "require": {
  9661. "ext-ctype": "*",
  9662. "php": "^7.2 || ^8.0"
  9663. },
  9664. "conflict": {
  9665. "phpstan/phpstan": "<0.12.20",
  9666. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9667. },
  9668. "require-dev": {
  9669. "phpunit/phpunit": "^8.5.13"
  9670. },
  9671. "type": "library",
  9672. "extra": {
  9673. "branch-alias": {
  9674. "dev-master": "1.10-dev"
  9675. }
  9676. },
  9677. "autoload": {
  9678. "psr-4": {
  9679. "Webmozart\\Assert\\": "src/"
  9680. }
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "MIT"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Bernhard Schussek",
  9689. "email": "bschussek@gmail.com"
  9690. }
  9691. ],
  9692. "description": "Assertions to validate method input/output with nice error messages.",
  9693. "keywords": [
  9694. "assert",
  9695. "check",
  9696. "validate"
  9697. ],
  9698. "support": {
  9699. "issues": "https://github.com/webmozarts/assert/issues",
  9700. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9701. },
  9702. "time": "2022-06-03T18:03:27+00:00"
  9703. }
  9704. ],
  9705. "packages-dev": [],
  9706. "aliases": [],
  9707. "minimum-stability": "stable",
  9708. "stability-flags": [],
  9709. "prefer-stable": true,
  9710. "prefer-lowest": false,
  9711. "platform": {
  9712. "php": ">=8.2",
  9713. "ext-ctype": "*",
  9714. "ext-iconv": "*"
  9715. },
  9716. "platform-dev": [],
  9717. "plugin-api-version": "2.6.0"
  9718. }