composer.lock 396 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910
  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": "64516dc2842a4247fcb947e031113c53",
  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": "dflydev/dot-access-data",
  92. "version": "v3.0.3",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  96. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  101. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "php": "^7.1 || ^8.0"
  106. },
  107. "require-dev": {
  108. "phpstan/phpstan": "^0.12.42",
  109. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  110. "scrutinizer/ocular": "1.6.0",
  111. "squizlabs/php_codesniffer": "^3.5",
  112. "vimeo/psalm": "^4.0.0"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-main": "3.x-dev"
  118. }
  119. },
  120. "autoload": {
  121. "psr-4": {
  122. "Dflydev\\DotAccessData\\": "src/"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Dragonfly Development Inc.",
  132. "email": "info@dflydev.com",
  133. "homepage": "http://dflydev.com"
  134. },
  135. {
  136. "name": "Beau Simensen",
  137. "email": "beau@dflydev.com",
  138. "homepage": "http://beausimensen.com"
  139. },
  140. {
  141. "name": "Carlos Frutos",
  142. "email": "carlos@kiwing.it",
  143. "homepage": "https://github.com/cfrutos"
  144. },
  145. {
  146. "name": "Colin O'Dell",
  147. "email": "colinodell@gmail.com",
  148. "homepage": "https://www.colinodell.com"
  149. }
  150. ],
  151. "description": "Given a deep data structure, access data by dot notation.",
  152. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  153. "keywords": [
  154. "access",
  155. "data",
  156. "dot",
  157. "notation"
  158. ],
  159. "support": {
  160. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  161. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  162. },
  163. "time": "2024-07-08T12:26:09+00:00"
  164. },
  165. {
  166. "name": "doctrine/collections",
  167. "version": "2.3.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/doctrine/collections.git",
  171. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  176. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "doctrine/deprecations": "^1",
  181. "php": "^8.1",
  182. "symfony/polyfill-php84": "^1.30"
  183. },
  184. "require-dev": {
  185. "doctrine/coding-standard": "^12",
  186. "ext-json": "*",
  187. "phpstan/phpstan": "^1.8",
  188. "phpstan/phpstan-phpunit": "^1.0",
  189. "phpunit/phpunit": "^10.5"
  190. },
  191. "type": "library",
  192. "autoload": {
  193. "psr-4": {
  194. "Doctrine\\Common\\Collections\\": "src"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Guilherme Blanco",
  204. "email": "guilhermeblanco@gmail.com"
  205. },
  206. {
  207. "name": "Roman Borschel",
  208. "email": "roman@code-factory.org"
  209. },
  210. {
  211. "name": "Benjamin Eberlei",
  212. "email": "kontakt@beberlei.de"
  213. },
  214. {
  215. "name": "Jonathan Wage",
  216. "email": "jonwage@gmail.com"
  217. },
  218. {
  219. "name": "Johannes Schmitt",
  220. "email": "schmittjoh@gmail.com"
  221. }
  222. ],
  223. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  224. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  225. "keywords": [
  226. "array",
  227. "collections",
  228. "iterators",
  229. "php"
  230. ],
  231. "support": {
  232. "issues": "https://github.com/doctrine/collections/issues",
  233. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  234. },
  235. "funding": [
  236. {
  237. "url": "https://www.doctrine-project.org/sponsorship.html",
  238. "type": "custom"
  239. },
  240. {
  241. "url": "https://www.patreon.com/phpdoctrine",
  242. "type": "patreon"
  243. },
  244. {
  245. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  246. "type": "tidelift"
  247. }
  248. ],
  249. "time": "2025-03-22T10:17:19+00:00"
  250. },
  251. {
  252. "name": "doctrine/dbal",
  253. "version": "3.10.0",
  254. "source": {
  255. "type": "git",
  256. "url": "https://github.com/doctrine/dbal.git",
  257. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214"
  258. },
  259. "dist": {
  260. "type": "zip",
  261. "url": "https://api.github.com/repos/doctrine/dbal/zipball/1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  262. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  263. "shasum": ""
  264. },
  265. "require": {
  266. "composer-runtime-api": "^2",
  267. "doctrine/deprecations": "^0.5.3|^1",
  268. "doctrine/event-manager": "^1|^2",
  269. "php": "^7.4 || ^8.0",
  270. "psr/cache": "^1|^2|^3",
  271. "psr/log": "^1|^2|^3"
  272. },
  273. "conflict": {
  274. "doctrine/cache": "< 1.11"
  275. },
  276. "require-dev": {
  277. "doctrine/cache": "^1.11|^2.0",
  278. "doctrine/coding-standard": "13.0.0",
  279. "fig/log-test": "^1",
  280. "jetbrains/phpstorm-stubs": "2023.1",
  281. "phpstan/phpstan": "2.1.17",
  282. "phpstan/phpstan-strict-rules": "^2",
  283. "phpunit/phpunit": "9.6.23",
  284. "slevomat/coding-standard": "8.16.2",
  285. "squizlabs/php_codesniffer": "3.13.1",
  286. "symfony/cache": "^5.4|^6.0|^7.0",
  287. "symfony/console": "^4.4|^5.4|^6.0|^7.0"
  288. },
  289. "suggest": {
  290. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  291. },
  292. "bin": [
  293. "bin/doctrine-dbal"
  294. ],
  295. "type": "library",
  296. "autoload": {
  297. "psr-4": {
  298. "Doctrine\\DBAL\\": "src"
  299. }
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "authors": [
  306. {
  307. "name": "Guilherme Blanco",
  308. "email": "guilhermeblanco@gmail.com"
  309. },
  310. {
  311. "name": "Roman Borschel",
  312. "email": "roman@code-factory.org"
  313. },
  314. {
  315. "name": "Benjamin Eberlei",
  316. "email": "kontakt@beberlei.de"
  317. },
  318. {
  319. "name": "Jonathan Wage",
  320. "email": "jonwage@gmail.com"
  321. }
  322. ],
  323. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  324. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  325. "keywords": [
  326. "abstraction",
  327. "database",
  328. "db2",
  329. "dbal",
  330. "mariadb",
  331. "mssql",
  332. "mysql",
  333. "oci8",
  334. "oracle",
  335. "pdo",
  336. "pgsql",
  337. "postgresql",
  338. "queryobject",
  339. "sasql",
  340. "sql",
  341. "sqlite",
  342. "sqlserver",
  343. "sqlsrv"
  344. ],
  345. "support": {
  346. "issues": "https://github.com/doctrine/dbal/issues",
  347. "source": "https://github.com/doctrine/dbal/tree/3.10.0"
  348. },
  349. "funding": [
  350. {
  351. "url": "https://www.doctrine-project.org/sponsorship.html",
  352. "type": "custom"
  353. },
  354. {
  355. "url": "https://www.patreon.com/phpdoctrine",
  356. "type": "patreon"
  357. },
  358. {
  359. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  360. "type": "tidelift"
  361. }
  362. ],
  363. "time": "2025-07-10T21:11:04+00:00"
  364. },
  365. {
  366. "name": "doctrine/deprecations",
  367. "version": "1.1.5",
  368. "source": {
  369. "type": "git",
  370. "url": "https://github.com/doctrine/deprecations.git",
  371. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  372. },
  373. "dist": {
  374. "type": "zip",
  375. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  376. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  377. "shasum": ""
  378. },
  379. "require": {
  380. "php": "^7.1 || ^8.0"
  381. },
  382. "conflict": {
  383. "phpunit/phpunit": "<=7.5 || >=13"
  384. },
  385. "require-dev": {
  386. "doctrine/coding-standard": "^9 || ^12 || ^13",
  387. "phpstan/phpstan": "1.4.10 || 2.1.11",
  388. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  389. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  390. "psr/log": "^1 || ^2 || ^3"
  391. },
  392. "suggest": {
  393. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  394. },
  395. "type": "library",
  396. "autoload": {
  397. "psr-4": {
  398. "Doctrine\\Deprecations\\": "src"
  399. }
  400. },
  401. "notification-url": "https://packagist.org/downloads/",
  402. "license": [
  403. "MIT"
  404. ],
  405. "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.",
  406. "homepage": "https://www.doctrine-project.org/",
  407. "support": {
  408. "issues": "https://github.com/doctrine/deprecations/issues",
  409. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  410. },
  411. "time": "2025-04-07T20:06:18+00:00"
  412. },
  413. {
  414. "name": "doctrine/doctrine-bundle",
  415. "version": "2.15.0",
  416. "source": {
  417. "type": "git",
  418. "url": "https://github.com/doctrine/DoctrineBundle.git",
  419. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6"
  420. },
  421. "dist": {
  422. "type": "zip",
  423. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d88294521a1bca943240adca65fa19ca8a7288c6",
  424. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6",
  425. "shasum": ""
  426. },
  427. "require": {
  428. "doctrine/dbal": "^3.7.0 || ^4.0",
  429. "doctrine/persistence": "^3.1 || ^4",
  430. "doctrine/sql-formatter": "^1.0.1",
  431. "php": "^8.1",
  432. "symfony/cache": "^6.4 || ^7.0",
  433. "symfony/config": "^6.4 || ^7.0",
  434. "symfony/console": "^6.4 || ^7.0",
  435. "symfony/dependency-injection": "^6.4 || ^7.0",
  436. "symfony/deprecation-contracts": "^2.1 || ^3",
  437. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  438. "symfony/framework-bundle": "^6.4 || ^7.0",
  439. "symfony/service-contracts": "^2.5 || ^3"
  440. },
  441. "conflict": {
  442. "doctrine/annotations": ">=3.0",
  443. "doctrine/cache": "< 1.11",
  444. "doctrine/orm": "<2.17 || >=4.0",
  445. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  446. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  447. },
  448. "require-dev": {
  449. "doctrine/annotations": "^1 || ^2",
  450. "doctrine/cache": "^1.11 || ^2.0",
  451. "doctrine/coding-standard": "^13",
  452. "doctrine/deprecations": "^1.0",
  453. "doctrine/orm": "^2.17 || ^3.1",
  454. "friendsofphp/proxy-manager-lts": "^1.0",
  455. "phpstan/phpstan": "2.1.1",
  456. "phpstan/phpstan-phpunit": "2.0.3",
  457. "phpstan/phpstan-strict-rules": "^2",
  458. "phpunit/phpunit": "^9.6.22",
  459. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  460. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  461. "symfony/messenger": "^6.4 || ^7.0",
  462. "symfony/phpunit-bridge": "^7.2",
  463. "symfony/property-info": "^6.4 || ^7.0",
  464. "symfony/security-bundle": "^6.4 || ^7.0",
  465. "symfony/stopwatch": "^6.4 || ^7.0",
  466. "symfony/string": "^6.4 || ^7.0",
  467. "symfony/twig-bridge": "^6.4 || ^7.0",
  468. "symfony/validator": "^6.4 || ^7.0",
  469. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  470. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  471. "symfony/yaml": "^6.4 || ^7.0",
  472. "twig/twig": "^2.13 || ^3.0.4"
  473. },
  474. "suggest": {
  475. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  476. "ext-pdo": "*",
  477. "symfony/web-profiler-bundle": "To use the data collector."
  478. },
  479. "type": "symfony-bundle",
  480. "autoload": {
  481. "psr-4": {
  482. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  483. }
  484. },
  485. "notification-url": "https://packagist.org/downloads/",
  486. "license": [
  487. "MIT"
  488. ],
  489. "authors": [
  490. {
  491. "name": "Fabien Potencier",
  492. "email": "fabien@symfony.com"
  493. },
  494. {
  495. "name": "Benjamin Eberlei",
  496. "email": "kontakt@beberlei.de"
  497. },
  498. {
  499. "name": "Symfony Community",
  500. "homepage": "https://symfony.com/contributors"
  501. },
  502. {
  503. "name": "Doctrine Project",
  504. "homepage": "https://www.doctrine-project.org/"
  505. }
  506. ],
  507. "description": "Symfony DoctrineBundle",
  508. "homepage": "https://www.doctrine-project.org",
  509. "keywords": [
  510. "database",
  511. "dbal",
  512. "orm",
  513. "persistence"
  514. ],
  515. "support": {
  516. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  517. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.15.0"
  518. },
  519. "funding": [
  520. {
  521. "url": "https://www.doctrine-project.org/sponsorship.html",
  522. "type": "custom"
  523. },
  524. {
  525. "url": "https://www.patreon.com/phpdoctrine",
  526. "type": "patreon"
  527. },
  528. {
  529. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  530. "type": "tidelift"
  531. }
  532. ],
  533. "time": "2025-06-16T19:53:58+00:00"
  534. },
  535. {
  536. "name": "doctrine/doctrine-migrations-bundle",
  537. "version": "3.4.2",
  538. "source": {
  539. "type": "git",
  540. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  541. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9"
  542. },
  543. "dist": {
  544. "type": "zip",
  545. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  546. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  547. "shasum": ""
  548. },
  549. "require": {
  550. "doctrine/doctrine-bundle": "^2.4",
  551. "doctrine/migrations": "^3.2",
  552. "php": "^7.2 || ^8.0",
  553. "symfony/deprecation-contracts": "^2.1 || ^3",
  554. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  555. },
  556. "require-dev": {
  557. "composer/semver": "^3.0",
  558. "doctrine/coding-standard": "^12",
  559. "doctrine/orm": "^2.6 || ^3",
  560. "phpstan/phpstan": "^1.4 || ^2",
  561. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  562. "phpstan/phpstan-phpunit": "^1 || ^2",
  563. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  564. "phpstan/phpstan-symfony": "^1.3 || ^2",
  565. "phpunit/phpunit": "^8.5 || ^9.5",
  566. "symfony/phpunit-bridge": "^6.3 || ^7",
  567. "symfony/var-exporter": "^5.4 || ^6 || ^7"
  568. },
  569. "type": "symfony-bundle",
  570. "autoload": {
  571. "psr-4": {
  572. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Fabien Potencier",
  582. "email": "fabien@symfony.com"
  583. },
  584. {
  585. "name": "Doctrine Project",
  586. "homepage": "https://www.doctrine-project.org"
  587. },
  588. {
  589. "name": "Symfony Community",
  590. "homepage": "https://symfony.com/contributors"
  591. }
  592. ],
  593. "description": "Symfony DoctrineMigrationsBundle",
  594. "homepage": "https://www.doctrine-project.org",
  595. "keywords": [
  596. "dbal",
  597. "migrations",
  598. "schema"
  599. ],
  600. "support": {
  601. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  602. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.4.2"
  603. },
  604. "funding": [
  605. {
  606. "url": "https://www.doctrine-project.org/sponsorship.html",
  607. "type": "custom"
  608. },
  609. {
  610. "url": "https://www.patreon.com/phpdoctrine",
  611. "type": "patreon"
  612. },
  613. {
  614. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  615. "type": "tidelift"
  616. }
  617. ],
  618. "time": "2025-03-11T17:36:26+00:00"
  619. },
  620. {
  621. "name": "doctrine/event-manager",
  622. "version": "2.0.1",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/doctrine/event-manager.git",
  626. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  631. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  632. "shasum": ""
  633. },
  634. "require": {
  635. "php": "^8.1"
  636. },
  637. "conflict": {
  638. "doctrine/common": "<2.9"
  639. },
  640. "require-dev": {
  641. "doctrine/coding-standard": "^12",
  642. "phpstan/phpstan": "^1.8.8",
  643. "phpunit/phpunit": "^10.5",
  644. "vimeo/psalm": "^5.24"
  645. },
  646. "type": "library",
  647. "autoload": {
  648. "psr-4": {
  649. "Doctrine\\Common\\": "src"
  650. }
  651. },
  652. "notification-url": "https://packagist.org/downloads/",
  653. "license": [
  654. "MIT"
  655. ],
  656. "authors": [
  657. {
  658. "name": "Guilherme Blanco",
  659. "email": "guilhermeblanco@gmail.com"
  660. },
  661. {
  662. "name": "Roman Borschel",
  663. "email": "roman@code-factory.org"
  664. },
  665. {
  666. "name": "Benjamin Eberlei",
  667. "email": "kontakt@beberlei.de"
  668. },
  669. {
  670. "name": "Jonathan Wage",
  671. "email": "jonwage@gmail.com"
  672. },
  673. {
  674. "name": "Johannes Schmitt",
  675. "email": "schmittjoh@gmail.com"
  676. },
  677. {
  678. "name": "Marco Pivetta",
  679. "email": "ocramius@gmail.com"
  680. }
  681. ],
  682. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  683. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  684. "keywords": [
  685. "event",
  686. "event dispatcher",
  687. "event manager",
  688. "event system",
  689. "events"
  690. ],
  691. "support": {
  692. "issues": "https://github.com/doctrine/event-manager/issues",
  693. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  694. },
  695. "funding": [
  696. {
  697. "url": "https://www.doctrine-project.org/sponsorship.html",
  698. "type": "custom"
  699. },
  700. {
  701. "url": "https://www.patreon.com/phpdoctrine",
  702. "type": "patreon"
  703. },
  704. {
  705. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  706. "type": "tidelift"
  707. }
  708. ],
  709. "time": "2024-05-22T20:47:39+00:00"
  710. },
  711. {
  712. "name": "doctrine/inflector",
  713. "version": "2.0.10",
  714. "source": {
  715. "type": "git",
  716. "url": "https://github.com/doctrine/inflector.git",
  717. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  718. },
  719. "dist": {
  720. "type": "zip",
  721. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  722. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  723. "shasum": ""
  724. },
  725. "require": {
  726. "php": "^7.2 || ^8.0"
  727. },
  728. "require-dev": {
  729. "doctrine/coding-standard": "^11.0",
  730. "phpstan/phpstan": "^1.8",
  731. "phpstan/phpstan-phpunit": "^1.1",
  732. "phpstan/phpstan-strict-rules": "^1.3",
  733. "phpunit/phpunit": "^8.5 || ^9.5",
  734. "vimeo/psalm": "^4.25 || ^5.4"
  735. },
  736. "type": "library",
  737. "autoload": {
  738. "psr-4": {
  739. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  740. }
  741. },
  742. "notification-url": "https://packagist.org/downloads/",
  743. "license": [
  744. "MIT"
  745. ],
  746. "authors": [
  747. {
  748. "name": "Guilherme Blanco",
  749. "email": "guilhermeblanco@gmail.com"
  750. },
  751. {
  752. "name": "Roman Borschel",
  753. "email": "roman@code-factory.org"
  754. },
  755. {
  756. "name": "Benjamin Eberlei",
  757. "email": "kontakt@beberlei.de"
  758. },
  759. {
  760. "name": "Jonathan Wage",
  761. "email": "jonwage@gmail.com"
  762. },
  763. {
  764. "name": "Johannes Schmitt",
  765. "email": "schmittjoh@gmail.com"
  766. }
  767. ],
  768. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  769. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  770. "keywords": [
  771. "inflection",
  772. "inflector",
  773. "lowercase",
  774. "manipulation",
  775. "php",
  776. "plural",
  777. "singular",
  778. "strings",
  779. "uppercase",
  780. "words"
  781. ],
  782. "support": {
  783. "issues": "https://github.com/doctrine/inflector/issues",
  784. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  785. },
  786. "funding": [
  787. {
  788. "url": "https://www.doctrine-project.org/sponsorship.html",
  789. "type": "custom"
  790. },
  791. {
  792. "url": "https://www.patreon.com/phpdoctrine",
  793. "type": "patreon"
  794. },
  795. {
  796. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  797. "type": "tidelift"
  798. }
  799. ],
  800. "time": "2024-02-18T20:23:39+00:00"
  801. },
  802. {
  803. "name": "doctrine/instantiator",
  804. "version": "2.0.0",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/doctrine/instantiator.git",
  808. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  813. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  814. "shasum": ""
  815. },
  816. "require": {
  817. "php": "^8.1"
  818. },
  819. "require-dev": {
  820. "doctrine/coding-standard": "^11",
  821. "ext-pdo": "*",
  822. "ext-phar": "*",
  823. "phpbench/phpbench": "^1.2",
  824. "phpstan/phpstan": "^1.9.4",
  825. "phpstan/phpstan-phpunit": "^1.3",
  826. "phpunit/phpunit": "^9.5.27",
  827. "vimeo/psalm": "^5.4"
  828. },
  829. "type": "library",
  830. "autoload": {
  831. "psr-4": {
  832. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Marco Pivetta",
  842. "email": "ocramius@gmail.com",
  843. "homepage": "https://ocramius.github.io/"
  844. }
  845. ],
  846. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  847. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  848. "keywords": [
  849. "constructor",
  850. "instantiate"
  851. ],
  852. "support": {
  853. "issues": "https://github.com/doctrine/instantiator/issues",
  854. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  855. },
  856. "funding": [
  857. {
  858. "url": "https://www.doctrine-project.org/sponsorship.html",
  859. "type": "custom"
  860. },
  861. {
  862. "url": "https://www.patreon.com/phpdoctrine",
  863. "type": "patreon"
  864. },
  865. {
  866. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  867. "type": "tidelift"
  868. }
  869. ],
  870. "time": "2022-12-30T00:23:10+00:00"
  871. },
  872. {
  873. "name": "doctrine/lexer",
  874. "version": "3.0.1",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/doctrine/lexer.git",
  878. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  883. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": "^8.1"
  888. },
  889. "require-dev": {
  890. "doctrine/coding-standard": "^12",
  891. "phpstan/phpstan": "^1.10",
  892. "phpunit/phpunit": "^10.5",
  893. "psalm/plugin-phpunit": "^0.18.3",
  894. "vimeo/psalm": "^5.21"
  895. },
  896. "type": "library",
  897. "autoload": {
  898. "psr-4": {
  899. "Doctrine\\Common\\Lexer\\": "src"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "MIT"
  905. ],
  906. "authors": [
  907. {
  908. "name": "Guilherme Blanco",
  909. "email": "guilhermeblanco@gmail.com"
  910. },
  911. {
  912. "name": "Roman Borschel",
  913. "email": "roman@code-factory.org"
  914. },
  915. {
  916. "name": "Johannes Schmitt",
  917. "email": "schmittjoh@gmail.com"
  918. }
  919. ],
  920. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  921. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  922. "keywords": [
  923. "annotations",
  924. "docblock",
  925. "lexer",
  926. "parser",
  927. "php"
  928. ],
  929. "support": {
  930. "issues": "https://github.com/doctrine/lexer/issues",
  931. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  932. },
  933. "funding": [
  934. {
  935. "url": "https://www.doctrine-project.org/sponsorship.html",
  936. "type": "custom"
  937. },
  938. {
  939. "url": "https://www.patreon.com/phpdoctrine",
  940. "type": "patreon"
  941. },
  942. {
  943. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  944. "type": "tidelift"
  945. }
  946. ],
  947. "time": "2024-02-05T11:56:58+00:00"
  948. },
  949. {
  950. "name": "doctrine/migrations",
  951. "version": "3.9.1",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/doctrine/migrations.git",
  955. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/doctrine/migrations/zipball/0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  960. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "composer-runtime-api": "^2",
  965. "doctrine/dbal": "^3.6 || ^4",
  966. "doctrine/deprecations": "^0.5.3 || ^1",
  967. "doctrine/event-manager": "^1.2 || ^2.0",
  968. "php": "^8.1",
  969. "psr/log": "^1.1.3 || ^2 || ^3",
  970. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  971. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  972. "symfony/var-exporter": "^6.2 || ^7.0"
  973. },
  974. "conflict": {
  975. "doctrine/orm": "<2.12 || >=4"
  976. },
  977. "require-dev": {
  978. "doctrine/coding-standard": "^12",
  979. "doctrine/orm": "^2.13 || ^3",
  980. "doctrine/persistence": "^2 || ^3 || ^4",
  981. "doctrine/sql-formatter": "^1.0",
  982. "ext-pdo_sqlite": "*",
  983. "fig/log-test": "^1",
  984. "phpstan/phpstan": "^1.10",
  985. "phpstan/phpstan-deprecation-rules": "^1.1",
  986. "phpstan/phpstan-phpunit": "^1.3",
  987. "phpstan/phpstan-strict-rules": "^1.4",
  988. "phpstan/phpstan-symfony": "^1.3",
  989. "phpunit/phpunit": "^10.3",
  990. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  991. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  992. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  993. },
  994. "suggest": {
  995. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  996. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  997. },
  998. "bin": [
  999. "bin/doctrine-migrations"
  1000. ],
  1001. "type": "library",
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Doctrine\\Migrations\\": "src"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Benjamin Eberlei",
  1014. "email": "kontakt@beberlei.de"
  1015. },
  1016. {
  1017. "name": "Jonathan Wage",
  1018. "email": "jonwage@gmail.com"
  1019. },
  1020. {
  1021. "name": "Michael Simonson",
  1022. "email": "contact@mikesimonson.com"
  1023. }
  1024. ],
  1025. "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.",
  1026. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1027. "keywords": [
  1028. "database",
  1029. "dbal",
  1030. "migrations"
  1031. ],
  1032. "support": {
  1033. "issues": "https://github.com/doctrine/migrations/issues",
  1034. "source": "https://github.com/doctrine/migrations/tree/3.9.1"
  1035. },
  1036. "funding": [
  1037. {
  1038. "url": "https://www.doctrine-project.org/sponsorship.html",
  1039. "type": "custom"
  1040. },
  1041. {
  1042. "url": "https://www.patreon.com/phpdoctrine",
  1043. "type": "patreon"
  1044. },
  1045. {
  1046. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1047. "type": "tidelift"
  1048. }
  1049. ],
  1050. "time": "2025-06-27T07:19:23+00:00"
  1051. },
  1052. {
  1053. "name": "doctrine/orm",
  1054. "version": "3.5.0",
  1055. "source": {
  1056. "type": "git",
  1057. "url": "https://github.com/doctrine/orm.git",
  1058. "reference": "6deec3655ba3e8f15280aac11e264225854d2369"
  1059. },
  1060. "dist": {
  1061. "type": "zip",
  1062. "url": "https://api.github.com/repos/doctrine/orm/zipball/6deec3655ba3e8f15280aac11e264225854d2369",
  1063. "reference": "6deec3655ba3e8f15280aac11e264225854d2369",
  1064. "shasum": ""
  1065. },
  1066. "require": {
  1067. "composer-runtime-api": "^2",
  1068. "doctrine/collections": "^2.2",
  1069. "doctrine/dbal": "^3.8.2 || ^4",
  1070. "doctrine/deprecations": "^0.5.3 || ^1",
  1071. "doctrine/event-manager": "^1.2 || ^2",
  1072. "doctrine/inflector": "^1.4 || ^2.0",
  1073. "doctrine/instantiator": "^1.3 || ^2",
  1074. "doctrine/lexer": "^3",
  1075. "doctrine/persistence": "^3.3.1 || ^4",
  1076. "ext-ctype": "*",
  1077. "php": "^8.1",
  1078. "psr/cache": "^1 || ^2 || ^3",
  1079. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1080. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1081. },
  1082. "require-dev": {
  1083. "doctrine/coding-standard": "^13.0",
  1084. "phpbench/phpbench": "^1.0",
  1085. "phpdocumentor/guides-cli": "^1.4",
  1086. "phpstan/extension-installer": "^1.4",
  1087. "phpstan/phpstan": "2.0.3",
  1088. "phpstan/phpstan-deprecation-rules": "^2",
  1089. "phpunit/phpunit": "^10.4.0",
  1090. "psr/log": "^1 || ^2 || ^3",
  1091. "squizlabs/php_codesniffer": "3.12.0",
  1092. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1093. },
  1094. "suggest": {
  1095. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1096. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1097. },
  1098. "type": "library",
  1099. "autoload": {
  1100. "psr-4": {
  1101. "Doctrine\\ORM\\": "src"
  1102. }
  1103. },
  1104. "notification-url": "https://packagist.org/downloads/",
  1105. "license": [
  1106. "MIT"
  1107. ],
  1108. "authors": [
  1109. {
  1110. "name": "Guilherme Blanco",
  1111. "email": "guilhermeblanco@gmail.com"
  1112. },
  1113. {
  1114. "name": "Roman Borschel",
  1115. "email": "roman@code-factory.org"
  1116. },
  1117. {
  1118. "name": "Benjamin Eberlei",
  1119. "email": "kontakt@beberlei.de"
  1120. },
  1121. {
  1122. "name": "Jonathan Wage",
  1123. "email": "jonwage@gmail.com"
  1124. },
  1125. {
  1126. "name": "Marco Pivetta",
  1127. "email": "ocramius@gmail.com"
  1128. }
  1129. ],
  1130. "description": "Object-Relational-Mapper for PHP",
  1131. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1132. "keywords": [
  1133. "database",
  1134. "orm"
  1135. ],
  1136. "support": {
  1137. "issues": "https://github.com/doctrine/orm/issues",
  1138. "source": "https://github.com/doctrine/orm/tree/3.5.0"
  1139. },
  1140. "time": "2025-07-01T17:40:53+00:00"
  1141. },
  1142. {
  1143. "name": "doctrine/persistence",
  1144. "version": "4.0.0",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/doctrine/persistence.git",
  1148. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1153. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "doctrine/event-manager": "^1 || ^2",
  1158. "php": "^8.1",
  1159. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1160. },
  1161. "conflict": {
  1162. "doctrine/common": "<2.10"
  1163. },
  1164. "require-dev": {
  1165. "doctrine/coding-standard": "^12",
  1166. "phpstan/phpstan": "1.12.7",
  1167. "phpstan/phpstan-phpunit": "^1",
  1168. "phpstan/phpstan-strict-rules": "^1.1",
  1169. "phpunit/phpunit": "^9.6",
  1170. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1171. },
  1172. "type": "library",
  1173. "autoload": {
  1174. "psr-4": {
  1175. "Doctrine\\Persistence\\": "src/Persistence"
  1176. }
  1177. },
  1178. "notification-url": "https://packagist.org/downloads/",
  1179. "license": [
  1180. "MIT"
  1181. ],
  1182. "authors": [
  1183. {
  1184. "name": "Guilherme Blanco",
  1185. "email": "guilhermeblanco@gmail.com"
  1186. },
  1187. {
  1188. "name": "Roman Borschel",
  1189. "email": "roman@code-factory.org"
  1190. },
  1191. {
  1192. "name": "Benjamin Eberlei",
  1193. "email": "kontakt@beberlei.de"
  1194. },
  1195. {
  1196. "name": "Jonathan Wage",
  1197. "email": "jonwage@gmail.com"
  1198. },
  1199. {
  1200. "name": "Johannes Schmitt",
  1201. "email": "schmittjoh@gmail.com"
  1202. },
  1203. {
  1204. "name": "Marco Pivetta",
  1205. "email": "ocramius@gmail.com"
  1206. }
  1207. ],
  1208. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1209. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1210. "keywords": [
  1211. "mapper",
  1212. "object",
  1213. "odm",
  1214. "orm",
  1215. "persistence"
  1216. ],
  1217. "support": {
  1218. "issues": "https://github.com/doctrine/persistence/issues",
  1219. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1220. },
  1221. "funding": [
  1222. {
  1223. "url": "https://www.doctrine-project.org/sponsorship.html",
  1224. "type": "custom"
  1225. },
  1226. {
  1227. "url": "https://www.patreon.com/phpdoctrine",
  1228. "type": "patreon"
  1229. },
  1230. {
  1231. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1232. "type": "tidelift"
  1233. }
  1234. ],
  1235. "time": "2024-11-01T21:49:07+00:00"
  1236. },
  1237. {
  1238. "name": "doctrine/sql-formatter",
  1239. "version": "1.5.2",
  1240. "source": {
  1241. "type": "git",
  1242. "url": "https://github.com/doctrine/sql-formatter.git",
  1243. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1248. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1249. "shasum": ""
  1250. },
  1251. "require": {
  1252. "php": "^8.1"
  1253. },
  1254. "require-dev": {
  1255. "doctrine/coding-standard": "^12",
  1256. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1257. "phpstan/phpstan": "^1.10",
  1258. "phpunit/phpunit": "^10.5"
  1259. },
  1260. "bin": [
  1261. "bin/sql-formatter"
  1262. ],
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\SqlFormatter\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Jeremy Dorn",
  1276. "email": "jeremy@jeremydorn.com",
  1277. "homepage": "https://jeremydorn.com/"
  1278. }
  1279. ],
  1280. "description": "a PHP SQL highlighting library",
  1281. "homepage": "https://github.com/doctrine/sql-formatter/",
  1282. "keywords": [
  1283. "highlight",
  1284. "sql"
  1285. ],
  1286. "support": {
  1287. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1288. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1289. },
  1290. "time": "2025-01-24T11:45:48+00:00"
  1291. },
  1292. {
  1293. "name": "egulias/email-validator",
  1294. "version": "4.0.4",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/egulias/EmailValidator.git",
  1298. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1303. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "doctrine/lexer": "^2.0 || ^3.0",
  1308. "php": ">=8.1",
  1309. "symfony/polyfill-intl-idn": "^1.26"
  1310. },
  1311. "require-dev": {
  1312. "phpunit/phpunit": "^10.2",
  1313. "vimeo/psalm": "^5.12"
  1314. },
  1315. "suggest": {
  1316. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-master": "4.0.x-dev"
  1322. }
  1323. },
  1324. "autoload": {
  1325. "psr-4": {
  1326. "Egulias\\EmailValidator\\": "src"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Eduardo Gulias Davis"
  1336. }
  1337. ],
  1338. "description": "A library for validating emails against several RFCs",
  1339. "homepage": "https://github.com/egulias/EmailValidator",
  1340. "keywords": [
  1341. "email",
  1342. "emailvalidation",
  1343. "emailvalidator",
  1344. "validation",
  1345. "validator"
  1346. ],
  1347. "support": {
  1348. "issues": "https://github.com/egulias/EmailValidator/issues",
  1349. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1350. },
  1351. "funding": [
  1352. {
  1353. "url": "https://github.com/egulias",
  1354. "type": "github"
  1355. }
  1356. ],
  1357. "time": "2025-03-06T22:45:56+00:00"
  1358. },
  1359. {
  1360. "name": "giggsey/libphonenumber-for-php",
  1361. "version": "9.0.10",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1365. "reference": "727af7896f37194f7417def96b2140481668a28c"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/727af7896f37194f7417def96b2140481668a28c",
  1370. "reference": "727af7896f37194f7417def96b2140481668a28c",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "giggsey/locale": "^2.7",
  1375. "php": "^8.1",
  1376. "symfony/polyfill-mbstring": "^1.31"
  1377. },
  1378. "replace": {
  1379. "giggsey/libphonenumber-for-php-lite": "self.version"
  1380. },
  1381. "require-dev": {
  1382. "ext-dom": "*",
  1383. "friendsofphp/php-cs-fixer": "^3.71",
  1384. "infection/infection": "^0.28.0",
  1385. "nette/php-generator": "^4.1",
  1386. "php-coveralls/php-coveralls": "^2.7",
  1387. "phpstan/extension-installer": "^1.4.3",
  1388. "phpstan/phpstan": "^2.1.7",
  1389. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  1390. "phpstan/phpstan-phpunit": "^2.0.4",
  1391. "phpstan/phpstan-strict-rules": "^2.0.3",
  1392. "phpunit/phpunit": "^10.5.45",
  1393. "symfony/console": "^6.4",
  1394. "symfony/filesystem": "^6.4",
  1395. "symfony/process": "^6.4"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-master": "9.x-dev"
  1401. }
  1402. },
  1403. "autoload": {
  1404. "psr-4": {
  1405. "libphonenumber\\": "src/"
  1406. }
  1407. },
  1408. "notification-url": "https://packagist.org/downloads/",
  1409. "license": [
  1410. "Apache-2.0"
  1411. ],
  1412. "authors": [
  1413. {
  1414. "name": "Joshua Gigg",
  1415. "email": "giggsey@gmail.com",
  1416. "homepage": "https://giggsey.com/"
  1417. }
  1418. ],
  1419. "description": "A library for parsing, formatting, storing and validating international phone numbers, a PHP Port of Google's libphonenumber.",
  1420. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1421. "keywords": [
  1422. "geocoding",
  1423. "geolocation",
  1424. "libphonenumber",
  1425. "mobile",
  1426. "phonenumber",
  1427. "validation"
  1428. ],
  1429. "support": {
  1430. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1431. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1432. },
  1433. "time": "2025-07-18T06:47:04+00:00"
  1434. },
  1435. {
  1436. "name": "giggsey/locale",
  1437. "version": "2.8.0",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/giggsey/Locale.git",
  1441. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/giggsey/Locale/zipball/1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1446. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1447. "shasum": ""
  1448. },
  1449. "require": {
  1450. "php": "^8.1"
  1451. },
  1452. "require-dev": {
  1453. "ext-json": "*",
  1454. "friendsofphp/php-cs-fixer": "^3.66",
  1455. "pear/pear-core-minimal": "^1.10",
  1456. "pear/pear_exception": "^1.0",
  1457. "pear/versioncontrol_git": "^0.5",
  1458. "phing/phing": "^2.17.4",
  1459. "php-coveralls/php-coveralls": "^2.7",
  1460. "phpunit/phpunit": "^10.5.45",
  1461. "symfony/console": "^6.4",
  1462. "symfony/filesystem": "6.4",
  1463. "symfony/finder": "^6.4",
  1464. "symfony/process": "^6.4",
  1465. "symfony/var-exporter": "^6.4"
  1466. },
  1467. "type": "library",
  1468. "autoload": {
  1469. "psr-4": {
  1470. "Giggsey\\Locale\\": "src/"
  1471. }
  1472. },
  1473. "notification-url": "https://packagist.org/downloads/",
  1474. "license": [
  1475. "MIT"
  1476. ],
  1477. "authors": [
  1478. {
  1479. "name": "Joshua Gigg",
  1480. "email": "giggsey@gmail.com",
  1481. "homepage": "https://giggsey.com/"
  1482. }
  1483. ],
  1484. "description": "Locale functions required by libphonenumber-for-php",
  1485. "support": {
  1486. "issues": "https://github.com/giggsey/Locale/issues",
  1487. "source": "https://github.com/giggsey/Locale/tree/2.8.0"
  1488. },
  1489. "time": "2025-03-20T14:25:27+00:00"
  1490. },
  1491. {
  1492. "name": "league/commonmark",
  1493. "version": "2.7.1",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/thephpleague/commonmark.git",
  1497. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca",
  1502. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "ext-mbstring": "*",
  1507. "league/config": "^1.1.1",
  1508. "php": "^7.4 || ^8.0",
  1509. "psr/event-dispatcher": "^1.0",
  1510. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1511. "symfony/polyfill-php80": "^1.16"
  1512. },
  1513. "require-dev": {
  1514. "cebe/markdown": "^1.0",
  1515. "commonmark/cmark": "0.31.1",
  1516. "commonmark/commonmark.js": "0.31.1",
  1517. "composer/package-versions-deprecated": "^1.8",
  1518. "embed/embed": "^4.4",
  1519. "erusev/parsedown": "^1.0",
  1520. "ext-json": "*",
  1521. "github/gfm": "0.29.0",
  1522. "michelf/php-markdown": "^1.4 || ^2.0",
  1523. "nyholm/psr7": "^1.5",
  1524. "phpstan/phpstan": "^1.8.2",
  1525. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1526. "scrutinizer/ocular": "^1.8.1",
  1527. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  1528. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  1529. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  1530. "unleashedtech/php-coding-standard": "^3.1.1",
  1531. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  1532. },
  1533. "suggest": {
  1534. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1535. },
  1536. "type": "library",
  1537. "extra": {
  1538. "branch-alias": {
  1539. "dev-main": "2.8-dev"
  1540. }
  1541. },
  1542. "autoload": {
  1543. "psr-4": {
  1544. "League\\CommonMark\\": "src"
  1545. }
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "BSD-3-Clause"
  1550. ],
  1551. "authors": [
  1552. {
  1553. "name": "Colin O'Dell",
  1554. "email": "colinodell@gmail.com",
  1555. "homepage": "https://www.colinodell.com",
  1556. "role": "Lead Developer"
  1557. }
  1558. ],
  1559. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1560. "homepage": "https://commonmark.thephpleague.com",
  1561. "keywords": [
  1562. "commonmark",
  1563. "flavored",
  1564. "gfm",
  1565. "github",
  1566. "github-flavored",
  1567. "markdown",
  1568. "md",
  1569. "parser"
  1570. ],
  1571. "support": {
  1572. "docs": "https://commonmark.thephpleague.com/",
  1573. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1574. "issues": "https://github.com/thephpleague/commonmark/issues",
  1575. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1576. "source": "https://github.com/thephpleague/commonmark"
  1577. },
  1578. "funding": [
  1579. {
  1580. "url": "https://www.colinodell.com/sponsor",
  1581. "type": "custom"
  1582. },
  1583. {
  1584. "url": "https://www.paypal.me/colinpodell/10.00",
  1585. "type": "custom"
  1586. },
  1587. {
  1588. "url": "https://github.com/colinodell",
  1589. "type": "github"
  1590. },
  1591. {
  1592. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1593. "type": "tidelift"
  1594. }
  1595. ],
  1596. "time": "2025-07-20T12:47:49+00:00"
  1597. },
  1598. {
  1599. "name": "league/config",
  1600. "version": "v1.2.0",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/thephpleague/config.git",
  1604. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1609. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "dflydev/dot-access-data": "^3.0.1",
  1614. "nette/schema": "^1.2",
  1615. "php": "^7.4 || ^8.0"
  1616. },
  1617. "require-dev": {
  1618. "phpstan/phpstan": "^1.8.2",
  1619. "phpunit/phpunit": "^9.5.5",
  1620. "scrutinizer/ocular": "^1.8.1",
  1621. "unleashedtech/php-coding-standard": "^3.1",
  1622. "vimeo/psalm": "^4.7.3"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-main": "1.2-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "League\\Config\\": "src"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "BSD-3-Clause"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Colin O'Dell",
  1642. "email": "colinodell@gmail.com",
  1643. "homepage": "https://www.colinodell.com",
  1644. "role": "Lead Developer"
  1645. }
  1646. ],
  1647. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1648. "homepage": "https://config.thephpleague.com",
  1649. "keywords": [
  1650. "array",
  1651. "config",
  1652. "configuration",
  1653. "dot",
  1654. "dot-access",
  1655. "nested",
  1656. "schema"
  1657. ],
  1658. "support": {
  1659. "docs": "https://config.thephpleague.com/",
  1660. "issues": "https://github.com/thephpleague/config/issues",
  1661. "rss": "https://github.com/thephpleague/config/releases.atom",
  1662. "source": "https://github.com/thephpleague/config"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://www.colinodell.com/sponsor",
  1667. "type": "custom"
  1668. },
  1669. {
  1670. "url": "https://www.paypal.me/colinpodell/10.00",
  1671. "type": "custom"
  1672. },
  1673. {
  1674. "url": "https://github.com/colinodell",
  1675. "type": "github"
  1676. }
  1677. ],
  1678. "time": "2022-12-11T20:36:23+00:00"
  1679. },
  1680. {
  1681. "name": "monolog/monolog",
  1682. "version": "3.9.0",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://github.com/Seldaek/monolog.git",
  1686. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1691. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1692. "shasum": ""
  1693. },
  1694. "require": {
  1695. "php": ">=8.1",
  1696. "psr/log": "^2.0 || ^3.0"
  1697. },
  1698. "provide": {
  1699. "psr/log-implementation": "3.0.0"
  1700. },
  1701. "require-dev": {
  1702. "aws/aws-sdk-php": "^3.0",
  1703. "doctrine/couchdb": "~1.0@dev",
  1704. "elasticsearch/elasticsearch": "^7 || ^8",
  1705. "ext-json": "*",
  1706. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1707. "guzzlehttp/guzzle": "^7.4.5",
  1708. "guzzlehttp/psr7": "^2.2",
  1709. "mongodb/mongodb": "^1.8",
  1710. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1711. "php-console/php-console": "^3.1.8",
  1712. "phpstan/phpstan": "^2",
  1713. "phpstan/phpstan-deprecation-rules": "^2",
  1714. "phpstan/phpstan-strict-rules": "^2",
  1715. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1716. "predis/predis": "^1.1 || ^2",
  1717. "rollbar/rollbar": "^4.0",
  1718. "ruflin/elastica": "^7 || ^8",
  1719. "symfony/mailer": "^5.4 || ^6",
  1720. "symfony/mime": "^5.4 || ^6"
  1721. },
  1722. "suggest": {
  1723. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1724. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1725. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1726. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1727. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1728. "ext-mbstring": "Allow to work properly with unicode symbols",
  1729. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1730. "ext-openssl": "Required to send log messages using SSL",
  1731. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1732. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1733. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1734. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1735. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1736. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1737. },
  1738. "type": "library",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-main": "3.x-dev"
  1742. }
  1743. },
  1744. "autoload": {
  1745. "psr-4": {
  1746. "Monolog\\": "src/Monolog"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "MIT"
  1752. ],
  1753. "authors": [
  1754. {
  1755. "name": "Jordi Boggiano",
  1756. "email": "j.boggiano@seld.be",
  1757. "homepage": "https://seld.be"
  1758. }
  1759. ],
  1760. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1761. "homepage": "https://github.com/Seldaek/monolog",
  1762. "keywords": [
  1763. "log",
  1764. "logging",
  1765. "psr-3"
  1766. ],
  1767. "support": {
  1768. "issues": "https://github.com/Seldaek/monolog/issues",
  1769. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  1770. },
  1771. "funding": [
  1772. {
  1773. "url": "https://github.com/Seldaek",
  1774. "type": "github"
  1775. },
  1776. {
  1777. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1778. "type": "tidelift"
  1779. }
  1780. ],
  1781. "time": "2025-03-24T10:02:05+00:00"
  1782. },
  1783. {
  1784. "name": "nette/schema",
  1785. "version": "v1.3.2",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/nette/schema.git",
  1789. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  1794. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "nette/utils": "^4.0",
  1799. "php": "8.1 - 8.4"
  1800. },
  1801. "require-dev": {
  1802. "nette/tester": "^2.5.2",
  1803. "phpstan/phpstan-nette": "^1.0",
  1804. "tracy/tracy": "^2.8"
  1805. },
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "1.3-dev"
  1810. }
  1811. },
  1812. "autoload": {
  1813. "classmap": [
  1814. "src/"
  1815. ]
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "BSD-3-Clause",
  1820. "GPL-2.0-only",
  1821. "GPL-3.0-only"
  1822. ],
  1823. "authors": [
  1824. {
  1825. "name": "David Grudl",
  1826. "homepage": "https://davidgrudl.com"
  1827. },
  1828. {
  1829. "name": "Nette Community",
  1830. "homepage": "https://nette.org/contributors"
  1831. }
  1832. ],
  1833. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1834. "homepage": "https://nette.org",
  1835. "keywords": [
  1836. "config",
  1837. "nette"
  1838. ],
  1839. "support": {
  1840. "issues": "https://github.com/nette/schema/issues",
  1841. "source": "https://github.com/nette/schema/tree/v1.3.2"
  1842. },
  1843. "time": "2024-10-06T23:10:23+00:00"
  1844. },
  1845. {
  1846. "name": "nette/utils",
  1847. "version": "v4.0.7",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/nette/utils.git",
  1851. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  1856. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "8.0 - 8.4"
  1861. },
  1862. "conflict": {
  1863. "nette/finder": "<3",
  1864. "nette/schema": "<1.2.2"
  1865. },
  1866. "require-dev": {
  1867. "jetbrains/phpstorm-attributes": "dev-master",
  1868. "nette/tester": "^2.5",
  1869. "phpstan/phpstan": "^1.0",
  1870. "tracy/tracy": "^2.9"
  1871. },
  1872. "suggest": {
  1873. "ext-gd": "to use Image",
  1874. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1875. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1876. "ext-json": "to use Nette\\Utils\\Json",
  1877. "ext-mbstring": "to use Strings::lower() etc...",
  1878. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  1879. },
  1880. "type": "library",
  1881. "extra": {
  1882. "branch-alias": {
  1883. "dev-master": "4.0-dev"
  1884. }
  1885. },
  1886. "autoload": {
  1887. "classmap": [
  1888. "src/"
  1889. ]
  1890. },
  1891. "notification-url": "https://packagist.org/downloads/",
  1892. "license": [
  1893. "BSD-3-Clause",
  1894. "GPL-2.0-only",
  1895. "GPL-3.0-only"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "David Grudl",
  1900. "homepage": "https://davidgrudl.com"
  1901. },
  1902. {
  1903. "name": "Nette Community",
  1904. "homepage": "https://nette.org/contributors"
  1905. }
  1906. ],
  1907. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1908. "homepage": "https://nette.org",
  1909. "keywords": [
  1910. "array",
  1911. "core",
  1912. "datetime",
  1913. "images",
  1914. "json",
  1915. "nette",
  1916. "paginator",
  1917. "password",
  1918. "slugify",
  1919. "string",
  1920. "unicode",
  1921. "utf-8",
  1922. "utility",
  1923. "validation"
  1924. ],
  1925. "support": {
  1926. "issues": "https://github.com/nette/utils/issues",
  1927. "source": "https://github.com/nette/utils/tree/v4.0.7"
  1928. },
  1929. "time": "2025-06-03T04:55:08+00:00"
  1930. },
  1931. {
  1932. "name": "odolbeau/phone-number-bundle",
  1933. "version": "v4.2.0",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  1937. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/0952c8d10a245d2e6d13263c97715679654cd7e4",
  1942. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "giggsey/libphonenumber-for-php": "^9.0.2",
  1947. "php": ">=8.1",
  1948. "symfony/config": "^6.4 || ^7.2",
  1949. "symfony/deprecation-contracts": "^2.5|^3",
  1950. "symfony/framework-bundle": "^6.4 || ^7.2",
  1951. "symfony/intl": "^6.4 || ^7.2",
  1952. "symfony/polyfill-mbstring": "^1.28"
  1953. },
  1954. "replace": {
  1955. "misd/phone-number-bundle": "self.version"
  1956. },
  1957. "require-dev": {
  1958. "doctrine/doctrine-bundle": "^1.12|^2.0",
  1959. "phpspec/prophecy": "^1.20",
  1960. "phpspec/prophecy-phpunit": "^2.3",
  1961. "phpunit/phpunit": "^9.6.11",
  1962. "symfony/form": "^6.4 || ^7.2",
  1963. "symfony/phpunit-bridge": "^7.2",
  1964. "symfony/property-access": "^6.4 || ^7.2",
  1965. "symfony/serializer": "^6.4 || ^7.2",
  1966. "symfony/twig-bundle": "^6.4 || ^7.2",
  1967. "symfony/validator": "^6.4 || ^7.2"
  1968. },
  1969. "suggest": {
  1970. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  1971. "symfony/form": "Add a data transformer",
  1972. "symfony/property-access": "Choose a path in the validation constraint",
  1973. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  1974. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  1975. "symfony/validator": "Add a validation constraint"
  1976. },
  1977. "type": "symfony-bundle",
  1978. "extra": {
  1979. "branch-alias": {
  1980. "dev-master": "3.10.x-dev"
  1981. }
  1982. },
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Misd\\PhoneNumberBundle\\": "src/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "description": "Integrates libphonenumber into your Symfony application",
  1993. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  1994. "keywords": [
  1995. "bundle",
  1996. "libphonenumber",
  1997. "phone-number",
  1998. "phonenumber",
  1999. "telephone number"
  2000. ],
  2001. "support": {
  2002. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  2003. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v4.2.0"
  2004. },
  2005. "time": "2025-07-15T20:50:09+00:00"
  2006. },
  2007. {
  2008. "name": "phpdocumentor/reflection-common",
  2009. "version": "2.2.0",
  2010. "source": {
  2011. "type": "git",
  2012. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2013. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2014. },
  2015. "dist": {
  2016. "type": "zip",
  2017. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2018. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2019. "shasum": ""
  2020. },
  2021. "require": {
  2022. "php": "^7.2 || ^8.0"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-2.x": "2.x-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "phpDocumentor\\Reflection\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Jaap van Otterdijk",
  2042. "email": "opensource@ijaap.nl"
  2043. }
  2044. ],
  2045. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2046. "homepage": "http://www.phpdoc.org",
  2047. "keywords": [
  2048. "FQSEN",
  2049. "phpDocumentor",
  2050. "phpdoc",
  2051. "reflection",
  2052. "static analysis"
  2053. ],
  2054. "support": {
  2055. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2056. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2057. },
  2058. "time": "2020-06-27T09:03:43+00:00"
  2059. },
  2060. {
  2061. "name": "phpdocumentor/reflection-docblock",
  2062. "version": "5.6.2",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2066. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  2071. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  2072. "shasum": ""
  2073. },
  2074. "require": {
  2075. "doctrine/deprecations": "^1.1",
  2076. "ext-filter": "*",
  2077. "php": "^7.4 || ^8.0",
  2078. "phpdocumentor/reflection-common": "^2.2",
  2079. "phpdocumentor/type-resolver": "^1.7",
  2080. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2081. "webmozart/assert": "^1.9.1"
  2082. },
  2083. "require-dev": {
  2084. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2085. "phpstan/extension-installer": "^1.1",
  2086. "phpstan/phpstan": "^1.8",
  2087. "phpstan/phpstan-mockery": "^1.1",
  2088. "phpstan/phpstan-webmozart-assert": "^1.2",
  2089. "phpunit/phpunit": "^9.5",
  2090. "psalm/phar": "^5.26"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "5.x-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "psr-4": {
  2100. "phpDocumentor\\Reflection\\": "src"
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "MIT"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "Mike van Riel",
  2110. "email": "me@mikevanriel.com"
  2111. },
  2112. {
  2113. "name": "Jaap van Otterdijk",
  2114. "email": "opensource@ijaap.nl"
  2115. }
  2116. ],
  2117. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2118. "support": {
  2119. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2120. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  2121. },
  2122. "time": "2025-04-13T19:20:35+00:00"
  2123. },
  2124. {
  2125. "name": "phpdocumentor/type-resolver",
  2126. "version": "1.10.0",
  2127. "source": {
  2128. "type": "git",
  2129. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2130. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  2131. },
  2132. "dist": {
  2133. "type": "zip",
  2134. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2135. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2136. "shasum": ""
  2137. },
  2138. "require": {
  2139. "doctrine/deprecations": "^1.0",
  2140. "php": "^7.3 || ^8.0",
  2141. "phpdocumentor/reflection-common": "^2.0",
  2142. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2143. },
  2144. "require-dev": {
  2145. "ext-tokenizer": "*",
  2146. "phpbench/phpbench": "^1.2",
  2147. "phpstan/extension-installer": "^1.1",
  2148. "phpstan/phpstan": "^1.8",
  2149. "phpstan/phpstan-phpunit": "^1.1",
  2150. "phpunit/phpunit": "^9.5",
  2151. "rector/rector": "^0.13.9",
  2152. "vimeo/psalm": "^4.25"
  2153. },
  2154. "type": "library",
  2155. "extra": {
  2156. "branch-alias": {
  2157. "dev-1.x": "1.x-dev"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "psr-4": {
  2162. "phpDocumentor\\Reflection\\": "src"
  2163. }
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Mike van Riel",
  2172. "email": "me@mikevanriel.com"
  2173. }
  2174. ],
  2175. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2176. "support": {
  2177. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2178. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  2179. },
  2180. "time": "2024-11-09T15:12:26+00:00"
  2181. },
  2182. {
  2183. "name": "phpstan/phpdoc-parser",
  2184. "version": "2.2.0",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2188. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  2193. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "php": "^7.4 || ^8.0"
  2198. },
  2199. "require-dev": {
  2200. "doctrine/annotations": "^2.0",
  2201. "nikic/php-parser": "^5.3.0",
  2202. "php-parallel-lint/php-parallel-lint": "^1.2",
  2203. "phpstan/extension-installer": "^1.0",
  2204. "phpstan/phpstan": "^2.0",
  2205. "phpstan/phpstan-phpunit": "^2.0",
  2206. "phpstan/phpstan-strict-rules": "^2.0",
  2207. "phpunit/phpunit": "^9.6",
  2208. "symfony/process": "^5.2"
  2209. },
  2210. "type": "library",
  2211. "autoload": {
  2212. "psr-4": {
  2213. "PHPStan\\PhpDocParser\\": [
  2214. "src/"
  2215. ]
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2223. "support": {
  2224. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2225. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  2226. },
  2227. "time": "2025-07-13T07:04:09+00:00"
  2228. },
  2229. {
  2230. "name": "psr/cache",
  2231. "version": "3.0.0",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/php-fig/cache.git",
  2235. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2240. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2241. "shasum": ""
  2242. },
  2243. "require": {
  2244. "php": ">=8.0.0"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "branch-alias": {
  2249. "dev-master": "1.0.x-dev"
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-4": {
  2254. "Psr\\Cache\\": "src/"
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "MIT"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "PHP-FIG",
  2264. "homepage": "https://www.php-fig.org/"
  2265. }
  2266. ],
  2267. "description": "Common interface for caching libraries",
  2268. "keywords": [
  2269. "cache",
  2270. "psr",
  2271. "psr-6"
  2272. ],
  2273. "support": {
  2274. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2275. },
  2276. "time": "2021-02-03T23:26:27+00:00"
  2277. },
  2278. {
  2279. "name": "psr/clock",
  2280. "version": "1.0.0",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/php-fig/clock.git",
  2284. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2289. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2290. "shasum": ""
  2291. },
  2292. "require": {
  2293. "php": "^7.0 || ^8.0"
  2294. },
  2295. "type": "library",
  2296. "autoload": {
  2297. "psr-4": {
  2298. "Psr\\Clock\\": "src/"
  2299. }
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "PHP-FIG",
  2308. "homepage": "https://www.php-fig.org/"
  2309. }
  2310. ],
  2311. "description": "Common interface for reading the clock.",
  2312. "homepage": "https://github.com/php-fig/clock",
  2313. "keywords": [
  2314. "clock",
  2315. "now",
  2316. "psr",
  2317. "psr-20",
  2318. "time"
  2319. ],
  2320. "support": {
  2321. "issues": "https://github.com/php-fig/clock/issues",
  2322. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2323. },
  2324. "time": "2022-11-25T14:36:26+00:00"
  2325. },
  2326. {
  2327. "name": "psr/container",
  2328. "version": "2.0.2",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://github.com/php-fig/container.git",
  2332. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2337. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2338. "shasum": ""
  2339. },
  2340. "require": {
  2341. "php": ">=7.4.0"
  2342. },
  2343. "type": "library",
  2344. "extra": {
  2345. "branch-alias": {
  2346. "dev-master": "2.0.x-dev"
  2347. }
  2348. },
  2349. "autoload": {
  2350. "psr-4": {
  2351. "Psr\\Container\\": "src/"
  2352. }
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "MIT"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "PHP-FIG",
  2361. "homepage": "https://www.php-fig.org/"
  2362. }
  2363. ],
  2364. "description": "Common Container Interface (PHP FIG PSR-11)",
  2365. "homepage": "https://github.com/php-fig/container",
  2366. "keywords": [
  2367. "PSR-11",
  2368. "container",
  2369. "container-interface",
  2370. "container-interop",
  2371. "psr"
  2372. ],
  2373. "support": {
  2374. "issues": "https://github.com/php-fig/container/issues",
  2375. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2376. },
  2377. "time": "2021-11-05T16:47:00+00:00"
  2378. },
  2379. {
  2380. "name": "psr/event-dispatcher",
  2381. "version": "1.0.0",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/php-fig/event-dispatcher.git",
  2385. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2390. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "php": ">=7.2.0"
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-master": "1.0.x-dev"
  2400. }
  2401. },
  2402. "autoload": {
  2403. "psr-4": {
  2404. "Psr\\EventDispatcher\\": "src/"
  2405. }
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "PHP-FIG",
  2414. "homepage": "http://www.php-fig.org/"
  2415. }
  2416. ],
  2417. "description": "Standard interfaces for event handling.",
  2418. "keywords": [
  2419. "events",
  2420. "psr",
  2421. "psr-14"
  2422. ],
  2423. "support": {
  2424. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2425. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2426. },
  2427. "time": "2019-01-08T18:20:26+00:00"
  2428. },
  2429. {
  2430. "name": "psr/link",
  2431. "version": "2.0.1",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/php-fig/link.git",
  2435. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2440. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2441. "shasum": ""
  2442. },
  2443. "require": {
  2444. "php": ">=8.0.0"
  2445. },
  2446. "suggest": {
  2447. "fig/link-util": "Provides some useful PSR-13 utilities"
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-master": "2.0.x-dev"
  2453. }
  2454. },
  2455. "autoload": {
  2456. "psr-4": {
  2457. "Psr\\Link\\": "src/"
  2458. }
  2459. },
  2460. "notification-url": "https://packagist.org/downloads/",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "PHP-FIG",
  2467. "homepage": "http://www.php-fig.org/"
  2468. }
  2469. ],
  2470. "description": "Common interfaces for HTTP links",
  2471. "homepage": "https://github.com/php-fig/link",
  2472. "keywords": [
  2473. "http",
  2474. "http-link",
  2475. "link",
  2476. "psr",
  2477. "psr-13",
  2478. "rest"
  2479. ],
  2480. "support": {
  2481. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2482. },
  2483. "time": "2021-03-11T23:00:27+00:00"
  2484. },
  2485. {
  2486. "name": "psr/log",
  2487. "version": "3.0.2",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/php-fig/log.git",
  2491. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2496. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "php": ">=8.0.0"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "3.x-dev"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "psr-4": {
  2510. "Psr\\Log\\": "src"
  2511. }
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "PHP-FIG",
  2520. "homepage": "https://www.php-fig.org/"
  2521. }
  2522. ],
  2523. "description": "Common interface for logging libraries",
  2524. "homepage": "https://github.com/php-fig/log",
  2525. "keywords": [
  2526. "log",
  2527. "psr",
  2528. "psr-3"
  2529. ],
  2530. "support": {
  2531. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2532. },
  2533. "time": "2024-09-11T13:17:53+00:00"
  2534. },
  2535. {
  2536. "name": "symfony/asset",
  2537. "version": "v7.3.0",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://github.com/symfony/asset.git",
  2541. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://api.github.com/repos/symfony/asset/zipball/56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  2546. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  2547. "shasum": ""
  2548. },
  2549. "require": {
  2550. "php": ">=8.2"
  2551. },
  2552. "conflict": {
  2553. "symfony/http-foundation": "<6.4"
  2554. },
  2555. "require-dev": {
  2556. "symfony/http-client": "^6.4|^7.0",
  2557. "symfony/http-foundation": "^6.4|^7.0",
  2558. "symfony/http-kernel": "^6.4|^7.0"
  2559. },
  2560. "type": "library",
  2561. "autoload": {
  2562. "psr-4": {
  2563. "Symfony\\Component\\Asset\\": ""
  2564. },
  2565. "exclude-from-classmap": [
  2566. "/Tests/"
  2567. ]
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "MIT"
  2572. ],
  2573. "authors": [
  2574. {
  2575. "name": "Fabien Potencier",
  2576. "email": "fabien@symfony.com"
  2577. },
  2578. {
  2579. "name": "Symfony Community",
  2580. "homepage": "https://symfony.com/contributors"
  2581. }
  2582. ],
  2583. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2584. "homepage": "https://symfony.com",
  2585. "support": {
  2586. "source": "https://github.com/symfony/asset/tree/v7.3.0"
  2587. },
  2588. "funding": [
  2589. {
  2590. "url": "https://symfony.com/sponsor",
  2591. "type": "custom"
  2592. },
  2593. {
  2594. "url": "https://github.com/fabpot",
  2595. "type": "github"
  2596. },
  2597. {
  2598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2599. "type": "tidelift"
  2600. }
  2601. ],
  2602. "time": "2025-03-05T10:15:41+00:00"
  2603. },
  2604. {
  2605. "name": "symfony/asset-mapper",
  2606. "version": "v7.3.0",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/symfony/asset-mapper.git",
  2610. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/6516f38868b75c4902ea72a9fa44967628375ae7",
  2615. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7",
  2616. "shasum": ""
  2617. },
  2618. "require": {
  2619. "composer/semver": "^3.0",
  2620. "php": ">=8.2",
  2621. "symfony/deprecation-contracts": "^2.1|^3",
  2622. "symfony/filesystem": "^7.1",
  2623. "symfony/http-client": "^6.4|^7.0"
  2624. },
  2625. "conflict": {
  2626. "symfony/framework-bundle": "<6.4"
  2627. },
  2628. "require-dev": {
  2629. "symfony/asset": "^6.4|^7.0",
  2630. "symfony/browser-kit": "^6.4|^7.0",
  2631. "symfony/console": "^6.4|^7.0",
  2632. "symfony/event-dispatcher-contracts": "^3.0",
  2633. "symfony/finder": "^6.4|^7.0",
  2634. "symfony/framework-bundle": "^6.4|^7.0",
  2635. "symfony/http-foundation": "^6.4|^7.0",
  2636. "symfony/http-kernel": "^6.4|^7.0",
  2637. "symfony/process": "^6.4|^7.0",
  2638. "symfony/web-link": "^6.4|^7.0"
  2639. },
  2640. "type": "library",
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Symfony\\Component\\AssetMapper\\": ""
  2644. },
  2645. "exclude-from-classmap": [
  2646. "/Tests/"
  2647. ]
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Fabien Potencier",
  2656. "email": "fabien@symfony.com"
  2657. },
  2658. {
  2659. "name": "Symfony Community",
  2660. "homepage": "https://symfony.com/contributors"
  2661. }
  2662. ],
  2663. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2664. "homepage": "https://symfony.com",
  2665. "support": {
  2666. "source": "https://github.com/symfony/asset-mapper/tree/v7.3.0"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://symfony.com/sponsor",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://github.com/fabpot",
  2675. "type": "github"
  2676. },
  2677. {
  2678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2679. "type": "tidelift"
  2680. }
  2681. ],
  2682. "time": "2025-05-24T14:05:12+00:00"
  2683. },
  2684. {
  2685. "name": "symfony/cache",
  2686. "version": "v7.3.1",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://github.com/symfony/cache.git",
  2690. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2695. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2696. "shasum": ""
  2697. },
  2698. "require": {
  2699. "php": ">=8.2",
  2700. "psr/cache": "^2.0|^3.0",
  2701. "psr/log": "^1.1|^2|^3",
  2702. "symfony/cache-contracts": "^3.6",
  2703. "symfony/deprecation-contracts": "^2.5|^3.0",
  2704. "symfony/service-contracts": "^2.5|^3",
  2705. "symfony/var-exporter": "^6.4|^7.0"
  2706. },
  2707. "conflict": {
  2708. "doctrine/dbal": "<3.6",
  2709. "symfony/dependency-injection": "<6.4",
  2710. "symfony/http-kernel": "<6.4",
  2711. "symfony/var-dumper": "<6.4"
  2712. },
  2713. "provide": {
  2714. "psr/cache-implementation": "2.0|3.0",
  2715. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2716. "symfony/cache-implementation": "1.1|2.0|3.0"
  2717. },
  2718. "require-dev": {
  2719. "cache/integration-tests": "dev-master",
  2720. "doctrine/dbal": "^3.6|^4",
  2721. "predis/predis": "^1.1|^2.0",
  2722. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2723. "symfony/clock": "^6.4|^7.0",
  2724. "symfony/config": "^6.4|^7.0",
  2725. "symfony/dependency-injection": "^6.4|^7.0",
  2726. "symfony/filesystem": "^6.4|^7.0",
  2727. "symfony/http-kernel": "^6.4|^7.0",
  2728. "symfony/messenger": "^6.4|^7.0",
  2729. "symfony/var-dumper": "^6.4|^7.0"
  2730. },
  2731. "type": "library",
  2732. "autoload": {
  2733. "psr-4": {
  2734. "Symfony\\Component\\Cache\\": ""
  2735. },
  2736. "classmap": [
  2737. "Traits/ValueWrapper.php"
  2738. ],
  2739. "exclude-from-classmap": [
  2740. "/Tests/"
  2741. ]
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "Nicolas Grekas",
  2750. "email": "p@tchwork.com"
  2751. },
  2752. {
  2753. "name": "Symfony Community",
  2754. "homepage": "https://symfony.com/contributors"
  2755. }
  2756. ],
  2757. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2758. "homepage": "https://symfony.com",
  2759. "keywords": [
  2760. "caching",
  2761. "psr6"
  2762. ],
  2763. "support": {
  2764. "source": "https://github.com/symfony/cache/tree/v7.3.1"
  2765. },
  2766. "funding": [
  2767. {
  2768. "url": "https://symfony.com/sponsor",
  2769. "type": "custom"
  2770. },
  2771. {
  2772. "url": "https://github.com/fabpot",
  2773. "type": "github"
  2774. },
  2775. {
  2776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2777. "type": "tidelift"
  2778. }
  2779. ],
  2780. "time": "2025-06-27T19:55:54+00:00"
  2781. },
  2782. {
  2783. "name": "symfony/cache-contracts",
  2784. "version": "v3.6.0",
  2785. "source": {
  2786. "type": "git",
  2787. "url": "https://github.com/symfony/cache-contracts.git",
  2788. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  2789. },
  2790. "dist": {
  2791. "type": "zip",
  2792. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2793. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2794. "shasum": ""
  2795. },
  2796. "require": {
  2797. "php": ">=8.1",
  2798. "psr/cache": "^3.0"
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "thanks": {
  2803. "url": "https://github.com/symfony/contracts",
  2804. "name": "symfony/contracts"
  2805. },
  2806. "branch-alias": {
  2807. "dev-main": "3.6-dev"
  2808. }
  2809. },
  2810. "autoload": {
  2811. "psr-4": {
  2812. "Symfony\\Contracts\\Cache\\": ""
  2813. }
  2814. },
  2815. "notification-url": "https://packagist.org/downloads/",
  2816. "license": [
  2817. "MIT"
  2818. ],
  2819. "authors": [
  2820. {
  2821. "name": "Nicolas Grekas",
  2822. "email": "p@tchwork.com"
  2823. },
  2824. {
  2825. "name": "Symfony Community",
  2826. "homepage": "https://symfony.com/contributors"
  2827. }
  2828. ],
  2829. "description": "Generic abstractions related to caching",
  2830. "homepage": "https://symfony.com",
  2831. "keywords": [
  2832. "abstractions",
  2833. "contracts",
  2834. "decoupling",
  2835. "interfaces",
  2836. "interoperability",
  2837. "standards"
  2838. ],
  2839. "support": {
  2840. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  2841. },
  2842. "funding": [
  2843. {
  2844. "url": "https://symfony.com/sponsor",
  2845. "type": "custom"
  2846. },
  2847. {
  2848. "url": "https://github.com/fabpot",
  2849. "type": "github"
  2850. },
  2851. {
  2852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2853. "type": "tidelift"
  2854. }
  2855. ],
  2856. "time": "2025-03-13T15:25:07+00:00"
  2857. },
  2858. {
  2859. "name": "symfony/clock",
  2860. "version": "v7.3.0",
  2861. "source": {
  2862. "type": "git",
  2863. "url": "https://github.com/symfony/clock.git",
  2864. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  2865. },
  2866. "dist": {
  2867. "type": "zip",
  2868. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2869. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2870. "shasum": ""
  2871. },
  2872. "require": {
  2873. "php": ">=8.2",
  2874. "psr/clock": "^1.0",
  2875. "symfony/polyfill-php83": "^1.28"
  2876. },
  2877. "provide": {
  2878. "psr/clock-implementation": "1.0"
  2879. },
  2880. "type": "library",
  2881. "autoload": {
  2882. "files": [
  2883. "Resources/now.php"
  2884. ],
  2885. "psr-4": {
  2886. "Symfony\\Component\\Clock\\": ""
  2887. },
  2888. "exclude-from-classmap": [
  2889. "/Tests/"
  2890. ]
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Nicolas Grekas",
  2899. "email": "p@tchwork.com"
  2900. },
  2901. {
  2902. "name": "Symfony Community",
  2903. "homepage": "https://symfony.com/contributors"
  2904. }
  2905. ],
  2906. "description": "Decouples applications from the system clock",
  2907. "homepage": "https://symfony.com",
  2908. "keywords": [
  2909. "clock",
  2910. "psr20",
  2911. "time"
  2912. ],
  2913. "support": {
  2914. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  2915. },
  2916. "funding": [
  2917. {
  2918. "url": "https://symfony.com/sponsor",
  2919. "type": "custom"
  2920. },
  2921. {
  2922. "url": "https://github.com/fabpot",
  2923. "type": "github"
  2924. },
  2925. {
  2926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2927. "type": "tidelift"
  2928. }
  2929. ],
  2930. "time": "2024-09-25T14:21:43+00:00"
  2931. },
  2932. {
  2933. "name": "symfony/config",
  2934. "version": "v7.3.0",
  2935. "source": {
  2936. "type": "git",
  2937. "url": "https://github.com/symfony/config.git",
  2938. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc"
  2939. },
  2940. "dist": {
  2941. "type": "zip",
  2942. "url": "https://api.github.com/repos/symfony/config/zipball/ba62ae565f1327c2f6366726312ed828c85853bc",
  2943. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc",
  2944. "shasum": ""
  2945. },
  2946. "require": {
  2947. "php": ">=8.2",
  2948. "symfony/deprecation-contracts": "^2.5|^3",
  2949. "symfony/filesystem": "^7.1",
  2950. "symfony/polyfill-ctype": "~1.8"
  2951. },
  2952. "conflict": {
  2953. "symfony/finder": "<6.4",
  2954. "symfony/service-contracts": "<2.5"
  2955. },
  2956. "require-dev": {
  2957. "symfony/event-dispatcher": "^6.4|^7.0",
  2958. "symfony/finder": "^6.4|^7.0",
  2959. "symfony/messenger": "^6.4|^7.0",
  2960. "symfony/service-contracts": "^2.5|^3",
  2961. "symfony/yaml": "^6.4|^7.0"
  2962. },
  2963. "type": "library",
  2964. "autoload": {
  2965. "psr-4": {
  2966. "Symfony\\Component\\Config\\": ""
  2967. },
  2968. "exclude-from-classmap": [
  2969. "/Tests/"
  2970. ]
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Fabien Potencier",
  2979. "email": "fabien@symfony.com"
  2980. },
  2981. {
  2982. "name": "Symfony Community",
  2983. "homepage": "https://symfony.com/contributors"
  2984. }
  2985. ],
  2986. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2987. "homepage": "https://symfony.com",
  2988. "support": {
  2989. "source": "https://github.com/symfony/config/tree/v7.3.0"
  2990. },
  2991. "funding": [
  2992. {
  2993. "url": "https://symfony.com/sponsor",
  2994. "type": "custom"
  2995. },
  2996. {
  2997. "url": "https://github.com/fabpot",
  2998. "type": "github"
  2999. },
  3000. {
  3001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3002. "type": "tidelift"
  3003. }
  3004. ],
  3005. "time": "2025-05-15T09:04:05+00:00"
  3006. },
  3007. {
  3008. "name": "symfony/console",
  3009. "version": "v7.3.1",
  3010. "source": {
  3011. "type": "git",
  3012. "url": "https://github.com/symfony/console.git",
  3013. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  3014. },
  3015. "dist": {
  3016. "type": "zip",
  3017. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  3018. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  3019. "shasum": ""
  3020. },
  3021. "require": {
  3022. "php": ">=8.2",
  3023. "symfony/deprecation-contracts": "^2.5|^3",
  3024. "symfony/polyfill-mbstring": "~1.0",
  3025. "symfony/service-contracts": "^2.5|^3",
  3026. "symfony/string": "^7.2"
  3027. },
  3028. "conflict": {
  3029. "symfony/dependency-injection": "<6.4",
  3030. "symfony/dotenv": "<6.4",
  3031. "symfony/event-dispatcher": "<6.4",
  3032. "symfony/lock": "<6.4",
  3033. "symfony/process": "<6.4"
  3034. },
  3035. "provide": {
  3036. "psr/log-implementation": "1.0|2.0|3.0"
  3037. },
  3038. "require-dev": {
  3039. "psr/log": "^1|^2|^3",
  3040. "symfony/config": "^6.4|^7.0",
  3041. "symfony/dependency-injection": "^6.4|^7.0",
  3042. "symfony/event-dispatcher": "^6.4|^7.0",
  3043. "symfony/http-foundation": "^6.4|^7.0",
  3044. "symfony/http-kernel": "^6.4|^7.0",
  3045. "symfony/lock": "^6.4|^7.0",
  3046. "symfony/messenger": "^6.4|^7.0",
  3047. "symfony/process": "^6.4|^7.0",
  3048. "symfony/stopwatch": "^6.4|^7.0",
  3049. "symfony/var-dumper": "^6.4|^7.0"
  3050. },
  3051. "type": "library",
  3052. "autoload": {
  3053. "psr-4": {
  3054. "Symfony\\Component\\Console\\": ""
  3055. },
  3056. "exclude-from-classmap": [
  3057. "/Tests/"
  3058. ]
  3059. },
  3060. "notification-url": "https://packagist.org/downloads/",
  3061. "license": [
  3062. "MIT"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Fabien Potencier",
  3067. "email": "fabien@symfony.com"
  3068. },
  3069. {
  3070. "name": "Symfony Community",
  3071. "homepage": "https://symfony.com/contributors"
  3072. }
  3073. ],
  3074. "description": "Eases the creation of beautiful and testable command line interfaces",
  3075. "homepage": "https://symfony.com",
  3076. "keywords": [
  3077. "cli",
  3078. "command-line",
  3079. "console",
  3080. "terminal"
  3081. ],
  3082. "support": {
  3083. "source": "https://github.com/symfony/console/tree/v7.3.1"
  3084. },
  3085. "funding": [
  3086. {
  3087. "url": "https://symfony.com/sponsor",
  3088. "type": "custom"
  3089. },
  3090. {
  3091. "url": "https://github.com/fabpot",
  3092. "type": "github"
  3093. },
  3094. {
  3095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3096. "type": "tidelift"
  3097. }
  3098. ],
  3099. "time": "2025-06-27T19:55:54+00:00"
  3100. },
  3101. {
  3102. "name": "symfony/dependency-injection",
  3103. "version": "v7.3.1",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/symfony/dependency-injection.git",
  3107. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  3112. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=8.2",
  3117. "psr/container": "^1.1|^2.0",
  3118. "symfony/deprecation-contracts": "^2.5|^3",
  3119. "symfony/service-contracts": "^3.5",
  3120. "symfony/var-exporter": "^6.4.20|^7.2.5"
  3121. },
  3122. "conflict": {
  3123. "ext-psr": "<1.1|>=2",
  3124. "symfony/config": "<6.4",
  3125. "symfony/finder": "<6.4",
  3126. "symfony/yaml": "<6.4"
  3127. },
  3128. "provide": {
  3129. "psr/container-implementation": "1.1|2.0",
  3130. "symfony/service-implementation": "1.1|2.0|3.0"
  3131. },
  3132. "require-dev": {
  3133. "symfony/config": "^6.4|^7.0",
  3134. "symfony/expression-language": "^6.4|^7.0",
  3135. "symfony/yaml": "^6.4|^7.0"
  3136. },
  3137. "type": "library",
  3138. "autoload": {
  3139. "psr-4": {
  3140. "Symfony\\Component\\DependencyInjection\\": ""
  3141. },
  3142. "exclude-from-classmap": [
  3143. "/Tests/"
  3144. ]
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Fabien Potencier",
  3153. "email": "fabien@symfony.com"
  3154. },
  3155. {
  3156. "name": "Symfony Community",
  3157. "homepage": "https://symfony.com/contributors"
  3158. }
  3159. ],
  3160. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3161. "homepage": "https://symfony.com",
  3162. "support": {
  3163. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.1"
  3164. },
  3165. "funding": [
  3166. {
  3167. "url": "https://symfony.com/sponsor",
  3168. "type": "custom"
  3169. },
  3170. {
  3171. "url": "https://github.com/fabpot",
  3172. "type": "github"
  3173. },
  3174. {
  3175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3176. "type": "tidelift"
  3177. }
  3178. ],
  3179. "time": "2025-06-24T04:04:43+00:00"
  3180. },
  3181. {
  3182. "name": "symfony/deprecation-contracts",
  3183. "version": "v3.6.0",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/symfony/deprecation-contracts.git",
  3187. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3192. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "php": ">=8.1"
  3197. },
  3198. "type": "library",
  3199. "extra": {
  3200. "thanks": {
  3201. "url": "https://github.com/symfony/contracts",
  3202. "name": "symfony/contracts"
  3203. },
  3204. "branch-alias": {
  3205. "dev-main": "3.6-dev"
  3206. }
  3207. },
  3208. "autoload": {
  3209. "files": [
  3210. "function.php"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Nicolas Grekas",
  3220. "email": "p@tchwork.com"
  3221. },
  3222. {
  3223. "name": "Symfony Community",
  3224. "homepage": "https://symfony.com/contributors"
  3225. }
  3226. ],
  3227. "description": "A generic function and convention to trigger deprecation notices",
  3228. "homepage": "https://symfony.com",
  3229. "support": {
  3230. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  3231. },
  3232. "funding": [
  3233. {
  3234. "url": "https://symfony.com/sponsor",
  3235. "type": "custom"
  3236. },
  3237. {
  3238. "url": "https://github.com/fabpot",
  3239. "type": "github"
  3240. },
  3241. {
  3242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3243. "type": "tidelift"
  3244. }
  3245. ],
  3246. "time": "2024-09-25T14:21:43+00:00"
  3247. },
  3248. {
  3249. "name": "symfony/doctrine-bridge",
  3250. "version": "v7.3.1",
  3251. "source": {
  3252. "type": "git",
  3253. "url": "https://github.com/symfony/doctrine-bridge.git",
  3254. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f"
  3255. },
  3256. "dist": {
  3257. "type": "zip",
  3258. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6c0acb248c46452ae2c15752dc71e72f3335403f",
  3259. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f",
  3260. "shasum": ""
  3261. },
  3262. "require": {
  3263. "doctrine/event-manager": "^2",
  3264. "doctrine/persistence": "^3.1|^4",
  3265. "php": ">=8.2",
  3266. "symfony/deprecation-contracts": "^2.5|^3",
  3267. "symfony/polyfill-ctype": "~1.8",
  3268. "symfony/polyfill-mbstring": "~1.0",
  3269. "symfony/service-contracts": "^2.5|^3"
  3270. },
  3271. "conflict": {
  3272. "doctrine/collections": "<1.8",
  3273. "doctrine/dbal": "<3.6",
  3274. "doctrine/lexer": "<1.1",
  3275. "doctrine/orm": "<2.15",
  3276. "symfony/cache": "<6.4",
  3277. "symfony/dependency-injection": "<6.4",
  3278. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3279. "symfony/http-foundation": "<6.4",
  3280. "symfony/http-kernel": "<6.4",
  3281. "symfony/lock": "<6.4",
  3282. "symfony/messenger": "<6.4",
  3283. "symfony/property-info": "<6.4",
  3284. "symfony/security-bundle": "<6.4",
  3285. "symfony/security-core": "<6.4",
  3286. "symfony/validator": "<6.4"
  3287. },
  3288. "require-dev": {
  3289. "doctrine/collections": "^1.8|^2.0",
  3290. "doctrine/data-fixtures": "^1.1|^2",
  3291. "doctrine/dbal": "^3.6|^4",
  3292. "doctrine/orm": "^2.15|^3",
  3293. "psr/log": "^1|^2|^3",
  3294. "symfony/cache": "^6.4|^7.0",
  3295. "symfony/config": "^6.4|^7.0",
  3296. "symfony/dependency-injection": "^6.4|^7.0",
  3297. "symfony/doctrine-messenger": "^6.4|^7.0",
  3298. "symfony/expression-language": "^6.4|^7.0",
  3299. "symfony/form": "^6.4.6|^7.0.6",
  3300. "symfony/http-kernel": "^6.4|^7.0",
  3301. "symfony/lock": "^6.4|^7.0",
  3302. "symfony/messenger": "^6.4|^7.0",
  3303. "symfony/property-access": "^6.4|^7.0",
  3304. "symfony/property-info": "^6.4|^7.0",
  3305. "symfony/security-core": "^6.4|^7.0",
  3306. "symfony/stopwatch": "^6.4|^7.0",
  3307. "symfony/translation": "^6.4|^7.0",
  3308. "symfony/type-info": "^7.1",
  3309. "symfony/uid": "^6.4|^7.0",
  3310. "symfony/validator": "^6.4|^7.0",
  3311. "symfony/var-dumper": "^6.4|^7.0"
  3312. },
  3313. "type": "symfony-bridge",
  3314. "autoload": {
  3315. "psr-4": {
  3316. "Symfony\\Bridge\\Doctrine\\": ""
  3317. },
  3318. "exclude-from-classmap": [
  3319. "/Tests/"
  3320. ]
  3321. },
  3322. "notification-url": "https://packagist.org/downloads/",
  3323. "license": [
  3324. "MIT"
  3325. ],
  3326. "authors": [
  3327. {
  3328. "name": "Fabien Potencier",
  3329. "email": "fabien@symfony.com"
  3330. },
  3331. {
  3332. "name": "Symfony Community",
  3333. "homepage": "https://symfony.com/contributors"
  3334. }
  3335. ],
  3336. "description": "Provides integration for Doctrine with various Symfony components",
  3337. "homepage": "https://symfony.com",
  3338. "support": {
  3339. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.3.1"
  3340. },
  3341. "funding": [
  3342. {
  3343. "url": "https://symfony.com/sponsor",
  3344. "type": "custom"
  3345. },
  3346. {
  3347. "url": "https://github.com/fabpot",
  3348. "type": "github"
  3349. },
  3350. {
  3351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3352. "type": "tidelift"
  3353. }
  3354. ],
  3355. "time": "2025-06-26T13:02:59+00:00"
  3356. },
  3357. {
  3358. "name": "symfony/doctrine-messenger",
  3359. "version": "v7.3.0",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/symfony/doctrine-messenger.git",
  3363. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/099d9cd03f889c31c90d406fed07f25dc3732487",
  3368. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "doctrine/dbal": "^3.6|^4",
  3373. "php": ">=8.2",
  3374. "symfony/messenger": "^7.2",
  3375. "symfony/service-contracts": "^2.5|^3"
  3376. },
  3377. "conflict": {
  3378. "doctrine/persistence": "<1.3"
  3379. },
  3380. "require-dev": {
  3381. "doctrine/persistence": "^1.3|^2|^3",
  3382. "symfony/property-access": "^6.4|^7.0",
  3383. "symfony/serializer": "^6.4|^7.0"
  3384. },
  3385. "type": "symfony-messenger-bridge",
  3386. "autoload": {
  3387. "psr-4": {
  3388. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3389. },
  3390. "exclude-from-classmap": [
  3391. "/Tests/"
  3392. ]
  3393. },
  3394. "notification-url": "https://packagist.org/downloads/",
  3395. "license": [
  3396. "MIT"
  3397. ],
  3398. "authors": [
  3399. {
  3400. "name": "Fabien Potencier",
  3401. "email": "fabien@symfony.com"
  3402. },
  3403. {
  3404. "name": "Symfony Community",
  3405. "homepage": "https://symfony.com/contributors"
  3406. }
  3407. ],
  3408. "description": "Symfony Doctrine Messenger Bridge",
  3409. "homepage": "https://symfony.com",
  3410. "support": {
  3411. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.3.0"
  3412. },
  3413. "funding": [
  3414. {
  3415. "url": "https://symfony.com/sponsor",
  3416. "type": "custom"
  3417. },
  3418. {
  3419. "url": "https://github.com/fabpot",
  3420. "type": "github"
  3421. },
  3422. {
  3423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3424. "type": "tidelift"
  3425. }
  3426. ],
  3427. "time": "2025-03-26T11:30:13+00:00"
  3428. },
  3429. {
  3430. "name": "symfony/dotenv",
  3431. "version": "v7.3.0",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/symfony/dotenv.git",
  3435. "reference": "28347a897771d0c28e99b75166dd2689099f3045"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/symfony/dotenv/zipball/28347a897771d0c28e99b75166dd2689099f3045",
  3440. "reference": "28347a897771d0c28e99b75166dd2689099f3045",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "php": ">=8.2"
  3445. },
  3446. "conflict": {
  3447. "symfony/console": "<6.4",
  3448. "symfony/process": "<6.4"
  3449. },
  3450. "require-dev": {
  3451. "symfony/console": "^6.4|^7.0",
  3452. "symfony/process": "^6.4|^7.0"
  3453. },
  3454. "type": "library",
  3455. "autoload": {
  3456. "psr-4": {
  3457. "Symfony\\Component\\Dotenv\\": ""
  3458. },
  3459. "exclude-from-classmap": [
  3460. "/Tests/"
  3461. ]
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "Fabien Potencier",
  3470. "email": "fabien@symfony.com"
  3471. },
  3472. {
  3473. "name": "Symfony Community",
  3474. "homepage": "https://symfony.com/contributors"
  3475. }
  3476. ],
  3477. "description": "Registers environment variables from a .env file",
  3478. "homepage": "https://symfony.com",
  3479. "keywords": [
  3480. "dotenv",
  3481. "env",
  3482. "environment"
  3483. ],
  3484. "support": {
  3485. "source": "https://github.com/symfony/dotenv/tree/v7.3.0"
  3486. },
  3487. "funding": [
  3488. {
  3489. "url": "https://symfony.com/sponsor",
  3490. "type": "custom"
  3491. },
  3492. {
  3493. "url": "https://github.com/fabpot",
  3494. "type": "github"
  3495. },
  3496. {
  3497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3498. "type": "tidelift"
  3499. }
  3500. ],
  3501. "time": "2024-11-27T11:18:42+00:00"
  3502. },
  3503. {
  3504. "name": "symfony/error-handler",
  3505. "version": "v7.3.1",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/symfony/error-handler.git",
  3509. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  3514. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "php": ">=8.2",
  3519. "psr/log": "^1|^2|^3",
  3520. "symfony/var-dumper": "^6.4|^7.0"
  3521. },
  3522. "conflict": {
  3523. "symfony/deprecation-contracts": "<2.5",
  3524. "symfony/http-kernel": "<6.4"
  3525. },
  3526. "require-dev": {
  3527. "symfony/console": "^6.4|^7.0",
  3528. "symfony/deprecation-contracts": "^2.5|^3",
  3529. "symfony/http-kernel": "^6.4|^7.0",
  3530. "symfony/serializer": "^6.4|^7.0",
  3531. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  3532. },
  3533. "bin": [
  3534. "Resources/bin/patch-type-declarations"
  3535. ],
  3536. "type": "library",
  3537. "autoload": {
  3538. "psr-4": {
  3539. "Symfony\\Component\\ErrorHandler\\": ""
  3540. },
  3541. "exclude-from-classmap": [
  3542. "/Tests/"
  3543. ]
  3544. },
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "MIT"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "Fabien Potencier",
  3552. "email": "fabien@symfony.com"
  3553. },
  3554. {
  3555. "name": "Symfony Community",
  3556. "homepage": "https://symfony.com/contributors"
  3557. }
  3558. ],
  3559. "description": "Provides tools to manage errors and ease debugging PHP code",
  3560. "homepage": "https://symfony.com",
  3561. "support": {
  3562. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  3563. },
  3564. "funding": [
  3565. {
  3566. "url": "https://symfony.com/sponsor",
  3567. "type": "custom"
  3568. },
  3569. {
  3570. "url": "https://github.com/fabpot",
  3571. "type": "github"
  3572. },
  3573. {
  3574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3575. "type": "tidelift"
  3576. }
  3577. ],
  3578. "time": "2025-06-13T07:48:40+00:00"
  3579. },
  3580. {
  3581. "name": "symfony/event-dispatcher",
  3582. "version": "v7.3.0",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/symfony/event-dispatcher.git",
  3586. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  3591. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "php": ">=8.2",
  3596. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3597. },
  3598. "conflict": {
  3599. "symfony/dependency-injection": "<6.4",
  3600. "symfony/service-contracts": "<2.5"
  3601. },
  3602. "provide": {
  3603. "psr/event-dispatcher-implementation": "1.0",
  3604. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3605. },
  3606. "require-dev": {
  3607. "psr/log": "^1|^2|^3",
  3608. "symfony/config": "^6.4|^7.0",
  3609. "symfony/dependency-injection": "^6.4|^7.0",
  3610. "symfony/error-handler": "^6.4|^7.0",
  3611. "symfony/expression-language": "^6.4|^7.0",
  3612. "symfony/http-foundation": "^6.4|^7.0",
  3613. "symfony/service-contracts": "^2.5|^3",
  3614. "symfony/stopwatch": "^6.4|^7.0"
  3615. },
  3616. "type": "library",
  3617. "autoload": {
  3618. "psr-4": {
  3619. "Symfony\\Component\\EventDispatcher\\": ""
  3620. },
  3621. "exclude-from-classmap": [
  3622. "/Tests/"
  3623. ]
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "Fabien Potencier",
  3632. "email": "fabien@symfony.com"
  3633. },
  3634. {
  3635. "name": "Symfony Community",
  3636. "homepage": "https://symfony.com/contributors"
  3637. }
  3638. ],
  3639. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3640. "homepage": "https://symfony.com",
  3641. "support": {
  3642. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  3643. },
  3644. "funding": [
  3645. {
  3646. "url": "https://symfony.com/sponsor",
  3647. "type": "custom"
  3648. },
  3649. {
  3650. "url": "https://github.com/fabpot",
  3651. "type": "github"
  3652. },
  3653. {
  3654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3655. "type": "tidelift"
  3656. }
  3657. ],
  3658. "time": "2025-04-22T09:11:45+00:00"
  3659. },
  3660. {
  3661. "name": "symfony/event-dispatcher-contracts",
  3662. "version": "v3.6.0",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3666. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  3671. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  3672. "shasum": ""
  3673. },
  3674. "require": {
  3675. "php": ">=8.1",
  3676. "psr/event-dispatcher": "^1"
  3677. },
  3678. "type": "library",
  3679. "extra": {
  3680. "thanks": {
  3681. "url": "https://github.com/symfony/contracts",
  3682. "name": "symfony/contracts"
  3683. },
  3684. "branch-alias": {
  3685. "dev-main": "3.6-dev"
  3686. }
  3687. },
  3688. "autoload": {
  3689. "psr-4": {
  3690. "Symfony\\Contracts\\EventDispatcher\\": ""
  3691. }
  3692. },
  3693. "notification-url": "https://packagist.org/downloads/",
  3694. "license": [
  3695. "MIT"
  3696. ],
  3697. "authors": [
  3698. {
  3699. "name": "Nicolas Grekas",
  3700. "email": "p@tchwork.com"
  3701. },
  3702. {
  3703. "name": "Symfony Community",
  3704. "homepage": "https://symfony.com/contributors"
  3705. }
  3706. ],
  3707. "description": "Generic abstractions related to dispatching event",
  3708. "homepage": "https://symfony.com",
  3709. "keywords": [
  3710. "abstractions",
  3711. "contracts",
  3712. "decoupling",
  3713. "interfaces",
  3714. "interoperability",
  3715. "standards"
  3716. ],
  3717. "support": {
  3718. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  3719. },
  3720. "funding": [
  3721. {
  3722. "url": "https://symfony.com/sponsor",
  3723. "type": "custom"
  3724. },
  3725. {
  3726. "url": "https://github.com/fabpot",
  3727. "type": "github"
  3728. },
  3729. {
  3730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3731. "type": "tidelift"
  3732. }
  3733. ],
  3734. "time": "2024-09-25T14:21:43+00:00"
  3735. },
  3736. {
  3737. "name": "symfony/expression-language",
  3738. "version": "v7.3.0",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/symfony/expression-language.git",
  3742. "reference": "26f4884a455e755e630a5fc372df124a3578da2e"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/symfony/expression-language/zipball/26f4884a455e755e630a5fc372df124a3578da2e",
  3747. "reference": "26f4884a455e755e630a5fc372df124a3578da2e",
  3748. "shasum": ""
  3749. },
  3750. "require": {
  3751. "php": ">=8.2",
  3752. "symfony/cache": "^6.4|^7.0",
  3753. "symfony/deprecation-contracts": "^2.5|^3",
  3754. "symfony/service-contracts": "^2.5|^3"
  3755. },
  3756. "type": "library",
  3757. "autoload": {
  3758. "psr-4": {
  3759. "Symfony\\Component\\ExpressionLanguage\\": ""
  3760. },
  3761. "exclude-from-classmap": [
  3762. "/Tests/"
  3763. ]
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "authors": [
  3770. {
  3771. "name": "Fabien Potencier",
  3772. "email": "fabien@symfony.com"
  3773. },
  3774. {
  3775. "name": "Symfony Community",
  3776. "homepage": "https://symfony.com/contributors"
  3777. }
  3778. ],
  3779. "description": "Provides an engine that can compile and evaluate expressions",
  3780. "homepage": "https://symfony.com",
  3781. "support": {
  3782. "source": "https://github.com/symfony/expression-language/tree/v7.3.0"
  3783. },
  3784. "funding": [
  3785. {
  3786. "url": "https://symfony.com/sponsor",
  3787. "type": "custom"
  3788. },
  3789. {
  3790. "url": "https://github.com/fabpot",
  3791. "type": "github"
  3792. },
  3793. {
  3794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3795. "type": "tidelift"
  3796. }
  3797. ],
  3798. "time": "2024-10-15T11:52:45+00:00"
  3799. },
  3800. {
  3801. "name": "symfony/filesystem",
  3802. "version": "v7.3.0",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/symfony/filesystem.git",
  3806. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3811. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "php": ">=8.2",
  3816. "symfony/polyfill-ctype": "~1.8",
  3817. "symfony/polyfill-mbstring": "~1.8"
  3818. },
  3819. "require-dev": {
  3820. "symfony/process": "^6.4|^7.0"
  3821. },
  3822. "type": "library",
  3823. "autoload": {
  3824. "psr-4": {
  3825. "Symfony\\Component\\Filesystem\\": ""
  3826. },
  3827. "exclude-from-classmap": [
  3828. "/Tests/"
  3829. ]
  3830. },
  3831. "notification-url": "https://packagist.org/downloads/",
  3832. "license": [
  3833. "MIT"
  3834. ],
  3835. "authors": [
  3836. {
  3837. "name": "Fabien Potencier",
  3838. "email": "fabien@symfony.com"
  3839. },
  3840. {
  3841. "name": "Symfony Community",
  3842. "homepage": "https://symfony.com/contributors"
  3843. }
  3844. ],
  3845. "description": "Provides basic utilities for the filesystem",
  3846. "homepage": "https://symfony.com",
  3847. "support": {
  3848. "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
  3849. },
  3850. "funding": [
  3851. {
  3852. "url": "https://symfony.com/sponsor",
  3853. "type": "custom"
  3854. },
  3855. {
  3856. "url": "https://github.com/fabpot",
  3857. "type": "github"
  3858. },
  3859. {
  3860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3861. "type": "tidelift"
  3862. }
  3863. ],
  3864. "time": "2024-10-25T15:15:23+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/finder",
  3868. "version": "v7.3.0",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/finder.git",
  3872. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3877. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "php": ">=8.2"
  3882. },
  3883. "require-dev": {
  3884. "symfony/filesystem": "^6.4|^7.0"
  3885. },
  3886. "type": "library",
  3887. "autoload": {
  3888. "psr-4": {
  3889. "Symfony\\Component\\Finder\\": ""
  3890. },
  3891. "exclude-from-classmap": [
  3892. "/Tests/"
  3893. ]
  3894. },
  3895. "notification-url": "https://packagist.org/downloads/",
  3896. "license": [
  3897. "MIT"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "Fabien Potencier",
  3902. "email": "fabien@symfony.com"
  3903. },
  3904. {
  3905. "name": "Symfony Community",
  3906. "homepage": "https://symfony.com/contributors"
  3907. }
  3908. ],
  3909. "description": "Finds files and directories via an intuitive fluent interface",
  3910. "homepage": "https://symfony.com",
  3911. "support": {
  3912. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  3913. },
  3914. "funding": [
  3915. {
  3916. "url": "https://symfony.com/sponsor",
  3917. "type": "custom"
  3918. },
  3919. {
  3920. "url": "https://github.com/fabpot",
  3921. "type": "github"
  3922. },
  3923. {
  3924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3925. "type": "tidelift"
  3926. }
  3927. ],
  3928. "time": "2024-12-30T19:00:26+00:00"
  3929. },
  3930. {
  3931. "name": "symfony/flex",
  3932. "version": "v2.8.1",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/symfony/flex.git",
  3936. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/symfony/flex/zipball/423c36e369361003dc31ef11c5f15fb589e52c01",
  3941. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "composer-plugin-api": "^2.1",
  3946. "php": ">=8.0"
  3947. },
  3948. "conflict": {
  3949. "composer/semver": "<1.7.2"
  3950. },
  3951. "require-dev": {
  3952. "composer/composer": "^2.1",
  3953. "symfony/dotenv": "^5.4|^6.0",
  3954. "symfony/filesystem": "^5.4|^6.0",
  3955. "symfony/phpunit-bridge": "^5.4|^6.0",
  3956. "symfony/process": "^5.4|^6.0"
  3957. },
  3958. "type": "composer-plugin",
  3959. "extra": {
  3960. "class": "Symfony\\Flex\\Flex"
  3961. },
  3962. "autoload": {
  3963. "psr-4": {
  3964. "Symfony\\Flex\\": "src"
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Fabien Potencier",
  3974. "email": "fabien.potencier@gmail.com"
  3975. }
  3976. ],
  3977. "description": "Composer plugin for Symfony",
  3978. "support": {
  3979. "issues": "https://github.com/symfony/flex/issues",
  3980. "source": "https://github.com/symfony/flex/tree/v2.8.1"
  3981. },
  3982. "funding": [
  3983. {
  3984. "url": "https://symfony.com/sponsor",
  3985. "type": "custom"
  3986. },
  3987. {
  3988. "url": "https://github.com/fabpot",
  3989. "type": "github"
  3990. },
  3991. {
  3992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3993. "type": "tidelift"
  3994. }
  3995. ],
  3996. "time": "2025-07-05T07:45:19+00:00"
  3997. },
  3998. {
  3999. "name": "symfony/form",
  4000. "version": "v7.3.1",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://github.com/symfony/form.git",
  4004. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a"
  4005. },
  4006. "dist": {
  4007. "type": "zip",
  4008. "url": "https://api.github.com/repos/symfony/form/zipball/e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  4009. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  4010. "shasum": ""
  4011. },
  4012. "require": {
  4013. "php": ">=8.2",
  4014. "symfony/deprecation-contracts": "^2.5|^3",
  4015. "symfony/event-dispatcher": "^6.4|^7.0",
  4016. "symfony/options-resolver": "^7.3",
  4017. "symfony/polyfill-ctype": "~1.8",
  4018. "symfony/polyfill-intl-icu": "^1.21",
  4019. "symfony/polyfill-mbstring": "~1.0",
  4020. "symfony/property-access": "^6.4|^7.0",
  4021. "symfony/service-contracts": "^2.5|^3"
  4022. },
  4023. "conflict": {
  4024. "symfony/console": "<6.4",
  4025. "symfony/dependency-injection": "<6.4",
  4026. "symfony/doctrine-bridge": "<6.4",
  4027. "symfony/error-handler": "<6.4",
  4028. "symfony/framework-bundle": "<6.4",
  4029. "symfony/http-kernel": "<6.4",
  4030. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4031. "symfony/translation-contracts": "<2.5",
  4032. "symfony/twig-bridge": "<6.4"
  4033. },
  4034. "require-dev": {
  4035. "doctrine/collections": "^1.0|^2.0",
  4036. "symfony/config": "^6.4|^7.0",
  4037. "symfony/console": "^6.4|^7.0",
  4038. "symfony/dependency-injection": "^6.4|^7.0",
  4039. "symfony/expression-language": "^6.4|^7.0",
  4040. "symfony/html-sanitizer": "^6.4|^7.0",
  4041. "symfony/http-foundation": "^6.4|^7.0",
  4042. "symfony/http-kernel": "^6.4|^7.0",
  4043. "symfony/intl": "^6.4|^7.0",
  4044. "symfony/security-core": "^6.4|^7.0",
  4045. "symfony/security-csrf": "^6.4|^7.0",
  4046. "symfony/translation": "^6.4.3|^7.0.3",
  4047. "symfony/uid": "^6.4|^7.0",
  4048. "symfony/validator": "^6.4|^7.0",
  4049. "symfony/var-dumper": "^6.4|^7.0"
  4050. },
  4051. "type": "library",
  4052. "autoload": {
  4053. "psr-4": {
  4054. "Symfony\\Component\\Form\\": ""
  4055. },
  4056. "exclude-from-classmap": [
  4057. "/Tests/"
  4058. ]
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Fabien Potencier",
  4067. "email": "fabien@symfony.com"
  4068. },
  4069. {
  4070. "name": "Symfony Community",
  4071. "homepage": "https://symfony.com/contributors"
  4072. }
  4073. ],
  4074. "description": "Allows to easily create, process and reuse HTML forms",
  4075. "homepage": "https://symfony.com",
  4076. "support": {
  4077. "source": "https://github.com/symfony/form/tree/v7.3.1"
  4078. },
  4079. "funding": [
  4080. {
  4081. "url": "https://symfony.com/sponsor",
  4082. "type": "custom"
  4083. },
  4084. {
  4085. "url": "https://github.com/fabpot",
  4086. "type": "github"
  4087. },
  4088. {
  4089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4090. "type": "tidelift"
  4091. }
  4092. ],
  4093. "time": "2025-06-13T07:48:40+00:00"
  4094. },
  4095. {
  4096. "name": "symfony/framework-bundle",
  4097. "version": "v7.3.1",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/symfony/framework-bundle.git",
  4101. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  4106. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  4107. "shasum": ""
  4108. },
  4109. "require": {
  4110. "composer-runtime-api": ">=2.1",
  4111. "ext-xml": "*",
  4112. "php": ">=8.2",
  4113. "symfony/cache": "^6.4|^7.0",
  4114. "symfony/config": "^7.3",
  4115. "symfony/dependency-injection": "^7.2",
  4116. "symfony/deprecation-contracts": "^2.5|^3",
  4117. "symfony/error-handler": "^7.3",
  4118. "symfony/event-dispatcher": "^6.4|^7.0",
  4119. "symfony/filesystem": "^7.1",
  4120. "symfony/finder": "^6.4|^7.0",
  4121. "symfony/http-foundation": "^7.3",
  4122. "symfony/http-kernel": "^7.2",
  4123. "symfony/polyfill-mbstring": "~1.0",
  4124. "symfony/routing": "^6.4|^7.0"
  4125. },
  4126. "conflict": {
  4127. "doctrine/persistence": "<1.3",
  4128. "phpdocumentor/reflection-docblock": "<3.2.2",
  4129. "phpdocumentor/type-resolver": "<1.4.0",
  4130. "symfony/asset": "<6.4",
  4131. "symfony/asset-mapper": "<6.4",
  4132. "symfony/clock": "<6.4",
  4133. "symfony/console": "<6.4",
  4134. "symfony/dom-crawler": "<6.4",
  4135. "symfony/dotenv": "<6.4",
  4136. "symfony/form": "<6.4",
  4137. "symfony/http-client": "<6.4",
  4138. "symfony/json-streamer": ">=7.4",
  4139. "symfony/lock": "<6.4",
  4140. "symfony/mailer": "<6.4",
  4141. "symfony/messenger": "<6.4",
  4142. "symfony/mime": "<6.4",
  4143. "symfony/object-mapper": ">=7.4",
  4144. "symfony/property-access": "<6.4",
  4145. "symfony/property-info": "<6.4",
  4146. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4147. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4148. "symfony/security-core": "<6.4",
  4149. "symfony/security-csrf": "<7.2",
  4150. "symfony/serializer": "<7.2.5",
  4151. "symfony/stopwatch": "<6.4",
  4152. "symfony/translation": "<7.3",
  4153. "symfony/twig-bridge": "<6.4",
  4154. "symfony/twig-bundle": "<6.4",
  4155. "symfony/validator": "<6.4",
  4156. "symfony/web-profiler-bundle": "<6.4",
  4157. "symfony/webhook": "<7.2",
  4158. "symfony/workflow": "<7.3.0-beta2"
  4159. },
  4160. "require-dev": {
  4161. "doctrine/persistence": "^1.3|^2|^3",
  4162. "dragonmantank/cron-expression": "^3.1",
  4163. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4164. "seld/jsonlint": "^1.10",
  4165. "symfony/asset": "^6.4|^7.0",
  4166. "symfony/asset-mapper": "^6.4|^7.0",
  4167. "symfony/browser-kit": "^6.4|^7.0",
  4168. "symfony/clock": "^6.4|^7.0",
  4169. "symfony/console": "^6.4|^7.0",
  4170. "symfony/css-selector": "^6.4|^7.0",
  4171. "symfony/dom-crawler": "^6.4|^7.0",
  4172. "symfony/dotenv": "^6.4|^7.0",
  4173. "symfony/expression-language": "^6.4|^7.0",
  4174. "symfony/form": "^6.4|^7.0",
  4175. "symfony/html-sanitizer": "^6.4|^7.0",
  4176. "symfony/http-client": "^6.4|^7.0",
  4177. "symfony/json-streamer": "7.3.*",
  4178. "symfony/lock": "^6.4|^7.0",
  4179. "symfony/mailer": "^6.4|^7.0",
  4180. "symfony/messenger": "^6.4|^7.0",
  4181. "symfony/mime": "^6.4|^7.0",
  4182. "symfony/notifier": "^6.4|^7.0",
  4183. "symfony/object-mapper": "^v7.3.0-beta2",
  4184. "symfony/polyfill-intl-icu": "~1.0",
  4185. "symfony/process": "^6.4|^7.0",
  4186. "symfony/property-info": "^6.4|^7.0",
  4187. "symfony/rate-limiter": "^6.4|^7.0",
  4188. "symfony/scheduler": "^6.4.4|^7.0.4",
  4189. "symfony/security-bundle": "^6.4|^7.0",
  4190. "symfony/semaphore": "^6.4|^7.0",
  4191. "symfony/serializer": "^7.2.5",
  4192. "symfony/stopwatch": "^6.4|^7.0",
  4193. "symfony/string": "^6.4|^7.0",
  4194. "symfony/translation": "^7.3",
  4195. "symfony/twig-bundle": "^6.4|^7.0",
  4196. "symfony/type-info": "^7.1",
  4197. "symfony/uid": "^6.4|^7.0",
  4198. "symfony/validator": "^6.4|^7.0",
  4199. "symfony/web-link": "^6.4|^7.0",
  4200. "symfony/webhook": "^7.2",
  4201. "symfony/workflow": "^7.3",
  4202. "symfony/yaml": "^6.4|^7.0",
  4203. "twig/twig": "^3.12"
  4204. },
  4205. "type": "symfony-bundle",
  4206. "autoload": {
  4207. "psr-4": {
  4208. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4209. },
  4210. "exclude-from-classmap": [
  4211. "/Tests/"
  4212. ]
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "authors": [
  4219. {
  4220. "name": "Fabien Potencier",
  4221. "email": "fabien@symfony.com"
  4222. },
  4223. {
  4224. "name": "Symfony Community",
  4225. "homepage": "https://symfony.com/contributors"
  4226. }
  4227. ],
  4228. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4229. "homepage": "https://symfony.com",
  4230. "support": {
  4231. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.1"
  4232. },
  4233. "funding": [
  4234. {
  4235. "url": "https://symfony.com/sponsor",
  4236. "type": "custom"
  4237. },
  4238. {
  4239. "url": "https://github.com/fabpot",
  4240. "type": "github"
  4241. },
  4242. {
  4243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4244. "type": "tidelift"
  4245. }
  4246. ],
  4247. "time": "2025-06-27T19:55:54+00:00"
  4248. },
  4249. {
  4250. "name": "symfony/http-client",
  4251. "version": "v7.3.1",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://github.com/symfony/http-client.git",
  4255. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://api.github.com/repos/symfony/http-client/zipball/4403d87a2c16f33345dca93407a8714ee8c05a64",
  4260. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64",
  4261. "shasum": ""
  4262. },
  4263. "require": {
  4264. "php": ">=8.2",
  4265. "psr/log": "^1|^2|^3",
  4266. "symfony/deprecation-contracts": "^2.5|^3",
  4267. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  4268. "symfony/service-contracts": "^2.5|^3"
  4269. },
  4270. "conflict": {
  4271. "amphp/amp": "<2.5",
  4272. "amphp/socket": "<1.1",
  4273. "php-http/discovery": "<1.15",
  4274. "symfony/http-foundation": "<6.4"
  4275. },
  4276. "provide": {
  4277. "php-http/async-client-implementation": "*",
  4278. "php-http/client-implementation": "*",
  4279. "psr/http-client-implementation": "1.0",
  4280. "symfony/http-client-implementation": "3.0"
  4281. },
  4282. "require-dev": {
  4283. "amphp/http-client": "^4.2.1|^5.0",
  4284. "amphp/http-tunnel": "^1.0|^2.0",
  4285. "guzzlehttp/promises": "^1.4|^2.0",
  4286. "nyholm/psr7": "^1.0",
  4287. "php-http/httplug": "^1.0|^2.0",
  4288. "psr/http-client": "^1.0",
  4289. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  4290. "symfony/dependency-injection": "^6.4|^7.0",
  4291. "symfony/http-kernel": "^6.4|^7.0",
  4292. "symfony/messenger": "^6.4|^7.0",
  4293. "symfony/process": "^6.4|^7.0",
  4294. "symfony/rate-limiter": "^6.4|^7.0",
  4295. "symfony/stopwatch": "^6.4|^7.0"
  4296. },
  4297. "type": "library",
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Symfony\\Component\\HttpClient\\": ""
  4301. },
  4302. "exclude-from-classmap": [
  4303. "/Tests/"
  4304. ]
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "MIT"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "Nicolas Grekas",
  4313. "email": "p@tchwork.com"
  4314. },
  4315. {
  4316. "name": "Symfony Community",
  4317. "homepage": "https://symfony.com/contributors"
  4318. }
  4319. ],
  4320. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4321. "homepage": "https://symfony.com",
  4322. "keywords": [
  4323. "http"
  4324. ],
  4325. "support": {
  4326. "source": "https://github.com/symfony/http-client/tree/v7.3.1"
  4327. },
  4328. "funding": [
  4329. {
  4330. "url": "https://symfony.com/sponsor",
  4331. "type": "custom"
  4332. },
  4333. {
  4334. "url": "https://github.com/fabpot",
  4335. "type": "github"
  4336. },
  4337. {
  4338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4339. "type": "tidelift"
  4340. }
  4341. ],
  4342. "time": "2025-06-28T07:58:39+00:00"
  4343. },
  4344. {
  4345. "name": "symfony/http-client-contracts",
  4346. "version": "v3.6.0",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://github.com/symfony/http-client-contracts.git",
  4350. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  4355. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  4356. "shasum": ""
  4357. },
  4358. "require": {
  4359. "php": ">=8.1"
  4360. },
  4361. "type": "library",
  4362. "extra": {
  4363. "thanks": {
  4364. "url": "https://github.com/symfony/contracts",
  4365. "name": "symfony/contracts"
  4366. },
  4367. "branch-alias": {
  4368. "dev-main": "3.6-dev"
  4369. }
  4370. },
  4371. "autoload": {
  4372. "psr-4": {
  4373. "Symfony\\Contracts\\HttpClient\\": ""
  4374. },
  4375. "exclude-from-classmap": [
  4376. "/Test/"
  4377. ]
  4378. },
  4379. "notification-url": "https://packagist.org/downloads/",
  4380. "license": [
  4381. "MIT"
  4382. ],
  4383. "authors": [
  4384. {
  4385. "name": "Nicolas Grekas",
  4386. "email": "p@tchwork.com"
  4387. },
  4388. {
  4389. "name": "Symfony Community",
  4390. "homepage": "https://symfony.com/contributors"
  4391. }
  4392. ],
  4393. "description": "Generic abstractions related to HTTP clients",
  4394. "homepage": "https://symfony.com",
  4395. "keywords": [
  4396. "abstractions",
  4397. "contracts",
  4398. "decoupling",
  4399. "interfaces",
  4400. "interoperability",
  4401. "standards"
  4402. ],
  4403. "support": {
  4404. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  4405. },
  4406. "funding": [
  4407. {
  4408. "url": "https://symfony.com/sponsor",
  4409. "type": "custom"
  4410. },
  4411. {
  4412. "url": "https://github.com/fabpot",
  4413. "type": "github"
  4414. },
  4415. {
  4416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4417. "type": "tidelift"
  4418. }
  4419. ],
  4420. "time": "2025-04-29T11:18:49+00:00"
  4421. },
  4422. {
  4423. "name": "symfony/http-foundation",
  4424. "version": "v7.3.1",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/symfony/http-foundation.git",
  4428. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  4433. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  4434. "shasum": ""
  4435. },
  4436. "require": {
  4437. "php": ">=8.2",
  4438. "symfony/deprecation-contracts": "^2.5|^3.0",
  4439. "symfony/polyfill-mbstring": "~1.1",
  4440. "symfony/polyfill-php83": "^1.27"
  4441. },
  4442. "conflict": {
  4443. "doctrine/dbal": "<3.6",
  4444. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  4445. },
  4446. "require-dev": {
  4447. "doctrine/dbal": "^3.6|^4",
  4448. "predis/predis": "^1.1|^2.0",
  4449. "symfony/cache": "^6.4.12|^7.1.5",
  4450. "symfony/clock": "^6.4|^7.0",
  4451. "symfony/dependency-injection": "^6.4|^7.0",
  4452. "symfony/expression-language": "^6.4|^7.0",
  4453. "symfony/http-kernel": "^6.4|^7.0",
  4454. "symfony/mime": "^6.4|^7.0",
  4455. "symfony/rate-limiter": "^6.4|^7.0"
  4456. },
  4457. "type": "library",
  4458. "autoload": {
  4459. "psr-4": {
  4460. "Symfony\\Component\\HttpFoundation\\": ""
  4461. },
  4462. "exclude-from-classmap": [
  4463. "/Tests/"
  4464. ]
  4465. },
  4466. "notification-url": "https://packagist.org/downloads/",
  4467. "license": [
  4468. "MIT"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "Fabien Potencier",
  4473. "email": "fabien@symfony.com"
  4474. },
  4475. {
  4476. "name": "Symfony Community",
  4477. "homepage": "https://symfony.com/contributors"
  4478. }
  4479. ],
  4480. "description": "Defines an object-oriented layer for the HTTP specification",
  4481. "homepage": "https://symfony.com",
  4482. "support": {
  4483. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  4484. },
  4485. "funding": [
  4486. {
  4487. "url": "https://symfony.com/sponsor",
  4488. "type": "custom"
  4489. },
  4490. {
  4491. "url": "https://github.com/fabpot",
  4492. "type": "github"
  4493. },
  4494. {
  4495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4496. "type": "tidelift"
  4497. }
  4498. ],
  4499. "time": "2025-06-23T15:07:14+00:00"
  4500. },
  4501. {
  4502. "name": "symfony/http-kernel",
  4503. "version": "v7.3.1",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/symfony/http-kernel.git",
  4507. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  4512. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "php": ">=8.2",
  4517. "psr/log": "^1|^2|^3",
  4518. "symfony/deprecation-contracts": "^2.5|^3",
  4519. "symfony/error-handler": "^6.4|^7.0",
  4520. "symfony/event-dispatcher": "^7.3",
  4521. "symfony/http-foundation": "^7.3",
  4522. "symfony/polyfill-ctype": "^1.8"
  4523. },
  4524. "conflict": {
  4525. "symfony/browser-kit": "<6.4",
  4526. "symfony/cache": "<6.4",
  4527. "symfony/config": "<6.4",
  4528. "symfony/console": "<6.4",
  4529. "symfony/dependency-injection": "<6.4",
  4530. "symfony/doctrine-bridge": "<6.4",
  4531. "symfony/form": "<6.4",
  4532. "symfony/http-client": "<6.4",
  4533. "symfony/http-client-contracts": "<2.5",
  4534. "symfony/mailer": "<6.4",
  4535. "symfony/messenger": "<6.4",
  4536. "symfony/translation": "<6.4",
  4537. "symfony/translation-contracts": "<2.5",
  4538. "symfony/twig-bridge": "<6.4",
  4539. "symfony/validator": "<6.4",
  4540. "symfony/var-dumper": "<6.4",
  4541. "twig/twig": "<3.12"
  4542. },
  4543. "provide": {
  4544. "psr/log-implementation": "1.0|2.0|3.0"
  4545. },
  4546. "require-dev": {
  4547. "psr/cache": "^1.0|^2.0|^3.0",
  4548. "symfony/browser-kit": "^6.4|^7.0",
  4549. "symfony/clock": "^6.4|^7.0",
  4550. "symfony/config": "^6.4|^7.0",
  4551. "symfony/console": "^6.4|^7.0",
  4552. "symfony/css-selector": "^6.4|^7.0",
  4553. "symfony/dependency-injection": "^6.4|^7.0",
  4554. "symfony/dom-crawler": "^6.4|^7.0",
  4555. "symfony/expression-language": "^6.4|^7.0",
  4556. "symfony/finder": "^6.4|^7.0",
  4557. "symfony/http-client-contracts": "^2.5|^3",
  4558. "symfony/process": "^6.4|^7.0",
  4559. "symfony/property-access": "^7.1",
  4560. "symfony/routing": "^6.4|^7.0",
  4561. "symfony/serializer": "^7.1",
  4562. "symfony/stopwatch": "^6.4|^7.0",
  4563. "symfony/translation": "^6.4|^7.0",
  4564. "symfony/translation-contracts": "^2.5|^3",
  4565. "symfony/uid": "^6.4|^7.0",
  4566. "symfony/validator": "^6.4|^7.0",
  4567. "symfony/var-dumper": "^6.4|^7.0",
  4568. "symfony/var-exporter": "^6.4|^7.0",
  4569. "twig/twig": "^3.12"
  4570. },
  4571. "type": "library",
  4572. "autoload": {
  4573. "psr-4": {
  4574. "Symfony\\Component\\HttpKernel\\": ""
  4575. },
  4576. "exclude-from-classmap": [
  4577. "/Tests/"
  4578. ]
  4579. },
  4580. "notification-url": "https://packagist.org/downloads/",
  4581. "license": [
  4582. "MIT"
  4583. ],
  4584. "authors": [
  4585. {
  4586. "name": "Fabien Potencier",
  4587. "email": "fabien@symfony.com"
  4588. },
  4589. {
  4590. "name": "Symfony Community",
  4591. "homepage": "https://symfony.com/contributors"
  4592. }
  4593. ],
  4594. "description": "Provides a structured process for converting a Request into a Response",
  4595. "homepage": "https://symfony.com",
  4596. "support": {
  4597. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  4598. },
  4599. "funding": [
  4600. {
  4601. "url": "https://symfony.com/sponsor",
  4602. "type": "custom"
  4603. },
  4604. {
  4605. "url": "https://github.com/fabpot",
  4606. "type": "github"
  4607. },
  4608. {
  4609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4610. "type": "tidelift"
  4611. }
  4612. ],
  4613. "time": "2025-06-28T08:24:55+00:00"
  4614. },
  4615. {
  4616. "name": "symfony/intl",
  4617. "version": "v7.3.1",
  4618. "source": {
  4619. "type": "git",
  4620. "url": "https://github.com/symfony/intl.git",
  4621. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45"
  4622. },
  4623. "dist": {
  4624. "type": "zip",
  4625. "url": "https://api.github.com/repos/symfony/intl/zipball/bd50940329ac1cfc4af0491cc4468f477d967e45",
  4626. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45",
  4627. "shasum": ""
  4628. },
  4629. "require": {
  4630. "php": ">=8.2",
  4631. "symfony/deprecation-contracts": "^2.5|^3"
  4632. },
  4633. "conflict": {
  4634. "symfony/string": "<7.1"
  4635. },
  4636. "require-dev": {
  4637. "symfony/filesystem": "^6.4|^7.0",
  4638. "symfony/var-exporter": "^6.4|^7.0"
  4639. },
  4640. "type": "library",
  4641. "autoload": {
  4642. "psr-4": {
  4643. "Symfony\\Component\\Intl\\": ""
  4644. },
  4645. "exclude-from-classmap": [
  4646. "/Tests/",
  4647. "/Resources/data/"
  4648. ]
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Bernhard Schussek",
  4657. "email": "bschussek@gmail.com"
  4658. },
  4659. {
  4660. "name": "Eriksen Costa",
  4661. "email": "eriksen.costa@infranology.com.br"
  4662. },
  4663. {
  4664. "name": "Igor Wiedler",
  4665. "email": "igor@wiedler.ch"
  4666. },
  4667. {
  4668. "name": "Symfony Community",
  4669. "homepage": "https://symfony.com/contributors"
  4670. }
  4671. ],
  4672. "description": "Provides access to the localization data of the ICU library",
  4673. "homepage": "https://symfony.com",
  4674. "keywords": [
  4675. "i18n",
  4676. "icu",
  4677. "internationalization",
  4678. "intl",
  4679. "l10n",
  4680. "localization"
  4681. ],
  4682. "support": {
  4683. "source": "https://github.com/symfony/intl/tree/v7.3.1"
  4684. },
  4685. "funding": [
  4686. {
  4687. "url": "https://symfony.com/sponsor",
  4688. "type": "custom"
  4689. },
  4690. {
  4691. "url": "https://github.com/fabpot",
  4692. "type": "github"
  4693. },
  4694. {
  4695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4696. "type": "tidelift"
  4697. }
  4698. ],
  4699. "time": "2025-06-06T16:10:07+00:00"
  4700. },
  4701. {
  4702. "name": "symfony/mailer",
  4703. "version": "v7.3.1",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/symfony/mailer.git",
  4707. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4712. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4713. "shasum": ""
  4714. },
  4715. "require": {
  4716. "egulias/email-validator": "^2.1.10|^3|^4",
  4717. "php": ">=8.2",
  4718. "psr/event-dispatcher": "^1",
  4719. "psr/log": "^1|^2|^3",
  4720. "symfony/event-dispatcher": "^6.4|^7.0",
  4721. "symfony/mime": "^7.2",
  4722. "symfony/service-contracts": "^2.5|^3"
  4723. },
  4724. "conflict": {
  4725. "symfony/http-client-contracts": "<2.5",
  4726. "symfony/http-kernel": "<6.4",
  4727. "symfony/messenger": "<6.4",
  4728. "symfony/mime": "<6.4",
  4729. "symfony/twig-bridge": "<6.4"
  4730. },
  4731. "require-dev": {
  4732. "symfony/console": "^6.4|^7.0",
  4733. "symfony/http-client": "^6.4|^7.0",
  4734. "symfony/messenger": "^6.4|^7.0",
  4735. "symfony/twig-bridge": "^6.4|^7.0"
  4736. },
  4737. "type": "library",
  4738. "autoload": {
  4739. "psr-4": {
  4740. "Symfony\\Component\\Mailer\\": ""
  4741. },
  4742. "exclude-from-classmap": [
  4743. "/Tests/"
  4744. ]
  4745. },
  4746. "notification-url": "https://packagist.org/downloads/",
  4747. "license": [
  4748. "MIT"
  4749. ],
  4750. "authors": [
  4751. {
  4752. "name": "Fabien Potencier",
  4753. "email": "fabien@symfony.com"
  4754. },
  4755. {
  4756. "name": "Symfony Community",
  4757. "homepage": "https://symfony.com/contributors"
  4758. }
  4759. ],
  4760. "description": "Helps sending emails",
  4761. "homepage": "https://symfony.com",
  4762. "support": {
  4763. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  4764. },
  4765. "funding": [
  4766. {
  4767. "url": "https://symfony.com/sponsor",
  4768. "type": "custom"
  4769. },
  4770. {
  4771. "url": "https://github.com/fabpot",
  4772. "type": "github"
  4773. },
  4774. {
  4775. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4776. "type": "tidelift"
  4777. }
  4778. ],
  4779. "time": "2025-06-27T19:55:54+00:00"
  4780. },
  4781. {
  4782. "name": "symfony/messenger",
  4783. "version": "v7.3.1",
  4784. "source": {
  4785. "type": "git",
  4786. "url": "https://github.com/symfony/messenger.git",
  4787. "reference": "716c89b86ce58c4946d436d862694971c999d1aa"
  4788. },
  4789. "dist": {
  4790. "type": "zip",
  4791. "url": "https://api.github.com/repos/symfony/messenger/zipball/716c89b86ce58c4946d436d862694971c999d1aa",
  4792. "reference": "716c89b86ce58c4946d436d862694971c999d1aa",
  4793. "shasum": ""
  4794. },
  4795. "require": {
  4796. "php": ">=8.2",
  4797. "psr/log": "^1|^2|^3",
  4798. "symfony/clock": "^6.4|^7.0",
  4799. "symfony/deprecation-contracts": "^2.5|^3"
  4800. },
  4801. "conflict": {
  4802. "symfony/console": "<7.2",
  4803. "symfony/event-dispatcher": "<6.4",
  4804. "symfony/event-dispatcher-contracts": "<2.5",
  4805. "symfony/framework-bundle": "<6.4",
  4806. "symfony/http-kernel": "<6.4",
  4807. "symfony/lock": "<6.4",
  4808. "symfony/serializer": "<6.4"
  4809. },
  4810. "require-dev": {
  4811. "psr/cache": "^1.0|^2.0|^3.0",
  4812. "symfony/console": "^7.2",
  4813. "symfony/dependency-injection": "^6.4|^7.0",
  4814. "symfony/event-dispatcher": "^6.4|^7.0",
  4815. "symfony/http-kernel": "^6.4|^7.0",
  4816. "symfony/lock": "^6.4|^7.0",
  4817. "symfony/process": "^6.4|^7.0",
  4818. "symfony/property-access": "^6.4|^7.0",
  4819. "symfony/rate-limiter": "^6.4|^7.0",
  4820. "symfony/routing": "^6.4|^7.0",
  4821. "symfony/serializer": "^6.4|^7.0",
  4822. "symfony/service-contracts": "^2.5|^3",
  4823. "symfony/stopwatch": "^6.4|^7.0",
  4824. "symfony/validator": "^6.4|^7.0"
  4825. },
  4826. "type": "library",
  4827. "autoload": {
  4828. "psr-4": {
  4829. "Symfony\\Component\\Messenger\\": ""
  4830. },
  4831. "exclude-from-classmap": [
  4832. "/Tests/"
  4833. ]
  4834. },
  4835. "notification-url": "https://packagist.org/downloads/",
  4836. "license": [
  4837. "MIT"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "Samuel Roze",
  4842. "email": "samuel.roze@gmail.com"
  4843. },
  4844. {
  4845. "name": "Symfony Community",
  4846. "homepage": "https://symfony.com/contributors"
  4847. }
  4848. ],
  4849. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4850. "homepage": "https://symfony.com",
  4851. "support": {
  4852. "source": "https://github.com/symfony/messenger/tree/v7.3.1"
  4853. },
  4854. "funding": [
  4855. {
  4856. "url": "https://symfony.com/sponsor",
  4857. "type": "custom"
  4858. },
  4859. {
  4860. "url": "https://github.com/fabpot",
  4861. "type": "github"
  4862. },
  4863. {
  4864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4865. "type": "tidelift"
  4866. }
  4867. ],
  4868. "time": "2025-06-27T19:55:54+00:00"
  4869. },
  4870. {
  4871. "name": "symfony/mime",
  4872. "version": "v7.3.0",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/symfony/mime.git",
  4876. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4881. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "php": ">=8.2",
  4886. "symfony/polyfill-intl-idn": "^1.10",
  4887. "symfony/polyfill-mbstring": "^1.0"
  4888. },
  4889. "conflict": {
  4890. "egulias/email-validator": "~3.0.0",
  4891. "phpdocumentor/reflection-docblock": "<3.2.2",
  4892. "phpdocumentor/type-resolver": "<1.4.0",
  4893. "symfony/mailer": "<6.4",
  4894. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4895. },
  4896. "require-dev": {
  4897. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4898. "league/html-to-markdown": "^5.0",
  4899. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4900. "symfony/dependency-injection": "^6.4|^7.0",
  4901. "symfony/process": "^6.4|^7.0",
  4902. "symfony/property-access": "^6.4|^7.0",
  4903. "symfony/property-info": "^6.4|^7.0",
  4904. "symfony/serializer": "^6.4.3|^7.0.3"
  4905. },
  4906. "type": "library",
  4907. "autoload": {
  4908. "psr-4": {
  4909. "Symfony\\Component\\Mime\\": ""
  4910. },
  4911. "exclude-from-classmap": [
  4912. "/Tests/"
  4913. ]
  4914. },
  4915. "notification-url": "https://packagist.org/downloads/",
  4916. "license": [
  4917. "MIT"
  4918. ],
  4919. "authors": [
  4920. {
  4921. "name": "Fabien Potencier",
  4922. "email": "fabien@symfony.com"
  4923. },
  4924. {
  4925. "name": "Symfony Community",
  4926. "homepage": "https://symfony.com/contributors"
  4927. }
  4928. ],
  4929. "description": "Allows manipulating MIME messages",
  4930. "homepage": "https://symfony.com",
  4931. "keywords": [
  4932. "mime",
  4933. "mime-type"
  4934. ],
  4935. "support": {
  4936. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  4937. },
  4938. "funding": [
  4939. {
  4940. "url": "https://symfony.com/sponsor",
  4941. "type": "custom"
  4942. },
  4943. {
  4944. "url": "https://github.com/fabpot",
  4945. "type": "github"
  4946. },
  4947. {
  4948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4949. "type": "tidelift"
  4950. }
  4951. ],
  4952. "time": "2025-02-19T08:51:26+00:00"
  4953. },
  4954. {
  4955. "name": "symfony/monolog-bridge",
  4956. "version": "v7.3.0",
  4957. "source": {
  4958. "type": "git",
  4959. "url": "https://github.com/symfony/monolog-bridge.git",
  4960. "reference": "1b188c8abbbef25b111da878797514b7a8d33990"
  4961. },
  4962. "dist": {
  4963. "type": "zip",
  4964. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1b188c8abbbef25b111da878797514b7a8d33990",
  4965. "reference": "1b188c8abbbef25b111da878797514b7a8d33990",
  4966. "shasum": ""
  4967. },
  4968. "require": {
  4969. "monolog/monolog": "^3",
  4970. "php": ">=8.2",
  4971. "symfony/http-kernel": "^6.4|^7.0",
  4972. "symfony/service-contracts": "^2.5|^3"
  4973. },
  4974. "conflict": {
  4975. "symfony/console": "<6.4",
  4976. "symfony/http-foundation": "<6.4",
  4977. "symfony/security-core": "<6.4"
  4978. },
  4979. "require-dev": {
  4980. "symfony/console": "^6.4|^7.0",
  4981. "symfony/http-client": "^6.4|^7.0",
  4982. "symfony/mailer": "^6.4|^7.0",
  4983. "symfony/messenger": "^6.4|^7.0",
  4984. "symfony/mime": "^6.4|^7.0",
  4985. "symfony/security-core": "^6.4|^7.0",
  4986. "symfony/var-dumper": "^6.4|^7.0"
  4987. },
  4988. "type": "symfony-bridge",
  4989. "autoload": {
  4990. "psr-4": {
  4991. "Symfony\\Bridge\\Monolog\\": ""
  4992. },
  4993. "exclude-from-classmap": [
  4994. "/Tests/"
  4995. ]
  4996. },
  4997. "notification-url": "https://packagist.org/downloads/",
  4998. "license": [
  4999. "MIT"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "Fabien Potencier",
  5004. "email": "fabien@symfony.com"
  5005. },
  5006. {
  5007. "name": "Symfony Community",
  5008. "homepage": "https://symfony.com/contributors"
  5009. }
  5010. ],
  5011. "description": "Provides integration for Monolog with various Symfony components",
  5012. "homepage": "https://symfony.com",
  5013. "support": {
  5014. "source": "https://github.com/symfony/monolog-bridge/tree/v7.3.0"
  5015. },
  5016. "funding": [
  5017. {
  5018. "url": "https://symfony.com/sponsor",
  5019. "type": "custom"
  5020. },
  5021. {
  5022. "url": "https://github.com/fabpot",
  5023. "type": "github"
  5024. },
  5025. {
  5026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5027. "type": "tidelift"
  5028. }
  5029. ],
  5030. "time": "2025-03-21T12:17:46+00:00"
  5031. },
  5032. {
  5033. "name": "symfony/monolog-bundle",
  5034. "version": "v3.10.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/symfony/monolog-bundle.git",
  5038. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5043. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5048. "php": ">=7.2.5",
  5049. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5050. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5051. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5052. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5053. },
  5054. "require-dev": {
  5055. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5056. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5057. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5058. },
  5059. "type": "symfony-bundle",
  5060. "extra": {
  5061. "branch-alias": {
  5062. "dev-master": "3.x-dev"
  5063. }
  5064. },
  5065. "autoload": {
  5066. "psr-4": {
  5067. "Symfony\\Bundle\\MonologBundle\\": ""
  5068. },
  5069. "exclude-from-classmap": [
  5070. "/Tests/"
  5071. ]
  5072. },
  5073. "notification-url": "https://packagist.org/downloads/",
  5074. "license": [
  5075. "MIT"
  5076. ],
  5077. "authors": [
  5078. {
  5079. "name": "Fabien Potencier",
  5080. "email": "fabien@symfony.com"
  5081. },
  5082. {
  5083. "name": "Symfony Community",
  5084. "homepage": "https://symfony.com/contributors"
  5085. }
  5086. ],
  5087. "description": "Symfony MonologBundle",
  5088. "homepage": "https://symfony.com",
  5089. "keywords": [
  5090. "log",
  5091. "logging"
  5092. ],
  5093. "support": {
  5094. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5095. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5096. },
  5097. "funding": [
  5098. {
  5099. "url": "https://symfony.com/sponsor",
  5100. "type": "custom"
  5101. },
  5102. {
  5103. "url": "https://github.com/fabpot",
  5104. "type": "github"
  5105. },
  5106. {
  5107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5108. "type": "tidelift"
  5109. }
  5110. ],
  5111. "time": "2023-11-06T17:08:13+00:00"
  5112. },
  5113. {
  5114. "name": "symfony/notifier",
  5115. "version": "v7.3.0",
  5116. "source": {
  5117. "type": "git",
  5118. "url": "https://github.com/symfony/notifier.git",
  5119. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e"
  5120. },
  5121. "dist": {
  5122. "type": "zip",
  5123. "url": "https://api.github.com/repos/symfony/notifier/zipball/9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  5124. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  5125. "shasum": ""
  5126. },
  5127. "require": {
  5128. "php": ">=8.2",
  5129. "psr/log": "^1|^2|^3"
  5130. },
  5131. "conflict": {
  5132. "symfony/event-dispatcher": "<6.4",
  5133. "symfony/event-dispatcher-contracts": "<2.5",
  5134. "symfony/http-client-contracts": "<2.5",
  5135. "symfony/http-kernel": "<6.4"
  5136. },
  5137. "require-dev": {
  5138. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5139. "symfony/http-client-contracts": "^2.5|^3",
  5140. "symfony/http-foundation": "^6.4|^7.0",
  5141. "symfony/messenger": "^6.4|^7.0"
  5142. },
  5143. "type": "library",
  5144. "autoload": {
  5145. "psr-4": {
  5146. "Symfony\\Component\\Notifier\\": ""
  5147. },
  5148. "exclude-from-classmap": [
  5149. "/Tests/"
  5150. ]
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "MIT"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "Fabien Potencier",
  5159. "email": "fabien@symfony.com"
  5160. },
  5161. {
  5162. "name": "Symfony Community",
  5163. "homepage": "https://symfony.com/contributors"
  5164. }
  5165. ],
  5166. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5167. "homepage": "https://symfony.com",
  5168. "keywords": [
  5169. "notification",
  5170. "notifier"
  5171. ],
  5172. "support": {
  5173. "source": "https://github.com/symfony/notifier/tree/v7.3.0"
  5174. },
  5175. "funding": [
  5176. {
  5177. "url": "https://symfony.com/sponsor",
  5178. "type": "custom"
  5179. },
  5180. {
  5181. "url": "https://github.com/fabpot",
  5182. "type": "github"
  5183. },
  5184. {
  5185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5186. "type": "tidelift"
  5187. }
  5188. ],
  5189. "time": "2025-05-01T12:12:53+00:00"
  5190. },
  5191. {
  5192. "name": "symfony/options-resolver",
  5193. "version": "v7.3.0",
  5194. "source": {
  5195. "type": "git",
  5196. "url": "https://github.com/symfony/options-resolver.git",
  5197. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
  5198. },
  5199. "dist": {
  5200. "type": "zip",
  5201. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
  5202. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
  5203. "shasum": ""
  5204. },
  5205. "require": {
  5206. "php": ">=8.2",
  5207. "symfony/deprecation-contracts": "^2.5|^3"
  5208. },
  5209. "type": "library",
  5210. "autoload": {
  5211. "psr-4": {
  5212. "Symfony\\Component\\OptionsResolver\\": ""
  5213. },
  5214. "exclude-from-classmap": [
  5215. "/Tests/"
  5216. ]
  5217. },
  5218. "notification-url": "https://packagist.org/downloads/",
  5219. "license": [
  5220. "MIT"
  5221. ],
  5222. "authors": [
  5223. {
  5224. "name": "Fabien Potencier",
  5225. "email": "fabien@symfony.com"
  5226. },
  5227. {
  5228. "name": "Symfony Community",
  5229. "homepage": "https://symfony.com/contributors"
  5230. }
  5231. ],
  5232. "description": "Provides an improved replacement for the array_replace PHP function",
  5233. "homepage": "https://symfony.com",
  5234. "keywords": [
  5235. "config",
  5236. "configuration",
  5237. "options"
  5238. ],
  5239. "support": {
  5240. "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
  5241. },
  5242. "funding": [
  5243. {
  5244. "url": "https://symfony.com/sponsor",
  5245. "type": "custom"
  5246. },
  5247. {
  5248. "url": "https://github.com/fabpot",
  5249. "type": "github"
  5250. },
  5251. {
  5252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5253. "type": "tidelift"
  5254. }
  5255. ],
  5256. "time": "2025-04-04T13:12:05+00:00"
  5257. },
  5258. {
  5259. "name": "symfony/password-hasher",
  5260. "version": "v7.3.0",
  5261. "source": {
  5262. "type": "git",
  5263. "url": "https://github.com/symfony/password-hasher.git",
  5264. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  5265. },
  5266. "dist": {
  5267. "type": "zip",
  5268. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  5269. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  5270. "shasum": ""
  5271. },
  5272. "require": {
  5273. "php": ">=8.2"
  5274. },
  5275. "conflict": {
  5276. "symfony/security-core": "<6.4"
  5277. },
  5278. "require-dev": {
  5279. "symfony/console": "^6.4|^7.0",
  5280. "symfony/security-core": "^6.4|^7.0"
  5281. },
  5282. "type": "library",
  5283. "autoload": {
  5284. "psr-4": {
  5285. "Symfony\\Component\\PasswordHasher\\": ""
  5286. },
  5287. "exclude-from-classmap": [
  5288. "/Tests/"
  5289. ]
  5290. },
  5291. "notification-url": "https://packagist.org/downloads/",
  5292. "license": [
  5293. "MIT"
  5294. ],
  5295. "authors": [
  5296. {
  5297. "name": "Robin Chalas",
  5298. "email": "robin.chalas@gmail.com"
  5299. },
  5300. {
  5301. "name": "Symfony Community",
  5302. "homepage": "https://symfony.com/contributors"
  5303. }
  5304. ],
  5305. "description": "Provides password hashing utilities",
  5306. "homepage": "https://symfony.com",
  5307. "keywords": [
  5308. "hashing",
  5309. "password"
  5310. ],
  5311. "support": {
  5312. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  5313. },
  5314. "funding": [
  5315. {
  5316. "url": "https://symfony.com/sponsor",
  5317. "type": "custom"
  5318. },
  5319. {
  5320. "url": "https://github.com/fabpot",
  5321. "type": "github"
  5322. },
  5323. {
  5324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5325. "type": "tidelift"
  5326. }
  5327. ],
  5328. "time": "2025-02-04T08:22:58+00:00"
  5329. },
  5330. {
  5331. "name": "symfony/polyfill-intl-grapheme",
  5332. "version": "v1.32.0",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5336. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5341. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5342. "shasum": ""
  5343. },
  5344. "require": {
  5345. "php": ">=7.2"
  5346. },
  5347. "suggest": {
  5348. "ext-intl": "For best performance"
  5349. },
  5350. "type": "library",
  5351. "extra": {
  5352. "thanks": {
  5353. "url": "https://github.com/symfony/polyfill",
  5354. "name": "symfony/polyfill"
  5355. }
  5356. },
  5357. "autoload": {
  5358. "files": [
  5359. "bootstrap.php"
  5360. ],
  5361. "psr-4": {
  5362. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5363. }
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "MIT"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Nicolas Grekas",
  5372. "email": "p@tchwork.com"
  5373. },
  5374. {
  5375. "name": "Symfony Community",
  5376. "homepage": "https://symfony.com/contributors"
  5377. }
  5378. ],
  5379. "description": "Symfony polyfill for intl's grapheme_* functions",
  5380. "homepage": "https://symfony.com",
  5381. "keywords": [
  5382. "compatibility",
  5383. "grapheme",
  5384. "intl",
  5385. "polyfill",
  5386. "portable",
  5387. "shim"
  5388. ],
  5389. "support": {
  5390. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  5391. },
  5392. "funding": [
  5393. {
  5394. "url": "https://symfony.com/sponsor",
  5395. "type": "custom"
  5396. },
  5397. {
  5398. "url": "https://github.com/fabpot",
  5399. "type": "github"
  5400. },
  5401. {
  5402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5403. "type": "tidelift"
  5404. }
  5405. ],
  5406. "time": "2024-09-09T11:45:10+00:00"
  5407. },
  5408. {
  5409. "name": "symfony/polyfill-intl-icu",
  5410. "version": "v1.32.0",
  5411. "source": {
  5412. "type": "git",
  5413. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5414. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  5415. },
  5416. "dist": {
  5417. "type": "zip",
  5418. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  5419. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  5420. "shasum": ""
  5421. },
  5422. "require": {
  5423. "php": ">=7.2"
  5424. },
  5425. "suggest": {
  5426. "ext-intl": "For best performance and support of other locales than \"en\""
  5427. },
  5428. "type": "library",
  5429. "extra": {
  5430. "thanks": {
  5431. "url": "https://github.com/symfony/polyfill",
  5432. "name": "symfony/polyfill"
  5433. }
  5434. },
  5435. "autoload": {
  5436. "files": [
  5437. "bootstrap.php"
  5438. ],
  5439. "psr-4": {
  5440. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5441. },
  5442. "classmap": [
  5443. "Resources/stubs"
  5444. ],
  5445. "exclude-from-classmap": [
  5446. "/Tests/"
  5447. ]
  5448. },
  5449. "notification-url": "https://packagist.org/downloads/",
  5450. "license": [
  5451. "MIT"
  5452. ],
  5453. "authors": [
  5454. {
  5455. "name": "Nicolas Grekas",
  5456. "email": "p@tchwork.com"
  5457. },
  5458. {
  5459. "name": "Symfony Community",
  5460. "homepage": "https://symfony.com/contributors"
  5461. }
  5462. ],
  5463. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5464. "homepage": "https://symfony.com",
  5465. "keywords": [
  5466. "compatibility",
  5467. "icu",
  5468. "intl",
  5469. "polyfill",
  5470. "portable",
  5471. "shim"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  5475. },
  5476. "funding": [
  5477. {
  5478. "url": "https://symfony.com/sponsor",
  5479. "type": "custom"
  5480. },
  5481. {
  5482. "url": "https://github.com/fabpot",
  5483. "type": "github"
  5484. },
  5485. {
  5486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5487. "type": "tidelift"
  5488. }
  5489. ],
  5490. "time": "2024-12-21T18:38:29+00:00"
  5491. },
  5492. {
  5493. "name": "symfony/polyfill-intl-idn",
  5494. "version": "v1.32.0",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5498. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5503. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "php": ">=7.2",
  5508. "symfony/polyfill-intl-normalizer": "^1.10"
  5509. },
  5510. "suggest": {
  5511. "ext-intl": "For best performance"
  5512. },
  5513. "type": "library",
  5514. "extra": {
  5515. "thanks": {
  5516. "url": "https://github.com/symfony/polyfill",
  5517. "name": "symfony/polyfill"
  5518. }
  5519. },
  5520. "autoload": {
  5521. "files": [
  5522. "bootstrap.php"
  5523. ],
  5524. "psr-4": {
  5525. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5526. }
  5527. },
  5528. "notification-url": "https://packagist.org/downloads/",
  5529. "license": [
  5530. "MIT"
  5531. ],
  5532. "authors": [
  5533. {
  5534. "name": "Laurent Bassin",
  5535. "email": "laurent@bassin.info"
  5536. },
  5537. {
  5538. "name": "Trevor Rowbotham",
  5539. "email": "trevor.rowbotham@pm.me"
  5540. },
  5541. {
  5542. "name": "Symfony Community",
  5543. "homepage": "https://symfony.com/contributors"
  5544. }
  5545. ],
  5546. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5547. "homepage": "https://symfony.com",
  5548. "keywords": [
  5549. "compatibility",
  5550. "idn",
  5551. "intl",
  5552. "polyfill",
  5553. "portable",
  5554. "shim"
  5555. ],
  5556. "support": {
  5557. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  5558. },
  5559. "funding": [
  5560. {
  5561. "url": "https://symfony.com/sponsor",
  5562. "type": "custom"
  5563. },
  5564. {
  5565. "url": "https://github.com/fabpot",
  5566. "type": "github"
  5567. },
  5568. {
  5569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5570. "type": "tidelift"
  5571. }
  5572. ],
  5573. "time": "2024-09-10T14:38:51+00:00"
  5574. },
  5575. {
  5576. "name": "symfony/polyfill-intl-normalizer",
  5577. "version": "v1.32.0",
  5578. "source": {
  5579. "type": "git",
  5580. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5581. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5582. },
  5583. "dist": {
  5584. "type": "zip",
  5585. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5586. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5587. "shasum": ""
  5588. },
  5589. "require": {
  5590. "php": ">=7.2"
  5591. },
  5592. "suggest": {
  5593. "ext-intl": "For best performance"
  5594. },
  5595. "type": "library",
  5596. "extra": {
  5597. "thanks": {
  5598. "url": "https://github.com/symfony/polyfill",
  5599. "name": "symfony/polyfill"
  5600. }
  5601. },
  5602. "autoload": {
  5603. "files": [
  5604. "bootstrap.php"
  5605. ],
  5606. "psr-4": {
  5607. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5608. },
  5609. "classmap": [
  5610. "Resources/stubs"
  5611. ]
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "MIT"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Nicolas Grekas",
  5620. "email": "p@tchwork.com"
  5621. },
  5622. {
  5623. "name": "Symfony Community",
  5624. "homepage": "https://symfony.com/contributors"
  5625. }
  5626. ],
  5627. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5628. "homepage": "https://symfony.com",
  5629. "keywords": [
  5630. "compatibility",
  5631. "intl",
  5632. "normalizer",
  5633. "polyfill",
  5634. "portable",
  5635. "shim"
  5636. ],
  5637. "support": {
  5638. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  5639. },
  5640. "funding": [
  5641. {
  5642. "url": "https://symfony.com/sponsor",
  5643. "type": "custom"
  5644. },
  5645. {
  5646. "url": "https://github.com/fabpot",
  5647. "type": "github"
  5648. },
  5649. {
  5650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5651. "type": "tidelift"
  5652. }
  5653. ],
  5654. "time": "2024-09-09T11:45:10+00:00"
  5655. },
  5656. {
  5657. "name": "symfony/polyfill-mbstring",
  5658. "version": "v1.32.0",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5662. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5663. },
  5664. "dist": {
  5665. "type": "zip",
  5666. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5667. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5668. "shasum": ""
  5669. },
  5670. "require": {
  5671. "ext-iconv": "*",
  5672. "php": ">=7.2"
  5673. },
  5674. "provide": {
  5675. "ext-mbstring": "*"
  5676. },
  5677. "suggest": {
  5678. "ext-mbstring": "For best performance"
  5679. },
  5680. "type": "library",
  5681. "extra": {
  5682. "thanks": {
  5683. "url": "https://github.com/symfony/polyfill",
  5684. "name": "symfony/polyfill"
  5685. }
  5686. },
  5687. "autoload": {
  5688. "files": [
  5689. "bootstrap.php"
  5690. ],
  5691. "psr-4": {
  5692. "Symfony\\Polyfill\\Mbstring\\": ""
  5693. }
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Nicolas Grekas",
  5702. "email": "p@tchwork.com"
  5703. },
  5704. {
  5705. "name": "Symfony Community",
  5706. "homepage": "https://symfony.com/contributors"
  5707. }
  5708. ],
  5709. "description": "Symfony polyfill for the Mbstring extension",
  5710. "homepage": "https://symfony.com",
  5711. "keywords": [
  5712. "compatibility",
  5713. "mbstring",
  5714. "polyfill",
  5715. "portable",
  5716. "shim"
  5717. ],
  5718. "support": {
  5719. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  5720. },
  5721. "funding": [
  5722. {
  5723. "url": "https://symfony.com/sponsor",
  5724. "type": "custom"
  5725. },
  5726. {
  5727. "url": "https://github.com/fabpot",
  5728. "type": "github"
  5729. },
  5730. {
  5731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5732. "type": "tidelift"
  5733. }
  5734. ],
  5735. "time": "2024-12-23T08:48:59+00:00"
  5736. },
  5737. {
  5738. "name": "symfony/polyfill-php83",
  5739. "version": "v1.32.0",
  5740. "source": {
  5741. "type": "git",
  5742. "url": "https://github.com/symfony/polyfill-php83.git",
  5743. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5744. },
  5745. "dist": {
  5746. "type": "zip",
  5747. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5748. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5749. "shasum": ""
  5750. },
  5751. "require": {
  5752. "php": ">=7.2"
  5753. },
  5754. "type": "library",
  5755. "extra": {
  5756. "thanks": {
  5757. "url": "https://github.com/symfony/polyfill",
  5758. "name": "symfony/polyfill"
  5759. }
  5760. },
  5761. "autoload": {
  5762. "files": [
  5763. "bootstrap.php"
  5764. ],
  5765. "psr-4": {
  5766. "Symfony\\Polyfill\\Php83\\": ""
  5767. },
  5768. "classmap": [
  5769. "Resources/stubs"
  5770. ]
  5771. },
  5772. "notification-url": "https://packagist.org/downloads/",
  5773. "license": [
  5774. "MIT"
  5775. ],
  5776. "authors": [
  5777. {
  5778. "name": "Nicolas Grekas",
  5779. "email": "p@tchwork.com"
  5780. },
  5781. {
  5782. "name": "Symfony Community",
  5783. "homepage": "https://symfony.com/contributors"
  5784. }
  5785. ],
  5786. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5787. "homepage": "https://symfony.com",
  5788. "keywords": [
  5789. "compatibility",
  5790. "polyfill",
  5791. "portable",
  5792. "shim"
  5793. ],
  5794. "support": {
  5795. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  5796. },
  5797. "funding": [
  5798. {
  5799. "url": "https://symfony.com/sponsor",
  5800. "type": "custom"
  5801. },
  5802. {
  5803. "url": "https://github.com/fabpot",
  5804. "type": "github"
  5805. },
  5806. {
  5807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5808. "type": "tidelift"
  5809. }
  5810. ],
  5811. "time": "2024-09-09T11:45:10+00:00"
  5812. },
  5813. {
  5814. "name": "symfony/polyfill-php84",
  5815. "version": "v1.32.0",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/symfony/polyfill-php84.git",
  5819. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  5824. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "php": ">=7.2"
  5829. },
  5830. "type": "library",
  5831. "extra": {
  5832. "thanks": {
  5833. "url": "https://github.com/symfony/polyfill",
  5834. "name": "symfony/polyfill"
  5835. }
  5836. },
  5837. "autoload": {
  5838. "files": [
  5839. "bootstrap.php"
  5840. ],
  5841. "psr-4": {
  5842. "Symfony\\Polyfill\\Php84\\": ""
  5843. },
  5844. "classmap": [
  5845. "Resources/stubs"
  5846. ]
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "authors": [
  5853. {
  5854. "name": "Nicolas Grekas",
  5855. "email": "p@tchwork.com"
  5856. },
  5857. {
  5858. "name": "Symfony Community",
  5859. "homepage": "https://symfony.com/contributors"
  5860. }
  5861. ],
  5862. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5863. "homepage": "https://symfony.com",
  5864. "keywords": [
  5865. "compatibility",
  5866. "polyfill",
  5867. "portable",
  5868. "shim"
  5869. ],
  5870. "support": {
  5871. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  5872. },
  5873. "funding": [
  5874. {
  5875. "url": "https://symfony.com/sponsor",
  5876. "type": "custom"
  5877. },
  5878. {
  5879. "url": "https://github.com/fabpot",
  5880. "type": "github"
  5881. },
  5882. {
  5883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5884. "type": "tidelift"
  5885. }
  5886. ],
  5887. "time": "2025-02-20T12:04:08+00:00"
  5888. },
  5889. {
  5890. "name": "symfony/polyfill-uuid",
  5891. "version": "v1.32.0",
  5892. "source": {
  5893. "type": "git",
  5894. "url": "https://github.com/symfony/polyfill-uuid.git",
  5895. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  5896. },
  5897. "dist": {
  5898. "type": "zip",
  5899. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5900. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5901. "shasum": ""
  5902. },
  5903. "require": {
  5904. "php": ">=7.2"
  5905. },
  5906. "provide": {
  5907. "ext-uuid": "*"
  5908. },
  5909. "suggest": {
  5910. "ext-uuid": "For best performance"
  5911. },
  5912. "type": "library",
  5913. "extra": {
  5914. "thanks": {
  5915. "url": "https://github.com/symfony/polyfill",
  5916. "name": "symfony/polyfill"
  5917. }
  5918. },
  5919. "autoload": {
  5920. "files": [
  5921. "bootstrap.php"
  5922. ],
  5923. "psr-4": {
  5924. "Symfony\\Polyfill\\Uuid\\": ""
  5925. }
  5926. },
  5927. "notification-url": "https://packagist.org/downloads/",
  5928. "license": [
  5929. "MIT"
  5930. ],
  5931. "authors": [
  5932. {
  5933. "name": "Grégoire Pineau",
  5934. "email": "lyrixx@lyrixx.info"
  5935. },
  5936. {
  5937. "name": "Symfony Community",
  5938. "homepage": "https://symfony.com/contributors"
  5939. }
  5940. ],
  5941. "description": "Symfony polyfill for uuid functions",
  5942. "homepage": "https://symfony.com",
  5943. "keywords": [
  5944. "compatibility",
  5945. "polyfill",
  5946. "portable",
  5947. "uuid"
  5948. ],
  5949. "support": {
  5950. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  5951. },
  5952. "funding": [
  5953. {
  5954. "url": "https://symfony.com/sponsor",
  5955. "type": "custom"
  5956. },
  5957. {
  5958. "url": "https://github.com/fabpot",
  5959. "type": "github"
  5960. },
  5961. {
  5962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5963. "type": "tidelift"
  5964. }
  5965. ],
  5966. "time": "2024-09-09T11:45:10+00:00"
  5967. },
  5968. {
  5969. "name": "symfony/process",
  5970. "version": "v7.3.0",
  5971. "source": {
  5972. "type": "git",
  5973. "url": "https://github.com/symfony/process.git",
  5974. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  5975. },
  5976. "dist": {
  5977. "type": "zip",
  5978. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5979. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5980. "shasum": ""
  5981. },
  5982. "require": {
  5983. "php": ">=8.2"
  5984. },
  5985. "type": "library",
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Symfony\\Component\\Process\\": ""
  5989. },
  5990. "exclude-from-classmap": [
  5991. "/Tests/"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Fabien Potencier",
  6001. "email": "fabien@symfony.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Executes commands in sub-processes",
  6009. "homepage": "https://symfony.com",
  6010. "support": {
  6011. "source": "https://github.com/symfony/process/tree/v7.3.0"
  6012. },
  6013. "funding": [
  6014. {
  6015. "url": "https://symfony.com/sponsor",
  6016. "type": "custom"
  6017. },
  6018. {
  6019. "url": "https://github.com/fabpot",
  6020. "type": "github"
  6021. },
  6022. {
  6023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6024. "type": "tidelift"
  6025. }
  6026. ],
  6027. "time": "2025-04-17T09:11:12+00:00"
  6028. },
  6029. {
  6030. "name": "symfony/property-access",
  6031. "version": "v7.3.1",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/symfony/property-access.git",
  6035. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/symfony/property-access/zipball/518d15c8cca726ebe665dcd7154074584cf862e8",
  6040. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "php": ">=8.2",
  6045. "symfony/property-info": "^6.4|^7.0"
  6046. },
  6047. "require-dev": {
  6048. "symfony/cache": "^6.4|^7.0"
  6049. },
  6050. "type": "library",
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Symfony\\Component\\PropertyAccess\\": ""
  6054. },
  6055. "exclude-from-classmap": [
  6056. "/Tests/"
  6057. ]
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "MIT"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Fabien Potencier",
  6066. "email": "fabien@symfony.com"
  6067. },
  6068. {
  6069. "name": "Symfony Community",
  6070. "homepage": "https://symfony.com/contributors"
  6071. }
  6072. ],
  6073. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6074. "homepage": "https://symfony.com",
  6075. "keywords": [
  6076. "access",
  6077. "array",
  6078. "extraction",
  6079. "index",
  6080. "injection",
  6081. "object",
  6082. "property",
  6083. "property-path",
  6084. "reflection"
  6085. ],
  6086. "support": {
  6087. "source": "https://github.com/symfony/property-access/tree/v7.3.1"
  6088. },
  6089. "funding": [
  6090. {
  6091. "url": "https://symfony.com/sponsor",
  6092. "type": "custom"
  6093. },
  6094. {
  6095. "url": "https://github.com/fabpot",
  6096. "type": "github"
  6097. },
  6098. {
  6099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6100. "type": "tidelift"
  6101. }
  6102. ],
  6103. "time": "2025-06-24T04:04:43+00:00"
  6104. },
  6105. {
  6106. "name": "symfony/property-info",
  6107. "version": "v7.3.1",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/symfony/property-info.git",
  6111. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  6116. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  6117. "shasum": ""
  6118. },
  6119. "require": {
  6120. "php": ">=8.2",
  6121. "symfony/deprecation-contracts": "^2.5|^3",
  6122. "symfony/string": "^6.4|^7.0",
  6123. "symfony/type-info": "~7.2.8|^7.3.1"
  6124. },
  6125. "conflict": {
  6126. "phpdocumentor/reflection-docblock": "<5.2",
  6127. "phpdocumentor/type-resolver": "<1.5.1",
  6128. "symfony/cache": "<6.4",
  6129. "symfony/dependency-injection": "<6.4",
  6130. "symfony/serializer": "<6.4"
  6131. },
  6132. "require-dev": {
  6133. "phpdocumentor/reflection-docblock": "^5.2",
  6134. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6135. "symfony/cache": "^6.4|^7.0",
  6136. "symfony/dependency-injection": "^6.4|^7.0",
  6137. "symfony/serializer": "^6.4|^7.0"
  6138. },
  6139. "type": "library",
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Symfony\\Component\\PropertyInfo\\": ""
  6143. },
  6144. "exclude-from-classmap": [
  6145. "/Tests/"
  6146. ]
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Kévin Dunglas",
  6155. "email": "dunglas@gmail.com"
  6156. },
  6157. {
  6158. "name": "Symfony Community",
  6159. "homepage": "https://symfony.com/contributors"
  6160. }
  6161. ],
  6162. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6163. "homepage": "https://symfony.com",
  6164. "keywords": [
  6165. "doctrine",
  6166. "phpdoc",
  6167. "property",
  6168. "symfony",
  6169. "type",
  6170. "validator"
  6171. ],
  6172. "support": {
  6173. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  6174. },
  6175. "funding": [
  6176. {
  6177. "url": "https://symfony.com/sponsor",
  6178. "type": "custom"
  6179. },
  6180. {
  6181. "url": "https://github.com/fabpot",
  6182. "type": "github"
  6183. },
  6184. {
  6185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6186. "type": "tidelift"
  6187. }
  6188. ],
  6189. "time": "2025-06-27T19:55:54+00:00"
  6190. },
  6191. {
  6192. "name": "symfony/routing",
  6193. "version": "v7.3.0",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/symfony/routing.git",
  6197. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  6202. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "php": ">=8.2",
  6207. "symfony/deprecation-contracts": "^2.5|^3"
  6208. },
  6209. "conflict": {
  6210. "symfony/config": "<6.4",
  6211. "symfony/dependency-injection": "<6.4",
  6212. "symfony/yaml": "<6.4"
  6213. },
  6214. "require-dev": {
  6215. "psr/log": "^1|^2|^3",
  6216. "symfony/config": "^6.4|^7.0",
  6217. "symfony/dependency-injection": "^6.4|^7.0",
  6218. "symfony/expression-language": "^6.4|^7.0",
  6219. "symfony/http-foundation": "^6.4|^7.0",
  6220. "symfony/yaml": "^6.4|^7.0"
  6221. },
  6222. "type": "library",
  6223. "autoload": {
  6224. "psr-4": {
  6225. "Symfony\\Component\\Routing\\": ""
  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": "Maps an HTTP request to a set of configuration variables",
  6246. "homepage": "https://symfony.com",
  6247. "keywords": [
  6248. "router",
  6249. "routing",
  6250. "uri",
  6251. "url"
  6252. ],
  6253. "support": {
  6254. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  6255. },
  6256. "funding": [
  6257. {
  6258. "url": "https://symfony.com/sponsor",
  6259. "type": "custom"
  6260. },
  6261. {
  6262. "url": "https://github.com/fabpot",
  6263. "type": "github"
  6264. },
  6265. {
  6266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6267. "type": "tidelift"
  6268. }
  6269. ],
  6270. "time": "2025-05-24T20:43:28+00:00"
  6271. },
  6272. {
  6273. "name": "symfony/runtime",
  6274. "version": "v7.3.1",
  6275. "source": {
  6276. "type": "git",
  6277. "url": "https://github.com/symfony/runtime.git",
  6278. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9"
  6279. },
  6280. "dist": {
  6281. "type": "zip",
  6282. "url": "https://api.github.com/repos/symfony/runtime/zipball/9516056d432f8acdac9458eb41b80097da7a05c9",
  6283. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9",
  6284. "shasum": ""
  6285. },
  6286. "require": {
  6287. "composer-plugin-api": "^1.0|^2.0",
  6288. "php": ">=8.2"
  6289. },
  6290. "conflict": {
  6291. "symfony/dotenv": "<6.4"
  6292. },
  6293. "require-dev": {
  6294. "composer/composer": "^2.6",
  6295. "symfony/console": "^6.4|^7.0",
  6296. "symfony/dotenv": "^6.4|^7.0",
  6297. "symfony/http-foundation": "^6.4|^7.0",
  6298. "symfony/http-kernel": "^6.4|^7.0"
  6299. },
  6300. "type": "composer-plugin",
  6301. "extra": {
  6302. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6303. },
  6304. "autoload": {
  6305. "psr-4": {
  6306. "Symfony\\Component\\Runtime\\": "",
  6307. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6308. },
  6309. "exclude-from-classmap": [
  6310. "/Tests/"
  6311. ]
  6312. },
  6313. "notification-url": "https://packagist.org/downloads/",
  6314. "license": [
  6315. "MIT"
  6316. ],
  6317. "authors": [
  6318. {
  6319. "name": "Nicolas Grekas",
  6320. "email": "p@tchwork.com"
  6321. },
  6322. {
  6323. "name": "Symfony Community",
  6324. "homepage": "https://symfony.com/contributors"
  6325. }
  6326. ],
  6327. "description": "Enables decoupling PHP applications from global state",
  6328. "homepage": "https://symfony.com",
  6329. "keywords": [
  6330. "runtime"
  6331. ],
  6332. "support": {
  6333. "source": "https://github.com/symfony/runtime/tree/v7.3.1"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://symfony.com/sponsor",
  6338. "type": "custom"
  6339. },
  6340. {
  6341. "url": "https://github.com/fabpot",
  6342. "type": "github"
  6343. },
  6344. {
  6345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6346. "type": "tidelift"
  6347. }
  6348. ],
  6349. "time": "2025-06-13T07:48:40+00:00"
  6350. },
  6351. {
  6352. "name": "symfony/security-bundle",
  6353. "version": "v7.3.1",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/symfony/security-bundle.git",
  6357. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/428a281fd66c8358adc2259c8578e6d81fbb7079",
  6362. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "composer-runtime-api": ">=2.1",
  6367. "ext-xml": "*",
  6368. "php": ">=8.2",
  6369. "symfony/clock": "^6.4|^7.0",
  6370. "symfony/config": "^7.3",
  6371. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6372. "symfony/event-dispatcher": "^6.4|^7.0",
  6373. "symfony/http-foundation": "^6.4|^7.0",
  6374. "symfony/http-kernel": "^6.4|^7.0",
  6375. "symfony/password-hasher": "^6.4|^7.0",
  6376. "symfony/security-core": "^7.3",
  6377. "symfony/security-csrf": "^6.4|^7.0",
  6378. "symfony/security-http": "^7.3",
  6379. "symfony/service-contracts": "^2.5|^3"
  6380. },
  6381. "conflict": {
  6382. "symfony/browser-kit": "<6.4",
  6383. "symfony/console": "<6.4",
  6384. "symfony/framework-bundle": "<6.4",
  6385. "symfony/http-client": "<6.4",
  6386. "symfony/ldap": "<6.4",
  6387. "symfony/serializer": "<6.4",
  6388. "symfony/twig-bundle": "<6.4",
  6389. "symfony/validator": "<6.4"
  6390. },
  6391. "require-dev": {
  6392. "symfony/asset": "^6.4|^7.0",
  6393. "symfony/browser-kit": "^6.4|^7.0",
  6394. "symfony/console": "^6.4|^7.0",
  6395. "symfony/css-selector": "^6.4|^7.0",
  6396. "symfony/dom-crawler": "^6.4|^7.0",
  6397. "symfony/expression-language": "^6.4|^7.0",
  6398. "symfony/form": "^6.4|^7.0",
  6399. "symfony/framework-bundle": "^6.4|^7.0",
  6400. "symfony/http-client": "^6.4|^7.0",
  6401. "symfony/ldap": "^6.4|^7.0",
  6402. "symfony/process": "^6.4|^7.0",
  6403. "symfony/rate-limiter": "^6.4|^7.0",
  6404. "symfony/serializer": "^6.4|^7.0",
  6405. "symfony/translation": "^6.4|^7.0",
  6406. "symfony/twig-bridge": "^6.4|^7.0",
  6407. "symfony/twig-bundle": "^6.4|^7.0",
  6408. "symfony/validator": "^6.4|^7.0",
  6409. "symfony/yaml": "^6.4|^7.0",
  6410. "twig/twig": "^3.12",
  6411. "web-token/jwt-library": "^3.3.2|^4.0"
  6412. },
  6413. "type": "symfony-bundle",
  6414. "autoload": {
  6415. "psr-4": {
  6416. "Symfony\\Bundle\\SecurityBundle\\": ""
  6417. },
  6418. "exclude-from-classmap": [
  6419. "/Tests/"
  6420. ]
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "MIT"
  6425. ],
  6426. "authors": [
  6427. {
  6428. "name": "Fabien Potencier",
  6429. "email": "fabien@symfony.com"
  6430. },
  6431. {
  6432. "name": "Symfony Community",
  6433. "homepage": "https://symfony.com/contributors"
  6434. }
  6435. ],
  6436. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6437. "homepage": "https://symfony.com",
  6438. "support": {
  6439. "source": "https://github.com/symfony/security-bundle/tree/v7.3.1"
  6440. },
  6441. "funding": [
  6442. {
  6443. "url": "https://symfony.com/sponsor",
  6444. "type": "custom"
  6445. },
  6446. {
  6447. "url": "https://github.com/fabpot",
  6448. "type": "github"
  6449. },
  6450. {
  6451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6452. "type": "tidelift"
  6453. }
  6454. ],
  6455. "time": "2025-06-24T04:04:43+00:00"
  6456. },
  6457. {
  6458. "name": "symfony/security-core",
  6459. "version": "v7.3.1",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/symfony/security-core.git",
  6463. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/symfony/security-core/zipball/fafab1003a31e51506e1a0a83e81c072211d81ba",
  6468. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba",
  6469. "shasum": ""
  6470. },
  6471. "require": {
  6472. "php": ">=8.2",
  6473. "symfony/deprecation-contracts": "^2.5|^3",
  6474. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6475. "symfony/password-hasher": "^6.4|^7.0",
  6476. "symfony/service-contracts": "^2.5|^3"
  6477. },
  6478. "conflict": {
  6479. "symfony/dependency-injection": "<6.4",
  6480. "symfony/event-dispatcher": "<6.4",
  6481. "symfony/http-foundation": "<6.4",
  6482. "symfony/ldap": "<6.4",
  6483. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6484. "symfony/validator": "<6.4"
  6485. },
  6486. "require-dev": {
  6487. "psr/cache": "^1.0|^2.0|^3.0",
  6488. "psr/container": "^1.1|^2.0",
  6489. "psr/log": "^1|^2|^3",
  6490. "symfony/cache": "^6.4|^7.0",
  6491. "symfony/dependency-injection": "^6.4|^7.0",
  6492. "symfony/event-dispatcher": "^6.4|^7.0",
  6493. "symfony/expression-language": "^6.4|^7.0",
  6494. "symfony/http-foundation": "^6.4|^7.0",
  6495. "symfony/ldap": "^6.4|^7.0",
  6496. "symfony/string": "^6.4|^7.0",
  6497. "symfony/translation": "^6.4.3|^7.0.3",
  6498. "symfony/validator": "^6.4|^7.0"
  6499. },
  6500. "type": "library",
  6501. "autoload": {
  6502. "psr-4": {
  6503. "Symfony\\Component\\Security\\Core\\": ""
  6504. },
  6505. "exclude-from-classmap": [
  6506. "/Tests/"
  6507. ]
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Fabien Potencier",
  6516. "email": "fabien@symfony.com"
  6517. },
  6518. {
  6519. "name": "Symfony Community",
  6520. "homepage": "https://symfony.com/contributors"
  6521. }
  6522. ],
  6523. "description": "Symfony Security Component - Core Library",
  6524. "homepage": "https://symfony.com",
  6525. "support": {
  6526. "source": "https://github.com/symfony/security-core/tree/v7.3.1"
  6527. },
  6528. "funding": [
  6529. {
  6530. "url": "https://symfony.com/sponsor",
  6531. "type": "custom"
  6532. },
  6533. {
  6534. "url": "https://github.com/fabpot",
  6535. "type": "github"
  6536. },
  6537. {
  6538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6539. "type": "tidelift"
  6540. }
  6541. ],
  6542. "time": "2025-06-23T07:28:50+00:00"
  6543. },
  6544. {
  6545. "name": "symfony/security-csrf",
  6546. "version": "v7.3.0",
  6547. "source": {
  6548. "type": "git",
  6549. "url": "https://github.com/symfony/security-csrf.git",
  6550. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  6551. },
  6552. "dist": {
  6553. "type": "zip",
  6554. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  6555. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  6556. "shasum": ""
  6557. },
  6558. "require": {
  6559. "php": ">=8.2",
  6560. "symfony/security-core": "^6.4|^7.0"
  6561. },
  6562. "conflict": {
  6563. "symfony/http-foundation": "<6.4"
  6564. },
  6565. "require-dev": {
  6566. "psr/log": "^1|^2|^3",
  6567. "symfony/http-foundation": "^6.4|^7.0",
  6568. "symfony/http-kernel": "^6.4|^7.0"
  6569. },
  6570. "type": "library",
  6571. "autoload": {
  6572. "psr-4": {
  6573. "Symfony\\Component\\Security\\Csrf\\": ""
  6574. },
  6575. "exclude-from-classmap": [
  6576. "/Tests/"
  6577. ]
  6578. },
  6579. "notification-url": "https://packagist.org/downloads/",
  6580. "license": [
  6581. "MIT"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Fabien Potencier",
  6586. "email": "fabien@symfony.com"
  6587. },
  6588. {
  6589. "name": "Symfony Community",
  6590. "homepage": "https://symfony.com/contributors"
  6591. }
  6592. ],
  6593. "description": "Symfony Security Component - CSRF Library",
  6594. "homepage": "https://symfony.com",
  6595. "support": {
  6596. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  6597. },
  6598. "funding": [
  6599. {
  6600. "url": "https://symfony.com/sponsor",
  6601. "type": "custom"
  6602. },
  6603. {
  6604. "url": "https://github.com/fabpot",
  6605. "type": "github"
  6606. },
  6607. {
  6608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6609. "type": "tidelift"
  6610. }
  6611. ],
  6612. "time": "2025-01-02T18:42:10+00:00"
  6613. },
  6614. {
  6615. "name": "symfony/security-http",
  6616. "version": "v7.3.1",
  6617. "source": {
  6618. "type": "git",
  6619. "url": "https://github.com/symfony/security-http.git",
  6620. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84"
  6621. },
  6622. "dist": {
  6623. "type": "zip",
  6624. "url": "https://api.github.com/repos/symfony/security-http/zipball/b7182ed0fd2359297f78ff6d407265168255ea84",
  6625. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84",
  6626. "shasum": ""
  6627. },
  6628. "require": {
  6629. "php": ">=8.2",
  6630. "symfony/deprecation-contracts": "^2.5|^3",
  6631. "symfony/http-foundation": "^6.4|^7.0",
  6632. "symfony/http-kernel": "^6.4|^7.0",
  6633. "symfony/polyfill-mbstring": "~1.0",
  6634. "symfony/property-access": "^6.4|^7.0",
  6635. "symfony/security-core": "^7.3",
  6636. "symfony/service-contracts": "^2.5|^3"
  6637. },
  6638. "conflict": {
  6639. "symfony/clock": "<6.4",
  6640. "symfony/event-dispatcher": "<6.4",
  6641. "symfony/http-client-contracts": "<3.0",
  6642. "symfony/security-bundle": "<6.4",
  6643. "symfony/security-csrf": "<6.4"
  6644. },
  6645. "require-dev": {
  6646. "psr/log": "^1|^2|^3",
  6647. "symfony/cache": "^6.4|^7.0",
  6648. "symfony/clock": "^6.4|^7.0",
  6649. "symfony/expression-language": "^6.4|^7.0",
  6650. "symfony/http-client": "^6.4|^7.0",
  6651. "symfony/http-client-contracts": "^3.0",
  6652. "symfony/rate-limiter": "^6.4|^7.0",
  6653. "symfony/routing": "^6.4|^7.0",
  6654. "symfony/security-csrf": "^6.4|^7.0",
  6655. "symfony/translation": "^6.4|^7.0",
  6656. "web-token/jwt-library": "^3.3.2|^4.0"
  6657. },
  6658. "type": "library",
  6659. "autoload": {
  6660. "psr-4": {
  6661. "Symfony\\Component\\Security\\Http\\": ""
  6662. },
  6663. "exclude-from-classmap": [
  6664. "/Tests/"
  6665. ]
  6666. },
  6667. "notification-url": "https://packagist.org/downloads/",
  6668. "license": [
  6669. "MIT"
  6670. ],
  6671. "authors": [
  6672. {
  6673. "name": "Fabien Potencier",
  6674. "email": "fabien@symfony.com"
  6675. },
  6676. {
  6677. "name": "Symfony Community",
  6678. "homepage": "https://symfony.com/contributors"
  6679. }
  6680. ],
  6681. "description": "Symfony Security Component - HTTP Integration",
  6682. "homepage": "https://symfony.com",
  6683. "support": {
  6684. "source": "https://github.com/symfony/security-http/tree/v7.3.1"
  6685. },
  6686. "funding": [
  6687. {
  6688. "url": "https://symfony.com/sponsor",
  6689. "type": "custom"
  6690. },
  6691. {
  6692. "url": "https://github.com/fabpot",
  6693. "type": "github"
  6694. },
  6695. {
  6696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6697. "type": "tidelift"
  6698. }
  6699. ],
  6700. "time": "2025-06-24T04:04:43+00:00"
  6701. },
  6702. {
  6703. "name": "symfony/serializer",
  6704. "version": "v7.3.1",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://github.com/symfony/serializer.git",
  6708. "reference": "feaf837cedbbc8287986602223175d3fd639922d"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://api.github.com/repos/symfony/serializer/zipball/feaf837cedbbc8287986602223175d3fd639922d",
  6713. "reference": "feaf837cedbbc8287986602223175d3fd639922d",
  6714. "shasum": ""
  6715. },
  6716. "require": {
  6717. "php": ">=8.2",
  6718. "symfony/deprecation-contracts": "^2.5|^3",
  6719. "symfony/polyfill-ctype": "~1.8"
  6720. },
  6721. "conflict": {
  6722. "phpdocumentor/reflection-docblock": "<3.2.2",
  6723. "phpdocumentor/type-resolver": "<1.4.0",
  6724. "symfony/dependency-injection": "<6.4",
  6725. "symfony/property-access": "<6.4",
  6726. "symfony/property-info": "<6.4",
  6727. "symfony/uid": "<6.4",
  6728. "symfony/validator": "<6.4",
  6729. "symfony/yaml": "<6.4"
  6730. },
  6731. "require-dev": {
  6732. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6733. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6734. "seld/jsonlint": "^1.10",
  6735. "symfony/cache": "^6.4|^7.0",
  6736. "symfony/config": "^6.4|^7.0",
  6737. "symfony/console": "^6.4|^7.0",
  6738. "symfony/dependency-injection": "^7.2",
  6739. "symfony/error-handler": "^6.4|^7.0",
  6740. "symfony/filesystem": "^6.4|^7.0",
  6741. "symfony/form": "^6.4|^7.0",
  6742. "symfony/http-foundation": "^6.4|^7.0",
  6743. "symfony/http-kernel": "^6.4|^7.0",
  6744. "symfony/messenger": "^6.4|^7.0",
  6745. "symfony/mime": "^6.4|^7.0",
  6746. "symfony/property-access": "^6.4|^7.0",
  6747. "symfony/property-info": "^6.4|^7.0",
  6748. "symfony/translation-contracts": "^2.5|^3",
  6749. "symfony/type-info": "^7.1",
  6750. "symfony/uid": "^6.4|^7.0",
  6751. "symfony/validator": "^6.4|^7.0",
  6752. "symfony/var-dumper": "^6.4|^7.0",
  6753. "symfony/var-exporter": "^6.4|^7.0",
  6754. "symfony/yaml": "^6.4|^7.0"
  6755. },
  6756. "type": "library",
  6757. "autoload": {
  6758. "psr-4": {
  6759. "Symfony\\Component\\Serializer\\": ""
  6760. },
  6761. "exclude-from-classmap": [
  6762. "/Tests/"
  6763. ]
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "MIT"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "Fabien Potencier",
  6772. "email": "fabien@symfony.com"
  6773. },
  6774. {
  6775. "name": "Symfony Community",
  6776. "homepage": "https://symfony.com/contributors"
  6777. }
  6778. ],
  6779. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6780. "homepage": "https://symfony.com",
  6781. "support": {
  6782. "source": "https://github.com/symfony/serializer/tree/v7.3.1"
  6783. },
  6784. "funding": [
  6785. {
  6786. "url": "https://symfony.com/sponsor",
  6787. "type": "custom"
  6788. },
  6789. {
  6790. "url": "https://github.com/fabpot",
  6791. "type": "github"
  6792. },
  6793. {
  6794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6795. "type": "tidelift"
  6796. }
  6797. ],
  6798. "time": "2025-06-27T19:55:54+00:00"
  6799. },
  6800. {
  6801. "name": "symfony/service-contracts",
  6802. "version": "v3.6.0",
  6803. "source": {
  6804. "type": "git",
  6805. "url": "https://github.com/symfony/service-contracts.git",
  6806. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6807. },
  6808. "dist": {
  6809. "type": "zip",
  6810. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6811. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6812. "shasum": ""
  6813. },
  6814. "require": {
  6815. "php": ">=8.1",
  6816. "psr/container": "^1.1|^2.0",
  6817. "symfony/deprecation-contracts": "^2.5|^3"
  6818. },
  6819. "conflict": {
  6820. "ext-psr": "<1.1|>=2"
  6821. },
  6822. "type": "library",
  6823. "extra": {
  6824. "thanks": {
  6825. "url": "https://github.com/symfony/contracts",
  6826. "name": "symfony/contracts"
  6827. },
  6828. "branch-alias": {
  6829. "dev-main": "3.6-dev"
  6830. }
  6831. },
  6832. "autoload": {
  6833. "psr-4": {
  6834. "Symfony\\Contracts\\Service\\": ""
  6835. },
  6836. "exclude-from-classmap": [
  6837. "/Test/"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Nicolas Grekas",
  6847. "email": "p@tchwork.com"
  6848. },
  6849. {
  6850. "name": "Symfony Community",
  6851. "homepage": "https://symfony.com/contributors"
  6852. }
  6853. ],
  6854. "description": "Generic abstractions related to writing services",
  6855. "homepage": "https://symfony.com",
  6856. "keywords": [
  6857. "abstractions",
  6858. "contracts",
  6859. "decoupling",
  6860. "interfaces",
  6861. "interoperability",
  6862. "standards"
  6863. ],
  6864. "support": {
  6865. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6866. },
  6867. "funding": [
  6868. {
  6869. "url": "https://symfony.com/sponsor",
  6870. "type": "custom"
  6871. },
  6872. {
  6873. "url": "https://github.com/fabpot",
  6874. "type": "github"
  6875. },
  6876. {
  6877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6878. "type": "tidelift"
  6879. }
  6880. ],
  6881. "time": "2025-04-25T09:37:31+00:00"
  6882. },
  6883. {
  6884. "name": "symfony/stimulus-bundle",
  6885. "version": "v2.27.0",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://github.com/symfony/stimulus-bundle.git",
  6889. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6894. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6895. "shasum": ""
  6896. },
  6897. "require": {
  6898. "php": ">=8.1",
  6899. "symfony/config": "^5.4|^6.0|^7.0",
  6900. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6901. "symfony/deprecation-contracts": "^2.0|^3.0",
  6902. "symfony/finder": "^5.4|^6.0|^7.0",
  6903. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6904. "twig/twig": "^2.15.3|^3.8"
  6905. },
  6906. "require-dev": {
  6907. "symfony/asset-mapper": "^6.3|^7.0",
  6908. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6909. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6910. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6911. "zenstruck/browser": "^1.4"
  6912. },
  6913. "type": "symfony-bundle",
  6914. "autoload": {
  6915. "psr-4": {
  6916. "Symfony\\UX\\StimulusBundle\\": "src"
  6917. }
  6918. },
  6919. "notification-url": "https://packagist.org/downloads/",
  6920. "license": [
  6921. "MIT"
  6922. ],
  6923. "authors": [
  6924. {
  6925. "name": "Symfony Community",
  6926. "homepage": "https://symfony.com/contributors"
  6927. }
  6928. ],
  6929. "description": "Integration with your Symfony app & Stimulus!",
  6930. "keywords": [
  6931. "symfony-ux"
  6932. ],
  6933. "support": {
  6934. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.27.0"
  6935. },
  6936. "funding": [
  6937. {
  6938. "url": "https://symfony.com/sponsor",
  6939. "type": "custom"
  6940. },
  6941. {
  6942. "url": "https://github.com/fabpot",
  6943. "type": "github"
  6944. },
  6945. {
  6946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6947. "type": "tidelift"
  6948. }
  6949. ],
  6950. "time": "2025-06-22T19:07:55+00:00"
  6951. },
  6952. {
  6953. "name": "symfony/stopwatch",
  6954. "version": "v7.3.0",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/symfony/stopwatch.git",
  6958. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6963. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=8.2",
  6968. "symfony/service-contracts": "^2.5|^3"
  6969. },
  6970. "type": "library",
  6971. "autoload": {
  6972. "psr-4": {
  6973. "Symfony\\Component\\Stopwatch\\": ""
  6974. },
  6975. "exclude-from-classmap": [
  6976. "/Tests/"
  6977. ]
  6978. },
  6979. "notification-url": "https://packagist.org/downloads/",
  6980. "license": [
  6981. "MIT"
  6982. ],
  6983. "authors": [
  6984. {
  6985. "name": "Fabien Potencier",
  6986. "email": "fabien@symfony.com"
  6987. },
  6988. {
  6989. "name": "Symfony Community",
  6990. "homepage": "https://symfony.com/contributors"
  6991. }
  6992. ],
  6993. "description": "Provides a way to profile code",
  6994. "homepage": "https://symfony.com",
  6995. "support": {
  6996. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  6997. },
  6998. "funding": [
  6999. {
  7000. "url": "https://symfony.com/sponsor",
  7001. "type": "custom"
  7002. },
  7003. {
  7004. "url": "https://github.com/fabpot",
  7005. "type": "github"
  7006. },
  7007. {
  7008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7009. "type": "tidelift"
  7010. }
  7011. ],
  7012. "time": "2025-02-24T10:49:57+00:00"
  7013. },
  7014. {
  7015. "name": "symfony/string",
  7016. "version": "v7.3.0",
  7017. "source": {
  7018. "type": "git",
  7019. "url": "https://github.com/symfony/string.git",
  7020. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  7021. },
  7022. "dist": {
  7023. "type": "zip",
  7024. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  7025. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  7026. "shasum": ""
  7027. },
  7028. "require": {
  7029. "php": ">=8.2",
  7030. "symfony/polyfill-ctype": "~1.8",
  7031. "symfony/polyfill-intl-grapheme": "~1.0",
  7032. "symfony/polyfill-intl-normalizer": "~1.0",
  7033. "symfony/polyfill-mbstring": "~1.0"
  7034. },
  7035. "conflict": {
  7036. "symfony/translation-contracts": "<2.5"
  7037. },
  7038. "require-dev": {
  7039. "symfony/emoji": "^7.1",
  7040. "symfony/error-handler": "^6.4|^7.0",
  7041. "symfony/http-client": "^6.4|^7.0",
  7042. "symfony/intl": "^6.4|^7.0",
  7043. "symfony/translation-contracts": "^2.5|^3.0",
  7044. "symfony/var-exporter": "^6.4|^7.0"
  7045. },
  7046. "type": "library",
  7047. "autoload": {
  7048. "files": [
  7049. "Resources/functions.php"
  7050. ],
  7051. "psr-4": {
  7052. "Symfony\\Component\\String\\": ""
  7053. },
  7054. "exclude-from-classmap": [
  7055. "/Tests/"
  7056. ]
  7057. },
  7058. "notification-url": "https://packagist.org/downloads/",
  7059. "license": [
  7060. "MIT"
  7061. ],
  7062. "authors": [
  7063. {
  7064. "name": "Nicolas Grekas",
  7065. "email": "p@tchwork.com"
  7066. },
  7067. {
  7068. "name": "Symfony Community",
  7069. "homepage": "https://symfony.com/contributors"
  7070. }
  7071. ],
  7072. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7073. "homepage": "https://symfony.com",
  7074. "keywords": [
  7075. "grapheme",
  7076. "i18n",
  7077. "string",
  7078. "unicode",
  7079. "utf-8",
  7080. "utf8"
  7081. ],
  7082. "support": {
  7083. "source": "https://github.com/symfony/string/tree/v7.3.0"
  7084. },
  7085. "funding": [
  7086. {
  7087. "url": "https://symfony.com/sponsor",
  7088. "type": "custom"
  7089. },
  7090. {
  7091. "url": "https://github.com/fabpot",
  7092. "type": "github"
  7093. },
  7094. {
  7095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7096. "type": "tidelift"
  7097. }
  7098. ],
  7099. "time": "2025-04-20T20:19:01+00:00"
  7100. },
  7101. {
  7102. "name": "symfony/translation",
  7103. "version": "v7.3.1",
  7104. "source": {
  7105. "type": "git",
  7106. "url": "https://github.com/symfony/translation.git",
  7107. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  7108. },
  7109. "dist": {
  7110. "type": "zip",
  7111. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  7112. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  7113. "shasum": ""
  7114. },
  7115. "require": {
  7116. "php": ">=8.2",
  7117. "symfony/deprecation-contracts": "^2.5|^3",
  7118. "symfony/polyfill-mbstring": "~1.0",
  7119. "symfony/translation-contracts": "^2.5|^3.0"
  7120. },
  7121. "conflict": {
  7122. "nikic/php-parser": "<5.0",
  7123. "symfony/config": "<6.4",
  7124. "symfony/console": "<6.4",
  7125. "symfony/dependency-injection": "<6.4",
  7126. "symfony/http-client-contracts": "<2.5",
  7127. "symfony/http-kernel": "<6.4",
  7128. "symfony/service-contracts": "<2.5",
  7129. "symfony/twig-bundle": "<6.4",
  7130. "symfony/yaml": "<6.4"
  7131. },
  7132. "provide": {
  7133. "symfony/translation-implementation": "2.3|3.0"
  7134. },
  7135. "require-dev": {
  7136. "nikic/php-parser": "^5.0",
  7137. "psr/log": "^1|^2|^3",
  7138. "symfony/config": "^6.4|^7.0",
  7139. "symfony/console": "^6.4|^7.0",
  7140. "symfony/dependency-injection": "^6.4|^7.0",
  7141. "symfony/finder": "^6.4|^7.0",
  7142. "symfony/http-client-contracts": "^2.5|^3.0",
  7143. "symfony/http-kernel": "^6.4|^7.0",
  7144. "symfony/intl": "^6.4|^7.0",
  7145. "symfony/polyfill-intl-icu": "^1.21",
  7146. "symfony/routing": "^6.4|^7.0",
  7147. "symfony/service-contracts": "^2.5|^3",
  7148. "symfony/yaml": "^6.4|^7.0"
  7149. },
  7150. "type": "library",
  7151. "autoload": {
  7152. "files": [
  7153. "Resources/functions.php"
  7154. ],
  7155. "psr-4": {
  7156. "Symfony\\Component\\Translation\\": ""
  7157. },
  7158. "exclude-from-classmap": [
  7159. "/Tests/"
  7160. ]
  7161. },
  7162. "notification-url": "https://packagist.org/downloads/",
  7163. "license": [
  7164. "MIT"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "Fabien Potencier",
  7169. "email": "fabien@symfony.com"
  7170. },
  7171. {
  7172. "name": "Symfony Community",
  7173. "homepage": "https://symfony.com/contributors"
  7174. }
  7175. ],
  7176. "description": "Provides tools to internationalize your application",
  7177. "homepage": "https://symfony.com",
  7178. "support": {
  7179. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  7180. },
  7181. "funding": [
  7182. {
  7183. "url": "https://symfony.com/sponsor",
  7184. "type": "custom"
  7185. },
  7186. {
  7187. "url": "https://github.com/fabpot",
  7188. "type": "github"
  7189. },
  7190. {
  7191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7192. "type": "tidelift"
  7193. }
  7194. ],
  7195. "time": "2025-06-27T19:55:54+00:00"
  7196. },
  7197. {
  7198. "name": "symfony/translation-contracts",
  7199. "version": "v3.6.0",
  7200. "source": {
  7201. "type": "git",
  7202. "url": "https://github.com/symfony/translation-contracts.git",
  7203. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  7204. },
  7205. "dist": {
  7206. "type": "zip",
  7207. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7208. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7209. "shasum": ""
  7210. },
  7211. "require": {
  7212. "php": ">=8.1"
  7213. },
  7214. "type": "library",
  7215. "extra": {
  7216. "thanks": {
  7217. "url": "https://github.com/symfony/contracts",
  7218. "name": "symfony/contracts"
  7219. },
  7220. "branch-alias": {
  7221. "dev-main": "3.6-dev"
  7222. }
  7223. },
  7224. "autoload": {
  7225. "psr-4": {
  7226. "Symfony\\Contracts\\Translation\\": ""
  7227. },
  7228. "exclude-from-classmap": [
  7229. "/Test/"
  7230. ]
  7231. },
  7232. "notification-url": "https://packagist.org/downloads/",
  7233. "license": [
  7234. "MIT"
  7235. ],
  7236. "authors": [
  7237. {
  7238. "name": "Nicolas Grekas",
  7239. "email": "p@tchwork.com"
  7240. },
  7241. {
  7242. "name": "Symfony Community",
  7243. "homepage": "https://symfony.com/contributors"
  7244. }
  7245. ],
  7246. "description": "Generic abstractions related to translation",
  7247. "homepage": "https://symfony.com",
  7248. "keywords": [
  7249. "abstractions",
  7250. "contracts",
  7251. "decoupling",
  7252. "interfaces",
  7253. "interoperability",
  7254. "standards"
  7255. ],
  7256. "support": {
  7257. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  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": "2024-09-27T08:32:26+00:00"
  7274. },
  7275. {
  7276. "name": "symfony/twig-bridge",
  7277. "version": "v7.3.0",
  7278. "source": {
  7279. "type": "git",
  7280. "url": "https://github.com/symfony/twig-bridge.git",
  7281. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891"
  7282. },
  7283. "dist": {
  7284. "type": "zip",
  7285. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  7286. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  7287. "shasum": ""
  7288. },
  7289. "require": {
  7290. "php": ">=8.2",
  7291. "symfony/deprecation-contracts": "^2.5|^3",
  7292. "symfony/translation-contracts": "^2.5|^3",
  7293. "twig/twig": "^3.21"
  7294. },
  7295. "conflict": {
  7296. "phpdocumentor/reflection-docblock": "<3.2.2",
  7297. "phpdocumentor/type-resolver": "<1.4.0",
  7298. "symfony/console": "<6.4",
  7299. "symfony/form": "<6.4",
  7300. "symfony/http-foundation": "<6.4",
  7301. "symfony/http-kernel": "<6.4",
  7302. "symfony/mime": "<6.4",
  7303. "symfony/serializer": "<6.4",
  7304. "symfony/translation": "<6.4",
  7305. "symfony/workflow": "<6.4"
  7306. },
  7307. "require-dev": {
  7308. "egulias/email-validator": "^2.1.10|^3|^4",
  7309. "league/html-to-markdown": "^5.0",
  7310. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7311. "symfony/asset": "^6.4|^7.0",
  7312. "symfony/asset-mapper": "^6.4|^7.0",
  7313. "symfony/console": "^6.4|^7.0",
  7314. "symfony/dependency-injection": "^6.4|^7.0",
  7315. "symfony/emoji": "^7.1",
  7316. "symfony/expression-language": "^6.4|^7.0",
  7317. "symfony/finder": "^6.4|^7.0",
  7318. "symfony/form": "^6.4.20|^7.2.5",
  7319. "symfony/html-sanitizer": "^6.4|^7.0",
  7320. "symfony/http-foundation": "^7.3",
  7321. "symfony/http-kernel": "^6.4|^7.0",
  7322. "symfony/intl": "^6.4|^7.0",
  7323. "symfony/mime": "^6.4|^7.0",
  7324. "symfony/polyfill-intl-icu": "~1.0",
  7325. "symfony/property-info": "^6.4|^7.0",
  7326. "symfony/routing": "^6.4|^7.0",
  7327. "symfony/security-acl": "^2.8|^3.0",
  7328. "symfony/security-core": "^6.4|^7.0",
  7329. "symfony/security-csrf": "^6.4|^7.0",
  7330. "symfony/security-http": "^6.4|^7.0",
  7331. "symfony/serializer": "^6.4.3|^7.0.3",
  7332. "symfony/stopwatch": "^6.4|^7.0",
  7333. "symfony/translation": "^6.4|^7.0",
  7334. "symfony/validator": "^6.4|^7.0",
  7335. "symfony/web-link": "^6.4|^7.0",
  7336. "symfony/workflow": "^6.4|^7.0",
  7337. "symfony/yaml": "^6.4|^7.0",
  7338. "twig/cssinliner-extra": "^3",
  7339. "twig/inky-extra": "^3",
  7340. "twig/markdown-extra": "^3"
  7341. },
  7342. "type": "symfony-bridge",
  7343. "autoload": {
  7344. "psr-4": {
  7345. "Symfony\\Bridge\\Twig\\": ""
  7346. },
  7347. "exclude-from-classmap": [
  7348. "/Tests/"
  7349. ]
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "license": [
  7353. "MIT"
  7354. ],
  7355. "authors": [
  7356. {
  7357. "name": "Fabien Potencier",
  7358. "email": "fabien@symfony.com"
  7359. },
  7360. {
  7361. "name": "Symfony Community",
  7362. "homepage": "https://symfony.com/contributors"
  7363. }
  7364. ],
  7365. "description": "Provides integration for Twig with various Symfony components",
  7366. "homepage": "https://symfony.com",
  7367. "support": {
  7368. "source": "https://github.com/symfony/twig-bridge/tree/v7.3.0"
  7369. },
  7370. "funding": [
  7371. {
  7372. "url": "https://symfony.com/sponsor",
  7373. "type": "custom"
  7374. },
  7375. {
  7376. "url": "https://github.com/fabpot",
  7377. "type": "github"
  7378. },
  7379. {
  7380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7381. "type": "tidelift"
  7382. }
  7383. ],
  7384. "time": "2025-05-19T13:28:56+00:00"
  7385. },
  7386. {
  7387. "name": "symfony/twig-bundle",
  7388. "version": "v7.3.1",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/symfony/twig-bundle.git",
  7392. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  7397. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "composer-runtime-api": ">=2.1",
  7402. "php": ">=8.2",
  7403. "symfony/config": "^7.3",
  7404. "symfony/dependency-injection": "^6.4|^7.0",
  7405. "symfony/http-foundation": "^6.4|^7.0",
  7406. "symfony/http-kernel": "^6.4|^7.0",
  7407. "symfony/twig-bridge": "^7.3",
  7408. "twig/twig": "^3.12"
  7409. },
  7410. "conflict": {
  7411. "symfony/framework-bundle": "<6.4",
  7412. "symfony/translation": "<6.4"
  7413. },
  7414. "require-dev": {
  7415. "symfony/asset": "^6.4|^7.0",
  7416. "symfony/expression-language": "^6.4|^7.0",
  7417. "symfony/finder": "^6.4|^7.0",
  7418. "symfony/form": "^6.4|^7.0",
  7419. "symfony/framework-bundle": "^6.4|^7.0",
  7420. "symfony/routing": "^6.4|^7.0",
  7421. "symfony/stopwatch": "^6.4|^7.0",
  7422. "symfony/translation": "^6.4|^7.0",
  7423. "symfony/web-link": "^6.4|^7.0",
  7424. "symfony/yaml": "^6.4|^7.0"
  7425. },
  7426. "type": "symfony-bundle",
  7427. "autoload": {
  7428. "psr-4": {
  7429. "Symfony\\Bundle\\TwigBundle\\": ""
  7430. },
  7431. "exclude-from-classmap": [
  7432. "/Tests/"
  7433. ]
  7434. },
  7435. "notification-url": "https://packagist.org/downloads/",
  7436. "license": [
  7437. "MIT"
  7438. ],
  7439. "authors": [
  7440. {
  7441. "name": "Fabien Potencier",
  7442. "email": "fabien@symfony.com"
  7443. },
  7444. {
  7445. "name": "Symfony Community",
  7446. "homepage": "https://symfony.com/contributors"
  7447. }
  7448. ],
  7449. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7450. "homepage": "https://symfony.com",
  7451. "support": {
  7452. "source": "https://github.com/symfony/twig-bundle/tree/v7.3.1"
  7453. },
  7454. "funding": [
  7455. {
  7456. "url": "https://symfony.com/sponsor",
  7457. "type": "custom"
  7458. },
  7459. {
  7460. "url": "https://github.com/fabpot",
  7461. "type": "github"
  7462. },
  7463. {
  7464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7465. "type": "tidelift"
  7466. }
  7467. ],
  7468. "time": "2025-06-24T04:04:43+00:00"
  7469. },
  7470. {
  7471. "name": "symfony/type-info",
  7472. "version": "v7.3.1",
  7473. "source": {
  7474. "type": "git",
  7475. "url": "https://github.com/symfony/type-info.git",
  7476. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150"
  7477. },
  7478. "dist": {
  7479. "type": "zip",
  7480. "url": "https://api.github.com/repos/symfony/type-info/zipball/5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  7481. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  7482. "shasum": ""
  7483. },
  7484. "require": {
  7485. "php": ">=8.2",
  7486. "psr/container": "^1.1|^2.0",
  7487. "symfony/deprecation-contracts": "^2.5|^3"
  7488. },
  7489. "conflict": {
  7490. "phpstan/phpdoc-parser": "<1.30"
  7491. },
  7492. "require-dev": {
  7493. "phpstan/phpdoc-parser": "^1.30|^2.0"
  7494. },
  7495. "type": "library",
  7496. "autoload": {
  7497. "psr-4": {
  7498. "Symfony\\Component\\TypeInfo\\": ""
  7499. },
  7500. "exclude-from-classmap": [
  7501. "/Tests/"
  7502. ]
  7503. },
  7504. "notification-url": "https://packagist.org/downloads/",
  7505. "license": [
  7506. "MIT"
  7507. ],
  7508. "authors": [
  7509. {
  7510. "name": "Mathias Arlaud",
  7511. "email": "mathias.arlaud@gmail.com"
  7512. },
  7513. {
  7514. "name": "Baptiste LEDUC",
  7515. "email": "baptiste.leduc@gmail.com"
  7516. },
  7517. {
  7518. "name": "Symfony Community",
  7519. "homepage": "https://symfony.com/contributors"
  7520. }
  7521. ],
  7522. "description": "Extracts PHP types information.",
  7523. "homepage": "https://symfony.com",
  7524. "keywords": [
  7525. "PHPStan",
  7526. "phpdoc",
  7527. "symfony",
  7528. "type"
  7529. ],
  7530. "support": {
  7531. "source": "https://github.com/symfony/type-info/tree/v7.3.1"
  7532. },
  7533. "funding": [
  7534. {
  7535. "url": "https://symfony.com/sponsor",
  7536. "type": "custom"
  7537. },
  7538. {
  7539. "url": "https://github.com/fabpot",
  7540. "type": "github"
  7541. },
  7542. {
  7543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7544. "type": "tidelift"
  7545. }
  7546. ],
  7547. "time": "2025-06-27T19:55:54+00:00"
  7548. },
  7549. {
  7550. "name": "symfony/uid",
  7551. "version": "v7.3.1",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/symfony/uid.git",
  7555. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  7560. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "php": ">=8.2",
  7565. "symfony/polyfill-uuid": "^1.15"
  7566. },
  7567. "require-dev": {
  7568. "symfony/console": "^6.4|^7.0"
  7569. },
  7570. "type": "library",
  7571. "autoload": {
  7572. "psr-4": {
  7573. "Symfony\\Component\\Uid\\": ""
  7574. },
  7575. "exclude-from-classmap": [
  7576. "/Tests/"
  7577. ]
  7578. },
  7579. "notification-url": "https://packagist.org/downloads/",
  7580. "license": [
  7581. "MIT"
  7582. ],
  7583. "authors": [
  7584. {
  7585. "name": "Grégoire Pineau",
  7586. "email": "lyrixx@lyrixx.info"
  7587. },
  7588. {
  7589. "name": "Nicolas Grekas",
  7590. "email": "p@tchwork.com"
  7591. },
  7592. {
  7593. "name": "Symfony Community",
  7594. "homepage": "https://symfony.com/contributors"
  7595. }
  7596. ],
  7597. "description": "Provides an object-oriented API to generate and represent UIDs",
  7598. "homepage": "https://symfony.com",
  7599. "keywords": [
  7600. "UID",
  7601. "ulid",
  7602. "uuid"
  7603. ],
  7604. "support": {
  7605. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  7606. },
  7607. "funding": [
  7608. {
  7609. "url": "https://symfony.com/sponsor",
  7610. "type": "custom"
  7611. },
  7612. {
  7613. "url": "https://github.com/fabpot",
  7614. "type": "github"
  7615. },
  7616. {
  7617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7618. "type": "tidelift"
  7619. }
  7620. ],
  7621. "time": "2025-06-27T19:55:54+00:00"
  7622. },
  7623. {
  7624. "name": "symfony/ux-icons",
  7625. "version": "v2.27.0",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/symfony/ux-icons.git",
  7629. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/symfony/ux-icons/zipball/af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  7634. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "php": ">=8.1",
  7639. "symfony/framework-bundle": "^6.4|^7.0",
  7640. "symfony/twig-bundle": "^6.4|^7.0"
  7641. },
  7642. "conflict": {
  7643. "symfony/flex": "<1.13",
  7644. "symfony/ux-twig-component": "<2.21"
  7645. },
  7646. "require-dev": {
  7647. "psr/log": "^2|^3",
  7648. "symfony/asset-mapper": "^6.4|^7.0",
  7649. "symfony/console": "^6.4|^7.0",
  7650. "symfony/http-client": "6.4|^7.0",
  7651. "symfony/phpunit-bridge": "^6.3|^7.0",
  7652. "symfony/ux-twig-component": "^2.14",
  7653. "zenstruck/console-test": "^1.5"
  7654. },
  7655. "type": "symfony-bundle",
  7656. "extra": {
  7657. "thanks": {
  7658. "url": "https://github.com/symfony/ux",
  7659. "name": "symfony/ux"
  7660. }
  7661. },
  7662. "autoload": {
  7663. "psr-4": {
  7664. "Symfony\\UX\\Icons\\": "src/"
  7665. }
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "MIT"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Kevin Bond",
  7674. "email": "kevinbond@gmail.com"
  7675. },
  7676. {
  7677. "name": "Simon André",
  7678. "email": "smn.andre@gmail.com"
  7679. },
  7680. {
  7681. "name": "Symfony Community",
  7682. "homepage": "https://symfony.com/contributors"
  7683. }
  7684. ],
  7685. "description": "Renders local and remote SVG icons in your Twig templates.",
  7686. "homepage": "https://symfony.com",
  7687. "keywords": [
  7688. "icons",
  7689. "svg",
  7690. "symfony-ux",
  7691. "twig"
  7692. ],
  7693. "support": {
  7694. "source": "https://github.com/symfony/ux-icons/tree/v2.27.0"
  7695. },
  7696. "funding": [
  7697. {
  7698. "url": "https://symfony.com/sponsor",
  7699. "type": "custom"
  7700. },
  7701. {
  7702. "url": "https://github.com/fabpot",
  7703. "type": "github"
  7704. },
  7705. {
  7706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7707. "type": "tidelift"
  7708. }
  7709. ],
  7710. "time": "2025-06-17T06:15:15+00:00"
  7711. },
  7712. {
  7713. "name": "symfony/ux-toggle-password",
  7714. "version": "v2.27.0",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/symfony/ux-toggle-password.git",
  7718. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/symfony/ux-toggle-password/zipball/9753f554d00e0f86f44726165f9af6e6513086b7",
  7723. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7",
  7724. "shasum": ""
  7725. },
  7726. "require": {
  7727. "php": ">=8.1",
  7728. "symfony/config": "^5.4|^6.0|^7.0",
  7729. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7730. "symfony/form": "^5.4|^6.0|^7.0",
  7731. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7732. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  7733. "symfony/translation": "^5.4|^6.0|^7.0"
  7734. },
  7735. "require-dev": {
  7736. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7737. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7738. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7739. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7740. "twig/twig": "^2.14.7|^3.0.4"
  7741. },
  7742. "type": "symfony-bundle",
  7743. "extra": {
  7744. "thanks": {
  7745. "url": "https://github.com/symfony/ux",
  7746. "name": "symfony/ux"
  7747. }
  7748. },
  7749. "autoload": {
  7750. "psr-4": {
  7751. "Symfony\\UX\\TogglePassword\\": "src/"
  7752. }
  7753. },
  7754. "notification-url": "https://packagist.org/downloads/",
  7755. "license": [
  7756. "MIT"
  7757. ],
  7758. "authors": [
  7759. {
  7760. "name": "Félix Eymonot",
  7761. "email": "felix.eymonot@alximy.io"
  7762. },
  7763. {
  7764. "name": "Symfony Community",
  7765. "homepage": "https://symfony.com/contributors"
  7766. }
  7767. ],
  7768. "description": "Toggle visibility of password inputs for Symfony Forms",
  7769. "homepage": "https://symfony.com",
  7770. "keywords": [
  7771. "symfony-ux"
  7772. ],
  7773. "support": {
  7774. "source": "https://github.com/symfony/ux-toggle-password/tree/v2.27.0"
  7775. },
  7776. "funding": [
  7777. {
  7778. "url": "https://symfony.com/sponsor",
  7779. "type": "custom"
  7780. },
  7781. {
  7782. "url": "https://github.com/fabpot",
  7783. "type": "github"
  7784. },
  7785. {
  7786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7787. "type": "tidelift"
  7788. }
  7789. ],
  7790. "time": "2025-06-06T20:27:21+00:00"
  7791. },
  7792. {
  7793. "name": "symfony/ux-turbo",
  7794. "version": "v2.27.0",
  7795. "source": {
  7796. "type": "git",
  7797. "url": "https://github.com/symfony/ux-turbo.git",
  7798. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2"
  7799. },
  7800. "dist": {
  7801. "type": "zip",
  7802. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  7803. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  7804. "shasum": ""
  7805. },
  7806. "require": {
  7807. "php": ">=8.1",
  7808. "symfony/stimulus-bundle": "^2.9.1"
  7809. },
  7810. "conflict": {
  7811. "symfony/flex": "<1.13"
  7812. },
  7813. "require-dev": {
  7814. "dbrekelmans/bdi": "dev-main",
  7815. "doctrine/doctrine-bundle": "^2.4.3",
  7816. "doctrine/orm": "^2.8 | 3.0",
  7817. "php-webdriver/webdriver": "^1.15",
  7818. "phpstan/phpstan": "^2.1.17",
  7819. "symfony/asset-mapper": "^6.4|^7.0",
  7820. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7821. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7822. "symfony/form": "^5.4|^6.0|^7.0",
  7823. "symfony/framework-bundle": "^6.4|^7.0",
  7824. "symfony/mercure-bundle": "^0.3.7",
  7825. "symfony/messenger": "^5.4|^6.0|^7.0",
  7826. "symfony/panther": "^2.2",
  7827. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7828. "symfony/process": "^5.4|6.3.*|^7.0",
  7829. "symfony/property-access": "^5.4|^6.0|^7.0",
  7830. "symfony/security-core": "^5.4|^6.0|^7.0",
  7831. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7832. "symfony/twig-bundle": "^6.4|^7.0",
  7833. "symfony/ux-twig-component": "^2.21",
  7834. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7835. },
  7836. "type": "symfony-bundle",
  7837. "extra": {
  7838. "thanks": {
  7839. "url": "https://github.com/symfony/ux",
  7840. "name": "symfony/ux"
  7841. }
  7842. },
  7843. "autoload": {
  7844. "psr-4": {
  7845. "Symfony\\UX\\Turbo\\": "src/"
  7846. }
  7847. },
  7848. "notification-url": "https://packagist.org/downloads/",
  7849. "license": [
  7850. "MIT"
  7851. ],
  7852. "authors": [
  7853. {
  7854. "name": "Kévin Dunglas",
  7855. "email": "kevin@dunglas.fr"
  7856. },
  7857. {
  7858. "name": "Symfony Community",
  7859. "homepage": "https://symfony.com/contributors"
  7860. }
  7861. ],
  7862. "description": "Hotwire Turbo integration for Symfony",
  7863. "homepage": "https://symfony.com",
  7864. "keywords": [
  7865. "hotwire",
  7866. "javascript",
  7867. "mercure",
  7868. "symfony-ux",
  7869. "turbo",
  7870. "turbo-stream"
  7871. ],
  7872. "support": {
  7873. "source": "https://github.com/symfony/ux-turbo/tree/v2.27.0"
  7874. },
  7875. "funding": [
  7876. {
  7877. "url": "https://symfony.com/sponsor",
  7878. "type": "custom"
  7879. },
  7880. {
  7881. "url": "https://github.com/fabpot",
  7882. "type": "github"
  7883. },
  7884. {
  7885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7886. "type": "tidelift"
  7887. }
  7888. ],
  7889. "time": "2025-06-06T20:27:21+00:00"
  7890. },
  7891. {
  7892. "name": "symfony/ux-twig-component",
  7893. "version": "v2.27.0",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://github.com/symfony/ux-twig-component.git",
  7897. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  7902. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  7903. "shasum": ""
  7904. },
  7905. "require": {
  7906. "php": ">=8.1",
  7907. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7908. "symfony/deprecation-contracts": "^2.2|^3.0",
  7909. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7910. "symfony/property-access": "^5.4|^6.0|^7.0",
  7911. "twig/twig": "^3.10.3"
  7912. },
  7913. "conflict": {
  7914. "symfony/config": "<5.4.0"
  7915. },
  7916. "require-dev": {
  7917. "symfony/console": "^5.4|^6.0|^7.0",
  7918. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7919. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7920. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7921. "symfony/phpunit-bridge": "^6.0|^7.0",
  7922. "symfony/stimulus-bundle": "^2.9.1",
  7923. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7924. "symfony/webpack-encore-bundle": "^1.15"
  7925. },
  7926. "type": "symfony-bundle",
  7927. "extra": {
  7928. "thanks": {
  7929. "url": "https://github.com/symfony/ux",
  7930. "name": "symfony/ux"
  7931. }
  7932. },
  7933. "autoload": {
  7934. "psr-4": {
  7935. "Symfony\\UX\\TwigComponent\\": "src/"
  7936. }
  7937. },
  7938. "notification-url": "https://packagist.org/downloads/",
  7939. "license": [
  7940. "MIT"
  7941. ],
  7942. "authors": [
  7943. {
  7944. "name": "Symfony Community",
  7945. "homepage": "https://symfony.com/contributors"
  7946. }
  7947. ],
  7948. "description": "Twig components for Symfony",
  7949. "homepage": "https://symfony.com",
  7950. "keywords": [
  7951. "components",
  7952. "symfony-ux",
  7953. "twig"
  7954. ],
  7955. "support": {
  7956. "source": "https://github.com/symfony/ux-twig-component/tree/v2.27.0"
  7957. },
  7958. "funding": [
  7959. {
  7960. "url": "https://symfony.com/sponsor",
  7961. "type": "custom"
  7962. },
  7963. {
  7964. "url": "https://github.com/fabpot",
  7965. "type": "github"
  7966. },
  7967. {
  7968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7969. "type": "tidelift"
  7970. }
  7971. ],
  7972. "time": "2025-06-21T16:41:28+00:00"
  7973. },
  7974. {
  7975. "name": "symfony/validator",
  7976. "version": "v7.3.1",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/symfony/validator.git",
  7980. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/symfony/validator/zipball/e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  7985. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  7986. "shasum": ""
  7987. },
  7988. "require": {
  7989. "php": ">=8.2",
  7990. "symfony/deprecation-contracts": "^2.5|^3",
  7991. "symfony/polyfill-ctype": "~1.8",
  7992. "symfony/polyfill-mbstring": "~1.0",
  7993. "symfony/polyfill-php83": "^1.27",
  7994. "symfony/translation-contracts": "^2.5|^3"
  7995. },
  7996. "conflict": {
  7997. "doctrine/lexer": "<1.1",
  7998. "symfony/dependency-injection": "<6.4",
  7999. "symfony/doctrine-bridge": "<7.0",
  8000. "symfony/expression-language": "<6.4",
  8001. "symfony/http-kernel": "<6.4",
  8002. "symfony/intl": "<6.4",
  8003. "symfony/property-info": "<6.4",
  8004. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8005. "symfony/yaml": "<6.4"
  8006. },
  8007. "require-dev": {
  8008. "egulias/email-validator": "^2.1.10|^3|^4",
  8009. "symfony/cache": "^6.4|^7.0",
  8010. "symfony/config": "^6.4|^7.0",
  8011. "symfony/console": "^6.4|^7.0",
  8012. "symfony/dependency-injection": "^6.4|^7.0",
  8013. "symfony/expression-language": "^6.4|^7.0",
  8014. "symfony/finder": "^6.4|^7.0",
  8015. "symfony/http-client": "^6.4|^7.0",
  8016. "symfony/http-foundation": "^6.4|^7.0",
  8017. "symfony/http-kernel": "^6.4|^7.0",
  8018. "symfony/intl": "^6.4|^7.0",
  8019. "symfony/mime": "^6.4|^7.0",
  8020. "symfony/property-access": "^6.4|^7.0",
  8021. "symfony/property-info": "^6.4|^7.0",
  8022. "symfony/string": "^6.4|^7.0",
  8023. "symfony/translation": "^6.4.3|^7.0.3",
  8024. "symfony/type-info": "^7.1",
  8025. "symfony/yaml": "^6.4|^7.0"
  8026. },
  8027. "type": "library",
  8028. "autoload": {
  8029. "psr-4": {
  8030. "Symfony\\Component\\Validator\\": ""
  8031. },
  8032. "exclude-from-classmap": [
  8033. "/Tests/",
  8034. "/Resources/bin/"
  8035. ]
  8036. },
  8037. "notification-url": "https://packagist.org/downloads/",
  8038. "license": [
  8039. "MIT"
  8040. ],
  8041. "authors": [
  8042. {
  8043. "name": "Fabien Potencier",
  8044. "email": "fabien@symfony.com"
  8045. },
  8046. {
  8047. "name": "Symfony Community",
  8048. "homepage": "https://symfony.com/contributors"
  8049. }
  8050. ],
  8051. "description": "Provides tools to validate values",
  8052. "homepage": "https://symfony.com",
  8053. "support": {
  8054. "source": "https://github.com/symfony/validator/tree/v7.3.1"
  8055. },
  8056. "funding": [
  8057. {
  8058. "url": "https://symfony.com/sponsor",
  8059. "type": "custom"
  8060. },
  8061. {
  8062. "url": "https://github.com/fabpot",
  8063. "type": "github"
  8064. },
  8065. {
  8066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8067. "type": "tidelift"
  8068. }
  8069. ],
  8070. "time": "2025-06-26T13:22:23+00:00"
  8071. },
  8072. {
  8073. "name": "symfony/var-dumper",
  8074. "version": "v7.3.1",
  8075. "source": {
  8076. "type": "git",
  8077. "url": "https://github.com/symfony/var-dumper.git",
  8078. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  8079. },
  8080. "dist": {
  8081. "type": "zip",
  8082. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  8083. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  8084. "shasum": ""
  8085. },
  8086. "require": {
  8087. "php": ">=8.2",
  8088. "symfony/deprecation-contracts": "^2.5|^3",
  8089. "symfony/polyfill-mbstring": "~1.0"
  8090. },
  8091. "conflict": {
  8092. "symfony/console": "<6.4"
  8093. },
  8094. "require-dev": {
  8095. "ext-iconv": "*",
  8096. "symfony/console": "^6.4|^7.0",
  8097. "symfony/http-kernel": "^6.4|^7.0",
  8098. "symfony/process": "^6.4|^7.0",
  8099. "symfony/uid": "^6.4|^7.0",
  8100. "twig/twig": "^3.12"
  8101. },
  8102. "bin": [
  8103. "Resources/bin/var-dump-server"
  8104. ],
  8105. "type": "library",
  8106. "autoload": {
  8107. "files": [
  8108. "Resources/functions/dump.php"
  8109. ],
  8110. "psr-4": {
  8111. "Symfony\\Component\\VarDumper\\": ""
  8112. },
  8113. "exclude-from-classmap": [
  8114. "/Tests/"
  8115. ]
  8116. },
  8117. "notification-url": "https://packagist.org/downloads/",
  8118. "license": [
  8119. "MIT"
  8120. ],
  8121. "authors": [
  8122. {
  8123. "name": "Nicolas Grekas",
  8124. "email": "p@tchwork.com"
  8125. },
  8126. {
  8127. "name": "Symfony Community",
  8128. "homepage": "https://symfony.com/contributors"
  8129. }
  8130. ],
  8131. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8132. "homepage": "https://symfony.com",
  8133. "keywords": [
  8134. "debug",
  8135. "dump"
  8136. ],
  8137. "support": {
  8138. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  8139. },
  8140. "funding": [
  8141. {
  8142. "url": "https://symfony.com/sponsor",
  8143. "type": "custom"
  8144. },
  8145. {
  8146. "url": "https://github.com/fabpot",
  8147. "type": "github"
  8148. },
  8149. {
  8150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8151. "type": "tidelift"
  8152. }
  8153. ],
  8154. "time": "2025-06-27T19:55:54+00:00"
  8155. },
  8156. {
  8157. "name": "symfony/var-exporter",
  8158. "version": "v7.3.0",
  8159. "source": {
  8160. "type": "git",
  8161. "url": "https://github.com/symfony/var-exporter.git",
  8162. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c"
  8163. },
  8164. "dist": {
  8165. "type": "zip",
  8166. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c9a1168891b5aaadfd6332ef44393330b3498c4c",
  8167. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c",
  8168. "shasum": ""
  8169. },
  8170. "require": {
  8171. "php": ">=8.2",
  8172. "symfony/deprecation-contracts": "^2.5|^3"
  8173. },
  8174. "require-dev": {
  8175. "symfony/property-access": "^6.4|^7.0",
  8176. "symfony/serializer": "^6.4|^7.0",
  8177. "symfony/var-dumper": "^6.4|^7.0"
  8178. },
  8179. "type": "library",
  8180. "autoload": {
  8181. "psr-4": {
  8182. "Symfony\\Component\\VarExporter\\": ""
  8183. },
  8184. "exclude-from-classmap": [
  8185. "/Tests/"
  8186. ]
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "MIT"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Nicolas Grekas",
  8195. "email": "p@tchwork.com"
  8196. },
  8197. {
  8198. "name": "Symfony Community",
  8199. "homepage": "https://symfony.com/contributors"
  8200. }
  8201. ],
  8202. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8203. "homepage": "https://symfony.com",
  8204. "keywords": [
  8205. "clone",
  8206. "construct",
  8207. "export",
  8208. "hydrate",
  8209. "instantiate",
  8210. "lazy-loading",
  8211. "proxy",
  8212. "serialize"
  8213. ],
  8214. "support": {
  8215. "source": "https://github.com/symfony/var-exporter/tree/v7.3.0"
  8216. },
  8217. "funding": [
  8218. {
  8219. "url": "https://symfony.com/sponsor",
  8220. "type": "custom"
  8221. },
  8222. {
  8223. "url": "https://github.com/fabpot",
  8224. "type": "github"
  8225. },
  8226. {
  8227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8228. "type": "tidelift"
  8229. }
  8230. ],
  8231. "time": "2025-05-15T09:04:05+00:00"
  8232. },
  8233. {
  8234. "name": "symfony/web-link",
  8235. "version": "v7.3.0",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/symfony/web-link.git",
  8239. "reference": "7697f74fce67555665339423ce453cc8216a98ff"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/symfony/web-link/zipball/7697f74fce67555665339423ce453cc8216a98ff",
  8244. "reference": "7697f74fce67555665339423ce453cc8216a98ff",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=8.2",
  8249. "psr/link": "^1.1|^2.0"
  8250. },
  8251. "conflict": {
  8252. "symfony/http-kernel": "<6.4"
  8253. },
  8254. "provide": {
  8255. "psr/link-implementation": "1.0|2.0"
  8256. },
  8257. "require-dev": {
  8258. "symfony/http-kernel": "^6.4|^7.0"
  8259. },
  8260. "type": "library",
  8261. "autoload": {
  8262. "psr-4": {
  8263. "Symfony\\Component\\WebLink\\": ""
  8264. },
  8265. "exclude-from-classmap": [
  8266. "/Tests/"
  8267. ]
  8268. },
  8269. "notification-url": "https://packagist.org/downloads/",
  8270. "license": [
  8271. "MIT"
  8272. ],
  8273. "authors": [
  8274. {
  8275. "name": "Kévin Dunglas",
  8276. "email": "dunglas@gmail.com"
  8277. },
  8278. {
  8279. "name": "Symfony Community",
  8280. "homepage": "https://symfony.com/contributors"
  8281. }
  8282. ],
  8283. "description": "Manages links between resources",
  8284. "homepage": "https://symfony.com",
  8285. "keywords": [
  8286. "dns-prefetch",
  8287. "http",
  8288. "http2",
  8289. "link",
  8290. "performance",
  8291. "prefetch",
  8292. "preload",
  8293. "prerender",
  8294. "psr13",
  8295. "push"
  8296. ],
  8297. "support": {
  8298. "source": "https://github.com/symfony/web-link/tree/v7.3.0"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://symfony.com/sponsor",
  8303. "type": "custom"
  8304. },
  8305. {
  8306. "url": "https://github.com/fabpot",
  8307. "type": "github"
  8308. },
  8309. {
  8310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8311. "type": "tidelift"
  8312. }
  8313. ],
  8314. "time": "2025-05-19T13:28:18+00:00"
  8315. },
  8316. {
  8317. "name": "symfony/yaml",
  8318. "version": "v7.3.1",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/symfony/yaml.git",
  8322. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  8327. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "php": ">=8.2",
  8332. "symfony/deprecation-contracts": "^2.5|^3.0",
  8333. "symfony/polyfill-ctype": "^1.8"
  8334. },
  8335. "conflict": {
  8336. "symfony/console": "<6.4"
  8337. },
  8338. "require-dev": {
  8339. "symfony/console": "^6.4|^7.0"
  8340. },
  8341. "bin": [
  8342. "Resources/bin/yaml-lint"
  8343. ],
  8344. "type": "library",
  8345. "autoload": {
  8346. "psr-4": {
  8347. "Symfony\\Component\\Yaml\\": ""
  8348. },
  8349. "exclude-from-classmap": [
  8350. "/Tests/"
  8351. ]
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "MIT"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "Fabien Potencier",
  8360. "email": "fabien@symfony.com"
  8361. },
  8362. {
  8363. "name": "Symfony Community",
  8364. "homepage": "https://symfony.com/contributors"
  8365. }
  8366. ],
  8367. "description": "Loads and dumps YAML files",
  8368. "homepage": "https://symfony.com",
  8369. "support": {
  8370. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  8371. },
  8372. "funding": [
  8373. {
  8374. "url": "https://symfony.com/sponsor",
  8375. "type": "custom"
  8376. },
  8377. {
  8378. "url": "https://github.com/fabpot",
  8379. "type": "github"
  8380. },
  8381. {
  8382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8383. "type": "tidelift"
  8384. }
  8385. ],
  8386. "time": "2025-06-03T06:57:57+00:00"
  8387. },
  8388. {
  8389. "name": "symfonycasts/reset-password-bundle",
  8390. "version": "v1.23.1",
  8391. "source": {
  8392. "type": "git",
  8393. "url": "https://github.com/SymfonyCasts/reset-password-bundle.git",
  8394. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2"
  8395. },
  8396. "dist": {
  8397. "type": "zip",
  8398. "url": "https://api.github.com/repos/SymfonyCasts/reset-password-bundle/zipball/bde42fe5956e0cd523931da886ee41ab660c45b2",
  8399. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2",
  8400. "shasum": ""
  8401. },
  8402. "require": {
  8403. "ext-json": "*",
  8404. "php": ">=8.1.10",
  8405. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  8406. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  8407. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  8408. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0"
  8409. },
  8410. "require-dev": {
  8411. "doctrine/annotations": "^1.0",
  8412. "doctrine/doctrine-bundle": "^2.8",
  8413. "doctrine/orm": "^2.13",
  8414. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  8415. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0",
  8416. "symfony/process": "^6.4 | ^7.0 | ^7.1",
  8417. "symfonycasts/internal-test-helpers": "dev-main"
  8418. },
  8419. "type": "symfony-bundle",
  8420. "autoload": {
  8421. "psr-4": {
  8422. "SymfonyCasts\\Bundle\\ResetPassword\\": "src/"
  8423. }
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "MIT"
  8428. ],
  8429. "description": "Symfony bundle that adds password reset functionality.",
  8430. "support": {
  8431. "issues": "https://github.com/SymfonyCasts/reset-password-bundle/issues",
  8432. "source": "https://github.com/SymfonyCasts/reset-password-bundle/tree/v1.23.1"
  8433. },
  8434. "time": "2024-12-09T19:04:36+00:00"
  8435. },
  8436. {
  8437. "name": "symfonycasts/verify-email-bundle",
  8438. "version": "v1.17.3",
  8439. "source": {
  8440. "type": "git",
  8441. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8442. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e"
  8443. },
  8444. "dist": {
  8445. "type": "zip",
  8446. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  8447. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  8448. "shasum": ""
  8449. },
  8450. "require": {
  8451. "ext-json": "*",
  8452. "php": ">=8.1",
  8453. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  8454. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  8455. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  8456. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0",
  8457. "symfony/routing": "^5.4 | ^6.0 | ^7.0"
  8458. },
  8459. "require-dev": {
  8460. "doctrine/orm": "^2.7",
  8461. "doctrine/persistence": "^2.0",
  8462. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  8463. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0"
  8464. },
  8465. "type": "symfony-bundle",
  8466. "autoload": {
  8467. "psr-4": {
  8468. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8469. }
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "description": "Simple, stylish Email Verification for Symfony",
  8476. "support": {
  8477. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  8478. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.17.3"
  8479. },
  8480. "time": "2024-12-09T18:44:25+00:00"
  8481. },
  8482. {
  8483. "name": "twig/extra-bundle",
  8484. "version": "v3.21.0",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8488. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8493. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "php": ">=8.1.0",
  8498. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8499. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8500. "twig/twig": "^3.2|^4.0"
  8501. },
  8502. "require-dev": {
  8503. "league/commonmark": "^1.0|^2.0",
  8504. "symfony/phpunit-bridge": "^6.4|^7.0",
  8505. "twig/cache-extra": "^3.0",
  8506. "twig/cssinliner-extra": "^3.0",
  8507. "twig/html-extra": "^3.0",
  8508. "twig/inky-extra": "^3.0",
  8509. "twig/intl-extra": "^3.0",
  8510. "twig/markdown-extra": "^3.0",
  8511. "twig/string-extra": "^3.0"
  8512. },
  8513. "type": "symfony-bundle",
  8514. "autoload": {
  8515. "psr-4": {
  8516. "Twig\\Extra\\TwigExtraBundle\\": ""
  8517. },
  8518. "exclude-from-classmap": [
  8519. "/Tests/"
  8520. ]
  8521. },
  8522. "notification-url": "https://packagist.org/downloads/",
  8523. "license": [
  8524. "MIT"
  8525. ],
  8526. "authors": [
  8527. {
  8528. "name": "Fabien Potencier",
  8529. "email": "fabien@symfony.com",
  8530. "homepage": "http://fabien.potencier.org",
  8531. "role": "Lead Developer"
  8532. }
  8533. ],
  8534. "description": "A Symfony bundle for extra Twig extensions",
  8535. "homepage": "https://twig.symfony.com",
  8536. "keywords": [
  8537. "bundle",
  8538. "extra",
  8539. "twig"
  8540. ],
  8541. "support": {
  8542. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  8543. },
  8544. "funding": [
  8545. {
  8546. "url": "https://github.com/fabpot",
  8547. "type": "github"
  8548. },
  8549. {
  8550. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8551. "type": "tidelift"
  8552. }
  8553. ],
  8554. "time": "2025-02-19T14:29:33+00:00"
  8555. },
  8556. {
  8557. "name": "twig/markdown-extra",
  8558. "version": "v3.21.0",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/twigphp/markdown-extra.git",
  8562. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/f4616e1dd375209dacf6026f846e6b537d036ce4",
  8567. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "php": ">=8.1.0",
  8572. "symfony/deprecation-contracts": "^2.5|^3",
  8573. "twig/twig": "^3.13|^4.0"
  8574. },
  8575. "require-dev": {
  8576. "erusev/parsedown": "dev-master as 1.x-dev",
  8577. "league/commonmark": "^1.0|^2.0",
  8578. "league/html-to-markdown": "^4.8|^5.0",
  8579. "michelf/php-markdown": "^1.8|^2.0",
  8580. "symfony/phpunit-bridge": "^6.4|^7.0"
  8581. },
  8582. "type": "library",
  8583. "autoload": {
  8584. "files": [
  8585. "Resources/functions.php"
  8586. ],
  8587. "psr-4": {
  8588. "Twig\\Extra\\Markdown\\": ""
  8589. },
  8590. "exclude-from-classmap": [
  8591. "/Tests/"
  8592. ]
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "MIT"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "Fabien Potencier",
  8601. "email": "fabien@symfony.com",
  8602. "homepage": "http://fabien.potencier.org",
  8603. "role": "Lead Developer"
  8604. }
  8605. ],
  8606. "description": "A Twig extension for Markdown",
  8607. "homepage": "https://twig.symfony.com",
  8608. "keywords": [
  8609. "html",
  8610. "markdown",
  8611. "twig"
  8612. ],
  8613. "support": {
  8614. "source": "https://github.com/twigphp/markdown-extra/tree/v3.21.0"
  8615. },
  8616. "funding": [
  8617. {
  8618. "url": "https://github.com/fabpot",
  8619. "type": "github"
  8620. },
  8621. {
  8622. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8623. "type": "tidelift"
  8624. }
  8625. ],
  8626. "time": "2025-01-31T20:45:36+00:00"
  8627. },
  8628. {
  8629. "name": "twig/twig",
  8630. "version": "v3.21.1",
  8631. "source": {
  8632. "type": "git",
  8633. "url": "https://github.com/twigphp/Twig.git",
  8634. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  8635. },
  8636. "dist": {
  8637. "type": "zip",
  8638. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8639. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8640. "shasum": ""
  8641. },
  8642. "require": {
  8643. "php": ">=8.1.0",
  8644. "symfony/deprecation-contracts": "^2.5|^3",
  8645. "symfony/polyfill-ctype": "^1.8",
  8646. "symfony/polyfill-mbstring": "^1.3"
  8647. },
  8648. "require-dev": {
  8649. "phpstan/phpstan": "^2.0",
  8650. "psr/container": "^1.0|^2.0",
  8651. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8652. },
  8653. "type": "library",
  8654. "autoload": {
  8655. "files": [
  8656. "src/Resources/core.php",
  8657. "src/Resources/debug.php",
  8658. "src/Resources/escaper.php",
  8659. "src/Resources/string_loader.php"
  8660. ],
  8661. "psr-4": {
  8662. "Twig\\": "src/"
  8663. }
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "BSD-3-Clause"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "Fabien Potencier",
  8672. "email": "fabien@symfony.com",
  8673. "homepage": "http://fabien.potencier.org",
  8674. "role": "Lead Developer"
  8675. },
  8676. {
  8677. "name": "Twig Team",
  8678. "role": "Contributors"
  8679. },
  8680. {
  8681. "name": "Armin Ronacher",
  8682. "email": "armin.ronacher@active-4.com",
  8683. "role": "Project Founder"
  8684. }
  8685. ],
  8686. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8687. "homepage": "https://twig.symfony.com",
  8688. "keywords": [
  8689. "templating"
  8690. ],
  8691. "support": {
  8692. "issues": "https://github.com/twigphp/Twig/issues",
  8693. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  8694. },
  8695. "funding": [
  8696. {
  8697. "url": "https://github.com/fabpot",
  8698. "type": "github"
  8699. },
  8700. {
  8701. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8702. "type": "tidelift"
  8703. }
  8704. ],
  8705. "time": "2025-05-03T07:21:55+00:00"
  8706. },
  8707. {
  8708. "name": "webmozart/assert",
  8709. "version": "1.11.0",
  8710. "source": {
  8711. "type": "git",
  8712. "url": "https://github.com/webmozarts/assert.git",
  8713. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8714. },
  8715. "dist": {
  8716. "type": "zip",
  8717. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8718. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8719. "shasum": ""
  8720. },
  8721. "require": {
  8722. "ext-ctype": "*",
  8723. "php": "^7.2 || ^8.0"
  8724. },
  8725. "conflict": {
  8726. "phpstan/phpstan": "<0.12.20",
  8727. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8728. },
  8729. "require-dev": {
  8730. "phpunit/phpunit": "^8.5.13"
  8731. },
  8732. "type": "library",
  8733. "extra": {
  8734. "branch-alias": {
  8735. "dev-master": "1.10-dev"
  8736. }
  8737. },
  8738. "autoload": {
  8739. "psr-4": {
  8740. "Webmozart\\Assert\\": "src/"
  8741. }
  8742. },
  8743. "notification-url": "https://packagist.org/downloads/",
  8744. "license": [
  8745. "MIT"
  8746. ],
  8747. "authors": [
  8748. {
  8749. "name": "Bernhard Schussek",
  8750. "email": "bschussek@gmail.com"
  8751. }
  8752. ],
  8753. "description": "Assertions to validate method input/output with nice error messages.",
  8754. "keywords": [
  8755. "assert",
  8756. "check",
  8757. "validate"
  8758. ],
  8759. "support": {
  8760. "issues": "https://github.com/webmozarts/assert/issues",
  8761. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8762. },
  8763. "time": "2022-06-03T18:03:27+00:00"
  8764. }
  8765. ],
  8766. "packages-dev": [
  8767. {
  8768. "name": "masterminds/html5",
  8769. "version": "2.9.0",
  8770. "source": {
  8771. "type": "git",
  8772. "url": "https://github.com/Masterminds/html5-php.git",
  8773. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8774. },
  8775. "dist": {
  8776. "type": "zip",
  8777. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8778. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8779. "shasum": ""
  8780. },
  8781. "require": {
  8782. "ext-dom": "*",
  8783. "php": ">=5.3.0"
  8784. },
  8785. "require-dev": {
  8786. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8787. },
  8788. "type": "library",
  8789. "extra": {
  8790. "branch-alias": {
  8791. "dev-master": "2.7-dev"
  8792. }
  8793. },
  8794. "autoload": {
  8795. "psr-4": {
  8796. "Masterminds\\": "src"
  8797. }
  8798. },
  8799. "notification-url": "https://packagist.org/downloads/",
  8800. "license": [
  8801. "MIT"
  8802. ],
  8803. "authors": [
  8804. {
  8805. "name": "Matt Butcher",
  8806. "email": "technosophos@gmail.com"
  8807. },
  8808. {
  8809. "name": "Matt Farina",
  8810. "email": "matt@mattfarina.com"
  8811. },
  8812. {
  8813. "name": "Asmir Mustafic",
  8814. "email": "goetas@gmail.com"
  8815. }
  8816. ],
  8817. "description": "An HTML5 parser and serializer.",
  8818. "homepage": "http://masterminds.github.io/html5-php",
  8819. "keywords": [
  8820. "HTML5",
  8821. "dom",
  8822. "html",
  8823. "parser",
  8824. "querypath",
  8825. "serializer",
  8826. "xml"
  8827. ],
  8828. "support": {
  8829. "issues": "https://github.com/Masterminds/html5-php/issues",
  8830. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8831. },
  8832. "time": "2024-03-31T07:05:07+00:00"
  8833. },
  8834. {
  8835. "name": "myclabs/deep-copy",
  8836. "version": "1.13.3",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/myclabs/DeepCopy.git",
  8840. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8845. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8846. "shasum": ""
  8847. },
  8848. "require": {
  8849. "php": "^7.1 || ^8.0"
  8850. },
  8851. "conflict": {
  8852. "doctrine/collections": "<1.6.8",
  8853. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8854. },
  8855. "require-dev": {
  8856. "doctrine/collections": "^1.6.8",
  8857. "doctrine/common": "^2.13.3 || ^3.2.2",
  8858. "phpspec/prophecy": "^1.10",
  8859. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8860. },
  8861. "type": "library",
  8862. "autoload": {
  8863. "files": [
  8864. "src/DeepCopy/deep_copy.php"
  8865. ],
  8866. "psr-4": {
  8867. "DeepCopy\\": "src/DeepCopy/"
  8868. }
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "MIT"
  8873. ],
  8874. "description": "Create deep copies (clones) of your objects",
  8875. "keywords": [
  8876. "clone",
  8877. "copy",
  8878. "duplicate",
  8879. "object",
  8880. "object graph"
  8881. ],
  8882. "support": {
  8883. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8884. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8885. },
  8886. "funding": [
  8887. {
  8888. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8889. "type": "tidelift"
  8890. }
  8891. ],
  8892. "time": "2025-07-05T12:25:42+00:00"
  8893. },
  8894. {
  8895. "name": "nikic/php-parser",
  8896. "version": "v5.5.0",
  8897. "source": {
  8898. "type": "git",
  8899. "url": "https://github.com/nikic/PHP-Parser.git",
  8900. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  8901. },
  8902. "dist": {
  8903. "type": "zip",
  8904. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  8905. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  8906. "shasum": ""
  8907. },
  8908. "require": {
  8909. "ext-ctype": "*",
  8910. "ext-json": "*",
  8911. "ext-tokenizer": "*",
  8912. "php": ">=7.4"
  8913. },
  8914. "require-dev": {
  8915. "ircmaxell/php-yacc": "^0.0.7",
  8916. "phpunit/phpunit": "^9.0"
  8917. },
  8918. "bin": [
  8919. "bin/php-parse"
  8920. ],
  8921. "type": "library",
  8922. "extra": {
  8923. "branch-alias": {
  8924. "dev-master": "5.0-dev"
  8925. }
  8926. },
  8927. "autoload": {
  8928. "psr-4": {
  8929. "PhpParser\\": "lib/PhpParser"
  8930. }
  8931. },
  8932. "notification-url": "https://packagist.org/downloads/",
  8933. "license": [
  8934. "BSD-3-Clause"
  8935. ],
  8936. "authors": [
  8937. {
  8938. "name": "Nikita Popov"
  8939. }
  8940. ],
  8941. "description": "A PHP parser written in PHP",
  8942. "keywords": [
  8943. "parser",
  8944. "php"
  8945. ],
  8946. "support": {
  8947. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8948. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  8949. },
  8950. "time": "2025-05-31T08:24:38+00:00"
  8951. },
  8952. {
  8953. "name": "phar-io/manifest",
  8954. "version": "2.0.4",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/phar-io/manifest.git",
  8958. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8963. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "ext-dom": "*",
  8968. "ext-libxml": "*",
  8969. "ext-phar": "*",
  8970. "ext-xmlwriter": "*",
  8971. "phar-io/version": "^3.0.1",
  8972. "php": "^7.2 || ^8.0"
  8973. },
  8974. "type": "library",
  8975. "extra": {
  8976. "branch-alias": {
  8977. "dev-master": "2.0.x-dev"
  8978. }
  8979. },
  8980. "autoload": {
  8981. "classmap": [
  8982. "src/"
  8983. ]
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "BSD-3-Clause"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Arne Blankerts",
  8992. "email": "arne@blankerts.de",
  8993. "role": "Developer"
  8994. },
  8995. {
  8996. "name": "Sebastian Heuer",
  8997. "email": "sebastian@phpeople.de",
  8998. "role": "Developer"
  8999. },
  9000. {
  9001. "name": "Sebastian Bergmann",
  9002. "email": "sebastian@phpunit.de",
  9003. "role": "Developer"
  9004. }
  9005. ],
  9006. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9007. "support": {
  9008. "issues": "https://github.com/phar-io/manifest/issues",
  9009. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9010. },
  9011. "funding": [
  9012. {
  9013. "url": "https://github.com/theseer",
  9014. "type": "github"
  9015. }
  9016. ],
  9017. "time": "2024-03-03T12:33:53+00:00"
  9018. },
  9019. {
  9020. "name": "phar-io/version",
  9021. "version": "3.2.1",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/phar-io/version.git",
  9025. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9030. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "php": "^7.2 || ^8.0"
  9035. },
  9036. "type": "library",
  9037. "autoload": {
  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": "Arne Blankerts",
  9049. "email": "arne@blankerts.de",
  9050. "role": "Developer"
  9051. },
  9052. {
  9053. "name": "Sebastian Heuer",
  9054. "email": "sebastian@phpeople.de",
  9055. "role": "Developer"
  9056. },
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de",
  9060. "role": "Developer"
  9061. }
  9062. ],
  9063. "description": "Library for handling version information and constraints",
  9064. "support": {
  9065. "issues": "https://github.com/phar-io/version/issues",
  9066. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9067. },
  9068. "time": "2022-02-21T01:04:05+00:00"
  9069. },
  9070. {
  9071. "name": "phpunit/php-code-coverage",
  9072. "version": "12.3.1",
  9073. "source": {
  9074. "type": "git",
  9075. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9076. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170"
  9077. },
  9078. "dist": {
  9079. "type": "zip",
  9080. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170",
  9081. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170",
  9082. "shasum": ""
  9083. },
  9084. "require": {
  9085. "ext-dom": "*",
  9086. "ext-libxml": "*",
  9087. "ext-xmlwriter": "*",
  9088. "nikic/php-parser": "^5.4.0",
  9089. "php": ">=8.3",
  9090. "phpunit/php-file-iterator": "^6.0",
  9091. "phpunit/php-text-template": "^5.0",
  9092. "sebastian/complexity": "^5.0",
  9093. "sebastian/environment": "^8.0",
  9094. "sebastian/lines-of-code": "^4.0",
  9095. "sebastian/version": "^6.0",
  9096. "theseer/tokenizer": "^1.2.3"
  9097. },
  9098. "require-dev": {
  9099. "phpunit/phpunit": "^12.1"
  9100. },
  9101. "suggest": {
  9102. "ext-pcov": "PHP extension that provides line coverage",
  9103. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9104. },
  9105. "type": "library",
  9106. "extra": {
  9107. "branch-alias": {
  9108. "dev-main": "12.3.x-dev"
  9109. }
  9110. },
  9111. "autoload": {
  9112. "classmap": [
  9113. "src/"
  9114. ]
  9115. },
  9116. "notification-url": "https://packagist.org/downloads/",
  9117. "license": [
  9118. "BSD-3-Clause"
  9119. ],
  9120. "authors": [
  9121. {
  9122. "name": "Sebastian Bergmann",
  9123. "email": "sebastian@phpunit.de",
  9124. "role": "lead"
  9125. }
  9126. ],
  9127. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9128. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9129. "keywords": [
  9130. "coverage",
  9131. "testing",
  9132. "xunit"
  9133. ],
  9134. "support": {
  9135. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9136. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9137. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1"
  9138. },
  9139. "funding": [
  9140. {
  9141. "url": "https://github.com/sebastianbergmann",
  9142. "type": "github"
  9143. },
  9144. {
  9145. "url": "https://liberapay.com/sebastianbergmann",
  9146. "type": "liberapay"
  9147. },
  9148. {
  9149. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9150. "type": "thanks_dev"
  9151. },
  9152. {
  9153. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  9154. "type": "tidelift"
  9155. }
  9156. ],
  9157. "time": "2025-06-18T08:58:13+00:00"
  9158. },
  9159. {
  9160. "name": "phpunit/php-file-iterator",
  9161. "version": "6.0.0",
  9162. "source": {
  9163. "type": "git",
  9164. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9165. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  9166. },
  9167. "dist": {
  9168. "type": "zip",
  9169. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  9170. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  9171. "shasum": ""
  9172. },
  9173. "require": {
  9174. "php": ">=8.3"
  9175. },
  9176. "require-dev": {
  9177. "phpunit/phpunit": "^12.0"
  9178. },
  9179. "type": "library",
  9180. "extra": {
  9181. "branch-alias": {
  9182. "dev-main": "6.0-dev"
  9183. }
  9184. },
  9185. "autoload": {
  9186. "classmap": [
  9187. "src/"
  9188. ]
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "BSD-3-Clause"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Sebastian Bergmann",
  9197. "email": "sebastian@phpunit.de",
  9198. "role": "lead"
  9199. }
  9200. ],
  9201. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9202. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9203. "keywords": [
  9204. "filesystem",
  9205. "iterator"
  9206. ],
  9207. "support": {
  9208. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9209. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9210. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  9211. },
  9212. "funding": [
  9213. {
  9214. "url": "https://github.com/sebastianbergmann",
  9215. "type": "github"
  9216. }
  9217. ],
  9218. "time": "2025-02-07T04:58:37+00:00"
  9219. },
  9220. {
  9221. "name": "phpunit/php-invoker",
  9222. "version": "6.0.0",
  9223. "source": {
  9224. "type": "git",
  9225. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9226. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  9227. },
  9228. "dist": {
  9229. "type": "zip",
  9230. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  9231. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  9232. "shasum": ""
  9233. },
  9234. "require": {
  9235. "php": ">=8.3"
  9236. },
  9237. "require-dev": {
  9238. "ext-pcntl": "*",
  9239. "phpunit/phpunit": "^12.0"
  9240. },
  9241. "suggest": {
  9242. "ext-pcntl": "*"
  9243. },
  9244. "type": "library",
  9245. "extra": {
  9246. "branch-alias": {
  9247. "dev-main": "6.0-dev"
  9248. }
  9249. },
  9250. "autoload": {
  9251. "classmap": [
  9252. "src/"
  9253. ]
  9254. },
  9255. "notification-url": "https://packagist.org/downloads/",
  9256. "license": [
  9257. "BSD-3-Clause"
  9258. ],
  9259. "authors": [
  9260. {
  9261. "name": "Sebastian Bergmann",
  9262. "email": "sebastian@phpunit.de",
  9263. "role": "lead"
  9264. }
  9265. ],
  9266. "description": "Invoke callables with a timeout",
  9267. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9268. "keywords": [
  9269. "process"
  9270. ],
  9271. "support": {
  9272. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9273. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9274. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  9275. },
  9276. "funding": [
  9277. {
  9278. "url": "https://github.com/sebastianbergmann",
  9279. "type": "github"
  9280. }
  9281. ],
  9282. "time": "2025-02-07T04:58:58+00:00"
  9283. },
  9284. {
  9285. "name": "phpunit/php-text-template",
  9286. "version": "5.0.0",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9290. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  9295. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  9296. "shasum": ""
  9297. },
  9298. "require": {
  9299. "php": ">=8.3"
  9300. },
  9301. "require-dev": {
  9302. "phpunit/phpunit": "^12.0"
  9303. },
  9304. "type": "library",
  9305. "extra": {
  9306. "branch-alias": {
  9307. "dev-main": "5.0-dev"
  9308. }
  9309. },
  9310. "autoload": {
  9311. "classmap": [
  9312. "src/"
  9313. ]
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "BSD-3-Clause"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Sebastian Bergmann",
  9322. "email": "sebastian@phpunit.de",
  9323. "role": "lead"
  9324. }
  9325. ],
  9326. "description": "Simple template engine.",
  9327. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9328. "keywords": [
  9329. "template"
  9330. ],
  9331. "support": {
  9332. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9333. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9334. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  9335. },
  9336. "funding": [
  9337. {
  9338. "url": "https://github.com/sebastianbergmann",
  9339. "type": "github"
  9340. }
  9341. ],
  9342. "time": "2025-02-07T04:59:16+00:00"
  9343. },
  9344. {
  9345. "name": "phpunit/php-timer",
  9346. "version": "8.0.0",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9350. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  9355. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  9356. "shasum": ""
  9357. },
  9358. "require": {
  9359. "php": ">=8.3"
  9360. },
  9361. "require-dev": {
  9362. "phpunit/phpunit": "^12.0"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-main": "8.0-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "Utility class for timing",
  9387. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9388. "keywords": [
  9389. "timer"
  9390. ],
  9391. "support": {
  9392. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9393. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9394. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  9395. },
  9396. "funding": [
  9397. {
  9398. "url": "https://github.com/sebastianbergmann",
  9399. "type": "github"
  9400. }
  9401. ],
  9402. "time": "2025-02-07T04:59:38+00:00"
  9403. },
  9404. {
  9405. "name": "phpunit/phpunit",
  9406. "version": "12.2.7",
  9407. "source": {
  9408. "type": "git",
  9409. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9410. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414"
  9411. },
  9412. "dist": {
  9413. "type": "zip",
  9414. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414",
  9415. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414",
  9416. "shasum": ""
  9417. },
  9418. "require": {
  9419. "ext-dom": "*",
  9420. "ext-json": "*",
  9421. "ext-libxml": "*",
  9422. "ext-mbstring": "*",
  9423. "ext-xml": "*",
  9424. "ext-xmlwriter": "*",
  9425. "myclabs/deep-copy": "^1.13.3",
  9426. "phar-io/manifest": "^2.0.4",
  9427. "phar-io/version": "^3.2.1",
  9428. "php": ">=8.3",
  9429. "phpunit/php-code-coverage": "^12.3.1",
  9430. "phpunit/php-file-iterator": "^6.0.0",
  9431. "phpunit/php-invoker": "^6.0.0",
  9432. "phpunit/php-text-template": "^5.0.0",
  9433. "phpunit/php-timer": "^8.0.0",
  9434. "sebastian/cli-parser": "^4.0.0",
  9435. "sebastian/comparator": "^7.1.0",
  9436. "sebastian/diff": "^7.0.0",
  9437. "sebastian/environment": "^8.0.2",
  9438. "sebastian/exporter": "^7.0.0",
  9439. "sebastian/global-state": "^8.0.0",
  9440. "sebastian/object-enumerator": "^7.0.0",
  9441. "sebastian/type": "^6.0.2",
  9442. "sebastian/version": "^6.0.0",
  9443. "staabm/side-effects-detector": "^1.0.5"
  9444. },
  9445. "bin": [
  9446. "phpunit"
  9447. ],
  9448. "type": "library",
  9449. "extra": {
  9450. "branch-alias": {
  9451. "dev-main": "12.2-dev"
  9452. }
  9453. },
  9454. "autoload": {
  9455. "files": [
  9456. "src/Framework/Assert/Functions.php"
  9457. ],
  9458. "classmap": [
  9459. "src/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "BSD-3-Clause"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Sebastian Bergmann",
  9469. "email": "sebastian@phpunit.de",
  9470. "role": "lead"
  9471. }
  9472. ],
  9473. "description": "The PHP Unit Testing framework.",
  9474. "homepage": "https://phpunit.de/",
  9475. "keywords": [
  9476. "phpunit",
  9477. "testing",
  9478. "xunit"
  9479. ],
  9480. "support": {
  9481. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9482. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9483. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7"
  9484. },
  9485. "funding": [
  9486. {
  9487. "url": "https://phpunit.de/sponsors.html",
  9488. "type": "custom"
  9489. },
  9490. {
  9491. "url": "https://github.com/sebastianbergmann",
  9492. "type": "github"
  9493. },
  9494. {
  9495. "url": "https://liberapay.com/sebastianbergmann",
  9496. "type": "liberapay"
  9497. },
  9498. {
  9499. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9500. "type": "thanks_dev"
  9501. },
  9502. {
  9503. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9504. "type": "tidelift"
  9505. }
  9506. ],
  9507. "time": "2025-07-11T04:11:13+00:00"
  9508. },
  9509. {
  9510. "name": "sebastian/cli-parser",
  9511. "version": "4.0.0",
  9512. "source": {
  9513. "type": "git",
  9514. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9515. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  9516. },
  9517. "dist": {
  9518. "type": "zip",
  9519. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  9520. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  9521. "shasum": ""
  9522. },
  9523. "require": {
  9524. "php": ">=8.3"
  9525. },
  9526. "require-dev": {
  9527. "phpunit/phpunit": "^12.0"
  9528. },
  9529. "type": "library",
  9530. "extra": {
  9531. "branch-alias": {
  9532. "dev-main": "4.0-dev"
  9533. }
  9534. },
  9535. "autoload": {
  9536. "classmap": [
  9537. "src/"
  9538. ]
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "BSD-3-Clause"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Sebastian Bergmann",
  9547. "email": "sebastian@phpunit.de",
  9548. "role": "lead"
  9549. }
  9550. ],
  9551. "description": "Library for parsing CLI options",
  9552. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9553. "support": {
  9554. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9555. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9556. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  9557. },
  9558. "funding": [
  9559. {
  9560. "url": "https://github.com/sebastianbergmann",
  9561. "type": "github"
  9562. }
  9563. ],
  9564. "time": "2025-02-07T04:53:50+00:00"
  9565. },
  9566. {
  9567. "name": "sebastian/comparator",
  9568. "version": "7.1.0",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/sebastianbergmann/comparator.git",
  9572. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/03d905327dccc0851c9a08d6a979dfc683826b6f",
  9577. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f",
  9578. "shasum": ""
  9579. },
  9580. "require": {
  9581. "ext-dom": "*",
  9582. "ext-mbstring": "*",
  9583. "php": ">=8.3",
  9584. "sebastian/diff": "^7.0",
  9585. "sebastian/exporter": "^7.0"
  9586. },
  9587. "require-dev": {
  9588. "phpunit/phpunit": "^12.2"
  9589. },
  9590. "suggest": {
  9591. "ext-bcmath": "For comparing BcMath\\Number objects"
  9592. },
  9593. "type": "library",
  9594. "extra": {
  9595. "branch-alias": {
  9596. "dev-main": "7.1-dev"
  9597. }
  9598. },
  9599. "autoload": {
  9600. "classmap": [
  9601. "src/"
  9602. ]
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "BSD-3-Clause"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Sebastian Bergmann",
  9611. "email": "sebastian@phpunit.de"
  9612. },
  9613. {
  9614. "name": "Jeff Welch",
  9615. "email": "whatthejeff@gmail.com"
  9616. },
  9617. {
  9618. "name": "Volker Dusch",
  9619. "email": "github@wallbash.com"
  9620. },
  9621. {
  9622. "name": "Bernhard Schussek",
  9623. "email": "bschussek@2bepublished.at"
  9624. }
  9625. ],
  9626. "description": "Provides the functionality to compare PHP values for equality",
  9627. "homepage": "https://github.com/sebastianbergmann/comparator",
  9628. "keywords": [
  9629. "comparator",
  9630. "compare",
  9631. "equality"
  9632. ],
  9633. "support": {
  9634. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9635. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9636. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.0"
  9637. },
  9638. "funding": [
  9639. {
  9640. "url": "https://github.com/sebastianbergmann",
  9641. "type": "github"
  9642. },
  9643. {
  9644. "url": "https://liberapay.com/sebastianbergmann",
  9645. "type": "liberapay"
  9646. },
  9647. {
  9648. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9649. "type": "thanks_dev"
  9650. },
  9651. {
  9652. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9653. "type": "tidelift"
  9654. }
  9655. ],
  9656. "time": "2025-06-17T07:41:58+00:00"
  9657. },
  9658. {
  9659. "name": "sebastian/complexity",
  9660. "version": "5.0.0",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/sebastianbergmann/complexity.git",
  9664. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  9669. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  9670. "shasum": ""
  9671. },
  9672. "require": {
  9673. "nikic/php-parser": "^5.0",
  9674. "php": ">=8.3"
  9675. },
  9676. "require-dev": {
  9677. "phpunit/phpunit": "^12.0"
  9678. },
  9679. "type": "library",
  9680. "extra": {
  9681. "branch-alias": {
  9682. "dev-main": "5.0-dev"
  9683. }
  9684. },
  9685. "autoload": {
  9686. "classmap": [
  9687. "src/"
  9688. ]
  9689. },
  9690. "notification-url": "https://packagist.org/downloads/",
  9691. "license": [
  9692. "BSD-3-Clause"
  9693. ],
  9694. "authors": [
  9695. {
  9696. "name": "Sebastian Bergmann",
  9697. "email": "sebastian@phpunit.de",
  9698. "role": "lead"
  9699. }
  9700. ],
  9701. "description": "Library for calculating the complexity of PHP code units",
  9702. "homepage": "https://github.com/sebastianbergmann/complexity",
  9703. "support": {
  9704. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9705. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9706. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  9707. },
  9708. "funding": [
  9709. {
  9710. "url": "https://github.com/sebastianbergmann",
  9711. "type": "github"
  9712. }
  9713. ],
  9714. "time": "2025-02-07T04:55:25+00:00"
  9715. },
  9716. {
  9717. "name": "sebastian/diff",
  9718. "version": "7.0.0",
  9719. "source": {
  9720. "type": "git",
  9721. "url": "https://github.com/sebastianbergmann/diff.git",
  9722. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  9723. },
  9724. "dist": {
  9725. "type": "zip",
  9726. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  9727. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  9728. "shasum": ""
  9729. },
  9730. "require": {
  9731. "php": ">=8.3"
  9732. },
  9733. "require-dev": {
  9734. "phpunit/phpunit": "^12.0",
  9735. "symfony/process": "^7.2"
  9736. },
  9737. "type": "library",
  9738. "extra": {
  9739. "branch-alias": {
  9740. "dev-main": "7.0-dev"
  9741. }
  9742. },
  9743. "autoload": {
  9744. "classmap": [
  9745. "src/"
  9746. ]
  9747. },
  9748. "notification-url": "https://packagist.org/downloads/",
  9749. "license": [
  9750. "BSD-3-Clause"
  9751. ],
  9752. "authors": [
  9753. {
  9754. "name": "Sebastian Bergmann",
  9755. "email": "sebastian@phpunit.de"
  9756. },
  9757. {
  9758. "name": "Kore Nordmann",
  9759. "email": "mail@kore-nordmann.de"
  9760. }
  9761. ],
  9762. "description": "Diff implementation",
  9763. "homepage": "https://github.com/sebastianbergmann/diff",
  9764. "keywords": [
  9765. "diff",
  9766. "udiff",
  9767. "unidiff",
  9768. "unified diff"
  9769. ],
  9770. "support": {
  9771. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9772. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9773. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  9774. },
  9775. "funding": [
  9776. {
  9777. "url": "https://github.com/sebastianbergmann",
  9778. "type": "github"
  9779. }
  9780. ],
  9781. "time": "2025-02-07T04:55:46+00:00"
  9782. },
  9783. {
  9784. "name": "sebastian/environment",
  9785. "version": "8.0.2",
  9786. "source": {
  9787. "type": "git",
  9788. "url": "https://github.com/sebastianbergmann/environment.git",
  9789. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792"
  9790. },
  9791. "dist": {
  9792. "type": "zip",
  9793. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  9794. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  9795. "shasum": ""
  9796. },
  9797. "require": {
  9798. "php": ">=8.3"
  9799. },
  9800. "require-dev": {
  9801. "phpunit/phpunit": "^12.0"
  9802. },
  9803. "suggest": {
  9804. "ext-posix": "*"
  9805. },
  9806. "type": "library",
  9807. "extra": {
  9808. "branch-alias": {
  9809. "dev-main": "8.0-dev"
  9810. }
  9811. },
  9812. "autoload": {
  9813. "classmap": [
  9814. "src/"
  9815. ]
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "BSD-3-Clause"
  9820. ],
  9821. "authors": [
  9822. {
  9823. "name": "Sebastian Bergmann",
  9824. "email": "sebastian@phpunit.de"
  9825. }
  9826. ],
  9827. "description": "Provides functionality to handle HHVM/PHP environments",
  9828. "homepage": "https://github.com/sebastianbergmann/environment",
  9829. "keywords": [
  9830. "Xdebug",
  9831. "environment",
  9832. "hhvm"
  9833. ],
  9834. "support": {
  9835. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9836. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9837. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.2"
  9838. },
  9839. "funding": [
  9840. {
  9841. "url": "https://github.com/sebastianbergmann",
  9842. "type": "github"
  9843. },
  9844. {
  9845. "url": "https://liberapay.com/sebastianbergmann",
  9846. "type": "liberapay"
  9847. },
  9848. {
  9849. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9850. "type": "thanks_dev"
  9851. },
  9852. {
  9853. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  9854. "type": "tidelift"
  9855. }
  9856. ],
  9857. "time": "2025-05-21T15:05:44+00:00"
  9858. },
  9859. {
  9860. "name": "sebastian/exporter",
  9861. "version": "7.0.0",
  9862. "source": {
  9863. "type": "git",
  9864. "url": "https://github.com/sebastianbergmann/exporter.git",
  9865. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  9866. },
  9867. "dist": {
  9868. "type": "zip",
  9869. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  9870. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  9871. "shasum": ""
  9872. },
  9873. "require": {
  9874. "ext-mbstring": "*",
  9875. "php": ">=8.3",
  9876. "sebastian/recursion-context": "^7.0"
  9877. },
  9878. "require-dev": {
  9879. "phpunit/phpunit": "^12.0"
  9880. },
  9881. "type": "library",
  9882. "extra": {
  9883. "branch-alias": {
  9884. "dev-main": "7.0-dev"
  9885. }
  9886. },
  9887. "autoload": {
  9888. "classmap": [
  9889. "src/"
  9890. ]
  9891. },
  9892. "notification-url": "https://packagist.org/downloads/",
  9893. "license": [
  9894. "BSD-3-Clause"
  9895. ],
  9896. "authors": [
  9897. {
  9898. "name": "Sebastian Bergmann",
  9899. "email": "sebastian@phpunit.de"
  9900. },
  9901. {
  9902. "name": "Jeff Welch",
  9903. "email": "whatthejeff@gmail.com"
  9904. },
  9905. {
  9906. "name": "Volker Dusch",
  9907. "email": "github@wallbash.com"
  9908. },
  9909. {
  9910. "name": "Adam Harvey",
  9911. "email": "aharvey@php.net"
  9912. },
  9913. {
  9914. "name": "Bernhard Schussek",
  9915. "email": "bschussek@gmail.com"
  9916. }
  9917. ],
  9918. "description": "Provides the functionality to export PHP variables for visualization",
  9919. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9920. "keywords": [
  9921. "export",
  9922. "exporter"
  9923. ],
  9924. "support": {
  9925. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9926. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9927. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://github.com/sebastianbergmann",
  9932. "type": "github"
  9933. }
  9934. ],
  9935. "time": "2025-02-07T04:56:42+00:00"
  9936. },
  9937. {
  9938. "name": "sebastian/global-state",
  9939. "version": "8.0.0",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/sebastianbergmann/global-state.git",
  9943. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  9948. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=8.3",
  9953. "sebastian/object-reflector": "^5.0",
  9954. "sebastian/recursion-context": "^7.0"
  9955. },
  9956. "require-dev": {
  9957. "ext-dom": "*",
  9958. "phpunit/phpunit": "^12.0"
  9959. },
  9960. "type": "library",
  9961. "extra": {
  9962. "branch-alias": {
  9963. "dev-main": "8.0-dev"
  9964. }
  9965. },
  9966. "autoload": {
  9967. "classmap": [
  9968. "src/"
  9969. ]
  9970. },
  9971. "notification-url": "https://packagist.org/downloads/",
  9972. "license": [
  9973. "BSD-3-Clause"
  9974. ],
  9975. "authors": [
  9976. {
  9977. "name": "Sebastian Bergmann",
  9978. "email": "sebastian@phpunit.de"
  9979. }
  9980. ],
  9981. "description": "Snapshotting of global state",
  9982. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9983. "keywords": [
  9984. "global state"
  9985. ],
  9986. "support": {
  9987. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9988. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9989. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.0"
  9990. },
  9991. "funding": [
  9992. {
  9993. "url": "https://github.com/sebastianbergmann",
  9994. "type": "github"
  9995. }
  9996. ],
  9997. "time": "2025-02-07T04:56:59+00:00"
  9998. },
  9999. {
  10000. "name": "sebastian/lines-of-code",
  10001. "version": "4.0.0",
  10002. "source": {
  10003. "type": "git",
  10004. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10005. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  10006. },
  10007. "dist": {
  10008. "type": "zip",
  10009. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  10010. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  10011. "shasum": ""
  10012. },
  10013. "require": {
  10014. "nikic/php-parser": "^5.0",
  10015. "php": ">=8.3"
  10016. },
  10017. "require-dev": {
  10018. "phpunit/phpunit": "^12.0"
  10019. },
  10020. "type": "library",
  10021. "extra": {
  10022. "branch-alias": {
  10023. "dev-main": "4.0-dev"
  10024. }
  10025. },
  10026. "autoload": {
  10027. "classmap": [
  10028. "src/"
  10029. ]
  10030. },
  10031. "notification-url": "https://packagist.org/downloads/",
  10032. "license": [
  10033. "BSD-3-Clause"
  10034. ],
  10035. "authors": [
  10036. {
  10037. "name": "Sebastian Bergmann",
  10038. "email": "sebastian@phpunit.de",
  10039. "role": "lead"
  10040. }
  10041. ],
  10042. "description": "Library for counting the lines of code in PHP source code",
  10043. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10044. "support": {
  10045. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10046. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10047. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  10048. },
  10049. "funding": [
  10050. {
  10051. "url": "https://github.com/sebastianbergmann",
  10052. "type": "github"
  10053. }
  10054. ],
  10055. "time": "2025-02-07T04:57:28+00:00"
  10056. },
  10057. {
  10058. "name": "sebastian/object-enumerator",
  10059. "version": "7.0.0",
  10060. "source": {
  10061. "type": "git",
  10062. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10063. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  10064. },
  10065. "dist": {
  10066. "type": "zip",
  10067. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  10068. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  10069. "shasum": ""
  10070. },
  10071. "require": {
  10072. "php": ">=8.3",
  10073. "sebastian/object-reflector": "^5.0",
  10074. "sebastian/recursion-context": "^7.0"
  10075. },
  10076. "require-dev": {
  10077. "phpunit/phpunit": "^12.0"
  10078. },
  10079. "type": "library",
  10080. "extra": {
  10081. "branch-alias": {
  10082. "dev-main": "7.0-dev"
  10083. }
  10084. },
  10085. "autoload": {
  10086. "classmap": [
  10087. "src/"
  10088. ]
  10089. },
  10090. "notification-url": "https://packagist.org/downloads/",
  10091. "license": [
  10092. "BSD-3-Clause"
  10093. ],
  10094. "authors": [
  10095. {
  10096. "name": "Sebastian Bergmann",
  10097. "email": "sebastian@phpunit.de"
  10098. }
  10099. ],
  10100. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10101. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10102. "support": {
  10103. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10104. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10105. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  10106. },
  10107. "funding": [
  10108. {
  10109. "url": "https://github.com/sebastianbergmann",
  10110. "type": "github"
  10111. }
  10112. ],
  10113. "time": "2025-02-07T04:57:48+00:00"
  10114. },
  10115. {
  10116. "name": "sebastian/object-reflector",
  10117. "version": "5.0.0",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10121. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  10126. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  10127. "shasum": ""
  10128. },
  10129. "require": {
  10130. "php": ">=8.3"
  10131. },
  10132. "require-dev": {
  10133. "phpunit/phpunit": "^12.0"
  10134. },
  10135. "type": "library",
  10136. "extra": {
  10137. "branch-alias": {
  10138. "dev-main": "5.0-dev"
  10139. }
  10140. },
  10141. "autoload": {
  10142. "classmap": [
  10143. "src/"
  10144. ]
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "BSD-3-Clause"
  10149. ],
  10150. "authors": [
  10151. {
  10152. "name": "Sebastian Bergmann",
  10153. "email": "sebastian@phpunit.de"
  10154. }
  10155. ],
  10156. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10157. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10158. "support": {
  10159. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10160. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10161. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  10162. },
  10163. "funding": [
  10164. {
  10165. "url": "https://github.com/sebastianbergmann",
  10166. "type": "github"
  10167. }
  10168. ],
  10169. "time": "2025-02-07T04:58:17+00:00"
  10170. },
  10171. {
  10172. "name": "sebastian/recursion-context",
  10173. "version": "7.0.0",
  10174. "source": {
  10175. "type": "git",
  10176. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10177. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c"
  10178. },
  10179. "dist": {
  10180. "type": "zip",
  10181. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  10182. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  10183. "shasum": ""
  10184. },
  10185. "require": {
  10186. "php": ">=8.3"
  10187. },
  10188. "require-dev": {
  10189. "phpunit/phpunit": "^12.0"
  10190. },
  10191. "type": "library",
  10192. "extra": {
  10193. "branch-alias": {
  10194. "dev-main": "7.0-dev"
  10195. }
  10196. },
  10197. "autoload": {
  10198. "classmap": [
  10199. "src/"
  10200. ]
  10201. },
  10202. "notification-url": "https://packagist.org/downloads/",
  10203. "license": [
  10204. "BSD-3-Clause"
  10205. ],
  10206. "authors": [
  10207. {
  10208. "name": "Sebastian Bergmann",
  10209. "email": "sebastian@phpunit.de"
  10210. },
  10211. {
  10212. "name": "Jeff Welch",
  10213. "email": "whatthejeff@gmail.com"
  10214. },
  10215. {
  10216. "name": "Adam Harvey",
  10217. "email": "aharvey@php.net"
  10218. }
  10219. ],
  10220. "description": "Provides functionality to recursively process PHP variables",
  10221. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10222. "support": {
  10223. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10224. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10225. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.0"
  10226. },
  10227. "funding": [
  10228. {
  10229. "url": "https://github.com/sebastianbergmann",
  10230. "type": "github"
  10231. }
  10232. ],
  10233. "time": "2025-02-07T05:00:01+00:00"
  10234. },
  10235. {
  10236. "name": "sebastian/type",
  10237. "version": "6.0.2",
  10238. "source": {
  10239. "type": "git",
  10240. "url": "https://github.com/sebastianbergmann/type.git",
  10241. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069"
  10242. },
  10243. "dist": {
  10244. "type": "zip",
  10245. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/1d7cd6e514384c36d7a390347f57c385d4be6069",
  10246. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069",
  10247. "shasum": ""
  10248. },
  10249. "require": {
  10250. "php": ">=8.3"
  10251. },
  10252. "require-dev": {
  10253. "phpunit/phpunit": "^12.0"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-main": "6.0-dev"
  10259. }
  10260. },
  10261. "autoload": {
  10262. "classmap": [
  10263. "src/"
  10264. ]
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "BSD-3-Clause"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Sebastian Bergmann",
  10273. "email": "sebastian@phpunit.de",
  10274. "role": "lead"
  10275. }
  10276. ],
  10277. "description": "Collection of value objects that represent the types of the PHP type system",
  10278. "homepage": "https://github.com/sebastianbergmann/type",
  10279. "support": {
  10280. "issues": "https://github.com/sebastianbergmann/type/issues",
  10281. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10282. "source": "https://github.com/sebastianbergmann/type/tree/6.0.2"
  10283. },
  10284. "funding": [
  10285. {
  10286. "url": "https://github.com/sebastianbergmann",
  10287. "type": "github"
  10288. }
  10289. ],
  10290. "time": "2025-03-18T13:37:31+00:00"
  10291. },
  10292. {
  10293. "name": "sebastian/version",
  10294. "version": "6.0.0",
  10295. "source": {
  10296. "type": "git",
  10297. "url": "https://github.com/sebastianbergmann/version.git",
  10298. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  10299. },
  10300. "dist": {
  10301. "type": "zip",
  10302. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  10303. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  10304. "shasum": ""
  10305. },
  10306. "require": {
  10307. "php": ">=8.3"
  10308. },
  10309. "type": "library",
  10310. "extra": {
  10311. "branch-alias": {
  10312. "dev-main": "6.0-dev"
  10313. }
  10314. },
  10315. "autoload": {
  10316. "classmap": [
  10317. "src/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "BSD-3-Clause"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Sebastian Bergmann",
  10327. "email": "sebastian@phpunit.de",
  10328. "role": "lead"
  10329. }
  10330. ],
  10331. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10332. "homepage": "https://github.com/sebastianbergmann/version",
  10333. "support": {
  10334. "issues": "https://github.com/sebastianbergmann/version/issues",
  10335. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10336. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  10337. },
  10338. "funding": [
  10339. {
  10340. "url": "https://github.com/sebastianbergmann",
  10341. "type": "github"
  10342. }
  10343. ],
  10344. "time": "2025-02-07T05:00:38+00:00"
  10345. },
  10346. {
  10347. "name": "staabm/side-effects-detector",
  10348. "version": "1.0.5",
  10349. "source": {
  10350. "type": "git",
  10351. "url": "https://github.com/staabm/side-effects-detector.git",
  10352. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  10353. },
  10354. "dist": {
  10355. "type": "zip",
  10356. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  10357. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  10358. "shasum": ""
  10359. },
  10360. "require": {
  10361. "ext-tokenizer": "*",
  10362. "php": "^7.4 || ^8.0"
  10363. },
  10364. "require-dev": {
  10365. "phpstan/extension-installer": "^1.4.3",
  10366. "phpstan/phpstan": "^1.12.6",
  10367. "phpunit/phpunit": "^9.6.21",
  10368. "symfony/var-dumper": "^5.4.43",
  10369. "tomasvotruba/type-coverage": "1.0.0",
  10370. "tomasvotruba/unused-public": "1.0.0"
  10371. },
  10372. "type": "library",
  10373. "autoload": {
  10374. "classmap": [
  10375. "lib/"
  10376. ]
  10377. },
  10378. "notification-url": "https://packagist.org/downloads/",
  10379. "license": [
  10380. "MIT"
  10381. ],
  10382. "description": "A static analysis tool to detect side effects in PHP code",
  10383. "keywords": [
  10384. "static analysis"
  10385. ],
  10386. "support": {
  10387. "issues": "https://github.com/staabm/side-effects-detector/issues",
  10388. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  10389. },
  10390. "funding": [
  10391. {
  10392. "url": "https://github.com/staabm",
  10393. "type": "github"
  10394. }
  10395. ],
  10396. "time": "2024-10-20T05:08:20+00:00"
  10397. },
  10398. {
  10399. "name": "symfony/browser-kit",
  10400. "version": "v7.3.0",
  10401. "source": {
  10402. "type": "git",
  10403. "url": "https://github.com/symfony/browser-kit.git",
  10404. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593"
  10405. },
  10406. "dist": {
  10407. "type": "zip",
  10408. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/5384291845e74fd7d54f3d925c4a86ce12336593",
  10409. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593",
  10410. "shasum": ""
  10411. },
  10412. "require": {
  10413. "php": ">=8.2",
  10414. "symfony/dom-crawler": "^6.4|^7.0"
  10415. },
  10416. "require-dev": {
  10417. "symfony/css-selector": "^6.4|^7.0",
  10418. "symfony/http-client": "^6.4|^7.0",
  10419. "symfony/mime": "^6.4|^7.0",
  10420. "symfony/process": "^6.4|^7.0"
  10421. },
  10422. "type": "library",
  10423. "autoload": {
  10424. "psr-4": {
  10425. "Symfony\\Component\\BrowserKit\\": ""
  10426. },
  10427. "exclude-from-classmap": [
  10428. "/Tests/"
  10429. ]
  10430. },
  10431. "notification-url": "https://packagist.org/downloads/",
  10432. "license": [
  10433. "MIT"
  10434. ],
  10435. "authors": [
  10436. {
  10437. "name": "Fabien Potencier",
  10438. "email": "fabien@symfony.com"
  10439. },
  10440. {
  10441. "name": "Symfony Community",
  10442. "homepage": "https://symfony.com/contributors"
  10443. }
  10444. ],
  10445. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10446. "homepage": "https://symfony.com",
  10447. "support": {
  10448. "source": "https://github.com/symfony/browser-kit/tree/v7.3.0"
  10449. },
  10450. "funding": [
  10451. {
  10452. "url": "https://symfony.com/sponsor",
  10453. "type": "custom"
  10454. },
  10455. {
  10456. "url": "https://github.com/fabpot",
  10457. "type": "github"
  10458. },
  10459. {
  10460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10461. "type": "tidelift"
  10462. }
  10463. ],
  10464. "time": "2025-03-05T10:15:41+00:00"
  10465. },
  10466. {
  10467. "name": "symfony/css-selector",
  10468. "version": "v7.3.0",
  10469. "source": {
  10470. "type": "git",
  10471. "url": "https://github.com/symfony/css-selector.git",
  10472. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  10473. },
  10474. "dist": {
  10475. "type": "zip",
  10476. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  10477. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  10478. "shasum": ""
  10479. },
  10480. "require": {
  10481. "php": ">=8.2"
  10482. },
  10483. "type": "library",
  10484. "autoload": {
  10485. "psr-4": {
  10486. "Symfony\\Component\\CssSelector\\": ""
  10487. },
  10488. "exclude-from-classmap": [
  10489. "/Tests/"
  10490. ]
  10491. },
  10492. "notification-url": "https://packagist.org/downloads/",
  10493. "license": [
  10494. "MIT"
  10495. ],
  10496. "authors": [
  10497. {
  10498. "name": "Fabien Potencier",
  10499. "email": "fabien@symfony.com"
  10500. },
  10501. {
  10502. "name": "Jean-François Simon",
  10503. "email": "jeanfrancois.simon@sensiolabs.com"
  10504. },
  10505. {
  10506. "name": "Symfony Community",
  10507. "homepage": "https://symfony.com/contributors"
  10508. }
  10509. ],
  10510. "description": "Converts CSS selectors to XPath expressions",
  10511. "homepage": "https://symfony.com",
  10512. "support": {
  10513. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  10514. },
  10515. "funding": [
  10516. {
  10517. "url": "https://symfony.com/sponsor",
  10518. "type": "custom"
  10519. },
  10520. {
  10521. "url": "https://github.com/fabpot",
  10522. "type": "github"
  10523. },
  10524. {
  10525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10526. "type": "tidelift"
  10527. }
  10528. ],
  10529. "time": "2024-09-25T14:21:43+00:00"
  10530. },
  10531. {
  10532. "name": "symfony/debug-bundle",
  10533. "version": "v7.3.0",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/symfony/debug-bundle.git",
  10537. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/781acc90f31f5fe18915f9276890864ebbbe3da8",
  10542. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8",
  10543. "shasum": ""
  10544. },
  10545. "require": {
  10546. "composer-runtime-api": ">=2.1",
  10547. "ext-xml": "*",
  10548. "php": ">=8.2",
  10549. "symfony/config": "^7.3",
  10550. "symfony/dependency-injection": "^6.4|^7.0",
  10551. "symfony/http-kernel": "^6.4|^7.0",
  10552. "symfony/twig-bridge": "^6.4|^7.0",
  10553. "symfony/var-dumper": "^6.4|^7.0"
  10554. },
  10555. "require-dev": {
  10556. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10557. },
  10558. "type": "symfony-bundle",
  10559. "autoload": {
  10560. "psr-4": {
  10561. "Symfony\\Bundle\\DebugBundle\\": ""
  10562. },
  10563. "exclude-from-classmap": [
  10564. "/Tests/"
  10565. ]
  10566. },
  10567. "notification-url": "https://packagist.org/downloads/",
  10568. "license": [
  10569. "MIT"
  10570. ],
  10571. "authors": [
  10572. {
  10573. "name": "Fabien Potencier",
  10574. "email": "fabien@symfony.com"
  10575. },
  10576. {
  10577. "name": "Symfony Community",
  10578. "homepage": "https://symfony.com/contributors"
  10579. }
  10580. ],
  10581. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10582. "homepage": "https://symfony.com",
  10583. "support": {
  10584. "source": "https://github.com/symfony/debug-bundle/tree/v7.3.0"
  10585. },
  10586. "funding": [
  10587. {
  10588. "url": "https://symfony.com/sponsor",
  10589. "type": "custom"
  10590. },
  10591. {
  10592. "url": "https://github.com/fabpot",
  10593. "type": "github"
  10594. },
  10595. {
  10596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10597. "type": "tidelift"
  10598. }
  10599. ],
  10600. "time": "2025-05-04T13:21:13+00:00"
  10601. },
  10602. {
  10603. "name": "symfony/dom-crawler",
  10604. "version": "v7.3.1",
  10605. "source": {
  10606. "type": "git",
  10607. "url": "https://github.com/symfony/dom-crawler.git",
  10608. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
  10609. },
  10610. "dist": {
  10611. "type": "zip",
  10612. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  10613. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  10614. "shasum": ""
  10615. },
  10616. "require": {
  10617. "masterminds/html5": "^2.6",
  10618. "php": ">=8.2",
  10619. "symfony/polyfill-ctype": "~1.8",
  10620. "symfony/polyfill-mbstring": "~1.0"
  10621. },
  10622. "require-dev": {
  10623. "symfony/css-selector": "^6.4|^7.0"
  10624. },
  10625. "type": "library",
  10626. "autoload": {
  10627. "psr-4": {
  10628. "Symfony\\Component\\DomCrawler\\": ""
  10629. },
  10630. "exclude-from-classmap": [
  10631. "/Tests/"
  10632. ]
  10633. },
  10634. "notification-url": "https://packagist.org/downloads/",
  10635. "license": [
  10636. "MIT"
  10637. ],
  10638. "authors": [
  10639. {
  10640. "name": "Fabien Potencier",
  10641. "email": "fabien@symfony.com"
  10642. },
  10643. {
  10644. "name": "Symfony Community",
  10645. "homepage": "https://symfony.com/contributors"
  10646. }
  10647. ],
  10648. "description": "Eases DOM navigation for HTML and XML documents",
  10649. "homepage": "https://symfony.com",
  10650. "support": {
  10651. "source": "https://github.com/symfony/dom-crawler/tree/v7.3.1"
  10652. },
  10653. "funding": [
  10654. {
  10655. "url": "https://symfony.com/sponsor",
  10656. "type": "custom"
  10657. },
  10658. {
  10659. "url": "https://github.com/fabpot",
  10660. "type": "github"
  10661. },
  10662. {
  10663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10664. "type": "tidelift"
  10665. }
  10666. ],
  10667. "time": "2025-06-15T10:07:06+00:00"
  10668. },
  10669. {
  10670. "name": "symfony/maker-bundle",
  10671. "version": "v1.64.0",
  10672. "source": {
  10673. "type": "git",
  10674. "url": "https://github.com/symfony/maker-bundle.git",
  10675. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a"
  10676. },
  10677. "dist": {
  10678. "type": "zip",
  10679. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c86da84640b0586e92aee2b276ee3638ef2f425a",
  10680. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a",
  10681. "shasum": ""
  10682. },
  10683. "require": {
  10684. "doctrine/inflector": "^2.0",
  10685. "nikic/php-parser": "^5.0",
  10686. "php": ">=8.1",
  10687. "symfony/config": "^6.4|^7.0",
  10688. "symfony/console": "^6.4|^7.0",
  10689. "symfony/dependency-injection": "^6.4|^7.0",
  10690. "symfony/deprecation-contracts": "^2.2|^3",
  10691. "symfony/filesystem": "^6.4|^7.0",
  10692. "symfony/finder": "^6.4|^7.0",
  10693. "symfony/framework-bundle": "^6.4|^7.0",
  10694. "symfony/http-kernel": "^6.4|^7.0",
  10695. "symfony/process": "^6.4|^7.0"
  10696. },
  10697. "conflict": {
  10698. "doctrine/doctrine-bundle": "<2.10",
  10699. "doctrine/orm": "<2.15"
  10700. },
  10701. "require-dev": {
  10702. "composer/semver": "^3.0",
  10703. "doctrine/doctrine-bundle": "^2.5.0",
  10704. "doctrine/orm": "^2.15|^3",
  10705. "symfony/http-client": "^6.4|^7.0",
  10706. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10707. "symfony/security-core": "^6.4|^7.0",
  10708. "symfony/security-http": "^6.4|^7.0",
  10709. "symfony/yaml": "^6.4|^7.0",
  10710. "twig/twig": "^3.0|^4.x-dev"
  10711. },
  10712. "type": "symfony-bundle",
  10713. "extra": {
  10714. "branch-alias": {
  10715. "dev-main": "1.x-dev"
  10716. }
  10717. },
  10718. "autoload": {
  10719. "psr-4": {
  10720. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10721. }
  10722. },
  10723. "notification-url": "https://packagist.org/downloads/",
  10724. "license": [
  10725. "MIT"
  10726. ],
  10727. "authors": [
  10728. {
  10729. "name": "Symfony Community",
  10730. "homepage": "https://symfony.com/contributors"
  10731. }
  10732. ],
  10733. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10734. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10735. "keywords": [
  10736. "code generator",
  10737. "dev",
  10738. "generator",
  10739. "scaffold",
  10740. "scaffolding"
  10741. ],
  10742. "support": {
  10743. "issues": "https://github.com/symfony/maker-bundle/issues",
  10744. "source": "https://github.com/symfony/maker-bundle/tree/v1.64.0"
  10745. },
  10746. "funding": [
  10747. {
  10748. "url": "https://symfony.com/sponsor",
  10749. "type": "custom"
  10750. },
  10751. {
  10752. "url": "https://github.com/fabpot",
  10753. "type": "github"
  10754. },
  10755. {
  10756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10757. "type": "tidelift"
  10758. }
  10759. ],
  10760. "time": "2025-06-23T16:12:08+00:00"
  10761. },
  10762. {
  10763. "name": "symfony/web-profiler-bundle",
  10764. "version": "v7.3.1",
  10765. "source": {
  10766. "type": "git",
  10767. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10768. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51"
  10769. },
  10770. "dist": {
  10771. "type": "zip",
  10772. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  10773. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  10774. "shasum": ""
  10775. },
  10776. "require": {
  10777. "composer-runtime-api": ">=2.1",
  10778. "php": ">=8.2",
  10779. "symfony/config": "^7.3",
  10780. "symfony/deprecation-contracts": "^2.5|^3",
  10781. "symfony/framework-bundle": "^6.4|^7.0",
  10782. "symfony/http-kernel": "^6.4|^7.0",
  10783. "symfony/routing": "^6.4|^7.0",
  10784. "symfony/twig-bundle": "^6.4|^7.0",
  10785. "twig/twig": "^3.12"
  10786. },
  10787. "conflict": {
  10788. "symfony/form": "<6.4",
  10789. "symfony/mailer": "<6.4",
  10790. "symfony/messenger": "<6.4",
  10791. "symfony/serializer": "<7.2",
  10792. "symfony/workflow": "<7.3"
  10793. },
  10794. "require-dev": {
  10795. "symfony/browser-kit": "^6.4|^7.0",
  10796. "symfony/console": "^6.4|^7.0",
  10797. "symfony/css-selector": "^6.4|^7.0",
  10798. "symfony/stopwatch": "^6.4|^7.0"
  10799. },
  10800. "type": "symfony-bundle",
  10801. "autoload": {
  10802. "psr-4": {
  10803. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10804. },
  10805. "exclude-from-classmap": [
  10806. "/Tests/"
  10807. ]
  10808. },
  10809. "notification-url": "https://packagist.org/downloads/",
  10810. "license": [
  10811. "MIT"
  10812. ],
  10813. "authors": [
  10814. {
  10815. "name": "Fabien Potencier",
  10816. "email": "fabien@symfony.com"
  10817. },
  10818. {
  10819. "name": "Symfony Community",
  10820. "homepage": "https://symfony.com/contributors"
  10821. }
  10822. ],
  10823. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10824. "homepage": "https://symfony.com",
  10825. "keywords": [
  10826. "dev"
  10827. ],
  10828. "support": {
  10829. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.3.1"
  10830. },
  10831. "funding": [
  10832. {
  10833. "url": "https://symfony.com/sponsor",
  10834. "type": "custom"
  10835. },
  10836. {
  10837. "url": "https://github.com/fabpot",
  10838. "type": "github"
  10839. },
  10840. {
  10841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10842. "type": "tidelift"
  10843. }
  10844. ],
  10845. "time": "2025-06-05T09:30:41+00:00"
  10846. },
  10847. {
  10848. "name": "theseer/tokenizer",
  10849. "version": "1.2.3",
  10850. "source": {
  10851. "type": "git",
  10852. "url": "https://github.com/theseer/tokenizer.git",
  10853. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10854. },
  10855. "dist": {
  10856. "type": "zip",
  10857. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10858. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10859. "shasum": ""
  10860. },
  10861. "require": {
  10862. "ext-dom": "*",
  10863. "ext-tokenizer": "*",
  10864. "ext-xmlwriter": "*",
  10865. "php": "^7.2 || ^8.0"
  10866. },
  10867. "type": "library",
  10868. "autoload": {
  10869. "classmap": [
  10870. "src/"
  10871. ]
  10872. },
  10873. "notification-url": "https://packagist.org/downloads/",
  10874. "license": [
  10875. "BSD-3-Clause"
  10876. ],
  10877. "authors": [
  10878. {
  10879. "name": "Arne Blankerts",
  10880. "email": "arne@blankerts.de",
  10881. "role": "Developer"
  10882. }
  10883. ],
  10884. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10885. "support": {
  10886. "issues": "https://github.com/theseer/tokenizer/issues",
  10887. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10888. },
  10889. "funding": [
  10890. {
  10891. "url": "https://github.com/theseer",
  10892. "type": "github"
  10893. }
  10894. ],
  10895. "time": "2024-03-03T12:36:25+00:00"
  10896. }
  10897. ],
  10898. "aliases": [],
  10899. "minimum-stability": "stable",
  10900. "stability-flags": {},
  10901. "prefer-stable": true,
  10902. "prefer-lowest": false,
  10903. "platform": {
  10904. "php": ">=8.2",
  10905. "ext-ctype": "*",
  10906. "ext-iconv": "*"
  10907. },
  10908. "platform-dev": {},
  10909. "plugin-api-version": "2.6.0"
  10910. }