composer.lock 423 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687
  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": "61cc58ae9a48baa32369d2039421cd6c",
  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": "firebase/php-jwt",
  1361. "version": "v6.11.1",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/firebase/php-jwt.git",
  1365. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  1370. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "php": "^8.0"
  1375. },
  1376. "require-dev": {
  1377. "guzzlehttp/guzzle": "^7.4",
  1378. "phpspec/prophecy-phpunit": "^2.0",
  1379. "phpunit/phpunit": "^9.5",
  1380. "psr/cache": "^2.0||^3.0",
  1381. "psr/http-client": "^1.0",
  1382. "psr/http-factory": "^1.0"
  1383. },
  1384. "suggest": {
  1385. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1386. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1387. },
  1388. "type": "library",
  1389. "autoload": {
  1390. "psr-4": {
  1391. "Firebase\\JWT\\": "src"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "BSD-3-Clause"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Neuman Vong",
  1401. "email": "neuman+pear@twilio.com",
  1402. "role": "Developer"
  1403. },
  1404. {
  1405. "name": "Anant Narayanan",
  1406. "email": "anant@php.net",
  1407. "role": "Developer"
  1408. }
  1409. ],
  1410. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1411. "homepage": "https://github.com/firebase/php-jwt",
  1412. "keywords": [
  1413. "jwt",
  1414. "php"
  1415. ],
  1416. "support": {
  1417. "issues": "https://github.com/firebase/php-jwt/issues",
  1418. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  1419. },
  1420. "time": "2025-04-09T20:32:01+00:00"
  1421. },
  1422. {
  1423. "name": "giggsey/libphonenumber-for-php",
  1424. "version": "9.0.10",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1428. "reference": "727af7896f37194f7417def96b2140481668a28c"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/727af7896f37194f7417def96b2140481668a28c",
  1433. "reference": "727af7896f37194f7417def96b2140481668a28c",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "giggsey/locale": "^2.7",
  1438. "php": "^8.1",
  1439. "symfony/polyfill-mbstring": "^1.31"
  1440. },
  1441. "replace": {
  1442. "giggsey/libphonenumber-for-php-lite": "self.version"
  1443. },
  1444. "require-dev": {
  1445. "ext-dom": "*",
  1446. "friendsofphp/php-cs-fixer": "^3.71",
  1447. "infection/infection": "^0.28.0",
  1448. "nette/php-generator": "^4.1",
  1449. "php-coveralls/php-coveralls": "^2.7",
  1450. "phpstan/extension-installer": "^1.4.3",
  1451. "phpstan/phpstan": "^2.1.7",
  1452. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  1453. "phpstan/phpstan-phpunit": "^2.0.4",
  1454. "phpstan/phpstan-strict-rules": "^2.0.3",
  1455. "phpunit/phpunit": "^10.5.45",
  1456. "symfony/console": "^6.4",
  1457. "symfony/filesystem": "^6.4",
  1458. "symfony/process": "^6.4"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "9.x-dev"
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-4": {
  1468. "libphonenumber\\": "src/"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "Apache-2.0"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Joshua Gigg",
  1478. "email": "giggsey@gmail.com",
  1479. "homepage": "https://giggsey.com/"
  1480. }
  1481. ],
  1482. "description": "A library for parsing, formatting, storing and validating international phone numbers, a PHP Port of Google's libphonenumber.",
  1483. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1484. "keywords": [
  1485. "geocoding",
  1486. "geolocation",
  1487. "libphonenumber",
  1488. "mobile",
  1489. "phonenumber",
  1490. "validation"
  1491. ],
  1492. "support": {
  1493. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1494. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1495. },
  1496. "time": "2025-07-18T06:47:04+00:00"
  1497. },
  1498. {
  1499. "name": "giggsey/locale",
  1500. "version": "2.8.0",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/giggsey/Locale.git",
  1504. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/giggsey/Locale/zipball/1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1509. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1510. "shasum": ""
  1511. },
  1512. "require": {
  1513. "php": "^8.1"
  1514. },
  1515. "require-dev": {
  1516. "ext-json": "*",
  1517. "friendsofphp/php-cs-fixer": "^3.66",
  1518. "pear/pear-core-minimal": "^1.10",
  1519. "pear/pear_exception": "^1.0",
  1520. "pear/versioncontrol_git": "^0.5",
  1521. "phing/phing": "^2.17.4",
  1522. "php-coveralls/php-coveralls": "^2.7",
  1523. "phpunit/phpunit": "^10.5.45",
  1524. "symfony/console": "^6.4",
  1525. "symfony/filesystem": "6.4",
  1526. "symfony/finder": "^6.4",
  1527. "symfony/process": "^6.4",
  1528. "symfony/var-exporter": "^6.4"
  1529. },
  1530. "type": "library",
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Giggsey\\Locale\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Joshua Gigg",
  1543. "email": "giggsey@gmail.com",
  1544. "homepage": "https://giggsey.com/"
  1545. }
  1546. ],
  1547. "description": "Locale functions required by libphonenumber-for-php",
  1548. "support": {
  1549. "issues": "https://github.com/giggsey/Locale/issues",
  1550. "source": "https://github.com/giggsey/Locale/tree/2.8.0"
  1551. },
  1552. "time": "2025-03-20T14:25:27+00:00"
  1553. },
  1554. {
  1555. "name": "guzzlehttp/guzzle",
  1556. "version": "7.9.3",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/guzzle/guzzle.git",
  1560. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1565. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "ext-json": "*",
  1570. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1571. "guzzlehttp/psr7": "^2.7.0",
  1572. "php": "^7.2.5 || ^8.0",
  1573. "psr/http-client": "^1.0",
  1574. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1575. },
  1576. "provide": {
  1577. "psr/http-client-implementation": "1.0"
  1578. },
  1579. "require-dev": {
  1580. "bamarni/composer-bin-plugin": "^1.8.2",
  1581. "ext-curl": "*",
  1582. "guzzle/client-integration-tests": "3.0.2",
  1583. "php-http/message-factory": "^1.1",
  1584. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1585. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1586. },
  1587. "suggest": {
  1588. "ext-curl": "Required for CURL handler support",
  1589. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1590. "psr/log": "Required for using the Log middleware"
  1591. },
  1592. "type": "library",
  1593. "extra": {
  1594. "bamarni-bin": {
  1595. "bin-links": true,
  1596. "forward-command": false
  1597. }
  1598. },
  1599. "autoload": {
  1600. "files": [
  1601. "src/functions_include.php"
  1602. ],
  1603. "psr-4": {
  1604. "GuzzleHttp\\": "src/"
  1605. }
  1606. },
  1607. "notification-url": "https://packagist.org/downloads/",
  1608. "license": [
  1609. "MIT"
  1610. ],
  1611. "authors": [
  1612. {
  1613. "name": "Graham Campbell",
  1614. "email": "hello@gjcampbell.co.uk",
  1615. "homepage": "https://github.com/GrahamCampbell"
  1616. },
  1617. {
  1618. "name": "Michael Dowling",
  1619. "email": "mtdowling@gmail.com",
  1620. "homepage": "https://github.com/mtdowling"
  1621. },
  1622. {
  1623. "name": "Jeremy Lindblom",
  1624. "email": "jeremeamia@gmail.com",
  1625. "homepage": "https://github.com/jeremeamia"
  1626. },
  1627. {
  1628. "name": "George Mponos",
  1629. "email": "gmponos@gmail.com",
  1630. "homepage": "https://github.com/gmponos"
  1631. },
  1632. {
  1633. "name": "Tobias Nyholm",
  1634. "email": "tobias.nyholm@gmail.com",
  1635. "homepage": "https://github.com/Nyholm"
  1636. },
  1637. {
  1638. "name": "Márk Sági-Kazár",
  1639. "email": "mark.sagikazar@gmail.com",
  1640. "homepage": "https://github.com/sagikazarmark"
  1641. },
  1642. {
  1643. "name": "Tobias Schultze",
  1644. "email": "webmaster@tubo-world.de",
  1645. "homepage": "https://github.com/Tobion"
  1646. }
  1647. ],
  1648. "description": "Guzzle is a PHP HTTP client library",
  1649. "keywords": [
  1650. "client",
  1651. "curl",
  1652. "framework",
  1653. "http",
  1654. "http client",
  1655. "psr-18",
  1656. "psr-7",
  1657. "rest",
  1658. "web service"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/guzzle/guzzle/issues",
  1662. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://github.com/GrahamCampbell",
  1667. "type": "github"
  1668. },
  1669. {
  1670. "url": "https://github.com/Nyholm",
  1671. "type": "github"
  1672. },
  1673. {
  1674. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1675. "type": "tidelift"
  1676. }
  1677. ],
  1678. "time": "2025-03-27T13:37:11+00:00"
  1679. },
  1680. {
  1681. "name": "guzzlehttp/promises",
  1682. "version": "2.3.0",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://github.com/guzzle/promises.git",
  1686. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1691. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1692. "shasum": ""
  1693. },
  1694. "require": {
  1695. "php": "^7.2.5 || ^8.0"
  1696. },
  1697. "require-dev": {
  1698. "bamarni/composer-bin-plugin": "^1.8.2",
  1699. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1700. },
  1701. "type": "library",
  1702. "extra": {
  1703. "bamarni-bin": {
  1704. "bin-links": true,
  1705. "forward-command": false
  1706. }
  1707. },
  1708. "autoload": {
  1709. "psr-4": {
  1710. "GuzzleHttp\\Promise\\": "src/"
  1711. }
  1712. },
  1713. "notification-url": "https://packagist.org/downloads/",
  1714. "license": [
  1715. "MIT"
  1716. ],
  1717. "authors": [
  1718. {
  1719. "name": "Graham Campbell",
  1720. "email": "hello@gjcampbell.co.uk",
  1721. "homepage": "https://github.com/GrahamCampbell"
  1722. },
  1723. {
  1724. "name": "Michael Dowling",
  1725. "email": "mtdowling@gmail.com",
  1726. "homepage": "https://github.com/mtdowling"
  1727. },
  1728. {
  1729. "name": "Tobias Nyholm",
  1730. "email": "tobias.nyholm@gmail.com",
  1731. "homepage": "https://github.com/Nyholm"
  1732. },
  1733. {
  1734. "name": "Tobias Schultze",
  1735. "email": "webmaster@tubo-world.de",
  1736. "homepage": "https://github.com/Tobion"
  1737. }
  1738. ],
  1739. "description": "Guzzle promises library",
  1740. "keywords": [
  1741. "promise"
  1742. ],
  1743. "support": {
  1744. "issues": "https://github.com/guzzle/promises/issues",
  1745. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1746. },
  1747. "funding": [
  1748. {
  1749. "url": "https://github.com/GrahamCampbell",
  1750. "type": "github"
  1751. },
  1752. {
  1753. "url": "https://github.com/Nyholm",
  1754. "type": "github"
  1755. },
  1756. {
  1757. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1758. "type": "tidelift"
  1759. }
  1760. ],
  1761. "time": "2025-08-22T14:34:08+00:00"
  1762. },
  1763. {
  1764. "name": "guzzlehttp/psr7",
  1765. "version": "2.7.1",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/guzzle/psr7.git",
  1769. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1774. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "php": "^7.2.5 || ^8.0",
  1779. "psr/http-factory": "^1.0",
  1780. "psr/http-message": "^1.1 || ^2.0",
  1781. "ralouphie/getallheaders": "^3.0"
  1782. },
  1783. "provide": {
  1784. "psr/http-factory-implementation": "1.0",
  1785. "psr/http-message-implementation": "1.0"
  1786. },
  1787. "require-dev": {
  1788. "bamarni/composer-bin-plugin": "^1.8.2",
  1789. "http-interop/http-factory-tests": "0.9.0",
  1790. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1791. },
  1792. "suggest": {
  1793. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1794. },
  1795. "type": "library",
  1796. "extra": {
  1797. "bamarni-bin": {
  1798. "bin-links": true,
  1799. "forward-command": false
  1800. }
  1801. },
  1802. "autoload": {
  1803. "psr-4": {
  1804. "GuzzleHttp\\Psr7\\": "src/"
  1805. }
  1806. },
  1807. "notification-url": "https://packagist.org/downloads/",
  1808. "license": [
  1809. "MIT"
  1810. ],
  1811. "authors": [
  1812. {
  1813. "name": "Graham Campbell",
  1814. "email": "hello@gjcampbell.co.uk",
  1815. "homepage": "https://github.com/GrahamCampbell"
  1816. },
  1817. {
  1818. "name": "Michael Dowling",
  1819. "email": "mtdowling@gmail.com",
  1820. "homepage": "https://github.com/mtdowling"
  1821. },
  1822. {
  1823. "name": "George Mponos",
  1824. "email": "gmponos@gmail.com",
  1825. "homepage": "https://github.com/gmponos"
  1826. },
  1827. {
  1828. "name": "Tobias Nyholm",
  1829. "email": "tobias.nyholm@gmail.com",
  1830. "homepage": "https://github.com/Nyholm"
  1831. },
  1832. {
  1833. "name": "Márk Sági-Kazár",
  1834. "email": "mark.sagikazar@gmail.com",
  1835. "homepage": "https://github.com/sagikazarmark"
  1836. },
  1837. {
  1838. "name": "Tobias Schultze",
  1839. "email": "webmaster@tubo-world.de",
  1840. "homepage": "https://github.com/Tobion"
  1841. },
  1842. {
  1843. "name": "Márk Sági-Kazár",
  1844. "email": "mark.sagikazar@gmail.com",
  1845. "homepage": "https://sagikazarmark.hu"
  1846. }
  1847. ],
  1848. "description": "PSR-7 message implementation that also provides common utility methods",
  1849. "keywords": [
  1850. "http",
  1851. "message",
  1852. "psr-7",
  1853. "request",
  1854. "response",
  1855. "stream",
  1856. "uri",
  1857. "url"
  1858. ],
  1859. "support": {
  1860. "issues": "https://github.com/guzzle/psr7/issues",
  1861. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1862. },
  1863. "funding": [
  1864. {
  1865. "url": "https://github.com/GrahamCampbell",
  1866. "type": "github"
  1867. },
  1868. {
  1869. "url": "https://github.com/Nyholm",
  1870. "type": "github"
  1871. },
  1872. {
  1873. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1874. "type": "tidelift"
  1875. }
  1876. ],
  1877. "time": "2025-03-27T12:30:47+00:00"
  1878. },
  1879. {
  1880. "name": "knpuniversity/oauth2-client-bundle",
  1881. "version": "v2.18.3",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/knpuniversity/oauth2-client-bundle.git",
  1885. "reference": "c38ca88a70aae3694ca346a41b13b9a8f6e33ed4"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/knpuniversity/oauth2-client-bundle/zipball/c38ca88a70aae3694ca346a41b13b9a8f6e33ed4",
  1890. "reference": "c38ca88a70aae3694ca346a41b13b9a8f6e33ed4",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "league/oauth2-client": "^2.0",
  1895. "php": ">=8.1",
  1896. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1897. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  1898. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  1899. "symfony/routing": "^5.4|^6.0|^7.0"
  1900. },
  1901. "require-dev": {
  1902. "league/oauth2-facebook": "^1.1|^2.0",
  1903. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  1904. "symfony/security-guard": "^5.4",
  1905. "symfony/yaml": "^5.4|^6.0|^7.0"
  1906. },
  1907. "suggest": {
  1908. "symfony/security-guard": "For integration with Symfony's Guard Security layer"
  1909. },
  1910. "type": "symfony-bundle",
  1911. "autoload": {
  1912. "psr-4": {
  1913. "KnpU\\OAuth2ClientBundle\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Ryan Weaver",
  1923. "email": "ryan@symfonycasts.com"
  1924. }
  1925. ],
  1926. "description": "Integration with league/oauth2-client to provide services",
  1927. "homepage": "https://symfonycasts.com",
  1928. "keywords": [
  1929. "oauth",
  1930. "oauth2"
  1931. ],
  1932. "support": {
  1933. "issues": "https://github.com/knpuniversity/oauth2-client-bundle/issues",
  1934. "source": "https://github.com/knpuniversity/oauth2-client-bundle/tree/v2.18.3"
  1935. },
  1936. "time": "2024-10-02T14:26:09+00:00"
  1937. },
  1938. {
  1939. "name": "league/commonmark",
  1940. "version": "2.7.1",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/thephpleague/commonmark.git",
  1944. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca",
  1949. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "ext-mbstring": "*",
  1954. "league/config": "^1.1.1",
  1955. "php": "^7.4 || ^8.0",
  1956. "psr/event-dispatcher": "^1.0",
  1957. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1958. "symfony/polyfill-php80": "^1.16"
  1959. },
  1960. "require-dev": {
  1961. "cebe/markdown": "^1.0",
  1962. "commonmark/cmark": "0.31.1",
  1963. "commonmark/commonmark.js": "0.31.1",
  1964. "composer/package-versions-deprecated": "^1.8",
  1965. "embed/embed": "^4.4",
  1966. "erusev/parsedown": "^1.0",
  1967. "ext-json": "*",
  1968. "github/gfm": "0.29.0",
  1969. "michelf/php-markdown": "^1.4 || ^2.0",
  1970. "nyholm/psr7": "^1.5",
  1971. "phpstan/phpstan": "^1.8.2",
  1972. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1973. "scrutinizer/ocular": "^1.8.1",
  1974. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  1975. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  1976. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  1977. "unleashedtech/php-coding-standard": "^3.1.1",
  1978. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  1979. },
  1980. "suggest": {
  1981. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-main": "2.8-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "League\\CommonMark\\": "src"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "BSD-3-Clause"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Colin O'Dell",
  2001. "email": "colinodell@gmail.com",
  2002. "homepage": "https://www.colinodell.com",
  2003. "role": "Lead Developer"
  2004. }
  2005. ],
  2006. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2007. "homepage": "https://commonmark.thephpleague.com",
  2008. "keywords": [
  2009. "commonmark",
  2010. "flavored",
  2011. "gfm",
  2012. "github",
  2013. "github-flavored",
  2014. "markdown",
  2015. "md",
  2016. "parser"
  2017. ],
  2018. "support": {
  2019. "docs": "https://commonmark.thephpleague.com/",
  2020. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2021. "issues": "https://github.com/thephpleague/commonmark/issues",
  2022. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2023. "source": "https://github.com/thephpleague/commonmark"
  2024. },
  2025. "funding": [
  2026. {
  2027. "url": "https://www.colinodell.com/sponsor",
  2028. "type": "custom"
  2029. },
  2030. {
  2031. "url": "https://www.paypal.me/colinpodell/10.00",
  2032. "type": "custom"
  2033. },
  2034. {
  2035. "url": "https://github.com/colinodell",
  2036. "type": "github"
  2037. },
  2038. {
  2039. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2040. "type": "tidelift"
  2041. }
  2042. ],
  2043. "time": "2025-07-20T12:47:49+00:00"
  2044. },
  2045. {
  2046. "name": "league/config",
  2047. "version": "v1.2.0",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/thephpleague/config.git",
  2051. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2056. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "dflydev/dot-access-data": "^3.0.1",
  2061. "nette/schema": "^1.2",
  2062. "php": "^7.4 || ^8.0"
  2063. },
  2064. "require-dev": {
  2065. "phpstan/phpstan": "^1.8.2",
  2066. "phpunit/phpunit": "^9.5.5",
  2067. "scrutinizer/ocular": "^1.8.1",
  2068. "unleashedtech/php-coding-standard": "^3.1",
  2069. "vimeo/psalm": "^4.7.3"
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-main": "1.2-dev"
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-4": {
  2079. "League\\Config\\": "src"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "BSD-3-Clause"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Colin O'Dell",
  2089. "email": "colinodell@gmail.com",
  2090. "homepage": "https://www.colinodell.com",
  2091. "role": "Lead Developer"
  2092. }
  2093. ],
  2094. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2095. "homepage": "https://config.thephpleague.com",
  2096. "keywords": [
  2097. "array",
  2098. "config",
  2099. "configuration",
  2100. "dot",
  2101. "dot-access",
  2102. "nested",
  2103. "schema"
  2104. ],
  2105. "support": {
  2106. "docs": "https://config.thephpleague.com/",
  2107. "issues": "https://github.com/thephpleague/config/issues",
  2108. "rss": "https://github.com/thephpleague/config/releases.atom",
  2109. "source": "https://github.com/thephpleague/config"
  2110. },
  2111. "funding": [
  2112. {
  2113. "url": "https://www.colinodell.com/sponsor",
  2114. "type": "custom"
  2115. },
  2116. {
  2117. "url": "https://www.paypal.me/colinpodell/10.00",
  2118. "type": "custom"
  2119. },
  2120. {
  2121. "url": "https://github.com/colinodell",
  2122. "type": "github"
  2123. }
  2124. ],
  2125. "time": "2022-12-11T20:36:23+00:00"
  2126. },
  2127. {
  2128. "name": "league/oauth2-client",
  2129. "version": "2.8.1",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://github.com/thephpleague/oauth2-client.git",
  2133. "reference": "9df2924ca644736c835fc60466a3a60390d334f9"
  2134. },
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/9df2924ca644736c835fc60466a3a60390d334f9",
  2138. "reference": "9df2924ca644736c835fc60466a3a60390d334f9",
  2139. "shasum": ""
  2140. },
  2141. "require": {
  2142. "ext-json": "*",
  2143. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  2144. "php": "^7.1 || >=8.0.0 <8.5.0"
  2145. },
  2146. "require-dev": {
  2147. "mockery/mockery": "^1.3.5",
  2148. "php-parallel-lint/php-parallel-lint": "^1.4",
  2149. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  2150. "squizlabs/php_codesniffer": "^3.11"
  2151. },
  2152. "type": "library",
  2153. "autoload": {
  2154. "psr-4": {
  2155. "League\\OAuth2\\Client\\": "src/"
  2156. }
  2157. },
  2158. "notification-url": "https://packagist.org/downloads/",
  2159. "license": [
  2160. "MIT"
  2161. ],
  2162. "authors": [
  2163. {
  2164. "name": "Alex Bilbie",
  2165. "email": "hello@alexbilbie.com",
  2166. "homepage": "http://www.alexbilbie.com",
  2167. "role": "Developer"
  2168. },
  2169. {
  2170. "name": "Woody Gilk",
  2171. "homepage": "https://github.com/shadowhand",
  2172. "role": "Contributor"
  2173. }
  2174. ],
  2175. "description": "OAuth 2.0 Client Library",
  2176. "keywords": [
  2177. "Authentication",
  2178. "SSO",
  2179. "authorization",
  2180. "identity",
  2181. "idp",
  2182. "oauth",
  2183. "oauth2",
  2184. "single sign on"
  2185. ],
  2186. "support": {
  2187. "issues": "https://github.com/thephpleague/oauth2-client/issues",
  2188. "source": "https://github.com/thephpleague/oauth2-client/tree/2.8.1"
  2189. },
  2190. "time": "2025-02-26T04:37:30+00:00"
  2191. },
  2192. {
  2193. "name": "monolog/monolog",
  2194. "version": "3.9.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/Seldaek/monolog.git",
  2198. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  2203. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "php": ">=8.1",
  2208. "psr/log": "^2.0 || ^3.0"
  2209. },
  2210. "provide": {
  2211. "psr/log-implementation": "3.0.0"
  2212. },
  2213. "require-dev": {
  2214. "aws/aws-sdk-php": "^3.0",
  2215. "doctrine/couchdb": "~1.0@dev",
  2216. "elasticsearch/elasticsearch": "^7 || ^8",
  2217. "ext-json": "*",
  2218. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2219. "guzzlehttp/guzzle": "^7.4.5",
  2220. "guzzlehttp/psr7": "^2.2",
  2221. "mongodb/mongodb": "^1.8",
  2222. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2223. "php-console/php-console": "^3.1.8",
  2224. "phpstan/phpstan": "^2",
  2225. "phpstan/phpstan-deprecation-rules": "^2",
  2226. "phpstan/phpstan-strict-rules": "^2",
  2227. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2228. "predis/predis": "^1.1 || ^2",
  2229. "rollbar/rollbar": "^4.0",
  2230. "ruflin/elastica": "^7 || ^8",
  2231. "symfony/mailer": "^5.4 || ^6",
  2232. "symfony/mime": "^5.4 || ^6"
  2233. },
  2234. "suggest": {
  2235. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2236. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2237. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2238. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2239. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2240. "ext-mbstring": "Allow to work properly with unicode symbols",
  2241. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2242. "ext-openssl": "Required to send log messages using SSL",
  2243. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2244. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2245. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2246. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2247. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2248. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2249. },
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-main": "3.x-dev"
  2254. }
  2255. },
  2256. "autoload": {
  2257. "psr-4": {
  2258. "Monolog\\": "src/Monolog"
  2259. }
  2260. },
  2261. "notification-url": "https://packagist.org/downloads/",
  2262. "license": [
  2263. "MIT"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Jordi Boggiano",
  2268. "email": "j.boggiano@seld.be",
  2269. "homepage": "https://seld.be"
  2270. }
  2271. ],
  2272. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2273. "homepage": "https://github.com/Seldaek/monolog",
  2274. "keywords": [
  2275. "log",
  2276. "logging",
  2277. "psr-3"
  2278. ],
  2279. "support": {
  2280. "issues": "https://github.com/Seldaek/monolog/issues",
  2281. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  2282. },
  2283. "funding": [
  2284. {
  2285. "url": "https://github.com/Seldaek",
  2286. "type": "github"
  2287. },
  2288. {
  2289. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2290. "type": "tidelift"
  2291. }
  2292. ],
  2293. "time": "2025-03-24T10:02:05+00:00"
  2294. },
  2295. {
  2296. "name": "nette/schema",
  2297. "version": "v1.3.2",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/nette/schema.git",
  2301. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2306. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "nette/utils": "^4.0",
  2311. "php": "8.1 - 8.4"
  2312. },
  2313. "require-dev": {
  2314. "nette/tester": "^2.5.2",
  2315. "phpstan/phpstan-nette": "^1.0",
  2316. "tracy/tracy": "^2.8"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.3-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "classmap": [
  2326. "src/"
  2327. ]
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "BSD-3-Clause",
  2332. "GPL-2.0-only",
  2333. "GPL-3.0-only"
  2334. ],
  2335. "authors": [
  2336. {
  2337. "name": "David Grudl",
  2338. "homepage": "https://davidgrudl.com"
  2339. },
  2340. {
  2341. "name": "Nette Community",
  2342. "homepage": "https://nette.org/contributors"
  2343. }
  2344. ],
  2345. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2346. "homepage": "https://nette.org",
  2347. "keywords": [
  2348. "config",
  2349. "nette"
  2350. ],
  2351. "support": {
  2352. "issues": "https://github.com/nette/schema/issues",
  2353. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2354. },
  2355. "time": "2024-10-06T23:10:23+00:00"
  2356. },
  2357. {
  2358. "name": "nette/utils",
  2359. "version": "v4.0.7",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/nette/utils.git",
  2363. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  2368. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "php": "8.0 - 8.4"
  2373. },
  2374. "conflict": {
  2375. "nette/finder": "<3",
  2376. "nette/schema": "<1.2.2"
  2377. },
  2378. "require-dev": {
  2379. "jetbrains/phpstorm-attributes": "dev-master",
  2380. "nette/tester": "^2.5",
  2381. "phpstan/phpstan": "^1.0",
  2382. "tracy/tracy": "^2.9"
  2383. },
  2384. "suggest": {
  2385. "ext-gd": "to use Image",
  2386. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2387. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2388. "ext-json": "to use Nette\\Utils\\Json",
  2389. "ext-mbstring": "to use Strings::lower() etc...",
  2390. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2391. },
  2392. "type": "library",
  2393. "extra": {
  2394. "branch-alias": {
  2395. "dev-master": "4.0-dev"
  2396. }
  2397. },
  2398. "autoload": {
  2399. "classmap": [
  2400. "src/"
  2401. ]
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "BSD-3-Clause",
  2406. "GPL-2.0-only",
  2407. "GPL-3.0-only"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "David Grudl",
  2412. "homepage": "https://davidgrudl.com"
  2413. },
  2414. {
  2415. "name": "Nette Community",
  2416. "homepage": "https://nette.org/contributors"
  2417. }
  2418. ],
  2419. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2420. "homepage": "https://nette.org",
  2421. "keywords": [
  2422. "array",
  2423. "core",
  2424. "datetime",
  2425. "images",
  2426. "json",
  2427. "nette",
  2428. "paginator",
  2429. "password",
  2430. "slugify",
  2431. "string",
  2432. "unicode",
  2433. "utf-8",
  2434. "utility",
  2435. "validation"
  2436. ],
  2437. "support": {
  2438. "issues": "https://github.com/nette/utils/issues",
  2439. "source": "https://github.com/nette/utils/tree/v4.0.7"
  2440. },
  2441. "time": "2025-06-03T04:55:08+00:00"
  2442. },
  2443. {
  2444. "name": "odolbeau/phone-number-bundle",
  2445. "version": "v4.2.0",
  2446. "source": {
  2447. "type": "git",
  2448. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  2449. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4"
  2450. },
  2451. "dist": {
  2452. "type": "zip",
  2453. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/0952c8d10a245d2e6d13263c97715679654cd7e4",
  2454. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4",
  2455. "shasum": ""
  2456. },
  2457. "require": {
  2458. "giggsey/libphonenumber-for-php": "^9.0.2",
  2459. "php": ">=8.1",
  2460. "symfony/config": "^6.4 || ^7.2",
  2461. "symfony/deprecation-contracts": "^2.5|^3",
  2462. "symfony/framework-bundle": "^6.4 || ^7.2",
  2463. "symfony/intl": "^6.4 || ^7.2",
  2464. "symfony/polyfill-mbstring": "^1.28"
  2465. },
  2466. "replace": {
  2467. "misd/phone-number-bundle": "self.version"
  2468. },
  2469. "require-dev": {
  2470. "doctrine/doctrine-bundle": "^1.12|^2.0",
  2471. "phpspec/prophecy": "^1.20",
  2472. "phpspec/prophecy-phpunit": "^2.3",
  2473. "phpunit/phpunit": "^9.6.11",
  2474. "symfony/form": "^6.4 || ^7.2",
  2475. "symfony/phpunit-bridge": "^7.2",
  2476. "symfony/property-access": "^6.4 || ^7.2",
  2477. "symfony/serializer": "^6.4 || ^7.2",
  2478. "symfony/twig-bundle": "^6.4 || ^7.2",
  2479. "symfony/validator": "^6.4 || ^7.2"
  2480. },
  2481. "suggest": {
  2482. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  2483. "symfony/form": "Add a data transformer",
  2484. "symfony/property-access": "Choose a path in the validation constraint",
  2485. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  2486. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  2487. "symfony/validator": "Add a validation constraint"
  2488. },
  2489. "type": "symfony-bundle",
  2490. "extra": {
  2491. "branch-alias": {
  2492. "dev-master": "3.10.x-dev"
  2493. }
  2494. },
  2495. "autoload": {
  2496. "psr-4": {
  2497. "Misd\\PhoneNumberBundle\\": "src/"
  2498. }
  2499. },
  2500. "notification-url": "https://packagist.org/downloads/",
  2501. "license": [
  2502. "MIT"
  2503. ],
  2504. "description": "Integrates libphonenumber into your Symfony application",
  2505. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  2506. "keywords": [
  2507. "bundle",
  2508. "libphonenumber",
  2509. "phone-number",
  2510. "phonenumber",
  2511. "telephone number"
  2512. ],
  2513. "support": {
  2514. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  2515. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v4.2.0"
  2516. },
  2517. "time": "2025-07-15T20:50:09+00:00"
  2518. },
  2519. {
  2520. "name": "phpdocumentor/reflection-common",
  2521. "version": "2.2.0",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2525. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2530. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": "^7.2 || ^8.0"
  2535. },
  2536. "type": "library",
  2537. "extra": {
  2538. "branch-alias": {
  2539. "dev-2.x": "2.x-dev"
  2540. }
  2541. },
  2542. "autoload": {
  2543. "psr-4": {
  2544. "phpDocumentor\\Reflection\\": "src/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Jaap van Otterdijk",
  2554. "email": "opensource@ijaap.nl"
  2555. }
  2556. ],
  2557. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2558. "homepage": "http://www.phpdoc.org",
  2559. "keywords": [
  2560. "FQSEN",
  2561. "phpDocumentor",
  2562. "phpdoc",
  2563. "reflection",
  2564. "static analysis"
  2565. ],
  2566. "support": {
  2567. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2568. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2569. },
  2570. "time": "2020-06-27T09:03:43+00:00"
  2571. },
  2572. {
  2573. "name": "phpdocumentor/reflection-docblock",
  2574. "version": "5.6.2",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2578. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  2583. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "doctrine/deprecations": "^1.1",
  2588. "ext-filter": "*",
  2589. "php": "^7.4 || ^8.0",
  2590. "phpdocumentor/reflection-common": "^2.2",
  2591. "phpdocumentor/type-resolver": "^1.7",
  2592. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2593. "webmozart/assert": "^1.9.1"
  2594. },
  2595. "require-dev": {
  2596. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2597. "phpstan/extension-installer": "^1.1",
  2598. "phpstan/phpstan": "^1.8",
  2599. "phpstan/phpstan-mockery": "^1.1",
  2600. "phpstan/phpstan-webmozart-assert": "^1.2",
  2601. "phpunit/phpunit": "^9.5",
  2602. "psalm/phar": "^5.26"
  2603. },
  2604. "type": "library",
  2605. "extra": {
  2606. "branch-alias": {
  2607. "dev-master": "5.x-dev"
  2608. }
  2609. },
  2610. "autoload": {
  2611. "psr-4": {
  2612. "phpDocumentor\\Reflection\\": "src"
  2613. }
  2614. },
  2615. "notification-url": "https://packagist.org/downloads/",
  2616. "license": [
  2617. "MIT"
  2618. ],
  2619. "authors": [
  2620. {
  2621. "name": "Mike van Riel",
  2622. "email": "me@mikevanriel.com"
  2623. },
  2624. {
  2625. "name": "Jaap van Otterdijk",
  2626. "email": "opensource@ijaap.nl"
  2627. }
  2628. ],
  2629. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2630. "support": {
  2631. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2632. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  2633. },
  2634. "time": "2025-04-13T19:20:35+00:00"
  2635. },
  2636. {
  2637. "name": "phpdocumentor/type-resolver",
  2638. "version": "1.10.0",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2642. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2647. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2648. "shasum": ""
  2649. },
  2650. "require": {
  2651. "doctrine/deprecations": "^1.0",
  2652. "php": "^7.3 || ^8.0",
  2653. "phpdocumentor/reflection-common": "^2.0",
  2654. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2655. },
  2656. "require-dev": {
  2657. "ext-tokenizer": "*",
  2658. "phpbench/phpbench": "^1.2",
  2659. "phpstan/extension-installer": "^1.1",
  2660. "phpstan/phpstan": "^1.8",
  2661. "phpstan/phpstan-phpunit": "^1.1",
  2662. "phpunit/phpunit": "^9.5",
  2663. "rector/rector": "^0.13.9",
  2664. "vimeo/psalm": "^4.25"
  2665. },
  2666. "type": "library",
  2667. "extra": {
  2668. "branch-alias": {
  2669. "dev-1.x": "1.x-dev"
  2670. }
  2671. },
  2672. "autoload": {
  2673. "psr-4": {
  2674. "phpDocumentor\\Reflection\\": "src"
  2675. }
  2676. },
  2677. "notification-url": "https://packagist.org/downloads/",
  2678. "license": [
  2679. "MIT"
  2680. ],
  2681. "authors": [
  2682. {
  2683. "name": "Mike van Riel",
  2684. "email": "me@mikevanriel.com"
  2685. }
  2686. ],
  2687. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2688. "support": {
  2689. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2690. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  2691. },
  2692. "time": "2024-11-09T15:12:26+00:00"
  2693. },
  2694. {
  2695. "name": "phpstan/phpdoc-parser",
  2696. "version": "2.2.0",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2700. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  2705. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "php": "^7.4 || ^8.0"
  2710. },
  2711. "require-dev": {
  2712. "doctrine/annotations": "^2.0",
  2713. "nikic/php-parser": "^5.3.0",
  2714. "php-parallel-lint/php-parallel-lint": "^1.2",
  2715. "phpstan/extension-installer": "^1.0",
  2716. "phpstan/phpstan": "^2.0",
  2717. "phpstan/phpstan-phpunit": "^2.0",
  2718. "phpstan/phpstan-strict-rules": "^2.0",
  2719. "phpunit/phpunit": "^9.6",
  2720. "symfony/process": "^5.2"
  2721. },
  2722. "type": "library",
  2723. "autoload": {
  2724. "psr-4": {
  2725. "PHPStan\\PhpDocParser\\": [
  2726. "src/"
  2727. ]
  2728. }
  2729. },
  2730. "notification-url": "https://packagist.org/downloads/",
  2731. "license": [
  2732. "MIT"
  2733. ],
  2734. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2735. "support": {
  2736. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2737. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  2738. },
  2739. "time": "2025-07-13T07:04:09+00:00"
  2740. },
  2741. {
  2742. "name": "psr/cache",
  2743. "version": "3.0.0",
  2744. "source": {
  2745. "type": "git",
  2746. "url": "https://github.com/php-fig/cache.git",
  2747. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2748. },
  2749. "dist": {
  2750. "type": "zip",
  2751. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2752. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2753. "shasum": ""
  2754. },
  2755. "require": {
  2756. "php": ">=8.0.0"
  2757. },
  2758. "type": "library",
  2759. "extra": {
  2760. "branch-alias": {
  2761. "dev-master": "1.0.x-dev"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "psr-4": {
  2766. "Psr\\Cache\\": "src/"
  2767. }
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "PHP-FIG",
  2776. "homepage": "https://www.php-fig.org/"
  2777. }
  2778. ],
  2779. "description": "Common interface for caching libraries",
  2780. "keywords": [
  2781. "cache",
  2782. "psr",
  2783. "psr-6"
  2784. ],
  2785. "support": {
  2786. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2787. },
  2788. "time": "2021-02-03T23:26:27+00:00"
  2789. },
  2790. {
  2791. "name": "psr/clock",
  2792. "version": "1.0.0",
  2793. "source": {
  2794. "type": "git",
  2795. "url": "https://github.com/php-fig/clock.git",
  2796. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2797. },
  2798. "dist": {
  2799. "type": "zip",
  2800. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2801. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2802. "shasum": ""
  2803. },
  2804. "require": {
  2805. "php": "^7.0 || ^8.0"
  2806. },
  2807. "type": "library",
  2808. "autoload": {
  2809. "psr-4": {
  2810. "Psr\\Clock\\": "src/"
  2811. }
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "PHP-FIG",
  2820. "homepage": "https://www.php-fig.org/"
  2821. }
  2822. ],
  2823. "description": "Common interface for reading the clock.",
  2824. "homepage": "https://github.com/php-fig/clock",
  2825. "keywords": [
  2826. "clock",
  2827. "now",
  2828. "psr",
  2829. "psr-20",
  2830. "time"
  2831. ],
  2832. "support": {
  2833. "issues": "https://github.com/php-fig/clock/issues",
  2834. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2835. },
  2836. "time": "2022-11-25T14:36:26+00:00"
  2837. },
  2838. {
  2839. "name": "psr/container",
  2840. "version": "2.0.2",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/php-fig/container.git",
  2844. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2849. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2850. "shasum": ""
  2851. },
  2852. "require": {
  2853. "php": ">=7.4.0"
  2854. },
  2855. "type": "library",
  2856. "extra": {
  2857. "branch-alias": {
  2858. "dev-master": "2.0.x-dev"
  2859. }
  2860. },
  2861. "autoload": {
  2862. "psr-4": {
  2863. "Psr\\Container\\": "src/"
  2864. }
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "MIT"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "PHP-FIG",
  2873. "homepage": "https://www.php-fig.org/"
  2874. }
  2875. ],
  2876. "description": "Common Container Interface (PHP FIG PSR-11)",
  2877. "homepage": "https://github.com/php-fig/container",
  2878. "keywords": [
  2879. "PSR-11",
  2880. "container",
  2881. "container-interface",
  2882. "container-interop",
  2883. "psr"
  2884. ],
  2885. "support": {
  2886. "issues": "https://github.com/php-fig/container/issues",
  2887. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2888. },
  2889. "time": "2021-11-05T16:47:00+00:00"
  2890. },
  2891. {
  2892. "name": "psr/event-dispatcher",
  2893. "version": "1.0.0",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/php-fig/event-dispatcher.git",
  2897. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2902. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "php": ">=7.2.0"
  2907. },
  2908. "type": "library",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-master": "1.0.x-dev"
  2912. }
  2913. },
  2914. "autoload": {
  2915. "psr-4": {
  2916. "Psr\\EventDispatcher\\": "src/"
  2917. }
  2918. },
  2919. "notification-url": "https://packagist.org/downloads/",
  2920. "license": [
  2921. "MIT"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "PHP-FIG",
  2926. "homepage": "http://www.php-fig.org/"
  2927. }
  2928. ],
  2929. "description": "Standard interfaces for event handling.",
  2930. "keywords": [
  2931. "events",
  2932. "psr",
  2933. "psr-14"
  2934. ],
  2935. "support": {
  2936. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2937. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2938. },
  2939. "time": "2019-01-08T18:20:26+00:00"
  2940. },
  2941. {
  2942. "name": "psr/http-client",
  2943. "version": "1.0.3",
  2944. "source": {
  2945. "type": "git",
  2946. "url": "https://github.com/php-fig/http-client.git",
  2947. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2948. },
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2952. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2953. "shasum": ""
  2954. },
  2955. "require": {
  2956. "php": "^7.0 || ^8.0",
  2957. "psr/http-message": "^1.0 || ^2.0"
  2958. },
  2959. "type": "library",
  2960. "extra": {
  2961. "branch-alias": {
  2962. "dev-master": "1.0.x-dev"
  2963. }
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Psr\\Http\\Client\\": "src/"
  2968. }
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "PHP-FIG",
  2977. "homepage": "https://www.php-fig.org/"
  2978. }
  2979. ],
  2980. "description": "Common interface for HTTP clients",
  2981. "homepage": "https://github.com/php-fig/http-client",
  2982. "keywords": [
  2983. "http",
  2984. "http-client",
  2985. "psr",
  2986. "psr-18"
  2987. ],
  2988. "support": {
  2989. "source": "https://github.com/php-fig/http-client"
  2990. },
  2991. "time": "2023-09-23T14:17:50+00:00"
  2992. },
  2993. {
  2994. "name": "psr/http-factory",
  2995. "version": "1.1.0",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://github.com/php-fig/http-factory.git",
  2999. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3004. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3005. "shasum": ""
  3006. },
  3007. "require": {
  3008. "php": ">=7.1",
  3009. "psr/http-message": "^1.0 || ^2.0"
  3010. },
  3011. "type": "library",
  3012. "extra": {
  3013. "branch-alias": {
  3014. "dev-master": "1.0.x-dev"
  3015. }
  3016. },
  3017. "autoload": {
  3018. "psr-4": {
  3019. "Psr\\Http\\Message\\": "src/"
  3020. }
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "PHP-FIG",
  3029. "homepage": "https://www.php-fig.org/"
  3030. }
  3031. ],
  3032. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3033. "keywords": [
  3034. "factory",
  3035. "http",
  3036. "message",
  3037. "psr",
  3038. "psr-17",
  3039. "psr-7",
  3040. "request",
  3041. "response"
  3042. ],
  3043. "support": {
  3044. "source": "https://github.com/php-fig/http-factory"
  3045. },
  3046. "time": "2024-04-15T12:06:14+00:00"
  3047. },
  3048. {
  3049. "name": "psr/http-message",
  3050. "version": "2.0",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://github.com/php-fig/http-message.git",
  3054. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3059. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "php": "^7.2 || ^8.0"
  3064. },
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-master": "2.0.x-dev"
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Psr\\Http\\Message\\": "src/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "PHP-FIG",
  3083. "homepage": "https://www.php-fig.org/"
  3084. }
  3085. ],
  3086. "description": "Common interface for HTTP messages",
  3087. "homepage": "https://github.com/php-fig/http-message",
  3088. "keywords": [
  3089. "http",
  3090. "http-message",
  3091. "psr",
  3092. "psr-7",
  3093. "request",
  3094. "response"
  3095. ],
  3096. "support": {
  3097. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3098. },
  3099. "time": "2023-04-04T09:54:51+00:00"
  3100. },
  3101. {
  3102. "name": "psr/link",
  3103. "version": "2.0.1",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/php-fig/link.git",
  3107. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  3112. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=8.0.0"
  3117. },
  3118. "suggest": {
  3119. "fig/link-util": "Provides some useful PSR-13 utilities"
  3120. },
  3121. "type": "library",
  3122. "extra": {
  3123. "branch-alias": {
  3124. "dev-master": "2.0.x-dev"
  3125. }
  3126. },
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Psr\\Link\\": "src/"
  3130. }
  3131. },
  3132. "notification-url": "https://packagist.org/downloads/",
  3133. "license": [
  3134. "MIT"
  3135. ],
  3136. "authors": [
  3137. {
  3138. "name": "PHP-FIG",
  3139. "homepage": "http://www.php-fig.org/"
  3140. }
  3141. ],
  3142. "description": "Common interfaces for HTTP links",
  3143. "homepage": "https://github.com/php-fig/link",
  3144. "keywords": [
  3145. "http",
  3146. "http-link",
  3147. "link",
  3148. "psr",
  3149. "psr-13",
  3150. "rest"
  3151. ],
  3152. "support": {
  3153. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3154. },
  3155. "time": "2021-03-11T23:00:27+00:00"
  3156. },
  3157. {
  3158. "name": "psr/log",
  3159. "version": "3.0.2",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/php-fig/log.git",
  3163. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3168. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "php": ">=8.0.0"
  3173. },
  3174. "type": "library",
  3175. "extra": {
  3176. "branch-alias": {
  3177. "dev-master": "3.x-dev"
  3178. }
  3179. },
  3180. "autoload": {
  3181. "psr-4": {
  3182. "Psr\\Log\\": "src"
  3183. }
  3184. },
  3185. "notification-url": "https://packagist.org/downloads/",
  3186. "license": [
  3187. "MIT"
  3188. ],
  3189. "authors": [
  3190. {
  3191. "name": "PHP-FIG",
  3192. "homepage": "https://www.php-fig.org/"
  3193. }
  3194. ],
  3195. "description": "Common interface for logging libraries",
  3196. "homepage": "https://github.com/php-fig/log",
  3197. "keywords": [
  3198. "log",
  3199. "psr",
  3200. "psr-3"
  3201. ],
  3202. "support": {
  3203. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3204. },
  3205. "time": "2024-09-11T13:17:53+00:00"
  3206. },
  3207. {
  3208. "name": "ralouphie/getallheaders",
  3209. "version": "3.0.3",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/ralouphie/getallheaders.git",
  3213. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3218. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "php": ">=5.6"
  3223. },
  3224. "require-dev": {
  3225. "php-coveralls/php-coveralls": "^2.1",
  3226. "phpunit/phpunit": "^5 || ^6.5"
  3227. },
  3228. "type": "library",
  3229. "autoload": {
  3230. "files": [
  3231. "src/getallheaders.php"
  3232. ]
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Ralph Khattar",
  3241. "email": "ralph.khattar@gmail.com"
  3242. }
  3243. ],
  3244. "description": "A polyfill for getallheaders.",
  3245. "support": {
  3246. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3247. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3248. },
  3249. "time": "2019-03-08T08:55:37+00:00"
  3250. },
  3251. {
  3252. "name": "stevenmaguire/oauth2-keycloak",
  3253. "version": "5.1.0",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/stevenmaguire/oauth2-keycloak.git",
  3257. "reference": "1b690b7377dfe7a23e1590373f37e12cf40a6d75"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/stevenmaguire/oauth2-keycloak/zipball/1b690b7377dfe7a23e1590373f37e12cf40a6d75",
  3262. "reference": "1b690b7377dfe7a23e1590373f37e12cf40a6d75",
  3263. "shasum": ""
  3264. },
  3265. "require": {
  3266. "firebase/php-jwt": "^6.0",
  3267. "league/oauth2-client": "^2.0",
  3268. "php": "~7.2 || ~8.0"
  3269. },
  3270. "require-dev": {
  3271. "mockery/mockery": "~1.5.0",
  3272. "phpunit/phpunit": "~9.6.4",
  3273. "squizlabs/php_codesniffer": "~3.7.0"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "branch-alias": {
  3278. "dev-master": "1.0.x-dev"
  3279. }
  3280. },
  3281. "autoload": {
  3282. "psr-4": {
  3283. "Stevenmaguire\\OAuth2\\Client\\": "src/"
  3284. }
  3285. },
  3286. "notification-url": "https://packagist.org/downloads/",
  3287. "license": [
  3288. "MIT"
  3289. ],
  3290. "authors": [
  3291. {
  3292. "name": "Steven Maguire",
  3293. "email": "stevenmaguire@gmail.com",
  3294. "homepage": "https://github.com/stevenmaguire"
  3295. }
  3296. ],
  3297. "description": "Keycloak OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
  3298. "keywords": [
  3299. "authorisation",
  3300. "authorization",
  3301. "client",
  3302. "keycloak",
  3303. "oauth",
  3304. "oauth2"
  3305. ],
  3306. "support": {
  3307. "issues": "https://github.com/stevenmaguire/oauth2-keycloak/issues",
  3308. "source": "https://github.com/stevenmaguire/oauth2-keycloak/tree/5.1.0"
  3309. },
  3310. "time": "2023-10-24T06:10:44+00:00"
  3311. },
  3312. {
  3313. "name": "symfony/asset",
  3314. "version": "v7.3.0",
  3315. "source": {
  3316. "type": "git",
  3317. "url": "https://github.com/symfony/asset.git",
  3318. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b"
  3319. },
  3320. "dist": {
  3321. "type": "zip",
  3322. "url": "https://api.github.com/repos/symfony/asset/zipball/56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  3323. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  3324. "shasum": ""
  3325. },
  3326. "require": {
  3327. "php": ">=8.2"
  3328. },
  3329. "conflict": {
  3330. "symfony/http-foundation": "<6.4"
  3331. },
  3332. "require-dev": {
  3333. "symfony/http-client": "^6.4|^7.0",
  3334. "symfony/http-foundation": "^6.4|^7.0",
  3335. "symfony/http-kernel": "^6.4|^7.0"
  3336. },
  3337. "type": "library",
  3338. "autoload": {
  3339. "psr-4": {
  3340. "Symfony\\Component\\Asset\\": ""
  3341. },
  3342. "exclude-from-classmap": [
  3343. "/Tests/"
  3344. ]
  3345. },
  3346. "notification-url": "https://packagist.org/downloads/",
  3347. "license": [
  3348. "MIT"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "Fabien Potencier",
  3353. "email": "fabien@symfony.com"
  3354. },
  3355. {
  3356. "name": "Symfony Community",
  3357. "homepage": "https://symfony.com/contributors"
  3358. }
  3359. ],
  3360. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3361. "homepage": "https://symfony.com",
  3362. "support": {
  3363. "source": "https://github.com/symfony/asset/tree/v7.3.0"
  3364. },
  3365. "funding": [
  3366. {
  3367. "url": "https://symfony.com/sponsor",
  3368. "type": "custom"
  3369. },
  3370. {
  3371. "url": "https://github.com/fabpot",
  3372. "type": "github"
  3373. },
  3374. {
  3375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3376. "type": "tidelift"
  3377. }
  3378. ],
  3379. "time": "2025-03-05T10:15:41+00:00"
  3380. },
  3381. {
  3382. "name": "symfony/asset-mapper",
  3383. "version": "v7.3.0",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://github.com/symfony/asset-mapper.git",
  3387. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/6516f38868b75c4902ea72a9fa44967628375ae7",
  3392. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "composer/semver": "^3.0",
  3397. "php": ">=8.2",
  3398. "symfony/deprecation-contracts": "^2.1|^3",
  3399. "symfony/filesystem": "^7.1",
  3400. "symfony/http-client": "^6.4|^7.0"
  3401. },
  3402. "conflict": {
  3403. "symfony/framework-bundle": "<6.4"
  3404. },
  3405. "require-dev": {
  3406. "symfony/asset": "^6.4|^7.0",
  3407. "symfony/browser-kit": "^6.4|^7.0",
  3408. "symfony/console": "^6.4|^7.0",
  3409. "symfony/event-dispatcher-contracts": "^3.0",
  3410. "symfony/finder": "^6.4|^7.0",
  3411. "symfony/framework-bundle": "^6.4|^7.0",
  3412. "symfony/http-foundation": "^6.4|^7.0",
  3413. "symfony/http-kernel": "^6.4|^7.0",
  3414. "symfony/process": "^6.4|^7.0",
  3415. "symfony/web-link": "^6.4|^7.0"
  3416. },
  3417. "type": "library",
  3418. "autoload": {
  3419. "psr-4": {
  3420. "Symfony\\Component\\AssetMapper\\": ""
  3421. },
  3422. "exclude-from-classmap": [
  3423. "/Tests/"
  3424. ]
  3425. },
  3426. "notification-url": "https://packagist.org/downloads/",
  3427. "license": [
  3428. "MIT"
  3429. ],
  3430. "authors": [
  3431. {
  3432. "name": "Fabien Potencier",
  3433. "email": "fabien@symfony.com"
  3434. },
  3435. {
  3436. "name": "Symfony Community",
  3437. "homepage": "https://symfony.com/contributors"
  3438. }
  3439. ],
  3440. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3441. "homepage": "https://symfony.com",
  3442. "support": {
  3443. "source": "https://github.com/symfony/asset-mapper/tree/v7.3.0"
  3444. },
  3445. "funding": [
  3446. {
  3447. "url": "https://symfony.com/sponsor",
  3448. "type": "custom"
  3449. },
  3450. {
  3451. "url": "https://github.com/fabpot",
  3452. "type": "github"
  3453. },
  3454. {
  3455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3456. "type": "tidelift"
  3457. }
  3458. ],
  3459. "time": "2025-05-24T14:05:12+00:00"
  3460. },
  3461. {
  3462. "name": "symfony/cache",
  3463. "version": "v7.3.1",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/symfony/cache.git",
  3467. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  3472. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": ">=8.2",
  3477. "psr/cache": "^2.0|^3.0",
  3478. "psr/log": "^1.1|^2|^3",
  3479. "symfony/cache-contracts": "^3.6",
  3480. "symfony/deprecation-contracts": "^2.5|^3.0",
  3481. "symfony/service-contracts": "^2.5|^3",
  3482. "symfony/var-exporter": "^6.4|^7.0"
  3483. },
  3484. "conflict": {
  3485. "doctrine/dbal": "<3.6",
  3486. "symfony/dependency-injection": "<6.4",
  3487. "symfony/http-kernel": "<6.4",
  3488. "symfony/var-dumper": "<6.4"
  3489. },
  3490. "provide": {
  3491. "psr/cache-implementation": "2.0|3.0",
  3492. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3493. "symfony/cache-implementation": "1.1|2.0|3.0"
  3494. },
  3495. "require-dev": {
  3496. "cache/integration-tests": "dev-master",
  3497. "doctrine/dbal": "^3.6|^4",
  3498. "predis/predis": "^1.1|^2.0",
  3499. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3500. "symfony/clock": "^6.4|^7.0",
  3501. "symfony/config": "^6.4|^7.0",
  3502. "symfony/dependency-injection": "^6.4|^7.0",
  3503. "symfony/filesystem": "^6.4|^7.0",
  3504. "symfony/http-kernel": "^6.4|^7.0",
  3505. "symfony/messenger": "^6.4|^7.0",
  3506. "symfony/var-dumper": "^6.4|^7.0"
  3507. },
  3508. "type": "library",
  3509. "autoload": {
  3510. "psr-4": {
  3511. "Symfony\\Component\\Cache\\": ""
  3512. },
  3513. "classmap": [
  3514. "Traits/ValueWrapper.php"
  3515. ],
  3516. "exclude-from-classmap": [
  3517. "/Tests/"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "Nicolas Grekas",
  3527. "email": "p@tchwork.com"
  3528. },
  3529. {
  3530. "name": "Symfony Community",
  3531. "homepage": "https://symfony.com/contributors"
  3532. }
  3533. ],
  3534. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3535. "homepage": "https://symfony.com",
  3536. "keywords": [
  3537. "caching",
  3538. "psr6"
  3539. ],
  3540. "support": {
  3541. "source": "https://github.com/symfony/cache/tree/v7.3.1"
  3542. },
  3543. "funding": [
  3544. {
  3545. "url": "https://symfony.com/sponsor",
  3546. "type": "custom"
  3547. },
  3548. {
  3549. "url": "https://github.com/fabpot",
  3550. "type": "github"
  3551. },
  3552. {
  3553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3554. "type": "tidelift"
  3555. }
  3556. ],
  3557. "time": "2025-06-27T19:55:54+00:00"
  3558. },
  3559. {
  3560. "name": "symfony/cache-contracts",
  3561. "version": "v3.6.0",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://github.com/symfony/cache-contracts.git",
  3565. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  3566. },
  3567. "dist": {
  3568. "type": "zip",
  3569. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3570. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3571. "shasum": ""
  3572. },
  3573. "require": {
  3574. "php": ">=8.1",
  3575. "psr/cache": "^3.0"
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "thanks": {
  3580. "url": "https://github.com/symfony/contracts",
  3581. "name": "symfony/contracts"
  3582. },
  3583. "branch-alias": {
  3584. "dev-main": "3.6-dev"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Symfony\\Contracts\\Cache\\": ""
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Nicolas Grekas",
  3599. "email": "p@tchwork.com"
  3600. },
  3601. {
  3602. "name": "Symfony Community",
  3603. "homepage": "https://symfony.com/contributors"
  3604. }
  3605. ],
  3606. "description": "Generic abstractions related to caching",
  3607. "homepage": "https://symfony.com",
  3608. "keywords": [
  3609. "abstractions",
  3610. "contracts",
  3611. "decoupling",
  3612. "interfaces",
  3613. "interoperability",
  3614. "standards"
  3615. ],
  3616. "support": {
  3617. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://symfony.com/sponsor",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://github.com/fabpot",
  3626. "type": "github"
  3627. },
  3628. {
  3629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3630. "type": "tidelift"
  3631. }
  3632. ],
  3633. "time": "2025-03-13T15:25:07+00:00"
  3634. },
  3635. {
  3636. "name": "symfony/clock",
  3637. "version": "v7.3.0",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/symfony/clock.git",
  3641. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  3646. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  3647. "shasum": ""
  3648. },
  3649. "require": {
  3650. "php": ">=8.2",
  3651. "psr/clock": "^1.0",
  3652. "symfony/polyfill-php83": "^1.28"
  3653. },
  3654. "provide": {
  3655. "psr/clock-implementation": "1.0"
  3656. },
  3657. "type": "library",
  3658. "autoload": {
  3659. "files": [
  3660. "Resources/now.php"
  3661. ],
  3662. "psr-4": {
  3663. "Symfony\\Component\\Clock\\": ""
  3664. },
  3665. "exclude-from-classmap": [
  3666. "/Tests/"
  3667. ]
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Nicolas Grekas",
  3676. "email": "p@tchwork.com"
  3677. },
  3678. {
  3679. "name": "Symfony Community",
  3680. "homepage": "https://symfony.com/contributors"
  3681. }
  3682. ],
  3683. "description": "Decouples applications from the system clock",
  3684. "homepage": "https://symfony.com",
  3685. "keywords": [
  3686. "clock",
  3687. "psr20",
  3688. "time"
  3689. ],
  3690. "support": {
  3691. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  3692. },
  3693. "funding": [
  3694. {
  3695. "url": "https://symfony.com/sponsor",
  3696. "type": "custom"
  3697. },
  3698. {
  3699. "url": "https://github.com/fabpot",
  3700. "type": "github"
  3701. },
  3702. {
  3703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3704. "type": "tidelift"
  3705. }
  3706. ],
  3707. "time": "2024-09-25T14:21:43+00:00"
  3708. },
  3709. {
  3710. "name": "symfony/config",
  3711. "version": "v7.3.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://github.com/symfony/config.git",
  3715. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://api.github.com/repos/symfony/config/zipball/ba62ae565f1327c2f6366726312ed828c85853bc",
  3720. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc",
  3721. "shasum": ""
  3722. },
  3723. "require": {
  3724. "php": ">=8.2",
  3725. "symfony/deprecation-contracts": "^2.5|^3",
  3726. "symfony/filesystem": "^7.1",
  3727. "symfony/polyfill-ctype": "~1.8"
  3728. },
  3729. "conflict": {
  3730. "symfony/finder": "<6.4",
  3731. "symfony/service-contracts": "<2.5"
  3732. },
  3733. "require-dev": {
  3734. "symfony/event-dispatcher": "^6.4|^7.0",
  3735. "symfony/finder": "^6.4|^7.0",
  3736. "symfony/messenger": "^6.4|^7.0",
  3737. "symfony/service-contracts": "^2.5|^3",
  3738. "symfony/yaml": "^6.4|^7.0"
  3739. },
  3740. "type": "library",
  3741. "autoload": {
  3742. "psr-4": {
  3743. "Symfony\\Component\\Config\\": ""
  3744. },
  3745. "exclude-from-classmap": [
  3746. "/Tests/"
  3747. ]
  3748. },
  3749. "notification-url": "https://packagist.org/downloads/",
  3750. "license": [
  3751. "MIT"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "Fabien Potencier",
  3756. "email": "fabien@symfony.com"
  3757. },
  3758. {
  3759. "name": "Symfony Community",
  3760. "homepage": "https://symfony.com/contributors"
  3761. }
  3762. ],
  3763. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3764. "homepage": "https://symfony.com",
  3765. "support": {
  3766. "source": "https://github.com/symfony/config/tree/v7.3.0"
  3767. },
  3768. "funding": [
  3769. {
  3770. "url": "https://symfony.com/sponsor",
  3771. "type": "custom"
  3772. },
  3773. {
  3774. "url": "https://github.com/fabpot",
  3775. "type": "github"
  3776. },
  3777. {
  3778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3779. "type": "tidelift"
  3780. }
  3781. ],
  3782. "time": "2025-05-15T09:04:05+00:00"
  3783. },
  3784. {
  3785. "name": "symfony/console",
  3786. "version": "v7.3.1",
  3787. "source": {
  3788. "type": "git",
  3789. "url": "https://github.com/symfony/console.git",
  3790. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  3791. },
  3792. "dist": {
  3793. "type": "zip",
  3794. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  3795. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  3796. "shasum": ""
  3797. },
  3798. "require": {
  3799. "php": ">=8.2",
  3800. "symfony/deprecation-contracts": "^2.5|^3",
  3801. "symfony/polyfill-mbstring": "~1.0",
  3802. "symfony/service-contracts": "^2.5|^3",
  3803. "symfony/string": "^7.2"
  3804. },
  3805. "conflict": {
  3806. "symfony/dependency-injection": "<6.4",
  3807. "symfony/dotenv": "<6.4",
  3808. "symfony/event-dispatcher": "<6.4",
  3809. "symfony/lock": "<6.4",
  3810. "symfony/process": "<6.4"
  3811. },
  3812. "provide": {
  3813. "psr/log-implementation": "1.0|2.0|3.0"
  3814. },
  3815. "require-dev": {
  3816. "psr/log": "^1|^2|^3",
  3817. "symfony/config": "^6.4|^7.0",
  3818. "symfony/dependency-injection": "^6.4|^7.0",
  3819. "symfony/event-dispatcher": "^6.4|^7.0",
  3820. "symfony/http-foundation": "^6.4|^7.0",
  3821. "symfony/http-kernel": "^6.4|^7.0",
  3822. "symfony/lock": "^6.4|^7.0",
  3823. "symfony/messenger": "^6.4|^7.0",
  3824. "symfony/process": "^6.4|^7.0",
  3825. "symfony/stopwatch": "^6.4|^7.0",
  3826. "symfony/var-dumper": "^6.4|^7.0"
  3827. },
  3828. "type": "library",
  3829. "autoload": {
  3830. "psr-4": {
  3831. "Symfony\\Component\\Console\\": ""
  3832. },
  3833. "exclude-from-classmap": [
  3834. "/Tests/"
  3835. ]
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "Fabien Potencier",
  3844. "email": "fabien@symfony.com"
  3845. },
  3846. {
  3847. "name": "Symfony Community",
  3848. "homepage": "https://symfony.com/contributors"
  3849. }
  3850. ],
  3851. "description": "Eases the creation of beautiful and testable command line interfaces",
  3852. "homepage": "https://symfony.com",
  3853. "keywords": [
  3854. "cli",
  3855. "command-line",
  3856. "console",
  3857. "terminal"
  3858. ],
  3859. "support": {
  3860. "source": "https://github.com/symfony/console/tree/v7.3.1"
  3861. },
  3862. "funding": [
  3863. {
  3864. "url": "https://symfony.com/sponsor",
  3865. "type": "custom"
  3866. },
  3867. {
  3868. "url": "https://github.com/fabpot",
  3869. "type": "github"
  3870. },
  3871. {
  3872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3873. "type": "tidelift"
  3874. }
  3875. ],
  3876. "time": "2025-06-27T19:55:54+00:00"
  3877. },
  3878. {
  3879. "name": "symfony/dependency-injection",
  3880. "version": "v7.3.1",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/symfony/dependency-injection.git",
  3884. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  3889. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "php": ">=8.2",
  3894. "psr/container": "^1.1|^2.0",
  3895. "symfony/deprecation-contracts": "^2.5|^3",
  3896. "symfony/service-contracts": "^3.5",
  3897. "symfony/var-exporter": "^6.4.20|^7.2.5"
  3898. },
  3899. "conflict": {
  3900. "ext-psr": "<1.1|>=2",
  3901. "symfony/config": "<6.4",
  3902. "symfony/finder": "<6.4",
  3903. "symfony/yaml": "<6.4"
  3904. },
  3905. "provide": {
  3906. "psr/container-implementation": "1.1|2.0",
  3907. "symfony/service-implementation": "1.1|2.0|3.0"
  3908. },
  3909. "require-dev": {
  3910. "symfony/config": "^6.4|^7.0",
  3911. "symfony/expression-language": "^6.4|^7.0",
  3912. "symfony/yaml": "^6.4|^7.0"
  3913. },
  3914. "type": "library",
  3915. "autoload": {
  3916. "psr-4": {
  3917. "Symfony\\Component\\DependencyInjection\\": ""
  3918. },
  3919. "exclude-from-classmap": [
  3920. "/Tests/"
  3921. ]
  3922. },
  3923. "notification-url": "https://packagist.org/downloads/",
  3924. "license": [
  3925. "MIT"
  3926. ],
  3927. "authors": [
  3928. {
  3929. "name": "Fabien Potencier",
  3930. "email": "fabien@symfony.com"
  3931. },
  3932. {
  3933. "name": "Symfony Community",
  3934. "homepage": "https://symfony.com/contributors"
  3935. }
  3936. ],
  3937. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3938. "homepage": "https://symfony.com",
  3939. "support": {
  3940. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.1"
  3941. },
  3942. "funding": [
  3943. {
  3944. "url": "https://symfony.com/sponsor",
  3945. "type": "custom"
  3946. },
  3947. {
  3948. "url": "https://github.com/fabpot",
  3949. "type": "github"
  3950. },
  3951. {
  3952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3953. "type": "tidelift"
  3954. }
  3955. ],
  3956. "time": "2025-06-24T04:04:43+00:00"
  3957. },
  3958. {
  3959. "name": "symfony/deprecation-contracts",
  3960. "version": "v3.6.0",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/symfony/deprecation-contracts.git",
  3964. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3969. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "php": ">=8.1"
  3974. },
  3975. "type": "library",
  3976. "extra": {
  3977. "thanks": {
  3978. "url": "https://github.com/symfony/contracts",
  3979. "name": "symfony/contracts"
  3980. },
  3981. "branch-alias": {
  3982. "dev-main": "3.6-dev"
  3983. }
  3984. },
  3985. "autoload": {
  3986. "files": [
  3987. "function.php"
  3988. ]
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "MIT"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "Nicolas Grekas",
  3997. "email": "p@tchwork.com"
  3998. },
  3999. {
  4000. "name": "Symfony Community",
  4001. "homepage": "https://symfony.com/contributors"
  4002. }
  4003. ],
  4004. "description": "A generic function and convention to trigger deprecation notices",
  4005. "homepage": "https://symfony.com",
  4006. "support": {
  4007. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  4008. },
  4009. "funding": [
  4010. {
  4011. "url": "https://symfony.com/sponsor",
  4012. "type": "custom"
  4013. },
  4014. {
  4015. "url": "https://github.com/fabpot",
  4016. "type": "github"
  4017. },
  4018. {
  4019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4020. "type": "tidelift"
  4021. }
  4022. ],
  4023. "time": "2024-09-25T14:21:43+00:00"
  4024. },
  4025. {
  4026. "name": "symfony/doctrine-bridge",
  4027. "version": "v7.3.1",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/symfony/doctrine-bridge.git",
  4031. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6c0acb248c46452ae2c15752dc71e72f3335403f",
  4036. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f",
  4037. "shasum": ""
  4038. },
  4039. "require": {
  4040. "doctrine/event-manager": "^2",
  4041. "doctrine/persistence": "^3.1|^4",
  4042. "php": ">=8.2",
  4043. "symfony/deprecation-contracts": "^2.5|^3",
  4044. "symfony/polyfill-ctype": "~1.8",
  4045. "symfony/polyfill-mbstring": "~1.0",
  4046. "symfony/service-contracts": "^2.5|^3"
  4047. },
  4048. "conflict": {
  4049. "doctrine/collections": "<1.8",
  4050. "doctrine/dbal": "<3.6",
  4051. "doctrine/lexer": "<1.1",
  4052. "doctrine/orm": "<2.15",
  4053. "symfony/cache": "<6.4",
  4054. "symfony/dependency-injection": "<6.4",
  4055. "symfony/form": "<6.4.6|>=7,<7.0.6",
  4056. "symfony/http-foundation": "<6.4",
  4057. "symfony/http-kernel": "<6.4",
  4058. "symfony/lock": "<6.4",
  4059. "symfony/messenger": "<6.4",
  4060. "symfony/property-info": "<6.4",
  4061. "symfony/security-bundle": "<6.4",
  4062. "symfony/security-core": "<6.4",
  4063. "symfony/validator": "<6.4"
  4064. },
  4065. "require-dev": {
  4066. "doctrine/collections": "^1.8|^2.0",
  4067. "doctrine/data-fixtures": "^1.1|^2",
  4068. "doctrine/dbal": "^3.6|^4",
  4069. "doctrine/orm": "^2.15|^3",
  4070. "psr/log": "^1|^2|^3",
  4071. "symfony/cache": "^6.4|^7.0",
  4072. "symfony/config": "^6.4|^7.0",
  4073. "symfony/dependency-injection": "^6.4|^7.0",
  4074. "symfony/doctrine-messenger": "^6.4|^7.0",
  4075. "symfony/expression-language": "^6.4|^7.0",
  4076. "symfony/form": "^6.4.6|^7.0.6",
  4077. "symfony/http-kernel": "^6.4|^7.0",
  4078. "symfony/lock": "^6.4|^7.0",
  4079. "symfony/messenger": "^6.4|^7.0",
  4080. "symfony/property-access": "^6.4|^7.0",
  4081. "symfony/property-info": "^6.4|^7.0",
  4082. "symfony/security-core": "^6.4|^7.0",
  4083. "symfony/stopwatch": "^6.4|^7.0",
  4084. "symfony/translation": "^6.4|^7.0",
  4085. "symfony/type-info": "^7.1",
  4086. "symfony/uid": "^6.4|^7.0",
  4087. "symfony/validator": "^6.4|^7.0",
  4088. "symfony/var-dumper": "^6.4|^7.0"
  4089. },
  4090. "type": "symfony-bridge",
  4091. "autoload": {
  4092. "psr-4": {
  4093. "Symfony\\Bridge\\Doctrine\\": ""
  4094. },
  4095. "exclude-from-classmap": [
  4096. "/Tests/"
  4097. ]
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "MIT"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Fabien Potencier",
  4106. "email": "fabien@symfony.com"
  4107. },
  4108. {
  4109. "name": "Symfony Community",
  4110. "homepage": "https://symfony.com/contributors"
  4111. }
  4112. ],
  4113. "description": "Provides integration for Doctrine with various Symfony components",
  4114. "homepage": "https://symfony.com",
  4115. "support": {
  4116. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.3.1"
  4117. },
  4118. "funding": [
  4119. {
  4120. "url": "https://symfony.com/sponsor",
  4121. "type": "custom"
  4122. },
  4123. {
  4124. "url": "https://github.com/fabpot",
  4125. "type": "github"
  4126. },
  4127. {
  4128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4129. "type": "tidelift"
  4130. }
  4131. ],
  4132. "time": "2025-06-26T13:02:59+00:00"
  4133. },
  4134. {
  4135. "name": "symfony/doctrine-messenger",
  4136. "version": "v7.3.0",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://github.com/symfony/doctrine-messenger.git",
  4140. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/099d9cd03f889c31c90d406fed07f25dc3732487",
  4145. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487",
  4146. "shasum": ""
  4147. },
  4148. "require": {
  4149. "doctrine/dbal": "^3.6|^4",
  4150. "php": ">=8.2",
  4151. "symfony/messenger": "^7.2",
  4152. "symfony/service-contracts": "^2.5|^3"
  4153. },
  4154. "conflict": {
  4155. "doctrine/persistence": "<1.3"
  4156. },
  4157. "require-dev": {
  4158. "doctrine/persistence": "^1.3|^2|^3",
  4159. "symfony/property-access": "^6.4|^7.0",
  4160. "symfony/serializer": "^6.4|^7.0"
  4161. },
  4162. "type": "symfony-messenger-bridge",
  4163. "autoload": {
  4164. "psr-4": {
  4165. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4166. },
  4167. "exclude-from-classmap": [
  4168. "/Tests/"
  4169. ]
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Fabien Potencier",
  4178. "email": "fabien@symfony.com"
  4179. },
  4180. {
  4181. "name": "Symfony Community",
  4182. "homepage": "https://symfony.com/contributors"
  4183. }
  4184. ],
  4185. "description": "Symfony Doctrine Messenger Bridge",
  4186. "homepage": "https://symfony.com",
  4187. "support": {
  4188. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.3.0"
  4189. },
  4190. "funding": [
  4191. {
  4192. "url": "https://symfony.com/sponsor",
  4193. "type": "custom"
  4194. },
  4195. {
  4196. "url": "https://github.com/fabpot",
  4197. "type": "github"
  4198. },
  4199. {
  4200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4201. "type": "tidelift"
  4202. }
  4203. ],
  4204. "time": "2025-03-26T11:30:13+00:00"
  4205. },
  4206. {
  4207. "name": "symfony/dotenv",
  4208. "version": "v7.3.0",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://github.com/symfony/dotenv.git",
  4212. "reference": "28347a897771d0c28e99b75166dd2689099f3045"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://api.github.com/repos/symfony/dotenv/zipball/28347a897771d0c28e99b75166dd2689099f3045",
  4217. "reference": "28347a897771d0c28e99b75166dd2689099f3045",
  4218. "shasum": ""
  4219. },
  4220. "require": {
  4221. "php": ">=8.2"
  4222. },
  4223. "conflict": {
  4224. "symfony/console": "<6.4",
  4225. "symfony/process": "<6.4"
  4226. },
  4227. "require-dev": {
  4228. "symfony/console": "^6.4|^7.0",
  4229. "symfony/process": "^6.4|^7.0"
  4230. },
  4231. "type": "library",
  4232. "autoload": {
  4233. "psr-4": {
  4234. "Symfony\\Component\\Dotenv\\": ""
  4235. },
  4236. "exclude-from-classmap": [
  4237. "/Tests/"
  4238. ]
  4239. },
  4240. "notification-url": "https://packagist.org/downloads/",
  4241. "license": [
  4242. "MIT"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "Fabien Potencier",
  4247. "email": "fabien@symfony.com"
  4248. },
  4249. {
  4250. "name": "Symfony Community",
  4251. "homepage": "https://symfony.com/contributors"
  4252. }
  4253. ],
  4254. "description": "Registers environment variables from a .env file",
  4255. "homepage": "https://symfony.com",
  4256. "keywords": [
  4257. "dotenv",
  4258. "env",
  4259. "environment"
  4260. ],
  4261. "support": {
  4262. "source": "https://github.com/symfony/dotenv/tree/v7.3.0"
  4263. },
  4264. "funding": [
  4265. {
  4266. "url": "https://symfony.com/sponsor",
  4267. "type": "custom"
  4268. },
  4269. {
  4270. "url": "https://github.com/fabpot",
  4271. "type": "github"
  4272. },
  4273. {
  4274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4275. "type": "tidelift"
  4276. }
  4277. ],
  4278. "time": "2024-11-27T11:18:42+00:00"
  4279. },
  4280. {
  4281. "name": "symfony/error-handler",
  4282. "version": "v7.3.1",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/symfony/error-handler.git",
  4286. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  4291. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  4292. "shasum": ""
  4293. },
  4294. "require": {
  4295. "php": ">=8.2",
  4296. "psr/log": "^1|^2|^3",
  4297. "symfony/var-dumper": "^6.4|^7.0"
  4298. },
  4299. "conflict": {
  4300. "symfony/deprecation-contracts": "<2.5",
  4301. "symfony/http-kernel": "<6.4"
  4302. },
  4303. "require-dev": {
  4304. "symfony/console": "^6.4|^7.0",
  4305. "symfony/deprecation-contracts": "^2.5|^3",
  4306. "symfony/http-kernel": "^6.4|^7.0",
  4307. "symfony/serializer": "^6.4|^7.0",
  4308. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  4309. },
  4310. "bin": [
  4311. "Resources/bin/patch-type-declarations"
  4312. ],
  4313. "type": "library",
  4314. "autoload": {
  4315. "psr-4": {
  4316. "Symfony\\Component\\ErrorHandler\\": ""
  4317. },
  4318. "exclude-from-classmap": [
  4319. "/Tests/"
  4320. ]
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "Fabien Potencier",
  4329. "email": "fabien@symfony.com"
  4330. },
  4331. {
  4332. "name": "Symfony Community",
  4333. "homepage": "https://symfony.com/contributors"
  4334. }
  4335. ],
  4336. "description": "Provides tools to manage errors and ease debugging PHP code",
  4337. "homepage": "https://symfony.com",
  4338. "support": {
  4339. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  4340. },
  4341. "funding": [
  4342. {
  4343. "url": "https://symfony.com/sponsor",
  4344. "type": "custom"
  4345. },
  4346. {
  4347. "url": "https://github.com/fabpot",
  4348. "type": "github"
  4349. },
  4350. {
  4351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4352. "type": "tidelift"
  4353. }
  4354. ],
  4355. "time": "2025-06-13T07:48:40+00:00"
  4356. },
  4357. {
  4358. "name": "symfony/event-dispatcher",
  4359. "version": "v7.3.0",
  4360. "source": {
  4361. "type": "git",
  4362. "url": "https://github.com/symfony/event-dispatcher.git",
  4363. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  4364. },
  4365. "dist": {
  4366. "type": "zip",
  4367. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  4368. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  4369. "shasum": ""
  4370. },
  4371. "require": {
  4372. "php": ">=8.2",
  4373. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4374. },
  4375. "conflict": {
  4376. "symfony/dependency-injection": "<6.4",
  4377. "symfony/service-contracts": "<2.5"
  4378. },
  4379. "provide": {
  4380. "psr/event-dispatcher-implementation": "1.0",
  4381. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4382. },
  4383. "require-dev": {
  4384. "psr/log": "^1|^2|^3",
  4385. "symfony/config": "^6.4|^7.0",
  4386. "symfony/dependency-injection": "^6.4|^7.0",
  4387. "symfony/error-handler": "^6.4|^7.0",
  4388. "symfony/expression-language": "^6.4|^7.0",
  4389. "symfony/http-foundation": "^6.4|^7.0",
  4390. "symfony/service-contracts": "^2.5|^3",
  4391. "symfony/stopwatch": "^6.4|^7.0"
  4392. },
  4393. "type": "library",
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Symfony\\Component\\EventDispatcher\\": ""
  4397. },
  4398. "exclude-from-classmap": [
  4399. "/Tests/"
  4400. ]
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "MIT"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "Fabien Potencier",
  4409. "email": "fabien@symfony.com"
  4410. },
  4411. {
  4412. "name": "Symfony Community",
  4413. "homepage": "https://symfony.com/contributors"
  4414. }
  4415. ],
  4416. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4417. "homepage": "https://symfony.com",
  4418. "support": {
  4419. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  4420. },
  4421. "funding": [
  4422. {
  4423. "url": "https://symfony.com/sponsor",
  4424. "type": "custom"
  4425. },
  4426. {
  4427. "url": "https://github.com/fabpot",
  4428. "type": "github"
  4429. },
  4430. {
  4431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4432. "type": "tidelift"
  4433. }
  4434. ],
  4435. "time": "2025-04-22T09:11:45+00:00"
  4436. },
  4437. {
  4438. "name": "symfony/event-dispatcher-contracts",
  4439. "version": "v3.6.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4443. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  4448. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  4449. "shasum": ""
  4450. },
  4451. "require": {
  4452. "php": ">=8.1",
  4453. "psr/event-dispatcher": "^1"
  4454. },
  4455. "type": "library",
  4456. "extra": {
  4457. "thanks": {
  4458. "url": "https://github.com/symfony/contracts",
  4459. "name": "symfony/contracts"
  4460. },
  4461. "branch-alias": {
  4462. "dev-main": "3.6-dev"
  4463. }
  4464. },
  4465. "autoload": {
  4466. "psr-4": {
  4467. "Symfony\\Contracts\\EventDispatcher\\": ""
  4468. }
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "MIT"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Nicolas Grekas",
  4477. "email": "p@tchwork.com"
  4478. },
  4479. {
  4480. "name": "Symfony Community",
  4481. "homepage": "https://symfony.com/contributors"
  4482. }
  4483. ],
  4484. "description": "Generic abstractions related to dispatching event",
  4485. "homepage": "https://symfony.com",
  4486. "keywords": [
  4487. "abstractions",
  4488. "contracts",
  4489. "decoupling",
  4490. "interfaces",
  4491. "interoperability",
  4492. "standards"
  4493. ],
  4494. "support": {
  4495. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  4496. },
  4497. "funding": [
  4498. {
  4499. "url": "https://symfony.com/sponsor",
  4500. "type": "custom"
  4501. },
  4502. {
  4503. "url": "https://github.com/fabpot",
  4504. "type": "github"
  4505. },
  4506. {
  4507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4508. "type": "tidelift"
  4509. }
  4510. ],
  4511. "time": "2024-09-25T14:21:43+00:00"
  4512. },
  4513. {
  4514. "name": "symfony/expression-language",
  4515. "version": "v7.3.0",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/symfony/expression-language.git",
  4519. "reference": "26f4884a455e755e630a5fc372df124a3578da2e"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/symfony/expression-language/zipball/26f4884a455e755e630a5fc372df124a3578da2e",
  4524. "reference": "26f4884a455e755e630a5fc372df124a3578da2e",
  4525. "shasum": ""
  4526. },
  4527. "require": {
  4528. "php": ">=8.2",
  4529. "symfony/cache": "^6.4|^7.0",
  4530. "symfony/deprecation-contracts": "^2.5|^3",
  4531. "symfony/service-contracts": "^2.5|^3"
  4532. },
  4533. "type": "library",
  4534. "autoload": {
  4535. "psr-4": {
  4536. "Symfony\\Component\\ExpressionLanguage\\": ""
  4537. },
  4538. "exclude-from-classmap": [
  4539. "/Tests/"
  4540. ]
  4541. },
  4542. "notification-url": "https://packagist.org/downloads/",
  4543. "license": [
  4544. "MIT"
  4545. ],
  4546. "authors": [
  4547. {
  4548. "name": "Fabien Potencier",
  4549. "email": "fabien@symfony.com"
  4550. },
  4551. {
  4552. "name": "Symfony Community",
  4553. "homepage": "https://symfony.com/contributors"
  4554. }
  4555. ],
  4556. "description": "Provides an engine that can compile and evaluate expressions",
  4557. "homepage": "https://symfony.com",
  4558. "support": {
  4559. "source": "https://github.com/symfony/expression-language/tree/v7.3.0"
  4560. },
  4561. "funding": [
  4562. {
  4563. "url": "https://symfony.com/sponsor",
  4564. "type": "custom"
  4565. },
  4566. {
  4567. "url": "https://github.com/fabpot",
  4568. "type": "github"
  4569. },
  4570. {
  4571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4572. "type": "tidelift"
  4573. }
  4574. ],
  4575. "time": "2024-10-15T11:52:45+00:00"
  4576. },
  4577. {
  4578. "name": "symfony/filesystem",
  4579. "version": "v7.3.0",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/symfony/filesystem.git",
  4583. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  4588. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  4589. "shasum": ""
  4590. },
  4591. "require": {
  4592. "php": ">=8.2",
  4593. "symfony/polyfill-ctype": "~1.8",
  4594. "symfony/polyfill-mbstring": "~1.8"
  4595. },
  4596. "require-dev": {
  4597. "symfony/process": "^6.4|^7.0"
  4598. },
  4599. "type": "library",
  4600. "autoload": {
  4601. "psr-4": {
  4602. "Symfony\\Component\\Filesystem\\": ""
  4603. },
  4604. "exclude-from-classmap": [
  4605. "/Tests/"
  4606. ]
  4607. },
  4608. "notification-url": "https://packagist.org/downloads/",
  4609. "license": [
  4610. "MIT"
  4611. ],
  4612. "authors": [
  4613. {
  4614. "name": "Fabien Potencier",
  4615. "email": "fabien@symfony.com"
  4616. },
  4617. {
  4618. "name": "Symfony Community",
  4619. "homepage": "https://symfony.com/contributors"
  4620. }
  4621. ],
  4622. "description": "Provides basic utilities for the filesystem",
  4623. "homepage": "https://symfony.com",
  4624. "support": {
  4625. "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
  4626. },
  4627. "funding": [
  4628. {
  4629. "url": "https://symfony.com/sponsor",
  4630. "type": "custom"
  4631. },
  4632. {
  4633. "url": "https://github.com/fabpot",
  4634. "type": "github"
  4635. },
  4636. {
  4637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4638. "type": "tidelift"
  4639. }
  4640. ],
  4641. "time": "2024-10-25T15:15:23+00:00"
  4642. },
  4643. {
  4644. "name": "symfony/finder",
  4645. "version": "v7.3.0",
  4646. "source": {
  4647. "type": "git",
  4648. "url": "https://github.com/symfony/finder.git",
  4649. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  4650. },
  4651. "dist": {
  4652. "type": "zip",
  4653. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  4654. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  4655. "shasum": ""
  4656. },
  4657. "require": {
  4658. "php": ">=8.2"
  4659. },
  4660. "require-dev": {
  4661. "symfony/filesystem": "^6.4|^7.0"
  4662. },
  4663. "type": "library",
  4664. "autoload": {
  4665. "psr-4": {
  4666. "Symfony\\Component\\Finder\\": ""
  4667. },
  4668. "exclude-from-classmap": [
  4669. "/Tests/"
  4670. ]
  4671. },
  4672. "notification-url": "https://packagist.org/downloads/",
  4673. "license": [
  4674. "MIT"
  4675. ],
  4676. "authors": [
  4677. {
  4678. "name": "Fabien Potencier",
  4679. "email": "fabien@symfony.com"
  4680. },
  4681. {
  4682. "name": "Symfony Community",
  4683. "homepage": "https://symfony.com/contributors"
  4684. }
  4685. ],
  4686. "description": "Finds files and directories via an intuitive fluent interface",
  4687. "homepage": "https://symfony.com",
  4688. "support": {
  4689. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  4690. },
  4691. "funding": [
  4692. {
  4693. "url": "https://symfony.com/sponsor",
  4694. "type": "custom"
  4695. },
  4696. {
  4697. "url": "https://github.com/fabpot",
  4698. "type": "github"
  4699. },
  4700. {
  4701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4702. "type": "tidelift"
  4703. }
  4704. ],
  4705. "time": "2024-12-30T19:00:26+00:00"
  4706. },
  4707. {
  4708. "name": "symfony/flex",
  4709. "version": "v2.8.1",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://github.com/symfony/flex.git",
  4713. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01"
  4714. },
  4715. "dist": {
  4716. "type": "zip",
  4717. "url": "https://api.github.com/repos/symfony/flex/zipball/423c36e369361003dc31ef11c5f15fb589e52c01",
  4718. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01",
  4719. "shasum": ""
  4720. },
  4721. "require": {
  4722. "composer-plugin-api": "^2.1",
  4723. "php": ">=8.0"
  4724. },
  4725. "conflict": {
  4726. "composer/semver": "<1.7.2"
  4727. },
  4728. "require-dev": {
  4729. "composer/composer": "^2.1",
  4730. "symfony/dotenv": "^5.4|^6.0",
  4731. "symfony/filesystem": "^5.4|^6.0",
  4732. "symfony/phpunit-bridge": "^5.4|^6.0",
  4733. "symfony/process": "^5.4|^6.0"
  4734. },
  4735. "type": "composer-plugin",
  4736. "extra": {
  4737. "class": "Symfony\\Flex\\Flex"
  4738. },
  4739. "autoload": {
  4740. "psr-4": {
  4741. "Symfony\\Flex\\": "src"
  4742. }
  4743. },
  4744. "notification-url": "https://packagist.org/downloads/",
  4745. "license": [
  4746. "MIT"
  4747. ],
  4748. "authors": [
  4749. {
  4750. "name": "Fabien Potencier",
  4751. "email": "fabien.potencier@gmail.com"
  4752. }
  4753. ],
  4754. "description": "Composer plugin for Symfony",
  4755. "support": {
  4756. "issues": "https://github.com/symfony/flex/issues",
  4757. "source": "https://github.com/symfony/flex/tree/v2.8.1"
  4758. },
  4759. "funding": [
  4760. {
  4761. "url": "https://symfony.com/sponsor",
  4762. "type": "custom"
  4763. },
  4764. {
  4765. "url": "https://github.com/fabpot",
  4766. "type": "github"
  4767. },
  4768. {
  4769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4770. "type": "tidelift"
  4771. }
  4772. ],
  4773. "time": "2025-07-05T07:45:19+00:00"
  4774. },
  4775. {
  4776. "name": "symfony/form",
  4777. "version": "v7.3.1",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/symfony/form.git",
  4781. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/symfony/form/zipball/e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  4786. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "php": ">=8.2",
  4791. "symfony/deprecation-contracts": "^2.5|^3",
  4792. "symfony/event-dispatcher": "^6.4|^7.0",
  4793. "symfony/options-resolver": "^7.3",
  4794. "symfony/polyfill-ctype": "~1.8",
  4795. "symfony/polyfill-intl-icu": "^1.21",
  4796. "symfony/polyfill-mbstring": "~1.0",
  4797. "symfony/property-access": "^6.4|^7.0",
  4798. "symfony/service-contracts": "^2.5|^3"
  4799. },
  4800. "conflict": {
  4801. "symfony/console": "<6.4",
  4802. "symfony/dependency-injection": "<6.4",
  4803. "symfony/doctrine-bridge": "<6.4",
  4804. "symfony/error-handler": "<6.4",
  4805. "symfony/framework-bundle": "<6.4",
  4806. "symfony/http-kernel": "<6.4",
  4807. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4808. "symfony/translation-contracts": "<2.5",
  4809. "symfony/twig-bridge": "<6.4"
  4810. },
  4811. "require-dev": {
  4812. "doctrine/collections": "^1.0|^2.0",
  4813. "symfony/config": "^6.4|^7.0",
  4814. "symfony/console": "^6.4|^7.0",
  4815. "symfony/dependency-injection": "^6.4|^7.0",
  4816. "symfony/expression-language": "^6.4|^7.0",
  4817. "symfony/html-sanitizer": "^6.4|^7.0",
  4818. "symfony/http-foundation": "^6.4|^7.0",
  4819. "symfony/http-kernel": "^6.4|^7.0",
  4820. "symfony/intl": "^6.4|^7.0",
  4821. "symfony/security-core": "^6.4|^7.0",
  4822. "symfony/security-csrf": "^6.4|^7.0",
  4823. "symfony/translation": "^6.4.3|^7.0.3",
  4824. "symfony/uid": "^6.4|^7.0",
  4825. "symfony/validator": "^6.4|^7.0",
  4826. "symfony/var-dumper": "^6.4|^7.0"
  4827. },
  4828. "type": "library",
  4829. "autoload": {
  4830. "psr-4": {
  4831. "Symfony\\Component\\Form\\": ""
  4832. },
  4833. "exclude-from-classmap": [
  4834. "/Tests/"
  4835. ]
  4836. },
  4837. "notification-url": "https://packagist.org/downloads/",
  4838. "license": [
  4839. "MIT"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "Fabien Potencier",
  4844. "email": "fabien@symfony.com"
  4845. },
  4846. {
  4847. "name": "Symfony Community",
  4848. "homepage": "https://symfony.com/contributors"
  4849. }
  4850. ],
  4851. "description": "Allows to easily create, process and reuse HTML forms",
  4852. "homepage": "https://symfony.com",
  4853. "support": {
  4854. "source": "https://github.com/symfony/form/tree/v7.3.1"
  4855. },
  4856. "funding": [
  4857. {
  4858. "url": "https://symfony.com/sponsor",
  4859. "type": "custom"
  4860. },
  4861. {
  4862. "url": "https://github.com/fabpot",
  4863. "type": "github"
  4864. },
  4865. {
  4866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4867. "type": "tidelift"
  4868. }
  4869. ],
  4870. "time": "2025-06-13T07:48:40+00:00"
  4871. },
  4872. {
  4873. "name": "symfony/framework-bundle",
  4874. "version": "v7.3.1",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://github.com/symfony/framework-bundle.git",
  4878. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  4883. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  4884. "shasum": ""
  4885. },
  4886. "require": {
  4887. "composer-runtime-api": ">=2.1",
  4888. "ext-xml": "*",
  4889. "php": ">=8.2",
  4890. "symfony/cache": "^6.4|^7.0",
  4891. "symfony/config": "^7.3",
  4892. "symfony/dependency-injection": "^7.2",
  4893. "symfony/deprecation-contracts": "^2.5|^3",
  4894. "symfony/error-handler": "^7.3",
  4895. "symfony/event-dispatcher": "^6.4|^7.0",
  4896. "symfony/filesystem": "^7.1",
  4897. "symfony/finder": "^6.4|^7.0",
  4898. "symfony/http-foundation": "^7.3",
  4899. "symfony/http-kernel": "^7.2",
  4900. "symfony/polyfill-mbstring": "~1.0",
  4901. "symfony/routing": "^6.4|^7.0"
  4902. },
  4903. "conflict": {
  4904. "doctrine/persistence": "<1.3",
  4905. "phpdocumentor/reflection-docblock": "<3.2.2",
  4906. "phpdocumentor/type-resolver": "<1.4.0",
  4907. "symfony/asset": "<6.4",
  4908. "symfony/asset-mapper": "<6.4",
  4909. "symfony/clock": "<6.4",
  4910. "symfony/console": "<6.4",
  4911. "symfony/dom-crawler": "<6.4",
  4912. "symfony/dotenv": "<6.4",
  4913. "symfony/form": "<6.4",
  4914. "symfony/http-client": "<6.4",
  4915. "symfony/json-streamer": ">=7.4",
  4916. "symfony/lock": "<6.4",
  4917. "symfony/mailer": "<6.4",
  4918. "symfony/messenger": "<6.4",
  4919. "symfony/mime": "<6.4",
  4920. "symfony/object-mapper": ">=7.4",
  4921. "symfony/property-access": "<6.4",
  4922. "symfony/property-info": "<6.4",
  4923. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4924. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4925. "symfony/security-core": "<6.4",
  4926. "symfony/security-csrf": "<7.2",
  4927. "symfony/serializer": "<7.2.5",
  4928. "symfony/stopwatch": "<6.4",
  4929. "symfony/translation": "<7.3",
  4930. "symfony/twig-bridge": "<6.4",
  4931. "symfony/twig-bundle": "<6.4",
  4932. "symfony/validator": "<6.4",
  4933. "symfony/web-profiler-bundle": "<6.4",
  4934. "symfony/webhook": "<7.2",
  4935. "symfony/workflow": "<7.3.0-beta2"
  4936. },
  4937. "require-dev": {
  4938. "doctrine/persistence": "^1.3|^2|^3",
  4939. "dragonmantank/cron-expression": "^3.1",
  4940. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4941. "seld/jsonlint": "^1.10",
  4942. "symfony/asset": "^6.4|^7.0",
  4943. "symfony/asset-mapper": "^6.4|^7.0",
  4944. "symfony/browser-kit": "^6.4|^7.0",
  4945. "symfony/clock": "^6.4|^7.0",
  4946. "symfony/console": "^6.4|^7.0",
  4947. "symfony/css-selector": "^6.4|^7.0",
  4948. "symfony/dom-crawler": "^6.4|^7.0",
  4949. "symfony/dotenv": "^6.4|^7.0",
  4950. "symfony/expression-language": "^6.4|^7.0",
  4951. "symfony/form": "^6.4|^7.0",
  4952. "symfony/html-sanitizer": "^6.4|^7.0",
  4953. "symfony/http-client": "^6.4|^7.0",
  4954. "symfony/json-streamer": "7.3.*",
  4955. "symfony/lock": "^6.4|^7.0",
  4956. "symfony/mailer": "^6.4|^7.0",
  4957. "symfony/messenger": "^6.4|^7.0",
  4958. "symfony/mime": "^6.4|^7.0",
  4959. "symfony/notifier": "^6.4|^7.0",
  4960. "symfony/object-mapper": "^v7.3.0-beta2",
  4961. "symfony/polyfill-intl-icu": "~1.0",
  4962. "symfony/process": "^6.4|^7.0",
  4963. "symfony/property-info": "^6.4|^7.0",
  4964. "symfony/rate-limiter": "^6.4|^7.0",
  4965. "symfony/scheduler": "^6.4.4|^7.0.4",
  4966. "symfony/security-bundle": "^6.4|^7.0",
  4967. "symfony/semaphore": "^6.4|^7.0",
  4968. "symfony/serializer": "^7.2.5",
  4969. "symfony/stopwatch": "^6.4|^7.0",
  4970. "symfony/string": "^6.4|^7.0",
  4971. "symfony/translation": "^7.3",
  4972. "symfony/twig-bundle": "^6.4|^7.0",
  4973. "symfony/type-info": "^7.1",
  4974. "symfony/uid": "^6.4|^7.0",
  4975. "symfony/validator": "^6.4|^7.0",
  4976. "symfony/web-link": "^6.4|^7.0",
  4977. "symfony/webhook": "^7.2",
  4978. "symfony/workflow": "^7.3",
  4979. "symfony/yaml": "^6.4|^7.0",
  4980. "twig/twig": "^3.12"
  4981. },
  4982. "type": "symfony-bundle",
  4983. "autoload": {
  4984. "psr-4": {
  4985. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4986. },
  4987. "exclude-from-classmap": [
  4988. "/Tests/"
  4989. ]
  4990. },
  4991. "notification-url": "https://packagist.org/downloads/",
  4992. "license": [
  4993. "MIT"
  4994. ],
  4995. "authors": [
  4996. {
  4997. "name": "Fabien Potencier",
  4998. "email": "fabien@symfony.com"
  4999. },
  5000. {
  5001. "name": "Symfony Community",
  5002. "homepage": "https://symfony.com/contributors"
  5003. }
  5004. ],
  5005. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  5006. "homepage": "https://symfony.com",
  5007. "support": {
  5008. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.1"
  5009. },
  5010. "funding": [
  5011. {
  5012. "url": "https://symfony.com/sponsor",
  5013. "type": "custom"
  5014. },
  5015. {
  5016. "url": "https://github.com/fabpot",
  5017. "type": "github"
  5018. },
  5019. {
  5020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5021. "type": "tidelift"
  5022. }
  5023. ],
  5024. "time": "2025-06-27T19:55:54+00:00"
  5025. },
  5026. {
  5027. "name": "symfony/http-client",
  5028. "version": "v7.3.1",
  5029. "source": {
  5030. "type": "git",
  5031. "url": "https://github.com/symfony/http-client.git",
  5032. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64"
  5033. },
  5034. "dist": {
  5035. "type": "zip",
  5036. "url": "https://api.github.com/repos/symfony/http-client/zipball/4403d87a2c16f33345dca93407a8714ee8c05a64",
  5037. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64",
  5038. "shasum": ""
  5039. },
  5040. "require": {
  5041. "php": ">=8.2",
  5042. "psr/log": "^1|^2|^3",
  5043. "symfony/deprecation-contracts": "^2.5|^3",
  5044. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  5045. "symfony/service-contracts": "^2.5|^3"
  5046. },
  5047. "conflict": {
  5048. "amphp/amp": "<2.5",
  5049. "amphp/socket": "<1.1",
  5050. "php-http/discovery": "<1.15",
  5051. "symfony/http-foundation": "<6.4"
  5052. },
  5053. "provide": {
  5054. "php-http/async-client-implementation": "*",
  5055. "php-http/client-implementation": "*",
  5056. "psr/http-client-implementation": "1.0",
  5057. "symfony/http-client-implementation": "3.0"
  5058. },
  5059. "require-dev": {
  5060. "amphp/http-client": "^4.2.1|^5.0",
  5061. "amphp/http-tunnel": "^1.0|^2.0",
  5062. "guzzlehttp/promises": "^1.4|^2.0",
  5063. "nyholm/psr7": "^1.0",
  5064. "php-http/httplug": "^1.0|^2.0",
  5065. "psr/http-client": "^1.0",
  5066. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  5067. "symfony/dependency-injection": "^6.4|^7.0",
  5068. "symfony/http-kernel": "^6.4|^7.0",
  5069. "symfony/messenger": "^6.4|^7.0",
  5070. "symfony/process": "^6.4|^7.0",
  5071. "symfony/rate-limiter": "^6.4|^7.0",
  5072. "symfony/stopwatch": "^6.4|^7.0"
  5073. },
  5074. "type": "library",
  5075. "autoload": {
  5076. "psr-4": {
  5077. "Symfony\\Component\\HttpClient\\": ""
  5078. },
  5079. "exclude-from-classmap": [
  5080. "/Tests/"
  5081. ]
  5082. },
  5083. "notification-url": "https://packagist.org/downloads/",
  5084. "license": [
  5085. "MIT"
  5086. ],
  5087. "authors": [
  5088. {
  5089. "name": "Nicolas Grekas",
  5090. "email": "p@tchwork.com"
  5091. },
  5092. {
  5093. "name": "Symfony Community",
  5094. "homepage": "https://symfony.com/contributors"
  5095. }
  5096. ],
  5097. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5098. "homepage": "https://symfony.com",
  5099. "keywords": [
  5100. "http"
  5101. ],
  5102. "support": {
  5103. "source": "https://github.com/symfony/http-client/tree/v7.3.1"
  5104. },
  5105. "funding": [
  5106. {
  5107. "url": "https://symfony.com/sponsor",
  5108. "type": "custom"
  5109. },
  5110. {
  5111. "url": "https://github.com/fabpot",
  5112. "type": "github"
  5113. },
  5114. {
  5115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5116. "type": "tidelift"
  5117. }
  5118. ],
  5119. "time": "2025-06-28T07:58:39+00:00"
  5120. },
  5121. {
  5122. "name": "symfony/http-client-contracts",
  5123. "version": "v3.6.0",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://github.com/symfony/http-client-contracts.git",
  5127. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  5132. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  5133. "shasum": ""
  5134. },
  5135. "require": {
  5136. "php": ">=8.1"
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "thanks": {
  5141. "url": "https://github.com/symfony/contracts",
  5142. "name": "symfony/contracts"
  5143. },
  5144. "branch-alias": {
  5145. "dev-main": "3.6-dev"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "psr-4": {
  5150. "Symfony\\Contracts\\HttpClient\\": ""
  5151. },
  5152. "exclude-from-classmap": [
  5153. "/Test/"
  5154. ]
  5155. },
  5156. "notification-url": "https://packagist.org/downloads/",
  5157. "license": [
  5158. "MIT"
  5159. ],
  5160. "authors": [
  5161. {
  5162. "name": "Nicolas Grekas",
  5163. "email": "p@tchwork.com"
  5164. },
  5165. {
  5166. "name": "Symfony Community",
  5167. "homepage": "https://symfony.com/contributors"
  5168. }
  5169. ],
  5170. "description": "Generic abstractions related to HTTP clients",
  5171. "homepage": "https://symfony.com",
  5172. "keywords": [
  5173. "abstractions",
  5174. "contracts",
  5175. "decoupling",
  5176. "interfaces",
  5177. "interoperability",
  5178. "standards"
  5179. ],
  5180. "support": {
  5181. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  5182. },
  5183. "funding": [
  5184. {
  5185. "url": "https://symfony.com/sponsor",
  5186. "type": "custom"
  5187. },
  5188. {
  5189. "url": "https://github.com/fabpot",
  5190. "type": "github"
  5191. },
  5192. {
  5193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5194. "type": "tidelift"
  5195. }
  5196. ],
  5197. "time": "2025-04-29T11:18:49+00:00"
  5198. },
  5199. {
  5200. "name": "symfony/http-foundation",
  5201. "version": "v7.3.1",
  5202. "source": {
  5203. "type": "git",
  5204. "url": "https://github.com/symfony/http-foundation.git",
  5205. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  5206. },
  5207. "dist": {
  5208. "type": "zip",
  5209. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  5210. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  5211. "shasum": ""
  5212. },
  5213. "require": {
  5214. "php": ">=8.2",
  5215. "symfony/deprecation-contracts": "^2.5|^3.0",
  5216. "symfony/polyfill-mbstring": "~1.1",
  5217. "symfony/polyfill-php83": "^1.27"
  5218. },
  5219. "conflict": {
  5220. "doctrine/dbal": "<3.6",
  5221. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5222. },
  5223. "require-dev": {
  5224. "doctrine/dbal": "^3.6|^4",
  5225. "predis/predis": "^1.1|^2.0",
  5226. "symfony/cache": "^6.4.12|^7.1.5",
  5227. "symfony/clock": "^6.4|^7.0",
  5228. "symfony/dependency-injection": "^6.4|^7.0",
  5229. "symfony/expression-language": "^6.4|^7.0",
  5230. "symfony/http-kernel": "^6.4|^7.0",
  5231. "symfony/mime": "^6.4|^7.0",
  5232. "symfony/rate-limiter": "^6.4|^7.0"
  5233. },
  5234. "type": "library",
  5235. "autoload": {
  5236. "psr-4": {
  5237. "Symfony\\Component\\HttpFoundation\\": ""
  5238. },
  5239. "exclude-from-classmap": [
  5240. "/Tests/"
  5241. ]
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "Fabien Potencier",
  5250. "email": "fabien@symfony.com"
  5251. },
  5252. {
  5253. "name": "Symfony Community",
  5254. "homepage": "https://symfony.com/contributors"
  5255. }
  5256. ],
  5257. "description": "Defines an object-oriented layer for the HTTP specification",
  5258. "homepage": "https://symfony.com",
  5259. "support": {
  5260. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  5261. },
  5262. "funding": [
  5263. {
  5264. "url": "https://symfony.com/sponsor",
  5265. "type": "custom"
  5266. },
  5267. {
  5268. "url": "https://github.com/fabpot",
  5269. "type": "github"
  5270. },
  5271. {
  5272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5273. "type": "tidelift"
  5274. }
  5275. ],
  5276. "time": "2025-06-23T15:07:14+00:00"
  5277. },
  5278. {
  5279. "name": "symfony/http-kernel",
  5280. "version": "v7.3.1",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://github.com/symfony/http-kernel.git",
  5284. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5289. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5290. "shasum": ""
  5291. },
  5292. "require": {
  5293. "php": ">=8.2",
  5294. "psr/log": "^1|^2|^3",
  5295. "symfony/deprecation-contracts": "^2.5|^3",
  5296. "symfony/error-handler": "^6.4|^7.0",
  5297. "symfony/event-dispatcher": "^7.3",
  5298. "symfony/http-foundation": "^7.3",
  5299. "symfony/polyfill-ctype": "^1.8"
  5300. },
  5301. "conflict": {
  5302. "symfony/browser-kit": "<6.4",
  5303. "symfony/cache": "<6.4",
  5304. "symfony/config": "<6.4",
  5305. "symfony/console": "<6.4",
  5306. "symfony/dependency-injection": "<6.4",
  5307. "symfony/doctrine-bridge": "<6.4",
  5308. "symfony/form": "<6.4",
  5309. "symfony/http-client": "<6.4",
  5310. "symfony/http-client-contracts": "<2.5",
  5311. "symfony/mailer": "<6.4",
  5312. "symfony/messenger": "<6.4",
  5313. "symfony/translation": "<6.4",
  5314. "symfony/translation-contracts": "<2.5",
  5315. "symfony/twig-bridge": "<6.4",
  5316. "symfony/validator": "<6.4",
  5317. "symfony/var-dumper": "<6.4",
  5318. "twig/twig": "<3.12"
  5319. },
  5320. "provide": {
  5321. "psr/log-implementation": "1.0|2.0|3.0"
  5322. },
  5323. "require-dev": {
  5324. "psr/cache": "^1.0|^2.0|^3.0",
  5325. "symfony/browser-kit": "^6.4|^7.0",
  5326. "symfony/clock": "^6.4|^7.0",
  5327. "symfony/config": "^6.4|^7.0",
  5328. "symfony/console": "^6.4|^7.0",
  5329. "symfony/css-selector": "^6.4|^7.0",
  5330. "symfony/dependency-injection": "^6.4|^7.0",
  5331. "symfony/dom-crawler": "^6.4|^7.0",
  5332. "symfony/expression-language": "^6.4|^7.0",
  5333. "symfony/finder": "^6.4|^7.0",
  5334. "symfony/http-client-contracts": "^2.5|^3",
  5335. "symfony/process": "^6.4|^7.0",
  5336. "symfony/property-access": "^7.1",
  5337. "symfony/routing": "^6.4|^7.0",
  5338. "symfony/serializer": "^7.1",
  5339. "symfony/stopwatch": "^6.4|^7.0",
  5340. "symfony/translation": "^6.4|^7.0",
  5341. "symfony/translation-contracts": "^2.5|^3",
  5342. "symfony/uid": "^6.4|^7.0",
  5343. "symfony/validator": "^6.4|^7.0",
  5344. "symfony/var-dumper": "^6.4|^7.0",
  5345. "symfony/var-exporter": "^6.4|^7.0",
  5346. "twig/twig": "^3.12"
  5347. },
  5348. "type": "library",
  5349. "autoload": {
  5350. "psr-4": {
  5351. "Symfony\\Component\\HttpKernel\\": ""
  5352. },
  5353. "exclude-from-classmap": [
  5354. "/Tests/"
  5355. ]
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Fabien Potencier",
  5364. "email": "fabien@symfony.com"
  5365. },
  5366. {
  5367. "name": "Symfony Community",
  5368. "homepage": "https://symfony.com/contributors"
  5369. }
  5370. ],
  5371. "description": "Provides a structured process for converting a Request into a Response",
  5372. "homepage": "https://symfony.com",
  5373. "support": {
  5374. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  5375. },
  5376. "funding": [
  5377. {
  5378. "url": "https://symfony.com/sponsor",
  5379. "type": "custom"
  5380. },
  5381. {
  5382. "url": "https://github.com/fabpot",
  5383. "type": "github"
  5384. },
  5385. {
  5386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5387. "type": "tidelift"
  5388. }
  5389. ],
  5390. "time": "2025-06-28T08:24:55+00:00"
  5391. },
  5392. {
  5393. "name": "symfony/intl",
  5394. "version": "v7.3.1",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/symfony/intl.git",
  5398. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/symfony/intl/zipball/bd50940329ac1cfc4af0491cc4468f477d967e45",
  5403. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": ">=8.2",
  5408. "symfony/deprecation-contracts": "^2.5|^3"
  5409. },
  5410. "conflict": {
  5411. "symfony/string": "<7.1"
  5412. },
  5413. "require-dev": {
  5414. "symfony/filesystem": "^6.4|^7.0",
  5415. "symfony/var-exporter": "^6.4|^7.0"
  5416. },
  5417. "type": "library",
  5418. "autoload": {
  5419. "psr-4": {
  5420. "Symfony\\Component\\Intl\\": ""
  5421. },
  5422. "exclude-from-classmap": [
  5423. "/Tests/",
  5424. "/Resources/data/"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Bernhard Schussek",
  5434. "email": "bschussek@gmail.com"
  5435. },
  5436. {
  5437. "name": "Eriksen Costa",
  5438. "email": "eriksen.costa@infranology.com.br"
  5439. },
  5440. {
  5441. "name": "Igor Wiedler",
  5442. "email": "igor@wiedler.ch"
  5443. },
  5444. {
  5445. "name": "Symfony Community",
  5446. "homepage": "https://symfony.com/contributors"
  5447. }
  5448. ],
  5449. "description": "Provides access to the localization data of the ICU library",
  5450. "homepage": "https://symfony.com",
  5451. "keywords": [
  5452. "i18n",
  5453. "icu",
  5454. "internationalization",
  5455. "intl",
  5456. "l10n",
  5457. "localization"
  5458. ],
  5459. "support": {
  5460. "source": "https://github.com/symfony/intl/tree/v7.3.1"
  5461. },
  5462. "funding": [
  5463. {
  5464. "url": "https://symfony.com/sponsor",
  5465. "type": "custom"
  5466. },
  5467. {
  5468. "url": "https://github.com/fabpot",
  5469. "type": "github"
  5470. },
  5471. {
  5472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5473. "type": "tidelift"
  5474. }
  5475. ],
  5476. "time": "2025-06-06T16:10:07+00:00"
  5477. },
  5478. {
  5479. "name": "symfony/mailer",
  5480. "version": "v7.3.1",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/symfony/mailer.git",
  5484. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  5489. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  5490. "shasum": ""
  5491. },
  5492. "require": {
  5493. "egulias/email-validator": "^2.1.10|^3|^4",
  5494. "php": ">=8.2",
  5495. "psr/event-dispatcher": "^1",
  5496. "psr/log": "^1|^2|^3",
  5497. "symfony/event-dispatcher": "^6.4|^7.0",
  5498. "symfony/mime": "^7.2",
  5499. "symfony/service-contracts": "^2.5|^3"
  5500. },
  5501. "conflict": {
  5502. "symfony/http-client-contracts": "<2.5",
  5503. "symfony/http-kernel": "<6.4",
  5504. "symfony/messenger": "<6.4",
  5505. "symfony/mime": "<6.4",
  5506. "symfony/twig-bridge": "<6.4"
  5507. },
  5508. "require-dev": {
  5509. "symfony/console": "^6.4|^7.0",
  5510. "symfony/http-client": "^6.4|^7.0",
  5511. "symfony/messenger": "^6.4|^7.0",
  5512. "symfony/twig-bridge": "^6.4|^7.0"
  5513. },
  5514. "type": "library",
  5515. "autoload": {
  5516. "psr-4": {
  5517. "Symfony\\Component\\Mailer\\": ""
  5518. },
  5519. "exclude-from-classmap": [
  5520. "/Tests/"
  5521. ]
  5522. },
  5523. "notification-url": "https://packagist.org/downloads/",
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "Fabien Potencier",
  5530. "email": "fabien@symfony.com"
  5531. },
  5532. {
  5533. "name": "Symfony Community",
  5534. "homepage": "https://symfony.com/contributors"
  5535. }
  5536. ],
  5537. "description": "Helps sending emails",
  5538. "homepage": "https://symfony.com",
  5539. "support": {
  5540. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  5541. },
  5542. "funding": [
  5543. {
  5544. "url": "https://symfony.com/sponsor",
  5545. "type": "custom"
  5546. },
  5547. {
  5548. "url": "https://github.com/fabpot",
  5549. "type": "github"
  5550. },
  5551. {
  5552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5553. "type": "tidelift"
  5554. }
  5555. ],
  5556. "time": "2025-06-27T19:55:54+00:00"
  5557. },
  5558. {
  5559. "name": "symfony/messenger",
  5560. "version": "v7.3.1",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://github.com/symfony/messenger.git",
  5564. "reference": "716c89b86ce58c4946d436d862694971c999d1aa"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://api.github.com/repos/symfony/messenger/zipball/716c89b86ce58c4946d436d862694971c999d1aa",
  5569. "reference": "716c89b86ce58c4946d436d862694971c999d1aa",
  5570. "shasum": ""
  5571. },
  5572. "require": {
  5573. "php": ">=8.2",
  5574. "psr/log": "^1|^2|^3",
  5575. "symfony/clock": "^6.4|^7.0",
  5576. "symfony/deprecation-contracts": "^2.5|^3"
  5577. },
  5578. "conflict": {
  5579. "symfony/console": "<7.2",
  5580. "symfony/event-dispatcher": "<6.4",
  5581. "symfony/event-dispatcher-contracts": "<2.5",
  5582. "symfony/framework-bundle": "<6.4",
  5583. "symfony/http-kernel": "<6.4",
  5584. "symfony/lock": "<6.4",
  5585. "symfony/serializer": "<6.4"
  5586. },
  5587. "require-dev": {
  5588. "psr/cache": "^1.0|^2.0|^3.0",
  5589. "symfony/console": "^7.2",
  5590. "symfony/dependency-injection": "^6.4|^7.0",
  5591. "symfony/event-dispatcher": "^6.4|^7.0",
  5592. "symfony/http-kernel": "^6.4|^7.0",
  5593. "symfony/lock": "^6.4|^7.0",
  5594. "symfony/process": "^6.4|^7.0",
  5595. "symfony/property-access": "^6.4|^7.0",
  5596. "symfony/rate-limiter": "^6.4|^7.0",
  5597. "symfony/routing": "^6.4|^7.0",
  5598. "symfony/serializer": "^6.4|^7.0",
  5599. "symfony/service-contracts": "^2.5|^3",
  5600. "symfony/stopwatch": "^6.4|^7.0",
  5601. "symfony/validator": "^6.4|^7.0"
  5602. },
  5603. "type": "library",
  5604. "autoload": {
  5605. "psr-4": {
  5606. "Symfony\\Component\\Messenger\\": ""
  5607. },
  5608. "exclude-from-classmap": [
  5609. "/Tests/"
  5610. ]
  5611. },
  5612. "notification-url": "https://packagist.org/downloads/",
  5613. "license": [
  5614. "MIT"
  5615. ],
  5616. "authors": [
  5617. {
  5618. "name": "Samuel Roze",
  5619. "email": "samuel.roze@gmail.com"
  5620. },
  5621. {
  5622. "name": "Symfony Community",
  5623. "homepage": "https://symfony.com/contributors"
  5624. }
  5625. ],
  5626. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5627. "homepage": "https://symfony.com",
  5628. "support": {
  5629. "source": "https://github.com/symfony/messenger/tree/v7.3.1"
  5630. },
  5631. "funding": [
  5632. {
  5633. "url": "https://symfony.com/sponsor",
  5634. "type": "custom"
  5635. },
  5636. {
  5637. "url": "https://github.com/fabpot",
  5638. "type": "github"
  5639. },
  5640. {
  5641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5642. "type": "tidelift"
  5643. }
  5644. ],
  5645. "time": "2025-06-27T19:55:54+00:00"
  5646. },
  5647. {
  5648. "name": "symfony/mime",
  5649. "version": "v7.3.0",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/symfony/mime.git",
  5653. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  5658. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  5659. "shasum": ""
  5660. },
  5661. "require": {
  5662. "php": ">=8.2",
  5663. "symfony/polyfill-intl-idn": "^1.10",
  5664. "symfony/polyfill-mbstring": "^1.0"
  5665. },
  5666. "conflict": {
  5667. "egulias/email-validator": "~3.0.0",
  5668. "phpdocumentor/reflection-docblock": "<3.2.2",
  5669. "phpdocumentor/type-resolver": "<1.4.0",
  5670. "symfony/mailer": "<6.4",
  5671. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5672. },
  5673. "require-dev": {
  5674. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5675. "league/html-to-markdown": "^5.0",
  5676. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5677. "symfony/dependency-injection": "^6.4|^7.0",
  5678. "symfony/process": "^6.4|^7.0",
  5679. "symfony/property-access": "^6.4|^7.0",
  5680. "symfony/property-info": "^6.4|^7.0",
  5681. "symfony/serializer": "^6.4.3|^7.0.3"
  5682. },
  5683. "type": "library",
  5684. "autoload": {
  5685. "psr-4": {
  5686. "Symfony\\Component\\Mime\\": ""
  5687. },
  5688. "exclude-from-classmap": [
  5689. "/Tests/"
  5690. ]
  5691. },
  5692. "notification-url": "https://packagist.org/downloads/",
  5693. "license": [
  5694. "MIT"
  5695. ],
  5696. "authors": [
  5697. {
  5698. "name": "Fabien Potencier",
  5699. "email": "fabien@symfony.com"
  5700. },
  5701. {
  5702. "name": "Symfony Community",
  5703. "homepage": "https://symfony.com/contributors"
  5704. }
  5705. ],
  5706. "description": "Allows manipulating MIME messages",
  5707. "homepage": "https://symfony.com",
  5708. "keywords": [
  5709. "mime",
  5710. "mime-type"
  5711. ],
  5712. "support": {
  5713. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  5714. },
  5715. "funding": [
  5716. {
  5717. "url": "https://symfony.com/sponsor",
  5718. "type": "custom"
  5719. },
  5720. {
  5721. "url": "https://github.com/fabpot",
  5722. "type": "github"
  5723. },
  5724. {
  5725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5726. "type": "tidelift"
  5727. }
  5728. ],
  5729. "time": "2025-02-19T08:51:26+00:00"
  5730. },
  5731. {
  5732. "name": "symfony/monolog-bridge",
  5733. "version": "v7.3.0",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/symfony/monolog-bridge.git",
  5737. "reference": "1b188c8abbbef25b111da878797514b7a8d33990"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1b188c8abbbef25b111da878797514b7a8d33990",
  5742. "reference": "1b188c8abbbef25b111da878797514b7a8d33990",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "monolog/monolog": "^3",
  5747. "php": ">=8.2",
  5748. "symfony/http-kernel": "^6.4|^7.0",
  5749. "symfony/service-contracts": "^2.5|^3"
  5750. },
  5751. "conflict": {
  5752. "symfony/console": "<6.4",
  5753. "symfony/http-foundation": "<6.4",
  5754. "symfony/security-core": "<6.4"
  5755. },
  5756. "require-dev": {
  5757. "symfony/console": "^6.4|^7.0",
  5758. "symfony/http-client": "^6.4|^7.0",
  5759. "symfony/mailer": "^6.4|^7.0",
  5760. "symfony/messenger": "^6.4|^7.0",
  5761. "symfony/mime": "^6.4|^7.0",
  5762. "symfony/security-core": "^6.4|^7.0",
  5763. "symfony/var-dumper": "^6.4|^7.0"
  5764. },
  5765. "type": "symfony-bridge",
  5766. "autoload": {
  5767. "psr-4": {
  5768. "Symfony\\Bridge\\Monolog\\": ""
  5769. },
  5770. "exclude-from-classmap": [
  5771. "/Tests/"
  5772. ]
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "MIT"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Fabien Potencier",
  5781. "email": "fabien@symfony.com"
  5782. },
  5783. {
  5784. "name": "Symfony Community",
  5785. "homepage": "https://symfony.com/contributors"
  5786. }
  5787. ],
  5788. "description": "Provides integration for Monolog with various Symfony components",
  5789. "homepage": "https://symfony.com",
  5790. "support": {
  5791. "source": "https://github.com/symfony/monolog-bridge/tree/v7.3.0"
  5792. },
  5793. "funding": [
  5794. {
  5795. "url": "https://symfony.com/sponsor",
  5796. "type": "custom"
  5797. },
  5798. {
  5799. "url": "https://github.com/fabpot",
  5800. "type": "github"
  5801. },
  5802. {
  5803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5804. "type": "tidelift"
  5805. }
  5806. ],
  5807. "time": "2025-03-21T12:17:46+00:00"
  5808. },
  5809. {
  5810. "name": "symfony/monolog-bundle",
  5811. "version": "v3.10.0",
  5812. "source": {
  5813. "type": "git",
  5814. "url": "https://github.com/symfony/monolog-bundle.git",
  5815. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5816. },
  5817. "dist": {
  5818. "type": "zip",
  5819. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5820. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5821. "shasum": ""
  5822. },
  5823. "require": {
  5824. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5825. "php": ">=7.2.5",
  5826. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5827. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5828. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5829. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5830. },
  5831. "require-dev": {
  5832. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5833. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5834. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5835. },
  5836. "type": "symfony-bundle",
  5837. "extra": {
  5838. "branch-alias": {
  5839. "dev-master": "3.x-dev"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Symfony\\Bundle\\MonologBundle\\": ""
  5845. },
  5846. "exclude-from-classmap": [
  5847. "/Tests/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Fabien Potencier",
  5857. "email": "fabien@symfony.com"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Symfony MonologBundle",
  5865. "homepage": "https://symfony.com",
  5866. "keywords": [
  5867. "log",
  5868. "logging"
  5869. ],
  5870. "support": {
  5871. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5872. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5873. },
  5874. "funding": [
  5875. {
  5876. "url": "https://symfony.com/sponsor",
  5877. "type": "custom"
  5878. },
  5879. {
  5880. "url": "https://github.com/fabpot",
  5881. "type": "github"
  5882. },
  5883. {
  5884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5885. "type": "tidelift"
  5886. }
  5887. ],
  5888. "time": "2023-11-06T17:08:13+00:00"
  5889. },
  5890. {
  5891. "name": "symfony/notifier",
  5892. "version": "v7.3.0",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/symfony/notifier.git",
  5896. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/symfony/notifier/zipball/9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  5901. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  5902. "shasum": ""
  5903. },
  5904. "require": {
  5905. "php": ">=8.2",
  5906. "psr/log": "^1|^2|^3"
  5907. },
  5908. "conflict": {
  5909. "symfony/event-dispatcher": "<6.4",
  5910. "symfony/event-dispatcher-contracts": "<2.5",
  5911. "symfony/http-client-contracts": "<2.5",
  5912. "symfony/http-kernel": "<6.4"
  5913. },
  5914. "require-dev": {
  5915. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5916. "symfony/http-client-contracts": "^2.5|^3",
  5917. "symfony/http-foundation": "^6.4|^7.0",
  5918. "symfony/messenger": "^6.4|^7.0"
  5919. },
  5920. "type": "library",
  5921. "autoload": {
  5922. "psr-4": {
  5923. "Symfony\\Component\\Notifier\\": ""
  5924. },
  5925. "exclude-from-classmap": [
  5926. "/Tests/"
  5927. ]
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "Fabien Potencier",
  5936. "email": "fabien@symfony.com"
  5937. },
  5938. {
  5939. "name": "Symfony Community",
  5940. "homepage": "https://symfony.com/contributors"
  5941. }
  5942. ],
  5943. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5944. "homepage": "https://symfony.com",
  5945. "keywords": [
  5946. "notification",
  5947. "notifier"
  5948. ],
  5949. "support": {
  5950. "source": "https://github.com/symfony/notifier/tree/v7.3.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": "2025-05-01T12:12:53+00:00"
  5967. },
  5968. {
  5969. "name": "symfony/options-resolver",
  5970. "version": "v7.3.0",
  5971. "source": {
  5972. "type": "git",
  5973. "url": "https://github.com/symfony/options-resolver.git",
  5974. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
  5975. },
  5976. "dist": {
  5977. "type": "zip",
  5978. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
  5979. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
  5980. "shasum": ""
  5981. },
  5982. "require": {
  5983. "php": ">=8.2",
  5984. "symfony/deprecation-contracts": "^2.5|^3"
  5985. },
  5986. "type": "library",
  5987. "autoload": {
  5988. "psr-4": {
  5989. "Symfony\\Component\\OptionsResolver\\": ""
  5990. },
  5991. "exclude-from-classmap": [
  5992. "/Tests/"
  5993. ]
  5994. },
  5995. "notification-url": "https://packagist.org/downloads/",
  5996. "license": [
  5997. "MIT"
  5998. ],
  5999. "authors": [
  6000. {
  6001. "name": "Fabien Potencier",
  6002. "email": "fabien@symfony.com"
  6003. },
  6004. {
  6005. "name": "Symfony Community",
  6006. "homepage": "https://symfony.com/contributors"
  6007. }
  6008. ],
  6009. "description": "Provides an improved replacement for the array_replace PHP function",
  6010. "homepage": "https://symfony.com",
  6011. "keywords": [
  6012. "config",
  6013. "configuration",
  6014. "options"
  6015. ],
  6016. "support": {
  6017. "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2025-04-04T13:12:05+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/password-hasher",
  6037. "version": "v7.3.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/password-hasher.git",
  6041. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  6046. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  6047. "shasum": ""
  6048. },
  6049. "require": {
  6050. "php": ">=8.2"
  6051. },
  6052. "conflict": {
  6053. "symfony/security-core": "<6.4"
  6054. },
  6055. "require-dev": {
  6056. "symfony/console": "^6.4|^7.0",
  6057. "symfony/security-core": "^6.4|^7.0"
  6058. },
  6059. "type": "library",
  6060. "autoload": {
  6061. "psr-4": {
  6062. "Symfony\\Component\\PasswordHasher\\": ""
  6063. },
  6064. "exclude-from-classmap": [
  6065. "/Tests/"
  6066. ]
  6067. },
  6068. "notification-url": "https://packagist.org/downloads/",
  6069. "license": [
  6070. "MIT"
  6071. ],
  6072. "authors": [
  6073. {
  6074. "name": "Robin Chalas",
  6075. "email": "robin.chalas@gmail.com"
  6076. },
  6077. {
  6078. "name": "Symfony Community",
  6079. "homepage": "https://symfony.com/contributors"
  6080. }
  6081. ],
  6082. "description": "Provides password hashing utilities",
  6083. "homepage": "https://symfony.com",
  6084. "keywords": [
  6085. "hashing",
  6086. "password"
  6087. ],
  6088. "support": {
  6089. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  6090. },
  6091. "funding": [
  6092. {
  6093. "url": "https://symfony.com/sponsor",
  6094. "type": "custom"
  6095. },
  6096. {
  6097. "url": "https://github.com/fabpot",
  6098. "type": "github"
  6099. },
  6100. {
  6101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6102. "type": "tidelift"
  6103. }
  6104. ],
  6105. "time": "2025-02-04T08:22:58+00:00"
  6106. },
  6107. {
  6108. "name": "symfony/polyfill-intl-grapheme",
  6109. "version": "v1.32.0",
  6110. "source": {
  6111. "type": "git",
  6112. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6113. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6114. },
  6115. "dist": {
  6116. "type": "zip",
  6117. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6118. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6119. "shasum": ""
  6120. },
  6121. "require": {
  6122. "php": ">=7.2"
  6123. },
  6124. "suggest": {
  6125. "ext-intl": "For best performance"
  6126. },
  6127. "type": "library",
  6128. "extra": {
  6129. "thanks": {
  6130. "url": "https://github.com/symfony/polyfill",
  6131. "name": "symfony/polyfill"
  6132. }
  6133. },
  6134. "autoload": {
  6135. "files": [
  6136. "bootstrap.php"
  6137. ],
  6138. "psr-4": {
  6139. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Nicolas Grekas",
  6149. "email": "p@tchwork.com"
  6150. },
  6151. {
  6152. "name": "Symfony Community",
  6153. "homepage": "https://symfony.com/contributors"
  6154. }
  6155. ],
  6156. "description": "Symfony polyfill for intl's grapheme_* functions",
  6157. "homepage": "https://symfony.com",
  6158. "keywords": [
  6159. "compatibility",
  6160. "grapheme",
  6161. "intl",
  6162. "polyfill",
  6163. "portable",
  6164. "shim"
  6165. ],
  6166. "support": {
  6167. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6168. },
  6169. "funding": [
  6170. {
  6171. "url": "https://symfony.com/sponsor",
  6172. "type": "custom"
  6173. },
  6174. {
  6175. "url": "https://github.com/fabpot",
  6176. "type": "github"
  6177. },
  6178. {
  6179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6180. "type": "tidelift"
  6181. }
  6182. ],
  6183. "time": "2024-09-09T11:45:10+00:00"
  6184. },
  6185. {
  6186. "name": "symfony/polyfill-intl-icu",
  6187. "version": "v1.32.0",
  6188. "source": {
  6189. "type": "git",
  6190. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6191. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  6192. },
  6193. "dist": {
  6194. "type": "zip",
  6195. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  6196. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  6197. "shasum": ""
  6198. },
  6199. "require": {
  6200. "php": ">=7.2"
  6201. },
  6202. "suggest": {
  6203. "ext-intl": "For best performance and support of other locales than \"en\""
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "thanks": {
  6208. "url": "https://github.com/symfony/polyfill",
  6209. "name": "symfony/polyfill"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "files": [
  6214. "bootstrap.php"
  6215. ],
  6216. "psr-4": {
  6217. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6218. },
  6219. "classmap": [
  6220. "Resources/stubs"
  6221. ],
  6222. "exclude-from-classmap": [
  6223. "/Tests/"
  6224. ]
  6225. },
  6226. "notification-url": "https://packagist.org/downloads/",
  6227. "license": [
  6228. "MIT"
  6229. ],
  6230. "authors": [
  6231. {
  6232. "name": "Nicolas Grekas",
  6233. "email": "p@tchwork.com"
  6234. },
  6235. {
  6236. "name": "Symfony Community",
  6237. "homepage": "https://symfony.com/contributors"
  6238. }
  6239. ],
  6240. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6241. "homepage": "https://symfony.com",
  6242. "keywords": [
  6243. "compatibility",
  6244. "icu",
  6245. "intl",
  6246. "polyfill",
  6247. "portable",
  6248. "shim"
  6249. ],
  6250. "support": {
  6251. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6264. "type": "tidelift"
  6265. }
  6266. ],
  6267. "time": "2024-12-21T18:38:29+00:00"
  6268. },
  6269. {
  6270. "name": "symfony/polyfill-intl-idn",
  6271. "version": "v1.32.0",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6275. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6280. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "php": ">=7.2",
  6285. "symfony/polyfill-intl-normalizer": "^1.10"
  6286. },
  6287. "suggest": {
  6288. "ext-intl": "For best performance"
  6289. },
  6290. "type": "library",
  6291. "extra": {
  6292. "thanks": {
  6293. "url": "https://github.com/symfony/polyfill",
  6294. "name": "symfony/polyfill"
  6295. }
  6296. },
  6297. "autoload": {
  6298. "files": [
  6299. "bootstrap.php"
  6300. ],
  6301. "psr-4": {
  6302. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6303. }
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "MIT"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "Laurent Bassin",
  6312. "email": "laurent@bassin.info"
  6313. },
  6314. {
  6315. "name": "Trevor Rowbotham",
  6316. "email": "trevor.rowbotham@pm.me"
  6317. },
  6318. {
  6319. "name": "Symfony Community",
  6320. "homepage": "https://symfony.com/contributors"
  6321. }
  6322. ],
  6323. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6324. "homepage": "https://symfony.com",
  6325. "keywords": [
  6326. "compatibility",
  6327. "idn",
  6328. "intl",
  6329. "polyfill",
  6330. "portable",
  6331. "shim"
  6332. ],
  6333. "support": {
  6334. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6335. },
  6336. "funding": [
  6337. {
  6338. "url": "https://symfony.com/sponsor",
  6339. "type": "custom"
  6340. },
  6341. {
  6342. "url": "https://github.com/fabpot",
  6343. "type": "github"
  6344. },
  6345. {
  6346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6347. "type": "tidelift"
  6348. }
  6349. ],
  6350. "time": "2024-09-10T14:38:51+00:00"
  6351. },
  6352. {
  6353. "name": "symfony/polyfill-intl-normalizer",
  6354. "version": "v1.32.0",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6358. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6363. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6364. "shasum": ""
  6365. },
  6366. "require": {
  6367. "php": ">=7.2"
  6368. },
  6369. "suggest": {
  6370. "ext-intl": "For best performance"
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "thanks": {
  6375. "url": "https://github.com/symfony/polyfill",
  6376. "name": "symfony/polyfill"
  6377. }
  6378. },
  6379. "autoload": {
  6380. "files": [
  6381. "bootstrap.php"
  6382. ],
  6383. "psr-4": {
  6384. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6385. },
  6386. "classmap": [
  6387. "Resources/stubs"
  6388. ]
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Nicolas Grekas",
  6397. "email": "p@tchwork.com"
  6398. },
  6399. {
  6400. "name": "Symfony Community",
  6401. "homepage": "https://symfony.com/contributors"
  6402. }
  6403. ],
  6404. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6405. "homepage": "https://symfony.com",
  6406. "keywords": [
  6407. "compatibility",
  6408. "intl",
  6409. "normalizer",
  6410. "polyfill",
  6411. "portable",
  6412. "shim"
  6413. ],
  6414. "support": {
  6415. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6416. },
  6417. "funding": [
  6418. {
  6419. "url": "https://symfony.com/sponsor",
  6420. "type": "custom"
  6421. },
  6422. {
  6423. "url": "https://github.com/fabpot",
  6424. "type": "github"
  6425. },
  6426. {
  6427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6428. "type": "tidelift"
  6429. }
  6430. ],
  6431. "time": "2024-09-09T11:45:10+00:00"
  6432. },
  6433. {
  6434. "name": "symfony/polyfill-mbstring",
  6435. "version": "v1.32.0",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6439. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6444. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "ext-iconv": "*",
  6449. "php": ">=7.2"
  6450. },
  6451. "provide": {
  6452. "ext-mbstring": "*"
  6453. },
  6454. "suggest": {
  6455. "ext-mbstring": "For best performance"
  6456. },
  6457. "type": "library",
  6458. "extra": {
  6459. "thanks": {
  6460. "url": "https://github.com/symfony/polyfill",
  6461. "name": "symfony/polyfill"
  6462. }
  6463. },
  6464. "autoload": {
  6465. "files": [
  6466. "bootstrap.php"
  6467. ],
  6468. "psr-4": {
  6469. "Symfony\\Polyfill\\Mbstring\\": ""
  6470. }
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "Nicolas Grekas",
  6479. "email": "p@tchwork.com"
  6480. },
  6481. {
  6482. "name": "Symfony Community",
  6483. "homepage": "https://symfony.com/contributors"
  6484. }
  6485. ],
  6486. "description": "Symfony polyfill for the Mbstring extension",
  6487. "homepage": "https://symfony.com",
  6488. "keywords": [
  6489. "compatibility",
  6490. "mbstring",
  6491. "polyfill",
  6492. "portable",
  6493. "shim"
  6494. ],
  6495. "support": {
  6496. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6497. },
  6498. "funding": [
  6499. {
  6500. "url": "https://symfony.com/sponsor",
  6501. "type": "custom"
  6502. },
  6503. {
  6504. "url": "https://github.com/fabpot",
  6505. "type": "github"
  6506. },
  6507. {
  6508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6509. "type": "tidelift"
  6510. }
  6511. ],
  6512. "time": "2024-12-23T08:48:59+00:00"
  6513. },
  6514. {
  6515. "name": "symfony/polyfill-php83",
  6516. "version": "v1.32.0",
  6517. "source": {
  6518. "type": "git",
  6519. "url": "https://github.com/symfony/polyfill-php83.git",
  6520. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6521. },
  6522. "dist": {
  6523. "type": "zip",
  6524. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6525. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6526. "shasum": ""
  6527. },
  6528. "require": {
  6529. "php": ">=7.2"
  6530. },
  6531. "type": "library",
  6532. "extra": {
  6533. "thanks": {
  6534. "url": "https://github.com/symfony/polyfill",
  6535. "name": "symfony/polyfill"
  6536. }
  6537. },
  6538. "autoload": {
  6539. "files": [
  6540. "bootstrap.php"
  6541. ],
  6542. "psr-4": {
  6543. "Symfony\\Polyfill\\Php83\\": ""
  6544. },
  6545. "classmap": [
  6546. "Resources/stubs"
  6547. ]
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "MIT"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Nicolas Grekas",
  6556. "email": "p@tchwork.com"
  6557. },
  6558. {
  6559. "name": "Symfony Community",
  6560. "homepage": "https://symfony.com/contributors"
  6561. }
  6562. ],
  6563. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6564. "homepage": "https://symfony.com",
  6565. "keywords": [
  6566. "compatibility",
  6567. "polyfill",
  6568. "portable",
  6569. "shim"
  6570. ],
  6571. "support": {
  6572. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  6573. },
  6574. "funding": [
  6575. {
  6576. "url": "https://symfony.com/sponsor",
  6577. "type": "custom"
  6578. },
  6579. {
  6580. "url": "https://github.com/fabpot",
  6581. "type": "github"
  6582. },
  6583. {
  6584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6585. "type": "tidelift"
  6586. }
  6587. ],
  6588. "time": "2024-09-09T11:45:10+00:00"
  6589. },
  6590. {
  6591. "name": "symfony/polyfill-php84",
  6592. "version": "v1.32.0",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/symfony/polyfill-php84.git",
  6596. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  6601. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  6602. "shasum": ""
  6603. },
  6604. "require": {
  6605. "php": ">=7.2"
  6606. },
  6607. "type": "library",
  6608. "extra": {
  6609. "thanks": {
  6610. "url": "https://github.com/symfony/polyfill",
  6611. "name": "symfony/polyfill"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "files": [
  6616. "bootstrap.php"
  6617. ],
  6618. "psr-4": {
  6619. "Symfony\\Polyfill\\Php84\\": ""
  6620. },
  6621. "classmap": [
  6622. "Resources/stubs"
  6623. ]
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Nicolas Grekas",
  6632. "email": "p@tchwork.com"
  6633. },
  6634. {
  6635. "name": "Symfony Community",
  6636. "homepage": "https://symfony.com/contributors"
  6637. }
  6638. ],
  6639. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  6640. "homepage": "https://symfony.com",
  6641. "keywords": [
  6642. "compatibility",
  6643. "polyfill",
  6644. "portable",
  6645. "shim"
  6646. ],
  6647. "support": {
  6648. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  6649. },
  6650. "funding": [
  6651. {
  6652. "url": "https://symfony.com/sponsor",
  6653. "type": "custom"
  6654. },
  6655. {
  6656. "url": "https://github.com/fabpot",
  6657. "type": "github"
  6658. },
  6659. {
  6660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6661. "type": "tidelift"
  6662. }
  6663. ],
  6664. "time": "2025-02-20T12:04:08+00:00"
  6665. },
  6666. {
  6667. "name": "symfony/polyfill-uuid",
  6668. "version": "v1.32.0",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/symfony/polyfill-uuid.git",
  6672. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6677. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6678. "shasum": ""
  6679. },
  6680. "require": {
  6681. "php": ">=7.2"
  6682. },
  6683. "provide": {
  6684. "ext-uuid": "*"
  6685. },
  6686. "suggest": {
  6687. "ext-uuid": "For best performance"
  6688. },
  6689. "type": "library",
  6690. "extra": {
  6691. "thanks": {
  6692. "url": "https://github.com/symfony/polyfill",
  6693. "name": "symfony/polyfill"
  6694. }
  6695. },
  6696. "autoload": {
  6697. "files": [
  6698. "bootstrap.php"
  6699. ],
  6700. "psr-4": {
  6701. "Symfony\\Polyfill\\Uuid\\": ""
  6702. }
  6703. },
  6704. "notification-url": "https://packagist.org/downloads/",
  6705. "license": [
  6706. "MIT"
  6707. ],
  6708. "authors": [
  6709. {
  6710. "name": "Grégoire Pineau",
  6711. "email": "lyrixx@lyrixx.info"
  6712. },
  6713. {
  6714. "name": "Symfony Community",
  6715. "homepage": "https://symfony.com/contributors"
  6716. }
  6717. ],
  6718. "description": "Symfony polyfill for uuid functions",
  6719. "homepage": "https://symfony.com",
  6720. "keywords": [
  6721. "compatibility",
  6722. "polyfill",
  6723. "portable",
  6724. "uuid"
  6725. ],
  6726. "support": {
  6727. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  6728. },
  6729. "funding": [
  6730. {
  6731. "url": "https://symfony.com/sponsor",
  6732. "type": "custom"
  6733. },
  6734. {
  6735. "url": "https://github.com/fabpot",
  6736. "type": "github"
  6737. },
  6738. {
  6739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6740. "type": "tidelift"
  6741. }
  6742. ],
  6743. "time": "2024-09-09T11:45:10+00:00"
  6744. },
  6745. {
  6746. "name": "symfony/process",
  6747. "version": "v7.3.0",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/symfony/process.git",
  6751. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  6756. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "php": ">=8.2"
  6761. },
  6762. "type": "library",
  6763. "autoload": {
  6764. "psr-4": {
  6765. "Symfony\\Component\\Process\\": ""
  6766. },
  6767. "exclude-from-classmap": [
  6768. "/Tests/"
  6769. ]
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Fabien Potencier",
  6778. "email": "fabien@symfony.com"
  6779. },
  6780. {
  6781. "name": "Symfony Community",
  6782. "homepage": "https://symfony.com/contributors"
  6783. }
  6784. ],
  6785. "description": "Executes commands in sub-processes",
  6786. "homepage": "https://symfony.com",
  6787. "support": {
  6788. "source": "https://github.com/symfony/process/tree/v7.3.0"
  6789. },
  6790. "funding": [
  6791. {
  6792. "url": "https://symfony.com/sponsor",
  6793. "type": "custom"
  6794. },
  6795. {
  6796. "url": "https://github.com/fabpot",
  6797. "type": "github"
  6798. },
  6799. {
  6800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6801. "type": "tidelift"
  6802. }
  6803. ],
  6804. "time": "2025-04-17T09:11:12+00:00"
  6805. },
  6806. {
  6807. "name": "symfony/property-access",
  6808. "version": "v7.3.1",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/symfony/property-access.git",
  6812. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/symfony/property-access/zipball/518d15c8cca726ebe665dcd7154074584cf862e8",
  6817. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8",
  6818. "shasum": ""
  6819. },
  6820. "require": {
  6821. "php": ">=8.2",
  6822. "symfony/property-info": "^6.4|^7.0"
  6823. },
  6824. "require-dev": {
  6825. "symfony/cache": "^6.4|^7.0"
  6826. },
  6827. "type": "library",
  6828. "autoload": {
  6829. "psr-4": {
  6830. "Symfony\\Component\\PropertyAccess\\": ""
  6831. },
  6832. "exclude-from-classmap": [
  6833. "/Tests/"
  6834. ]
  6835. },
  6836. "notification-url": "https://packagist.org/downloads/",
  6837. "license": [
  6838. "MIT"
  6839. ],
  6840. "authors": [
  6841. {
  6842. "name": "Fabien Potencier",
  6843. "email": "fabien@symfony.com"
  6844. },
  6845. {
  6846. "name": "Symfony Community",
  6847. "homepage": "https://symfony.com/contributors"
  6848. }
  6849. ],
  6850. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6851. "homepage": "https://symfony.com",
  6852. "keywords": [
  6853. "access",
  6854. "array",
  6855. "extraction",
  6856. "index",
  6857. "injection",
  6858. "object",
  6859. "property",
  6860. "property-path",
  6861. "reflection"
  6862. ],
  6863. "support": {
  6864. "source": "https://github.com/symfony/property-access/tree/v7.3.1"
  6865. },
  6866. "funding": [
  6867. {
  6868. "url": "https://symfony.com/sponsor",
  6869. "type": "custom"
  6870. },
  6871. {
  6872. "url": "https://github.com/fabpot",
  6873. "type": "github"
  6874. },
  6875. {
  6876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6877. "type": "tidelift"
  6878. }
  6879. ],
  6880. "time": "2025-06-24T04:04:43+00:00"
  6881. },
  6882. {
  6883. "name": "symfony/property-info",
  6884. "version": "v7.3.1",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/symfony/property-info.git",
  6888. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  6893. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  6894. "shasum": ""
  6895. },
  6896. "require": {
  6897. "php": ">=8.2",
  6898. "symfony/deprecation-contracts": "^2.5|^3",
  6899. "symfony/string": "^6.4|^7.0",
  6900. "symfony/type-info": "~7.2.8|^7.3.1"
  6901. },
  6902. "conflict": {
  6903. "phpdocumentor/reflection-docblock": "<5.2",
  6904. "phpdocumentor/type-resolver": "<1.5.1",
  6905. "symfony/cache": "<6.4",
  6906. "symfony/dependency-injection": "<6.4",
  6907. "symfony/serializer": "<6.4"
  6908. },
  6909. "require-dev": {
  6910. "phpdocumentor/reflection-docblock": "^5.2",
  6911. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6912. "symfony/cache": "^6.4|^7.0",
  6913. "symfony/dependency-injection": "^6.4|^7.0",
  6914. "symfony/serializer": "^6.4|^7.0"
  6915. },
  6916. "type": "library",
  6917. "autoload": {
  6918. "psr-4": {
  6919. "Symfony\\Component\\PropertyInfo\\": ""
  6920. },
  6921. "exclude-from-classmap": [
  6922. "/Tests/"
  6923. ]
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Kévin Dunglas",
  6932. "email": "dunglas@gmail.com"
  6933. },
  6934. {
  6935. "name": "Symfony Community",
  6936. "homepage": "https://symfony.com/contributors"
  6937. }
  6938. ],
  6939. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6940. "homepage": "https://symfony.com",
  6941. "keywords": [
  6942. "doctrine",
  6943. "phpdoc",
  6944. "property",
  6945. "symfony",
  6946. "type",
  6947. "validator"
  6948. ],
  6949. "support": {
  6950. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2025-06-27T19:55:54+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/routing",
  6970. "version": "v7.3.0",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/routing.git",
  6974. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  6979. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  6980. "shasum": ""
  6981. },
  6982. "require": {
  6983. "php": ">=8.2",
  6984. "symfony/deprecation-contracts": "^2.5|^3"
  6985. },
  6986. "conflict": {
  6987. "symfony/config": "<6.4",
  6988. "symfony/dependency-injection": "<6.4",
  6989. "symfony/yaml": "<6.4"
  6990. },
  6991. "require-dev": {
  6992. "psr/log": "^1|^2|^3",
  6993. "symfony/config": "^6.4|^7.0",
  6994. "symfony/dependency-injection": "^6.4|^7.0",
  6995. "symfony/expression-language": "^6.4|^7.0",
  6996. "symfony/http-foundation": "^6.4|^7.0",
  6997. "symfony/yaml": "^6.4|^7.0"
  6998. },
  6999. "type": "library",
  7000. "autoload": {
  7001. "psr-4": {
  7002. "Symfony\\Component\\Routing\\": ""
  7003. },
  7004. "exclude-from-classmap": [
  7005. "/Tests/"
  7006. ]
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "license": [
  7010. "MIT"
  7011. ],
  7012. "authors": [
  7013. {
  7014. "name": "Fabien Potencier",
  7015. "email": "fabien@symfony.com"
  7016. },
  7017. {
  7018. "name": "Symfony Community",
  7019. "homepage": "https://symfony.com/contributors"
  7020. }
  7021. ],
  7022. "description": "Maps an HTTP request to a set of configuration variables",
  7023. "homepage": "https://symfony.com",
  7024. "keywords": [
  7025. "router",
  7026. "routing",
  7027. "uri",
  7028. "url"
  7029. ],
  7030. "support": {
  7031. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  7032. },
  7033. "funding": [
  7034. {
  7035. "url": "https://symfony.com/sponsor",
  7036. "type": "custom"
  7037. },
  7038. {
  7039. "url": "https://github.com/fabpot",
  7040. "type": "github"
  7041. },
  7042. {
  7043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7044. "type": "tidelift"
  7045. }
  7046. ],
  7047. "time": "2025-05-24T20:43:28+00:00"
  7048. },
  7049. {
  7050. "name": "symfony/runtime",
  7051. "version": "v7.3.1",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/symfony/runtime.git",
  7055. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/symfony/runtime/zipball/9516056d432f8acdac9458eb41b80097da7a05c9",
  7060. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "composer-plugin-api": "^1.0|^2.0",
  7065. "php": ">=8.2"
  7066. },
  7067. "conflict": {
  7068. "symfony/dotenv": "<6.4"
  7069. },
  7070. "require-dev": {
  7071. "composer/composer": "^2.6",
  7072. "symfony/console": "^6.4|^7.0",
  7073. "symfony/dotenv": "^6.4|^7.0",
  7074. "symfony/http-foundation": "^6.4|^7.0",
  7075. "symfony/http-kernel": "^6.4|^7.0"
  7076. },
  7077. "type": "composer-plugin",
  7078. "extra": {
  7079. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  7080. },
  7081. "autoload": {
  7082. "psr-4": {
  7083. "Symfony\\Component\\Runtime\\": "",
  7084. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  7085. },
  7086. "exclude-from-classmap": [
  7087. "/Tests/"
  7088. ]
  7089. },
  7090. "notification-url": "https://packagist.org/downloads/",
  7091. "license": [
  7092. "MIT"
  7093. ],
  7094. "authors": [
  7095. {
  7096. "name": "Nicolas Grekas",
  7097. "email": "p@tchwork.com"
  7098. },
  7099. {
  7100. "name": "Symfony Community",
  7101. "homepage": "https://symfony.com/contributors"
  7102. }
  7103. ],
  7104. "description": "Enables decoupling PHP applications from global state",
  7105. "homepage": "https://symfony.com",
  7106. "keywords": [
  7107. "runtime"
  7108. ],
  7109. "support": {
  7110. "source": "https://github.com/symfony/runtime/tree/v7.3.1"
  7111. },
  7112. "funding": [
  7113. {
  7114. "url": "https://symfony.com/sponsor",
  7115. "type": "custom"
  7116. },
  7117. {
  7118. "url": "https://github.com/fabpot",
  7119. "type": "github"
  7120. },
  7121. {
  7122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7123. "type": "tidelift"
  7124. }
  7125. ],
  7126. "time": "2025-06-13T07:48:40+00:00"
  7127. },
  7128. {
  7129. "name": "symfony/security-bundle",
  7130. "version": "v7.3.1",
  7131. "source": {
  7132. "type": "git",
  7133. "url": "https://github.com/symfony/security-bundle.git",
  7134. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079"
  7135. },
  7136. "dist": {
  7137. "type": "zip",
  7138. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/428a281fd66c8358adc2259c8578e6d81fbb7079",
  7139. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079",
  7140. "shasum": ""
  7141. },
  7142. "require": {
  7143. "composer-runtime-api": ">=2.1",
  7144. "ext-xml": "*",
  7145. "php": ">=8.2",
  7146. "symfony/clock": "^6.4|^7.0",
  7147. "symfony/config": "^7.3",
  7148. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  7149. "symfony/event-dispatcher": "^6.4|^7.0",
  7150. "symfony/http-foundation": "^6.4|^7.0",
  7151. "symfony/http-kernel": "^6.4|^7.0",
  7152. "symfony/password-hasher": "^6.4|^7.0",
  7153. "symfony/security-core": "^7.3",
  7154. "symfony/security-csrf": "^6.4|^7.0",
  7155. "symfony/security-http": "^7.3",
  7156. "symfony/service-contracts": "^2.5|^3"
  7157. },
  7158. "conflict": {
  7159. "symfony/browser-kit": "<6.4",
  7160. "symfony/console": "<6.4",
  7161. "symfony/framework-bundle": "<6.4",
  7162. "symfony/http-client": "<6.4",
  7163. "symfony/ldap": "<6.4",
  7164. "symfony/serializer": "<6.4",
  7165. "symfony/twig-bundle": "<6.4",
  7166. "symfony/validator": "<6.4"
  7167. },
  7168. "require-dev": {
  7169. "symfony/asset": "^6.4|^7.0",
  7170. "symfony/browser-kit": "^6.4|^7.0",
  7171. "symfony/console": "^6.4|^7.0",
  7172. "symfony/css-selector": "^6.4|^7.0",
  7173. "symfony/dom-crawler": "^6.4|^7.0",
  7174. "symfony/expression-language": "^6.4|^7.0",
  7175. "symfony/form": "^6.4|^7.0",
  7176. "symfony/framework-bundle": "^6.4|^7.0",
  7177. "symfony/http-client": "^6.4|^7.0",
  7178. "symfony/ldap": "^6.4|^7.0",
  7179. "symfony/process": "^6.4|^7.0",
  7180. "symfony/rate-limiter": "^6.4|^7.0",
  7181. "symfony/serializer": "^6.4|^7.0",
  7182. "symfony/translation": "^6.4|^7.0",
  7183. "symfony/twig-bridge": "^6.4|^7.0",
  7184. "symfony/twig-bundle": "^6.4|^7.0",
  7185. "symfony/validator": "^6.4|^7.0",
  7186. "symfony/yaml": "^6.4|^7.0",
  7187. "twig/twig": "^3.12",
  7188. "web-token/jwt-library": "^3.3.2|^4.0"
  7189. },
  7190. "type": "symfony-bundle",
  7191. "autoload": {
  7192. "psr-4": {
  7193. "Symfony\\Bundle\\SecurityBundle\\": ""
  7194. },
  7195. "exclude-from-classmap": [
  7196. "/Tests/"
  7197. ]
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "MIT"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Fabien Potencier",
  7206. "email": "fabien@symfony.com"
  7207. },
  7208. {
  7209. "name": "Symfony Community",
  7210. "homepage": "https://symfony.com/contributors"
  7211. }
  7212. ],
  7213. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  7214. "homepage": "https://symfony.com",
  7215. "support": {
  7216. "source": "https://github.com/symfony/security-bundle/tree/v7.3.1"
  7217. },
  7218. "funding": [
  7219. {
  7220. "url": "https://symfony.com/sponsor",
  7221. "type": "custom"
  7222. },
  7223. {
  7224. "url": "https://github.com/fabpot",
  7225. "type": "github"
  7226. },
  7227. {
  7228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7229. "type": "tidelift"
  7230. }
  7231. ],
  7232. "time": "2025-06-24T04:04:43+00:00"
  7233. },
  7234. {
  7235. "name": "symfony/security-core",
  7236. "version": "v7.3.1",
  7237. "source": {
  7238. "type": "git",
  7239. "url": "https://github.com/symfony/security-core.git",
  7240. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba"
  7241. },
  7242. "dist": {
  7243. "type": "zip",
  7244. "url": "https://api.github.com/repos/symfony/security-core/zipball/fafab1003a31e51506e1a0a83e81c072211d81ba",
  7245. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba",
  7246. "shasum": ""
  7247. },
  7248. "require": {
  7249. "php": ">=8.2",
  7250. "symfony/deprecation-contracts": "^2.5|^3",
  7251. "symfony/event-dispatcher-contracts": "^2.5|^3",
  7252. "symfony/password-hasher": "^6.4|^7.0",
  7253. "symfony/service-contracts": "^2.5|^3"
  7254. },
  7255. "conflict": {
  7256. "symfony/dependency-injection": "<6.4",
  7257. "symfony/event-dispatcher": "<6.4",
  7258. "symfony/http-foundation": "<6.4",
  7259. "symfony/ldap": "<6.4",
  7260. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7261. "symfony/validator": "<6.4"
  7262. },
  7263. "require-dev": {
  7264. "psr/cache": "^1.0|^2.0|^3.0",
  7265. "psr/container": "^1.1|^2.0",
  7266. "psr/log": "^1|^2|^3",
  7267. "symfony/cache": "^6.4|^7.0",
  7268. "symfony/dependency-injection": "^6.4|^7.0",
  7269. "symfony/event-dispatcher": "^6.4|^7.0",
  7270. "symfony/expression-language": "^6.4|^7.0",
  7271. "symfony/http-foundation": "^6.4|^7.0",
  7272. "symfony/ldap": "^6.4|^7.0",
  7273. "symfony/string": "^6.4|^7.0",
  7274. "symfony/translation": "^6.4.3|^7.0.3",
  7275. "symfony/validator": "^6.4|^7.0"
  7276. },
  7277. "type": "library",
  7278. "autoload": {
  7279. "psr-4": {
  7280. "Symfony\\Component\\Security\\Core\\": ""
  7281. },
  7282. "exclude-from-classmap": [
  7283. "/Tests/"
  7284. ]
  7285. },
  7286. "notification-url": "https://packagist.org/downloads/",
  7287. "license": [
  7288. "MIT"
  7289. ],
  7290. "authors": [
  7291. {
  7292. "name": "Fabien Potencier",
  7293. "email": "fabien@symfony.com"
  7294. },
  7295. {
  7296. "name": "Symfony Community",
  7297. "homepage": "https://symfony.com/contributors"
  7298. }
  7299. ],
  7300. "description": "Symfony Security Component - Core Library",
  7301. "homepage": "https://symfony.com",
  7302. "support": {
  7303. "source": "https://github.com/symfony/security-core/tree/v7.3.1"
  7304. },
  7305. "funding": [
  7306. {
  7307. "url": "https://symfony.com/sponsor",
  7308. "type": "custom"
  7309. },
  7310. {
  7311. "url": "https://github.com/fabpot",
  7312. "type": "github"
  7313. },
  7314. {
  7315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7316. "type": "tidelift"
  7317. }
  7318. ],
  7319. "time": "2025-06-23T07:28:50+00:00"
  7320. },
  7321. {
  7322. "name": "symfony/security-csrf",
  7323. "version": "v7.3.0",
  7324. "source": {
  7325. "type": "git",
  7326. "url": "https://github.com/symfony/security-csrf.git",
  7327. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  7328. },
  7329. "dist": {
  7330. "type": "zip",
  7331. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  7332. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  7333. "shasum": ""
  7334. },
  7335. "require": {
  7336. "php": ">=8.2",
  7337. "symfony/security-core": "^6.4|^7.0"
  7338. },
  7339. "conflict": {
  7340. "symfony/http-foundation": "<6.4"
  7341. },
  7342. "require-dev": {
  7343. "psr/log": "^1|^2|^3",
  7344. "symfony/http-foundation": "^6.4|^7.0",
  7345. "symfony/http-kernel": "^6.4|^7.0"
  7346. },
  7347. "type": "library",
  7348. "autoload": {
  7349. "psr-4": {
  7350. "Symfony\\Component\\Security\\Csrf\\": ""
  7351. },
  7352. "exclude-from-classmap": [
  7353. "/Tests/"
  7354. ]
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Fabien Potencier",
  7363. "email": "fabien@symfony.com"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Symfony Security Component - CSRF Library",
  7371. "homepage": "https://symfony.com",
  7372. "support": {
  7373. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  7374. },
  7375. "funding": [
  7376. {
  7377. "url": "https://symfony.com/sponsor",
  7378. "type": "custom"
  7379. },
  7380. {
  7381. "url": "https://github.com/fabpot",
  7382. "type": "github"
  7383. },
  7384. {
  7385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7386. "type": "tidelift"
  7387. }
  7388. ],
  7389. "time": "2025-01-02T18:42:10+00:00"
  7390. },
  7391. {
  7392. "name": "symfony/security-http",
  7393. "version": "v7.3.1",
  7394. "source": {
  7395. "type": "git",
  7396. "url": "https://github.com/symfony/security-http.git",
  7397. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84"
  7398. },
  7399. "dist": {
  7400. "type": "zip",
  7401. "url": "https://api.github.com/repos/symfony/security-http/zipball/b7182ed0fd2359297f78ff6d407265168255ea84",
  7402. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84",
  7403. "shasum": ""
  7404. },
  7405. "require": {
  7406. "php": ">=8.2",
  7407. "symfony/deprecation-contracts": "^2.5|^3",
  7408. "symfony/http-foundation": "^6.4|^7.0",
  7409. "symfony/http-kernel": "^6.4|^7.0",
  7410. "symfony/polyfill-mbstring": "~1.0",
  7411. "symfony/property-access": "^6.4|^7.0",
  7412. "symfony/security-core": "^7.3",
  7413. "symfony/service-contracts": "^2.5|^3"
  7414. },
  7415. "conflict": {
  7416. "symfony/clock": "<6.4",
  7417. "symfony/event-dispatcher": "<6.4",
  7418. "symfony/http-client-contracts": "<3.0",
  7419. "symfony/security-bundle": "<6.4",
  7420. "symfony/security-csrf": "<6.4"
  7421. },
  7422. "require-dev": {
  7423. "psr/log": "^1|^2|^3",
  7424. "symfony/cache": "^6.4|^7.0",
  7425. "symfony/clock": "^6.4|^7.0",
  7426. "symfony/expression-language": "^6.4|^7.0",
  7427. "symfony/http-client": "^6.4|^7.0",
  7428. "symfony/http-client-contracts": "^3.0",
  7429. "symfony/rate-limiter": "^6.4|^7.0",
  7430. "symfony/routing": "^6.4|^7.0",
  7431. "symfony/security-csrf": "^6.4|^7.0",
  7432. "symfony/translation": "^6.4|^7.0",
  7433. "web-token/jwt-library": "^3.3.2|^4.0"
  7434. },
  7435. "type": "library",
  7436. "autoload": {
  7437. "psr-4": {
  7438. "Symfony\\Component\\Security\\Http\\": ""
  7439. },
  7440. "exclude-from-classmap": [
  7441. "/Tests/"
  7442. ]
  7443. },
  7444. "notification-url": "https://packagist.org/downloads/",
  7445. "license": [
  7446. "MIT"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "Fabien Potencier",
  7451. "email": "fabien@symfony.com"
  7452. },
  7453. {
  7454. "name": "Symfony Community",
  7455. "homepage": "https://symfony.com/contributors"
  7456. }
  7457. ],
  7458. "description": "Symfony Security Component - HTTP Integration",
  7459. "homepage": "https://symfony.com",
  7460. "support": {
  7461. "source": "https://github.com/symfony/security-http/tree/v7.3.1"
  7462. },
  7463. "funding": [
  7464. {
  7465. "url": "https://symfony.com/sponsor",
  7466. "type": "custom"
  7467. },
  7468. {
  7469. "url": "https://github.com/fabpot",
  7470. "type": "github"
  7471. },
  7472. {
  7473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7474. "type": "tidelift"
  7475. }
  7476. ],
  7477. "time": "2025-06-24T04:04:43+00:00"
  7478. },
  7479. {
  7480. "name": "symfony/serializer",
  7481. "version": "v7.3.1",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://github.com/symfony/serializer.git",
  7485. "reference": "feaf837cedbbc8287986602223175d3fd639922d"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://api.github.com/repos/symfony/serializer/zipball/feaf837cedbbc8287986602223175d3fd639922d",
  7490. "reference": "feaf837cedbbc8287986602223175d3fd639922d",
  7491. "shasum": ""
  7492. },
  7493. "require": {
  7494. "php": ">=8.2",
  7495. "symfony/deprecation-contracts": "^2.5|^3",
  7496. "symfony/polyfill-ctype": "~1.8"
  7497. },
  7498. "conflict": {
  7499. "phpdocumentor/reflection-docblock": "<3.2.2",
  7500. "phpdocumentor/type-resolver": "<1.4.0",
  7501. "symfony/dependency-injection": "<6.4",
  7502. "symfony/property-access": "<6.4",
  7503. "symfony/property-info": "<6.4",
  7504. "symfony/uid": "<6.4",
  7505. "symfony/validator": "<6.4",
  7506. "symfony/yaml": "<6.4"
  7507. },
  7508. "require-dev": {
  7509. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7510. "phpstan/phpdoc-parser": "^1.0|^2.0",
  7511. "seld/jsonlint": "^1.10",
  7512. "symfony/cache": "^6.4|^7.0",
  7513. "symfony/config": "^6.4|^7.0",
  7514. "symfony/console": "^6.4|^7.0",
  7515. "symfony/dependency-injection": "^7.2",
  7516. "symfony/error-handler": "^6.4|^7.0",
  7517. "symfony/filesystem": "^6.4|^7.0",
  7518. "symfony/form": "^6.4|^7.0",
  7519. "symfony/http-foundation": "^6.4|^7.0",
  7520. "symfony/http-kernel": "^6.4|^7.0",
  7521. "symfony/messenger": "^6.4|^7.0",
  7522. "symfony/mime": "^6.4|^7.0",
  7523. "symfony/property-access": "^6.4|^7.0",
  7524. "symfony/property-info": "^6.4|^7.0",
  7525. "symfony/translation-contracts": "^2.5|^3",
  7526. "symfony/type-info": "^7.1",
  7527. "symfony/uid": "^6.4|^7.0",
  7528. "symfony/validator": "^6.4|^7.0",
  7529. "symfony/var-dumper": "^6.4|^7.0",
  7530. "symfony/var-exporter": "^6.4|^7.0",
  7531. "symfony/yaml": "^6.4|^7.0"
  7532. },
  7533. "type": "library",
  7534. "autoload": {
  7535. "psr-4": {
  7536. "Symfony\\Component\\Serializer\\": ""
  7537. },
  7538. "exclude-from-classmap": [
  7539. "/Tests/"
  7540. ]
  7541. },
  7542. "notification-url": "https://packagist.org/downloads/",
  7543. "license": [
  7544. "MIT"
  7545. ],
  7546. "authors": [
  7547. {
  7548. "name": "Fabien Potencier",
  7549. "email": "fabien@symfony.com"
  7550. },
  7551. {
  7552. "name": "Symfony Community",
  7553. "homepage": "https://symfony.com/contributors"
  7554. }
  7555. ],
  7556. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7557. "homepage": "https://symfony.com",
  7558. "support": {
  7559. "source": "https://github.com/symfony/serializer/tree/v7.3.1"
  7560. },
  7561. "funding": [
  7562. {
  7563. "url": "https://symfony.com/sponsor",
  7564. "type": "custom"
  7565. },
  7566. {
  7567. "url": "https://github.com/fabpot",
  7568. "type": "github"
  7569. },
  7570. {
  7571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7572. "type": "tidelift"
  7573. }
  7574. ],
  7575. "time": "2025-06-27T19:55:54+00:00"
  7576. },
  7577. {
  7578. "name": "symfony/service-contracts",
  7579. "version": "v3.6.0",
  7580. "source": {
  7581. "type": "git",
  7582. "url": "https://github.com/symfony/service-contracts.git",
  7583. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  7584. },
  7585. "dist": {
  7586. "type": "zip",
  7587. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  7588. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  7589. "shasum": ""
  7590. },
  7591. "require": {
  7592. "php": ">=8.1",
  7593. "psr/container": "^1.1|^2.0",
  7594. "symfony/deprecation-contracts": "^2.5|^3"
  7595. },
  7596. "conflict": {
  7597. "ext-psr": "<1.1|>=2"
  7598. },
  7599. "type": "library",
  7600. "extra": {
  7601. "thanks": {
  7602. "url": "https://github.com/symfony/contracts",
  7603. "name": "symfony/contracts"
  7604. },
  7605. "branch-alias": {
  7606. "dev-main": "3.6-dev"
  7607. }
  7608. },
  7609. "autoload": {
  7610. "psr-4": {
  7611. "Symfony\\Contracts\\Service\\": ""
  7612. },
  7613. "exclude-from-classmap": [
  7614. "/Test/"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "MIT"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Nicolas Grekas",
  7624. "email": "p@tchwork.com"
  7625. },
  7626. {
  7627. "name": "Symfony Community",
  7628. "homepage": "https://symfony.com/contributors"
  7629. }
  7630. ],
  7631. "description": "Generic abstractions related to writing services",
  7632. "homepage": "https://symfony.com",
  7633. "keywords": [
  7634. "abstractions",
  7635. "contracts",
  7636. "decoupling",
  7637. "interfaces",
  7638. "interoperability",
  7639. "standards"
  7640. ],
  7641. "support": {
  7642. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  7643. },
  7644. "funding": [
  7645. {
  7646. "url": "https://symfony.com/sponsor",
  7647. "type": "custom"
  7648. },
  7649. {
  7650. "url": "https://github.com/fabpot",
  7651. "type": "github"
  7652. },
  7653. {
  7654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7655. "type": "tidelift"
  7656. }
  7657. ],
  7658. "time": "2025-04-25T09:37:31+00:00"
  7659. },
  7660. {
  7661. "name": "symfony/stimulus-bundle",
  7662. "version": "v2.27.0",
  7663. "source": {
  7664. "type": "git",
  7665. "url": "https://github.com/symfony/stimulus-bundle.git",
  7666. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814"
  7667. },
  7668. "dist": {
  7669. "type": "zip",
  7670. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  7671. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  7672. "shasum": ""
  7673. },
  7674. "require": {
  7675. "php": ">=8.1",
  7676. "symfony/config": "^5.4|^6.0|^7.0",
  7677. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7678. "symfony/deprecation-contracts": "^2.0|^3.0",
  7679. "symfony/finder": "^5.4|^6.0|^7.0",
  7680. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7681. "twig/twig": "^2.15.3|^3.8"
  7682. },
  7683. "require-dev": {
  7684. "symfony/asset-mapper": "^6.3|^7.0",
  7685. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7686. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7687. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7688. "zenstruck/browser": "^1.4"
  7689. },
  7690. "type": "symfony-bundle",
  7691. "autoload": {
  7692. "psr-4": {
  7693. "Symfony\\UX\\StimulusBundle\\": "src"
  7694. }
  7695. },
  7696. "notification-url": "https://packagist.org/downloads/",
  7697. "license": [
  7698. "MIT"
  7699. ],
  7700. "authors": [
  7701. {
  7702. "name": "Symfony Community",
  7703. "homepage": "https://symfony.com/contributors"
  7704. }
  7705. ],
  7706. "description": "Integration with your Symfony app & Stimulus!",
  7707. "keywords": [
  7708. "symfony-ux"
  7709. ],
  7710. "support": {
  7711. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.27.0"
  7712. },
  7713. "funding": [
  7714. {
  7715. "url": "https://symfony.com/sponsor",
  7716. "type": "custom"
  7717. },
  7718. {
  7719. "url": "https://github.com/fabpot",
  7720. "type": "github"
  7721. },
  7722. {
  7723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7724. "type": "tidelift"
  7725. }
  7726. ],
  7727. "time": "2025-06-22T19:07:55+00:00"
  7728. },
  7729. {
  7730. "name": "symfony/stopwatch",
  7731. "version": "v7.3.0",
  7732. "source": {
  7733. "type": "git",
  7734. "url": "https://github.com/symfony/stopwatch.git",
  7735. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  7736. },
  7737. "dist": {
  7738. "type": "zip",
  7739. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  7740. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  7741. "shasum": ""
  7742. },
  7743. "require": {
  7744. "php": ">=8.2",
  7745. "symfony/service-contracts": "^2.5|^3"
  7746. },
  7747. "type": "library",
  7748. "autoload": {
  7749. "psr-4": {
  7750. "Symfony\\Component\\Stopwatch\\": ""
  7751. },
  7752. "exclude-from-classmap": [
  7753. "/Tests/"
  7754. ]
  7755. },
  7756. "notification-url": "https://packagist.org/downloads/",
  7757. "license": [
  7758. "MIT"
  7759. ],
  7760. "authors": [
  7761. {
  7762. "name": "Fabien Potencier",
  7763. "email": "fabien@symfony.com"
  7764. },
  7765. {
  7766. "name": "Symfony Community",
  7767. "homepage": "https://symfony.com/contributors"
  7768. }
  7769. ],
  7770. "description": "Provides a way to profile code",
  7771. "homepage": "https://symfony.com",
  7772. "support": {
  7773. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  7774. },
  7775. "funding": [
  7776. {
  7777. "url": "https://symfony.com/sponsor",
  7778. "type": "custom"
  7779. },
  7780. {
  7781. "url": "https://github.com/fabpot",
  7782. "type": "github"
  7783. },
  7784. {
  7785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7786. "type": "tidelift"
  7787. }
  7788. ],
  7789. "time": "2025-02-24T10:49:57+00:00"
  7790. },
  7791. {
  7792. "name": "symfony/string",
  7793. "version": "v7.3.0",
  7794. "source": {
  7795. "type": "git",
  7796. "url": "https://github.com/symfony/string.git",
  7797. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  7798. },
  7799. "dist": {
  7800. "type": "zip",
  7801. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  7802. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  7803. "shasum": ""
  7804. },
  7805. "require": {
  7806. "php": ">=8.2",
  7807. "symfony/polyfill-ctype": "~1.8",
  7808. "symfony/polyfill-intl-grapheme": "~1.0",
  7809. "symfony/polyfill-intl-normalizer": "~1.0",
  7810. "symfony/polyfill-mbstring": "~1.0"
  7811. },
  7812. "conflict": {
  7813. "symfony/translation-contracts": "<2.5"
  7814. },
  7815. "require-dev": {
  7816. "symfony/emoji": "^7.1",
  7817. "symfony/error-handler": "^6.4|^7.0",
  7818. "symfony/http-client": "^6.4|^7.0",
  7819. "symfony/intl": "^6.4|^7.0",
  7820. "symfony/translation-contracts": "^2.5|^3.0",
  7821. "symfony/var-exporter": "^6.4|^7.0"
  7822. },
  7823. "type": "library",
  7824. "autoload": {
  7825. "files": [
  7826. "Resources/functions.php"
  7827. ],
  7828. "psr-4": {
  7829. "Symfony\\Component\\String\\": ""
  7830. },
  7831. "exclude-from-classmap": [
  7832. "/Tests/"
  7833. ]
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "MIT"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Nicolas Grekas",
  7842. "email": "p@tchwork.com"
  7843. },
  7844. {
  7845. "name": "Symfony Community",
  7846. "homepage": "https://symfony.com/contributors"
  7847. }
  7848. ],
  7849. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7850. "homepage": "https://symfony.com",
  7851. "keywords": [
  7852. "grapheme",
  7853. "i18n",
  7854. "string",
  7855. "unicode",
  7856. "utf-8",
  7857. "utf8"
  7858. ],
  7859. "support": {
  7860. "source": "https://github.com/symfony/string/tree/v7.3.0"
  7861. },
  7862. "funding": [
  7863. {
  7864. "url": "https://symfony.com/sponsor",
  7865. "type": "custom"
  7866. },
  7867. {
  7868. "url": "https://github.com/fabpot",
  7869. "type": "github"
  7870. },
  7871. {
  7872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7873. "type": "tidelift"
  7874. }
  7875. ],
  7876. "time": "2025-04-20T20:19:01+00:00"
  7877. },
  7878. {
  7879. "name": "symfony/translation",
  7880. "version": "v7.3.1",
  7881. "source": {
  7882. "type": "git",
  7883. "url": "https://github.com/symfony/translation.git",
  7884. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  7885. },
  7886. "dist": {
  7887. "type": "zip",
  7888. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  7889. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  7890. "shasum": ""
  7891. },
  7892. "require": {
  7893. "php": ">=8.2",
  7894. "symfony/deprecation-contracts": "^2.5|^3",
  7895. "symfony/polyfill-mbstring": "~1.0",
  7896. "symfony/translation-contracts": "^2.5|^3.0"
  7897. },
  7898. "conflict": {
  7899. "nikic/php-parser": "<5.0",
  7900. "symfony/config": "<6.4",
  7901. "symfony/console": "<6.4",
  7902. "symfony/dependency-injection": "<6.4",
  7903. "symfony/http-client-contracts": "<2.5",
  7904. "symfony/http-kernel": "<6.4",
  7905. "symfony/service-contracts": "<2.5",
  7906. "symfony/twig-bundle": "<6.4",
  7907. "symfony/yaml": "<6.4"
  7908. },
  7909. "provide": {
  7910. "symfony/translation-implementation": "2.3|3.0"
  7911. },
  7912. "require-dev": {
  7913. "nikic/php-parser": "^5.0",
  7914. "psr/log": "^1|^2|^3",
  7915. "symfony/config": "^6.4|^7.0",
  7916. "symfony/console": "^6.4|^7.0",
  7917. "symfony/dependency-injection": "^6.4|^7.0",
  7918. "symfony/finder": "^6.4|^7.0",
  7919. "symfony/http-client-contracts": "^2.5|^3.0",
  7920. "symfony/http-kernel": "^6.4|^7.0",
  7921. "symfony/intl": "^6.4|^7.0",
  7922. "symfony/polyfill-intl-icu": "^1.21",
  7923. "symfony/routing": "^6.4|^7.0",
  7924. "symfony/service-contracts": "^2.5|^3",
  7925. "symfony/yaml": "^6.4|^7.0"
  7926. },
  7927. "type": "library",
  7928. "autoload": {
  7929. "files": [
  7930. "Resources/functions.php"
  7931. ],
  7932. "psr-4": {
  7933. "Symfony\\Component\\Translation\\": ""
  7934. },
  7935. "exclude-from-classmap": [
  7936. "/Tests/"
  7937. ]
  7938. },
  7939. "notification-url": "https://packagist.org/downloads/",
  7940. "license": [
  7941. "MIT"
  7942. ],
  7943. "authors": [
  7944. {
  7945. "name": "Fabien Potencier",
  7946. "email": "fabien@symfony.com"
  7947. },
  7948. {
  7949. "name": "Symfony Community",
  7950. "homepage": "https://symfony.com/contributors"
  7951. }
  7952. ],
  7953. "description": "Provides tools to internationalize your application",
  7954. "homepage": "https://symfony.com",
  7955. "support": {
  7956. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  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-27T19:55:54+00:00"
  7973. },
  7974. {
  7975. "name": "symfony/translation-contracts",
  7976. "version": "v3.6.0",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/symfony/translation-contracts.git",
  7980. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7985. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7986. "shasum": ""
  7987. },
  7988. "require": {
  7989. "php": ">=8.1"
  7990. },
  7991. "type": "library",
  7992. "extra": {
  7993. "thanks": {
  7994. "url": "https://github.com/symfony/contracts",
  7995. "name": "symfony/contracts"
  7996. },
  7997. "branch-alias": {
  7998. "dev-main": "3.6-dev"
  7999. }
  8000. },
  8001. "autoload": {
  8002. "psr-4": {
  8003. "Symfony\\Contracts\\Translation\\": ""
  8004. },
  8005. "exclude-from-classmap": [
  8006. "/Test/"
  8007. ]
  8008. },
  8009. "notification-url": "https://packagist.org/downloads/",
  8010. "license": [
  8011. "MIT"
  8012. ],
  8013. "authors": [
  8014. {
  8015. "name": "Nicolas Grekas",
  8016. "email": "p@tchwork.com"
  8017. },
  8018. {
  8019. "name": "Symfony Community",
  8020. "homepage": "https://symfony.com/contributors"
  8021. }
  8022. ],
  8023. "description": "Generic abstractions related to translation",
  8024. "homepage": "https://symfony.com",
  8025. "keywords": [
  8026. "abstractions",
  8027. "contracts",
  8028. "decoupling",
  8029. "interfaces",
  8030. "interoperability",
  8031. "standards"
  8032. ],
  8033. "support": {
  8034. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  8035. },
  8036. "funding": [
  8037. {
  8038. "url": "https://symfony.com/sponsor",
  8039. "type": "custom"
  8040. },
  8041. {
  8042. "url": "https://github.com/fabpot",
  8043. "type": "github"
  8044. },
  8045. {
  8046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8047. "type": "tidelift"
  8048. }
  8049. ],
  8050. "time": "2024-09-27T08:32:26+00:00"
  8051. },
  8052. {
  8053. "name": "symfony/twig-bridge",
  8054. "version": "v7.3.0",
  8055. "source": {
  8056. "type": "git",
  8057. "url": "https://github.com/symfony/twig-bridge.git",
  8058. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891"
  8059. },
  8060. "dist": {
  8061. "type": "zip",
  8062. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  8063. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  8064. "shasum": ""
  8065. },
  8066. "require": {
  8067. "php": ">=8.2",
  8068. "symfony/deprecation-contracts": "^2.5|^3",
  8069. "symfony/translation-contracts": "^2.5|^3",
  8070. "twig/twig": "^3.21"
  8071. },
  8072. "conflict": {
  8073. "phpdocumentor/reflection-docblock": "<3.2.2",
  8074. "phpdocumentor/type-resolver": "<1.4.0",
  8075. "symfony/console": "<6.4",
  8076. "symfony/form": "<6.4",
  8077. "symfony/http-foundation": "<6.4",
  8078. "symfony/http-kernel": "<6.4",
  8079. "symfony/mime": "<6.4",
  8080. "symfony/serializer": "<6.4",
  8081. "symfony/translation": "<6.4",
  8082. "symfony/workflow": "<6.4"
  8083. },
  8084. "require-dev": {
  8085. "egulias/email-validator": "^2.1.10|^3|^4",
  8086. "league/html-to-markdown": "^5.0",
  8087. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8088. "symfony/asset": "^6.4|^7.0",
  8089. "symfony/asset-mapper": "^6.4|^7.0",
  8090. "symfony/console": "^6.4|^7.0",
  8091. "symfony/dependency-injection": "^6.4|^7.0",
  8092. "symfony/emoji": "^7.1",
  8093. "symfony/expression-language": "^6.4|^7.0",
  8094. "symfony/finder": "^6.4|^7.0",
  8095. "symfony/form": "^6.4.20|^7.2.5",
  8096. "symfony/html-sanitizer": "^6.4|^7.0",
  8097. "symfony/http-foundation": "^7.3",
  8098. "symfony/http-kernel": "^6.4|^7.0",
  8099. "symfony/intl": "^6.4|^7.0",
  8100. "symfony/mime": "^6.4|^7.0",
  8101. "symfony/polyfill-intl-icu": "~1.0",
  8102. "symfony/property-info": "^6.4|^7.0",
  8103. "symfony/routing": "^6.4|^7.0",
  8104. "symfony/security-acl": "^2.8|^3.0",
  8105. "symfony/security-core": "^6.4|^7.0",
  8106. "symfony/security-csrf": "^6.4|^7.0",
  8107. "symfony/security-http": "^6.4|^7.0",
  8108. "symfony/serializer": "^6.4.3|^7.0.3",
  8109. "symfony/stopwatch": "^6.4|^7.0",
  8110. "symfony/translation": "^6.4|^7.0",
  8111. "symfony/validator": "^6.4|^7.0",
  8112. "symfony/web-link": "^6.4|^7.0",
  8113. "symfony/workflow": "^6.4|^7.0",
  8114. "symfony/yaml": "^6.4|^7.0",
  8115. "twig/cssinliner-extra": "^3",
  8116. "twig/inky-extra": "^3",
  8117. "twig/markdown-extra": "^3"
  8118. },
  8119. "type": "symfony-bridge",
  8120. "autoload": {
  8121. "psr-4": {
  8122. "Symfony\\Bridge\\Twig\\": ""
  8123. },
  8124. "exclude-from-classmap": [
  8125. "/Tests/"
  8126. ]
  8127. },
  8128. "notification-url": "https://packagist.org/downloads/",
  8129. "license": [
  8130. "MIT"
  8131. ],
  8132. "authors": [
  8133. {
  8134. "name": "Fabien Potencier",
  8135. "email": "fabien@symfony.com"
  8136. },
  8137. {
  8138. "name": "Symfony Community",
  8139. "homepage": "https://symfony.com/contributors"
  8140. }
  8141. ],
  8142. "description": "Provides integration for Twig with various Symfony components",
  8143. "homepage": "https://symfony.com",
  8144. "support": {
  8145. "source": "https://github.com/symfony/twig-bridge/tree/v7.3.0"
  8146. },
  8147. "funding": [
  8148. {
  8149. "url": "https://symfony.com/sponsor",
  8150. "type": "custom"
  8151. },
  8152. {
  8153. "url": "https://github.com/fabpot",
  8154. "type": "github"
  8155. },
  8156. {
  8157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8158. "type": "tidelift"
  8159. }
  8160. ],
  8161. "time": "2025-05-19T13:28:56+00:00"
  8162. },
  8163. {
  8164. "name": "symfony/twig-bundle",
  8165. "version": "v7.3.1",
  8166. "source": {
  8167. "type": "git",
  8168. "url": "https://github.com/symfony/twig-bundle.git",
  8169. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896"
  8170. },
  8171. "dist": {
  8172. "type": "zip",
  8173. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  8174. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  8175. "shasum": ""
  8176. },
  8177. "require": {
  8178. "composer-runtime-api": ">=2.1",
  8179. "php": ">=8.2",
  8180. "symfony/config": "^7.3",
  8181. "symfony/dependency-injection": "^6.4|^7.0",
  8182. "symfony/http-foundation": "^6.4|^7.0",
  8183. "symfony/http-kernel": "^6.4|^7.0",
  8184. "symfony/twig-bridge": "^7.3",
  8185. "twig/twig": "^3.12"
  8186. },
  8187. "conflict": {
  8188. "symfony/framework-bundle": "<6.4",
  8189. "symfony/translation": "<6.4"
  8190. },
  8191. "require-dev": {
  8192. "symfony/asset": "^6.4|^7.0",
  8193. "symfony/expression-language": "^6.4|^7.0",
  8194. "symfony/finder": "^6.4|^7.0",
  8195. "symfony/form": "^6.4|^7.0",
  8196. "symfony/framework-bundle": "^6.4|^7.0",
  8197. "symfony/routing": "^6.4|^7.0",
  8198. "symfony/stopwatch": "^6.4|^7.0",
  8199. "symfony/translation": "^6.4|^7.0",
  8200. "symfony/web-link": "^6.4|^7.0",
  8201. "symfony/yaml": "^6.4|^7.0"
  8202. },
  8203. "type": "symfony-bundle",
  8204. "autoload": {
  8205. "psr-4": {
  8206. "Symfony\\Bundle\\TwigBundle\\": ""
  8207. },
  8208. "exclude-from-classmap": [
  8209. "/Tests/"
  8210. ]
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "authors": [
  8217. {
  8218. "name": "Fabien Potencier",
  8219. "email": "fabien@symfony.com"
  8220. },
  8221. {
  8222. "name": "Symfony Community",
  8223. "homepage": "https://symfony.com/contributors"
  8224. }
  8225. ],
  8226. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8227. "homepage": "https://symfony.com",
  8228. "support": {
  8229. "source": "https://github.com/symfony/twig-bundle/tree/v7.3.1"
  8230. },
  8231. "funding": [
  8232. {
  8233. "url": "https://symfony.com/sponsor",
  8234. "type": "custom"
  8235. },
  8236. {
  8237. "url": "https://github.com/fabpot",
  8238. "type": "github"
  8239. },
  8240. {
  8241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8242. "type": "tidelift"
  8243. }
  8244. ],
  8245. "time": "2025-06-24T04:04:43+00:00"
  8246. },
  8247. {
  8248. "name": "symfony/type-info",
  8249. "version": "v7.3.1",
  8250. "source": {
  8251. "type": "git",
  8252. "url": "https://github.com/symfony/type-info.git",
  8253. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150"
  8254. },
  8255. "dist": {
  8256. "type": "zip",
  8257. "url": "https://api.github.com/repos/symfony/type-info/zipball/5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  8258. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  8259. "shasum": ""
  8260. },
  8261. "require": {
  8262. "php": ">=8.2",
  8263. "psr/container": "^1.1|^2.0",
  8264. "symfony/deprecation-contracts": "^2.5|^3"
  8265. },
  8266. "conflict": {
  8267. "phpstan/phpdoc-parser": "<1.30"
  8268. },
  8269. "require-dev": {
  8270. "phpstan/phpdoc-parser": "^1.30|^2.0"
  8271. },
  8272. "type": "library",
  8273. "autoload": {
  8274. "psr-4": {
  8275. "Symfony\\Component\\TypeInfo\\": ""
  8276. },
  8277. "exclude-from-classmap": [
  8278. "/Tests/"
  8279. ]
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "MIT"
  8284. ],
  8285. "authors": [
  8286. {
  8287. "name": "Mathias Arlaud",
  8288. "email": "mathias.arlaud@gmail.com"
  8289. },
  8290. {
  8291. "name": "Baptiste LEDUC",
  8292. "email": "baptiste.leduc@gmail.com"
  8293. },
  8294. {
  8295. "name": "Symfony Community",
  8296. "homepage": "https://symfony.com/contributors"
  8297. }
  8298. ],
  8299. "description": "Extracts PHP types information.",
  8300. "homepage": "https://symfony.com",
  8301. "keywords": [
  8302. "PHPStan",
  8303. "phpdoc",
  8304. "symfony",
  8305. "type"
  8306. ],
  8307. "support": {
  8308. "source": "https://github.com/symfony/type-info/tree/v7.3.1"
  8309. },
  8310. "funding": [
  8311. {
  8312. "url": "https://symfony.com/sponsor",
  8313. "type": "custom"
  8314. },
  8315. {
  8316. "url": "https://github.com/fabpot",
  8317. "type": "github"
  8318. },
  8319. {
  8320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8321. "type": "tidelift"
  8322. }
  8323. ],
  8324. "time": "2025-06-27T19:55:54+00:00"
  8325. },
  8326. {
  8327. "name": "symfony/uid",
  8328. "version": "v7.3.1",
  8329. "source": {
  8330. "type": "git",
  8331. "url": "https://github.com/symfony/uid.git",
  8332. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  8333. },
  8334. "dist": {
  8335. "type": "zip",
  8336. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  8337. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  8338. "shasum": ""
  8339. },
  8340. "require": {
  8341. "php": ">=8.2",
  8342. "symfony/polyfill-uuid": "^1.15"
  8343. },
  8344. "require-dev": {
  8345. "symfony/console": "^6.4|^7.0"
  8346. },
  8347. "type": "library",
  8348. "autoload": {
  8349. "psr-4": {
  8350. "Symfony\\Component\\Uid\\": ""
  8351. },
  8352. "exclude-from-classmap": [
  8353. "/Tests/"
  8354. ]
  8355. },
  8356. "notification-url": "https://packagist.org/downloads/",
  8357. "license": [
  8358. "MIT"
  8359. ],
  8360. "authors": [
  8361. {
  8362. "name": "Grégoire Pineau",
  8363. "email": "lyrixx@lyrixx.info"
  8364. },
  8365. {
  8366. "name": "Nicolas Grekas",
  8367. "email": "p@tchwork.com"
  8368. },
  8369. {
  8370. "name": "Symfony Community",
  8371. "homepage": "https://symfony.com/contributors"
  8372. }
  8373. ],
  8374. "description": "Provides an object-oriented API to generate and represent UIDs",
  8375. "homepage": "https://symfony.com",
  8376. "keywords": [
  8377. "UID",
  8378. "ulid",
  8379. "uuid"
  8380. ],
  8381. "support": {
  8382. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  8383. },
  8384. "funding": [
  8385. {
  8386. "url": "https://symfony.com/sponsor",
  8387. "type": "custom"
  8388. },
  8389. {
  8390. "url": "https://github.com/fabpot",
  8391. "type": "github"
  8392. },
  8393. {
  8394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8395. "type": "tidelift"
  8396. }
  8397. ],
  8398. "time": "2025-06-27T19:55:54+00:00"
  8399. },
  8400. {
  8401. "name": "symfony/ux-icons",
  8402. "version": "v2.27.0",
  8403. "source": {
  8404. "type": "git",
  8405. "url": "https://github.com/symfony/ux-icons.git",
  8406. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00"
  8407. },
  8408. "dist": {
  8409. "type": "zip",
  8410. "url": "https://api.github.com/repos/symfony/ux-icons/zipball/af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  8411. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  8412. "shasum": ""
  8413. },
  8414. "require": {
  8415. "php": ">=8.1",
  8416. "symfony/framework-bundle": "^6.4|^7.0",
  8417. "symfony/twig-bundle": "^6.4|^7.0"
  8418. },
  8419. "conflict": {
  8420. "symfony/flex": "<1.13",
  8421. "symfony/ux-twig-component": "<2.21"
  8422. },
  8423. "require-dev": {
  8424. "psr/log": "^2|^3",
  8425. "symfony/asset-mapper": "^6.4|^7.0",
  8426. "symfony/console": "^6.4|^7.0",
  8427. "symfony/http-client": "6.4|^7.0",
  8428. "symfony/phpunit-bridge": "^6.3|^7.0",
  8429. "symfony/ux-twig-component": "^2.14",
  8430. "zenstruck/console-test": "^1.5"
  8431. },
  8432. "type": "symfony-bundle",
  8433. "extra": {
  8434. "thanks": {
  8435. "url": "https://github.com/symfony/ux",
  8436. "name": "symfony/ux"
  8437. }
  8438. },
  8439. "autoload": {
  8440. "psr-4": {
  8441. "Symfony\\UX\\Icons\\": "src/"
  8442. }
  8443. },
  8444. "notification-url": "https://packagist.org/downloads/",
  8445. "license": [
  8446. "MIT"
  8447. ],
  8448. "authors": [
  8449. {
  8450. "name": "Kevin Bond",
  8451. "email": "kevinbond@gmail.com"
  8452. },
  8453. {
  8454. "name": "Simon André",
  8455. "email": "smn.andre@gmail.com"
  8456. },
  8457. {
  8458. "name": "Symfony Community",
  8459. "homepage": "https://symfony.com/contributors"
  8460. }
  8461. ],
  8462. "description": "Renders local and remote SVG icons in your Twig templates.",
  8463. "homepage": "https://symfony.com",
  8464. "keywords": [
  8465. "icons",
  8466. "svg",
  8467. "symfony-ux",
  8468. "twig"
  8469. ],
  8470. "support": {
  8471. "source": "https://github.com/symfony/ux-icons/tree/v2.27.0"
  8472. },
  8473. "funding": [
  8474. {
  8475. "url": "https://symfony.com/sponsor",
  8476. "type": "custom"
  8477. },
  8478. {
  8479. "url": "https://github.com/fabpot",
  8480. "type": "github"
  8481. },
  8482. {
  8483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8484. "type": "tidelift"
  8485. }
  8486. ],
  8487. "time": "2025-06-17T06:15:15+00:00"
  8488. },
  8489. {
  8490. "name": "symfony/ux-toggle-password",
  8491. "version": "v2.27.0",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/symfony/ux-toggle-password.git",
  8495. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/symfony/ux-toggle-password/zipball/9753f554d00e0f86f44726165f9af6e6513086b7",
  8500. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "php": ">=8.1",
  8505. "symfony/config": "^5.4|^6.0|^7.0",
  8506. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8507. "symfony/form": "^5.4|^6.0|^7.0",
  8508. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8509. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  8510. "symfony/translation": "^5.4|^6.0|^7.0"
  8511. },
  8512. "require-dev": {
  8513. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  8514. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8515. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  8516. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8517. "twig/twig": "^2.14.7|^3.0.4"
  8518. },
  8519. "type": "symfony-bundle",
  8520. "extra": {
  8521. "thanks": {
  8522. "url": "https://github.com/symfony/ux",
  8523. "name": "symfony/ux"
  8524. }
  8525. },
  8526. "autoload": {
  8527. "psr-4": {
  8528. "Symfony\\UX\\TogglePassword\\": "src/"
  8529. }
  8530. },
  8531. "notification-url": "https://packagist.org/downloads/",
  8532. "license": [
  8533. "MIT"
  8534. ],
  8535. "authors": [
  8536. {
  8537. "name": "Félix Eymonot",
  8538. "email": "felix.eymonot@alximy.io"
  8539. },
  8540. {
  8541. "name": "Symfony Community",
  8542. "homepage": "https://symfony.com/contributors"
  8543. }
  8544. ],
  8545. "description": "Toggle visibility of password inputs for Symfony Forms",
  8546. "homepage": "https://symfony.com",
  8547. "keywords": [
  8548. "symfony-ux"
  8549. ],
  8550. "support": {
  8551. "source": "https://github.com/symfony/ux-toggle-password/tree/v2.27.0"
  8552. },
  8553. "funding": [
  8554. {
  8555. "url": "https://symfony.com/sponsor",
  8556. "type": "custom"
  8557. },
  8558. {
  8559. "url": "https://github.com/fabpot",
  8560. "type": "github"
  8561. },
  8562. {
  8563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8564. "type": "tidelift"
  8565. }
  8566. ],
  8567. "time": "2025-06-06T20:27:21+00:00"
  8568. },
  8569. {
  8570. "name": "symfony/ux-turbo",
  8571. "version": "v2.27.0",
  8572. "source": {
  8573. "type": "git",
  8574. "url": "https://github.com/symfony/ux-turbo.git",
  8575. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2"
  8576. },
  8577. "dist": {
  8578. "type": "zip",
  8579. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  8580. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  8581. "shasum": ""
  8582. },
  8583. "require": {
  8584. "php": ">=8.1",
  8585. "symfony/stimulus-bundle": "^2.9.1"
  8586. },
  8587. "conflict": {
  8588. "symfony/flex": "<1.13"
  8589. },
  8590. "require-dev": {
  8591. "dbrekelmans/bdi": "dev-main",
  8592. "doctrine/doctrine-bundle": "^2.4.3",
  8593. "doctrine/orm": "^2.8 | 3.0",
  8594. "php-webdriver/webdriver": "^1.15",
  8595. "phpstan/phpstan": "^2.1.17",
  8596. "symfony/asset-mapper": "^6.4|^7.0",
  8597. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  8598. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8599. "symfony/form": "^5.4|^6.0|^7.0",
  8600. "symfony/framework-bundle": "^6.4|^7.0",
  8601. "symfony/mercure-bundle": "^0.3.7",
  8602. "symfony/messenger": "^5.4|^6.0|^7.0",
  8603. "symfony/panther": "^2.2",
  8604. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8605. "symfony/process": "^5.4|6.3.*|^7.0",
  8606. "symfony/property-access": "^5.4|^6.0|^7.0",
  8607. "symfony/security-core": "^5.4|^6.0|^7.0",
  8608. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8609. "symfony/twig-bundle": "^6.4|^7.0",
  8610. "symfony/ux-twig-component": "^2.21",
  8611. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  8612. },
  8613. "type": "symfony-bundle",
  8614. "extra": {
  8615. "thanks": {
  8616. "url": "https://github.com/symfony/ux",
  8617. "name": "symfony/ux"
  8618. }
  8619. },
  8620. "autoload": {
  8621. "psr-4": {
  8622. "Symfony\\UX\\Turbo\\": "src/"
  8623. }
  8624. },
  8625. "notification-url": "https://packagist.org/downloads/",
  8626. "license": [
  8627. "MIT"
  8628. ],
  8629. "authors": [
  8630. {
  8631. "name": "Kévin Dunglas",
  8632. "email": "kevin@dunglas.fr"
  8633. },
  8634. {
  8635. "name": "Symfony Community",
  8636. "homepage": "https://symfony.com/contributors"
  8637. }
  8638. ],
  8639. "description": "Hotwire Turbo integration for Symfony",
  8640. "homepage": "https://symfony.com",
  8641. "keywords": [
  8642. "hotwire",
  8643. "javascript",
  8644. "mercure",
  8645. "symfony-ux",
  8646. "turbo",
  8647. "turbo-stream"
  8648. ],
  8649. "support": {
  8650. "source": "https://github.com/symfony/ux-turbo/tree/v2.27.0"
  8651. },
  8652. "funding": [
  8653. {
  8654. "url": "https://symfony.com/sponsor",
  8655. "type": "custom"
  8656. },
  8657. {
  8658. "url": "https://github.com/fabpot",
  8659. "type": "github"
  8660. },
  8661. {
  8662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8663. "type": "tidelift"
  8664. }
  8665. ],
  8666. "time": "2025-06-06T20:27:21+00:00"
  8667. },
  8668. {
  8669. "name": "symfony/ux-twig-component",
  8670. "version": "v2.27.0",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/symfony/ux-twig-component.git",
  8674. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  8679. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "php": ">=8.1",
  8684. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8685. "symfony/deprecation-contracts": "^2.2|^3.0",
  8686. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8687. "symfony/property-access": "^5.4|^6.0|^7.0",
  8688. "twig/twig": "^3.10.3"
  8689. },
  8690. "conflict": {
  8691. "symfony/config": "<5.4.0"
  8692. },
  8693. "require-dev": {
  8694. "symfony/console": "^5.4|^6.0|^7.0",
  8695. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8696. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8697. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  8698. "symfony/phpunit-bridge": "^6.0|^7.0",
  8699. "symfony/stimulus-bundle": "^2.9.1",
  8700. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  8701. "symfony/webpack-encore-bundle": "^1.15"
  8702. },
  8703. "type": "symfony-bundle",
  8704. "extra": {
  8705. "thanks": {
  8706. "url": "https://github.com/symfony/ux",
  8707. "name": "symfony/ux"
  8708. }
  8709. },
  8710. "autoload": {
  8711. "psr-4": {
  8712. "Symfony\\UX\\TwigComponent\\": "src/"
  8713. }
  8714. },
  8715. "notification-url": "https://packagist.org/downloads/",
  8716. "license": [
  8717. "MIT"
  8718. ],
  8719. "authors": [
  8720. {
  8721. "name": "Symfony Community",
  8722. "homepage": "https://symfony.com/contributors"
  8723. }
  8724. ],
  8725. "description": "Twig components for Symfony",
  8726. "homepage": "https://symfony.com",
  8727. "keywords": [
  8728. "components",
  8729. "symfony-ux",
  8730. "twig"
  8731. ],
  8732. "support": {
  8733. "source": "https://github.com/symfony/ux-twig-component/tree/v2.27.0"
  8734. },
  8735. "funding": [
  8736. {
  8737. "url": "https://symfony.com/sponsor",
  8738. "type": "custom"
  8739. },
  8740. {
  8741. "url": "https://github.com/fabpot",
  8742. "type": "github"
  8743. },
  8744. {
  8745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8746. "type": "tidelift"
  8747. }
  8748. ],
  8749. "time": "2025-06-21T16:41:28+00:00"
  8750. },
  8751. {
  8752. "name": "symfony/validator",
  8753. "version": "v7.3.1",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/symfony/validator.git",
  8757. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/symfony/validator/zipball/e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  8762. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "php": ">=8.2",
  8767. "symfony/deprecation-contracts": "^2.5|^3",
  8768. "symfony/polyfill-ctype": "~1.8",
  8769. "symfony/polyfill-mbstring": "~1.0",
  8770. "symfony/polyfill-php83": "^1.27",
  8771. "symfony/translation-contracts": "^2.5|^3"
  8772. },
  8773. "conflict": {
  8774. "doctrine/lexer": "<1.1",
  8775. "symfony/dependency-injection": "<6.4",
  8776. "symfony/doctrine-bridge": "<7.0",
  8777. "symfony/expression-language": "<6.4",
  8778. "symfony/http-kernel": "<6.4",
  8779. "symfony/intl": "<6.4",
  8780. "symfony/property-info": "<6.4",
  8781. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8782. "symfony/yaml": "<6.4"
  8783. },
  8784. "require-dev": {
  8785. "egulias/email-validator": "^2.1.10|^3|^4",
  8786. "symfony/cache": "^6.4|^7.0",
  8787. "symfony/config": "^6.4|^7.0",
  8788. "symfony/console": "^6.4|^7.0",
  8789. "symfony/dependency-injection": "^6.4|^7.0",
  8790. "symfony/expression-language": "^6.4|^7.0",
  8791. "symfony/finder": "^6.4|^7.0",
  8792. "symfony/http-client": "^6.4|^7.0",
  8793. "symfony/http-foundation": "^6.4|^7.0",
  8794. "symfony/http-kernel": "^6.4|^7.0",
  8795. "symfony/intl": "^6.4|^7.0",
  8796. "symfony/mime": "^6.4|^7.0",
  8797. "symfony/property-access": "^6.4|^7.0",
  8798. "symfony/property-info": "^6.4|^7.0",
  8799. "symfony/string": "^6.4|^7.0",
  8800. "symfony/translation": "^6.4.3|^7.0.3",
  8801. "symfony/type-info": "^7.1",
  8802. "symfony/yaml": "^6.4|^7.0"
  8803. },
  8804. "type": "library",
  8805. "autoload": {
  8806. "psr-4": {
  8807. "Symfony\\Component\\Validator\\": ""
  8808. },
  8809. "exclude-from-classmap": [
  8810. "/Tests/",
  8811. "/Resources/bin/"
  8812. ]
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "MIT"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Fabien Potencier",
  8821. "email": "fabien@symfony.com"
  8822. },
  8823. {
  8824. "name": "Symfony Community",
  8825. "homepage": "https://symfony.com/contributors"
  8826. }
  8827. ],
  8828. "description": "Provides tools to validate values",
  8829. "homepage": "https://symfony.com",
  8830. "support": {
  8831. "source": "https://github.com/symfony/validator/tree/v7.3.1"
  8832. },
  8833. "funding": [
  8834. {
  8835. "url": "https://symfony.com/sponsor",
  8836. "type": "custom"
  8837. },
  8838. {
  8839. "url": "https://github.com/fabpot",
  8840. "type": "github"
  8841. },
  8842. {
  8843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8844. "type": "tidelift"
  8845. }
  8846. ],
  8847. "time": "2025-06-26T13:22:23+00:00"
  8848. },
  8849. {
  8850. "name": "symfony/var-dumper",
  8851. "version": "v7.3.1",
  8852. "source": {
  8853. "type": "git",
  8854. "url": "https://github.com/symfony/var-dumper.git",
  8855. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  8856. },
  8857. "dist": {
  8858. "type": "zip",
  8859. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  8860. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  8861. "shasum": ""
  8862. },
  8863. "require": {
  8864. "php": ">=8.2",
  8865. "symfony/deprecation-contracts": "^2.5|^3",
  8866. "symfony/polyfill-mbstring": "~1.0"
  8867. },
  8868. "conflict": {
  8869. "symfony/console": "<6.4"
  8870. },
  8871. "require-dev": {
  8872. "ext-iconv": "*",
  8873. "symfony/console": "^6.4|^7.0",
  8874. "symfony/http-kernel": "^6.4|^7.0",
  8875. "symfony/process": "^6.4|^7.0",
  8876. "symfony/uid": "^6.4|^7.0",
  8877. "twig/twig": "^3.12"
  8878. },
  8879. "bin": [
  8880. "Resources/bin/var-dump-server"
  8881. ],
  8882. "type": "library",
  8883. "autoload": {
  8884. "files": [
  8885. "Resources/functions/dump.php"
  8886. ],
  8887. "psr-4": {
  8888. "Symfony\\Component\\VarDumper\\": ""
  8889. },
  8890. "exclude-from-classmap": [
  8891. "/Tests/"
  8892. ]
  8893. },
  8894. "notification-url": "https://packagist.org/downloads/",
  8895. "license": [
  8896. "MIT"
  8897. ],
  8898. "authors": [
  8899. {
  8900. "name": "Nicolas Grekas",
  8901. "email": "p@tchwork.com"
  8902. },
  8903. {
  8904. "name": "Symfony Community",
  8905. "homepage": "https://symfony.com/contributors"
  8906. }
  8907. ],
  8908. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8909. "homepage": "https://symfony.com",
  8910. "keywords": [
  8911. "debug",
  8912. "dump"
  8913. ],
  8914. "support": {
  8915. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  8916. },
  8917. "funding": [
  8918. {
  8919. "url": "https://symfony.com/sponsor",
  8920. "type": "custom"
  8921. },
  8922. {
  8923. "url": "https://github.com/fabpot",
  8924. "type": "github"
  8925. },
  8926. {
  8927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8928. "type": "tidelift"
  8929. }
  8930. ],
  8931. "time": "2025-06-27T19:55:54+00:00"
  8932. },
  8933. {
  8934. "name": "symfony/var-exporter",
  8935. "version": "v7.3.0",
  8936. "source": {
  8937. "type": "git",
  8938. "url": "https://github.com/symfony/var-exporter.git",
  8939. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c"
  8940. },
  8941. "dist": {
  8942. "type": "zip",
  8943. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c9a1168891b5aaadfd6332ef44393330b3498c4c",
  8944. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c",
  8945. "shasum": ""
  8946. },
  8947. "require": {
  8948. "php": ">=8.2",
  8949. "symfony/deprecation-contracts": "^2.5|^3"
  8950. },
  8951. "require-dev": {
  8952. "symfony/property-access": "^6.4|^7.0",
  8953. "symfony/serializer": "^6.4|^7.0",
  8954. "symfony/var-dumper": "^6.4|^7.0"
  8955. },
  8956. "type": "library",
  8957. "autoload": {
  8958. "psr-4": {
  8959. "Symfony\\Component\\VarExporter\\": ""
  8960. },
  8961. "exclude-from-classmap": [
  8962. "/Tests/"
  8963. ]
  8964. },
  8965. "notification-url": "https://packagist.org/downloads/",
  8966. "license": [
  8967. "MIT"
  8968. ],
  8969. "authors": [
  8970. {
  8971. "name": "Nicolas Grekas",
  8972. "email": "p@tchwork.com"
  8973. },
  8974. {
  8975. "name": "Symfony Community",
  8976. "homepage": "https://symfony.com/contributors"
  8977. }
  8978. ],
  8979. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8980. "homepage": "https://symfony.com",
  8981. "keywords": [
  8982. "clone",
  8983. "construct",
  8984. "export",
  8985. "hydrate",
  8986. "instantiate",
  8987. "lazy-loading",
  8988. "proxy",
  8989. "serialize"
  8990. ],
  8991. "support": {
  8992. "source": "https://github.com/symfony/var-exporter/tree/v7.3.0"
  8993. },
  8994. "funding": [
  8995. {
  8996. "url": "https://symfony.com/sponsor",
  8997. "type": "custom"
  8998. },
  8999. {
  9000. "url": "https://github.com/fabpot",
  9001. "type": "github"
  9002. },
  9003. {
  9004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9005. "type": "tidelift"
  9006. }
  9007. ],
  9008. "time": "2025-05-15T09:04:05+00:00"
  9009. },
  9010. {
  9011. "name": "symfony/web-link",
  9012. "version": "v7.3.0",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/symfony/web-link.git",
  9016. "reference": "7697f74fce67555665339423ce453cc8216a98ff"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/symfony/web-link/zipball/7697f74fce67555665339423ce453cc8216a98ff",
  9021. "reference": "7697f74fce67555665339423ce453cc8216a98ff",
  9022. "shasum": ""
  9023. },
  9024. "require": {
  9025. "php": ">=8.2",
  9026. "psr/link": "^1.1|^2.0"
  9027. },
  9028. "conflict": {
  9029. "symfony/http-kernel": "<6.4"
  9030. },
  9031. "provide": {
  9032. "psr/link-implementation": "1.0|2.0"
  9033. },
  9034. "require-dev": {
  9035. "symfony/http-kernel": "^6.4|^7.0"
  9036. },
  9037. "type": "library",
  9038. "autoload": {
  9039. "psr-4": {
  9040. "Symfony\\Component\\WebLink\\": ""
  9041. },
  9042. "exclude-from-classmap": [
  9043. "/Tests/"
  9044. ]
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "MIT"
  9049. ],
  9050. "authors": [
  9051. {
  9052. "name": "Kévin Dunglas",
  9053. "email": "dunglas@gmail.com"
  9054. },
  9055. {
  9056. "name": "Symfony Community",
  9057. "homepage": "https://symfony.com/contributors"
  9058. }
  9059. ],
  9060. "description": "Manages links between resources",
  9061. "homepage": "https://symfony.com",
  9062. "keywords": [
  9063. "dns-prefetch",
  9064. "http",
  9065. "http2",
  9066. "link",
  9067. "performance",
  9068. "prefetch",
  9069. "preload",
  9070. "prerender",
  9071. "psr13",
  9072. "push"
  9073. ],
  9074. "support": {
  9075. "source": "https://github.com/symfony/web-link/tree/v7.3.0"
  9076. },
  9077. "funding": [
  9078. {
  9079. "url": "https://symfony.com/sponsor",
  9080. "type": "custom"
  9081. },
  9082. {
  9083. "url": "https://github.com/fabpot",
  9084. "type": "github"
  9085. },
  9086. {
  9087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9088. "type": "tidelift"
  9089. }
  9090. ],
  9091. "time": "2025-05-19T13:28:18+00:00"
  9092. },
  9093. {
  9094. "name": "symfony/yaml",
  9095. "version": "v7.3.1",
  9096. "source": {
  9097. "type": "git",
  9098. "url": "https://github.com/symfony/yaml.git",
  9099. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  9100. },
  9101. "dist": {
  9102. "type": "zip",
  9103. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  9104. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  9105. "shasum": ""
  9106. },
  9107. "require": {
  9108. "php": ">=8.2",
  9109. "symfony/deprecation-contracts": "^2.5|^3.0",
  9110. "symfony/polyfill-ctype": "^1.8"
  9111. },
  9112. "conflict": {
  9113. "symfony/console": "<6.4"
  9114. },
  9115. "require-dev": {
  9116. "symfony/console": "^6.4|^7.0"
  9117. },
  9118. "bin": [
  9119. "Resources/bin/yaml-lint"
  9120. ],
  9121. "type": "library",
  9122. "autoload": {
  9123. "psr-4": {
  9124. "Symfony\\Component\\Yaml\\": ""
  9125. },
  9126. "exclude-from-classmap": [
  9127. "/Tests/"
  9128. ]
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "MIT"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Fabien Potencier",
  9137. "email": "fabien@symfony.com"
  9138. },
  9139. {
  9140. "name": "Symfony Community",
  9141. "homepage": "https://symfony.com/contributors"
  9142. }
  9143. ],
  9144. "description": "Loads and dumps YAML files",
  9145. "homepage": "https://symfony.com",
  9146. "support": {
  9147. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  9148. },
  9149. "funding": [
  9150. {
  9151. "url": "https://symfony.com/sponsor",
  9152. "type": "custom"
  9153. },
  9154. {
  9155. "url": "https://github.com/fabpot",
  9156. "type": "github"
  9157. },
  9158. {
  9159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9160. "type": "tidelift"
  9161. }
  9162. ],
  9163. "time": "2025-06-03T06:57:57+00:00"
  9164. },
  9165. {
  9166. "name": "symfonycasts/reset-password-bundle",
  9167. "version": "v1.23.1",
  9168. "source": {
  9169. "type": "git",
  9170. "url": "https://github.com/SymfonyCasts/reset-password-bundle.git",
  9171. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2"
  9172. },
  9173. "dist": {
  9174. "type": "zip",
  9175. "url": "https://api.github.com/repos/SymfonyCasts/reset-password-bundle/zipball/bde42fe5956e0cd523931da886ee41ab660c45b2",
  9176. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2",
  9177. "shasum": ""
  9178. },
  9179. "require": {
  9180. "ext-json": "*",
  9181. "php": ">=8.1.10",
  9182. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  9183. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  9184. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  9185. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0"
  9186. },
  9187. "require-dev": {
  9188. "doctrine/annotations": "^1.0",
  9189. "doctrine/doctrine-bundle": "^2.8",
  9190. "doctrine/orm": "^2.13",
  9191. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  9192. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0",
  9193. "symfony/process": "^6.4 | ^7.0 | ^7.1",
  9194. "symfonycasts/internal-test-helpers": "dev-main"
  9195. },
  9196. "type": "symfony-bundle",
  9197. "autoload": {
  9198. "psr-4": {
  9199. "SymfonyCasts\\Bundle\\ResetPassword\\": "src/"
  9200. }
  9201. },
  9202. "notification-url": "https://packagist.org/downloads/",
  9203. "license": [
  9204. "MIT"
  9205. ],
  9206. "description": "Symfony bundle that adds password reset functionality.",
  9207. "support": {
  9208. "issues": "https://github.com/SymfonyCasts/reset-password-bundle/issues",
  9209. "source": "https://github.com/SymfonyCasts/reset-password-bundle/tree/v1.23.1"
  9210. },
  9211. "time": "2024-12-09T19:04:36+00:00"
  9212. },
  9213. {
  9214. "name": "symfonycasts/verify-email-bundle",
  9215. "version": "v1.17.3",
  9216. "source": {
  9217. "type": "git",
  9218. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  9219. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e"
  9220. },
  9221. "dist": {
  9222. "type": "zip",
  9223. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  9224. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  9225. "shasum": ""
  9226. },
  9227. "require": {
  9228. "ext-json": "*",
  9229. "php": ">=8.1",
  9230. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  9231. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  9232. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  9233. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0",
  9234. "symfony/routing": "^5.4 | ^6.0 | ^7.0"
  9235. },
  9236. "require-dev": {
  9237. "doctrine/orm": "^2.7",
  9238. "doctrine/persistence": "^2.0",
  9239. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  9240. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0"
  9241. },
  9242. "type": "symfony-bundle",
  9243. "autoload": {
  9244. "psr-4": {
  9245. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  9246. }
  9247. },
  9248. "notification-url": "https://packagist.org/downloads/",
  9249. "license": [
  9250. "MIT"
  9251. ],
  9252. "description": "Simple, stylish Email Verification for Symfony",
  9253. "support": {
  9254. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  9255. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.17.3"
  9256. },
  9257. "time": "2024-12-09T18:44:25+00:00"
  9258. },
  9259. {
  9260. "name": "twig/extra-bundle",
  9261. "version": "v3.21.0",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  9265. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  9270. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  9271. "shasum": ""
  9272. },
  9273. "require": {
  9274. "php": ">=8.1.0",
  9275. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  9276. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  9277. "twig/twig": "^3.2|^4.0"
  9278. },
  9279. "require-dev": {
  9280. "league/commonmark": "^1.0|^2.0",
  9281. "symfony/phpunit-bridge": "^6.4|^7.0",
  9282. "twig/cache-extra": "^3.0",
  9283. "twig/cssinliner-extra": "^3.0",
  9284. "twig/html-extra": "^3.0",
  9285. "twig/inky-extra": "^3.0",
  9286. "twig/intl-extra": "^3.0",
  9287. "twig/markdown-extra": "^3.0",
  9288. "twig/string-extra": "^3.0"
  9289. },
  9290. "type": "symfony-bundle",
  9291. "autoload": {
  9292. "psr-4": {
  9293. "Twig\\Extra\\TwigExtraBundle\\": ""
  9294. },
  9295. "exclude-from-classmap": [
  9296. "/Tests/"
  9297. ]
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "MIT"
  9302. ],
  9303. "authors": [
  9304. {
  9305. "name": "Fabien Potencier",
  9306. "email": "fabien@symfony.com",
  9307. "homepage": "http://fabien.potencier.org",
  9308. "role": "Lead Developer"
  9309. }
  9310. ],
  9311. "description": "A Symfony bundle for extra Twig extensions",
  9312. "homepage": "https://twig.symfony.com",
  9313. "keywords": [
  9314. "bundle",
  9315. "extra",
  9316. "twig"
  9317. ],
  9318. "support": {
  9319. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  9320. },
  9321. "funding": [
  9322. {
  9323. "url": "https://github.com/fabpot",
  9324. "type": "github"
  9325. },
  9326. {
  9327. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9328. "type": "tidelift"
  9329. }
  9330. ],
  9331. "time": "2025-02-19T14:29:33+00:00"
  9332. },
  9333. {
  9334. "name": "twig/markdown-extra",
  9335. "version": "v3.21.0",
  9336. "source": {
  9337. "type": "git",
  9338. "url": "https://github.com/twigphp/markdown-extra.git",
  9339. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4"
  9340. },
  9341. "dist": {
  9342. "type": "zip",
  9343. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/f4616e1dd375209dacf6026f846e6b537d036ce4",
  9344. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4",
  9345. "shasum": ""
  9346. },
  9347. "require": {
  9348. "php": ">=8.1.0",
  9349. "symfony/deprecation-contracts": "^2.5|^3",
  9350. "twig/twig": "^3.13|^4.0"
  9351. },
  9352. "require-dev": {
  9353. "erusev/parsedown": "dev-master as 1.x-dev",
  9354. "league/commonmark": "^1.0|^2.0",
  9355. "league/html-to-markdown": "^4.8|^5.0",
  9356. "michelf/php-markdown": "^1.8|^2.0",
  9357. "symfony/phpunit-bridge": "^6.4|^7.0"
  9358. },
  9359. "type": "library",
  9360. "autoload": {
  9361. "files": [
  9362. "Resources/functions.php"
  9363. ],
  9364. "psr-4": {
  9365. "Twig\\Extra\\Markdown\\": ""
  9366. },
  9367. "exclude-from-classmap": [
  9368. "/Tests/"
  9369. ]
  9370. },
  9371. "notification-url": "https://packagist.org/downloads/",
  9372. "license": [
  9373. "MIT"
  9374. ],
  9375. "authors": [
  9376. {
  9377. "name": "Fabien Potencier",
  9378. "email": "fabien@symfony.com",
  9379. "homepage": "http://fabien.potencier.org",
  9380. "role": "Lead Developer"
  9381. }
  9382. ],
  9383. "description": "A Twig extension for Markdown",
  9384. "homepage": "https://twig.symfony.com",
  9385. "keywords": [
  9386. "html",
  9387. "markdown",
  9388. "twig"
  9389. ],
  9390. "support": {
  9391. "source": "https://github.com/twigphp/markdown-extra/tree/v3.21.0"
  9392. },
  9393. "funding": [
  9394. {
  9395. "url": "https://github.com/fabpot",
  9396. "type": "github"
  9397. },
  9398. {
  9399. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9400. "type": "tidelift"
  9401. }
  9402. ],
  9403. "time": "2025-01-31T20:45:36+00:00"
  9404. },
  9405. {
  9406. "name": "twig/twig",
  9407. "version": "v3.21.1",
  9408. "source": {
  9409. "type": "git",
  9410. "url": "https://github.com/twigphp/Twig.git",
  9411. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  9412. },
  9413. "dist": {
  9414. "type": "zip",
  9415. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  9416. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  9417. "shasum": ""
  9418. },
  9419. "require": {
  9420. "php": ">=8.1.0",
  9421. "symfony/deprecation-contracts": "^2.5|^3",
  9422. "symfony/polyfill-ctype": "^1.8",
  9423. "symfony/polyfill-mbstring": "^1.3"
  9424. },
  9425. "require-dev": {
  9426. "phpstan/phpstan": "^2.0",
  9427. "psr/container": "^1.0|^2.0",
  9428. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  9429. },
  9430. "type": "library",
  9431. "autoload": {
  9432. "files": [
  9433. "src/Resources/core.php",
  9434. "src/Resources/debug.php",
  9435. "src/Resources/escaper.php",
  9436. "src/Resources/string_loader.php"
  9437. ],
  9438. "psr-4": {
  9439. "Twig\\": "src/"
  9440. }
  9441. },
  9442. "notification-url": "https://packagist.org/downloads/",
  9443. "license": [
  9444. "BSD-3-Clause"
  9445. ],
  9446. "authors": [
  9447. {
  9448. "name": "Fabien Potencier",
  9449. "email": "fabien@symfony.com",
  9450. "homepage": "http://fabien.potencier.org",
  9451. "role": "Lead Developer"
  9452. },
  9453. {
  9454. "name": "Twig Team",
  9455. "role": "Contributors"
  9456. },
  9457. {
  9458. "name": "Armin Ronacher",
  9459. "email": "armin.ronacher@active-4.com",
  9460. "role": "Project Founder"
  9461. }
  9462. ],
  9463. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9464. "homepage": "https://twig.symfony.com",
  9465. "keywords": [
  9466. "templating"
  9467. ],
  9468. "support": {
  9469. "issues": "https://github.com/twigphp/Twig/issues",
  9470. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  9471. },
  9472. "funding": [
  9473. {
  9474. "url": "https://github.com/fabpot",
  9475. "type": "github"
  9476. },
  9477. {
  9478. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9479. "type": "tidelift"
  9480. }
  9481. ],
  9482. "time": "2025-05-03T07:21:55+00:00"
  9483. },
  9484. {
  9485. "name": "webmozart/assert",
  9486. "version": "1.11.0",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/webmozarts/assert.git",
  9490. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9495. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "ext-ctype": "*",
  9500. "php": "^7.2 || ^8.0"
  9501. },
  9502. "conflict": {
  9503. "phpstan/phpstan": "<0.12.20",
  9504. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9505. },
  9506. "require-dev": {
  9507. "phpunit/phpunit": "^8.5.13"
  9508. },
  9509. "type": "library",
  9510. "extra": {
  9511. "branch-alias": {
  9512. "dev-master": "1.10-dev"
  9513. }
  9514. },
  9515. "autoload": {
  9516. "psr-4": {
  9517. "Webmozart\\Assert\\": "src/"
  9518. }
  9519. },
  9520. "notification-url": "https://packagist.org/downloads/",
  9521. "license": [
  9522. "MIT"
  9523. ],
  9524. "authors": [
  9525. {
  9526. "name": "Bernhard Schussek",
  9527. "email": "bschussek@gmail.com"
  9528. }
  9529. ],
  9530. "description": "Assertions to validate method input/output with nice error messages.",
  9531. "keywords": [
  9532. "assert",
  9533. "check",
  9534. "validate"
  9535. ],
  9536. "support": {
  9537. "issues": "https://github.com/webmozarts/assert/issues",
  9538. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9539. },
  9540. "time": "2022-06-03T18:03:27+00:00"
  9541. }
  9542. ],
  9543. "packages-dev": [
  9544. {
  9545. "name": "masterminds/html5",
  9546. "version": "2.9.0",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/Masterminds/html5-php.git",
  9550. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9555. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "ext-dom": "*",
  9560. "php": ">=5.3.0"
  9561. },
  9562. "require-dev": {
  9563. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-master": "2.7-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "psr-4": {
  9573. "Masterminds\\": "src"
  9574. }
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "MIT"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Matt Butcher",
  9583. "email": "technosophos@gmail.com"
  9584. },
  9585. {
  9586. "name": "Matt Farina",
  9587. "email": "matt@mattfarina.com"
  9588. },
  9589. {
  9590. "name": "Asmir Mustafic",
  9591. "email": "goetas@gmail.com"
  9592. }
  9593. ],
  9594. "description": "An HTML5 parser and serializer.",
  9595. "homepage": "http://masterminds.github.io/html5-php",
  9596. "keywords": [
  9597. "HTML5",
  9598. "dom",
  9599. "html",
  9600. "parser",
  9601. "querypath",
  9602. "serializer",
  9603. "xml"
  9604. ],
  9605. "support": {
  9606. "issues": "https://github.com/Masterminds/html5-php/issues",
  9607. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9608. },
  9609. "time": "2024-03-31T07:05:07+00:00"
  9610. },
  9611. {
  9612. "name": "myclabs/deep-copy",
  9613. "version": "1.13.3",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/myclabs/DeepCopy.git",
  9617. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  9622. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "php": "^7.1 || ^8.0"
  9627. },
  9628. "conflict": {
  9629. "doctrine/collections": "<1.6.8",
  9630. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9631. },
  9632. "require-dev": {
  9633. "doctrine/collections": "^1.6.8",
  9634. "doctrine/common": "^2.13.3 || ^3.2.2",
  9635. "phpspec/prophecy": "^1.10",
  9636. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9637. },
  9638. "type": "library",
  9639. "autoload": {
  9640. "files": [
  9641. "src/DeepCopy/deep_copy.php"
  9642. ],
  9643. "psr-4": {
  9644. "DeepCopy\\": "src/DeepCopy/"
  9645. }
  9646. },
  9647. "notification-url": "https://packagist.org/downloads/",
  9648. "license": [
  9649. "MIT"
  9650. ],
  9651. "description": "Create deep copies (clones) of your objects",
  9652. "keywords": [
  9653. "clone",
  9654. "copy",
  9655. "duplicate",
  9656. "object",
  9657. "object graph"
  9658. ],
  9659. "support": {
  9660. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9661. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  9662. },
  9663. "funding": [
  9664. {
  9665. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9666. "type": "tidelift"
  9667. }
  9668. ],
  9669. "time": "2025-07-05T12:25:42+00:00"
  9670. },
  9671. {
  9672. "name": "nikic/php-parser",
  9673. "version": "v5.5.0",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/nikic/PHP-Parser.git",
  9677. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  9682. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  9683. "shasum": ""
  9684. },
  9685. "require": {
  9686. "ext-ctype": "*",
  9687. "ext-json": "*",
  9688. "ext-tokenizer": "*",
  9689. "php": ">=7.4"
  9690. },
  9691. "require-dev": {
  9692. "ircmaxell/php-yacc": "^0.0.7",
  9693. "phpunit/phpunit": "^9.0"
  9694. },
  9695. "bin": [
  9696. "bin/php-parse"
  9697. ],
  9698. "type": "library",
  9699. "extra": {
  9700. "branch-alias": {
  9701. "dev-master": "5.0-dev"
  9702. }
  9703. },
  9704. "autoload": {
  9705. "psr-4": {
  9706. "PhpParser\\": "lib/PhpParser"
  9707. }
  9708. },
  9709. "notification-url": "https://packagist.org/downloads/",
  9710. "license": [
  9711. "BSD-3-Clause"
  9712. ],
  9713. "authors": [
  9714. {
  9715. "name": "Nikita Popov"
  9716. }
  9717. ],
  9718. "description": "A PHP parser written in PHP",
  9719. "keywords": [
  9720. "parser",
  9721. "php"
  9722. ],
  9723. "support": {
  9724. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9725. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  9726. },
  9727. "time": "2025-05-31T08:24:38+00:00"
  9728. },
  9729. {
  9730. "name": "phar-io/manifest",
  9731. "version": "2.0.4",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/phar-io/manifest.git",
  9735. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9740. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "ext-dom": "*",
  9745. "ext-libxml": "*",
  9746. "ext-phar": "*",
  9747. "ext-xmlwriter": "*",
  9748. "phar-io/version": "^3.0.1",
  9749. "php": "^7.2 || ^8.0"
  9750. },
  9751. "type": "library",
  9752. "extra": {
  9753. "branch-alias": {
  9754. "dev-master": "2.0.x-dev"
  9755. }
  9756. },
  9757. "autoload": {
  9758. "classmap": [
  9759. "src/"
  9760. ]
  9761. },
  9762. "notification-url": "https://packagist.org/downloads/",
  9763. "license": [
  9764. "BSD-3-Clause"
  9765. ],
  9766. "authors": [
  9767. {
  9768. "name": "Arne Blankerts",
  9769. "email": "arne@blankerts.de",
  9770. "role": "Developer"
  9771. },
  9772. {
  9773. "name": "Sebastian Heuer",
  9774. "email": "sebastian@phpeople.de",
  9775. "role": "Developer"
  9776. },
  9777. {
  9778. "name": "Sebastian Bergmann",
  9779. "email": "sebastian@phpunit.de",
  9780. "role": "Developer"
  9781. }
  9782. ],
  9783. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9784. "support": {
  9785. "issues": "https://github.com/phar-io/manifest/issues",
  9786. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9787. },
  9788. "funding": [
  9789. {
  9790. "url": "https://github.com/theseer",
  9791. "type": "github"
  9792. }
  9793. ],
  9794. "time": "2024-03-03T12:33:53+00:00"
  9795. },
  9796. {
  9797. "name": "phar-io/version",
  9798. "version": "3.2.1",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/phar-io/version.git",
  9802. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9807. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9808. "shasum": ""
  9809. },
  9810. "require": {
  9811. "php": "^7.2 || ^8.0"
  9812. },
  9813. "type": "library",
  9814. "autoload": {
  9815. "classmap": [
  9816. "src/"
  9817. ]
  9818. },
  9819. "notification-url": "https://packagist.org/downloads/",
  9820. "license": [
  9821. "BSD-3-Clause"
  9822. ],
  9823. "authors": [
  9824. {
  9825. "name": "Arne Blankerts",
  9826. "email": "arne@blankerts.de",
  9827. "role": "Developer"
  9828. },
  9829. {
  9830. "name": "Sebastian Heuer",
  9831. "email": "sebastian@phpeople.de",
  9832. "role": "Developer"
  9833. },
  9834. {
  9835. "name": "Sebastian Bergmann",
  9836. "email": "sebastian@phpunit.de",
  9837. "role": "Developer"
  9838. }
  9839. ],
  9840. "description": "Library for handling version information and constraints",
  9841. "support": {
  9842. "issues": "https://github.com/phar-io/version/issues",
  9843. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9844. },
  9845. "time": "2022-02-21T01:04:05+00:00"
  9846. },
  9847. {
  9848. "name": "phpunit/php-code-coverage",
  9849. "version": "12.3.1",
  9850. "source": {
  9851. "type": "git",
  9852. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9853. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170"
  9854. },
  9855. "dist": {
  9856. "type": "zip",
  9857. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170",
  9858. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170",
  9859. "shasum": ""
  9860. },
  9861. "require": {
  9862. "ext-dom": "*",
  9863. "ext-libxml": "*",
  9864. "ext-xmlwriter": "*",
  9865. "nikic/php-parser": "^5.4.0",
  9866. "php": ">=8.3",
  9867. "phpunit/php-file-iterator": "^6.0",
  9868. "phpunit/php-text-template": "^5.0",
  9869. "sebastian/complexity": "^5.0",
  9870. "sebastian/environment": "^8.0",
  9871. "sebastian/lines-of-code": "^4.0",
  9872. "sebastian/version": "^6.0",
  9873. "theseer/tokenizer": "^1.2.3"
  9874. },
  9875. "require-dev": {
  9876. "phpunit/phpunit": "^12.1"
  9877. },
  9878. "suggest": {
  9879. "ext-pcov": "PHP extension that provides line coverage",
  9880. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9881. },
  9882. "type": "library",
  9883. "extra": {
  9884. "branch-alias": {
  9885. "dev-main": "12.3.x-dev"
  9886. }
  9887. },
  9888. "autoload": {
  9889. "classmap": [
  9890. "src/"
  9891. ]
  9892. },
  9893. "notification-url": "https://packagist.org/downloads/",
  9894. "license": [
  9895. "BSD-3-Clause"
  9896. ],
  9897. "authors": [
  9898. {
  9899. "name": "Sebastian Bergmann",
  9900. "email": "sebastian@phpunit.de",
  9901. "role": "lead"
  9902. }
  9903. ],
  9904. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9905. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9906. "keywords": [
  9907. "coverage",
  9908. "testing",
  9909. "xunit"
  9910. ],
  9911. "support": {
  9912. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9913. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9914. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1"
  9915. },
  9916. "funding": [
  9917. {
  9918. "url": "https://github.com/sebastianbergmann",
  9919. "type": "github"
  9920. },
  9921. {
  9922. "url": "https://liberapay.com/sebastianbergmann",
  9923. "type": "liberapay"
  9924. },
  9925. {
  9926. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9927. "type": "thanks_dev"
  9928. },
  9929. {
  9930. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  9931. "type": "tidelift"
  9932. }
  9933. ],
  9934. "time": "2025-06-18T08:58:13+00:00"
  9935. },
  9936. {
  9937. "name": "phpunit/php-file-iterator",
  9938. "version": "6.0.0",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9942. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  9947. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  9948. "shasum": ""
  9949. },
  9950. "require": {
  9951. "php": ">=8.3"
  9952. },
  9953. "require-dev": {
  9954. "phpunit/phpunit": "^12.0"
  9955. },
  9956. "type": "library",
  9957. "extra": {
  9958. "branch-alias": {
  9959. "dev-main": "6.0-dev"
  9960. }
  9961. },
  9962. "autoload": {
  9963. "classmap": [
  9964. "src/"
  9965. ]
  9966. },
  9967. "notification-url": "https://packagist.org/downloads/",
  9968. "license": [
  9969. "BSD-3-Clause"
  9970. ],
  9971. "authors": [
  9972. {
  9973. "name": "Sebastian Bergmann",
  9974. "email": "sebastian@phpunit.de",
  9975. "role": "lead"
  9976. }
  9977. ],
  9978. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9979. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9980. "keywords": [
  9981. "filesystem",
  9982. "iterator"
  9983. ],
  9984. "support": {
  9985. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9986. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9987. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  9988. },
  9989. "funding": [
  9990. {
  9991. "url": "https://github.com/sebastianbergmann",
  9992. "type": "github"
  9993. }
  9994. ],
  9995. "time": "2025-02-07T04:58:37+00:00"
  9996. },
  9997. {
  9998. "name": "phpunit/php-invoker",
  9999. "version": "6.0.0",
  10000. "source": {
  10001. "type": "git",
  10002. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10003. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  10004. },
  10005. "dist": {
  10006. "type": "zip",
  10007. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  10008. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  10009. "shasum": ""
  10010. },
  10011. "require": {
  10012. "php": ">=8.3"
  10013. },
  10014. "require-dev": {
  10015. "ext-pcntl": "*",
  10016. "phpunit/phpunit": "^12.0"
  10017. },
  10018. "suggest": {
  10019. "ext-pcntl": "*"
  10020. },
  10021. "type": "library",
  10022. "extra": {
  10023. "branch-alias": {
  10024. "dev-main": "6.0-dev"
  10025. }
  10026. },
  10027. "autoload": {
  10028. "classmap": [
  10029. "src/"
  10030. ]
  10031. },
  10032. "notification-url": "https://packagist.org/downloads/",
  10033. "license": [
  10034. "BSD-3-Clause"
  10035. ],
  10036. "authors": [
  10037. {
  10038. "name": "Sebastian Bergmann",
  10039. "email": "sebastian@phpunit.de",
  10040. "role": "lead"
  10041. }
  10042. ],
  10043. "description": "Invoke callables with a timeout",
  10044. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10045. "keywords": [
  10046. "process"
  10047. ],
  10048. "support": {
  10049. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10050. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  10051. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  10052. },
  10053. "funding": [
  10054. {
  10055. "url": "https://github.com/sebastianbergmann",
  10056. "type": "github"
  10057. }
  10058. ],
  10059. "time": "2025-02-07T04:58:58+00:00"
  10060. },
  10061. {
  10062. "name": "phpunit/php-text-template",
  10063. "version": "5.0.0",
  10064. "source": {
  10065. "type": "git",
  10066. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10067. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  10068. },
  10069. "dist": {
  10070. "type": "zip",
  10071. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  10072. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  10073. "shasum": ""
  10074. },
  10075. "require": {
  10076. "php": ">=8.3"
  10077. },
  10078. "require-dev": {
  10079. "phpunit/phpunit": "^12.0"
  10080. },
  10081. "type": "library",
  10082. "extra": {
  10083. "branch-alias": {
  10084. "dev-main": "5.0-dev"
  10085. }
  10086. },
  10087. "autoload": {
  10088. "classmap": [
  10089. "src/"
  10090. ]
  10091. },
  10092. "notification-url": "https://packagist.org/downloads/",
  10093. "license": [
  10094. "BSD-3-Clause"
  10095. ],
  10096. "authors": [
  10097. {
  10098. "name": "Sebastian Bergmann",
  10099. "email": "sebastian@phpunit.de",
  10100. "role": "lead"
  10101. }
  10102. ],
  10103. "description": "Simple template engine.",
  10104. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10105. "keywords": [
  10106. "template"
  10107. ],
  10108. "support": {
  10109. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10110. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10111. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://github.com/sebastianbergmann",
  10116. "type": "github"
  10117. }
  10118. ],
  10119. "time": "2025-02-07T04:59:16+00:00"
  10120. },
  10121. {
  10122. "name": "phpunit/php-timer",
  10123. "version": "8.0.0",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10127. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  10132. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "php": ">=8.3"
  10137. },
  10138. "require-dev": {
  10139. "phpunit/phpunit": "^12.0"
  10140. },
  10141. "type": "library",
  10142. "extra": {
  10143. "branch-alias": {
  10144. "dev-main": "8.0-dev"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "classmap": [
  10149. "src/"
  10150. ]
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "BSD-3-Clause"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Sebastian Bergmann",
  10159. "email": "sebastian@phpunit.de",
  10160. "role": "lead"
  10161. }
  10162. ],
  10163. "description": "Utility class for timing",
  10164. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10165. "keywords": [
  10166. "timer"
  10167. ],
  10168. "support": {
  10169. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10170. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  10171. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  10172. },
  10173. "funding": [
  10174. {
  10175. "url": "https://github.com/sebastianbergmann",
  10176. "type": "github"
  10177. }
  10178. ],
  10179. "time": "2025-02-07T04:59:38+00:00"
  10180. },
  10181. {
  10182. "name": "phpunit/phpunit",
  10183. "version": "12.2.7",
  10184. "source": {
  10185. "type": "git",
  10186. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10187. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414"
  10188. },
  10189. "dist": {
  10190. "type": "zip",
  10191. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414",
  10192. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414",
  10193. "shasum": ""
  10194. },
  10195. "require": {
  10196. "ext-dom": "*",
  10197. "ext-json": "*",
  10198. "ext-libxml": "*",
  10199. "ext-mbstring": "*",
  10200. "ext-xml": "*",
  10201. "ext-xmlwriter": "*",
  10202. "myclabs/deep-copy": "^1.13.3",
  10203. "phar-io/manifest": "^2.0.4",
  10204. "phar-io/version": "^3.2.1",
  10205. "php": ">=8.3",
  10206. "phpunit/php-code-coverage": "^12.3.1",
  10207. "phpunit/php-file-iterator": "^6.0.0",
  10208. "phpunit/php-invoker": "^6.0.0",
  10209. "phpunit/php-text-template": "^5.0.0",
  10210. "phpunit/php-timer": "^8.0.0",
  10211. "sebastian/cli-parser": "^4.0.0",
  10212. "sebastian/comparator": "^7.1.0",
  10213. "sebastian/diff": "^7.0.0",
  10214. "sebastian/environment": "^8.0.2",
  10215. "sebastian/exporter": "^7.0.0",
  10216. "sebastian/global-state": "^8.0.0",
  10217. "sebastian/object-enumerator": "^7.0.0",
  10218. "sebastian/type": "^6.0.2",
  10219. "sebastian/version": "^6.0.0",
  10220. "staabm/side-effects-detector": "^1.0.5"
  10221. },
  10222. "bin": [
  10223. "phpunit"
  10224. ],
  10225. "type": "library",
  10226. "extra": {
  10227. "branch-alias": {
  10228. "dev-main": "12.2-dev"
  10229. }
  10230. },
  10231. "autoload": {
  10232. "files": [
  10233. "src/Framework/Assert/Functions.php"
  10234. ],
  10235. "classmap": [
  10236. "src/"
  10237. ]
  10238. },
  10239. "notification-url": "https://packagist.org/downloads/",
  10240. "license": [
  10241. "BSD-3-Clause"
  10242. ],
  10243. "authors": [
  10244. {
  10245. "name": "Sebastian Bergmann",
  10246. "email": "sebastian@phpunit.de",
  10247. "role": "lead"
  10248. }
  10249. ],
  10250. "description": "The PHP Unit Testing framework.",
  10251. "homepage": "https://phpunit.de/",
  10252. "keywords": [
  10253. "phpunit",
  10254. "testing",
  10255. "xunit"
  10256. ],
  10257. "support": {
  10258. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10259. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10260. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7"
  10261. },
  10262. "funding": [
  10263. {
  10264. "url": "https://phpunit.de/sponsors.html",
  10265. "type": "custom"
  10266. },
  10267. {
  10268. "url": "https://github.com/sebastianbergmann",
  10269. "type": "github"
  10270. },
  10271. {
  10272. "url": "https://liberapay.com/sebastianbergmann",
  10273. "type": "liberapay"
  10274. },
  10275. {
  10276. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10277. "type": "thanks_dev"
  10278. },
  10279. {
  10280. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10281. "type": "tidelift"
  10282. }
  10283. ],
  10284. "time": "2025-07-11T04:11:13+00:00"
  10285. },
  10286. {
  10287. "name": "sebastian/cli-parser",
  10288. "version": "4.0.0",
  10289. "source": {
  10290. "type": "git",
  10291. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10292. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  10293. },
  10294. "dist": {
  10295. "type": "zip",
  10296. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  10297. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  10298. "shasum": ""
  10299. },
  10300. "require": {
  10301. "php": ">=8.3"
  10302. },
  10303. "require-dev": {
  10304. "phpunit/phpunit": "^12.0"
  10305. },
  10306. "type": "library",
  10307. "extra": {
  10308. "branch-alias": {
  10309. "dev-main": "4.0-dev"
  10310. }
  10311. },
  10312. "autoload": {
  10313. "classmap": [
  10314. "src/"
  10315. ]
  10316. },
  10317. "notification-url": "https://packagist.org/downloads/",
  10318. "license": [
  10319. "BSD-3-Clause"
  10320. ],
  10321. "authors": [
  10322. {
  10323. "name": "Sebastian Bergmann",
  10324. "email": "sebastian@phpunit.de",
  10325. "role": "lead"
  10326. }
  10327. ],
  10328. "description": "Library for parsing CLI options",
  10329. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10330. "support": {
  10331. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10332. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10333. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  10334. },
  10335. "funding": [
  10336. {
  10337. "url": "https://github.com/sebastianbergmann",
  10338. "type": "github"
  10339. }
  10340. ],
  10341. "time": "2025-02-07T04:53:50+00:00"
  10342. },
  10343. {
  10344. "name": "sebastian/comparator",
  10345. "version": "7.1.0",
  10346. "source": {
  10347. "type": "git",
  10348. "url": "https://github.com/sebastianbergmann/comparator.git",
  10349. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f"
  10350. },
  10351. "dist": {
  10352. "type": "zip",
  10353. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/03d905327dccc0851c9a08d6a979dfc683826b6f",
  10354. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f",
  10355. "shasum": ""
  10356. },
  10357. "require": {
  10358. "ext-dom": "*",
  10359. "ext-mbstring": "*",
  10360. "php": ">=8.3",
  10361. "sebastian/diff": "^7.0",
  10362. "sebastian/exporter": "^7.0"
  10363. },
  10364. "require-dev": {
  10365. "phpunit/phpunit": "^12.2"
  10366. },
  10367. "suggest": {
  10368. "ext-bcmath": "For comparing BcMath\\Number objects"
  10369. },
  10370. "type": "library",
  10371. "extra": {
  10372. "branch-alias": {
  10373. "dev-main": "7.1-dev"
  10374. }
  10375. },
  10376. "autoload": {
  10377. "classmap": [
  10378. "src/"
  10379. ]
  10380. },
  10381. "notification-url": "https://packagist.org/downloads/",
  10382. "license": [
  10383. "BSD-3-Clause"
  10384. ],
  10385. "authors": [
  10386. {
  10387. "name": "Sebastian Bergmann",
  10388. "email": "sebastian@phpunit.de"
  10389. },
  10390. {
  10391. "name": "Jeff Welch",
  10392. "email": "whatthejeff@gmail.com"
  10393. },
  10394. {
  10395. "name": "Volker Dusch",
  10396. "email": "github@wallbash.com"
  10397. },
  10398. {
  10399. "name": "Bernhard Schussek",
  10400. "email": "bschussek@2bepublished.at"
  10401. }
  10402. ],
  10403. "description": "Provides the functionality to compare PHP values for equality",
  10404. "homepage": "https://github.com/sebastianbergmann/comparator",
  10405. "keywords": [
  10406. "comparator",
  10407. "compare",
  10408. "equality"
  10409. ],
  10410. "support": {
  10411. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10412. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10413. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.0"
  10414. },
  10415. "funding": [
  10416. {
  10417. "url": "https://github.com/sebastianbergmann",
  10418. "type": "github"
  10419. },
  10420. {
  10421. "url": "https://liberapay.com/sebastianbergmann",
  10422. "type": "liberapay"
  10423. },
  10424. {
  10425. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10426. "type": "thanks_dev"
  10427. },
  10428. {
  10429. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  10430. "type": "tidelift"
  10431. }
  10432. ],
  10433. "time": "2025-06-17T07:41:58+00:00"
  10434. },
  10435. {
  10436. "name": "sebastian/complexity",
  10437. "version": "5.0.0",
  10438. "source": {
  10439. "type": "git",
  10440. "url": "https://github.com/sebastianbergmann/complexity.git",
  10441. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  10442. },
  10443. "dist": {
  10444. "type": "zip",
  10445. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  10446. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  10447. "shasum": ""
  10448. },
  10449. "require": {
  10450. "nikic/php-parser": "^5.0",
  10451. "php": ">=8.3"
  10452. },
  10453. "require-dev": {
  10454. "phpunit/phpunit": "^12.0"
  10455. },
  10456. "type": "library",
  10457. "extra": {
  10458. "branch-alias": {
  10459. "dev-main": "5.0-dev"
  10460. }
  10461. },
  10462. "autoload": {
  10463. "classmap": [
  10464. "src/"
  10465. ]
  10466. },
  10467. "notification-url": "https://packagist.org/downloads/",
  10468. "license": [
  10469. "BSD-3-Clause"
  10470. ],
  10471. "authors": [
  10472. {
  10473. "name": "Sebastian Bergmann",
  10474. "email": "sebastian@phpunit.de",
  10475. "role": "lead"
  10476. }
  10477. ],
  10478. "description": "Library for calculating the complexity of PHP code units",
  10479. "homepage": "https://github.com/sebastianbergmann/complexity",
  10480. "support": {
  10481. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10482. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10483. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  10484. },
  10485. "funding": [
  10486. {
  10487. "url": "https://github.com/sebastianbergmann",
  10488. "type": "github"
  10489. }
  10490. ],
  10491. "time": "2025-02-07T04:55:25+00:00"
  10492. },
  10493. {
  10494. "name": "sebastian/diff",
  10495. "version": "7.0.0",
  10496. "source": {
  10497. "type": "git",
  10498. "url": "https://github.com/sebastianbergmann/diff.git",
  10499. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  10500. },
  10501. "dist": {
  10502. "type": "zip",
  10503. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  10504. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  10505. "shasum": ""
  10506. },
  10507. "require": {
  10508. "php": ">=8.3"
  10509. },
  10510. "require-dev": {
  10511. "phpunit/phpunit": "^12.0",
  10512. "symfony/process": "^7.2"
  10513. },
  10514. "type": "library",
  10515. "extra": {
  10516. "branch-alias": {
  10517. "dev-main": "7.0-dev"
  10518. }
  10519. },
  10520. "autoload": {
  10521. "classmap": [
  10522. "src/"
  10523. ]
  10524. },
  10525. "notification-url": "https://packagist.org/downloads/",
  10526. "license": [
  10527. "BSD-3-Clause"
  10528. ],
  10529. "authors": [
  10530. {
  10531. "name": "Sebastian Bergmann",
  10532. "email": "sebastian@phpunit.de"
  10533. },
  10534. {
  10535. "name": "Kore Nordmann",
  10536. "email": "mail@kore-nordmann.de"
  10537. }
  10538. ],
  10539. "description": "Diff implementation",
  10540. "homepage": "https://github.com/sebastianbergmann/diff",
  10541. "keywords": [
  10542. "diff",
  10543. "udiff",
  10544. "unidiff",
  10545. "unified diff"
  10546. ],
  10547. "support": {
  10548. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10549. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10550. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  10551. },
  10552. "funding": [
  10553. {
  10554. "url": "https://github.com/sebastianbergmann",
  10555. "type": "github"
  10556. }
  10557. ],
  10558. "time": "2025-02-07T04:55:46+00:00"
  10559. },
  10560. {
  10561. "name": "sebastian/environment",
  10562. "version": "8.0.2",
  10563. "source": {
  10564. "type": "git",
  10565. "url": "https://github.com/sebastianbergmann/environment.git",
  10566. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792"
  10567. },
  10568. "dist": {
  10569. "type": "zip",
  10570. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  10571. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  10572. "shasum": ""
  10573. },
  10574. "require": {
  10575. "php": ">=8.3"
  10576. },
  10577. "require-dev": {
  10578. "phpunit/phpunit": "^12.0"
  10579. },
  10580. "suggest": {
  10581. "ext-posix": "*"
  10582. },
  10583. "type": "library",
  10584. "extra": {
  10585. "branch-alias": {
  10586. "dev-main": "8.0-dev"
  10587. }
  10588. },
  10589. "autoload": {
  10590. "classmap": [
  10591. "src/"
  10592. ]
  10593. },
  10594. "notification-url": "https://packagist.org/downloads/",
  10595. "license": [
  10596. "BSD-3-Clause"
  10597. ],
  10598. "authors": [
  10599. {
  10600. "name": "Sebastian Bergmann",
  10601. "email": "sebastian@phpunit.de"
  10602. }
  10603. ],
  10604. "description": "Provides functionality to handle HHVM/PHP environments",
  10605. "homepage": "https://github.com/sebastianbergmann/environment",
  10606. "keywords": [
  10607. "Xdebug",
  10608. "environment",
  10609. "hhvm"
  10610. ],
  10611. "support": {
  10612. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10613. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10614. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.2"
  10615. },
  10616. "funding": [
  10617. {
  10618. "url": "https://github.com/sebastianbergmann",
  10619. "type": "github"
  10620. },
  10621. {
  10622. "url": "https://liberapay.com/sebastianbergmann",
  10623. "type": "liberapay"
  10624. },
  10625. {
  10626. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10627. "type": "thanks_dev"
  10628. },
  10629. {
  10630. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  10631. "type": "tidelift"
  10632. }
  10633. ],
  10634. "time": "2025-05-21T15:05:44+00:00"
  10635. },
  10636. {
  10637. "name": "sebastian/exporter",
  10638. "version": "7.0.0",
  10639. "source": {
  10640. "type": "git",
  10641. "url": "https://github.com/sebastianbergmann/exporter.git",
  10642. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  10643. },
  10644. "dist": {
  10645. "type": "zip",
  10646. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  10647. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  10648. "shasum": ""
  10649. },
  10650. "require": {
  10651. "ext-mbstring": "*",
  10652. "php": ">=8.3",
  10653. "sebastian/recursion-context": "^7.0"
  10654. },
  10655. "require-dev": {
  10656. "phpunit/phpunit": "^12.0"
  10657. },
  10658. "type": "library",
  10659. "extra": {
  10660. "branch-alias": {
  10661. "dev-main": "7.0-dev"
  10662. }
  10663. },
  10664. "autoload": {
  10665. "classmap": [
  10666. "src/"
  10667. ]
  10668. },
  10669. "notification-url": "https://packagist.org/downloads/",
  10670. "license": [
  10671. "BSD-3-Clause"
  10672. ],
  10673. "authors": [
  10674. {
  10675. "name": "Sebastian Bergmann",
  10676. "email": "sebastian@phpunit.de"
  10677. },
  10678. {
  10679. "name": "Jeff Welch",
  10680. "email": "whatthejeff@gmail.com"
  10681. },
  10682. {
  10683. "name": "Volker Dusch",
  10684. "email": "github@wallbash.com"
  10685. },
  10686. {
  10687. "name": "Adam Harvey",
  10688. "email": "aharvey@php.net"
  10689. },
  10690. {
  10691. "name": "Bernhard Schussek",
  10692. "email": "bschussek@gmail.com"
  10693. }
  10694. ],
  10695. "description": "Provides the functionality to export PHP variables for visualization",
  10696. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10697. "keywords": [
  10698. "export",
  10699. "exporter"
  10700. ],
  10701. "support": {
  10702. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10703. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10704. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  10705. },
  10706. "funding": [
  10707. {
  10708. "url": "https://github.com/sebastianbergmann",
  10709. "type": "github"
  10710. }
  10711. ],
  10712. "time": "2025-02-07T04:56:42+00:00"
  10713. },
  10714. {
  10715. "name": "sebastian/global-state",
  10716. "version": "8.0.0",
  10717. "source": {
  10718. "type": "git",
  10719. "url": "https://github.com/sebastianbergmann/global-state.git",
  10720. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc"
  10721. },
  10722. "dist": {
  10723. "type": "zip",
  10724. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  10725. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  10726. "shasum": ""
  10727. },
  10728. "require": {
  10729. "php": ">=8.3",
  10730. "sebastian/object-reflector": "^5.0",
  10731. "sebastian/recursion-context": "^7.0"
  10732. },
  10733. "require-dev": {
  10734. "ext-dom": "*",
  10735. "phpunit/phpunit": "^12.0"
  10736. },
  10737. "type": "library",
  10738. "extra": {
  10739. "branch-alias": {
  10740. "dev-main": "8.0-dev"
  10741. }
  10742. },
  10743. "autoload": {
  10744. "classmap": [
  10745. "src/"
  10746. ]
  10747. },
  10748. "notification-url": "https://packagist.org/downloads/",
  10749. "license": [
  10750. "BSD-3-Clause"
  10751. ],
  10752. "authors": [
  10753. {
  10754. "name": "Sebastian Bergmann",
  10755. "email": "sebastian@phpunit.de"
  10756. }
  10757. ],
  10758. "description": "Snapshotting of global state",
  10759. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10760. "keywords": [
  10761. "global state"
  10762. ],
  10763. "support": {
  10764. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10765. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10766. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.0"
  10767. },
  10768. "funding": [
  10769. {
  10770. "url": "https://github.com/sebastianbergmann",
  10771. "type": "github"
  10772. }
  10773. ],
  10774. "time": "2025-02-07T04:56:59+00:00"
  10775. },
  10776. {
  10777. "name": "sebastian/lines-of-code",
  10778. "version": "4.0.0",
  10779. "source": {
  10780. "type": "git",
  10781. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10782. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  10783. },
  10784. "dist": {
  10785. "type": "zip",
  10786. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  10787. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  10788. "shasum": ""
  10789. },
  10790. "require": {
  10791. "nikic/php-parser": "^5.0",
  10792. "php": ">=8.3"
  10793. },
  10794. "require-dev": {
  10795. "phpunit/phpunit": "^12.0"
  10796. },
  10797. "type": "library",
  10798. "extra": {
  10799. "branch-alias": {
  10800. "dev-main": "4.0-dev"
  10801. }
  10802. },
  10803. "autoload": {
  10804. "classmap": [
  10805. "src/"
  10806. ]
  10807. },
  10808. "notification-url": "https://packagist.org/downloads/",
  10809. "license": [
  10810. "BSD-3-Clause"
  10811. ],
  10812. "authors": [
  10813. {
  10814. "name": "Sebastian Bergmann",
  10815. "email": "sebastian@phpunit.de",
  10816. "role": "lead"
  10817. }
  10818. ],
  10819. "description": "Library for counting the lines of code in PHP source code",
  10820. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10821. "support": {
  10822. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10823. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10824. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  10825. },
  10826. "funding": [
  10827. {
  10828. "url": "https://github.com/sebastianbergmann",
  10829. "type": "github"
  10830. }
  10831. ],
  10832. "time": "2025-02-07T04:57:28+00:00"
  10833. },
  10834. {
  10835. "name": "sebastian/object-enumerator",
  10836. "version": "7.0.0",
  10837. "source": {
  10838. "type": "git",
  10839. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10840. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  10841. },
  10842. "dist": {
  10843. "type": "zip",
  10844. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  10845. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  10846. "shasum": ""
  10847. },
  10848. "require": {
  10849. "php": ">=8.3",
  10850. "sebastian/object-reflector": "^5.0",
  10851. "sebastian/recursion-context": "^7.0"
  10852. },
  10853. "require-dev": {
  10854. "phpunit/phpunit": "^12.0"
  10855. },
  10856. "type": "library",
  10857. "extra": {
  10858. "branch-alias": {
  10859. "dev-main": "7.0-dev"
  10860. }
  10861. },
  10862. "autoload": {
  10863. "classmap": [
  10864. "src/"
  10865. ]
  10866. },
  10867. "notification-url": "https://packagist.org/downloads/",
  10868. "license": [
  10869. "BSD-3-Clause"
  10870. ],
  10871. "authors": [
  10872. {
  10873. "name": "Sebastian Bergmann",
  10874. "email": "sebastian@phpunit.de"
  10875. }
  10876. ],
  10877. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10878. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10879. "support": {
  10880. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10881. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10882. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  10883. },
  10884. "funding": [
  10885. {
  10886. "url": "https://github.com/sebastianbergmann",
  10887. "type": "github"
  10888. }
  10889. ],
  10890. "time": "2025-02-07T04:57:48+00:00"
  10891. },
  10892. {
  10893. "name": "sebastian/object-reflector",
  10894. "version": "5.0.0",
  10895. "source": {
  10896. "type": "git",
  10897. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10898. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  10899. },
  10900. "dist": {
  10901. "type": "zip",
  10902. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  10903. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  10904. "shasum": ""
  10905. },
  10906. "require": {
  10907. "php": ">=8.3"
  10908. },
  10909. "require-dev": {
  10910. "phpunit/phpunit": "^12.0"
  10911. },
  10912. "type": "library",
  10913. "extra": {
  10914. "branch-alias": {
  10915. "dev-main": "5.0-dev"
  10916. }
  10917. },
  10918. "autoload": {
  10919. "classmap": [
  10920. "src/"
  10921. ]
  10922. },
  10923. "notification-url": "https://packagist.org/downloads/",
  10924. "license": [
  10925. "BSD-3-Clause"
  10926. ],
  10927. "authors": [
  10928. {
  10929. "name": "Sebastian Bergmann",
  10930. "email": "sebastian@phpunit.de"
  10931. }
  10932. ],
  10933. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10934. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10935. "support": {
  10936. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10937. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10938. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  10939. },
  10940. "funding": [
  10941. {
  10942. "url": "https://github.com/sebastianbergmann",
  10943. "type": "github"
  10944. }
  10945. ],
  10946. "time": "2025-02-07T04:58:17+00:00"
  10947. },
  10948. {
  10949. "name": "sebastian/recursion-context",
  10950. "version": "7.0.0",
  10951. "source": {
  10952. "type": "git",
  10953. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10954. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c"
  10955. },
  10956. "dist": {
  10957. "type": "zip",
  10958. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  10959. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  10960. "shasum": ""
  10961. },
  10962. "require": {
  10963. "php": ">=8.3"
  10964. },
  10965. "require-dev": {
  10966. "phpunit/phpunit": "^12.0"
  10967. },
  10968. "type": "library",
  10969. "extra": {
  10970. "branch-alias": {
  10971. "dev-main": "7.0-dev"
  10972. }
  10973. },
  10974. "autoload": {
  10975. "classmap": [
  10976. "src/"
  10977. ]
  10978. },
  10979. "notification-url": "https://packagist.org/downloads/",
  10980. "license": [
  10981. "BSD-3-Clause"
  10982. ],
  10983. "authors": [
  10984. {
  10985. "name": "Sebastian Bergmann",
  10986. "email": "sebastian@phpunit.de"
  10987. },
  10988. {
  10989. "name": "Jeff Welch",
  10990. "email": "whatthejeff@gmail.com"
  10991. },
  10992. {
  10993. "name": "Adam Harvey",
  10994. "email": "aharvey@php.net"
  10995. }
  10996. ],
  10997. "description": "Provides functionality to recursively process PHP variables",
  10998. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10999. "support": {
  11000. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11001. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  11002. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.0"
  11003. },
  11004. "funding": [
  11005. {
  11006. "url": "https://github.com/sebastianbergmann",
  11007. "type": "github"
  11008. }
  11009. ],
  11010. "time": "2025-02-07T05:00:01+00:00"
  11011. },
  11012. {
  11013. "name": "sebastian/type",
  11014. "version": "6.0.2",
  11015. "source": {
  11016. "type": "git",
  11017. "url": "https://github.com/sebastianbergmann/type.git",
  11018. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069"
  11019. },
  11020. "dist": {
  11021. "type": "zip",
  11022. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/1d7cd6e514384c36d7a390347f57c385d4be6069",
  11023. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069",
  11024. "shasum": ""
  11025. },
  11026. "require": {
  11027. "php": ">=8.3"
  11028. },
  11029. "require-dev": {
  11030. "phpunit/phpunit": "^12.0"
  11031. },
  11032. "type": "library",
  11033. "extra": {
  11034. "branch-alias": {
  11035. "dev-main": "6.0-dev"
  11036. }
  11037. },
  11038. "autoload": {
  11039. "classmap": [
  11040. "src/"
  11041. ]
  11042. },
  11043. "notification-url": "https://packagist.org/downloads/",
  11044. "license": [
  11045. "BSD-3-Clause"
  11046. ],
  11047. "authors": [
  11048. {
  11049. "name": "Sebastian Bergmann",
  11050. "email": "sebastian@phpunit.de",
  11051. "role": "lead"
  11052. }
  11053. ],
  11054. "description": "Collection of value objects that represent the types of the PHP type system",
  11055. "homepage": "https://github.com/sebastianbergmann/type",
  11056. "support": {
  11057. "issues": "https://github.com/sebastianbergmann/type/issues",
  11058. "security": "https://github.com/sebastianbergmann/type/security/policy",
  11059. "source": "https://github.com/sebastianbergmann/type/tree/6.0.2"
  11060. },
  11061. "funding": [
  11062. {
  11063. "url": "https://github.com/sebastianbergmann",
  11064. "type": "github"
  11065. }
  11066. ],
  11067. "time": "2025-03-18T13:37:31+00:00"
  11068. },
  11069. {
  11070. "name": "sebastian/version",
  11071. "version": "6.0.0",
  11072. "source": {
  11073. "type": "git",
  11074. "url": "https://github.com/sebastianbergmann/version.git",
  11075. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  11076. },
  11077. "dist": {
  11078. "type": "zip",
  11079. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  11080. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  11081. "shasum": ""
  11082. },
  11083. "require": {
  11084. "php": ">=8.3"
  11085. },
  11086. "type": "library",
  11087. "extra": {
  11088. "branch-alias": {
  11089. "dev-main": "6.0-dev"
  11090. }
  11091. },
  11092. "autoload": {
  11093. "classmap": [
  11094. "src/"
  11095. ]
  11096. },
  11097. "notification-url": "https://packagist.org/downloads/",
  11098. "license": [
  11099. "BSD-3-Clause"
  11100. ],
  11101. "authors": [
  11102. {
  11103. "name": "Sebastian Bergmann",
  11104. "email": "sebastian@phpunit.de",
  11105. "role": "lead"
  11106. }
  11107. ],
  11108. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11109. "homepage": "https://github.com/sebastianbergmann/version",
  11110. "support": {
  11111. "issues": "https://github.com/sebastianbergmann/version/issues",
  11112. "security": "https://github.com/sebastianbergmann/version/security/policy",
  11113. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  11114. },
  11115. "funding": [
  11116. {
  11117. "url": "https://github.com/sebastianbergmann",
  11118. "type": "github"
  11119. }
  11120. ],
  11121. "time": "2025-02-07T05:00:38+00:00"
  11122. },
  11123. {
  11124. "name": "staabm/side-effects-detector",
  11125. "version": "1.0.5",
  11126. "source": {
  11127. "type": "git",
  11128. "url": "https://github.com/staabm/side-effects-detector.git",
  11129. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  11130. },
  11131. "dist": {
  11132. "type": "zip",
  11133. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  11134. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  11135. "shasum": ""
  11136. },
  11137. "require": {
  11138. "ext-tokenizer": "*",
  11139. "php": "^7.4 || ^8.0"
  11140. },
  11141. "require-dev": {
  11142. "phpstan/extension-installer": "^1.4.3",
  11143. "phpstan/phpstan": "^1.12.6",
  11144. "phpunit/phpunit": "^9.6.21",
  11145. "symfony/var-dumper": "^5.4.43",
  11146. "tomasvotruba/type-coverage": "1.0.0",
  11147. "tomasvotruba/unused-public": "1.0.0"
  11148. },
  11149. "type": "library",
  11150. "autoload": {
  11151. "classmap": [
  11152. "lib/"
  11153. ]
  11154. },
  11155. "notification-url": "https://packagist.org/downloads/",
  11156. "license": [
  11157. "MIT"
  11158. ],
  11159. "description": "A static analysis tool to detect side effects in PHP code",
  11160. "keywords": [
  11161. "static analysis"
  11162. ],
  11163. "support": {
  11164. "issues": "https://github.com/staabm/side-effects-detector/issues",
  11165. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  11166. },
  11167. "funding": [
  11168. {
  11169. "url": "https://github.com/staabm",
  11170. "type": "github"
  11171. }
  11172. ],
  11173. "time": "2024-10-20T05:08:20+00:00"
  11174. },
  11175. {
  11176. "name": "symfony/browser-kit",
  11177. "version": "v7.3.0",
  11178. "source": {
  11179. "type": "git",
  11180. "url": "https://github.com/symfony/browser-kit.git",
  11181. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593"
  11182. },
  11183. "dist": {
  11184. "type": "zip",
  11185. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/5384291845e74fd7d54f3d925c4a86ce12336593",
  11186. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593",
  11187. "shasum": ""
  11188. },
  11189. "require": {
  11190. "php": ">=8.2",
  11191. "symfony/dom-crawler": "^6.4|^7.0"
  11192. },
  11193. "require-dev": {
  11194. "symfony/css-selector": "^6.4|^7.0",
  11195. "symfony/http-client": "^6.4|^7.0",
  11196. "symfony/mime": "^6.4|^7.0",
  11197. "symfony/process": "^6.4|^7.0"
  11198. },
  11199. "type": "library",
  11200. "autoload": {
  11201. "psr-4": {
  11202. "Symfony\\Component\\BrowserKit\\": ""
  11203. },
  11204. "exclude-from-classmap": [
  11205. "/Tests/"
  11206. ]
  11207. },
  11208. "notification-url": "https://packagist.org/downloads/",
  11209. "license": [
  11210. "MIT"
  11211. ],
  11212. "authors": [
  11213. {
  11214. "name": "Fabien Potencier",
  11215. "email": "fabien@symfony.com"
  11216. },
  11217. {
  11218. "name": "Symfony Community",
  11219. "homepage": "https://symfony.com/contributors"
  11220. }
  11221. ],
  11222. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  11223. "homepage": "https://symfony.com",
  11224. "support": {
  11225. "source": "https://github.com/symfony/browser-kit/tree/v7.3.0"
  11226. },
  11227. "funding": [
  11228. {
  11229. "url": "https://symfony.com/sponsor",
  11230. "type": "custom"
  11231. },
  11232. {
  11233. "url": "https://github.com/fabpot",
  11234. "type": "github"
  11235. },
  11236. {
  11237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11238. "type": "tidelift"
  11239. }
  11240. ],
  11241. "time": "2025-03-05T10:15:41+00:00"
  11242. },
  11243. {
  11244. "name": "symfony/css-selector",
  11245. "version": "v7.3.0",
  11246. "source": {
  11247. "type": "git",
  11248. "url": "https://github.com/symfony/css-selector.git",
  11249. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  11250. },
  11251. "dist": {
  11252. "type": "zip",
  11253. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  11254. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  11255. "shasum": ""
  11256. },
  11257. "require": {
  11258. "php": ">=8.2"
  11259. },
  11260. "type": "library",
  11261. "autoload": {
  11262. "psr-4": {
  11263. "Symfony\\Component\\CssSelector\\": ""
  11264. },
  11265. "exclude-from-classmap": [
  11266. "/Tests/"
  11267. ]
  11268. },
  11269. "notification-url": "https://packagist.org/downloads/",
  11270. "license": [
  11271. "MIT"
  11272. ],
  11273. "authors": [
  11274. {
  11275. "name": "Fabien Potencier",
  11276. "email": "fabien@symfony.com"
  11277. },
  11278. {
  11279. "name": "Jean-François Simon",
  11280. "email": "jeanfrancois.simon@sensiolabs.com"
  11281. },
  11282. {
  11283. "name": "Symfony Community",
  11284. "homepage": "https://symfony.com/contributors"
  11285. }
  11286. ],
  11287. "description": "Converts CSS selectors to XPath expressions",
  11288. "homepage": "https://symfony.com",
  11289. "support": {
  11290. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  11291. },
  11292. "funding": [
  11293. {
  11294. "url": "https://symfony.com/sponsor",
  11295. "type": "custom"
  11296. },
  11297. {
  11298. "url": "https://github.com/fabpot",
  11299. "type": "github"
  11300. },
  11301. {
  11302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11303. "type": "tidelift"
  11304. }
  11305. ],
  11306. "time": "2024-09-25T14:21:43+00:00"
  11307. },
  11308. {
  11309. "name": "symfony/debug-bundle",
  11310. "version": "v7.3.0",
  11311. "source": {
  11312. "type": "git",
  11313. "url": "https://github.com/symfony/debug-bundle.git",
  11314. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8"
  11315. },
  11316. "dist": {
  11317. "type": "zip",
  11318. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/781acc90f31f5fe18915f9276890864ebbbe3da8",
  11319. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8",
  11320. "shasum": ""
  11321. },
  11322. "require": {
  11323. "composer-runtime-api": ">=2.1",
  11324. "ext-xml": "*",
  11325. "php": ">=8.2",
  11326. "symfony/config": "^7.3",
  11327. "symfony/dependency-injection": "^6.4|^7.0",
  11328. "symfony/http-kernel": "^6.4|^7.0",
  11329. "symfony/twig-bridge": "^6.4|^7.0",
  11330. "symfony/var-dumper": "^6.4|^7.0"
  11331. },
  11332. "require-dev": {
  11333. "symfony/web-profiler-bundle": "^6.4|^7.0"
  11334. },
  11335. "type": "symfony-bundle",
  11336. "autoload": {
  11337. "psr-4": {
  11338. "Symfony\\Bundle\\DebugBundle\\": ""
  11339. },
  11340. "exclude-from-classmap": [
  11341. "/Tests/"
  11342. ]
  11343. },
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "MIT"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Fabien Potencier",
  11351. "email": "fabien@symfony.com"
  11352. },
  11353. {
  11354. "name": "Symfony Community",
  11355. "homepage": "https://symfony.com/contributors"
  11356. }
  11357. ],
  11358. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  11359. "homepage": "https://symfony.com",
  11360. "support": {
  11361. "source": "https://github.com/symfony/debug-bundle/tree/v7.3.0"
  11362. },
  11363. "funding": [
  11364. {
  11365. "url": "https://symfony.com/sponsor",
  11366. "type": "custom"
  11367. },
  11368. {
  11369. "url": "https://github.com/fabpot",
  11370. "type": "github"
  11371. },
  11372. {
  11373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11374. "type": "tidelift"
  11375. }
  11376. ],
  11377. "time": "2025-05-04T13:21:13+00:00"
  11378. },
  11379. {
  11380. "name": "symfony/dom-crawler",
  11381. "version": "v7.3.1",
  11382. "source": {
  11383. "type": "git",
  11384. "url": "https://github.com/symfony/dom-crawler.git",
  11385. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
  11386. },
  11387. "dist": {
  11388. "type": "zip",
  11389. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  11390. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  11391. "shasum": ""
  11392. },
  11393. "require": {
  11394. "masterminds/html5": "^2.6",
  11395. "php": ">=8.2",
  11396. "symfony/polyfill-ctype": "~1.8",
  11397. "symfony/polyfill-mbstring": "~1.0"
  11398. },
  11399. "require-dev": {
  11400. "symfony/css-selector": "^6.4|^7.0"
  11401. },
  11402. "type": "library",
  11403. "autoload": {
  11404. "psr-4": {
  11405. "Symfony\\Component\\DomCrawler\\": ""
  11406. },
  11407. "exclude-from-classmap": [
  11408. "/Tests/"
  11409. ]
  11410. },
  11411. "notification-url": "https://packagist.org/downloads/",
  11412. "license": [
  11413. "MIT"
  11414. ],
  11415. "authors": [
  11416. {
  11417. "name": "Fabien Potencier",
  11418. "email": "fabien@symfony.com"
  11419. },
  11420. {
  11421. "name": "Symfony Community",
  11422. "homepage": "https://symfony.com/contributors"
  11423. }
  11424. ],
  11425. "description": "Eases DOM navigation for HTML and XML documents",
  11426. "homepage": "https://symfony.com",
  11427. "support": {
  11428. "source": "https://github.com/symfony/dom-crawler/tree/v7.3.1"
  11429. },
  11430. "funding": [
  11431. {
  11432. "url": "https://symfony.com/sponsor",
  11433. "type": "custom"
  11434. },
  11435. {
  11436. "url": "https://github.com/fabpot",
  11437. "type": "github"
  11438. },
  11439. {
  11440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11441. "type": "tidelift"
  11442. }
  11443. ],
  11444. "time": "2025-06-15T10:07:06+00:00"
  11445. },
  11446. {
  11447. "name": "symfony/maker-bundle",
  11448. "version": "v1.64.0",
  11449. "source": {
  11450. "type": "git",
  11451. "url": "https://github.com/symfony/maker-bundle.git",
  11452. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a"
  11453. },
  11454. "dist": {
  11455. "type": "zip",
  11456. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c86da84640b0586e92aee2b276ee3638ef2f425a",
  11457. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a",
  11458. "shasum": ""
  11459. },
  11460. "require": {
  11461. "doctrine/inflector": "^2.0",
  11462. "nikic/php-parser": "^5.0",
  11463. "php": ">=8.1",
  11464. "symfony/config": "^6.4|^7.0",
  11465. "symfony/console": "^6.4|^7.0",
  11466. "symfony/dependency-injection": "^6.4|^7.0",
  11467. "symfony/deprecation-contracts": "^2.2|^3",
  11468. "symfony/filesystem": "^6.4|^7.0",
  11469. "symfony/finder": "^6.4|^7.0",
  11470. "symfony/framework-bundle": "^6.4|^7.0",
  11471. "symfony/http-kernel": "^6.4|^7.0",
  11472. "symfony/process": "^6.4|^7.0"
  11473. },
  11474. "conflict": {
  11475. "doctrine/doctrine-bundle": "<2.10",
  11476. "doctrine/orm": "<2.15"
  11477. },
  11478. "require-dev": {
  11479. "composer/semver": "^3.0",
  11480. "doctrine/doctrine-bundle": "^2.5.0",
  11481. "doctrine/orm": "^2.15|^3",
  11482. "symfony/http-client": "^6.4|^7.0",
  11483. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  11484. "symfony/security-core": "^6.4|^7.0",
  11485. "symfony/security-http": "^6.4|^7.0",
  11486. "symfony/yaml": "^6.4|^7.0",
  11487. "twig/twig": "^3.0|^4.x-dev"
  11488. },
  11489. "type": "symfony-bundle",
  11490. "extra": {
  11491. "branch-alias": {
  11492. "dev-main": "1.x-dev"
  11493. }
  11494. },
  11495. "autoload": {
  11496. "psr-4": {
  11497. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11498. }
  11499. },
  11500. "notification-url": "https://packagist.org/downloads/",
  11501. "license": [
  11502. "MIT"
  11503. ],
  11504. "authors": [
  11505. {
  11506. "name": "Symfony Community",
  11507. "homepage": "https://symfony.com/contributors"
  11508. }
  11509. ],
  11510. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11511. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11512. "keywords": [
  11513. "code generator",
  11514. "dev",
  11515. "generator",
  11516. "scaffold",
  11517. "scaffolding"
  11518. ],
  11519. "support": {
  11520. "issues": "https://github.com/symfony/maker-bundle/issues",
  11521. "source": "https://github.com/symfony/maker-bundle/tree/v1.64.0"
  11522. },
  11523. "funding": [
  11524. {
  11525. "url": "https://symfony.com/sponsor",
  11526. "type": "custom"
  11527. },
  11528. {
  11529. "url": "https://github.com/fabpot",
  11530. "type": "github"
  11531. },
  11532. {
  11533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11534. "type": "tidelift"
  11535. }
  11536. ],
  11537. "time": "2025-06-23T16:12:08+00:00"
  11538. },
  11539. {
  11540. "name": "symfony/web-profiler-bundle",
  11541. "version": "v7.3.1",
  11542. "source": {
  11543. "type": "git",
  11544. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11545. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51"
  11546. },
  11547. "dist": {
  11548. "type": "zip",
  11549. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  11550. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  11551. "shasum": ""
  11552. },
  11553. "require": {
  11554. "composer-runtime-api": ">=2.1",
  11555. "php": ">=8.2",
  11556. "symfony/config": "^7.3",
  11557. "symfony/deprecation-contracts": "^2.5|^3",
  11558. "symfony/framework-bundle": "^6.4|^7.0",
  11559. "symfony/http-kernel": "^6.4|^7.0",
  11560. "symfony/routing": "^6.4|^7.0",
  11561. "symfony/twig-bundle": "^6.4|^7.0",
  11562. "twig/twig": "^3.12"
  11563. },
  11564. "conflict": {
  11565. "symfony/form": "<6.4",
  11566. "symfony/mailer": "<6.4",
  11567. "symfony/messenger": "<6.4",
  11568. "symfony/serializer": "<7.2",
  11569. "symfony/workflow": "<7.3"
  11570. },
  11571. "require-dev": {
  11572. "symfony/browser-kit": "^6.4|^7.0",
  11573. "symfony/console": "^6.4|^7.0",
  11574. "symfony/css-selector": "^6.4|^7.0",
  11575. "symfony/stopwatch": "^6.4|^7.0"
  11576. },
  11577. "type": "symfony-bundle",
  11578. "autoload": {
  11579. "psr-4": {
  11580. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11581. },
  11582. "exclude-from-classmap": [
  11583. "/Tests/"
  11584. ]
  11585. },
  11586. "notification-url": "https://packagist.org/downloads/",
  11587. "license": [
  11588. "MIT"
  11589. ],
  11590. "authors": [
  11591. {
  11592. "name": "Fabien Potencier",
  11593. "email": "fabien@symfony.com"
  11594. },
  11595. {
  11596. "name": "Symfony Community",
  11597. "homepage": "https://symfony.com/contributors"
  11598. }
  11599. ],
  11600. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11601. "homepage": "https://symfony.com",
  11602. "keywords": [
  11603. "dev"
  11604. ],
  11605. "support": {
  11606. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.3.1"
  11607. },
  11608. "funding": [
  11609. {
  11610. "url": "https://symfony.com/sponsor",
  11611. "type": "custom"
  11612. },
  11613. {
  11614. "url": "https://github.com/fabpot",
  11615. "type": "github"
  11616. },
  11617. {
  11618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11619. "type": "tidelift"
  11620. }
  11621. ],
  11622. "time": "2025-06-05T09:30:41+00:00"
  11623. },
  11624. {
  11625. "name": "theseer/tokenizer",
  11626. "version": "1.2.3",
  11627. "source": {
  11628. "type": "git",
  11629. "url": "https://github.com/theseer/tokenizer.git",
  11630. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11631. },
  11632. "dist": {
  11633. "type": "zip",
  11634. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11635. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11636. "shasum": ""
  11637. },
  11638. "require": {
  11639. "ext-dom": "*",
  11640. "ext-tokenizer": "*",
  11641. "ext-xmlwriter": "*",
  11642. "php": "^7.2 || ^8.0"
  11643. },
  11644. "type": "library",
  11645. "autoload": {
  11646. "classmap": [
  11647. "src/"
  11648. ]
  11649. },
  11650. "notification-url": "https://packagist.org/downloads/",
  11651. "license": [
  11652. "BSD-3-Clause"
  11653. ],
  11654. "authors": [
  11655. {
  11656. "name": "Arne Blankerts",
  11657. "email": "arne@blankerts.de",
  11658. "role": "Developer"
  11659. }
  11660. ],
  11661. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11662. "support": {
  11663. "issues": "https://github.com/theseer/tokenizer/issues",
  11664. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11665. },
  11666. "funding": [
  11667. {
  11668. "url": "https://github.com/theseer",
  11669. "type": "github"
  11670. }
  11671. ],
  11672. "time": "2024-03-03T12:36:25+00:00"
  11673. }
  11674. ],
  11675. "aliases": [],
  11676. "minimum-stability": "stable",
  11677. "stability-flags": {},
  11678. "prefer-stable": true,
  11679. "prefer-lowest": false,
  11680. "platform": {
  11681. "php": ">=8.2",
  11682. "ext-ctype": "*",
  11683. "ext-iconv": "*"
  11684. },
  11685. "platform-dev": {},
  11686. "plugin-api-version": "2.6.0"
  11687. }