composer.lock 373 KB

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