composer.lock 358 KB

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