composer.lock 380 KB

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