composer.lock 412 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423
  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": "8a5d9a07e6e4f10c583765642c4d9e97",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.5.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "d665d22c417056996c59019579f1967dfe5c1e82"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d665d22c417056996c59019579f1967dfe5c1e82",
  20. "reference": "d665d22c417056996c59019579f1967dfe5c1e82",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^7.2 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^1.10",
  30. "phpunit/phpunit": "^8 || ^9",
  31. "psr/log": "^1.0 || ^2.0 || ^3.0",
  32. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.5.7"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2025-05-26T15:08:54+00:00"
  84. },
  85. {
  86. "name": "composer/semver",
  87. "version": "3.4.3",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/composer/semver.git",
  91. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  96. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  97. "shasum": ""
  98. },
  99. "require": {
  100. "php": "^5.3.2 || ^7.0 || ^8.0"
  101. },
  102. "require-dev": {
  103. "phpstan/phpstan": "^1.11",
  104. "symfony/phpunit-bridge": "^3 || ^7"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Composer\\Semver\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Nils Adermann",
  124. "email": "naderman@naderman.de",
  125. "homepage": "http://www.naderman.de"
  126. },
  127. {
  128. "name": "Jordi Boggiano",
  129. "email": "j.boggiano@seld.be",
  130. "homepage": "http://seld.be"
  131. },
  132. {
  133. "name": "Rob Bast",
  134. "email": "rob.bast@gmail.com",
  135. "homepage": "http://robbast.nl"
  136. }
  137. ],
  138. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  139. "keywords": [
  140. "semantic",
  141. "semver",
  142. "validation",
  143. "versioning"
  144. ],
  145. "support": {
  146. "irc": "ircs://irc.libera.chat:6697/composer",
  147. "issues": "https://github.com/composer/semver/issues",
  148. "source": "https://github.com/composer/semver/tree/3.4.3"
  149. },
  150. "funding": [
  151. {
  152. "url": "https://packagist.com",
  153. "type": "custom"
  154. },
  155. {
  156. "url": "https://github.com/composer",
  157. "type": "github"
  158. },
  159. {
  160. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  161. "type": "tidelift"
  162. }
  163. ],
  164. "time": "2024-09-19T14:15:21+00:00"
  165. },
  166. {
  167. "name": "dflydev/dot-access-data",
  168. "version": "v3.0.3",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  172. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  177. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "php": "^7.1 || ^8.0"
  182. },
  183. "require-dev": {
  184. "phpstan/phpstan": "^0.12.42",
  185. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  186. "scrutinizer/ocular": "1.6.0",
  187. "squizlabs/php_codesniffer": "^3.5",
  188. "vimeo/psalm": "^4.0.0"
  189. },
  190. "type": "library",
  191. "extra": {
  192. "branch-alias": {
  193. "dev-main": "3.x-dev"
  194. }
  195. },
  196. "autoload": {
  197. "psr-4": {
  198. "Dflydev\\DotAccessData\\": "src/"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Dragonfly Development Inc.",
  208. "email": "info@dflydev.com",
  209. "homepage": "http://dflydev.com"
  210. },
  211. {
  212. "name": "Beau Simensen",
  213. "email": "beau@dflydev.com",
  214. "homepage": "http://beausimensen.com"
  215. },
  216. {
  217. "name": "Carlos Frutos",
  218. "email": "carlos@kiwing.it",
  219. "homepage": "https://github.com/cfrutos"
  220. },
  221. {
  222. "name": "Colin O'Dell",
  223. "email": "colinodell@gmail.com",
  224. "homepage": "https://www.colinodell.com"
  225. }
  226. ],
  227. "description": "Given a deep data structure, access data by dot notation.",
  228. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  229. "keywords": [
  230. "access",
  231. "data",
  232. "dot",
  233. "notation"
  234. ],
  235. "support": {
  236. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  237. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  238. },
  239. "time": "2024-07-08T12:26:09+00:00"
  240. },
  241. {
  242. "name": "doctrine/cache",
  243. "version": "2.2.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/doctrine/cache.git",
  247. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  252. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "php": "~7.1 || ^8.0"
  257. },
  258. "conflict": {
  259. "doctrine/common": ">2.2,<2.4"
  260. },
  261. "require-dev": {
  262. "cache/integration-tests": "dev-master",
  263. "doctrine/coding-standard": "^9",
  264. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  265. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  266. "symfony/cache": "^4.4 || ^5.4 || ^6",
  267. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  268. },
  269. "type": "library",
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "jonwage@gmail.com"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "schmittjoh@gmail.com"
  299. }
  300. ],
  301. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  302. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  303. "keywords": [
  304. "abstraction",
  305. "apcu",
  306. "cache",
  307. "caching",
  308. "couchdb",
  309. "memcached",
  310. "php",
  311. "redis",
  312. "xcache"
  313. ],
  314. "support": {
  315. "issues": "https://github.com/doctrine/cache/issues",
  316. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  317. },
  318. "funding": [
  319. {
  320. "url": "https://www.doctrine-project.org/sponsorship.html",
  321. "type": "custom"
  322. },
  323. {
  324. "url": "https://www.patreon.com/phpdoctrine",
  325. "type": "patreon"
  326. },
  327. {
  328. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  329. "type": "tidelift"
  330. }
  331. ],
  332. "time": "2022-05-20T20:07:39+00:00"
  333. },
  334. {
  335. "name": "doctrine/collections",
  336. "version": "2.3.0",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/collections.git",
  340. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  345. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "doctrine/deprecations": "^1",
  350. "php": "^8.1",
  351. "symfony/polyfill-php84": "^1.30"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "^12",
  355. "ext-json": "*",
  356. "phpstan/phpstan": "^1.8",
  357. "phpstan/phpstan-phpunit": "^1.0",
  358. "phpunit/phpunit": "^10.5"
  359. },
  360. "type": "library",
  361. "autoload": {
  362. "psr-4": {
  363. "Doctrine\\Common\\Collections\\": "src"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "Guilherme Blanco",
  373. "email": "guilhermeblanco@gmail.com"
  374. },
  375. {
  376. "name": "Roman Borschel",
  377. "email": "roman@code-factory.org"
  378. },
  379. {
  380. "name": "Benjamin Eberlei",
  381. "email": "kontakt@beberlei.de"
  382. },
  383. {
  384. "name": "Jonathan Wage",
  385. "email": "jonwage@gmail.com"
  386. },
  387. {
  388. "name": "Johannes Schmitt",
  389. "email": "schmittjoh@gmail.com"
  390. }
  391. ],
  392. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  393. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  394. "keywords": [
  395. "array",
  396. "collections",
  397. "iterators",
  398. "php"
  399. ],
  400. "support": {
  401. "issues": "https://github.com/doctrine/collections/issues",
  402. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  403. },
  404. "funding": [
  405. {
  406. "url": "https://www.doctrine-project.org/sponsorship.html",
  407. "type": "custom"
  408. },
  409. {
  410. "url": "https://www.patreon.com/phpdoctrine",
  411. "type": "patreon"
  412. },
  413. {
  414. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  415. "type": "tidelift"
  416. }
  417. ],
  418. "time": "2025-03-22T10:17:19+00:00"
  419. },
  420. {
  421. "name": "doctrine/dbal",
  422. "version": "3.9.5",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/doctrine/dbal.git",
  426. "reference": "4a4e2eed3134036ee36a147ee0dac037dfa17868"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/doctrine/dbal/zipball/4a4e2eed3134036ee36a147ee0dac037dfa17868",
  431. "reference": "4a4e2eed3134036ee36a147ee0dac037dfa17868",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "composer-runtime-api": "^2",
  436. "doctrine/cache": "^1.11|^2.0",
  437. "doctrine/deprecations": "^0.5.3|^1",
  438. "doctrine/event-manager": "^1|^2",
  439. "php": "^7.4 || ^8.0",
  440. "psr/cache": "^1|^2|^3",
  441. "psr/log": "^1|^2|^3"
  442. },
  443. "require-dev": {
  444. "doctrine/coding-standard": "13.0.0",
  445. "fig/log-test": "^1",
  446. "jetbrains/phpstorm-stubs": "2023.1",
  447. "phpstan/phpstan": "2.1.17",
  448. "phpstan/phpstan-strict-rules": "^2",
  449. "phpunit/phpunit": "9.6.23",
  450. "slevomat/coding-standard": "8.16.2",
  451. "squizlabs/php_codesniffer": "3.13.1",
  452. "symfony/cache": "^5.4|^6.0|^7.0",
  453. "symfony/console": "^4.4|^5.4|^6.0|^7.0"
  454. },
  455. "suggest": {
  456. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  457. },
  458. "bin": [
  459. "bin/doctrine-dbal"
  460. ],
  461. "type": "library",
  462. "autoload": {
  463. "psr-4": {
  464. "Doctrine\\DBAL\\": "src"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Guilherme Blanco",
  474. "email": "guilhermeblanco@gmail.com"
  475. },
  476. {
  477. "name": "Roman Borschel",
  478. "email": "roman@code-factory.org"
  479. },
  480. {
  481. "name": "Benjamin Eberlei",
  482. "email": "kontakt@beberlei.de"
  483. },
  484. {
  485. "name": "Jonathan Wage",
  486. "email": "jonwage@gmail.com"
  487. }
  488. ],
  489. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  490. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  491. "keywords": [
  492. "abstraction",
  493. "database",
  494. "db2",
  495. "dbal",
  496. "mariadb",
  497. "mssql",
  498. "mysql",
  499. "oci8",
  500. "oracle",
  501. "pdo",
  502. "pgsql",
  503. "postgresql",
  504. "queryobject",
  505. "sasql",
  506. "sql",
  507. "sqlite",
  508. "sqlserver",
  509. "sqlsrv"
  510. ],
  511. "support": {
  512. "issues": "https://github.com/doctrine/dbal/issues",
  513. "source": "https://github.com/doctrine/dbal/tree/3.9.5"
  514. },
  515. "funding": [
  516. {
  517. "url": "https://www.doctrine-project.org/sponsorship.html",
  518. "type": "custom"
  519. },
  520. {
  521. "url": "https://www.patreon.com/phpdoctrine",
  522. "type": "patreon"
  523. },
  524. {
  525. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  526. "type": "tidelift"
  527. }
  528. ],
  529. "time": "2025-06-15T22:40:05+00:00"
  530. },
  531. {
  532. "name": "doctrine/deprecations",
  533. "version": "1.1.5",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/doctrine/deprecations.git",
  537. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  542. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "php": "^7.1 || ^8.0"
  547. },
  548. "conflict": {
  549. "phpunit/phpunit": "<=7.5 || >=13"
  550. },
  551. "require-dev": {
  552. "doctrine/coding-standard": "^9 || ^12 || ^13",
  553. "phpstan/phpstan": "1.4.10 || 2.1.11",
  554. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  555. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  556. "psr/log": "^1 || ^2 || ^3"
  557. },
  558. "suggest": {
  559. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  560. },
  561. "type": "library",
  562. "autoload": {
  563. "psr-4": {
  564. "Doctrine\\Deprecations\\": "src"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "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.",
  572. "homepage": "https://www.doctrine-project.org/",
  573. "support": {
  574. "issues": "https://github.com/doctrine/deprecations/issues",
  575. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  576. },
  577. "time": "2025-04-07T20:06:18+00:00"
  578. },
  579. {
  580. "name": "doctrine/doctrine-bundle",
  581. "version": "2.15.0",
  582. "source": {
  583. "type": "git",
  584. "url": "https://github.com/doctrine/DoctrineBundle.git",
  585. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6"
  586. },
  587. "dist": {
  588. "type": "zip",
  589. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d88294521a1bca943240adca65fa19ca8a7288c6",
  590. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6",
  591. "shasum": ""
  592. },
  593. "require": {
  594. "doctrine/dbal": "^3.7.0 || ^4.0",
  595. "doctrine/persistence": "^3.1 || ^4",
  596. "doctrine/sql-formatter": "^1.0.1",
  597. "php": "^8.1",
  598. "symfony/cache": "^6.4 || ^7.0",
  599. "symfony/config": "^6.4 || ^7.0",
  600. "symfony/console": "^6.4 || ^7.0",
  601. "symfony/dependency-injection": "^6.4 || ^7.0",
  602. "symfony/deprecation-contracts": "^2.1 || ^3",
  603. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  604. "symfony/framework-bundle": "^6.4 || ^7.0",
  605. "symfony/service-contracts": "^2.5 || ^3"
  606. },
  607. "conflict": {
  608. "doctrine/annotations": ">=3.0",
  609. "doctrine/cache": "< 1.11",
  610. "doctrine/orm": "<2.17 || >=4.0",
  611. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  612. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  613. },
  614. "require-dev": {
  615. "doctrine/annotations": "^1 || ^2",
  616. "doctrine/cache": "^1.11 || ^2.0",
  617. "doctrine/coding-standard": "^13",
  618. "doctrine/deprecations": "^1.0",
  619. "doctrine/orm": "^2.17 || ^3.1",
  620. "friendsofphp/proxy-manager-lts": "^1.0",
  621. "phpstan/phpstan": "2.1.1",
  622. "phpstan/phpstan-phpunit": "2.0.3",
  623. "phpstan/phpstan-strict-rules": "^2",
  624. "phpunit/phpunit": "^9.6.22",
  625. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  626. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  627. "symfony/messenger": "^6.4 || ^7.0",
  628. "symfony/phpunit-bridge": "^7.2",
  629. "symfony/property-info": "^6.4 || ^7.0",
  630. "symfony/security-bundle": "^6.4 || ^7.0",
  631. "symfony/stopwatch": "^6.4 || ^7.0",
  632. "symfony/string": "^6.4 || ^7.0",
  633. "symfony/twig-bridge": "^6.4 || ^7.0",
  634. "symfony/validator": "^6.4 || ^7.0",
  635. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  636. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  637. "symfony/yaml": "^6.4 || ^7.0",
  638. "twig/twig": "^2.13 || ^3.0.4"
  639. },
  640. "suggest": {
  641. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  642. "ext-pdo": "*",
  643. "symfony/web-profiler-bundle": "To use the data collector."
  644. },
  645. "type": "symfony-bundle",
  646. "autoload": {
  647. "psr-4": {
  648. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "authors": [
  656. {
  657. "name": "Fabien Potencier",
  658. "email": "fabien@symfony.com"
  659. },
  660. {
  661. "name": "Benjamin Eberlei",
  662. "email": "kontakt@beberlei.de"
  663. },
  664. {
  665. "name": "Symfony Community",
  666. "homepage": "https://symfony.com/contributors"
  667. },
  668. {
  669. "name": "Doctrine Project",
  670. "homepage": "https://www.doctrine-project.org/"
  671. }
  672. ],
  673. "description": "Symfony DoctrineBundle",
  674. "homepage": "https://www.doctrine-project.org",
  675. "keywords": [
  676. "database",
  677. "dbal",
  678. "orm",
  679. "persistence"
  680. ],
  681. "support": {
  682. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  683. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.15.0"
  684. },
  685. "funding": [
  686. {
  687. "url": "https://www.doctrine-project.org/sponsorship.html",
  688. "type": "custom"
  689. },
  690. {
  691. "url": "https://www.patreon.com/phpdoctrine",
  692. "type": "patreon"
  693. },
  694. {
  695. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  696. "type": "tidelift"
  697. }
  698. ],
  699. "time": "2025-06-16T19:53:58+00:00"
  700. },
  701. {
  702. "name": "doctrine/doctrine-migrations-bundle",
  703. "version": "3.4.2",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  707. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  712. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "doctrine/doctrine-bundle": "^2.4",
  717. "doctrine/migrations": "^3.2",
  718. "php": "^7.2 || ^8.0",
  719. "symfony/deprecation-contracts": "^2.1 || ^3",
  720. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  721. },
  722. "require-dev": {
  723. "composer/semver": "^3.0",
  724. "doctrine/coding-standard": "^12",
  725. "doctrine/orm": "^2.6 || ^3",
  726. "phpstan/phpstan": "^1.4 || ^2",
  727. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  728. "phpstan/phpstan-phpunit": "^1 || ^2",
  729. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  730. "phpstan/phpstan-symfony": "^1.3 || ^2",
  731. "phpunit/phpunit": "^8.5 || ^9.5",
  732. "symfony/phpunit-bridge": "^6.3 || ^7",
  733. "symfony/var-exporter": "^5.4 || ^6 || ^7"
  734. },
  735. "type": "symfony-bundle",
  736. "autoload": {
  737. "psr-4": {
  738. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "MIT"
  744. ],
  745. "authors": [
  746. {
  747. "name": "Fabien Potencier",
  748. "email": "fabien@symfony.com"
  749. },
  750. {
  751. "name": "Doctrine Project",
  752. "homepage": "https://www.doctrine-project.org"
  753. },
  754. {
  755. "name": "Symfony Community",
  756. "homepage": "https://symfony.com/contributors"
  757. }
  758. ],
  759. "description": "Symfony DoctrineMigrationsBundle",
  760. "homepage": "https://www.doctrine-project.org",
  761. "keywords": [
  762. "dbal",
  763. "migrations",
  764. "schema"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  768. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.4.2"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://www.doctrine-project.org/sponsorship.html",
  773. "type": "custom"
  774. },
  775. {
  776. "url": "https://www.patreon.com/phpdoctrine",
  777. "type": "patreon"
  778. },
  779. {
  780. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  781. "type": "tidelift"
  782. }
  783. ],
  784. "time": "2025-03-11T17:36:26+00:00"
  785. },
  786. {
  787. "name": "doctrine/event-manager",
  788. "version": "2.0.1",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/doctrine/event-manager.git",
  792. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  797. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "php": "^8.1"
  802. },
  803. "conflict": {
  804. "doctrine/common": "<2.9"
  805. },
  806. "require-dev": {
  807. "doctrine/coding-standard": "^12",
  808. "phpstan/phpstan": "^1.8.8",
  809. "phpunit/phpunit": "^10.5",
  810. "vimeo/psalm": "^5.24"
  811. },
  812. "type": "library",
  813. "autoload": {
  814. "psr-4": {
  815. "Doctrine\\Common\\": "src"
  816. }
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Guilherme Blanco",
  825. "email": "guilhermeblanco@gmail.com"
  826. },
  827. {
  828. "name": "Roman Borschel",
  829. "email": "roman@code-factory.org"
  830. },
  831. {
  832. "name": "Benjamin Eberlei",
  833. "email": "kontakt@beberlei.de"
  834. },
  835. {
  836. "name": "Jonathan Wage",
  837. "email": "jonwage@gmail.com"
  838. },
  839. {
  840. "name": "Johannes Schmitt",
  841. "email": "schmittjoh@gmail.com"
  842. },
  843. {
  844. "name": "Marco Pivetta",
  845. "email": "ocramius@gmail.com"
  846. }
  847. ],
  848. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  849. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  850. "keywords": [
  851. "event",
  852. "event dispatcher",
  853. "event manager",
  854. "event system",
  855. "events"
  856. ],
  857. "support": {
  858. "issues": "https://github.com/doctrine/event-manager/issues",
  859. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  860. },
  861. "funding": [
  862. {
  863. "url": "https://www.doctrine-project.org/sponsorship.html",
  864. "type": "custom"
  865. },
  866. {
  867. "url": "https://www.patreon.com/phpdoctrine",
  868. "type": "patreon"
  869. },
  870. {
  871. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  872. "type": "tidelift"
  873. }
  874. ],
  875. "time": "2024-05-22T20:47:39+00:00"
  876. },
  877. {
  878. "name": "doctrine/inflector",
  879. "version": "2.0.10",
  880. "source": {
  881. "type": "git",
  882. "url": "https://github.com/doctrine/inflector.git",
  883. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  884. },
  885. "dist": {
  886. "type": "zip",
  887. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  888. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  889. "shasum": ""
  890. },
  891. "require": {
  892. "php": "^7.2 || ^8.0"
  893. },
  894. "require-dev": {
  895. "doctrine/coding-standard": "^11.0",
  896. "phpstan/phpstan": "^1.8",
  897. "phpstan/phpstan-phpunit": "^1.1",
  898. "phpstan/phpstan-strict-rules": "^1.3",
  899. "phpunit/phpunit": "^8.5 || ^9.5",
  900. "vimeo/psalm": "^4.25 || ^5.4"
  901. },
  902. "type": "library",
  903. "autoload": {
  904. "psr-4": {
  905. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  906. }
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "MIT"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Guilherme Blanco",
  915. "email": "guilhermeblanco@gmail.com"
  916. },
  917. {
  918. "name": "Roman Borschel",
  919. "email": "roman@code-factory.org"
  920. },
  921. {
  922. "name": "Benjamin Eberlei",
  923. "email": "kontakt@beberlei.de"
  924. },
  925. {
  926. "name": "Jonathan Wage",
  927. "email": "jonwage@gmail.com"
  928. },
  929. {
  930. "name": "Johannes Schmitt",
  931. "email": "schmittjoh@gmail.com"
  932. }
  933. ],
  934. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  935. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  936. "keywords": [
  937. "inflection",
  938. "inflector",
  939. "lowercase",
  940. "manipulation",
  941. "php",
  942. "plural",
  943. "singular",
  944. "strings",
  945. "uppercase",
  946. "words"
  947. ],
  948. "support": {
  949. "issues": "https://github.com/doctrine/inflector/issues",
  950. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://www.doctrine-project.org/sponsorship.html",
  955. "type": "custom"
  956. },
  957. {
  958. "url": "https://www.patreon.com/phpdoctrine",
  959. "type": "patreon"
  960. },
  961. {
  962. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  963. "type": "tidelift"
  964. }
  965. ],
  966. "time": "2024-02-18T20:23:39+00:00"
  967. },
  968. {
  969. "name": "doctrine/instantiator",
  970. "version": "2.0.0",
  971. "source": {
  972. "type": "git",
  973. "url": "https://github.com/doctrine/instantiator.git",
  974. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  975. },
  976. "dist": {
  977. "type": "zip",
  978. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  979. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  980. "shasum": ""
  981. },
  982. "require": {
  983. "php": "^8.1"
  984. },
  985. "require-dev": {
  986. "doctrine/coding-standard": "^11",
  987. "ext-pdo": "*",
  988. "ext-phar": "*",
  989. "phpbench/phpbench": "^1.2",
  990. "phpstan/phpstan": "^1.9.4",
  991. "phpstan/phpstan-phpunit": "^1.3",
  992. "phpunit/phpunit": "^9.5.27",
  993. "vimeo/psalm": "^5.4"
  994. },
  995. "type": "library",
  996. "autoload": {
  997. "psr-4": {
  998. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Marco Pivetta",
  1008. "email": "ocramius@gmail.com",
  1009. "homepage": "https://ocramius.github.io/"
  1010. }
  1011. ],
  1012. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1013. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1014. "keywords": [
  1015. "constructor",
  1016. "instantiate"
  1017. ],
  1018. "support": {
  1019. "issues": "https://github.com/doctrine/instantiator/issues",
  1020. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1021. },
  1022. "funding": [
  1023. {
  1024. "url": "https://www.doctrine-project.org/sponsorship.html",
  1025. "type": "custom"
  1026. },
  1027. {
  1028. "url": "https://www.patreon.com/phpdoctrine",
  1029. "type": "patreon"
  1030. },
  1031. {
  1032. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1033. "type": "tidelift"
  1034. }
  1035. ],
  1036. "time": "2022-12-30T00:23:10+00:00"
  1037. },
  1038. {
  1039. "name": "doctrine/lexer",
  1040. "version": "3.0.1",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/doctrine/lexer.git",
  1044. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1049. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1050. "shasum": ""
  1051. },
  1052. "require": {
  1053. "php": "^8.1"
  1054. },
  1055. "require-dev": {
  1056. "doctrine/coding-standard": "^12",
  1057. "phpstan/phpstan": "^1.10",
  1058. "phpunit/phpunit": "^10.5",
  1059. "psalm/plugin-phpunit": "^0.18.3",
  1060. "vimeo/psalm": "^5.21"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Doctrine\\Common\\Lexer\\": "src"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "Guilherme Blanco",
  1075. "email": "guilhermeblanco@gmail.com"
  1076. },
  1077. {
  1078. "name": "Roman Borschel",
  1079. "email": "roman@code-factory.org"
  1080. },
  1081. {
  1082. "name": "Johannes Schmitt",
  1083. "email": "schmittjoh@gmail.com"
  1084. }
  1085. ],
  1086. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1087. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1088. "keywords": [
  1089. "annotations",
  1090. "docblock",
  1091. "lexer",
  1092. "parser",
  1093. "php"
  1094. ],
  1095. "support": {
  1096. "issues": "https://github.com/doctrine/lexer/issues",
  1097. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1098. },
  1099. "funding": [
  1100. {
  1101. "url": "https://www.doctrine-project.org/sponsorship.html",
  1102. "type": "custom"
  1103. },
  1104. {
  1105. "url": "https://www.patreon.com/phpdoctrine",
  1106. "type": "patreon"
  1107. },
  1108. {
  1109. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1110. "type": "tidelift"
  1111. }
  1112. ],
  1113. "time": "2024-02-05T11:56:58+00:00"
  1114. },
  1115. {
  1116. "name": "doctrine/migrations",
  1117. "version": "3.9.0",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/doctrine/migrations.git",
  1121. "reference": "325b61e41d032f5f7d7e2d11cbefff656eadc9ab"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/doctrine/migrations/zipball/325b61e41d032f5f7d7e2d11cbefff656eadc9ab",
  1126. "reference": "325b61e41d032f5f7d7e2d11cbefff656eadc9ab",
  1127. "shasum": ""
  1128. },
  1129. "require": {
  1130. "composer-runtime-api": "^2",
  1131. "doctrine/dbal": "^3.6 || ^4",
  1132. "doctrine/deprecations": "^0.5.3 || ^1",
  1133. "doctrine/event-manager": "^1.2 || ^2.0",
  1134. "php": "^8.1",
  1135. "psr/log": "^1.1.3 || ^2 || ^3",
  1136. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1137. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1138. "symfony/var-exporter": "^6.2 || ^7.0"
  1139. },
  1140. "conflict": {
  1141. "doctrine/orm": "<2.12 || >=4"
  1142. },
  1143. "require-dev": {
  1144. "doctrine/coding-standard": "^12",
  1145. "doctrine/orm": "^2.13 || ^3",
  1146. "doctrine/persistence": "^2 || ^3 || ^4",
  1147. "doctrine/sql-formatter": "^1.0",
  1148. "ext-pdo_sqlite": "*",
  1149. "fig/log-test": "^1",
  1150. "phpstan/phpstan": "^1.10",
  1151. "phpstan/phpstan-deprecation-rules": "^1.1",
  1152. "phpstan/phpstan-phpunit": "^1.3",
  1153. "phpstan/phpstan-strict-rules": "^1.4",
  1154. "phpstan/phpstan-symfony": "^1.3",
  1155. "phpunit/phpunit": "^10.3",
  1156. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1157. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1158. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1159. },
  1160. "suggest": {
  1161. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1162. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1163. },
  1164. "bin": [
  1165. "bin/doctrine-migrations"
  1166. ],
  1167. "type": "library",
  1168. "autoload": {
  1169. "psr-4": {
  1170. "Doctrine\\Migrations\\": "src"
  1171. }
  1172. },
  1173. "notification-url": "https://packagist.org/downloads/",
  1174. "license": [
  1175. "MIT"
  1176. ],
  1177. "authors": [
  1178. {
  1179. "name": "Benjamin Eberlei",
  1180. "email": "kontakt@beberlei.de"
  1181. },
  1182. {
  1183. "name": "Jonathan Wage",
  1184. "email": "jonwage@gmail.com"
  1185. },
  1186. {
  1187. "name": "Michael Simonson",
  1188. "email": "contact@mikesimonson.com"
  1189. }
  1190. ],
  1191. "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.",
  1192. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1193. "keywords": [
  1194. "database",
  1195. "dbal",
  1196. "migrations"
  1197. ],
  1198. "support": {
  1199. "issues": "https://github.com/doctrine/migrations/issues",
  1200. "source": "https://github.com/doctrine/migrations/tree/3.9.0"
  1201. },
  1202. "funding": [
  1203. {
  1204. "url": "https://www.doctrine-project.org/sponsorship.html",
  1205. "type": "custom"
  1206. },
  1207. {
  1208. "url": "https://www.patreon.com/phpdoctrine",
  1209. "type": "patreon"
  1210. },
  1211. {
  1212. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1213. "type": "tidelift"
  1214. }
  1215. ],
  1216. "time": "2025-03-26T06:48:45+00:00"
  1217. },
  1218. {
  1219. "name": "doctrine/orm",
  1220. "version": "3.4.1",
  1221. "source": {
  1222. "type": "git",
  1223. "url": "https://github.com/doctrine/orm.git",
  1224. "reference": "92e2f6db831be44bc041fdfbc49402a063ec33cc"
  1225. },
  1226. "dist": {
  1227. "type": "zip",
  1228. "url": "https://api.github.com/repos/doctrine/orm/zipball/92e2f6db831be44bc041fdfbc49402a063ec33cc",
  1229. "reference": "92e2f6db831be44bc041fdfbc49402a063ec33cc",
  1230. "shasum": ""
  1231. },
  1232. "require": {
  1233. "composer-runtime-api": "^2",
  1234. "doctrine/collections": "^2.2",
  1235. "doctrine/dbal": "^3.8.2 || ^4",
  1236. "doctrine/deprecations": "^0.5.3 || ^1",
  1237. "doctrine/event-manager": "^1.2 || ^2",
  1238. "doctrine/inflector": "^1.4 || ^2.0",
  1239. "doctrine/instantiator": "^1.3 || ^2",
  1240. "doctrine/lexer": "^3",
  1241. "doctrine/persistence": "^3.3.1 || ^4",
  1242. "ext-ctype": "*",
  1243. "php": "^8.1",
  1244. "psr/cache": "^1 || ^2 || ^3",
  1245. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1246. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1247. },
  1248. "require-dev": {
  1249. "doctrine/coding-standard": "^13.0",
  1250. "phpbench/phpbench": "^1.0",
  1251. "phpdocumentor/guides-cli": "^1.4",
  1252. "phpstan/extension-installer": "^1.4",
  1253. "phpstan/phpstan": "2.0.3",
  1254. "phpstan/phpstan-deprecation-rules": "^2",
  1255. "phpunit/phpunit": "^10.4.0",
  1256. "psr/log": "^1 || ^2 || ^3",
  1257. "squizlabs/php_codesniffer": "3.12.0",
  1258. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1259. },
  1260. "suggest": {
  1261. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1262. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1263. },
  1264. "type": "library",
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Doctrine\\ORM\\": "src"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Guilherme Blanco",
  1277. "email": "guilhermeblanco@gmail.com"
  1278. },
  1279. {
  1280. "name": "Roman Borschel",
  1281. "email": "roman@code-factory.org"
  1282. },
  1283. {
  1284. "name": "Benjamin Eberlei",
  1285. "email": "kontakt@beberlei.de"
  1286. },
  1287. {
  1288. "name": "Jonathan Wage",
  1289. "email": "jonwage@gmail.com"
  1290. },
  1291. {
  1292. "name": "Marco Pivetta",
  1293. "email": "ocramius@gmail.com"
  1294. }
  1295. ],
  1296. "description": "Object-Relational-Mapper for PHP",
  1297. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1298. "keywords": [
  1299. "database",
  1300. "orm"
  1301. ],
  1302. "support": {
  1303. "issues": "https://github.com/doctrine/orm/issues",
  1304. "source": "https://github.com/doctrine/orm/tree/3.4.1"
  1305. },
  1306. "time": "2025-06-21T10:44:26+00:00"
  1307. },
  1308. {
  1309. "name": "doctrine/persistence",
  1310. "version": "4.0.0",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/doctrine/persistence.git",
  1314. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1319. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "doctrine/event-manager": "^1 || ^2",
  1324. "php": "^8.1",
  1325. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1326. },
  1327. "conflict": {
  1328. "doctrine/common": "<2.10"
  1329. },
  1330. "require-dev": {
  1331. "doctrine/coding-standard": "^12",
  1332. "phpstan/phpstan": "1.12.7",
  1333. "phpstan/phpstan-phpunit": "^1",
  1334. "phpstan/phpstan-strict-rules": "^1.1",
  1335. "phpunit/phpunit": "^9.6",
  1336. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1337. },
  1338. "type": "library",
  1339. "autoload": {
  1340. "psr-4": {
  1341. "Doctrine\\Persistence\\": "src/Persistence"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Guilherme Blanco",
  1351. "email": "guilhermeblanco@gmail.com"
  1352. },
  1353. {
  1354. "name": "Roman Borschel",
  1355. "email": "roman@code-factory.org"
  1356. },
  1357. {
  1358. "name": "Benjamin Eberlei",
  1359. "email": "kontakt@beberlei.de"
  1360. },
  1361. {
  1362. "name": "Jonathan Wage",
  1363. "email": "jonwage@gmail.com"
  1364. },
  1365. {
  1366. "name": "Johannes Schmitt",
  1367. "email": "schmittjoh@gmail.com"
  1368. },
  1369. {
  1370. "name": "Marco Pivetta",
  1371. "email": "ocramius@gmail.com"
  1372. }
  1373. ],
  1374. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1375. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1376. "keywords": [
  1377. "mapper",
  1378. "object",
  1379. "odm",
  1380. "orm",
  1381. "persistence"
  1382. ],
  1383. "support": {
  1384. "issues": "https://github.com/doctrine/persistence/issues",
  1385. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1386. },
  1387. "funding": [
  1388. {
  1389. "url": "https://www.doctrine-project.org/sponsorship.html",
  1390. "type": "custom"
  1391. },
  1392. {
  1393. "url": "https://www.patreon.com/phpdoctrine",
  1394. "type": "patreon"
  1395. },
  1396. {
  1397. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1398. "type": "tidelift"
  1399. }
  1400. ],
  1401. "time": "2024-11-01T21:49:07+00:00"
  1402. },
  1403. {
  1404. "name": "doctrine/sql-formatter",
  1405. "version": "1.5.2",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://github.com/doctrine/sql-formatter.git",
  1409. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1410. },
  1411. "dist": {
  1412. "type": "zip",
  1413. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1414. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1415. "shasum": ""
  1416. },
  1417. "require": {
  1418. "php": "^8.1"
  1419. },
  1420. "require-dev": {
  1421. "doctrine/coding-standard": "^12",
  1422. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1423. "phpstan/phpstan": "^1.10",
  1424. "phpunit/phpunit": "^10.5"
  1425. },
  1426. "bin": [
  1427. "bin/sql-formatter"
  1428. ],
  1429. "type": "library",
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Doctrine\\SqlFormatter\\": "src"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Jeremy Dorn",
  1442. "email": "jeremy@jeremydorn.com",
  1443. "homepage": "https://jeremydorn.com/"
  1444. }
  1445. ],
  1446. "description": "a PHP SQL highlighting library",
  1447. "homepage": "https://github.com/doctrine/sql-formatter/",
  1448. "keywords": [
  1449. "highlight",
  1450. "sql"
  1451. ],
  1452. "support": {
  1453. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1454. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1455. },
  1456. "time": "2025-01-24T11:45:48+00:00"
  1457. },
  1458. {
  1459. "name": "egulias/email-validator",
  1460. "version": "4.0.4",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/egulias/EmailValidator.git",
  1464. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1469. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "doctrine/lexer": "^2.0 || ^3.0",
  1474. "php": ">=8.1",
  1475. "symfony/polyfill-intl-idn": "^1.26"
  1476. },
  1477. "require-dev": {
  1478. "phpunit/phpunit": "^10.2",
  1479. "vimeo/psalm": "^5.12"
  1480. },
  1481. "suggest": {
  1482. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1483. },
  1484. "type": "library",
  1485. "extra": {
  1486. "branch-alias": {
  1487. "dev-master": "4.0.x-dev"
  1488. }
  1489. },
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Egulias\\EmailValidator\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Eduardo Gulias Davis"
  1502. }
  1503. ],
  1504. "description": "A library for validating emails against several RFCs",
  1505. "homepage": "https://github.com/egulias/EmailValidator",
  1506. "keywords": [
  1507. "email",
  1508. "emailvalidation",
  1509. "emailvalidator",
  1510. "validation",
  1511. "validator"
  1512. ],
  1513. "support": {
  1514. "issues": "https://github.com/egulias/EmailValidator/issues",
  1515. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1516. },
  1517. "funding": [
  1518. {
  1519. "url": "https://github.com/egulias",
  1520. "type": "github"
  1521. }
  1522. ],
  1523. "time": "2025-03-06T22:45:56+00:00"
  1524. },
  1525. {
  1526. "name": "embed/embed",
  1527. "version": "v4.4.17",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/php-embed/Embed.git",
  1531. "reference": "b2ea091a5586c14ea5f2c5bf52fb0ef38e5aef87"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/php-embed/Embed/zipball/b2ea091a5586c14ea5f2c5bf52fb0ef38e5aef87",
  1536. "reference": "b2ea091a5586c14ea5f2c5bf52fb0ef38e5aef87",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "composer/ca-bundle": "^1.0",
  1541. "ext-curl": "*",
  1542. "ext-dom": "*",
  1543. "ext-json": "*",
  1544. "ext-mbstring": "*",
  1545. "ml/json-ld": "^1.1",
  1546. "oscarotero/html-parser": "^0.1.4",
  1547. "php": "^7.4|^8",
  1548. "psr/http-client": "^1.0",
  1549. "psr/http-factory": "^1.0",
  1550. "psr/http-message": "^1.0|^2.0"
  1551. },
  1552. "require-dev": {
  1553. "brick/varexporter": "^0.3.1",
  1554. "friendsofphp/php-cs-fixer": "^2.0",
  1555. "nyholm/psr7": "^1.2",
  1556. "oscarotero/php-cs-fixer-config": "^1.0",
  1557. "phpunit/phpunit": "^9.0",
  1558. "symfony/css-selector": "^5.0"
  1559. },
  1560. "suggest": {
  1561. "symfony/css-selector": "If you want to get elements using css selectors"
  1562. },
  1563. "type": "library",
  1564. "autoload": {
  1565. "files": [
  1566. "src/functions.php"
  1567. ],
  1568. "psr-4": {
  1569. "Embed\\": "src"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Oscar Otero",
  1579. "email": "oom@oscarotero.com",
  1580. "homepage": "http://oscarotero.com",
  1581. "role": "Developer"
  1582. }
  1583. ],
  1584. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1585. "homepage": "https://github.com/oscarotero/Embed",
  1586. "keywords": [
  1587. "embed",
  1588. "embedly",
  1589. "oembed",
  1590. "opengraph",
  1591. "twitter cards"
  1592. ],
  1593. "support": {
  1594. "email": "oom@oscarotero.com",
  1595. "issues": "https://github.com/oscarotero/Embed/issues",
  1596. "source": "https://github.com/php-embed/Embed/tree/v4.4.17"
  1597. },
  1598. "funding": [
  1599. {
  1600. "url": "https://paypal.me/oscarotero",
  1601. "type": "custom"
  1602. },
  1603. {
  1604. "url": "https://github.com/oscarotero",
  1605. "type": "github"
  1606. },
  1607. {
  1608. "url": "https://www.patreon.com/misteroom",
  1609. "type": "patreon"
  1610. }
  1611. ],
  1612. "time": "2025-05-13T12:42:29+00:00"
  1613. },
  1614. {
  1615. "name": "laminas/laminas-diactoros",
  1616. "version": "3.6.0",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/laminas/laminas-diactoros.git",
  1620. "reference": "b068eac123f21c0e592de41deeb7403b88e0a89f"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/b068eac123f21c0e592de41deeb7403b88e0a89f",
  1625. "reference": "b068eac123f21c0e592de41deeb7403b88e0a89f",
  1626. "shasum": ""
  1627. },
  1628. "require": {
  1629. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  1630. "psr/http-factory": "^1.1",
  1631. "psr/http-message": "^1.1 || ^2.0"
  1632. },
  1633. "conflict": {
  1634. "amphp/amp": "<2.6.4"
  1635. },
  1636. "provide": {
  1637. "psr/http-factory-implementation": "^1.0",
  1638. "psr/http-message-implementation": "^1.1 || ^2.0"
  1639. },
  1640. "require-dev": {
  1641. "ext-curl": "*",
  1642. "ext-dom": "*",
  1643. "ext-gd": "*",
  1644. "ext-libxml": "*",
  1645. "http-interop/http-factory-tests": "^2.2.0",
  1646. "laminas/laminas-coding-standard": "~3.0.0",
  1647. "php-http/psr7-integration-tests": "^1.4.0",
  1648. "phpunit/phpunit": "^10.5.36",
  1649. "psalm/plugin-phpunit": "^0.19.0",
  1650. "vimeo/psalm": "^5.26.1"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "laminas": {
  1655. "module": "Laminas\\Diactoros",
  1656. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "files": [
  1661. "src/functions/create_uploaded_file.php",
  1662. "src/functions/marshal_headers_from_sapi.php",
  1663. "src/functions/marshal_method_from_sapi.php",
  1664. "src/functions/marshal_protocol_version_from_sapi.php",
  1665. "src/functions/normalize_server.php",
  1666. "src/functions/normalize_uploaded_files.php",
  1667. "src/functions/parse_cookie_header.php"
  1668. ],
  1669. "psr-4": {
  1670. "Laminas\\Diactoros\\": "src/"
  1671. }
  1672. },
  1673. "notification-url": "https://packagist.org/downloads/",
  1674. "license": [
  1675. "BSD-3-Clause"
  1676. ],
  1677. "description": "PSR HTTP Message implementations",
  1678. "homepage": "https://laminas.dev",
  1679. "keywords": [
  1680. "http",
  1681. "laminas",
  1682. "psr",
  1683. "psr-17",
  1684. "psr-7"
  1685. ],
  1686. "support": {
  1687. "chat": "https://laminas.dev/chat",
  1688. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  1689. "forum": "https://discourse.laminas.dev",
  1690. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  1691. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  1692. "source": "https://github.com/laminas/laminas-diactoros"
  1693. },
  1694. "funding": [
  1695. {
  1696. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1697. "type": "community_bridge"
  1698. }
  1699. ],
  1700. "time": "2025-05-05T16:03:34+00:00"
  1701. },
  1702. {
  1703. "name": "laminas/laminas-escaper",
  1704. "version": "2.17.0",
  1705. "source": {
  1706. "type": "git",
  1707. "url": "https://github.com/laminas/laminas-escaper.git",
  1708. "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba"
  1709. },
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba",
  1713. "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba",
  1714. "shasum": ""
  1715. },
  1716. "require": {
  1717. "ext-ctype": "*",
  1718. "ext-mbstring": "*",
  1719. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1720. },
  1721. "conflict": {
  1722. "zendframework/zend-escaper": "*"
  1723. },
  1724. "require-dev": {
  1725. "infection/infection": "^0.29.8",
  1726. "laminas/laminas-coding-standard": "~3.0.1",
  1727. "phpunit/phpunit": "^10.5.45",
  1728. "psalm/plugin-phpunit": "^0.19.2",
  1729. "vimeo/psalm": "^6.6.2"
  1730. },
  1731. "type": "library",
  1732. "autoload": {
  1733. "psr-4": {
  1734. "Laminas\\Escaper\\": "src/"
  1735. }
  1736. },
  1737. "notification-url": "https://packagist.org/downloads/",
  1738. "license": [
  1739. "BSD-3-Clause"
  1740. ],
  1741. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  1742. "homepage": "https://laminas.dev",
  1743. "keywords": [
  1744. "escaper",
  1745. "laminas"
  1746. ],
  1747. "support": {
  1748. "chat": "https://laminas.dev/chat",
  1749. "docs": "https://docs.laminas.dev/laminas-escaper/",
  1750. "forum": "https://discourse.laminas.dev",
  1751. "issues": "https://github.com/laminas/laminas-escaper/issues",
  1752. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  1753. "source": "https://github.com/laminas/laminas-escaper"
  1754. },
  1755. "funding": [
  1756. {
  1757. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1758. "type": "community_bridge"
  1759. }
  1760. ],
  1761. "time": "2025-05-06T19:29:36+00:00"
  1762. },
  1763. {
  1764. "name": "laminas/laminas-feed",
  1765. "version": "2.24.0",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/laminas/laminas-feed.git",
  1769. "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50",
  1774. "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "ext-dom": "*",
  1779. "ext-filter": "*",
  1780. "ext-libxml": "*",
  1781. "laminas/laminas-escaper": "^2.9",
  1782. "laminas/laminas-stdlib": "^3.6",
  1783. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1784. },
  1785. "conflict": {
  1786. "laminas/laminas-servicemanager": "<3.3",
  1787. "zendframework/zend-feed": "*"
  1788. },
  1789. "require-dev": {
  1790. "laminas/laminas-cache": "^2.13.2 || ^3.12",
  1791. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3",
  1792. "laminas/laminas-coding-standard": "~2.5.0",
  1793. "laminas/laminas-db": "^2.18",
  1794. "laminas/laminas-http": "^2.19",
  1795. "laminas/laminas-servicemanager": "^3.22.1",
  1796. "laminas/laminas-validator": "^2.46",
  1797. "phpunit/phpunit": "^10.5.5",
  1798. "psalm/plugin-phpunit": "^0.19.0",
  1799. "psr/http-message": "^2.0",
  1800. "vimeo/psalm": "^5.18.0"
  1801. },
  1802. "suggest": {
  1803. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  1804. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  1805. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  1806. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  1807. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  1808. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  1809. },
  1810. "type": "library",
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Laminas\\Feed\\": "src/"
  1814. }
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "BSD-3-Clause"
  1819. ],
  1820. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  1821. "homepage": "https://laminas.dev",
  1822. "keywords": [
  1823. "atom",
  1824. "feed",
  1825. "laminas",
  1826. "rss"
  1827. ],
  1828. "support": {
  1829. "chat": "https://laminas.dev/chat",
  1830. "docs": "https://docs.laminas.dev/laminas-feed/",
  1831. "forum": "https://discourse.laminas.dev",
  1832. "issues": "https://github.com/laminas/laminas-feed/issues",
  1833. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  1834. "source": "https://github.com/laminas/laminas-feed"
  1835. },
  1836. "funding": [
  1837. {
  1838. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1839. "type": "community_bridge"
  1840. }
  1841. ],
  1842. "time": "2025-06-25T12:37:12+00:00"
  1843. },
  1844. {
  1845. "name": "laminas/laminas-stdlib",
  1846. "version": "3.20.0",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/laminas/laminas-stdlib.git",
  1850. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  1855. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  1856. "shasum": ""
  1857. },
  1858. "require": {
  1859. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1860. },
  1861. "conflict": {
  1862. "zendframework/zend-stdlib": "*"
  1863. },
  1864. "require-dev": {
  1865. "laminas/laminas-coding-standard": "^3.0",
  1866. "phpbench/phpbench": "^1.3.1",
  1867. "phpunit/phpunit": "^10.5.38",
  1868. "psalm/plugin-phpunit": "^0.19.0",
  1869. "vimeo/psalm": "^5.26.1"
  1870. },
  1871. "type": "library",
  1872. "autoload": {
  1873. "psr-4": {
  1874. "Laminas\\Stdlib\\": "src/"
  1875. }
  1876. },
  1877. "notification-url": "https://packagist.org/downloads/",
  1878. "license": [
  1879. "BSD-3-Clause"
  1880. ],
  1881. "description": "SPL extensions, array utilities, error handlers, and more",
  1882. "homepage": "https://laminas.dev",
  1883. "keywords": [
  1884. "laminas",
  1885. "stdlib"
  1886. ],
  1887. "support": {
  1888. "chat": "https://laminas.dev/chat",
  1889. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  1890. "forum": "https://discourse.laminas.dev",
  1891. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  1892. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  1893. "source": "https://github.com/laminas/laminas-stdlib"
  1894. },
  1895. "funding": [
  1896. {
  1897. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1898. "type": "community_bridge"
  1899. }
  1900. ],
  1901. "time": "2024-10-29T13:46:07+00:00"
  1902. },
  1903. {
  1904. "name": "league/commonmark",
  1905. "version": "2.7.0",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://github.com/thephpleague/commonmark.git",
  1909. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  1914. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  1915. "shasum": ""
  1916. },
  1917. "require": {
  1918. "ext-mbstring": "*",
  1919. "league/config": "^1.1.1",
  1920. "php": "^7.4 || ^8.0",
  1921. "psr/event-dispatcher": "^1.0",
  1922. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1923. "symfony/polyfill-php80": "^1.16"
  1924. },
  1925. "require-dev": {
  1926. "cebe/markdown": "^1.0",
  1927. "commonmark/cmark": "0.31.1",
  1928. "commonmark/commonmark.js": "0.31.1",
  1929. "composer/package-versions-deprecated": "^1.8",
  1930. "embed/embed": "^4.4",
  1931. "erusev/parsedown": "^1.0",
  1932. "ext-json": "*",
  1933. "github/gfm": "0.29.0",
  1934. "michelf/php-markdown": "^1.4 || ^2.0",
  1935. "nyholm/psr7": "^1.5",
  1936. "phpstan/phpstan": "^1.8.2",
  1937. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1938. "scrutinizer/ocular": "^1.8.1",
  1939. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  1940. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  1941. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  1942. "unleashedtech/php-coding-standard": "^3.1.1",
  1943. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1944. },
  1945. "suggest": {
  1946. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1947. },
  1948. "type": "library",
  1949. "extra": {
  1950. "branch-alias": {
  1951. "dev-main": "2.8-dev"
  1952. }
  1953. },
  1954. "autoload": {
  1955. "psr-4": {
  1956. "League\\CommonMark\\": "src"
  1957. }
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "BSD-3-Clause"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "Colin O'Dell",
  1966. "email": "colinodell@gmail.com",
  1967. "homepage": "https://www.colinodell.com",
  1968. "role": "Lead Developer"
  1969. }
  1970. ],
  1971. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1972. "homepage": "https://commonmark.thephpleague.com",
  1973. "keywords": [
  1974. "commonmark",
  1975. "flavored",
  1976. "gfm",
  1977. "github",
  1978. "github-flavored",
  1979. "markdown",
  1980. "md",
  1981. "parser"
  1982. ],
  1983. "support": {
  1984. "docs": "https://commonmark.thephpleague.com/",
  1985. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1986. "issues": "https://github.com/thephpleague/commonmark/issues",
  1987. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1988. "source": "https://github.com/thephpleague/commonmark"
  1989. },
  1990. "funding": [
  1991. {
  1992. "url": "https://www.colinodell.com/sponsor",
  1993. "type": "custom"
  1994. },
  1995. {
  1996. "url": "https://www.paypal.me/colinpodell/10.00",
  1997. "type": "custom"
  1998. },
  1999. {
  2000. "url": "https://github.com/colinodell",
  2001. "type": "github"
  2002. },
  2003. {
  2004. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2005. "type": "tidelift"
  2006. }
  2007. ],
  2008. "time": "2025-05-05T12:20:28+00:00"
  2009. },
  2010. {
  2011. "name": "league/config",
  2012. "version": "v1.2.0",
  2013. "source": {
  2014. "type": "git",
  2015. "url": "https://github.com/thephpleague/config.git",
  2016. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2017. },
  2018. "dist": {
  2019. "type": "zip",
  2020. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2021. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2022. "shasum": ""
  2023. },
  2024. "require": {
  2025. "dflydev/dot-access-data": "^3.0.1",
  2026. "nette/schema": "^1.2",
  2027. "php": "^7.4 || ^8.0"
  2028. },
  2029. "require-dev": {
  2030. "phpstan/phpstan": "^1.8.2",
  2031. "phpunit/phpunit": "^9.5.5",
  2032. "scrutinizer/ocular": "^1.8.1",
  2033. "unleashedtech/php-coding-standard": "^3.1",
  2034. "vimeo/psalm": "^4.7.3"
  2035. },
  2036. "type": "library",
  2037. "extra": {
  2038. "branch-alias": {
  2039. "dev-main": "1.2-dev"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "psr-4": {
  2044. "League\\Config\\": "src"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "BSD-3-Clause"
  2050. ],
  2051. "authors": [
  2052. {
  2053. "name": "Colin O'Dell",
  2054. "email": "colinodell@gmail.com",
  2055. "homepage": "https://www.colinodell.com",
  2056. "role": "Lead Developer"
  2057. }
  2058. ],
  2059. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2060. "homepage": "https://config.thephpleague.com",
  2061. "keywords": [
  2062. "array",
  2063. "config",
  2064. "configuration",
  2065. "dot",
  2066. "dot-access",
  2067. "nested",
  2068. "schema"
  2069. ],
  2070. "support": {
  2071. "docs": "https://config.thephpleague.com/",
  2072. "issues": "https://github.com/thephpleague/config/issues",
  2073. "rss": "https://github.com/thephpleague/config/releases.atom",
  2074. "source": "https://github.com/thephpleague/config"
  2075. },
  2076. "funding": [
  2077. {
  2078. "url": "https://www.colinodell.com/sponsor",
  2079. "type": "custom"
  2080. },
  2081. {
  2082. "url": "https://www.paypal.me/colinpodell/10.00",
  2083. "type": "custom"
  2084. },
  2085. {
  2086. "url": "https://github.com/colinodell",
  2087. "type": "github"
  2088. }
  2089. ],
  2090. "time": "2022-12-11T20:36:23+00:00"
  2091. },
  2092. {
  2093. "name": "ml/iri",
  2094. "version": "1.1.4",
  2095. "target-dir": "ML/IRI",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/lanthaler/IRI.git",
  2099. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  2104. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "lib-pcre": ">=4.0",
  2109. "php": ">=5.3.0"
  2110. },
  2111. "type": "library",
  2112. "autoload": {
  2113. "psr-0": {
  2114. "ML\\IRI": ""
  2115. }
  2116. },
  2117. "notification-url": "https://packagist.org/downloads/",
  2118. "license": [
  2119. "MIT"
  2120. ],
  2121. "authors": [
  2122. {
  2123. "name": "Markus Lanthaler",
  2124. "email": "mail@markus-lanthaler.com",
  2125. "homepage": "http://www.markus-lanthaler.com",
  2126. "role": "Developer"
  2127. }
  2128. ],
  2129. "description": "IRI handling for PHP",
  2130. "homepage": "http://www.markus-lanthaler.com",
  2131. "keywords": [
  2132. "URN",
  2133. "iri",
  2134. "uri",
  2135. "url"
  2136. ],
  2137. "support": {
  2138. "issues": "https://github.com/lanthaler/IRI/issues",
  2139. "source": "https://github.com/lanthaler/IRI/tree/master"
  2140. },
  2141. "time": "2014-01-21T13:43:39+00:00"
  2142. },
  2143. {
  2144. "name": "ml/json-ld",
  2145. "version": "1.2.1",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/lanthaler/JsonLD.git",
  2149. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2154. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2155. "shasum": ""
  2156. },
  2157. "require": {
  2158. "ext-json": "*",
  2159. "ml/iri": "^1.1.1",
  2160. "php": ">=5.3.0"
  2161. },
  2162. "require-dev": {
  2163. "json-ld/tests": "1.0",
  2164. "phpunit/phpunit": "^4"
  2165. },
  2166. "type": "library",
  2167. "autoload": {
  2168. "psr-4": {
  2169. "ML\\JsonLD\\": ""
  2170. }
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "MIT"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Markus Lanthaler",
  2179. "email": "mail@markus-lanthaler.com",
  2180. "homepage": "http://www.markus-lanthaler.com",
  2181. "role": "Developer"
  2182. }
  2183. ],
  2184. "description": "JSON-LD Processor for PHP",
  2185. "homepage": "http://www.markus-lanthaler.com",
  2186. "keywords": [
  2187. "JSON-LD",
  2188. "jsonld"
  2189. ],
  2190. "support": {
  2191. "issues": "https://github.com/lanthaler/JsonLD/issues",
  2192. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  2193. },
  2194. "time": "2022-09-29T08:45:17+00:00"
  2195. },
  2196. {
  2197. "name": "monolog/monolog",
  2198. "version": "3.9.0",
  2199. "source": {
  2200. "type": "git",
  2201. "url": "https://github.com/Seldaek/monolog.git",
  2202. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  2203. },
  2204. "dist": {
  2205. "type": "zip",
  2206. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  2207. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  2208. "shasum": ""
  2209. },
  2210. "require": {
  2211. "php": ">=8.1",
  2212. "psr/log": "^2.0 || ^3.0"
  2213. },
  2214. "provide": {
  2215. "psr/log-implementation": "3.0.0"
  2216. },
  2217. "require-dev": {
  2218. "aws/aws-sdk-php": "^3.0",
  2219. "doctrine/couchdb": "~1.0@dev",
  2220. "elasticsearch/elasticsearch": "^7 || ^8",
  2221. "ext-json": "*",
  2222. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2223. "guzzlehttp/guzzle": "^7.4.5",
  2224. "guzzlehttp/psr7": "^2.2",
  2225. "mongodb/mongodb": "^1.8",
  2226. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2227. "php-console/php-console": "^3.1.8",
  2228. "phpstan/phpstan": "^2",
  2229. "phpstan/phpstan-deprecation-rules": "^2",
  2230. "phpstan/phpstan-strict-rules": "^2",
  2231. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2232. "predis/predis": "^1.1 || ^2",
  2233. "rollbar/rollbar": "^4.0",
  2234. "ruflin/elastica": "^7 || ^8",
  2235. "symfony/mailer": "^5.4 || ^6",
  2236. "symfony/mime": "^5.4 || ^6"
  2237. },
  2238. "suggest": {
  2239. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2240. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2241. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2242. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2243. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2244. "ext-mbstring": "Allow to work properly with unicode symbols",
  2245. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2246. "ext-openssl": "Required to send log messages using SSL",
  2247. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2248. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2249. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2250. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2251. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2252. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2253. },
  2254. "type": "library",
  2255. "extra": {
  2256. "branch-alias": {
  2257. "dev-main": "3.x-dev"
  2258. }
  2259. },
  2260. "autoload": {
  2261. "psr-4": {
  2262. "Monolog\\": "src/Monolog"
  2263. }
  2264. },
  2265. "notification-url": "https://packagist.org/downloads/",
  2266. "license": [
  2267. "MIT"
  2268. ],
  2269. "authors": [
  2270. {
  2271. "name": "Jordi Boggiano",
  2272. "email": "j.boggiano@seld.be",
  2273. "homepage": "https://seld.be"
  2274. }
  2275. ],
  2276. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2277. "homepage": "https://github.com/Seldaek/monolog",
  2278. "keywords": [
  2279. "log",
  2280. "logging",
  2281. "psr-3"
  2282. ],
  2283. "support": {
  2284. "issues": "https://github.com/Seldaek/monolog/issues",
  2285. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  2286. },
  2287. "funding": [
  2288. {
  2289. "url": "https://github.com/Seldaek",
  2290. "type": "github"
  2291. },
  2292. {
  2293. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2294. "type": "tidelift"
  2295. }
  2296. ],
  2297. "time": "2025-03-24T10:02:05+00:00"
  2298. },
  2299. {
  2300. "name": "nette/schema",
  2301. "version": "v1.3.2",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/nette/schema.git",
  2305. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2310. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2311. "shasum": ""
  2312. },
  2313. "require": {
  2314. "nette/utils": "^4.0",
  2315. "php": "8.1 - 8.4"
  2316. },
  2317. "require-dev": {
  2318. "nette/tester": "^2.5.2",
  2319. "phpstan/phpstan-nette": "^1.0",
  2320. "tracy/tracy": "^2.8"
  2321. },
  2322. "type": "library",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-master": "1.3-dev"
  2326. }
  2327. },
  2328. "autoload": {
  2329. "classmap": [
  2330. "src/"
  2331. ]
  2332. },
  2333. "notification-url": "https://packagist.org/downloads/",
  2334. "license": [
  2335. "BSD-3-Clause",
  2336. "GPL-2.0-only",
  2337. "GPL-3.0-only"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "David Grudl",
  2342. "homepage": "https://davidgrudl.com"
  2343. },
  2344. {
  2345. "name": "Nette Community",
  2346. "homepage": "https://nette.org/contributors"
  2347. }
  2348. ],
  2349. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2350. "homepage": "https://nette.org",
  2351. "keywords": [
  2352. "config",
  2353. "nette"
  2354. ],
  2355. "support": {
  2356. "issues": "https://github.com/nette/schema/issues",
  2357. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2358. },
  2359. "time": "2024-10-06T23:10:23+00:00"
  2360. },
  2361. {
  2362. "name": "nette/utils",
  2363. "version": "v4.0.7",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/nette/utils.git",
  2367. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  2372. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  2373. "shasum": ""
  2374. },
  2375. "require": {
  2376. "php": "8.0 - 8.4"
  2377. },
  2378. "conflict": {
  2379. "nette/finder": "<3",
  2380. "nette/schema": "<1.2.2"
  2381. },
  2382. "require-dev": {
  2383. "jetbrains/phpstorm-attributes": "dev-master",
  2384. "nette/tester": "^2.5",
  2385. "phpstan/phpstan": "^1.0",
  2386. "tracy/tracy": "^2.9"
  2387. },
  2388. "suggest": {
  2389. "ext-gd": "to use Image",
  2390. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2391. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2392. "ext-json": "to use Nette\\Utils\\Json",
  2393. "ext-mbstring": "to use Strings::lower() etc...",
  2394. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-master": "4.0-dev"
  2400. }
  2401. },
  2402. "autoload": {
  2403. "classmap": [
  2404. "src/"
  2405. ]
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "BSD-3-Clause",
  2410. "GPL-2.0-only",
  2411. "GPL-3.0-only"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "David Grudl",
  2416. "homepage": "https://davidgrudl.com"
  2417. },
  2418. {
  2419. "name": "Nette Community",
  2420. "homepage": "https://nette.org/contributors"
  2421. }
  2422. ],
  2423. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2424. "homepage": "https://nette.org",
  2425. "keywords": [
  2426. "array",
  2427. "core",
  2428. "datetime",
  2429. "images",
  2430. "json",
  2431. "nette",
  2432. "paginator",
  2433. "password",
  2434. "slugify",
  2435. "string",
  2436. "unicode",
  2437. "utf-8",
  2438. "utility",
  2439. "validation"
  2440. ],
  2441. "support": {
  2442. "issues": "https://github.com/nette/utils/issues",
  2443. "source": "https://github.com/nette/utils/tree/v4.0.7"
  2444. },
  2445. "time": "2025-06-03T04:55:08+00:00"
  2446. },
  2447. {
  2448. "name": "oscarotero/html-parser",
  2449. "version": "v0.1.8",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://github.com/oscarotero/html-parser.git",
  2453. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d",
  2458. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d",
  2459. "shasum": ""
  2460. },
  2461. "require": {
  2462. "php": "^7.2 || ^8"
  2463. },
  2464. "require-dev": {
  2465. "friendsofphp/php-cs-fixer": "^2.11",
  2466. "phpunit/phpunit": "^8.0"
  2467. },
  2468. "type": "library",
  2469. "autoload": {
  2470. "psr-4": {
  2471. "HtmlParser\\": "src"
  2472. }
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Oscar Otero",
  2481. "email": "oom@oscarotero.com",
  2482. "homepage": "http://oscarotero.com",
  2483. "role": "Developer"
  2484. }
  2485. ],
  2486. "description": "Parse html strings to DOMDocument",
  2487. "homepage": "https://github.com/oscarotero/html-parser",
  2488. "keywords": [
  2489. "dom",
  2490. "html",
  2491. "parser"
  2492. ],
  2493. "support": {
  2494. "email": "oom@oscarotero.com",
  2495. "issues": "https://github.com/oscarotero/html-parser/issues",
  2496. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8"
  2497. },
  2498. "time": "2023-11-29T20:28:41+00:00"
  2499. },
  2500. {
  2501. "name": "phpdocumentor/reflection-common",
  2502. "version": "2.2.0",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2506. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2511. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "php": "^7.2 || ^8.0"
  2516. },
  2517. "type": "library",
  2518. "extra": {
  2519. "branch-alias": {
  2520. "dev-2.x": "2.x-dev"
  2521. }
  2522. },
  2523. "autoload": {
  2524. "psr-4": {
  2525. "phpDocumentor\\Reflection\\": "src/"
  2526. }
  2527. },
  2528. "notification-url": "https://packagist.org/downloads/",
  2529. "license": [
  2530. "MIT"
  2531. ],
  2532. "authors": [
  2533. {
  2534. "name": "Jaap van Otterdijk",
  2535. "email": "opensource@ijaap.nl"
  2536. }
  2537. ],
  2538. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2539. "homepage": "http://www.phpdoc.org",
  2540. "keywords": [
  2541. "FQSEN",
  2542. "phpDocumentor",
  2543. "phpdoc",
  2544. "reflection",
  2545. "static analysis"
  2546. ],
  2547. "support": {
  2548. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2549. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2550. },
  2551. "time": "2020-06-27T09:03:43+00:00"
  2552. },
  2553. {
  2554. "name": "phpdocumentor/reflection-docblock",
  2555. "version": "5.6.2",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2559. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  2564. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "doctrine/deprecations": "^1.1",
  2569. "ext-filter": "*",
  2570. "php": "^7.4 || ^8.0",
  2571. "phpdocumentor/reflection-common": "^2.2",
  2572. "phpdocumentor/type-resolver": "^1.7",
  2573. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2574. "webmozart/assert": "^1.9.1"
  2575. },
  2576. "require-dev": {
  2577. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2578. "phpstan/extension-installer": "^1.1",
  2579. "phpstan/phpstan": "^1.8",
  2580. "phpstan/phpstan-mockery": "^1.1",
  2581. "phpstan/phpstan-webmozart-assert": "^1.2",
  2582. "phpunit/phpunit": "^9.5",
  2583. "psalm/phar": "^5.26"
  2584. },
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-master": "5.x-dev"
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "phpDocumentor\\Reflection\\": "src"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Mike van Riel",
  2603. "email": "me@mikevanriel.com"
  2604. },
  2605. {
  2606. "name": "Jaap van Otterdijk",
  2607. "email": "opensource@ijaap.nl"
  2608. }
  2609. ],
  2610. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2611. "support": {
  2612. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2613. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  2614. },
  2615. "time": "2025-04-13T19:20:35+00:00"
  2616. },
  2617. {
  2618. "name": "phpdocumentor/type-resolver",
  2619. "version": "1.10.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2623. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2628. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "doctrine/deprecations": "^1.0",
  2633. "php": "^7.3 || ^8.0",
  2634. "phpdocumentor/reflection-common": "^2.0",
  2635. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2636. },
  2637. "require-dev": {
  2638. "ext-tokenizer": "*",
  2639. "phpbench/phpbench": "^1.2",
  2640. "phpstan/extension-installer": "^1.1",
  2641. "phpstan/phpstan": "^1.8",
  2642. "phpstan/phpstan-phpunit": "^1.1",
  2643. "phpunit/phpunit": "^9.5",
  2644. "rector/rector": "^0.13.9",
  2645. "vimeo/psalm": "^4.25"
  2646. },
  2647. "type": "library",
  2648. "extra": {
  2649. "branch-alias": {
  2650. "dev-1.x": "1.x-dev"
  2651. }
  2652. },
  2653. "autoload": {
  2654. "psr-4": {
  2655. "phpDocumentor\\Reflection\\": "src"
  2656. }
  2657. },
  2658. "notification-url": "https://packagist.org/downloads/",
  2659. "license": [
  2660. "MIT"
  2661. ],
  2662. "authors": [
  2663. {
  2664. "name": "Mike van Riel",
  2665. "email": "me@mikevanriel.com"
  2666. }
  2667. ],
  2668. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2669. "support": {
  2670. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2671. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  2672. },
  2673. "time": "2024-11-09T15:12:26+00:00"
  2674. },
  2675. {
  2676. "name": "phpstan/phpdoc-parser",
  2677. "version": "1.33.0",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2681. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2686. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2687. "shasum": ""
  2688. },
  2689. "require": {
  2690. "php": "^7.2 || ^8.0"
  2691. },
  2692. "require-dev": {
  2693. "doctrine/annotations": "^2.0",
  2694. "nikic/php-parser": "^4.15",
  2695. "php-parallel-lint/php-parallel-lint": "^1.2",
  2696. "phpstan/extension-installer": "^1.0",
  2697. "phpstan/phpstan": "^1.5",
  2698. "phpstan/phpstan-phpunit": "^1.1",
  2699. "phpstan/phpstan-strict-rules": "^1.0",
  2700. "phpunit/phpunit": "^9.5",
  2701. "symfony/process": "^5.2"
  2702. },
  2703. "type": "library",
  2704. "autoload": {
  2705. "psr-4": {
  2706. "PHPStan\\PhpDocParser\\": [
  2707. "src/"
  2708. ]
  2709. }
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "MIT"
  2714. ],
  2715. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2716. "support": {
  2717. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2718. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2719. },
  2720. "time": "2024-10-13T11:25:22+00:00"
  2721. },
  2722. {
  2723. "name": "psr/cache",
  2724. "version": "3.0.0",
  2725. "source": {
  2726. "type": "git",
  2727. "url": "https://github.com/php-fig/cache.git",
  2728. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2729. },
  2730. "dist": {
  2731. "type": "zip",
  2732. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2733. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2734. "shasum": ""
  2735. },
  2736. "require": {
  2737. "php": ">=8.0.0"
  2738. },
  2739. "type": "library",
  2740. "extra": {
  2741. "branch-alias": {
  2742. "dev-master": "1.0.x-dev"
  2743. }
  2744. },
  2745. "autoload": {
  2746. "psr-4": {
  2747. "Psr\\Cache\\": "src/"
  2748. }
  2749. },
  2750. "notification-url": "https://packagist.org/downloads/",
  2751. "license": [
  2752. "MIT"
  2753. ],
  2754. "authors": [
  2755. {
  2756. "name": "PHP-FIG",
  2757. "homepage": "https://www.php-fig.org/"
  2758. }
  2759. ],
  2760. "description": "Common interface for caching libraries",
  2761. "keywords": [
  2762. "cache",
  2763. "psr",
  2764. "psr-6"
  2765. ],
  2766. "support": {
  2767. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2768. },
  2769. "time": "2021-02-03T23:26:27+00:00"
  2770. },
  2771. {
  2772. "name": "psr/clock",
  2773. "version": "1.0.0",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/php-fig/clock.git",
  2777. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2782. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "php": "^7.0 || ^8.0"
  2787. },
  2788. "type": "library",
  2789. "autoload": {
  2790. "psr-4": {
  2791. "Psr\\Clock\\": "src/"
  2792. }
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "MIT"
  2797. ],
  2798. "authors": [
  2799. {
  2800. "name": "PHP-FIG",
  2801. "homepage": "https://www.php-fig.org/"
  2802. }
  2803. ],
  2804. "description": "Common interface for reading the clock.",
  2805. "homepage": "https://github.com/php-fig/clock",
  2806. "keywords": [
  2807. "clock",
  2808. "now",
  2809. "psr",
  2810. "psr-20",
  2811. "time"
  2812. ],
  2813. "support": {
  2814. "issues": "https://github.com/php-fig/clock/issues",
  2815. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2816. },
  2817. "time": "2022-11-25T14:36:26+00:00"
  2818. },
  2819. {
  2820. "name": "psr/container",
  2821. "version": "2.0.2",
  2822. "source": {
  2823. "type": "git",
  2824. "url": "https://github.com/php-fig/container.git",
  2825. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2826. },
  2827. "dist": {
  2828. "type": "zip",
  2829. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2830. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2831. "shasum": ""
  2832. },
  2833. "require": {
  2834. "php": ">=7.4.0"
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "2.0.x-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Psr\\Container\\": "src/"
  2845. }
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "MIT"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "PHP-FIG",
  2854. "homepage": "https://www.php-fig.org/"
  2855. }
  2856. ],
  2857. "description": "Common Container Interface (PHP FIG PSR-11)",
  2858. "homepage": "https://github.com/php-fig/container",
  2859. "keywords": [
  2860. "PSR-11",
  2861. "container",
  2862. "container-interface",
  2863. "container-interop",
  2864. "psr"
  2865. ],
  2866. "support": {
  2867. "issues": "https://github.com/php-fig/container/issues",
  2868. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2869. },
  2870. "time": "2021-11-05T16:47:00+00:00"
  2871. },
  2872. {
  2873. "name": "psr/event-dispatcher",
  2874. "version": "1.0.0",
  2875. "source": {
  2876. "type": "git",
  2877. "url": "https://github.com/php-fig/event-dispatcher.git",
  2878. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2879. },
  2880. "dist": {
  2881. "type": "zip",
  2882. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2883. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2884. "shasum": ""
  2885. },
  2886. "require": {
  2887. "php": ">=7.2.0"
  2888. },
  2889. "type": "library",
  2890. "extra": {
  2891. "branch-alias": {
  2892. "dev-master": "1.0.x-dev"
  2893. }
  2894. },
  2895. "autoload": {
  2896. "psr-4": {
  2897. "Psr\\EventDispatcher\\": "src/"
  2898. }
  2899. },
  2900. "notification-url": "https://packagist.org/downloads/",
  2901. "license": [
  2902. "MIT"
  2903. ],
  2904. "authors": [
  2905. {
  2906. "name": "PHP-FIG",
  2907. "homepage": "http://www.php-fig.org/"
  2908. }
  2909. ],
  2910. "description": "Standard interfaces for event handling.",
  2911. "keywords": [
  2912. "events",
  2913. "psr",
  2914. "psr-14"
  2915. ],
  2916. "support": {
  2917. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2918. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2919. },
  2920. "time": "2019-01-08T18:20:26+00:00"
  2921. },
  2922. {
  2923. "name": "psr/http-client",
  2924. "version": "1.0.3",
  2925. "source": {
  2926. "type": "git",
  2927. "url": "https://github.com/php-fig/http-client.git",
  2928. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2929. },
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2933. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2934. "shasum": ""
  2935. },
  2936. "require": {
  2937. "php": "^7.0 || ^8.0",
  2938. "psr/http-message": "^1.0 || ^2.0"
  2939. },
  2940. "type": "library",
  2941. "extra": {
  2942. "branch-alias": {
  2943. "dev-master": "1.0.x-dev"
  2944. }
  2945. },
  2946. "autoload": {
  2947. "psr-4": {
  2948. "Psr\\Http\\Client\\": "src/"
  2949. }
  2950. },
  2951. "notification-url": "https://packagist.org/downloads/",
  2952. "license": [
  2953. "MIT"
  2954. ],
  2955. "authors": [
  2956. {
  2957. "name": "PHP-FIG",
  2958. "homepage": "https://www.php-fig.org/"
  2959. }
  2960. ],
  2961. "description": "Common interface for HTTP clients",
  2962. "homepage": "https://github.com/php-fig/http-client",
  2963. "keywords": [
  2964. "http",
  2965. "http-client",
  2966. "psr",
  2967. "psr-18"
  2968. ],
  2969. "support": {
  2970. "source": "https://github.com/php-fig/http-client"
  2971. },
  2972. "time": "2023-09-23T14:17:50+00:00"
  2973. },
  2974. {
  2975. "name": "psr/http-factory",
  2976. "version": "1.1.0",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/php-fig/http-factory.git",
  2980. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2985. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": ">=7.1",
  2990. "psr/http-message": "^1.0 || ^2.0"
  2991. },
  2992. "type": "library",
  2993. "extra": {
  2994. "branch-alias": {
  2995. "dev-master": "1.0.x-dev"
  2996. }
  2997. },
  2998. "autoload": {
  2999. "psr-4": {
  3000. "Psr\\Http\\Message\\": "src/"
  3001. }
  3002. },
  3003. "notification-url": "https://packagist.org/downloads/",
  3004. "license": [
  3005. "MIT"
  3006. ],
  3007. "authors": [
  3008. {
  3009. "name": "PHP-FIG",
  3010. "homepage": "https://www.php-fig.org/"
  3011. }
  3012. ],
  3013. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3014. "keywords": [
  3015. "factory",
  3016. "http",
  3017. "message",
  3018. "psr",
  3019. "psr-17",
  3020. "psr-7",
  3021. "request",
  3022. "response"
  3023. ],
  3024. "support": {
  3025. "source": "https://github.com/php-fig/http-factory"
  3026. },
  3027. "time": "2024-04-15T12:06:14+00:00"
  3028. },
  3029. {
  3030. "name": "psr/http-message",
  3031. "version": "2.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/php-fig/http-message.git",
  3035. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3040. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "php": "^7.2 || ^8.0"
  3045. },
  3046. "type": "library",
  3047. "extra": {
  3048. "branch-alias": {
  3049. "dev-master": "2.0.x-dev"
  3050. }
  3051. },
  3052. "autoload": {
  3053. "psr-4": {
  3054. "Psr\\Http\\Message\\": "src/"
  3055. }
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "MIT"
  3060. ],
  3061. "authors": [
  3062. {
  3063. "name": "PHP-FIG",
  3064. "homepage": "https://www.php-fig.org/"
  3065. }
  3066. ],
  3067. "description": "Common interface for HTTP messages",
  3068. "homepage": "https://github.com/php-fig/http-message",
  3069. "keywords": [
  3070. "http",
  3071. "http-message",
  3072. "psr",
  3073. "psr-7",
  3074. "request",
  3075. "response"
  3076. ],
  3077. "support": {
  3078. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3079. },
  3080. "time": "2023-04-04T09:54:51+00:00"
  3081. },
  3082. {
  3083. "name": "psr/link",
  3084. "version": "2.0.1",
  3085. "source": {
  3086. "type": "git",
  3087. "url": "https://github.com/php-fig/link.git",
  3088. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  3089. },
  3090. "dist": {
  3091. "type": "zip",
  3092. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  3093. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  3094. "shasum": ""
  3095. },
  3096. "require": {
  3097. "php": ">=8.0.0"
  3098. },
  3099. "suggest": {
  3100. "fig/link-util": "Provides some useful PSR-13 utilities"
  3101. },
  3102. "type": "library",
  3103. "extra": {
  3104. "branch-alias": {
  3105. "dev-master": "2.0.x-dev"
  3106. }
  3107. },
  3108. "autoload": {
  3109. "psr-4": {
  3110. "Psr\\Link\\": "src/"
  3111. }
  3112. },
  3113. "notification-url": "https://packagist.org/downloads/",
  3114. "license": [
  3115. "MIT"
  3116. ],
  3117. "authors": [
  3118. {
  3119. "name": "PHP-FIG",
  3120. "homepage": "http://www.php-fig.org/"
  3121. }
  3122. ],
  3123. "description": "Common interfaces for HTTP links",
  3124. "homepage": "https://github.com/php-fig/link",
  3125. "keywords": [
  3126. "http",
  3127. "http-link",
  3128. "link",
  3129. "psr",
  3130. "psr-13",
  3131. "rest"
  3132. ],
  3133. "support": {
  3134. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3135. },
  3136. "time": "2021-03-11T23:00:27+00:00"
  3137. },
  3138. {
  3139. "name": "psr/log",
  3140. "version": "3.0.2",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/php-fig/log.git",
  3144. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3149. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "php": ">=8.0.0"
  3154. },
  3155. "type": "library",
  3156. "extra": {
  3157. "branch-alias": {
  3158. "dev-master": "3.x-dev"
  3159. }
  3160. },
  3161. "autoload": {
  3162. "psr-4": {
  3163. "Psr\\Log\\": "src"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "PHP-FIG",
  3173. "homepage": "https://www.php-fig.org/"
  3174. }
  3175. ],
  3176. "description": "Common interface for logging libraries",
  3177. "homepage": "https://github.com/php-fig/log",
  3178. "keywords": [
  3179. "log",
  3180. "psr",
  3181. "psr-3"
  3182. ],
  3183. "support": {
  3184. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3185. },
  3186. "time": "2024-09-11T13:17:53+00:00"
  3187. },
  3188. {
  3189. "name": "symfony/apache-pack",
  3190. "version": "v1.0.1",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/symfony/apache-pack.git",
  3194. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3199. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3200. "shasum": ""
  3201. },
  3202. "type": "symfony-pack",
  3203. "notification-url": "https://packagist.org/downloads/",
  3204. "license": [
  3205. "MIT"
  3206. ],
  3207. "description": "A pack for Apache support in Symfony",
  3208. "support": {
  3209. "issues": "https://github.com/symfony/apache-pack/issues",
  3210. "source": "https://github.com/symfony/apache-pack/tree/master"
  3211. },
  3212. "time": "2017-12-12T01:46:35+00:00"
  3213. },
  3214. {
  3215. "name": "symfony/asset",
  3216. "version": "v7.1.6",
  3217. "source": {
  3218. "type": "git",
  3219. "url": "https://github.com/symfony/asset.git",
  3220. "reference": "0dcd51490d7fc9fbf3c8f5aec6df182920fc0426"
  3221. },
  3222. "dist": {
  3223. "type": "zip",
  3224. "url": "https://api.github.com/repos/symfony/asset/zipball/0dcd51490d7fc9fbf3c8f5aec6df182920fc0426",
  3225. "reference": "0dcd51490d7fc9fbf3c8f5aec6df182920fc0426",
  3226. "shasum": ""
  3227. },
  3228. "require": {
  3229. "php": ">=8.2"
  3230. },
  3231. "conflict": {
  3232. "symfony/http-foundation": "<6.4"
  3233. },
  3234. "require-dev": {
  3235. "symfony/http-client": "^6.4|^7.0",
  3236. "symfony/http-foundation": "^6.4|^7.0",
  3237. "symfony/http-kernel": "^6.4|^7.0"
  3238. },
  3239. "type": "library",
  3240. "autoload": {
  3241. "psr-4": {
  3242. "Symfony\\Component\\Asset\\": ""
  3243. },
  3244. "exclude-from-classmap": [
  3245. "/Tests/"
  3246. ]
  3247. },
  3248. "notification-url": "https://packagist.org/downloads/",
  3249. "license": [
  3250. "MIT"
  3251. ],
  3252. "authors": [
  3253. {
  3254. "name": "Fabien Potencier",
  3255. "email": "fabien@symfony.com"
  3256. },
  3257. {
  3258. "name": "Symfony Community",
  3259. "homepage": "https://symfony.com/contributors"
  3260. }
  3261. ],
  3262. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3263. "homepage": "https://symfony.com",
  3264. "support": {
  3265. "source": "https://github.com/symfony/asset/tree/v7.1.6"
  3266. },
  3267. "funding": [
  3268. {
  3269. "url": "https://symfony.com/sponsor",
  3270. "type": "custom"
  3271. },
  3272. {
  3273. "url": "https://github.com/fabpot",
  3274. "type": "github"
  3275. },
  3276. {
  3277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3278. "type": "tidelift"
  3279. }
  3280. ],
  3281. "time": "2024-10-25T15:11:02+00:00"
  3282. },
  3283. {
  3284. "name": "symfony/asset-mapper",
  3285. "version": "v7.1.11",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/symfony/asset-mapper.git",
  3289. "reference": "f30a77372995afb0f9323903b52e8e6527d12451"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/f30a77372995afb0f9323903b52e8e6527d12451",
  3294. "reference": "f30a77372995afb0f9323903b52e8e6527d12451",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "composer/semver": "^3.0",
  3299. "php": ">=8.2",
  3300. "symfony/deprecation-contracts": "^2.1|^3",
  3301. "symfony/filesystem": "^7.1",
  3302. "symfony/http-client": "^6.4|^7.0"
  3303. },
  3304. "conflict": {
  3305. "symfony/framework-bundle": "<6.4"
  3306. },
  3307. "require-dev": {
  3308. "symfony/asset": "^6.4|^7.0",
  3309. "symfony/browser-kit": "^6.4|^7.0",
  3310. "symfony/console": "^6.4|^7.0",
  3311. "symfony/event-dispatcher-contracts": "^3.0",
  3312. "symfony/finder": "^6.4|^7.0",
  3313. "symfony/framework-bundle": "^6.4|^7.0",
  3314. "symfony/http-foundation": "^6.4|^7.0",
  3315. "symfony/http-kernel": "^6.4|^7.0",
  3316. "symfony/web-link": "^6.4|^7.0"
  3317. },
  3318. "type": "library",
  3319. "autoload": {
  3320. "psr-4": {
  3321. "Symfony\\Component\\AssetMapper\\": ""
  3322. },
  3323. "exclude-from-classmap": [
  3324. "/Tests/"
  3325. ]
  3326. },
  3327. "notification-url": "https://packagist.org/downloads/",
  3328. "license": [
  3329. "MIT"
  3330. ],
  3331. "authors": [
  3332. {
  3333. "name": "Fabien Potencier",
  3334. "email": "fabien@symfony.com"
  3335. },
  3336. {
  3337. "name": "Symfony Community",
  3338. "homepage": "https://symfony.com/contributors"
  3339. }
  3340. ],
  3341. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3342. "homepage": "https://symfony.com",
  3343. "support": {
  3344. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.11"
  3345. },
  3346. "funding": [
  3347. {
  3348. "url": "https://symfony.com/sponsor",
  3349. "type": "custom"
  3350. },
  3351. {
  3352. "url": "https://github.com/fabpot",
  3353. "type": "github"
  3354. },
  3355. {
  3356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3357. "type": "tidelift"
  3358. }
  3359. ],
  3360. "time": "2025-01-27T10:57:12+00:00"
  3361. },
  3362. {
  3363. "name": "symfony/cache",
  3364. "version": "v7.1.11",
  3365. "source": {
  3366. "type": "git",
  3367. "url": "https://github.com/symfony/cache.git",
  3368. "reference": "3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb"
  3369. },
  3370. "dist": {
  3371. "type": "zip",
  3372. "url": "https://api.github.com/repos/symfony/cache/zipball/3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb",
  3373. "reference": "3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb",
  3374. "shasum": ""
  3375. },
  3376. "require": {
  3377. "php": ">=8.2",
  3378. "psr/cache": "^2.0|^3.0",
  3379. "psr/log": "^1.1|^2|^3",
  3380. "symfony/cache-contracts": "^2.5|^3",
  3381. "symfony/deprecation-contracts": "^2.5|^3.0",
  3382. "symfony/service-contracts": "^2.5|^3",
  3383. "symfony/var-exporter": "^6.4|^7.0"
  3384. },
  3385. "conflict": {
  3386. "doctrine/dbal": "<3.6",
  3387. "symfony/dependency-injection": "<6.4",
  3388. "symfony/http-kernel": "<6.4",
  3389. "symfony/var-dumper": "<6.4"
  3390. },
  3391. "provide": {
  3392. "psr/cache-implementation": "2.0|3.0",
  3393. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3394. "symfony/cache-implementation": "1.1|2.0|3.0"
  3395. },
  3396. "require-dev": {
  3397. "cache/integration-tests": "dev-master",
  3398. "doctrine/dbal": "^3.6|^4",
  3399. "predis/predis": "^1.1|^2.0",
  3400. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3401. "symfony/config": "^6.4|^7.0",
  3402. "symfony/dependency-injection": "^6.4|^7.0",
  3403. "symfony/filesystem": "^6.4|^7.0",
  3404. "symfony/http-kernel": "^6.4|^7.0",
  3405. "symfony/messenger": "^6.4|^7.0",
  3406. "symfony/var-dumper": "^6.4|^7.0"
  3407. },
  3408. "type": "library",
  3409. "autoload": {
  3410. "psr-4": {
  3411. "Symfony\\Component\\Cache\\": ""
  3412. },
  3413. "classmap": [
  3414. "Traits/ValueWrapper.php"
  3415. ],
  3416. "exclude-from-classmap": [
  3417. "/Tests/"
  3418. ]
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Nicolas Grekas",
  3427. "email": "p@tchwork.com"
  3428. },
  3429. {
  3430. "name": "Symfony Community",
  3431. "homepage": "https://symfony.com/contributors"
  3432. }
  3433. ],
  3434. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3435. "homepage": "https://symfony.com",
  3436. "keywords": [
  3437. "caching",
  3438. "psr6"
  3439. ],
  3440. "support": {
  3441. "source": "https://github.com/symfony/cache/tree/v7.1.11"
  3442. },
  3443. "funding": [
  3444. {
  3445. "url": "https://symfony.com/sponsor",
  3446. "type": "custom"
  3447. },
  3448. {
  3449. "url": "https://github.com/fabpot",
  3450. "type": "github"
  3451. },
  3452. {
  3453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3454. "type": "tidelift"
  3455. }
  3456. ],
  3457. "time": "2025-01-27T10:57:12+00:00"
  3458. },
  3459. {
  3460. "name": "symfony/cache-contracts",
  3461. "version": "v3.6.0",
  3462. "source": {
  3463. "type": "git",
  3464. "url": "https://github.com/symfony/cache-contracts.git",
  3465. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  3466. },
  3467. "dist": {
  3468. "type": "zip",
  3469. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3470. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  3471. "shasum": ""
  3472. },
  3473. "require": {
  3474. "php": ">=8.1",
  3475. "psr/cache": "^3.0"
  3476. },
  3477. "type": "library",
  3478. "extra": {
  3479. "thanks": {
  3480. "url": "https://github.com/symfony/contracts",
  3481. "name": "symfony/contracts"
  3482. },
  3483. "branch-alias": {
  3484. "dev-main": "3.6-dev"
  3485. }
  3486. },
  3487. "autoload": {
  3488. "psr-4": {
  3489. "Symfony\\Contracts\\Cache\\": ""
  3490. }
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Nicolas Grekas",
  3499. "email": "p@tchwork.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Generic abstractions related to caching",
  3507. "homepage": "https://symfony.com",
  3508. "keywords": [
  3509. "abstractions",
  3510. "contracts",
  3511. "decoupling",
  3512. "interfaces",
  3513. "interoperability",
  3514. "standards"
  3515. ],
  3516. "support": {
  3517. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  3518. },
  3519. "funding": [
  3520. {
  3521. "url": "https://symfony.com/sponsor",
  3522. "type": "custom"
  3523. },
  3524. {
  3525. "url": "https://github.com/fabpot",
  3526. "type": "github"
  3527. },
  3528. {
  3529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3530. "type": "tidelift"
  3531. }
  3532. ],
  3533. "time": "2025-03-13T15:25:07+00:00"
  3534. },
  3535. {
  3536. "name": "symfony/clock",
  3537. "version": "v7.1.6",
  3538. "source": {
  3539. "type": "git",
  3540. "url": "https://github.com/symfony/clock.git",
  3541. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  3542. },
  3543. "dist": {
  3544. "type": "zip",
  3545. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  3546. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  3547. "shasum": ""
  3548. },
  3549. "require": {
  3550. "php": ">=8.2",
  3551. "psr/clock": "^1.0",
  3552. "symfony/polyfill-php83": "^1.28"
  3553. },
  3554. "provide": {
  3555. "psr/clock-implementation": "1.0"
  3556. },
  3557. "type": "library",
  3558. "autoload": {
  3559. "files": [
  3560. "Resources/now.php"
  3561. ],
  3562. "psr-4": {
  3563. "Symfony\\Component\\Clock\\": ""
  3564. },
  3565. "exclude-from-classmap": [
  3566. "/Tests/"
  3567. ]
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "MIT"
  3572. ],
  3573. "authors": [
  3574. {
  3575. "name": "Nicolas Grekas",
  3576. "email": "p@tchwork.com"
  3577. },
  3578. {
  3579. "name": "Symfony Community",
  3580. "homepage": "https://symfony.com/contributors"
  3581. }
  3582. ],
  3583. "description": "Decouples applications from the system clock",
  3584. "homepage": "https://symfony.com",
  3585. "keywords": [
  3586. "clock",
  3587. "psr20",
  3588. "time"
  3589. ],
  3590. "support": {
  3591. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  3592. },
  3593. "funding": [
  3594. {
  3595. "url": "https://symfony.com/sponsor",
  3596. "type": "custom"
  3597. },
  3598. {
  3599. "url": "https://github.com/fabpot",
  3600. "type": "github"
  3601. },
  3602. {
  3603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3604. "type": "tidelift"
  3605. }
  3606. ],
  3607. "time": "2024-09-25T14:20:29+00:00"
  3608. },
  3609. {
  3610. "name": "symfony/config",
  3611. "version": "v7.1.7",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://github.com/symfony/config.git",
  3615. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://api.github.com/repos/symfony/config/zipball/dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  3620. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  3621. "shasum": ""
  3622. },
  3623. "require": {
  3624. "php": ">=8.2",
  3625. "symfony/deprecation-contracts": "^2.5|^3",
  3626. "symfony/filesystem": "^7.1",
  3627. "symfony/polyfill-ctype": "~1.8"
  3628. },
  3629. "conflict": {
  3630. "symfony/finder": "<6.4",
  3631. "symfony/service-contracts": "<2.5"
  3632. },
  3633. "require-dev": {
  3634. "symfony/event-dispatcher": "^6.4|^7.0",
  3635. "symfony/finder": "^6.4|^7.0",
  3636. "symfony/messenger": "^6.4|^7.0",
  3637. "symfony/service-contracts": "^2.5|^3",
  3638. "symfony/yaml": "^6.4|^7.0"
  3639. },
  3640. "type": "library",
  3641. "autoload": {
  3642. "psr-4": {
  3643. "Symfony\\Component\\Config\\": ""
  3644. },
  3645. "exclude-from-classmap": [
  3646. "/Tests/"
  3647. ]
  3648. },
  3649. "notification-url": "https://packagist.org/downloads/",
  3650. "license": [
  3651. "MIT"
  3652. ],
  3653. "authors": [
  3654. {
  3655. "name": "Fabien Potencier",
  3656. "email": "fabien@symfony.com"
  3657. },
  3658. {
  3659. "name": "Symfony Community",
  3660. "homepage": "https://symfony.com/contributors"
  3661. }
  3662. ],
  3663. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3664. "homepage": "https://symfony.com",
  3665. "support": {
  3666. "source": "https://github.com/symfony/config/tree/v7.1.7"
  3667. },
  3668. "funding": [
  3669. {
  3670. "url": "https://symfony.com/sponsor",
  3671. "type": "custom"
  3672. },
  3673. {
  3674. "url": "https://github.com/fabpot",
  3675. "type": "github"
  3676. },
  3677. {
  3678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3679. "type": "tidelift"
  3680. }
  3681. ],
  3682. "time": "2024-11-04T11:34:07+00:00"
  3683. },
  3684. {
  3685. "name": "symfony/console",
  3686. "version": "v7.1.10",
  3687. "source": {
  3688. "type": "git",
  3689. "url": "https://github.com/symfony/console.git",
  3690. "reference": "bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7"
  3691. },
  3692. "dist": {
  3693. "type": "zip",
  3694. "url": "https://api.github.com/repos/symfony/console/zipball/bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7",
  3695. "reference": "bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7",
  3696. "shasum": ""
  3697. },
  3698. "require": {
  3699. "php": ">=8.2",
  3700. "symfony/polyfill-mbstring": "~1.0",
  3701. "symfony/service-contracts": "^2.5|^3",
  3702. "symfony/string": "^6.4|^7.0"
  3703. },
  3704. "conflict": {
  3705. "symfony/dependency-injection": "<6.4",
  3706. "symfony/dotenv": "<6.4",
  3707. "symfony/event-dispatcher": "<6.4",
  3708. "symfony/lock": "<6.4",
  3709. "symfony/process": "<6.4"
  3710. },
  3711. "provide": {
  3712. "psr/log-implementation": "1.0|2.0|3.0"
  3713. },
  3714. "require-dev": {
  3715. "psr/log": "^1|^2|^3",
  3716. "symfony/config": "^6.4|^7.0",
  3717. "symfony/dependency-injection": "^6.4|^7.0",
  3718. "symfony/event-dispatcher": "^6.4|^7.0",
  3719. "symfony/http-foundation": "^6.4|^7.0",
  3720. "symfony/http-kernel": "^6.4|^7.0",
  3721. "symfony/lock": "^6.4|^7.0",
  3722. "symfony/messenger": "^6.4|^7.0",
  3723. "symfony/process": "^6.4|^7.0",
  3724. "symfony/stopwatch": "^6.4|^7.0",
  3725. "symfony/var-dumper": "^6.4|^7.0"
  3726. },
  3727. "type": "library",
  3728. "autoload": {
  3729. "psr-4": {
  3730. "Symfony\\Component\\Console\\": ""
  3731. },
  3732. "exclude-from-classmap": [
  3733. "/Tests/"
  3734. ]
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "Fabien Potencier",
  3743. "email": "fabien@symfony.com"
  3744. },
  3745. {
  3746. "name": "Symfony Community",
  3747. "homepage": "https://symfony.com/contributors"
  3748. }
  3749. ],
  3750. "description": "Eases the creation of beautiful and testable command line interfaces",
  3751. "homepage": "https://symfony.com",
  3752. "keywords": [
  3753. "cli",
  3754. "command-line",
  3755. "console",
  3756. "terminal"
  3757. ],
  3758. "support": {
  3759. "source": "https://github.com/symfony/console/tree/v7.1.10"
  3760. },
  3761. "funding": [
  3762. {
  3763. "url": "https://symfony.com/sponsor",
  3764. "type": "custom"
  3765. },
  3766. {
  3767. "url": "https://github.com/fabpot",
  3768. "type": "github"
  3769. },
  3770. {
  3771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3772. "type": "tidelift"
  3773. }
  3774. ],
  3775. "time": "2024-12-09T07:30:10+00:00"
  3776. },
  3777. {
  3778. "name": "symfony/dependency-injection",
  3779. "version": "v7.1.11",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/symfony/dependency-injection.git",
  3783. "reference": "5ebf7d4dfda126b442450effaec421a106c010de"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5ebf7d4dfda126b442450effaec421a106c010de",
  3788. "reference": "5ebf7d4dfda126b442450effaec421a106c010de",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "php": ">=8.2",
  3793. "psr/container": "^1.1|^2.0",
  3794. "symfony/deprecation-contracts": "^2.5|^3",
  3795. "symfony/service-contracts": "^3.5",
  3796. "symfony/var-exporter": "^6.4|^7.0"
  3797. },
  3798. "conflict": {
  3799. "ext-psr": "<1.1|>=2",
  3800. "symfony/config": "<6.4",
  3801. "symfony/finder": "<6.4",
  3802. "symfony/yaml": "<6.4"
  3803. },
  3804. "provide": {
  3805. "psr/container-implementation": "1.1|2.0",
  3806. "symfony/service-implementation": "1.1|2.0|3.0"
  3807. },
  3808. "require-dev": {
  3809. "symfony/config": "^6.4|^7.0",
  3810. "symfony/expression-language": "^6.4|^7.0",
  3811. "symfony/yaml": "^6.4|^7.0"
  3812. },
  3813. "type": "library",
  3814. "autoload": {
  3815. "psr-4": {
  3816. "Symfony\\Component\\DependencyInjection\\": ""
  3817. },
  3818. "exclude-from-classmap": [
  3819. "/Tests/"
  3820. ]
  3821. },
  3822. "notification-url": "https://packagist.org/downloads/",
  3823. "license": [
  3824. "MIT"
  3825. ],
  3826. "authors": [
  3827. {
  3828. "name": "Fabien Potencier",
  3829. "email": "fabien@symfony.com"
  3830. },
  3831. {
  3832. "name": "Symfony Community",
  3833. "homepage": "https://symfony.com/contributors"
  3834. }
  3835. ],
  3836. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3837. "homepage": "https://symfony.com",
  3838. "support": {
  3839. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.11"
  3840. },
  3841. "funding": [
  3842. {
  3843. "url": "https://symfony.com/sponsor",
  3844. "type": "custom"
  3845. },
  3846. {
  3847. "url": "https://github.com/fabpot",
  3848. "type": "github"
  3849. },
  3850. {
  3851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3852. "type": "tidelift"
  3853. }
  3854. ],
  3855. "time": "2025-01-10T09:29:52+00:00"
  3856. },
  3857. {
  3858. "name": "symfony/deprecation-contracts",
  3859. "version": "v3.6.0",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://github.com/symfony/deprecation-contracts.git",
  3863. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3868. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3869. "shasum": ""
  3870. },
  3871. "require": {
  3872. "php": ">=8.1"
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "thanks": {
  3877. "url": "https://github.com/symfony/contracts",
  3878. "name": "symfony/contracts"
  3879. },
  3880. "branch-alias": {
  3881. "dev-main": "3.6-dev"
  3882. }
  3883. },
  3884. "autoload": {
  3885. "files": [
  3886. "function.php"
  3887. ]
  3888. },
  3889. "notification-url": "https://packagist.org/downloads/",
  3890. "license": [
  3891. "MIT"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "Nicolas Grekas",
  3896. "email": "p@tchwork.com"
  3897. },
  3898. {
  3899. "name": "Symfony Community",
  3900. "homepage": "https://symfony.com/contributors"
  3901. }
  3902. ],
  3903. "description": "A generic function and convention to trigger deprecation notices",
  3904. "homepage": "https://symfony.com",
  3905. "support": {
  3906. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  3907. },
  3908. "funding": [
  3909. {
  3910. "url": "https://symfony.com/sponsor",
  3911. "type": "custom"
  3912. },
  3913. {
  3914. "url": "https://github.com/fabpot",
  3915. "type": "github"
  3916. },
  3917. {
  3918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3919. "type": "tidelift"
  3920. }
  3921. ],
  3922. "time": "2024-09-25T14:21:43+00:00"
  3923. },
  3924. {
  3925. "name": "symfony/doctrine-bridge",
  3926. "version": "v7.1.11",
  3927. "source": {
  3928. "type": "git",
  3929. "url": "https://github.com/symfony/doctrine-bridge.git",
  3930. "reference": "b0247c25b71409c23c0cf3e090030950a86cc61b"
  3931. },
  3932. "dist": {
  3933. "type": "zip",
  3934. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b0247c25b71409c23c0cf3e090030950a86cc61b",
  3935. "reference": "b0247c25b71409c23c0cf3e090030950a86cc61b",
  3936. "shasum": ""
  3937. },
  3938. "require": {
  3939. "doctrine/event-manager": "^2",
  3940. "doctrine/persistence": "^3.1|^4",
  3941. "php": ">=8.2",
  3942. "symfony/deprecation-contracts": "^2.5|^3",
  3943. "symfony/polyfill-ctype": "~1.8",
  3944. "symfony/polyfill-mbstring": "~1.0",
  3945. "symfony/service-contracts": "^2.5|^3"
  3946. },
  3947. "conflict": {
  3948. "doctrine/dbal": "<3.6",
  3949. "doctrine/lexer": "<1.1",
  3950. "doctrine/orm": "<2.15",
  3951. "symfony/cache": "<6.4",
  3952. "symfony/dependency-injection": "<6.4",
  3953. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3954. "symfony/http-foundation": "<6.4",
  3955. "symfony/http-kernel": "<6.4",
  3956. "symfony/lock": "<6.4",
  3957. "symfony/messenger": "<6.4",
  3958. "symfony/property-info": "<6.4",
  3959. "symfony/security-bundle": "<6.4",
  3960. "symfony/security-core": "<6.4",
  3961. "symfony/validator": "<6.4"
  3962. },
  3963. "require-dev": {
  3964. "doctrine/collections": "^1.0|^2.0",
  3965. "doctrine/data-fixtures": "^1.1|^2",
  3966. "doctrine/dbal": "^3.6|^4",
  3967. "doctrine/orm": "^2.15|^3",
  3968. "psr/log": "^1|^2|^3",
  3969. "symfony/cache": "^6.4|^7.0",
  3970. "symfony/config": "^6.4|^7.0",
  3971. "symfony/dependency-injection": "^6.4|^7.0",
  3972. "symfony/doctrine-messenger": "^6.4|^7.0",
  3973. "symfony/expression-language": "^6.4|^7.0",
  3974. "symfony/form": "^6.4.6|^7.0.6",
  3975. "symfony/http-kernel": "^6.4|^7.0",
  3976. "symfony/lock": "^6.4|^7.0",
  3977. "symfony/messenger": "^6.4|^7.0",
  3978. "symfony/property-access": "^6.4|^7.0",
  3979. "symfony/property-info": "^6.4|^7.0",
  3980. "symfony/security-core": "^6.4|^7.0",
  3981. "symfony/stopwatch": "^6.4|^7.0",
  3982. "symfony/translation": "^6.4|^7.0",
  3983. "symfony/type-info": "^7.1",
  3984. "symfony/uid": "^6.4|^7.0",
  3985. "symfony/validator": "^6.4|^7.0",
  3986. "symfony/var-dumper": "^6.4|^7.0"
  3987. },
  3988. "type": "symfony-bridge",
  3989. "autoload": {
  3990. "psr-4": {
  3991. "Symfony\\Bridge\\Doctrine\\": ""
  3992. },
  3993. "exclude-from-classmap": [
  3994. "/Tests/"
  3995. ]
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "MIT"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Fabien Potencier",
  4004. "email": "fabien@symfony.com"
  4005. },
  4006. {
  4007. "name": "Symfony Community",
  4008. "homepage": "https://symfony.com/contributors"
  4009. }
  4010. ],
  4011. "description": "Provides integration for Doctrine with various Symfony components",
  4012. "homepage": "https://symfony.com",
  4013. "support": {
  4014. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.11"
  4015. },
  4016. "funding": [
  4017. {
  4018. "url": "https://symfony.com/sponsor",
  4019. "type": "custom"
  4020. },
  4021. {
  4022. "url": "https://github.com/fabpot",
  4023. "type": "github"
  4024. },
  4025. {
  4026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4027. "type": "tidelift"
  4028. }
  4029. ],
  4030. "time": "2025-01-27T10:57:12+00:00"
  4031. },
  4032. {
  4033. "name": "symfony/doctrine-messenger",
  4034. "version": "v7.1.11",
  4035. "source": {
  4036. "type": "git",
  4037. "url": "https://github.com/symfony/doctrine-messenger.git",
  4038. "reference": "a7813f3cfc8c66bd5930f15fcf591a1dee27b089"
  4039. },
  4040. "dist": {
  4041. "type": "zip",
  4042. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/a7813f3cfc8c66bd5930f15fcf591a1dee27b089",
  4043. "reference": "a7813f3cfc8c66bd5930f15fcf591a1dee27b089",
  4044. "shasum": ""
  4045. },
  4046. "require": {
  4047. "doctrine/dbal": "^3.6|^4",
  4048. "php": ">=8.2",
  4049. "symfony/messenger": "^6.4|^7.0",
  4050. "symfony/service-contracts": "^2.5|^3"
  4051. },
  4052. "conflict": {
  4053. "doctrine/persistence": "<1.3"
  4054. },
  4055. "require-dev": {
  4056. "doctrine/persistence": "^1.3|^2|^3",
  4057. "symfony/property-access": "^6.4|^7.0",
  4058. "symfony/serializer": "^6.4|^7.0"
  4059. },
  4060. "type": "symfony-messenger-bridge",
  4061. "autoload": {
  4062. "psr-4": {
  4063. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4064. },
  4065. "exclude-from-classmap": [
  4066. "/Tests/"
  4067. ]
  4068. },
  4069. "notification-url": "https://packagist.org/downloads/",
  4070. "license": [
  4071. "MIT"
  4072. ],
  4073. "authors": [
  4074. {
  4075. "name": "Fabien Potencier",
  4076. "email": "fabien@symfony.com"
  4077. },
  4078. {
  4079. "name": "Symfony Community",
  4080. "homepage": "https://symfony.com/contributors"
  4081. }
  4082. ],
  4083. "description": "Symfony Doctrine Messenger Bridge",
  4084. "homepage": "https://symfony.com",
  4085. "support": {
  4086. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.11"
  4087. },
  4088. "funding": [
  4089. {
  4090. "url": "https://symfony.com/sponsor",
  4091. "type": "custom"
  4092. },
  4093. {
  4094. "url": "https://github.com/fabpot",
  4095. "type": "github"
  4096. },
  4097. {
  4098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4099. "type": "tidelift"
  4100. }
  4101. ],
  4102. "time": "2025-01-07T09:23:14+00:00"
  4103. },
  4104. {
  4105. "name": "symfony/dotenv",
  4106. "version": "v7.1.9",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/symfony/dotenv.git",
  4110. "reference": "245d1afe223664d2276afb75177d8988c328fb78"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/symfony/dotenv/zipball/245d1afe223664d2276afb75177d8988c328fb78",
  4115. "reference": "245d1afe223664d2276afb75177d8988c328fb78",
  4116. "shasum": ""
  4117. },
  4118. "require": {
  4119. "php": ">=8.2"
  4120. },
  4121. "conflict": {
  4122. "symfony/console": "<6.4",
  4123. "symfony/process": "<6.4"
  4124. },
  4125. "require-dev": {
  4126. "symfony/console": "^6.4|^7.0",
  4127. "symfony/process": "^6.4|^7.0"
  4128. },
  4129. "type": "library",
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Symfony\\Component\\Dotenv\\": ""
  4133. },
  4134. "exclude-from-classmap": [
  4135. "/Tests/"
  4136. ]
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Fabien Potencier",
  4145. "email": "fabien@symfony.com"
  4146. },
  4147. {
  4148. "name": "Symfony Community",
  4149. "homepage": "https://symfony.com/contributors"
  4150. }
  4151. ],
  4152. "description": "Registers environment variables from a .env file",
  4153. "homepage": "https://symfony.com",
  4154. "keywords": [
  4155. "dotenv",
  4156. "env",
  4157. "environment"
  4158. ],
  4159. "support": {
  4160. "source": "https://github.com/symfony/dotenv/tree/v7.1.9"
  4161. },
  4162. "funding": [
  4163. {
  4164. "url": "https://symfony.com/sponsor",
  4165. "type": "custom"
  4166. },
  4167. {
  4168. "url": "https://github.com/fabpot",
  4169. "type": "github"
  4170. },
  4171. {
  4172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4173. "type": "tidelift"
  4174. }
  4175. ],
  4176. "time": "2024-11-27T11:17:28+00:00"
  4177. },
  4178. {
  4179. "name": "symfony/error-handler",
  4180. "version": "v7.1.11",
  4181. "source": {
  4182. "type": "git",
  4183. "url": "https://github.com/symfony/error-handler.git",
  4184. "reference": "f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57"
  4185. },
  4186. "dist": {
  4187. "type": "zip",
  4188. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57",
  4189. "reference": "f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57",
  4190. "shasum": ""
  4191. },
  4192. "require": {
  4193. "php": ">=8.2",
  4194. "psr/log": "^1|^2|^3",
  4195. "symfony/var-dumper": "^6.4|^7.0"
  4196. },
  4197. "conflict": {
  4198. "symfony/deprecation-contracts": "<2.5",
  4199. "symfony/http-kernel": "<6.4"
  4200. },
  4201. "require-dev": {
  4202. "symfony/deprecation-contracts": "^2.5|^3",
  4203. "symfony/http-kernel": "^6.4|^7.0",
  4204. "symfony/serializer": "^6.4|^7.0"
  4205. },
  4206. "bin": [
  4207. "Resources/bin/patch-type-declarations"
  4208. ],
  4209. "type": "library",
  4210. "autoload": {
  4211. "psr-4": {
  4212. "Symfony\\Component\\ErrorHandler\\": ""
  4213. },
  4214. "exclude-from-classmap": [
  4215. "/Tests/"
  4216. ]
  4217. },
  4218. "notification-url": "https://packagist.org/downloads/",
  4219. "license": [
  4220. "MIT"
  4221. ],
  4222. "authors": [
  4223. {
  4224. "name": "Fabien Potencier",
  4225. "email": "fabien@symfony.com"
  4226. },
  4227. {
  4228. "name": "Symfony Community",
  4229. "homepage": "https://symfony.com/contributors"
  4230. }
  4231. ],
  4232. "description": "Provides tools to manage errors and ease debugging PHP code",
  4233. "homepage": "https://symfony.com",
  4234. "support": {
  4235. "source": "https://github.com/symfony/error-handler/tree/v7.1.11"
  4236. },
  4237. "funding": [
  4238. {
  4239. "url": "https://symfony.com/sponsor",
  4240. "type": "custom"
  4241. },
  4242. {
  4243. "url": "https://github.com/fabpot",
  4244. "type": "github"
  4245. },
  4246. {
  4247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4248. "type": "tidelift"
  4249. }
  4250. ],
  4251. "time": "2025-01-07T09:23:14+00:00"
  4252. },
  4253. {
  4254. "name": "symfony/event-dispatcher",
  4255. "version": "v7.1.6",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://github.com/symfony/event-dispatcher.git",
  4259. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  4264. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  4265. "shasum": ""
  4266. },
  4267. "require": {
  4268. "php": ">=8.2",
  4269. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4270. },
  4271. "conflict": {
  4272. "symfony/dependency-injection": "<6.4",
  4273. "symfony/service-contracts": "<2.5"
  4274. },
  4275. "provide": {
  4276. "psr/event-dispatcher-implementation": "1.0",
  4277. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4278. },
  4279. "require-dev": {
  4280. "psr/log": "^1|^2|^3",
  4281. "symfony/config": "^6.4|^7.0",
  4282. "symfony/dependency-injection": "^6.4|^7.0",
  4283. "symfony/error-handler": "^6.4|^7.0",
  4284. "symfony/expression-language": "^6.4|^7.0",
  4285. "symfony/http-foundation": "^6.4|^7.0",
  4286. "symfony/service-contracts": "^2.5|^3",
  4287. "symfony/stopwatch": "^6.4|^7.0"
  4288. },
  4289. "type": "library",
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Symfony\\Component\\EventDispatcher\\": ""
  4293. },
  4294. "exclude-from-classmap": [
  4295. "/Tests/"
  4296. ]
  4297. },
  4298. "notification-url": "https://packagist.org/downloads/",
  4299. "license": [
  4300. "MIT"
  4301. ],
  4302. "authors": [
  4303. {
  4304. "name": "Fabien Potencier",
  4305. "email": "fabien@symfony.com"
  4306. },
  4307. {
  4308. "name": "Symfony Community",
  4309. "homepage": "https://symfony.com/contributors"
  4310. }
  4311. ],
  4312. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4313. "homepage": "https://symfony.com",
  4314. "support": {
  4315. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  4316. },
  4317. "funding": [
  4318. {
  4319. "url": "https://symfony.com/sponsor",
  4320. "type": "custom"
  4321. },
  4322. {
  4323. "url": "https://github.com/fabpot",
  4324. "type": "github"
  4325. },
  4326. {
  4327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4328. "type": "tidelift"
  4329. }
  4330. ],
  4331. "time": "2024-09-25T14:20:29+00:00"
  4332. },
  4333. {
  4334. "name": "symfony/event-dispatcher-contracts",
  4335. "version": "v3.6.0",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4339. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  4344. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  4345. "shasum": ""
  4346. },
  4347. "require": {
  4348. "php": ">=8.1",
  4349. "psr/event-dispatcher": "^1"
  4350. },
  4351. "type": "library",
  4352. "extra": {
  4353. "thanks": {
  4354. "url": "https://github.com/symfony/contracts",
  4355. "name": "symfony/contracts"
  4356. },
  4357. "branch-alias": {
  4358. "dev-main": "3.6-dev"
  4359. }
  4360. },
  4361. "autoload": {
  4362. "psr-4": {
  4363. "Symfony\\Contracts\\EventDispatcher\\": ""
  4364. }
  4365. },
  4366. "notification-url": "https://packagist.org/downloads/",
  4367. "license": [
  4368. "MIT"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "Nicolas Grekas",
  4373. "email": "p@tchwork.com"
  4374. },
  4375. {
  4376. "name": "Symfony Community",
  4377. "homepage": "https://symfony.com/contributors"
  4378. }
  4379. ],
  4380. "description": "Generic abstractions related to dispatching event",
  4381. "homepage": "https://symfony.com",
  4382. "keywords": [
  4383. "abstractions",
  4384. "contracts",
  4385. "decoupling",
  4386. "interfaces",
  4387. "interoperability",
  4388. "standards"
  4389. ],
  4390. "support": {
  4391. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  4392. },
  4393. "funding": [
  4394. {
  4395. "url": "https://symfony.com/sponsor",
  4396. "type": "custom"
  4397. },
  4398. {
  4399. "url": "https://github.com/fabpot",
  4400. "type": "github"
  4401. },
  4402. {
  4403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4404. "type": "tidelift"
  4405. }
  4406. ],
  4407. "time": "2024-09-25T14:21:43+00:00"
  4408. },
  4409. {
  4410. "name": "symfony/expression-language",
  4411. "version": "v7.1.6",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/symfony/expression-language.git",
  4415. "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/symfony/expression-language/zipball/c3a1224bc144b36cd79149b42c1aecd5f81395a5",
  4420. "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "php": ">=8.2",
  4425. "symfony/cache": "^6.4|^7.0",
  4426. "symfony/deprecation-contracts": "^2.5|^3",
  4427. "symfony/service-contracts": "^2.5|^3"
  4428. },
  4429. "type": "library",
  4430. "autoload": {
  4431. "psr-4": {
  4432. "Symfony\\Component\\ExpressionLanguage\\": ""
  4433. },
  4434. "exclude-from-classmap": [
  4435. "/Tests/"
  4436. ]
  4437. },
  4438. "notification-url": "https://packagist.org/downloads/",
  4439. "license": [
  4440. "MIT"
  4441. ],
  4442. "authors": [
  4443. {
  4444. "name": "Fabien Potencier",
  4445. "email": "fabien@symfony.com"
  4446. },
  4447. {
  4448. "name": "Symfony Community",
  4449. "homepage": "https://symfony.com/contributors"
  4450. }
  4451. ],
  4452. "description": "Provides an engine that can compile and evaluate expressions",
  4453. "homepage": "https://symfony.com",
  4454. "support": {
  4455. "source": "https://github.com/symfony/expression-language/tree/v7.1.6"
  4456. },
  4457. "funding": [
  4458. {
  4459. "url": "https://symfony.com/sponsor",
  4460. "type": "custom"
  4461. },
  4462. {
  4463. "url": "https://github.com/fabpot",
  4464. "type": "github"
  4465. },
  4466. {
  4467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4468. "type": "tidelift"
  4469. }
  4470. ],
  4471. "time": "2024-10-09T08:46:59+00:00"
  4472. },
  4473. {
  4474. "name": "symfony/filesystem",
  4475. "version": "v7.1.6",
  4476. "source": {
  4477. "type": "git",
  4478. "url": "https://github.com/symfony/filesystem.git",
  4479. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4"
  4480. },
  4481. "dist": {
  4482. "type": "zip",
  4483. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  4484. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  4485. "shasum": ""
  4486. },
  4487. "require": {
  4488. "php": ">=8.2",
  4489. "symfony/polyfill-ctype": "~1.8",
  4490. "symfony/polyfill-mbstring": "~1.8"
  4491. },
  4492. "require-dev": {
  4493. "symfony/process": "^6.4|^7.0"
  4494. },
  4495. "type": "library",
  4496. "autoload": {
  4497. "psr-4": {
  4498. "Symfony\\Component\\Filesystem\\": ""
  4499. },
  4500. "exclude-from-classmap": [
  4501. "/Tests/"
  4502. ]
  4503. },
  4504. "notification-url": "https://packagist.org/downloads/",
  4505. "license": [
  4506. "MIT"
  4507. ],
  4508. "authors": [
  4509. {
  4510. "name": "Fabien Potencier",
  4511. "email": "fabien@symfony.com"
  4512. },
  4513. {
  4514. "name": "Symfony Community",
  4515. "homepage": "https://symfony.com/contributors"
  4516. }
  4517. ],
  4518. "description": "Provides basic utilities for the filesystem",
  4519. "homepage": "https://symfony.com",
  4520. "support": {
  4521. "source": "https://github.com/symfony/filesystem/tree/v7.1.6"
  4522. },
  4523. "funding": [
  4524. {
  4525. "url": "https://symfony.com/sponsor",
  4526. "type": "custom"
  4527. },
  4528. {
  4529. "url": "https://github.com/fabpot",
  4530. "type": "github"
  4531. },
  4532. {
  4533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4534. "type": "tidelift"
  4535. }
  4536. ],
  4537. "time": "2024-10-25T15:11:02+00:00"
  4538. },
  4539. {
  4540. "name": "symfony/finder",
  4541. "version": "v7.1.10",
  4542. "source": {
  4543. "type": "git",
  4544. "url": "https://github.com/symfony/finder.git",
  4545. "reference": "b8b526e051ac0b33feabbec7893adcab96b23bf3"
  4546. },
  4547. "dist": {
  4548. "type": "zip",
  4549. "url": "https://api.github.com/repos/symfony/finder/zipball/b8b526e051ac0b33feabbec7893adcab96b23bf3",
  4550. "reference": "b8b526e051ac0b33feabbec7893adcab96b23bf3",
  4551. "shasum": ""
  4552. },
  4553. "require": {
  4554. "php": ">=8.2"
  4555. },
  4556. "require-dev": {
  4557. "symfony/filesystem": "^6.4|^7.0"
  4558. },
  4559. "type": "library",
  4560. "autoload": {
  4561. "psr-4": {
  4562. "Symfony\\Component\\Finder\\": ""
  4563. },
  4564. "exclude-from-classmap": [
  4565. "/Tests/"
  4566. ]
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Fabien Potencier",
  4575. "email": "fabien@symfony.com"
  4576. },
  4577. {
  4578. "name": "Symfony Community",
  4579. "homepage": "https://symfony.com/contributors"
  4580. }
  4581. ],
  4582. "description": "Finds files and directories via an intuitive fluent interface",
  4583. "homepage": "https://symfony.com",
  4584. "support": {
  4585. "source": "https://github.com/symfony/finder/tree/v7.1.10"
  4586. },
  4587. "funding": [
  4588. {
  4589. "url": "https://symfony.com/sponsor",
  4590. "type": "custom"
  4591. },
  4592. {
  4593. "url": "https://github.com/fabpot",
  4594. "type": "github"
  4595. },
  4596. {
  4597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4598. "type": "tidelift"
  4599. }
  4600. ],
  4601. "time": "2024-12-30T18:59:46+00:00"
  4602. },
  4603. {
  4604. "name": "symfony/flex",
  4605. "version": "v2.7.1",
  4606. "source": {
  4607. "type": "git",
  4608. "url": "https://github.com/symfony/flex.git",
  4609. "reference": "4ae50d368415a06820739e54d38a4a29d6df9155"
  4610. },
  4611. "dist": {
  4612. "type": "zip",
  4613. "url": "https://api.github.com/repos/symfony/flex/zipball/4ae50d368415a06820739e54d38a4a29d6df9155",
  4614. "reference": "4ae50d368415a06820739e54d38a4a29d6df9155",
  4615. "shasum": ""
  4616. },
  4617. "require": {
  4618. "composer-plugin-api": "^2.1",
  4619. "php": ">=8.0"
  4620. },
  4621. "conflict": {
  4622. "composer/semver": "<1.7.2"
  4623. },
  4624. "require-dev": {
  4625. "composer/composer": "^2.1",
  4626. "symfony/dotenv": "^5.4|^6.0",
  4627. "symfony/filesystem": "^5.4|^6.0",
  4628. "symfony/phpunit-bridge": "^5.4|^6.0",
  4629. "symfony/process": "^5.4|^6.0"
  4630. },
  4631. "type": "composer-plugin",
  4632. "extra": {
  4633. "class": "Symfony\\Flex\\Flex"
  4634. },
  4635. "autoload": {
  4636. "psr-4": {
  4637. "Symfony\\Flex\\": "src"
  4638. }
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "MIT"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Fabien Potencier",
  4647. "email": "fabien.potencier@gmail.com"
  4648. }
  4649. ],
  4650. "description": "Composer plugin for Symfony",
  4651. "support": {
  4652. "issues": "https://github.com/symfony/flex/issues",
  4653. "source": "https://github.com/symfony/flex/tree/v2.7.1"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://symfony.com/sponsor",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/fabpot",
  4662. "type": "github"
  4663. },
  4664. {
  4665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4666. "type": "tidelift"
  4667. }
  4668. ],
  4669. "time": "2025-05-28T14:22:54+00:00"
  4670. },
  4671. {
  4672. "name": "symfony/form",
  4673. "version": "v7.1.6",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/symfony/form.git",
  4677. "reference": "7a48dda96fe16711fc042df38ca1a7dd4d9d6387"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/symfony/form/zipball/7a48dda96fe16711fc042df38ca1a7dd4d9d6387",
  4682. "reference": "7a48dda96fe16711fc042df38ca1a7dd4d9d6387",
  4683. "shasum": ""
  4684. },
  4685. "require": {
  4686. "php": ">=8.2",
  4687. "symfony/deprecation-contracts": "^2.5|^3",
  4688. "symfony/event-dispatcher": "^6.4|^7.0",
  4689. "symfony/options-resolver": "^6.4|^7.0",
  4690. "symfony/polyfill-ctype": "~1.8",
  4691. "symfony/polyfill-intl-icu": "^1.21",
  4692. "symfony/polyfill-mbstring": "~1.0",
  4693. "symfony/property-access": "^6.4|^7.0",
  4694. "symfony/service-contracts": "^2.5|^3"
  4695. },
  4696. "conflict": {
  4697. "symfony/console": "<6.4",
  4698. "symfony/dependency-injection": "<6.4",
  4699. "symfony/doctrine-bridge": "<6.4",
  4700. "symfony/error-handler": "<6.4",
  4701. "symfony/framework-bundle": "<6.4",
  4702. "symfony/http-kernel": "<6.4",
  4703. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4704. "symfony/translation-contracts": "<2.5",
  4705. "symfony/twig-bridge": "<6.4"
  4706. },
  4707. "require-dev": {
  4708. "doctrine/collections": "^1.0|^2.0",
  4709. "symfony/config": "^6.4|^7.0",
  4710. "symfony/console": "^6.4|^7.0",
  4711. "symfony/dependency-injection": "^6.4|^7.0",
  4712. "symfony/expression-language": "^6.4|^7.0",
  4713. "symfony/html-sanitizer": "^6.4|^7.0",
  4714. "symfony/http-foundation": "^6.4|^7.0",
  4715. "symfony/http-kernel": "^6.4|^7.0",
  4716. "symfony/intl": "^6.4|^7.0",
  4717. "symfony/security-core": "^6.4|^7.0",
  4718. "symfony/security-csrf": "^6.4|^7.0",
  4719. "symfony/translation": "^6.4.3|^7.0.3",
  4720. "symfony/uid": "^6.4|^7.0",
  4721. "symfony/validator": "^6.4|^7.0",
  4722. "symfony/var-dumper": "^6.4|^7.0"
  4723. },
  4724. "type": "library",
  4725. "autoload": {
  4726. "psr-4": {
  4727. "Symfony\\Component\\Form\\": ""
  4728. },
  4729. "exclude-from-classmap": [
  4730. "/Tests/"
  4731. ]
  4732. },
  4733. "notification-url": "https://packagist.org/downloads/",
  4734. "license": [
  4735. "MIT"
  4736. ],
  4737. "authors": [
  4738. {
  4739. "name": "Fabien Potencier",
  4740. "email": "fabien@symfony.com"
  4741. },
  4742. {
  4743. "name": "Symfony Community",
  4744. "homepage": "https://symfony.com/contributors"
  4745. }
  4746. ],
  4747. "description": "Allows to easily create, process and reuse HTML forms",
  4748. "homepage": "https://symfony.com",
  4749. "support": {
  4750. "source": "https://github.com/symfony/form/tree/v7.1.6"
  4751. },
  4752. "funding": [
  4753. {
  4754. "url": "https://symfony.com/sponsor",
  4755. "type": "custom"
  4756. },
  4757. {
  4758. "url": "https://github.com/fabpot",
  4759. "type": "github"
  4760. },
  4761. {
  4762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4763. "type": "tidelift"
  4764. }
  4765. ],
  4766. "time": "2024-10-09T08:46:59+00:00"
  4767. },
  4768. {
  4769. "name": "symfony/framework-bundle",
  4770. "version": "v7.1.11",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/symfony/framework-bundle.git",
  4774. "reference": "1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8",
  4779. "reference": "1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "composer-runtime-api": ">=2.1",
  4784. "ext-xml": "*",
  4785. "php": ">=8.2",
  4786. "symfony/cache": "^6.4|^7.0",
  4787. "symfony/config": "^6.4|^7.0",
  4788. "symfony/dependency-injection": "^7.1.5",
  4789. "symfony/deprecation-contracts": "^2.5|^3",
  4790. "symfony/error-handler": "^6.4|^7.0",
  4791. "symfony/event-dispatcher": "^6.4|^7.0",
  4792. "symfony/filesystem": "^7.1",
  4793. "symfony/finder": "^6.4|^7.0",
  4794. "symfony/http-foundation": "^6.4|^7.0",
  4795. "symfony/http-kernel": "^6.4|^7.0",
  4796. "symfony/polyfill-mbstring": "~1.0",
  4797. "symfony/routing": "^6.4|^7.0"
  4798. },
  4799. "conflict": {
  4800. "doctrine/persistence": "<1.3",
  4801. "phpdocumentor/reflection-docblock": "<3.2.2",
  4802. "phpdocumentor/type-resolver": "<1.4.0",
  4803. "symfony/asset": "<6.4",
  4804. "symfony/asset-mapper": "<6.4",
  4805. "symfony/clock": "<6.4",
  4806. "symfony/console": "<6.4",
  4807. "symfony/dom-crawler": "<6.4",
  4808. "symfony/dotenv": "<6.4",
  4809. "symfony/form": "<6.4",
  4810. "symfony/http-client": "<6.4",
  4811. "symfony/lock": "<6.4",
  4812. "symfony/mailer": "<6.4",
  4813. "symfony/messenger": "<6.4",
  4814. "symfony/mime": "<6.4",
  4815. "symfony/property-access": "<6.4",
  4816. "symfony/property-info": "<6.4",
  4817. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4818. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4819. "symfony/security-core": "<6.4",
  4820. "symfony/security-csrf": "<6.4",
  4821. "symfony/serializer": "<6.4",
  4822. "symfony/stopwatch": "<6.4",
  4823. "symfony/translation": "<6.4",
  4824. "symfony/twig-bridge": "<6.4",
  4825. "symfony/twig-bundle": "<6.4",
  4826. "symfony/validator": "<6.4",
  4827. "symfony/web-profiler-bundle": "<6.4",
  4828. "symfony/workflow": "<6.4"
  4829. },
  4830. "require-dev": {
  4831. "doctrine/persistence": "^1.3|^2|^3",
  4832. "dragonmantank/cron-expression": "^3.1",
  4833. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4834. "seld/jsonlint": "^1.10",
  4835. "symfony/asset": "^6.4|^7.0",
  4836. "symfony/asset-mapper": "^6.4|^7.0",
  4837. "symfony/browser-kit": "^6.4|^7.0",
  4838. "symfony/clock": "^6.4|^7.0",
  4839. "symfony/console": "^6.4|^7.0",
  4840. "symfony/css-selector": "^6.4|^7.0",
  4841. "symfony/dom-crawler": "^6.4|^7.0",
  4842. "symfony/dotenv": "^6.4|^7.0",
  4843. "symfony/expression-language": "^6.4|^7.0",
  4844. "symfony/form": "^6.4|^7.0",
  4845. "symfony/html-sanitizer": "^6.4|^7.0",
  4846. "symfony/http-client": "^6.4|^7.0",
  4847. "symfony/lock": "^6.4|^7.0",
  4848. "symfony/mailer": "^6.4|^7.0",
  4849. "symfony/messenger": "^6.4|^7.0",
  4850. "symfony/mime": "^6.4|^7.0",
  4851. "symfony/notifier": "^6.4|^7.0",
  4852. "symfony/polyfill-intl-icu": "~1.0",
  4853. "symfony/process": "^6.4|^7.0",
  4854. "symfony/property-info": "^6.4|^7.0",
  4855. "symfony/rate-limiter": "^6.4|^7.0",
  4856. "symfony/scheduler": "^6.4.4|^7.0.4",
  4857. "symfony/security-bundle": "^6.4|^7.0",
  4858. "symfony/semaphore": "^6.4|^7.0",
  4859. "symfony/serializer": "^6.4|^7.0",
  4860. "symfony/stopwatch": "^6.4|^7.0",
  4861. "symfony/string": "^6.4|^7.0",
  4862. "symfony/translation": "^6.4|^7.0",
  4863. "symfony/twig-bundle": "^6.4|^7.0",
  4864. "symfony/type-info": "^7.1",
  4865. "symfony/uid": "^6.4|^7.0",
  4866. "symfony/validator": "^6.4|^7.0",
  4867. "symfony/web-link": "^6.4|^7.0",
  4868. "symfony/workflow": "^6.4|^7.0",
  4869. "symfony/yaml": "^6.4|^7.0",
  4870. "twig/twig": "^3.0.4"
  4871. },
  4872. "type": "symfony-bundle",
  4873. "autoload": {
  4874. "psr-4": {
  4875. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4876. },
  4877. "exclude-from-classmap": [
  4878. "/Tests/"
  4879. ]
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Fabien Potencier",
  4888. "email": "fabien@symfony.com"
  4889. },
  4890. {
  4891. "name": "Symfony Community",
  4892. "homepage": "https://symfony.com/contributors"
  4893. }
  4894. ],
  4895. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4896. "homepage": "https://symfony.com",
  4897. "support": {
  4898. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.11"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://symfony.com/sponsor",
  4903. "type": "custom"
  4904. },
  4905. {
  4906. "url": "https://github.com/fabpot",
  4907. "type": "github"
  4908. },
  4909. {
  4910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4911. "type": "tidelift"
  4912. }
  4913. ],
  4914. "time": "2025-01-29T07:13:42+00:00"
  4915. },
  4916. {
  4917. "name": "symfony/http-client",
  4918. "version": "v7.1.11",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/symfony/http-client.git",
  4922. "reference": "71632c1f13b36cb4c23ccdd255946dc02753afef"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/symfony/http-client/zipball/71632c1f13b36cb4c23ccdd255946dc02753afef",
  4927. "reference": "71632c1f13b36cb4c23ccdd255946dc02753afef",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "php": ">=8.2",
  4932. "psr/log": "^1|^2|^3",
  4933. "symfony/deprecation-contracts": "^2.5|^3",
  4934. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  4935. "symfony/service-contracts": "^2.5|^3"
  4936. },
  4937. "conflict": {
  4938. "php-http/discovery": "<1.15",
  4939. "symfony/http-foundation": "<6.4"
  4940. },
  4941. "provide": {
  4942. "php-http/async-client-implementation": "*",
  4943. "php-http/client-implementation": "*",
  4944. "psr/http-client-implementation": "1.0",
  4945. "symfony/http-client-implementation": "3.0"
  4946. },
  4947. "require-dev": {
  4948. "amphp/amp": "^2.5",
  4949. "amphp/http-client": "^4.2.1",
  4950. "amphp/http-tunnel": "^1.0",
  4951. "amphp/socket": "^1.1",
  4952. "guzzlehttp/promises": "^1.4|^2.0",
  4953. "nyholm/psr7": "^1.0",
  4954. "php-http/httplug": "^1.0|^2.0",
  4955. "psr/http-client": "^1.0",
  4956. "symfony/dependency-injection": "^6.4|^7.0",
  4957. "symfony/http-kernel": "^6.4|^7.0",
  4958. "symfony/messenger": "^6.4|^7.0",
  4959. "symfony/process": "^6.4|^7.0",
  4960. "symfony/rate-limiter": "^6.4|^7.0",
  4961. "symfony/stopwatch": "^6.4|^7.0"
  4962. },
  4963. "type": "library",
  4964. "autoload": {
  4965. "psr-4": {
  4966. "Symfony\\Component\\HttpClient\\": ""
  4967. },
  4968. "exclude-from-classmap": [
  4969. "/Tests/"
  4970. ]
  4971. },
  4972. "notification-url": "https://packagist.org/downloads/",
  4973. "license": [
  4974. "MIT"
  4975. ],
  4976. "authors": [
  4977. {
  4978. "name": "Nicolas Grekas",
  4979. "email": "p@tchwork.com"
  4980. },
  4981. {
  4982. "name": "Symfony Community",
  4983. "homepage": "https://symfony.com/contributors"
  4984. }
  4985. ],
  4986. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4987. "homepage": "https://symfony.com",
  4988. "keywords": [
  4989. "http"
  4990. ],
  4991. "support": {
  4992. "source": "https://github.com/symfony/http-client/tree/v7.1.11"
  4993. },
  4994. "funding": [
  4995. {
  4996. "url": "https://symfony.com/sponsor",
  4997. "type": "custom"
  4998. },
  4999. {
  5000. "url": "https://github.com/fabpot",
  5001. "type": "github"
  5002. },
  5003. {
  5004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5005. "type": "tidelift"
  5006. }
  5007. ],
  5008. "time": "2025-01-28T15:50:57+00:00"
  5009. },
  5010. {
  5011. "name": "symfony/http-client-contracts",
  5012. "version": "v3.6.0",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/symfony/http-client-contracts.git",
  5016. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  5021. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "php": ">=8.1"
  5026. },
  5027. "type": "library",
  5028. "extra": {
  5029. "thanks": {
  5030. "url": "https://github.com/symfony/contracts",
  5031. "name": "symfony/contracts"
  5032. },
  5033. "branch-alias": {
  5034. "dev-main": "3.6-dev"
  5035. }
  5036. },
  5037. "autoload": {
  5038. "psr-4": {
  5039. "Symfony\\Contracts\\HttpClient\\": ""
  5040. },
  5041. "exclude-from-classmap": [
  5042. "/Test/"
  5043. ]
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Nicolas Grekas",
  5052. "email": "p@tchwork.com"
  5053. },
  5054. {
  5055. "name": "Symfony Community",
  5056. "homepage": "https://symfony.com/contributors"
  5057. }
  5058. ],
  5059. "description": "Generic abstractions related to HTTP clients",
  5060. "homepage": "https://symfony.com",
  5061. "keywords": [
  5062. "abstractions",
  5063. "contracts",
  5064. "decoupling",
  5065. "interfaces",
  5066. "interoperability",
  5067. "standards"
  5068. ],
  5069. "support": {
  5070. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  5071. },
  5072. "funding": [
  5073. {
  5074. "url": "https://symfony.com/sponsor",
  5075. "type": "custom"
  5076. },
  5077. {
  5078. "url": "https://github.com/fabpot",
  5079. "type": "github"
  5080. },
  5081. {
  5082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5083. "type": "tidelift"
  5084. }
  5085. ],
  5086. "time": "2025-04-29T11:18:49+00:00"
  5087. },
  5088. {
  5089. "name": "symfony/http-foundation",
  5090. "version": "v7.1.11",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/symfony/http-foundation.git",
  5094. "reference": "7ced01aa123612666a7a4fb72c627f969c01fa8d"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7ced01aa123612666a7a4fb72c627f969c01fa8d",
  5099. "reference": "7ced01aa123612666a7a4fb72c627f969c01fa8d",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "php": ">=8.2",
  5104. "symfony/polyfill-mbstring": "~1.1",
  5105. "symfony/polyfill-php83": "^1.27"
  5106. },
  5107. "conflict": {
  5108. "doctrine/dbal": "<3.6",
  5109. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5110. },
  5111. "require-dev": {
  5112. "doctrine/dbal": "^3.6|^4",
  5113. "predis/predis": "^1.1|^2.0",
  5114. "symfony/cache": "^6.4.12|^7.1.5",
  5115. "symfony/dependency-injection": "^6.4|^7.0",
  5116. "symfony/expression-language": "^6.4|^7.0",
  5117. "symfony/http-kernel": "^6.4|^7.0",
  5118. "symfony/mime": "^6.4|^7.0",
  5119. "symfony/rate-limiter": "^6.4|^7.0"
  5120. },
  5121. "type": "library",
  5122. "autoload": {
  5123. "psr-4": {
  5124. "Symfony\\Component\\HttpFoundation\\": ""
  5125. },
  5126. "exclude-from-classmap": [
  5127. "/Tests/"
  5128. ]
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "MIT"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "Fabien Potencier",
  5137. "email": "fabien@symfony.com"
  5138. },
  5139. {
  5140. "name": "Symfony Community",
  5141. "homepage": "https://symfony.com/contributors"
  5142. }
  5143. ],
  5144. "description": "Defines an object-oriented layer for the HTTP specification",
  5145. "homepage": "https://symfony.com",
  5146. "support": {
  5147. "source": "https://github.com/symfony/http-foundation/tree/v7.1.11"
  5148. },
  5149. "funding": [
  5150. {
  5151. "url": "https://symfony.com/sponsor",
  5152. "type": "custom"
  5153. },
  5154. {
  5155. "url": "https://github.com/fabpot",
  5156. "type": "github"
  5157. },
  5158. {
  5159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5160. "type": "tidelift"
  5161. }
  5162. ],
  5163. "time": "2025-01-17T10:33:21+00:00"
  5164. },
  5165. {
  5166. "name": "symfony/http-kernel",
  5167. "version": "v7.1.11",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/symfony/http-kernel.git",
  5171. "reference": "576eb3368037dd139f67b8ac71db56c3f69f7d66"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/576eb3368037dd139f67b8ac71db56c3f69f7d66",
  5176. "reference": "576eb3368037dd139f67b8ac71db56c3f69f7d66",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "php": ">=8.2",
  5181. "psr/log": "^1|^2|^3",
  5182. "symfony/deprecation-contracts": "^2.5|^3",
  5183. "symfony/error-handler": "^6.4|^7.0",
  5184. "symfony/event-dispatcher": "^6.4|^7.0",
  5185. "symfony/http-foundation": "^6.4|^7.0",
  5186. "symfony/polyfill-ctype": "^1.8"
  5187. },
  5188. "conflict": {
  5189. "symfony/browser-kit": "<6.4",
  5190. "symfony/cache": "<6.4",
  5191. "symfony/config": "<6.4",
  5192. "symfony/console": "<6.4",
  5193. "symfony/dependency-injection": "<6.4",
  5194. "symfony/doctrine-bridge": "<6.4",
  5195. "symfony/form": "<6.4",
  5196. "symfony/http-client": "<6.4",
  5197. "symfony/http-client-contracts": "<2.5",
  5198. "symfony/mailer": "<6.4",
  5199. "symfony/messenger": "<6.4",
  5200. "symfony/translation": "<6.4",
  5201. "symfony/translation-contracts": "<2.5",
  5202. "symfony/twig-bridge": "<6.4",
  5203. "symfony/validator": "<6.4",
  5204. "symfony/var-dumper": "<6.4",
  5205. "twig/twig": "<3.0.4"
  5206. },
  5207. "provide": {
  5208. "psr/log-implementation": "1.0|2.0|3.0"
  5209. },
  5210. "require-dev": {
  5211. "psr/cache": "^1.0|^2.0|^3.0",
  5212. "symfony/browser-kit": "^6.4|^7.0",
  5213. "symfony/clock": "^6.4|^7.0",
  5214. "symfony/config": "^6.4|^7.0",
  5215. "symfony/console": "^6.4|^7.0",
  5216. "symfony/css-selector": "^6.4|^7.0",
  5217. "symfony/dependency-injection": "^6.4|^7.0",
  5218. "symfony/dom-crawler": "^6.4|^7.0",
  5219. "symfony/expression-language": "^6.4|^7.0",
  5220. "symfony/finder": "^6.4|^7.0",
  5221. "symfony/http-client-contracts": "^2.5|^3",
  5222. "symfony/process": "^6.4|^7.0",
  5223. "symfony/property-access": "^7.1",
  5224. "symfony/routing": "^6.4|^7.0",
  5225. "symfony/serializer": "^7.1",
  5226. "symfony/stopwatch": "^6.4|^7.0",
  5227. "symfony/translation": "^6.4|^7.0",
  5228. "symfony/translation-contracts": "^2.5|^3",
  5229. "symfony/uid": "^6.4|^7.0",
  5230. "symfony/validator": "^6.4|^7.0",
  5231. "symfony/var-dumper": "^6.4|^7.0",
  5232. "symfony/var-exporter": "^6.4|^7.0",
  5233. "twig/twig": "^3.0.4"
  5234. },
  5235. "type": "library",
  5236. "autoload": {
  5237. "psr-4": {
  5238. "Symfony\\Component\\HttpKernel\\": ""
  5239. },
  5240. "exclude-from-classmap": [
  5241. "/Tests/"
  5242. ]
  5243. },
  5244. "notification-url": "https://packagist.org/downloads/",
  5245. "license": [
  5246. "MIT"
  5247. ],
  5248. "authors": [
  5249. {
  5250. "name": "Fabien Potencier",
  5251. "email": "fabien@symfony.com"
  5252. },
  5253. {
  5254. "name": "Symfony Community",
  5255. "homepage": "https://symfony.com/contributors"
  5256. }
  5257. ],
  5258. "description": "Provides a structured process for converting a Request into a Response",
  5259. "homepage": "https://symfony.com",
  5260. "support": {
  5261. "source": "https://github.com/symfony/http-kernel/tree/v7.1.11"
  5262. },
  5263. "funding": [
  5264. {
  5265. "url": "https://symfony.com/sponsor",
  5266. "type": "custom"
  5267. },
  5268. {
  5269. "url": "https://github.com/fabpot",
  5270. "type": "github"
  5271. },
  5272. {
  5273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5274. "type": "tidelift"
  5275. }
  5276. ],
  5277. "time": "2025-01-29T07:34:05+00:00"
  5278. },
  5279. {
  5280. "name": "symfony/intl",
  5281. "version": "v7.1.8",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://github.com/symfony/intl.git",
  5285. "reference": "e56b243fc0afa5a12bd11dace4002ada5a7d99f8"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://api.github.com/repos/symfony/intl/zipball/e56b243fc0afa5a12bd11dace4002ada5a7d99f8",
  5290. "reference": "e56b243fc0afa5a12bd11dace4002ada5a7d99f8",
  5291. "shasum": ""
  5292. },
  5293. "require": {
  5294. "php": ">=8.2",
  5295. "symfony/deprecation-contracts": "^2.5|^3"
  5296. },
  5297. "conflict": {
  5298. "symfony/string": "<7.1"
  5299. },
  5300. "require-dev": {
  5301. "symfony/filesystem": "^6.4|^7.0",
  5302. "symfony/var-exporter": "^6.4|^7.0"
  5303. },
  5304. "type": "library",
  5305. "autoload": {
  5306. "psr-4": {
  5307. "Symfony\\Component\\Intl\\": ""
  5308. },
  5309. "exclude-from-classmap": [
  5310. "/Tests/",
  5311. "/Resources/data/"
  5312. ]
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "MIT"
  5317. ],
  5318. "authors": [
  5319. {
  5320. "name": "Bernhard Schussek",
  5321. "email": "bschussek@gmail.com"
  5322. },
  5323. {
  5324. "name": "Eriksen Costa",
  5325. "email": "eriksen.costa@infranology.com.br"
  5326. },
  5327. {
  5328. "name": "Igor Wiedler",
  5329. "email": "igor@wiedler.ch"
  5330. },
  5331. {
  5332. "name": "Symfony Community",
  5333. "homepage": "https://symfony.com/contributors"
  5334. }
  5335. ],
  5336. "description": "Provides access to the localization data of the ICU library",
  5337. "homepage": "https://symfony.com",
  5338. "keywords": [
  5339. "i18n",
  5340. "icu",
  5341. "internationalization",
  5342. "intl",
  5343. "l10n",
  5344. "localization"
  5345. ],
  5346. "support": {
  5347. "source": "https://github.com/symfony/intl/tree/v7.1.8"
  5348. },
  5349. "funding": [
  5350. {
  5351. "url": "https://symfony.com/sponsor",
  5352. "type": "custom"
  5353. },
  5354. {
  5355. "url": "https://github.com/fabpot",
  5356. "type": "github"
  5357. },
  5358. {
  5359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5360. "type": "tidelift"
  5361. }
  5362. ],
  5363. "time": "2024-11-08T15:46:42+00:00"
  5364. },
  5365. {
  5366. "name": "symfony/mailer",
  5367. "version": "v7.1.11",
  5368. "source": {
  5369. "type": "git",
  5370. "url": "https://github.com/symfony/mailer.git",
  5371. "reference": "e3790ddd7448cc6797fbd06749db70d147992321"
  5372. },
  5373. "dist": {
  5374. "type": "zip",
  5375. "url": "https://api.github.com/repos/symfony/mailer/zipball/e3790ddd7448cc6797fbd06749db70d147992321",
  5376. "reference": "e3790ddd7448cc6797fbd06749db70d147992321",
  5377. "shasum": ""
  5378. },
  5379. "require": {
  5380. "egulias/email-validator": "^2.1.10|^3|^4",
  5381. "php": ">=8.2",
  5382. "psr/event-dispatcher": "^1",
  5383. "psr/log": "^1|^2|^3",
  5384. "symfony/event-dispatcher": "^6.4|^7.0",
  5385. "symfony/mime": "^6.4|^7.0",
  5386. "symfony/service-contracts": "^2.5|^3"
  5387. },
  5388. "conflict": {
  5389. "symfony/http-client-contracts": "<2.5",
  5390. "symfony/http-kernel": "<6.4",
  5391. "symfony/messenger": "<6.4",
  5392. "symfony/mime": "<6.4",
  5393. "symfony/twig-bridge": "<6.4"
  5394. },
  5395. "require-dev": {
  5396. "symfony/console": "^6.4|^7.0",
  5397. "symfony/http-client": "^6.4|^7.0",
  5398. "symfony/messenger": "^6.4|^7.0",
  5399. "symfony/twig-bridge": "^6.4|^7.0"
  5400. },
  5401. "type": "library",
  5402. "autoload": {
  5403. "psr-4": {
  5404. "Symfony\\Component\\Mailer\\": ""
  5405. },
  5406. "exclude-from-classmap": [
  5407. "/Tests/"
  5408. ]
  5409. },
  5410. "notification-url": "https://packagist.org/downloads/",
  5411. "license": [
  5412. "MIT"
  5413. ],
  5414. "authors": [
  5415. {
  5416. "name": "Fabien Potencier",
  5417. "email": "fabien@symfony.com"
  5418. },
  5419. {
  5420. "name": "Symfony Community",
  5421. "homepage": "https://symfony.com/contributors"
  5422. }
  5423. ],
  5424. "description": "Helps sending emails",
  5425. "homepage": "https://symfony.com",
  5426. "support": {
  5427. "source": "https://github.com/symfony/mailer/tree/v7.1.11"
  5428. },
  5429. "funding": [
  5430. {
  5431. "url": "https://symfony.com/sponsor",
  5432. "type": "custom"
  5433. },
  5434. {
  5435. "url": "https://github.com/fabpot",
  5436. "type": "github"
  5437. },
  5438. {
  5439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5440. "type": "tidelift"
  5441. }
  5442. ],
  5443. "time": "2025-01-27T10:57:12+00:00"
  5444. },
  5445. {
  5446. "name": "symfony/messenger",
  5447. "version": "v7.1.9",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://github.com/symfony/messenger.git",
  5451. "reference": "51e2b8b6a14b78ad7db60ef5f195ae893c16b9cc"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://api.github.com/repos/symfony/messenger/zipball/51e2b8b6a14b78ad7db60ef5f195ae893c16b9cc",
  5456. "reference": "51e2b8b6a14b78ad7db60ef5f195ae893c16b9cc",
  5457. "shasum": ""
  5458. },
  5459. "require": {
  5460. "php": ">=8.2",
  5461. "psr/log": "^1|^2|^3",
  5462. "symfony/clock": "^6.4|^7.0"
  5463. },
  5464. "conflict": {
  5465. "symfony/console": "<6.4",
  5466. "symfony/event-dispatcher": "<6.4",
  5467. "symfony/event-dispatcher-contracts": "<2.5",
  5468. "symfony/framework-bundle": "<6.4",
  5469. "symfony/http-kernel": "<6.4",
  5470. "symfony/serializer": "<6.4"
  5471. },
  5472. "require-dev": {
  5473. "psr/cache": "^1.0|^2.0|^3.0",
  5474. "symfony/console": "^6.4|^7.0",
  5475. "symfony/dependency-injection": "^6.4|^7.0",
  5476. "symfony/event-dispatcher": "^6.4|^7.0",
  5477. "symfony/http-kernel": "^6.4|^7.0",
  5478. "symfony/process": "^6.4|^7.0",
  5479. "symfony/property-access": "^6.4|^7.0",
  5480. "symfony/rate-limiter": "^6.4|^7.0",
  5481. "symfony/routing": "^6.4|^7.0",
  5482. "symfony/serializer": "^6.4|^7.0",
  5483. "symfony/service-contracts": "^2.5|^3",
  5484. "symfony/stopwatch": "^6.4|^7.0",
  5485. "symfony/validator": "^6.4|^7.0"
  5486. },
  5487. "type": "library",
  5488. "autoload": {
  5489. "psr-4": {
  5490. "Symfony\\Component\\Messenger\\": ""
  5491. },
  5492. "exclude-from-classmap": [
  5493. "/Tests/"
  5494. ]
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Samuel Roze",
  5503. "email": "samuel.roze@gmail.com"
  5504. },
  5505. {
  5506. "name": "Symfony Community",
  5507. "homepage": "https://symfony.com/contributors"
  5508. }
  5509. ],
  5510. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5511. "homepage": "https://symfony.com",
  5512. "support": {
  5513. "source": "https://github.com/symfony/messenger/tree/v7.1.9"
  5514. },
  5515. "funding": [
  5516. {
  5517. "url": "https://symfony.com/sponsor",
  5518. "type": "custom"
  5519. },
  5520. {
  5521. "url": "https://github.com/fabpot",
  5522. "type": "github"
  5523. },
  5524. {
  5525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5526. "type": "tidelift"
  5527. }
  5528. ],
  5529. "time": "2024-11-26T09:50:51+00:00"
  5530. },
  5531. {
  5532. "name": "symfony/mime",
  5533. "version": "v7.1.11",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/symfony/mime.git",
  5537. "reference": "c252e20d1179dd35a5bfdb4a61a2084387ce97f4"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/symfony/mime/zipball/c252e20d1179dd35a5bfdb4a61a2084387ce97f4",
  5542. "reference": "c252e20d1179dd35a5bfdb4a61a2084387ce97f4",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=8.2",
  5547. "symfony/polyfill-intl-idn": "^1.10",
  5548. "symfony/polyfill-mbstring": "^1.0"
  5549. },
  5550. "conflict": {
  5551. "egulias/email-validator": "~3.0.0",
  5552. "phpdocumentor/reflection-docblock": "<3.2.2",
  5553. "phpdocumentor/type-resolver": "<1.4.0",
  5554. "symfony/mailer": "<6.4",
  5555. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5556. },
  5557. "require-dev": {
  5558. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5559. "league/html-to-markdown": "^5.0",
  5560. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5561. "symfony/dependency-injection": "^6.4|^7.0",
  5562. "symfony/process": "^6.4|^7.0",
  5563. "symfony/property-access": "^6.4|^7.0",
  5564. "symfony/property-info": "^6.4|^7.0",
  5565. "symfony/serializer": "^6.4.3|^7.0.3"
  5566. },
  5567. "type": "library",
  5568. "autoload": {
  5569. "psr-4": {
  5570. "Symfony\\Component\\Mime\\": ""
  5571. },
  5572. "exclude-from-classmap": [
  5573. "/Tests/"
  5574. ]
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "Fabien Potencier",
  5583. "email": "fabien@symfony.com"
  5584. },
  5585. {
  5586. "name": "Symfony Community",
  5587. "homepage": "https://symfony.com/contributors"
  5588. }
  5589. ],
  5590. "description": "Allows manipulating MIME messages",
  5591. "homepage": "https://symfony.com",
  5592. "keywords": [
  5593. "mime",
  5594. "mime-type"
  5595. ],
  5596. "support": {
  5597. "source": "https://github.com/symfony/mime/tree/v7.1.11"
  5598. },
  5599. "funding": [
  5600. {
  5601. "url": "https://symfony.com/sponsor",
  5602. "type": "custom"
  5603. },
  5604. {
  5605. "url": "https://github.com/fabpot",
  5606. "type": "github"
  5607. },
  5608. {
  5609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5610. "type": "tidelift"
  5611. }
  5612. ],
  5613. "time": "2025-01-27T10:57:12+00:00"
  5614. },
  5615. {
  5616. "name": "symfony/monolog-bridge",
  5617. "version": "v7.1.6",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://github.com/symfony/monolog-bridge.git",
  5621. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  5626. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  5627. "shasum": ""
  5628. },
  5629. "require": {
  5630. "monolog/monolog": "^3",
  5631. "php": ">=8.2",
  5632. "symfony/http-kernel": "^6.4|^7.0",
  5633. "symfony/service-contracts": "^2.5|^3"
  5634. },
  5635. "conflict": {
  5636. "symfony/console": "<6.4",
  5637. "symfony/http-foundation": "<6.4",
  5638. "symfony/security-core": "<6.4"
  5639. },
  5640. "require-dev": {
  5641. "symfony/console": "^6.4|^7.0",
  5642. "symfony/http-client": "^6.4|^7.0",
  5643. "symfony/mailer": "^6.4|^7.0",
  5644. "symfony/messenger": "^6.4|^7.0",
  5645. "symfony/mime": "^6.4|^7.0",
  5646. "symfony/security-core": "^6.4|^7.0",
  5647. "symfony/var-dumper": "^6.4|^7.0"
  5648. },
  5649. "type": "symfony-bridge",
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Symfony\\Bridge\\Monolog\\": ""
  5653. },
  5654. "exclude-from-classmap": [
  5655. "/Tests/"
  5656. ]
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Fabien Potencier",
  5665. "email": "fabien@symfony.com"
  5666. },
  5667. {
  5668. "name": "Symfony Community",
  5669. "homepage": "https://symfony.com/contributors"
  5670. }
  5671. ],
  5672. "description": "Provides integration for Monolog with various Symfony components",
  5673. "homepage": "https://symfony.com",
  5674. "support": {
  5675. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.6"
  5676. },
  5677. "funding": [
  5678. {
  5679. "url": "https://symfony.com/sponsor",
  5680. "type": "custom"
  5681. },
  5682. {
  5683. "url": "https://github.com/fabpot",
  5684. "type": "github"
  5685. },
  5686. {
  5687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5688. "type": "tidelift"
  5689. }
  5690. ],
  5691. "time": "2024-10-14T08:49:35+00:00"
  5692. },
  5693. {
  5694. "name": "symfony/monolog-bundle",
  5695. "version": "v3.10.0",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/symfony/monolog-bundle.git",
  5699. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5704. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5709. "php": ">=7.2.5",
  5710. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5711. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5712. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5713. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5714. },
  5715. "require-dev": {
  5716. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5717. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5718. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5719. },
  5720. "type": "symfony-bundle",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "3.x-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "psr-4": {
  5728. "Symfony\\Bundle\\MonologBundle\\": ""
  5729. },
  5730. "exclude-from-classmap": [
  5731. "/Tests/"
  5732. ]
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Fabien Potencier",
  5741. "email": "fabien@symfony.com"
  5742. },
  5743. {
  5744. "name": "Symfony Community",
  5745. "homepage": "https://symfony.com/contributors"
  5746. }
  5747. ],
  5748. "description": "Symfony MonologBundle",
  5749. "homepage": "https://symfony.com",
  5750. "keywords": [
  5751. "log",
  5752. "logging"
  5753. ],
  5754. "support": {
  5755. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5756. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5757. },
  5758. "funding": [
  5759. {
  5760. "url": "https://symfony.com/sponsor",
  5761. "type": "custom"
  5762. },
  5763. {
  5764. "url": "https://github.com/fabpot",
  5765. "type": "github"
  5766. },
  5767. {
  5768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5769. "type": "tidelift"
  5770. }
  5771. ],
  5772. "time": "2023-11-06T17:08:13+00:00"
  5773. },
  5774. {
  5775. "name": "symfony/notifier",
  5776. "version": "v7.1.6",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://github.com/symfony/notifier.git",
  5780. "reference": "e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://api.github.com/repos/symfony/notifier/zipball/e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f",
  5785. "reference": "e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f",
  5786. "shasum": ""
  5787. },
  5788. "require": {
  5789. "php": ">=8.2",
  5790. "psr/log": "^1|^2|^3"
  5791. },
  5792. "conflict": {
  5793. "symfony/event-dispatcher": "<6.4",
  5794. "symfony/event-dispatcher-contracts": "<2.5",
  5795. "symfony/http-client-contracts": "<2.5",
  5796. "symfony/http-kernel": "<6.4"
  5797. },
  5798. "require-dev": {
  5799. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5800. "symfony/http-client-contracts": "^2.5|^3",
  5801. "symfony/http-foundation": "^6.4|^7.0",
  5802. "symfony/messenger": "^6.4|^7.0"
  5803. },
  5804. "type": "library",
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Symfony\\Component\\Notifier\\": ""
  5808. },
  5809. "exclude-from-classmap": [
  5810. "/Tests/"
  5811. ]
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Fabien Potencier",
  5820. "email": "fabien@symfony.com"
  5821. },
  5822. {
  5823. "name": "Symfony Community",
  5824. "homepage": "https://symfony.com/contributors"
  5825. }
  5826. ],
  5827. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5828. "homepage": "https://symfony.com",
  5829. "keywords": [
  5830. "notification",
  5831. "notifier"
  5832. ],
  5833. "support": {
  5834. "source": "https://github.com/symfony/notifier/tree/v7.1.6"
  5835. },
  5836. "funding": [
  5837. {
  5838. "url": "https://symfony.com/sponsor",
  5839. "type": "custom"
  5840. },
  5841. {
  5842. "url": "https://github.com/fabpot",
  5843. "type": "github"
  5844. },
  5845. {
  5846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5847. "type": "tidelift"
  5848. }
  5849. ],
  5850. "time": "2024-09-25T14:20:29+00:00"
  5851. },
  5852. {
  5853. "name": "symfony/options-resolver",
  5854. "version": "v7.1.9",
  5855. "source": {
  5856. "type": "git",
  5857. "url": "https://github.com/symfony/options-resolver.git",
  5858. "reference": "0f4099f5306a92487d13b2a4589068c36a93c447"
  5859. },
  5860. "dist": {
  5861. "type": "zip",
  5862. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0f4099f5306a92487d13b2a4589068c36a93c447",
  5863. "reference": "0f4099f5306a92487d13b2a4589068c36a93c447",
  5864. "shasum": ""
  5865. },
  5866. "require": {
  5867. "php": ">=8.2",
  5868. "symfony/deprecation-contracts": "^2.5|^3"
  5869. },
  5870. "type": "library",
  5871. "autoload": {
  5872. "psr-4": {
  5873. "Symfony\\Component\\OptionsResolver\\": ""
  5874. },
  5875. "exclude-from-classmap": [
  5876. "/Tests/"
  5877. ]
  5878. },
  5879. "notification-url": "https://packagist.org/downloads/",
  5880. "license": [
  5881. "MIT"
  5882. ],
  5883. "authors": [
  5884. {
  5885. "name": "Fabien Potencier",
  5886. "email": "fabien@symfony.com"
  5887. },
  5888. {
  5889. "name": "Symfony Community",
  5890. "homepage": "https://symfony.com/contributors"
  5891. }
  5892. ],
  5893. "description": "Provides an improved replacement for the array_replace PHP function",
  5894. "homepage": "https://symfony.com",
  5895. "keywords": [
  5896. "config",
  5897. "configuration",
  5898. "options"
  5899. ],
  5900. "support": {
  5901. "source": "https://github.com/symfony/options-resolver/tree/v7.1.9"
  5902. },
  5903. "funding": [
  5904. {
  5905. "url": "https://symfony.com/sponsor",
  5906. "type": "custom"
  5907. },
  5908. {
  5909. "url": "https://github.com/fabpot",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2024-11-20T11:08:58+00:00"
  5918. },
  5919. {
  5920. "name": "symfony/password-hasher",
  5921. "version": "v7.1.6",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/symfony/password-hasher.git",
  5925. "reference": "2e618d1af51805e5a1fbda326d00b77c6c1037d5"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/2e618d1af51805e5a1fbda326d00b77c6c1037d5",
  5930. "reference": "2e618d1af51805e5a1fbda326d00b77c6c1037d5",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=8.2"
  5935. },
  5936. "conflict": {
  5937. "symfony/security-core": "<6.4"
  5938. },
  5939. "require-dev": {
  5940. "symfony/console": "^6.4|^7.0",
  5941. "symfony/security-core": "^6.4|^7.0"
  5942. },
  5943. "type": "library",
  5944. "autoload": {
  5945. "psr-4": {
  5946. "Symfony\\Component\\PasswordHasher\\": ""
  5947. },
  5948. "exclude-from-classmap": [
  5949. "/Tests/"
  5950. ]
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "MIT"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Robin Chalas",
  5959. "email": "robin.chalas@gmail.com"
  5960. },
  5961. {
  5962. "name": "Symfony Community",
  5963. "homepage": "https://symfony.com/contributors"
  5964. }
  5965. ],
  5966. "description": "Provides password hashing utilities",
  5967. "homepage": "https://symfony.com",
  5968. "keywords": [
  5969. "hashing",
  5970. "password"
  5971. ],
  5972. "support": {
  5973. "source": "https://github.com/symfony/password-hasher/tree/v7.1.6"
  5974. },
  5975. "funding": [
  5976. {
  5977. "url": "https://symfony.com/sponsor",
  5978. "type": "custom"
  5979. },
  5980. {
  5981. "url": "https://github.com/fabpot",
  5982. "type": "github"
  5983. },
  5984. {
  5985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5986. "type": "tidelift"
  5987. }
  5988. ],
  5989. "time": "2024-09-25T14:20:29+00:00"
  5990. },
  5991. {
  5992. "name": "symfony/polyfill-intl-grapheme",
  5993. "version": "v1.32.0",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5997. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6002. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "php": ">=7.2"
  6007. },
  6008. "suggest": {
  6009. "ext-intl": "For best performance"
  6010. },
  6011. "type": "library",
  6012. "extra": {
  6013. "thanks": {
  6014. "url": "https://github.com/symfony/polyfill",
  6015. "name": "symfony/polyfill"
  6016. }
  6017. },
  6018. "autoload": {
  6019. "files": [
  6020. "bootstrap.php"
  6021. ],
  6022. "psr-4": {
  6023. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6024. }
  6025. },
  6026. "notification-url": "https://packagist.org/downloads/",
  6027. "license": [
  6028. "MIT"
  6029. ],
  6030. "authors": [
  6031. {
  6032. "name": "Nicolas Grekas",
  6033. "email": "p@tchwork.com"
  6034. },
  6035. {
  6036. "name": "Symfony Community",
  6037. "homepage": "https://symfony.com/contributors"
  6038. }
  6039. ],
  6040. "description": "Symfony polyfill for intl's grapheme_* functions",
  6041. "homepage": "https://symfony.com",
  6042. "keywords": [
  6043. "compatibility",
  6044. "grapheme",
  6045. "intl",
  6046. "polyfill",
  6047. "portable",
  6048. "shim"
  6049. ],
  6050. "support": {
  6051. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6052. },
  6053. "funding": [
  6054. {
  6055. "url": "https://symfony.com/sponsor",
  6056. "type": "custom"
  6057. },
  6058. {
  6059. "url": "https://github.com/fabpot",
  6060. "type": "github"
  6061. },
  6062. {
  6063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6064. "type": "tidelift"
  6065. }
  6066. ],
  6067. "time": "2024-09-09T11:45:10+00:00"
  6068. },
  6069. {
  6070. "name": "symfony/polyfill-intl-icu",
  6071. "version": "v1.32.0",
  6072. "source": {
  6073. "type": "git",
  6074. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6075. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  6076. },
  6077. "dist": {
  6078. "type": "zip",
  6079. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  6080. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  6081. "shasum": ""
  6082. },
  6083. "require": {
  6084. "php": ">=7.2"
  6085. },
  6086. "suggest": {
  6087. "ext-intl": "For best performance and support of other locales than \"en\""
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "thanks": {
  6092. "url": "https://github.com/symfony/polyfill",
  6093. "name": "symfony/polyfill"
  6094. }
  6095. },
  6096. "autoload": {
  6097. "files": [
  6098. "bootstrap.php"
  6099. ],
  6100. "psr-4": {
  6101. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6102. },
  6103. "classmap": [
  6104. "Resources/stubs"
  6105. ],
  6106. "exclude-from-classmap": [
  6107. "/Tests/"
  6108. ]
  6109. },
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Nicolas Grekas",
  6117. "email": "p@tchwork.com"
  6118. },
  6119. {
  6120. "name": "Symfony Community",
  6121. "homepage": "https://symfony.com/contributors"
  6122. }
  6123. ],
  6124. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6125. "homepage": "https://symfony.com",
  6126. "keywords": [
  6127. "compatibility",
  6128. "icu",
  6129. "intl",
  6130. "polyfill",
  6131. "portable",
  6132. "shim"
  6133. ],
  6134. "support": {
  6135. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  6136. },
  6137. "funding": [
  6138. {
  6139. "url": "https://symfony.com/sponsor",
  6140. "type": "custom"
  6141. },
  6142. {
  6143. "url": "https://github.com/fabpot",
  6144. "type": "github"
  6145. },
  6146. {
  6147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6148. "type": "tidelift"
  6149. }
  6150. ],
  6151. "time": "2024-12-21T18:38:29+00:00"
  6152. },
  6153. {
  6154. "name": "symfony/polyfill-intl-idn",
  6155. "version": "v1.32.0",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6159. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6164. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "php": ">=7.2",
  6169. "symfony/polyfill-intl-normalizer": "^1.10"
  6170. },
  6171. "suggest": {
  6172. "ext-intl": "For best performance"
  6173. },
  6174. "type": "library",
  6175. "extra": {
  6176. "thanks": {
  6177. "url": "https://github.com/symfony/polyfill",
  6178. "name": "symfony/polyfill"
  6179. }
  6180. },
  6181. "autoload": {
  6182. "files": [
  6183. "bootstrap.php"
  6184. ],
  6185. "psr-4": {
  6186. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6187. }
  6188. },
  6189. "notification-url": "https://packagist.org/downloads/",
  6190. "license": [
  6191. "MIT"
  6192. ],
  6193. "authors": [
  6194. {
  6195. "name": "Laurent Bassin",
  6196. "email": "laurent@bassin.info"
  6197. },
  6198. {
  6199. "name": "Trevor Rowbotham",
  6200. "email": "trevor.rowbotham@pm.me"
  6201. },
  6202. {
  6203. "name": "Symfony Community",
  6204. "homepage": "https://symfony.com/contributors"
  6205. }
  6206. ],
  6207. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6208. "homepage": "https://symfony.com",
  6209. "keywords": [
  6210. "compatibility",
  6211. "idn",
  6212. "intl",
  6213. "polyfill",
  6214. "portable",
  6215. "shim"
  6216. ],
  6217. "support": {
  6218. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6219. },
  6220. "funding": [
  6221. {
  6222. "url": "https://symfony.com/sponsor",
  6223. "type": "custom"
  6224. },
  6225. {
  6226. "url": "https://github.com/fabpot",
  6227. "type": "github"
  6228. },
  6229. {
  6230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6231. "type": "tidelift"
  6232. }
  6233. ],
  6234. "time": "2024-09-10T14:38:51+00:00"
  6235. },
  6236. {
  6237. "name": "symfony/polyfill-intl-normalizer",
  6238. "version": "v1.32.0",
  6239. "source": {
  6240. "type": "git",
  6241. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6242. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6243. },
  6244. "dist": {
  6245. "type": "zip",
  6246. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6247. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6248. "shasum": ""
  6249. },
  6250. "require": {
  6251. "php": ">=7.2"
  6252. },
  6253. "suggest": {
  6254. "ext-intl": "For best performance"
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "thanks": {
  6259. "url": "https://github.com/symfony/polyfill",
  6260. "name": "symfony/polyfill"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "files": [
  6265. "bootstrap.php"
  6266. ],
  6267. "psr-4": {
  6268. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6269. },
  6270. "classmap": [
  6271. "Resources/stubs"
  6272. ]
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Nicolas Grekas",
  6281. "email": "p@tchwork.com"
  6282. },
  6283. {
  6284. "name": "Symfony Community",
  6285. "homepage": "https://symfony.com/contributors"
  6286. }
  6287. ],
  6288. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6289. "homepage": "https://symfony.com",
  6290. "keywords": [
  6291. "compatibility",
  6292. "intl",
  6293. "normalizer",
  6294. "polyfill",
  6295. "portable",
  6296. "shim"
  6297. ],
  6298. "support": {
  6299. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6300. },
  6301. "funding": [
  6302. {
  6303. "url": "https://symfony.com/sponsor",
  6304. "type": "custom"
  6305. },
  6306. {
  6307. "url": "https://github.com/fabpot",
  6308. "type": "github"
  6309. },
  6310. {
  6311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6312. "type": "tidelift"
  6313. }
  6314. ],
  6315. "time": "2024-09-09T11:45:10+00:00"
  6316. },
  6317. {
  6318. "name": "symfony/polyfill-mbstring",
  6319. "version": "v1.32.0",
  6320. "source": {
  6321. "type": "git",
  6322. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6323. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6324. },
  6325. "dist": {
  6326. "type": "zip",
  6327. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6328. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6329. "shasum": ""
  6330. },
  6331. "require": {
  6332. "ext-iconv": "*",
  6333. "php": ">=7.2"
  6334. },
  6335. "provide": {
  6336. "ext-mbstring": "*"
  6337. },
  6338. "suggest": {
  6339. "ext-mbstring": "For best performance"
  6340. },
  6341. "type": "library",
  6342. "extra": {
  6343. "thanks": {
  6344. "url": "https://github.com/symfony/polyfill",
  6345. "name": "symfony/polyfill"
  6346. }
  6347. },
  6348. "autoload": {
  6349. "files": [
  6350. "bootstrap.php"
  6351. ],
  6352. "psr-4": {
  6353. "Symfony\\Polyfill\\Mbstring\\": ""
  6354. }
  6355. },
  6356. "notification-url": "https://packagist.org/downloads/",
  6357. "license": [
  6358. "MIT"
  6359. ],
  6360. "authors": [
  6361. {
  6362. "name": "Nicolas Grekas",
  6363. "email": "p@tchwork.com"
  6364. },
  6365. {
  6366. "name": "Symfony Community",
  6367. "homepage": "https://symfony.com/contributors"
  6368. }
  6369. ],
  6370. "description": "Symfony polyfill for the Mbstring extension",
  6371. "homepage": "https://symfony.com",
  6372. "keywords": [
  6373. "compatibility",
  6374. "mbstring",
  6375. "polyfill",
  6376. "portable",
  6377. "shim"
  6378. ],
  6379. "support": {
  6380. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6381. },
  6382. "funding": [
  6383. {
  6384. "url": "https://symfony.com/sponsor",
  6385. "type": "custom"
  6386. },
  6387. {
  6388. "url": "https://github.com/fabpot",
  6389. "type": "github"
  6390. },
  6391. {
  6392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6393. "type": "tidelift"
  6394. }
  6395. ],
  6396. "time": "2024-12-23T08:48:59+00:00"
  6397. },
  6398. {
  6399. "name": "symfony/polyfill-php83",
  6400. "version": "v1.32.0",
  6401. "source": {
  6402. "type": "git",
  6403. "url": "https://github.com/symfony/polyfill-php83.git",
  6404. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6405. },
  6406. "dist": {
  6407. "type": "zip",
  6408. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6409. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6410. "shasum": ""
  6411. },
  6412. "require": {
  6413. "php": ">=7.2"
  6414. },
  6415. "type": "library",
  6416. "extra": {
  6417. "thanks": {
  6418. "url": "https://github.com/symfony/polyfill",
  6419. "name": "symfony/polyfill"
  6420. }
  6421. },
  6422. "autoload": {
  6423. "files": [
  6424. "bootstrap.php"
  6425. ],
  6426. "psr-4": {
  6427. "Symfony\\Polyfill\\Php83\\": ""
  6428. },
  6429. "classmap": [
  6430. "Resources/stubs"
  6431. ]
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "MIT"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Nicolas Grekas",
  6440. "email": "p@tchwork.com"
  6441. },
  6442. {
  6443. "name": "Symfony Community",
  6444. "homepage": "https://symfony.com/contributors"
  6445. }
  6446. ],
  6447. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6448. "homepage": "https://symfony.com",
  6449. "keywords": [
  6450. "compatibility",
  6451. "polyfill",
  6452. "portable",
  6453. "shim"
  6454. ],
  6455. "support": {
  6456. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  6457. },
  6458. "funding": [
  6459. {
  6460. "url": "https://symfony.com/sponsor",
  6461. "type": "custom"
  6462. },
  6463. {
  6464. "url": "https://github.com/fabpot",
  6465. "type": "github"
  6466. },
  6467. {
  6468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6469. "type": "tidelift"
  6470. }
  6471. ],
  6472. "time": "2024-09-09T11:45:10+00:00"
  6473. },
  6474. {
  6475. "name": "symfony/polyfill-php84",
  6476. "version": "v1.32.0",
  6477. "source": {
  6478. "type": "git",
  6479. "url": "https://github.com/symfony/polyfill-php84.git",
  6480. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  6481. },
  6482. "dist": {
  6483. "type": "zip",
  6484. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  6485. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  6486. "shasum": ""
  6487. },
  6488. "require": {
  6489. "php": ">=7.2"
  6490. },
  6491. "type": "library",
  6492. "extra": {
  6493. "thanks": {
  6494. "url": "https://github.com/symfony/polyfill",
  6495. "name": "symfony/polyfill"
  6496. }
  6497. },
  6498. "autoload": {
  6499. "files": [
  6500. "bootstrap.php"
  6501. ],
  6502. "psr-4": {
  6503. "Symfony\\Polyfill\\Php84\\": ""
  6504. },
  6505. "classmap": [
  6506. "Resources/stubs"
  6507. ]
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Nicolas Grekas",
  6516. "email": "p@tchwork.com"
  6517. },
  6518. {
  6519. "name": "Symfony Community",
  6520. "homepage": "https://symfony.com/contributors"
  6521. }
  6522. ],
  6523. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  6524. "homepage": "https://symfony.com",
  6525. "keywords": [
  6526. "compatibility",
  6527. "polyfill",
  6528. "portable",
  6529. "shim"
  6530. ],
  6531. "support": {
  6532. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  6533. },
  6534. "funding": [
  6535. {
  6536. "url": "https://symfony.com/sponsor",
  6537. "type": "custom"
  6538. },
  6539. {
  6540. "url": "https://github.com/fabpot",
  6541. "type": "github"
  6542. },
  6543. {
  6544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6545. "type": "tidelift"
  6546. }
  6547. ],
  6548. "time": "2025-02-20T12:04:08+00:00"
  6549. },
  6550. {
  6551. "name": "symfony/process",
  6552. "version": "v7.1.8",
  6553. "source": {
  6554. "type": "git",
  6555. "url": "https://github.com/symfony/process.git",
  6556. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  6557. },
  6558. "dist": {
  6559. "type": "zip",
  6560. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  6561. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  6562. "shasum": ""
  6563. },
  6564. "require": {
  6565. "php": ">=8.2"
  6566. },
  6567. "type": "library",
  6568. "autoload": {
  6569. "psr-4": {
  6570. "Symfony\\Component\\Process\\": ""
  6571. },
  6572. "exclude-from-classmap": [
  6573. "/Tests/"
  6574. ]
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "MIT"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "Fabien Potencier",
  6583. "email": "fabien@symfony.com"
  6584. },
  6585. {
  6586. "name": "Symfony Community",
  6587. "homepage": "https://symfony.com/contributors"
  6588. }
  6589. ],
  6590. "description": "Executes commands in sub-processes",
  6591. "homepage": "https://symfony.com",
  6592. "support": {
  6593. "source": "https://github.com/symfony/process/tree/v7.1.8"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://symfony.com/sponsor",
  6598. "type": "custom"
  6599. },
  6600. {
  6601. "url": "https://github.com/fabpot",
  6602. "type": "github"
  6603. },
  6604. {
  6605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6606. "type": "tidelift"
  6607. }
  6608. ],
  6609. "time": "2024-11-06T14:23:19+00:00"
  6610. },
  6611. {
  6612. "name": "symfony/property-access",
  6613. "version": "v7.1.11",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/symfony/property-access.git",
  6617. "reference": "83e46f0266186e76929257426ddaa151248781c6"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/symfony/property-access/zipball/83e46f0266186e76929257426ddaa151248781c6",
  6622. "reference": "83e46f0266186e76929257426ddaa151248781c6",
  6623. "shasum": ""
  6624. },
  6625. "require": {
  6626. "php": ">=8.2",
  6627. "symfony/property-info": "^6.4|^7.0"
  6628. },
  6629. "require-dev": {
  6630. "symfony/cache": "^6.4|^7.0"
  6631. },
  6632. "type": "library",
  6633. "autoload": {
  6634. "psr-4": {
  6635. "Symfony\\Component\\PropertyAccess\\": ""
  6636. },
  6637. "exclude-from-classmap": [
  6638. "/Tests/"
  6639. ]
  6640. },
  6641. "notification-url": "https://packagist.org/downloads/",
  6642. "license": [
  6643. "MIT"
  6644. ],
  6645. "authors": [
  6646. {
  6647. "name": "Fabien Potencier",
  6648. "email": "fabien@symfony.com"
  6649. },
  6650. {
  6651. "name": "Symfony Community",
  6652. "homepage": "https://symfony.com/contributors"
  6653. }
  6654. ],
  6655. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6656. "homepage": "https://symfony.com",
  6657. "keywords": [
  6658. "access",
  6659. "array",
  6660. "extraction",
  6661. "index",
  6662. "injection",
  6663. "object",
  6664. "property",
  6665. "property-path",
  6666. "reflection"
  6667. ],
  6668. "support": {
  6669. "source": "https://github.com/symfony/property-access/tree/v7.1.11"
  6670. },
  6671. "funding": [
  6672. {
  6673. "url": "https://symfony.com/sponsor",
  6674. "type": "custom"
  6675. },
  6676. {
  6677. "url": "https://github.com/fabpot",
  6678. "type": "github"
  6679. },
  6680. {
  6681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6682. "type": "tidelift"
  6683. }
  6684. ],
  6685. "time": "2025-01-10T14:50:02+00:00"
  6686. },
  6687. {
  6688. "name": "symfony/property-info",
  6689. "version": "v7.1.11",
  6690. "source": {
  6691. "type": "git",
  6692. "url": "https://github.com/symfony/property-info.git",
  6693. "reference": "df9002f8381cc074300dc2bf9726075e4bf00458"
  6694. },
  6695. "dist": {
  6696. "type": "zip",
  6697. "url": "https://api.github.com/repos/symfony/property-info/zipball/df9002f8381cc074300dc2bf9726075e4bf00458",
  6698. "reference": "df9002f8381cc074300dc2bf9726075e4bf00458",
  6699. "shasum": ""
  6700. },
  6701. "require": {
  6702. "php": ">=8.2",
  6703. "symfony/string": "^6.4|^7.0",
  6704. "symfony/type-info": "~7.1.9|^7.2.2"
  6705. },
  6706. "conflict": {
  6707. "phpdocumentor/reflection-docblock": "<5.2",
  6708. "phpdocumentor/type-resolver": "<1.5.1",
  6709. "symfony/cache": "<6.4",
  6710. "symfony/dependency-injection": "<6.4",
  6711. "symfony/serializer": "<6.4"
  6712. },
  6713. "require-dev": {
  6714. "phpdocumentor/reflection-docblock": "^5.2",
  6715. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6716. "symfony/cache": "^6.4|^7.0",
  6717. "symfony/dependency-injection": "^6.4|^7.0",
  6718. "symfony/serializer": "^6.4|^7.0"
  6719. },
  6720. "type": "library",
  6721. "autoload": {
  6722. "psr-4": {
  6723. "Symfony\\Component\\PropertyInfo\\": ""
  6724. },
  6725. "exclude-from-classmap": [
  6726. "/Tests/"
  6727. ]
  6728. },
  6729. "notification-url": "https://packagist.org/downloads/",
  6730. "license": [
  6731. "MIT"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Kévin Dunglas",
  6736. "email": "dunglas@gmail.com"
  6737. },
  6738. {
  6739. "name": "Symfony Community",
  6740. "homepage": "https://symfony.com/contributors"
  6741. }
  6742. ],
  6743. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6744. "homepage": "https://symfony.com",
  6745. "keywords": [
  6746. "doctrine",
  6747. "phpdoc",
  6748. "property",
  6749. "symfony",
  6750. "type",
  6751. "validator"
  6752. ],
  6753. "support": {
  6754. "source": "https://github.com/symfony/property-info/tree/v7.1.11"
  6755. },
  6756. "funding": [
  6757. {
  6758. "url": "https://symfony.com/sponsor",
  6759. "type": "custom"
  6760. },
  6761. {
  6762. "url": "https://github.com/fabpot",
  6763. "type": "github"
  6764. },
  6765. {
  6766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6767. "type": "tidelift"
  6768. }
  6769. ],
  6770. "time": "2025-01-27T10:57:12+00:00"
  6771. },
  6772. {
  6773. "name": "symfony/routing",
  6774. "version": "v7.1.11",
  6775. "source": {
  6776. "type": "git",
  6777. "url": "https://github.com/symfony/routing.git",
  6778. "reference": "07f6463a8ff4377944222b69b126bd5495e9d44e"
  6779. },
  6780. "dist": {
  6781. "type": "zip",
  6782. "url": "https://api.github.com/repos/symfony/routing/zipball/07f6463a8ff4377944222b69b126bd5495e9d44e",
  6783. "reference": "07f6463a8ff4377944222b69b126bd5495e9d44e",
  6784. "shasum": ""
  6785. },
  6786. "require": {
  6787. "php": ">=8.2",
  6788. "symfony/deprecation-contracts": "^2.5|^3"
  6789. },
  6790. "conflict": {
  6791. "symfony/config": "<6.4",
  6792. "symfony/dependency-injection": "<6.4",
  6793. "symfony/yaml": "<6.4"
  6794. },
  6795. "require-dev": {
  6796. "psr/log": "^1|^2|^3",
  6797. "symfony/config": "^6.4|^7.0",
  6798. "symfony/dependency-injection": "^6.4|^7.0",
  6799. "symfony/expression-language": "^6.4|^7.0",
  6800. "symfony/http-foundation": "^6.4|^7.0",
  6801. "symfony/yaml": "^6.4|^7.0"
  6802. },
  6803. "type": "library",
  6804. "autoload": {
  6805. "psr-4": {
  6806. "Symfony\\Component\\Routing\\": ""
  6807. },
  6808. "exclude-from-classmap": [
  6809. "/Tests/"
  6810. ]
  6811. },
  6812. "notification-url": "https://packagist.org/downloads/",
  6813. "license": [
  6814. "MIT"
  6815. ],
  6816. "authors": [
  6817. {
  6818. "name": "Fabien Potencier",
  6819. "email": "fabien@symfony.com"
  6820. },
  6821. {
  6822. "name": "Symfony Community",
  6823. "homepage": "https://symfony.com/contributors"
  6824. }
  6825. ],
  6826. "description": "Maps an HTTP request to a set of configuration variables",
  6827. "homepage": "https://symfony.com",
  6828. "keywords": [
  6829. "router",
  6830. "routing",
  6831. "uri",
  6832. "url"
  6833. ],
  6834. "support": {
  6835. "source": "https://github.com/symfony/routing/tree/v7.1.11"
  6836. },
  6837. "funding": [
  6838. {
  6839. "url": "https://symfony.com/sponsor",
  6840. "type": "custom"
  6841. },
  6842. {
  6843. "url": "https://github.com/fabpot",
  6844. "type": "github"
  6845. },
  6846. {
  6847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6848. "type": "tidelift"
  6849. }
  6850. ],
  6851. "time": "2025-01-17T10:33:21+00:00"
  6852. },
  6853. {
  6854. "name": "symfony/runtime",
  6855. "version": "v7.1.7",
  6856. "source": {
  6857. "type": "git",
  6858. "url": "https://github.com/symfony/runtime.git",
  6859. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba"
  6860. },
  6861. "dist": {
  6862. "type": "zip",
  6863. "url": "https://api.github.com/repos/symfony/runtime/zipball/9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  6864. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  6865. "shasum": ""
  6866. },
  6867. "require": {
  6868. "composer-plugin-api": "^1.0|^2.0",
  6869. "php": ">=8.2"
  6870. },
  6871. "conflict": {
  6872. "symfony/dotenv": "<6.4"
  6873. },
  6874. "require-dev": {
  6875. "composer/composer": "^2.6",
  6876. "symfony/console": "^6.4|^7.0",
  6877. "symfony/dotenv": "^6.4|^7.0",
  6878. "symfony/http-foundation": "^6.4|^7.0",
  6879. "symfony/http-kernel": "^6.4|^7.0"
  6880. },
  6881. "type": "composer-plugin",
  6882. "extra": {
  6883. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6884. },
  6885. "autoload": {
  6886. "psr-4": {
  6887. "Symfony\\Component\\Runtime\\": "",
  6888. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6889. },
  6890. "exclude-from-classmap": [
  6891. "/Tests/"
  6892. ]
  6893. },
  6894. "notification-url": "https://packagist.org/downloads/",
  6895. "license": [
  6896. "MIT"
  6897. ],
  6898. "authors": [
  6899. {
  6900. "name": "Nicolas Grekas",
  6901. "email": "p@tchwork.com"
  6902. },
  6903. {
  6904. "name": "Symfony Community",
  6905. "homepage": "https://symfony.com/contributors"
  6906. }
  6907. ],
  6908. "description": "Enables decoupling PHP applications from global state",
  6909. "homepage": "https://symfony.com",
  6910. "keywords": [
  6911. "runtime"
  6912. ],
  6913. "support": {
  6914. "source": "https://github.com/symfony/runtime/tree/v7.1.7"
  6915. },
  6916. "funding": [
  6917. {
  6918. "url": "https://symfony.com/sponsor",
  6919. "type": "custom"
  6920. },
  6921. {
  6922. "url": "https://github.com/fabpot",
  6923. "type": "github"
  6924. },
  6925. {
  6926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6927. "type": "tidelift"
  6928. }
  6929. ],
  6930. "time": "2024-11-05T16:45:54+00:00"
  6931. },
  6932. {
  6933. "name": "symfony/security-bundle",
  6934. "version": "v7.1.11",
  6935. "source": {
  6936. "type": "git",
  6937. "url": "https://github.com/symfony/security-bundle.git",
  6938. "reference": "4012dbc0884fc7cbf555615a5aaa16f7c0d3f222"
  6939. },
  6940. "dist": {
  6941. "type": "zip",
  6942. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4012dbc0884fc7cbf555615a5aaa16f7c0d3f222",
  6943. "reference": "4012dbc0884fc7cbf555615a5aaa16f7c0d3f222",
  6944. "shasum": ""
  6945. },
  6946. "require": {
  6947. "composer-runtime-api": ">=2.1",
  6948. "ext-xml": "*",
  6949. "php": ">=8.2",
  6950. "symfony/clock": "^6.4|^7.0",
  6951. "symfony/config": "^6.4|^7.0",
  6952. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6953. "symfony/event-dispatcher": "^6.4|^7.0",
  6954. "symfony/http-foundation": "^6.4|^7.0",
  6955. "symfony/http-kernel": "^6.4|^7.0",
  6956. "symfony/password-hasher": "^6.4|^7.0",
  6957. "symfony/security-core": "^6.4|^7.0",
  6958. "symfony/security-csrf": "^6.4|^7.0",
  6959. "symfony/security-http": "^7.1",
  6960. "symfony/service-contracts": "^2.5|^3"
  6961. },
  6962. "conflict": {
  6963. "symfony/browser-kit": "<6.4",
  6964. "symfony/console": "<6.4",
  6965. "symfony/framework-bundle": "<6.4",
  6966. "symfony/http-client": "<6.4",
  6967. "symfony/ldap": "<6.4",
  6968. "symfony/serializer": "<6.4",
  6969. "symfony/twig-bundle": "<6.4",
  6970. "symfony/validator": "<6.4"
  6971. },
  6972. "require-dev": {
  6973. "symfony/asset": "^6.4|^7.0",
  6974. "symfony/browser-kit": "^6.4|^7.0",
  6975. "symfony/console": "^6.4|^7.0",
  6976. "symfony/css-selector": "^6.4|^7.0",
  6977. "symfony/dom-crawler": "^6.4|^7.0",
  6978. "symfony/expression-language": "^6.4|^7.0",
  6979. "symfony/form": "^6.4|^7.0",
  6980. "symfony/framework-bundle": "^6.4|^7.0",
  6981. "symfony/http-client": "^6.4|^7.0",
  6982. "symfony/ldap": "^6.4|^7.0",
  6983. "symfony/process": "^6.4|^7.0",
  6984. "symfony/rate-limiter": "^6.4|^7.0",
  6985. "symfony/serializer": "^6.4|^7.0",
  6986. "symfony/translation": "^6.4|^7.0",
  6987. "symfony/twig-bridge": "^6.4|^7.0",
  6988. "symfony/twig-bundle": "^6.4|^7.0",
  6989. "symfony/validator": "^6.4|^7.0",
  6990. "symfony/yaml": "^6.4|^7.0",
  6991. "twig/twig": "^3.0.4",
  6992. "web-token/jwt-library": "^3.3.2|^4.0"
  6993. },
  6994. "type": "symfony-bundle",
  6995. "autoload": {
  6996. "psr-4": {
  6997. "Symfony\\Bundle\\SecurityBundle\\": ""
  6998. },
  6999. "exclude-from-classmap": [
  7000. "/Tests/"
  7001. ]
  7002. },
  7003. "notification-url": "https://packagist.org/downloads/",
  7004. "license": [
  7005. "MIT"
  7006. ],
  7007. "authors": [
  7008. {
  7009. "name": "Fabien Potencier",
  7010. "email": "fabien@symfony.com"
  7011. },
  7012. {
  7013. "name": "Symfony Community",
  7014. "homepage": "https://symfony.com/contributors"
  7015. }
  7016. ],
  7017. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  7018. "homepage": "https://symfony.com",
  7019. "support": {
  7020. "source": "https://github.com/symfony/security-bundle/tree/v7.1.11"
  7021. },
  7022. "funding": [
  7023. {
  7024. "url": "https://symfony.com/sponsor",
  7025. "type": "custom"
  7026. },
  7027. {
  7028. "url": "https://github.com/fabpot",
  7029. "type": "github"
  7030. },
  7031. {
  7032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7033. "type": "tidelift"
  7034. }
  7035. ],
  7036. "time": "2024-12-31T17:57:35+00:00"
  7037. },
  7038. {
  7039. "name": "symfony/security-core",
  7040. "version": "v7.1.11",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://github.com/symfony/security-core.git",
  7044. "reference": "0931c6bb15b696e1a4da8405c255b3a8673dcb3c"
  7045. },
  7046. "dist": {
  7047. "type": "zip",
  7048. "url": "https://api.github.com/repos/symfony/security-core/zipball/0931c6bb15b696e1a4da8405c255b3a8673dcb3c",
  7049. "reference": "0931c6bb15b696e1a4da8405c255b3a8673dcb3c",
  7050. "shasum": ""
  7051. },
  7052. "require": {
  7053. "php": ">=8.2",
  7054. "symfony/event-dispatcher-contracts": "^2.5|^3",
  7055. "symfony/password-hasher": "^6.4|^7.0",
  7056. "symfony/service-contracts": "^2.5|^3"
  7057. },
  7058. "conflict": {
  7059. "symfony/dependency-injection": "<6.4",
  7060. "symfony/event-dispatcher": "<6.4",
  7061. "symfony/http-foundation": "<6.4",
  7062. "symfony/ldap": "<6.4",
  7063. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7064. "symfony/validator": "<6.4"
  7065. },
  7066. "require-dev": {
  7067. "psr/cache": "^1.0|^2.0|^3.0",
  7068. "psr/container": "^1.1|^2.0",
  7069. "psr/log": "^1|^2|^3",
  7070. "symfony/cache": "^6.4|^7.0",
  7071. "symfony/dependency-injection": "^6.4|^7.0",
  7072. "symfony/event-dispatcher": "^6.4|^7.0",
  7073. "symfony/expression-language": "^6.4|^7.0",
  7074. "symfony/http-foundation": "^6.4|^7.0",
  7075. "symfony/ldap": "^6.4|^7.0",
  7076. "symfony/string": "^6.4|^7.0",
  7077. "symfony/translation": "^6.4.3|^7.0.3",
  7078. "symfony/validator": "^6.4|^7.0"
  7079. },
  7080. "type": "library",
  7081. "autoload": {
  7082. "psr-4": {
  7083. "Symfony\\Component\\Security\\Core\\": ""
  7084. },
  7085. "exclude-from-classmap": [
  7086. "/Tests/"
  7087. ]
  7088. },
  7089. "notification-url": "https://packagist.org/downloads/",
  7090. "license": [
  7091. "MIT"
  7092. ],
  7093. "authors": [
  7094. {
  7095. "name": "Fabien Potencier",
  7096. "email": "fabien@symfony.com"
  7097. },
  7098. {
  7099. "name": "Symfony Community",
  7100. "homepage": "https://symfony.com/contributors"
  7101. }
  7102. ],
  7103. "description": "Symfony Security Component - Core Library",
  7104. "homepage": "https://symfony.com",
  7105. "support": {
  7106. "source": "https://github.com/symfony/security-core/tree/v7.1.11"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://symfony.com/sponsor",
  7111. "type": "custom"
  7112. },
  7113. {
  7114. "url": "https://github.com/fabpot",
  7115. "type": "github"
  7116. },
  7117. {
  7118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7119. "type": "tidelift"
  7120. }
  7121. ],
  7122. "time": "2025-01-27T10:57:12+00:00"
  7123. },
  7124. {
  7125. "name": "symfony/security-csrf",
  7126. "version": "v7.1.6",
  7127. "source": {
  7128. "type": "git",
  7129. "url": "https://github.com/symfony/security-csrf.git",
  7130. "reference": "23b460d3447fd61970e0ed5ec7a0301296a17f06"
  7131. },
  7132. "dist": {
  7133. "type": "zip",
  7134. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/23b460d3447fd61970e0ed5ec7a0301296a17f06",
  7135. "reference": "23b460d3447fd61970e0ed5ec7a0301296a17f06",
  7136. "shasum": ""
  7137. },
  7138. "require": {
  7139. "php": ">=8.2",
  7140. "symfony/security-core": "^6.4|^7.0"
  7141. },
  7142. "conflict": {
  7143. "symfony/http-foundation": "<6.4"
  7144. },
  7145. "require-dev": {
  7146. "symfony/http-foundation": "^6.4|^7.0"
  7147. },
  7148. "type": "library",
  7149. "autoload": {
  7150. "psr-4": {
  7151. "Symfony\\Component\\Security\\Csrf\\": ""
  7152. },
  7153. "exclude-from-classmap": [
  7154. "/Tests/"
  7155. ]
  7156. },
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "Fabien Potencier",
  7164. "email": "fabien@symfony.com"
  7165. },
  7166. {
  7167. "name": "Symfony Community",
  7168. "homepage": "https://symfony.com/contributors"
  7169. }
  7170. ],
  7171. "description": "Symfony Security Component - CSRF Library",
  7172. "homepage": "https://symfony.com",
  7173. "support": {
  7174. "source": "https://github.com/symfony/security-csrf/tree/v7.1.6"
  7175. },
  7176. "funding": [
  7177. {
  7178. "url": "https://symfony.com/sponsor",
  7179. "type": "custom"
  7180. },
  7181. {
  7182. "url": "https://github.com/fabpot",
  7183. "type": "github"
  7184. },
  7185. {
  7186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7187. "type": "tidelift"
  7188. }
  7189. ],
  7190. "time": "2024-09-25T14:20:29+00:00"
  7191. },
  7192. {
  7193. "name": "symfony/security-http",
  7194. "version": "v7.1.11",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://github.com/symfony/security-http.git",
  7198. "reference": "c5ef4cb3bb013cf02c1d8459d1c51bc9f616cd80"
  7199. },
  7200. "dist": {
  7201. "type": "zip",
  7202. "url": "https://api.github.com/repos/symfony/security-http/zipball/c5ef4cb3bb013cf02c1d8459d1c51bc9f616cd80",
  7203. "reference": "c5ef4cb3bb013cf02c1d8459d1c51bc9f616cd80",
  7204. "shasum": ""
  7205. },
  7206. "require": {
  7207. "php": ">=8.2",
  7208. "symfony/deprecation-contracts": "^2.5|^3",
  7209. "symfony/http-foundation": "^6.4|^7.0",
  7210. "symfony/http-kernel": "^6.4|^7.0",
  7211. "symfony/polyfill-mbstring": "~1.0",
  7212. "symfony/property-access": "^6.4|^7.0",
  7213. "symfony/security-core": "^6.4|^7.0",
  7214. "symfony/service-contracts": "^2.5|^3"
  7215. },
  7216. "conflict": {
  7217. "symfony/clock": "<6.4",
  7218. "symfony/event-dispatcher": "<6.4",
  7219. "symfony/http-client-contracts": "<3.0",
  7220. "symfony/security-bundle": "<6.4",
  7221. "symfony/security-csrf": "<6.4"
  7222. },
  7223. "require-dev": {
  7224. "psr/log": "^1|^2|^3",
  7225. "symfony/cache": "^6.4|^7.0",
  7226. "symfony/clock": "^6.4|^7.0",
  7227. "symfony/expression-language": "^6.4|^7.0",
  7228. "symfony/http-client": "^6.4|^7.0",
  7229. "symfony/http-client-contracts": "^3.0",
  7230. "symfony/rate-limiter": "^6.4|^7.0",
  7231. "symfony/routing": "^6.4|^7.0",
  7232. "symfony/security-csrf": "^6.4|^7.0",
  7233. "symfony/translation": "^6.4|^7.0",
  7234. "web-token/jwt-library": "^3.3.2|^4.0"
  7235. },
  7236. "type": "library",
  7237. "autoload": {
  7238. "psr-4": {
  7239. "Symfony\\Component\\Security\\Http\\": ""
  7240. },
  7241. "exclude-from-classmap": [
  7242. "/Tests/"
  7243. ]
  7244. },
  7245. "notification-url": "https://packagist.org/downloads/",
  7246. "license": [
  7247. "MIT"
  7248. ],
  7249. "authors": [
  7250. {
  7251. "name": "Fabien Potencier",
  7252. "email": "fabien@symfony.com"
  7253. },
  7254. {
  7255. "name": "Symfony Community",
  7256. "homepage": "https://symfony.com/contributors"
  7257. }
  7258. ],
  7259. "description": "Symfony Security Component - HTTP Integration",
  7260. "homepage": "https://symfony.com",
  7261. "support": {
  7262. "source": "https://github.com/symfony/security-http/tree/v7.1.11"
  7263. },
  7264. "funding": [
  7265. {
  7266. "url": "https://symfony.com/sponsor",
  7267. "type": "custom"
  7268. },
  7269. {
  7270. "url": "https://github.com/fabpot",
  7271. "type": "github"
  7272. },
  7273. {
  7274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7275. "type": "tidelift"
  7276. }
  7277. ],
  7278. "time": "2025-01-28T15:50:57+00:00"
  7279. },
  7280. {
  7281. "name": "symfony/serializer",
  7282. "version": "v7.1.11",
  7283. "source": {
  7284. "type": "git",
  7285. "url": "https://github.com/symfony/serializer.git",
  7286. "reference": "cb88edf0d4d63472c50b5f77bcb3227a103966e6"
  7287. },
  7288. "dist": {
  7289. "type": "zip",
  7290. "url": "https://api.github.com/repos/symfony/serializer/zipball/cb88edf0d4d63472c50b5f77bcb3227a103966e6",
  7291. "reference": "cb88edf0d4d63472c50b5f77bcb3227a103966e6",
  7292. "shasum": ""
  7293. },
  7294. "require": {
  7295. "php": ">=8.2",
  7296. "symfony/deprecation-contracts": "^2.5|^3",
  7297. "symfony/polyfill-ctype": "~1.8"
  7298. },
  7299. "conflict": {
  7300. "phpdocumentor/reflection-docblock": "<3.2.2",
  7301. "phpdocumentor/type-resolver": "<1.4.0",
  7302. "symfony/dependency-injection": "<6.4",
  7303. "symfony/property-access": "<6.4",
  7304. "symfony/property-info": "<6.4",
  7305. "symfony/type-info": "<7.1.5",
  7306. "symfony/uid": "<6.4",
  7307. "symfony/validator": "<6.4",
  7308. "symfony/yaml": "<6.4"
  7309. },
  7310. "require-dev": {
  7311. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7312. "phpstan/phpdoc-parser": "^1.0|^2.0",
  7313. "seld/jsonlint": "^1.10",
  7314. "symfony/cache": "^6.4|^7.0",
  7315. "symfony/config": "^6.4|^7.0",
  7316. "symfony/console": "^6.4|^7.0",
  7317. "symfony/dependency-injection": "^6.4|^7.0",
  7318. "symfony/error-handler": "^6.4|^7.0",
  7319. "symfony/filesystem": "^6.4|^7.0",
  7320. "symfony/form": "^6.4|^7.0",
  7321. "symfony/http-foundation": "^6.4|^7.0",
  7322. "symfony/http-kernel": "^6.4|^7.0",
  7323. "symfony/messenger": "^6.4|^7.0",
  7324. "symfony/mime": "^6.4|^7.0",
  7325. "symfony/property-access": "^6.4|^7.0",
  7326. "symfony/property-info": "^6.4|^7.0",
  7327. "symfony/translation-contracts": "^2.5|^3",
  7328. "symfony/type-info": "^7.1.5",
  7329. "symfony/uid": "^6.4|^7.0",
  7330. "symfony/validator": "^6.4|^7.0",
  7331. "symfony/var-dumper": "^6.4|^7.0",
  7332. "symfony/var-exporter": "^6.4|^7.0",
  7333. "symfony/yaml": "^6.4|^7.0"
  7334. },
  7335. "type": "library",
  7336. "autoload": {
  7337. "psr-4": {
  7338. "Symfony\\Component\\Serializer\\": ""
  7339. },
  7340. "exclude-from-classmap": [
  7341. "/Tests/"
  7342. ]
  7343. },
  7344. "notification-url": "https://packagist.org/downloads/",
  7345. "license": [
  7346. "MIT"
  7347. ],
  7348. "authors": [
  7349. {
  7350. "name": "Fabien Potencier",
  7351. "email": "fabien@symfony.com"
  7352. },
  7353. {
  7354. "name": "Symfony Community",
  7355. "homepage": "https://symfony.com/contributors"
  7356. }
  7357. ],
  7358. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7359. "homepage": "https://symfony.com",
  7360. "support": {
  7361. "source": "https://github.com/symfony/serializer/tree/v7.1.11"
  7362. },
  7363. "funding": [
  7364. {
  7365. "url": "https://symfony.com/sponsor",
  7366. "type": "custom"
  7367. },
  7368. {
  7369. "url": "https://github.com/fabpot",
  7370. "type": "github"
  7371. },
  7372. {
  7373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7374. "type": "tidelift"
  7375. }
  7376. ],
  7377. "time": "2025-01-29T07:13:42+00:00"
  7378. },
  7379. {
  7380. "name": "symfony/service-contracts",
  7381. "version": "v3.6.0",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/symfony/service-contracts.git",
  7385. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  7390. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  7391. "shasum": ""
  7392. },
  7393. "require": {
  7394. "php": ">=8.1",
  7395. "psr/container": "^1.1|^2.0",
  7396. "symfony/deprecation-contracts": "^2.5|^3"
  7397. },
  7398. "conflict": {
  7399. "ext-psr": "<1.1|>=2"
  7400. },
  7401. "type": "library",
  7402. "extra": {
  7403. "thanks": {
  7404. "url": "https://github.com/symfony/contracts",
  7405. "name": "symfony/contracts"
  7406. },
  7407. "branch-alias": {
  7408. "dev-main": "3.6-dev"
  7409. }
  7410. },
  7411. "autoload": {
  7412. "psr-4": {
  7413. "Symfony\\Contracts\\Service\\": ""
  7414. },
  7415. "exclude-from-classmap": [
  7416. "/Test/"
  7417. ]
  7418. },
  7419. "notification-url": "https://packagist.org/downloads/",
  7420. "license": [
  7421. "MIT"
  7422. ],
  7423. "authors": [
  7424. {
  7425. "name": "Nicolas Grekas",
  7426. "email": "p@tchwork.com"
  7427. },
  7428. {
  7429. "name": "Symfony Community",
  7430. "homepage": "https://symfony.com/contributors"
  7431. }
  7432. ],
  7433. "description": "Generic abstractions related to writing services",
  7434. "homepage": "https://symfony.com",
  7435. "keywords": [
  7436. "abstractions",
  7437. "contracts",
  7438. "decoupling",
  7439. "interfaces",
  7440. "interoperability",
  7441. "standards"
  7442. ],
  7443. "support": {
  7444. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  7445. },
  7446. "funding": [
  7447. {
  7448. "url": "https://symfony.com/sponsor",
  7449. "type": "custom"
  7450. },
  7451. {
  7452. "url": "https://github.com/fabpot",
  7453. "type": "github"
  7454. },
  7455. {
  7456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7457. "type": "tidelift"
  7458. }
  7459. ],
  7460. "time": "2025-04-25T09:37:31+00:00"
  7461. },
  7462. {
  7463. "name": "symfony/stimulus-bundle",
  7464. "version": "v2.26.1",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://github.com/symfony/stimulus-bundle.git",
  7468. "reference": "82c174ebe564e6ecc1412974b6380b86d450675f"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/82c174ebe564e6ecc1412974b6380b86d450675f",
  7473. "reference": "82c174ebe564e6ecc1412974b6380b86d450675f",
  7474. "shasum": ""
  7475. },
  7476. "require": {
  7477. "php": ">=8.1",
  7478. "symfony/config": "^5.4|^6.0|^7.0",
  7479. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7480. "symfony/deprecation-contracts": "^2.0|^3.0",
  7481. "symfony/finder": "^5.4|^6.0|^7.0",
  7482. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7483. "twig/twig": "^2.15.3|^3.8"
  7484. },
  7485. "require-dev": {
  7486. "symfony/asset-mapper": "^6.3|^7.0",
  7487. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7488. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7489. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7490. "zenstruck/browser": "^1.4"
  7491. },
  7492. "type": "symfony-bundle",
  7493. "autoload": {
  7494. "psr-4": {
  7495. "Symfony\\UX\\StimulusBundle\\": "src"
  7496. }
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "MIT"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Symfony Community",
  7505. "homepage": "https://symfony.com/contributors"
  7506. }
  7507. ],
  7508. "description": "Integration with your Symfony app & Stimulus!",
  7509. "keywords": [
  7510. "symfony-ux"
  7511. ],
  7512. "support": {
  7513. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.26.1"
  7514. },
  7515. "funding": [
  7516. {
  7517. "url": "https://symfony.com/sponsor",
  7518. "type": "custom"
  7519. },
  7520. {
  7521. "url": "https://github.com/fabpot",
  7522. "type": "github"
  7523. },
  7524. {
  7525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7526. "type": "tidelift"
  7527. }
  7528. ],
  7529. "time": "2025-06-05T17:25:17+00:00"
  7530. },
  7531. {
  7532. "name": "symfony/stopwatch",
  7533. "version": "v7.1.6",
  7534. "source": {
  7535. "type": "git",
  7536. "url": "https://github.com/symfony/stopwatch.git",
  7537. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05"
  7538. },
  7539. "dist": {
  7540. "type": "zip",
  7541. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  7542. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  7543. "shasum": ""
  7544. },
  7545. "require": {
  7546. "php": ">=8.2",
  7547. "symfony/service-contracts": "^2.5|^3"
  7548. },
  7549. "type": "library",
  7550. "autoload": {
  7551. "psr-4": {
  7552. "Symfony\\Component\\Stopwatch\\": ""
  7553. },
  7554. "exclude-from-classmap": [
  7555. "/Tests/"
  7556. ]
  7557. },
  7558. "notification-url": "https://packagist.org/downloads/",
  7559. "license": [
  7560. "MIT"
  7561. ],
  7562. "authors": [
  7563. {
  7564. "name": "Fabien Potencier",
  7565. "email": "fabien@symfony.com"
  7566. },
  7567. {
  7568. "name": "Symfony Community",
  7569. "homepage": "https://symfony.com/contributors"
  7570. }
  7571. ],
  7572. "description": "Provides a way to profile code",
  7573. "homepage": "https://symfony.com",
  7574. "support": {
  7575. "source": "https://github.com/symfony/stopwatch/tree/v7.1.6"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://symfony.com/sponsor",
  7580. "type": "custom"
  7581. },
  7582. {
  7583. "url": "https://github.com/fabpot",
  7584. "type": "github"
  7585. },
  7586. {
  7587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7588. "type": "tidelift"
  7589. }
  7590. ],
  7591. "time": "2024-09-25T14:20:29+00:00"
  7592. },
  7593. {
  7594. "name": "symfony/string",
  7595. "version": "v7.1.8",
  7596. "source": {
  7597. "type": "git",
  7598. "url": "https://github.com/symfony/string.git",
  7599. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7600. },
  7601. "dist": {
  7602. "type": "zip",
  7603. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7604. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7605. "shasum": ""
  7606. },
  7607. "require": {
  7608. "php": ">=8.2",
  7609. "symfony/polyfill-ctype": "~1.8",
  7610. "symfony/polyfill-intl-grapheme": "~1.0",
  7611. "symfony/polyfill-intl-normalizer": "~1.0",
  7612. "symfony/polyfill-mbstring": "~1.0"
  7613. },
  7614. "conflict": {
  7615. "symfony/translation-contracts": "<2.5"
  7616. },
  7617. "require-dev": {
  7618. "symfony/emoji": "^7.1",
  7619. "symfony/error-handler": "^6.4|^7.0",
  7620. "symfony/http-client": "^6.4|^7.0",
  7621. "symfony/intl": "^6.4|^7.0",
  7622. "symfony/translation-contracts": "^2.5|^3.0",
  7623. "symfony/var-exporter": "^6.4|^7.0"
  7624. },
  7625. "type": "library",
  7626. "autoload": {
  7627. "files": [
  7628. "Resources/functions.php"
  7629. ],
  7630. "psr-4": {
  7631. "Symfony\\Component\\String\\": ""
  7632. },
  7633. "exclude-from-classmap": [
  7634. "/Tests/"
  7635. ]
  7636. },
  7637. "notification-url": "https://packagist.org/downloads/",
  7638. "license": [
  7639. "MIT"
  7640. ],
  7641. "authors": [
  7642. {
  7643. "name": "Nicolas Grekas",
  7644. "email": "p@tchwork.com"
  7645. },
  7646. {
  7647. "name": "Symfony Community",
  7648. "homepage": "https://symfony.com/contributors"
  7649. }
  7650. ],
  7651. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7652. "homepage": "https://symfony.com",
  7653. "keywords": [
  7654. "grapheme",
  7655. "i18n",
  7656. "string",
  7657. "unicode",
  7658. "utf-8",
  7659. "utf8"
  7660. ],
  7661. "support": {
  7662. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://symfony.com/sponsor",
  7667. "type": "custom"
  7668. },
  7669. {
  7670. "url": "https://github.com/fabpot",
  7671. "type": "github"
  7672. },
  7673. {
  7674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7675. "type": "tidelift"
  7676. }
  7677. ],
  7678. "time": "2024-11-13T13:31:21+00:00"
  7679. },
  7680. {
  7681. "name": "symfony/translation",
  7682. "version": "v7.1.6",
  7683. "source": {
  7684. "type": "git",
  7685. "url": "https://github.com/symfony/translation.git",
  7686. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7687. },
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7691. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "php": ">=8.2",
  7696. "symfony/polyfill-mbstring": "~1.0",
  7697. "symfony/translation-contracts": "^2.5|^3.0"
  7698. },
  7699. "conflict": {
  7700. "symfony/config": "<6.4",
  7701. "symfony/console": "<6.4",
  7702. "symfony/dependency-injection": "<6.4",
  7703. "symfony/http-client-contracts": "<2.5",
  7704. "symfony/http-kernel": "<6.4",
  7705. "symfony/service-contracts": "<2.5",
  7706. "symfony/twig-bundle": "<6.4",
  7707. "symfony/yaml": "<6.4"
  7708. },
  7709. "provide": {
  7710. "symfony/translation-implementation": "2.3|3.0"
  7711. },
  7712. "require-dev": {
  7713. "nikic/php-parser": "^4.18|^5.0",
  7714. "psr/log": "^1|^2|^3",
  7715. "symfony/config": "^6.4|^7.0",
  7716. "symfony/console": "^6.4|^7.0",
  7717. "symfony/dependency-injection": "^6.4|^7.0",
  7718. "symfony/finder": "^6.4|^7.0",
  7719. "symfony/http-client-contracts": "^2.5|^3.0",
  7720. "symfony/http-kernel": "^6.4|^7.0",
  7721. "symfony/intl": "^6.4|^7.0",
  7722. "symfony/polyfill-intl-icu": "^1.21",
  7723. "symfony/routing": "^6.4|^7.0",
  7724. "symfony/service-contracts": "^2.5|^3",
  7725. "symfony/yaml": "^6.4|^7.0"
  7726. },
  7727. "type": "library",
  7728. "autoload": {
  7729. "files": [
  7730. "Resources/functions.php"
  7731. ],
  7732. "psr-4": {
  7733. "Symfony\\Component\\Translation\\": ""
  7734. },
  7735. "exclude-from-classmap": [
  7736. "/Tests/"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Fabien Potencier",
  7746. "email": "fabien@symfony.com"
  7747. },
  7748. {
  7749. "name": "Symfony Community",
  7750. "homepage": "https://symfony.com/contributors"
  7751. }
  7752. ],
  7753. "description": "Provides tools to internationalize your application",
  7754. "homepage": "https://symfony.com",
  7755. "support": {
  7756. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7757. },
  7758. "funding": [
  7759. {
  7760. "url": "https://symfony.com/sponsor",
  7761. "type": "custom"
  7762. },
  7763. {
  7764. "url": "https://github.com/fabpot",
  7765. "type": "github"
  7766. },
  7767. {
  7768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7769. "type": "tidelift"
  7770. }
  7771. ],
  7772. "time": "2024-09-28T12:35:13+00:00"
  7773. },
  7774. {
  7775. "name": "symfony/translation-contracts",
  7776. "version": "v3.6.0",
  7777. "source": {
  7778. "type": "git",
  7779. "url": "https://github.com/symfony/translation-contracts.git",
  7780. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  7781. },
  7782. "dist": {
  7783. "type": "zip",
  7784. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7785. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7786. "shasum": ""
  7787. },
  7788. "require": {
  7789. "php": ">=8.1"
  7790. },
  7791. "type": "library",
  7792. "extra": {
  7793. "thanks": {
  7794. "url": "https://github.com/symfony/contracts",
  7795. "name": "symfony/contracts"
  7796. },
  7797. "branch-alias": {
  7798. "dev-main": "3.6-dev"
  7799. }
  7800. },
  7801. "autoload": {
  7802. "psr-4": {
  7803. "Symfony\\Contracts\\Translation\\": ""
  7804. },
  7805. "exclude-from-classmap": [
  7806. "/Test/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Nicolas Grekas",
  7816. "email": "p@tchwork.com"
  7817. },
  7818. {
  7819. "name": "Symfony Community",
  7820. "homepage": "https://symfony.com/contributors"
  7821. }
  7822. ],
  7823. "description": "Generic abstractions related to translation",
  7824. "homepage": "https://symfony.com",
  7825. "keywords": [
  7826. "abstractions",
  7827. "contracts",
  7828. "decoupling",
  7829. "interfaces",
  7830. "interoperability",
  7831. "standards"
  7832. ],
  7833. "support": {
  7834. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://symfony.com/sponsor",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://github.com/fabpot",
  7843. "type": "github"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "time": "2024-09-27T08:32:26+00:00"
  7851. },
  7852. {
  7853. "name": "symfony/twig-bridge",
  7854. "version": "v7.1.10",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/symfony/twig-bridge.git",
  7858. "reference": "c027c54611cd194273b924c8d24d9706695171ff"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/c027c54611cd194273b924c8d24d9706695171ff",
  7863. "reference": "c027c54611cd194273b924c8d24d9706695171ff",
  7864. "shasum": ""
  7865. },
  7866. "require": {
  7867. "php": ">=8.2",
  7868. "symfony/translation-contracts": "^2.5|^3",
  7869. "twig/twig": "^3.9"
  7870. },
  7871. "conflict": {
  7872. "phpdocumentor/reflection-docblock": "<3.2.2",
  7873. "phpdocumentor/type-resolver": "<1.4.0",
  7874. "symfony/console": "<6.4",
  7875. "symfony/form": "<6.4",
  7876. "symfony/http-foundation": "<6.4",
  7877. "symfony/http-kernel": "<6.4",
  7878. "symfony/mime": "<6.4",
  7879. "symfony/serializer": "<6.4",
  7880. "symfony/translation": "<6.4",
  7881. "symfony/workflow": "<6.4"
  7882. },
  7883. "require-dev": {
  7884. "egulias/email-validator": "^2.1.10|^3|^4",
  7885. "league/html-to-markdown": "^5.0",
  7886. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7887. "symfony/asset": "^6.4|^7.0",
  7888. "symfony/asset-mapper": "^6.4|^7.0",
  7889. "symfony/console": "^6.4|^7.0",
  7890. "symfony/dependency-injection": "^6.4|^7.0",
  7891. "symfony/emoji": "^7.1",
  7892. "symfony/expression-language": "^6.4|^7.0",
  7893. "symfony/finder": "^6.4|^7.0",
  7894. "symfony/form": "^6.4|^7.0",
  7895. "symfony/html-sanitizer": "^6.4|^7.0",
  7896. "symfony/http-foundation": "^6.4|^7.0",
  7897. "symfony/http-kernel": "^6.4|^7.0",
  7898. "symfony/intl": "^6.4|^7.0",
  7899. "symfony/mime": "^6.4|^7.0",
  7900. "symfony/polyfill-intl-icu": "~1.0",
  7901. "symfony/property-info": "^6.4|^7.0",
  7902. "symfony/routing": "^6.4|^7.0",
  7903. "symfony/security-acl": "^2.8|^3.0",
  7904. "symfony/security-core": "^6.4|^7.0",
  7905. "symfony/security-csrf": "^6.4|^7.0",
  7906. "symfony/security-http": "^6.4|^7.0",
  7907. "symfony/serializer": "^6.4.3|^7.0.3",
  7908. "symfony/stopwatch": "^6.4|^7.0",
  7909. "symfony/translation": "^6.4|^7.0",
  7910. "symfony/web-link": "^6.4|^7.0",
  7911. "symfony/workflow": "^6.4|^7.0",
  7912. "symfony/yaml": "^6.4|^7.0",
  7913. "twig/cssinliner-extra": "^2.12|^3",
  7914. "twig/inky-extra": "^2.12|^3",
  7915. "twig/markdown-extra": "^2.12|^3"
  7916. },
  7917. "type": "symfony-bridge",
  7918. "autoload": {
  7919. "psr-4": {
  7920. "Symfony\\Bridge\\Twig\\": ""
  7921. },
  7922. "exclude-from-classmap": [
  7923. "/Tests/"
  7924. ]
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Fabien Potencier",
  7933. "email": "fabien@symfony.com"
  7934. },
  7935. {
  7936. "name": "Symfony Community",
  7937. "homepage": "https://symfony.com/contributors"
  7938. }
  7939. ],
  7940. "description": "Provides integration for Twig with various Symfony components",
  7941. "homepage": "https://symfony.com",
  7942. "support": {
  7943. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.10"
  7944. },
  7945. "funding": [
  7946. {
  7947. "url": "https://symfony.com/sponsor",
  7948. "type": "custom"
  7949. },
  7950. {
  7951. "url": "https://github.com/fabpot",
  7952. "type": "github"
  7953. },
  7954. {
  7955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7956. "type": "tidelift"
  7957. }
  7958. ],
  7959. "time": "2024-12-19T14:23:39+00:00"
  7960. },
  7961. {
  7962. "name": "symfony/twig-bundle",
  7963. "version": "v7.1.6",
  7964. "source": {
  7965. "type": "git",
  7966. "url": "https://github.com/symfony/twig-bundle.git",
  7967. "reference": "af902314a71fb412ae412094f7e1d7e49594507b"
  7968. },
  7969. "dist": {
  7970. "type": "zip",
  7971. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/af902314a71fb412ae412094f7e1d7e49594507b",
  7972. "reference": "af902314a71fb412ae412094f7e1d7e49594507b",
  7973. "shasum": ""
  7974. },
  7975. "require": {
  7976. "composer-runtime-api": ">=2.1",
  7977. "php": ">=8.2",
  7978. "symfony/config": "^6.4|^7.0",
  7979. "symfony/dependency-injection": "^6.4|^7.0",
  7980. "symfony/http-foundation": "^6.4|^7.0",
  7981. "symfony/http-kernel": "^6.4|^7.0",
  7982. "symfony/twig-bridge": "^6.4|^7.0",
  7983. "twig/twig": "^3.0.4"
  7984. },
  7985. "conflict": {
  7986. "symfony/framework-bundle": "<6.4",
  7987. "symfony/translation": "<6.4"
  7988. },
  7989. "require-dev": {
  7990. "symfony/asset": "^6.4|^7.0",
  7991. "symfony/expression-language": "^6.4|^7.0",
  7992. "symfony/finder": "^6.4|^7.0",
  7993. "symfony/form": "^6.4|^7.0",
  7994. "symfony/framework-bundle": "^6.4|^7.0",
  7995. "symfony/routing": "^6.4|^7.0",
  7996. "symfony/stopwatch": "^6.4|^7.0",
  7997. "symfony/translation": "^6.4|^7.0",
  7998. "symfony/web-link": "^6.4|^7.0",
  7999. "symfony/yaml": "^6.4|^7.0"
  8000. },
  8001. "type": "symfony-bundle",
  8002. "autoload": {
  8003. "psr-4": {
  8004. "Symfony\\Bundle\\TwigBundle\\": ""
  8005. },
  8006. "exclude-from-classmap": [
  8007. "/Tests/"
  8008. ]
  8009. },
  8010. "notification-url": "https://packagist.org/downloads/",
  8011. "license": [
  8012. "MIT"
  8013. ],
  8014. "authors": [
  8015. {
  8016. "name": "Fabien Potencier",
  8017. "email": "fabien@symfony.com"
  8018. },
  8019. {
  8020. "name": "Symfony Community",
  8021. "homepage": "https://symfony.com/contributors"
  8022. }
  8023. ],
  8024. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8025. "homepage": "https://symfony.com",
  8026. "support": {
  8027. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.6"
  8028. },
  8029. "funding": [
  8030. {
  8031. "url": "https://symfony.com/sponsor",
  8032. "type": "custom"
  8033. },
  8034. {
  8035. "url": "https://github.com/fabpot",
  8036. "type": "github"
  8037. },
  8038. {
  8039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8040. "type": "tidelift"
  8041. }
  8042. ],
  8043. "time": "2024-09-25T14:20:29+00:00"
  8044. },
  8045. {
  8046. "name": "symfony/type-info",
  8047. "version": "v7.1.10",
  8048. "source": {
  8049. "type": "git",
  8050. "url": "https://github.com/symfony/type-info.git",
  8051. "reference": "8f980bdd1d6a2834503afbfcf3f39de8133e48fe"
  8052. },
  8053. "dist": {
  8054. "type": "zip",
  8055. "url": "https://api.github.com/repos/symfony/type-info/zipball/8f980bdd1d6a2834503afbfcf3f39de8133e48fe",
  8056. "reference": "8f980bdd1d6a2834503afbfcf3f39de8133e48fe",
  8057. "shasum": ""
  8058. },
  8059. "require": {
  8060. "php": ">=8.2",
  8061. "psr/container": "^1.1|^2.0"
  8062. },
  8063. "conflict": {
  8064. "phpstan/phpdoc-parser": "<1.0",
  8065. "symfony/dependency-injection": "<6.4",
  8066. "symfony/property-info": "<6.4"
  8067. },
  8068. "require-dev": {
  8069. "phpstan/phpdoc-parser": "^1.0|^2.0",
  8070. "symfony/dependency-injection": "^6.4|^7.0",
  8071. "symfony/property-info": "^6.4|^7.0"
  8072. },
  8073. "type": "library",
  8074. "autoload": {
  8075. "psr-4": {
  8076. "Symfony\\Component\\TypeInfo\\": ""
  8077. },
  8078. "exclude-from-classmap": [
  8079. "/Tests/"
  8080. ]
  8081. },
  8082. "notification-url": "https://packagist.org/downloads/",
  8083. "license": [
  8084. "MIT"
  8085. ],
  8086. "authors": [
  8087. {
  8088. "name": "Mathias Arlaud",
  8089. "email": "mathias.arlaud@gmail.com"
  8090. },
  8091. {
  8092. "name": "Baptiste LEDUC",
  8093. "email": "baptiste.leduc@gmail.com"
  8094. },
  8095. {
  8096. "name": "Symfony Community",
  8097. "homepage": "https://symfony.com/contributors"
  8098. }
  8099. ],
  8100. "description": "Extracts PHP types information.",
  8101. "homepage": "https://symfony.com",
  8102. "keywords": [
  8103. "PHPStan",
  8104. "phpdoc",
  8105. "symfony",
  8106. "type"
  8107. ],
  8108. "support": {
  8109. "source": "https://github.com/symfony/type-info/tree/v7.1.10"
  8110. },
  8111. "funding": [
  8112. {
  8113. "url": "https://symfony.com/sponsor",
  8114. "type": "custom"
  8115. },
  8116. {
  8117. "url": "https://github.com/fabpot",
  8118. "type": "github"
  8119. },
  8120. {
  8121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8122. "type": "tidelift"
  8123. }
  8124. ],
  8125. "time": "2024-12-11T12:11:39+00:00"
  8126. },
  8127. {
  8128. "name": "symfony/ux-turbo",
  8129. "version": "v2.26.1",
  8130. "source": {
  8131. "type": "git",
  8132. "url": "https://github.com/symfony/ux-turbo.git",
  8133. "reference": "3754ac2b41220127e58c62f7599eaf7834b69a55"
  8134. },
  8135. "dist": {
  8136. "type": "zip",
  8137. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/3754ac2b41220127e58c62f7599eaf7834b69a55",
  8138. "reference": "3754ac2b41220127e58c62f7599eaf7834b69a55",
  8139. "shasum": ""
  8140. },
  8141. "require": {
  8142. "php": ">=8.1",
  8143. "symfony/stimulus-bundle": "^2.9.1"
  8144. },
  8145. "conflict": {
  8146. "symfony/flex": "<1.13"
  8147. },
  8148. "require-dev": {
  8149. "dbrekelmans/bdi": "dev-main",
  8150. "doctrine/doctrine-bundle": "^2.4.3",
  8151. "doctrine/orm": "^2.8 | 3.0",
  8152. "php-webdriver/webdriver": "^1.15",
  8153. "phpstan/phpstan": "^2.1.17",
  8154. "symfony/asset-mapper": "^6.4|^7.0",
  8155. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  8156. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8157. "symfony/form": "^5.4|^6.0|^7.0",
  8158. "symfony/framework-bundle": "^6.4|^7.0",
  8159. "symfony/mercure-bundle": "^0.3.7",
  8160. "symfony/messenger": "^5.4|^6.0|^7.0",
  8161. "symfony/panther": "^2.2",
  8162. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8163. "symfony/process": "^5.4|6.3.*|^7.0",
  8164. "symfony/property-access": "^5.4|^6.0|^7.0",
  8165. "symfony/security-core": "^5.4|^6.0|^7.0",
  8166. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8167. "symfony/twig-bundle": "^6.4|^7.0",
  8168. "symfony/ux-twig-component": "^2.21",
  8169. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  8170. },
  8171. "type": "symfony-bundle",
  8172. "extra": {
  8173. "thanks": {
  8174. "url": "https://github.com/symfony/ux",
  8175. "name": "symfony/ux"
  8176. }
  8177. },
  8178. "autoload": {
  8179. "psr-4": {
  8180. "Symfony\\UX\\Turbo\\": "src/"
  8181. }
  8182. },
  8183. "notification-url": "https://packagist.org/downloads/",
  8184. "license": [
  8185. "MIT"
  8186. ],
  8187. "authors": [
  8188. {
  8189. "name": "Kévin Dunglas",
  8190. "email": "kevin@dunglas.fr"
  8191. },
  8192. {
  8193. "name": "Symfony Community",
  8194. "homepage": "https://symfony.com/contributors"
  8195. }
  8196. ],
  8197. "description": "Hotwire Turbo integration for Symfony",
  8198. "homepage": "https://symfony.com",
  8199. "keywords": [
  8200. "hotwire",
  8201. "javascript",
  8202. "mercure",
  8203. "symfony-ux",
  8204. "turbo",
  8205. "turbo-stream"
  8206. ],
  8207. "support": {
  8208. "source": "https://github.com/symfony/ux-turbo/tree/v2.26.1"
  8209. },
  8210. "funding": [
  8211. {
  8212. "url": "https://symfony.com/sponsor",
  8213. "type": "custom"
  8214. },
  8215. {
  8216. "url": "https://github.com/fabpot",
  8217. "type": "github"
  8218. },
  8219. {
  8220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8221. "type": "tidelift"
  8222. }
  8223. ],
  8224. "time": "2025-06-05T17:25:17+00:00"
  8225. },
  8226. {
  8227. "name": "symfony/validator",
  8228. "version": "v7.1.11",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/symfony/validator.git",
  8232. "reference": "bb226e43829a6554cf891bd7c176dc73d49bc6c1"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/symfony/validator/zipball/bb226e43829a6554cf891bd7c176dc73d49bc6c1",
  8237. "reference": "bb226e43829a6554cf891bd7c176dc73d49bc6c1",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": ">=8.2",
  8242. "symfony/deprecation-contracts": "^2.5|^3",
  8243. "symfony/polyfill-ctype": "~1.8",
  8244. "symfony/polyfill-mbstring": "~1.0",
  8245. "symfony/polyfill-php83": "^1.27",
  8246. "symfony/translation-contracts": "^2.5|^3"
  8247. },
  8248. "conflict": {
  8249. "doctrine/lexer": "<1.1",
  8250. "symfony/dependency-injection": "<6.4",
  8251. "symfony/doctrine-bridge": "<7.0",
  8252. "symfony/expression-language": "<6.4",
  8253. "symfony/http-kernel": "<6.4",
  8254. "symfony/intl": "<6.4",
  8255. "symfony/property-info": "<6.4",
  8256. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8257. "symfony/yaml": "<6.4"
  8258. },
  8259. "require-dev": {
  8260. "egulias/email-validator": "^2.1.10|^3|^4",
  8261. "symfony/cache": "^6.4|^7.0",
  8262. "symfony/config": "^6.4|^7.0",
  8263. "symfony/console": "^6.4|^7.0",
  8264. "symfony/dependency-injection": "^6.4|^7.0",
  8265. "symfony/expression-language": "^6.4|^7.0",
  8266. "symfony/finder": "^6.4|^7.0",
  8267. "symfony/http-client": "^6.4|^7.0",
  8268. "symfony/http-foundation": "^6.4|^7.0",
  8269. "symfony/http-kernel": "^6.4|^7.0",
  8270. "symfony/intl": "^6.4|^7.0",
  8271. "symfony/mime": "^6.4|^7.0",
  8272. "symfony/property-access": "^6.4|^7.0",
  8273. "symfony/property-info": "^6.4|^7.0",
  8274. "symfony/translation": "^6.4.3|^7.0.3",
  8275. "symfony/type-info": "^7.1",
  8276. "symfony/yaml": "^6.4|^7.0"
  8277. },
  8278. "type": "library",
  8279. "autoload": {
  8280. "psr-4": {
  8281. "Symfony\\Component\\Validator\\": ""
  8282. },
  8283. "exclude-from-classmap": [
  8284. "/Tests/",
  8285. "/Resources/bin/"
  8286. ]
  8287. },
  8288. "notification-url": "https://packagist.org/downloads/",
  8289. "license": [
  8290. "MIT"
  8291. ],
  8292. "authors": [
  8293. {
  8294. "name": "Fabien Potencier",
  8295. "email": "fabien@symfony.com"
  8296. },
  8297. {
  8298. "name": "Symfony Community",
  8299. "homepage": "https://symfony.com/contributors"
  8300. }
  8301. ],
  8302. "description": "Provides tools to validate values",
  8303. "homepage": "https://symfony.com",
  8304. "support": {
  8305. "source": "https://github.com/symfony/validator/tree/v7.1.11"
  8306. },
  8307. "funding": [
  8308. {
  8309. "url": "https://symfony.com/sponsor",
  8310. "type": "custom"
  8311. },
  8312. {
  8313. "url": "https://github.com/fabpot",
  8314. "type": "github"
  8315. },
  8316. {
  8317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8318. "type": "tidelift"
  8319. }
  8320. ],
  8321. "time": "2025-01-28T15:50:57+00:00"
  8322. },
  8323. {
  8324. "name": "symfony/var-dumper",
  8325. "version": "v7.1.11",
  8326. "source": {
  8327. "type": "git",
  8328. "url": "https://github.com/symfony/var-dumper.git",
  8329. "reference": "a563c5aeacb98cd46f9885a63cf241ea7794b307"
  8330. },
  8331. "dist": {
  8332. "type": "zip",
  8333. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a563c5aeacb98cd46f9885a63cf241ea7794b307",
  8334. "reference": "a563c5aeacb98cd46f9885a63cf241ea7794b307",
  8335. "shasum": ""
  8336. },
  8337. "require": {
  8338. "php": ">=8.2",
  8339. "symfony/polyfill-mbstring": "~1.0"
  8340. },
  8341. "conflict": {
  8342. "symfony/console": "<6.4"
  8343. },
  8344. "require-dev": {
  8345. "ext-iconv": "*",
  8346. "symfony/console": "^6.4|^7.0",
  8347. "symfony/http-kernel": "^6.4|^7.0",
  8348. "symfony/process": "^6.4|^7.0",
  8349. "symfony/uid": "^6.4|^7.0",
  8350. "twig/twig": "^3.0.4"
  8351. },
  8352. "bin": [
  8353. "Resources/bin/var-dump-server"
  8354. ],
  8355. "type": "library",
  8356. "autoload": {
  8357. "files": [
  8358. "Resources/functions/dump.php"
  8359. ],
  8360. "psr-4": {
  8361. "Symfony\\Component\\VarDumper\\": ""
  8362. },
  8363. "exclude-from-classmap": [
  8364. "/Tests/"
  8365. ]
  8366. },
  8367. "notification-url": "https://packagist.org/downloads/",
  8368. "license": [
  8369. "MIT"
  8370. ],
  8371. "authors": [
  8372. {
  8373. "name": "Nicolas Grekas",
  8374. "email": "p@tchwork.com"
  8375. },
  8376. {
  8377. "name": "Symfony Community",
  8378. "homepage": "https://symfony.com/contributors"
  8379. }
  8380. ],
  8381. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8382. "homepage": "https://symfony.com",
  8383. "keywords": [
  8384. "debug",
  8385. "dump"
  8386. ],
  8387. "support": {
  8388. "source": "https://github.com/symfony/var-dumper/tree/v7.1.11"
  8389. },
  8390. "funding": [
  8391. {
  8392. "url": "https://symfony.com/sponsor",
  8393. "type": "custom"
  8394. },
  8395. {
  8396. "url": "https://github.com/fabpot",
  8397. "type": "github"
  8398. },
  8399. {
  8400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8401. "type": "tidelift"
  8402. }
  8403. ],
  8404. "time": "2025-01-17T11:38:41+00:00"
  8405. },
  8406. {
  8407. "name": "symfony/var-exporter",
  8408. "version": "v7.1.6",
  8409. "source": {
  8410. "type": "git",
  8411. "url": "https://github.com/symfony/var-exporter.git",
  8412. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  8413. },
  8414. "dist": {
  8415. "type": "zip",
  8416. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  8417. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  8418. "shasum": ""
  8419. },
  8420. "require": {
  8421. "php": ">=8.2"
  8422. },
  8423. "require-dev": {
  8424. "symfony/property-access": "^6.4|^7.0",
  8425. "symfony/serializer": "^6.4|^7.0",
  8426. "symfony/var-dumper": "^6.4|^7.0"
  8427. },
  8428. "type": "library",
  8429. "autoload": {
  8430. "psr-4": {
  8431. "Symfony\\Component\\VarExporter\\": ""
  8432. },
  8433. "exclude-from-classmap": [
  8434. "/Tests/"
  8435. ]
  8436. },
  8437. "notification-url": "https://packagist.org/downloads/",
  8438. "license": [
  8439. "MIT"
  8440. ],
  8441. "authors": [
  8442. {
  8443. "name": "Nicolas Grekas",
  8444. "email": "p@tchwork.com"
  8445. },
  8446. {
  8447. "name": "Symfony Community",
  8448. "homepage": "https://symfony.com/contributors"
  8449. }
  8450. ],
  8451. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8452. "homepage": "https://symfony.com",
  8453. "keywords": [
  8454. "clone",
  8455. "construct",
  8456. "export",
  8457. "hydrate",
  8458. "instantiate",
  8459. "lazy-loading",
  8460. "proxy",
  8461. "serialize"
  8462. ],
  8463. "support": {
  8464. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  8465. },
  8466. "funding": [
  8467. {
  8468. "url": "https://symfony.com/sponsor",
  8469. "type": "custom"
  8470. },
  8471. {
  8472. "url": "https://github.com/fabpot",
  8473. "type": "github"
  8474. },
  8475. {
  8476. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8477. "type": "tidelift"
  8478. }
  8479. ],
  8480. "time": "2024-09-25T14:20:29+00:00"
  8481. },
  8482. {
  8483. "name": "symfony/web-link",
  8484. "version": "v7.1.6",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/symfony/web-link.git",
  8488. "reference": "383aa7566f25e3a1ab323732c2cc6a1748120d3a"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/symfony/web-link/zipball/383aa7566f25e3a1ab323732c2cc6a1748120d3a",
  8493. "reference": "383aa7566f25e3a1ab323732c2cc6a1748120d3a",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "php": ">=8.2",
  8498. "psr/link": "^1.1|^2.0"
  8499. },
  8500. "conflict": {
  8501. "symfony/http-kernel": "<6.4"
  8502. },
  8503. "provide": {
  8504. "psr/link-implementation": "1.0|2.0"
  8505. },
  8506. "require-dev": {
  8507. "symfony/http-kernel": "^6.4|^7.0"
  8508. },
  8509. "type": "library",
  8510. "autoload": {
  8511. "psr-4": {
  8512. "Symfony\\Component\\WebLink\\": ""
  8513. },
  8514. "exclude-from-classmap": [
  8515. "/Tests/"
  8516. ]
  8517. },
  8518. "notification-url": "https://packagist.org/downloads/",
  8519. "license": [
  8520. "MIT"
  8521. ],
  8522. "authors": [
  8523. {
  8524. "name": "Kévin Dunglas",
  8525. "email": "dunglas@gmail.com"
  8526. },
  8527. {
  8528. "name": "Symfony Community",
  8529. "homepage": "https://symfony.com/contributors"
  8530. }
  8531. ],
  8532. "description": "Manages links between resources",
  8533. "homepage": "https://symfony.com",
  8534. "keywords": [
  8535. "dns-prefetch",
  8536. "http",
  8537. "http2",
  8538. "link",
  8539. "performance",
  8540. "prefetch",
  8541. "preload",
  8542. "prerender",
  8543. "psr13",
  8544. "push"
  8545. ],
  8546. "support": {
  8547. "source": "https://github.com/symfony/web-link/tree/v7.1.6"
  8548. },
  8549. "funding": [
  8550. {
  8551. "url": "https://symfony.com/sponsor",
  8552. "type": "custom"
  8553. },
  8554. {
  8555. "url": "https://github.com/fabpot",
  8556. "type": "github"
  8557. },
  8558. {
  8559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8560. "type": "tidelift"
  8561. }
  8562. ],
  8563. "time": "2024-09-25T14:20:29+00:00"
  8564. },
  8565. {
  8566. "name": "symfony/workflow",
  8567. "version": "v7.1.6",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/symfony/workflow.git",
  8571. "reference": "b5dca7ecc55ec401939cd101d1a23d64bbce113b"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/symfony/workflow/zipball/b5dca7ecc55ec401939cd101d1a23d64bbce113b",
  8576. "reference": "b5dca7ecc55ec401939cd101d1a23d64bbce113b",
  8577. "shasum": ""
  8578. },
  8579. "require": {
  8580. "php": ">=8.2"
  8581. },
  8582. "conflict": {
  8583. "symfony/event-dispatcher": "<6.4"
  8584. },
  8585. "require-dev": {
  8586. "psr/log": "^1|^2|^3",
  8587. "symfony/dependency-injection": "^6.4|^7.0",
  8588. "symfony/error-handler": "^6.4|^7.0",
  8589. "symfony/event-dispatcher": "^6.4|^7.0",
  8590. "symfony/expression-language": "^6.4|^7.0",
  8591. "symfony/http-kernel": "^6.4|^7.0",
  8592. "symfony/security-core": "^6.4|^7.0",
  8593. "symfony/stopwatch": "^6.4|^7.0",
  8594. "symfony/validator": "^6.4|^7.0"
  8595. },
  8596. "type": "library",
  8597. "autoload": {
  8598. "psr-4": {
  8599. "Symfony\\Component\\Workflow\\": ""
  8600. },
  8601. "exclude-from-classmap": [
  8602. "/Tests/"
  8603. ]
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "license": [
  8607. "MIT"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Fabien Potencier",
  8612. "email": "fabien@symfony.com"
  8613. },
  8614. {
  8615. "name": "Grégoire Pineau",
  8616. "email": "lyrixx@lyrixx.info"
  8617. },
  8618. {
  8619. "name": "Symfony Community",
  8620. "homepage": "https://symfony.com/contributors"
  8621. }
  8622. ],
  8623. "description": "Provides tools for managing a workflow or finite state machine",
  8624. "homepage": "https://symfony.com",
  8625. "keywords": [
  8626. "petrinet",
  8627. "place",
  8628. "state",
  8629. "statemachine",
  8630. "transition",
  8631. "workflow"
  8632. ],
  8633. "support": {
  8634. "source": "https://github.com/symfony/workflow/tree/v7.1.6"
  8635. },
  8636. "funding": [
  8637. {
  8638. "url": "https://symfony.com/sponsor",
  8639. "type": "custom"
  8640. },
  8641. {
  8642. "url": "https://github.com/fabpot",
  8643. "type": "github"
  8644. },
  8645. {
  8646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8647. "type": "tidelift"
  8648. }
  8649. ],
  8650. "time": "2024-09-25T14:20:29+00:00"
  8651. },
  8652. {
  8653. "name": "symfony/yaml",
  8654. "version": "v7.1.11",
  8655. "source": {
  8656. "type": "git",
  8657. "url": "https://github.com/symfony/yaml.git",
  8658. "reference": "4921b8c1db90c13ba2ee0520080ef6800912b018"
  8659. },
  8660. "dist": {
  8661. "type": "zip",
  8662. "url": "https://api.github.com/repos/symfony/yaml/zipball/4921b8c1db90c13ba2ee0520080ef6800912b018",
  8663. "reference": "4921b8c1db90c13ba2ee0520080ef6800912b018",
  8664. "shasum": ""
  8665. },
  8666. "require": {
  8667. "php": ">=8.2",
  8668. "symfony/polyfill-ctype": "^1.8"
  8669. },
  8670. "conflict": {
  8671. "symfony/console": "<6.4"
  8672. },
  8673. "require-dev": {
  8674. "symfony/console": "^6.4|^7.0"
  8675. },
  8676. "bin": [
  8677. "Resources/bin/yaml-lint"
  8678. ],
  8679. "type": "library",
  8680. "autoload": {
  8681. "psr-4": {
  8682. "Symfony\\Component\\Yaml\\": ""
  8683. },
  8684. "exclude-from-classmap": [
  8685. "/Tests/"
  8686. ]
  8687. },
  8688. "notification-url": "https://packagist.org/downloads/",
  8689. "license": [
  8690. "MIT"
  8691. ],
  8692. "authors": [
  8693. {
  8694. "name": "Fabien Potencier",
  8695. "email": "fabien@symfony.com"
  8696. },
  8697. {
  8698. "name": "Symfony Community",
  8699. "homepage": "https://symfony.com/contributors"
  8700. }
  8701. ],
  8702. "description": "Loads and dumps YAML files",
  8703. "homepage": "https://symfony.com",
  8704. "support": {
  8705. "source": "https://github.com/symfony/yaml/tree/v7.1.11"
  8706. },
  8707. "funding": [
  8708. {
  8709. "url": "https://symfony.com/sponsor",
  8710. "type": "custom"
  8711. },
  8712. {
  8713. "url": "https://github.com/fabpot",
  8714. "type": "github"
  8715. },
  8716. {
  8717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8718. "type": "tidelift"
  8719. }
  8720. ],
  8721. "time": "2025-01-07T12:50:05+00:00"
  8722. },
  8723. {
  8724. "name": "twig/extra-bundle",
  8725. "version": "v3.21.0",
  8726. "source": {
  8727. "type": "git",
  8728. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8729. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  8730. },
  8731. "dist": {
  8732. "type": "zip",
  8733. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8734. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8735. "shasum": ""
  8736. },
  8737. "require": {
  8738. "php": ">=8.1.0",
  8739. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8740. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8741. "twig/twig": "^3.2|^4.0"
  8742. },
  8743. "require-dev": {
  8744. "league/commonmark": "^1.0|^2.0",
  8745. "symfony/phpunit-bridge": "^6.4|^7.0",
  8746. "twig/cache-extra": "^3.0",
  8747. "twig/cssinliner-extra": "^3.0",
  8748. "twig/html-extra": "^3.0",
  8749. "twig/inky-extra": "^3.0",
  8750. "twig/intl-extra": "^3.0",
  8751. "twig/markdown-extra": "^3.0",
  8752. "twig/string-extra": "^3.0"
  8753. },
  8754. "type": "symfony-bundle",
  8755. "autoload": {
  8756. "psr-4": {
  8757. "Twig\\Extra\\TwigExtraBundle\\": ""
  8758. },
  8759. "exclude-from-classmap": [
  8760. "/Tests/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "MIT"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Fabien Potencier",
  8770. "email": "fabien@symfony.com",
  8771. "homepage": "http://fabien.potencier.org",
  8772. "role": "Lead Developer"
  8773. }
  8774. ],
  8775. "description": "A Symfony bundle for extra Twig extensions",
  8776. "homepage": "https://twig.symfony.com",
  8777. "keywords": [
  8778. "bundle",
  8779. "extra",
  8780. "twig"
  8781. ],
  8782. "support": {
  8783. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  8784. },
  8785. "funding": [
  8786. {
  8787. "url": "https://github.com/fabpot",
  8788. "type": "github"
  8789. },
  8790. {
  8791. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8792. "type": "tidelift"
  8793. }
  8794. ],
  8795. "time": "2025-02-19T14:29:33+00:00"
  8796. },
  8797. {
  8798. "name": "twig/intl-extra",
  8799. "version": "v3.21.0",
  8800. "source": {
  8801. "type": "git",
  8802. "url": "https://github.com/twigphp/intl-extra.git",
  8803. "reference": "05bc5d46b9df9e62399eae53e7c0b0633298b146"
  8804. },
  8805. "dist": {
  8806. "type": "zip",
  8807. "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/05bc5d46b9df9e62399eae53e7c0b0633298b146",
  8808. "reference": "05bc5d46b9df9e62399eae53e7c0b0633298b146",
  8809. "shasum": ""
  8810. },
  8811. "require": {
  8812. "php": ">=8.1.0",
  8813. "symfony/intl": "^5.4|^6.4|^7.0",
  8814. "twig/twig": "^3.13|^4.0"
  8815. },
  8816. "require-dev": {
  8817. "symfony/phpunit-bridge": "^6.4|^7.0"
  8818. },
  8819. "type": "library",
  8820. "autoload": {
  8821. "psr-4": {
  8822. "Twig\\Extra\\Intl\\": ""
  8823. },
  8824. "exclude-from-classmap": [
  8825. "/Tests/"
  8826. ]
  8827. },
  8828. "notification-url": "https://packagist.org/downloads/",
  8829. "license": [
  8830. "MIT"
  8831. ],
  8832. "authors": [
  8833. {
  8834. "name": "Fabien Potencier",
  8835. "email": "fabien@symfony.com",
  8836. "homepage": "http://fabien.potencier.org",
  8837. "role": "Lead Developer"
  8838. }
  8839. ],
  8840. "description": "A Twig extension for Intl",
  8841. "homepage": "https://twig.symfony.com",
  8842. "keywords": [
  8843. "intl",
  8844. "twig"
  8845. ],
  8846. "support": {
  8847. "source": "https://github.com/twigphp/intl-extra/tree/v3.21.0"
  8848. },
  8849. "funding": [
  8850. {
  8851. "url": "https://github.com/fabpot",
  8852. "type": "github"
  8853. },
  8854. {
  8855. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8856. "type": "tidelift"
  8857. }
  8858. ],
  8859. "time": "2025-01-31T20:45:36+00:00"
  8860. },
  8861. {
  8862. "name": "twig/markdown-extra",
  8863. "version": "v3.21.0",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/twigphp/markdown-extra.git",
  8867. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/f4616e1dd375209dacf6026f846e6b537d036ce4",
  8872. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": ">=8.1.0",
  8877. "symfony/deprecation-contracts": "^2.5|^3",
  8878. "twig/twig": "^3.13|^4.0"
  8879. },
  8880. "require-dev": {
  8881. "erusev/parsedown": "dev-master as 1.x-dev",
  8882. "league/commonmark": "^1.0|^2.0",
  8883. "league/html-to-markdown": "^4.8|^5.0",
  8884. "michelf/php-markdown": "^1.8|^2.0",
  8885. "symfony/phpunit-bridge": "^6.4|^7.0"
  8886. },
  8887. "type": "library",
  8888. "autoload": {
  8889. "files": [
  8890. "Resources/functions.php"
  8891. ],
  8892. "psr-4": {
  8893. "Twig\\Extra\\Markdown\\": ""
  8894. },
  8895. "exclude-from-classmap": [
  8896. "/Tests/"
  8897. ]
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "MIT"
  8902. ],
  8903. "authors": [
  8904. {
  8905. "name": "Fabien Potencier",
  8906. "email": "fabien@symfony.com",
  8907. "homepage": "http://fabien.potencier.org",
  8908. "role": "Lead Developer"
  8909. }
  8910. ],
  8911. "description": "A Twig extension for Markdown",
  8912. "homepage": "https://twig.symfony.com",
  8913. "keywords": [
  8914. "html",
  8915. "markdown",
  8916. "twig"
  8917. ],
  8918. "support": {
  8919. "source": "https://github.com/twigphp/markdown-extra/tree/v3.21.0"
  8920. },
  8921. "funding": [
  8922. {
  8923. "url": "https://github.com/fabpot",
  8924. "type": "github"
  8925. },
  8926. {
  8927. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8928. "type": "tidelift"
  8929. }
  8930. ],
  8931. "time": "2025-01-31T20:45:36+00:00"
  8932. },
  8933. {
  8934. "name": "twig/twig",
  8935. "version": "v3.21.1",
  8936. "source": {
  8937. "type": "git",
  8938. "url": "https://github.com/twigphp/Twig.git",
  8939. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  8940. },
  8941. "dist": {
  8942. "type": "zip",
  8943. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8944. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8945. "shasum": ""
  8946. },
  8947. "require": {
  8948. "php": ">=8.1.0",
  8949. "symfony/deprecation-contracts": "^2.5|^3",
  8950. "symfony/polyfill-ctype": "^1.8",
  8951. "symfony/polyfill-mbstring": "^1.3"
  8952. },
  8953. "require-dev": {
  8954. "phpstan/phpstan": "^2.0",
  8955. "psr/container": "^1.0|^2.0",
  8956. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8957. },
  8958. "type": "library",
  8959. "autoload": {
  8960. "files": [
  8961. "src/Resources/core.php",
  8962. "src/Resources/debug.php",
  8963. "src/Resources/escaper.php",
  8964. "src/Resources/string_loader.php"
  8965. ],
  8966. "psr-4": {
  8967. "Twig\\": "src/"
  8968. }
  8969. },
  8970. "notification-url": "https://packagist.org/downloads/",
  8971. "license": [
  8972. "BSD-3-Clause"
  8973. ],
  8974. "authors": [
  8975. {
  8976. "name": "Fabien Potencier",
  8977. "email": "fabien@symfony.com",
  8978. "homepage": "http://fabien.potencier.org",
  8979. "role": "Lead Developer"
  8980. },
  8981. {
  8982. "name": "Twig Team",
  8983. "role": "Contributors"
  8984. },
  8985. {
  8986. "name": "Armin Ronacher",
  8987. "email": "armin.ronacher@active-4.com",
  8988. "role": "Project Founder"
  8989. }
  8990. ],
  8991. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8992. "homepage": "https://twig.symfony.com",
  8993. "keywords": [
  8994. "templating"
  8995. ],
  8996. "support": {
  8997. "issues": "https://github.com/twigphp/Twig/issues",
  8998. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  8999. },
  9000. "funding": [
  9001. {
  9002. "url": "https://github.com/fabpot",
  9003. "type": "github"
  9004. },
  9005. {
  9006. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9007. "type": "tidelift"
  9008. }
  9009. ],
  9010. "time": "2025-05-03T07:21:55+00:00"
  9011. },
  9012. {
  9013. "name": "webmozart/assert",
  9014. "version": "1.11.0",
  9015. "source": {
  9016. "type": "git",
  9017. "url": "https://github.com/webmozarts/assert.git",
  9018. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9019. },
  9020. "dist": {
  9021. "type": "zip",
  9022. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9023. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9024. "shasum": ""
  9025. },
  9026. "require": {
  9027. "ext-ctype": "*",
  9028. "php": "^7.2 || ^8.0"
  9029. },
  9030. "conflict": {
  9031. "phpstan/phpstan": "<0.12.20",
  9032. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9033. },
  9034. "require-dev": {
  9035. "phpunit/phpunit": "^8.5.13"
  9036. },
  9037. "type": "library",
  9038. "extra": {
  9039. "branch-alias": {
  9040. "dev-master": "1.10-dev"
  9041. }
  9042. },
  9043. "autoload": {
  9044. "psr-4": {
  9045. "Webmozart\\Assert\\": "src/"
  9046. }
  9047. },
  9048. "notification-url": "https://packagist.org/downloads/",
  9049. "license": [
  9050. "MIT"
  9051. ],
  9052. "authors": [
  9053. {
  9054. "name": "Bernhard Schussek",
  9055. "email": "bschussek@gmail.com"
  9056. }
  9057. ],
  9058. "description": "Assertions to validate method input/output with nice error messages.",
  9059. "keywords": [
  9060. "assert",
  9061. "check",
  9062. "validate"
  9063. ],
  9064. "support": {
  9065. "issues": "https://github.com/webmozarts/assert/issues",
  9066. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9067. },
  9068. "time": "2022-06-03T18:03:27+00:00"
  9069. }
  9070. ],
  9071. "packages-dev": [
  9072. {
  9073. "name": "fakerphp/faker",
  9074. "version": "v1.24.1",
  9075. "source": {
  9076. "type": "git",
  9077. "url": "https://github.com/FakerPHP/Faker.git",
  9078. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9079. },
  9080. "dist": {
  9081. "type": "zip",
  9082. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9083. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9084. "shasum": ""
  9085. },
  9086. "require": {
  9087. "php": "^7.4 || ^8.0",
  9088. "psr/container": "^1.0 || ^2.0",
  9089. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9090. },
  9091. "conflict": {
  9092. "fzaninotto/faker": "*"
  9093. },
  9094. "require-dev": {
  9095. "bamarni/composer-bin-plugin": "^1.4.1",
  9096. "doctrine/persistence": "^1.3 || ^2.0",
  9097. "ext-intl": "*",
  9098. "phpunit/phpunit": "^9.5.26",
  9099. "symfony/phpunit-bridge": "^5.4.16"
  9100. },
  9101. "suggest": {
  9102. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9103. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9104. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9105. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9106. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9107. },
  9108. "type": "library",
  9109. "autoload": {
  9110. "psr-4": {
  9111. "Faker\\": "src/Faker/"
  9112. }
  9113. },
  9114. "notification-url": "https://packagist.org/downloads/",
  9115. "license": [
  9116. "MIT"
  9117. ],
  9118. "authors": [
  9119. {
  9120. "name": "François Zaninotto"
  9121. }
  9122. ],
  9123. "description": "Faker is a PHP library that generates fake data for you.",
  9124. "keywords": [
  9125. "data",
  9126. "faker",
  9127. "fixtures"
  9128. ],
  9129. "support": {
  9130. "issues": "https://github.com/FakerPHP/Faker/issues",
  9131. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9132. },
  9133. "time": "2024-11-21T13:46:39+00:00"
  9134. },
  9135. {
  9136. "name": "masterminds/html5",
  9137. "version": "2.9.0",
  9138. "source": {
  9139. "type": "git",
  9140. "url": "https://github.com/Masterminds/html5-php.git",
  9141. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9142. },
  9143. "dist": {
  9144. "type": "zip",
  9145. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9146. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9147. "shasum": ""
  9148. },
  9149. "require": {
  9150. "ext-dom": "*",
  9151. "php": ">=5.3.0"
  9152. },
  9153. "require-dev": {
  9154. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9155. },
  9156. "type": "library",
  9157. "extra": {
  9158. "branch-alias": {
  9159. "dev-master": "2.7-dev"
  9160. }
  9161. },
  9162. "autoload": {
  9163. "psr-4": {
  9164. "Masterminds\\": "src"
  9165. }
  9166. },
  9167. "notification-url": "https://packagist.org/downloads/",
  9168. "license": [
  9169. "MIT"
  9170. ],
  9171. "authors": [
  9172. {
  9173. "name": "Matt Butcher",
  9174. "email": "technosophos@gmail.com"
  9175. },
  9176. {
  9177. "name": "Matt Farina",
  9178. "email": "matt@mattfarina.com"
  9179. },
  9180. {
  9181. "name": "Asmir Mustafic",
  9182. "email": "goetas@gmail.com"
  9183. }
  9184. ],
  9185. "description": "An HTML5 parser and serializer.",
  9186. "homepage": "http://masterminds.github.io/html5-php",
  9187. "keywords": [
  9188. "HTML5",
  9189. "dom",
  9190. "html",
  9191. "parser",
  9192. "querypath",
  9193. "serializer",
  9194. "xml"
  9195. ],
  9196. "support": {
  9197. "issues": "https://github.com/Masterminds/html5-php/issues",
  9198. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9199. },
  9200. "time": "2024-03-31T07:05:07+00:00"
  9201. },
  9202. {
  9203. "name": "myclabs/deep-copy",
  9204. "version": "1.13.1",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/myclabs/DeepCopy.git",
  9208. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
  9213. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "php": "^7.1 || ^8.0"
  9218. },
  9219. "conflict": {
  9220. "doctrine/collections": "<1.6.8",
  9221. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9222. },
  9223. "require-dev": {
  9224. "doctrine/collections": "^1.6.8",
  9225. "doctrine/common": "^2.13.3 || ^3.2.2",
  9226. "phpspec/prophecy": "^1.10",
  9227. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9228. },
  9229. "type": "library",
  9230. "autoload": {
  9231. "files": [
  9232. "src/DeepCopy/deep_copy.php"
  9233. ],
  9234. "psr-4": {
  9235. "DeepCopy\\": "src/DeepCopy/"
  9236. }
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "description": "Create deep copies (clones) of your objects",
  9243. "keywords": [
  9244. "clone",
  9245. "copy",
  9246. "duplicate",
  9247. "object",
  9248. "object graph"
  9249. ],
  9250. "support": {
  9251. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9252. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
  9253. },
  9254. "funding": [
  9255. {
  9256. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9257. "type": "tidelift"
  9258. }
  9259. ],
  9260. "time": "2025-04-29T12:36:36+00:00"
  9261. },
  9262. {
  9263. "name": "nikic/php-parser",
  9264. "version": "v5.5.0",
  9265. "source": {
  9266. "type": "git",
  9267. "url": "https://github.com/nikic/PHP-Parser.git",
  9268. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  9269. },
  9270. "dist": {
  9271. "type": "zip",
  9272. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  9273. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  9274. "shasum": ""
  9275. },
  9276. "require": {
  9277. "ext-ctype": "*",
  9278. "ext-json": "*",
  9279. "ext-tokenizer": "*",
  9280. "php": ">=7.4"
  9281. },
  9282. "require-dev": {
  9283. "ircmaxell/php-yacc": "^0.0.7",
  9284. "phpunit/phpunit": "^9.0"
  9285. },
  9286. "bin": [
  9287. "bin/php-parse"
  9288. ],
  9289. "type": "library",
  9290. "extra": {
  9291. "branch-alias": {
  9292. "dev-master": "5.0-dev"
  9293. }
  9294. },
  9295. "autoload": {
  9296. "psr-4": {
  9297. "PhpParser\\": "lib/PhpParser"
  9298. }
  9299. },
  9300. "notification-url": "https://packagist.org/downloads/",
  9301. "license": [
  9302. "BSD-3-Clause"
  9303. ],
  9304. "authors": [
  9305. {
  9306. "name": "Nikita Popov"
  9307. }
  9308. ],
  9309. "description": "A PHP parser written in PHP",
  9310. "keywords": [
  9311. "parser",
  9312. "php"
  9313. ],
  9314. "support": {
  9315. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9316. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  9317. },
  9318. "time": "2025-05-31T08:24:38+00:00"
  9319. },
  9320. {
  9321. "name": "phar-io/manifest",
  9322. "version": "2.0.4",
  9323. "source": {
  9324. "type": "git",
  9325. "url": "https://github.com/phar-io/manifest.git",
  9326. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9327. },
  9328. "dist": {
  9329. "type": "zip",
  9330. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9331. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9332. "shasum": ""
  9333. },
  9334. "require": {
  9335. "ext-dom": "*",
  9336. "ext-libxml": "*",
  9337. "ext-phar": "*",
  9338. "ext-xmlwriter": "*",
  9339. "phar-io/version": "^3.0.1",
  9340. "php": "^7.2 || ^8.0"
  9341. },
  9342. "type": "library",
  9343. "extra": {
  9344. "branch-alias": {
  9345. "dev-master": "2.0.x-dev"
  9346. }
  9347. },
  9348. "autoload": {
  9349. "classmap": [
  9350. "src/"
  9351. ]
  9352. },
  9353. "notification-url": "https://packagist.org/downloads/",
  9354. "license": [
  9355. "BSD-3-Clause"
  9356. ],
  9357. "authors": [
  9358. {
  9359. "name": "Arne Blankerts",
  9360. "email": "arne@blankerts.de",
  9361. "role": "Developer"
  9362. },
  9363. {
  9364. "name": "Sebastian Heuer",
  9365. "email": "sebastian@phpeople.de",
  9366. "role": "Developer"
  9367. },
  9368. {
  9369. "name": "Sebastian Bergmann",
  9370. "email": "sebastian@phpunit.de",
  9371. "role": "Developer"
  9372. }
  9373. ],
  9374. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9375. "support": {
  9376. "issues": "https://github.com/phar-io/manifest/issues",
  9377. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9378. },
  9379. "funding": [
  9380. {
  9381. "url": "https://github.com/theseer",
  9382. "type": "github"
  9383. }
  9384. ],
  9385. "time": "2024-03-03T12:33:53+00:00"
  9386. },
  9387. {
  9388. "name": "phar-io/version",
  9389. "version": "3.2.1",
  9390. "source": {
  9391. "type": "git",
  9392. "url": "https://github.com/phar-io/version.git",
  9393. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9394. },
  9395. "dist": {
  9396. "type": "zip",
  9397. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9398. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9399. "shasum": ""
  9400. },
  9401. "require": {
  9402. "php": "^7.2 || ^8.0"
  9403. },
  9404. "type": "library",
  9405. "autoload": {
  9406. "classmap": [
  9407. "src/"
  9408. ]
  9409. },
  9410. "notification-url": "https://packagist.org/downloads/",
  9411. "license": [
  9412. "BSD-3-Clause"
  9413. ],
  9414. "authors": [
  9415. {
  9416. "name": "Arne Blankerts",
  9417. "email": "arne@blankerts.de",
  9418. "role": "Developer"
  9419. },
  9420. {
  9421. "name": "Sebastian Heuer",
  9422. "email": "sebastian@phpeople.de",
  9423. "role": "Developer"
  9424. },
  9425. {
  9426. "name": "Sebastian Bergmann",
  9427. "email": "sebastian@phpunit.de",
  9428. "role": "Developer"
  9429. }
  9430. ],
  9431. "description": "Library for handling version information and constraints",
  9432. "support": {
  9433. "issues": "https://github.com/phar-io/version/issues",
  9434. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9435. },
  9436. "time": "2022-02-21T01:04:05+00:00"
  9437. },
  9438. {
  9439. "name": "phpunit/php-code-coverage",
  9440. "version": "9.2.32",
  9441. "source": {
  9442. "type": "git",
  9443. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9444. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9445. },
  9446. "dist": {
  9447. "type": "zip",
  9448. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9449. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9450. "shasum": ""
  9451. },
  9452. "require": {
  9453. "ext-dom": "*",
  9454. "ext-libxml": "*",
  9455. "ext-xmlwriter": "*",
  9456. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9457. "php": ">=7.3",
  9458. "phpunit/php-file-iterator": "^3.0.6",
  9459. "phpunit/php-text-template": "^2.0.4",
  9460. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9461. "sebastian/complexity": "^2.0.3",
  9462. "sebastian/environment": "^5.1.5",
  9463. "sebastian/lines-of-code": "^1.0.4",
  9464. "sebastian/version": "^3.0.2",
  9465. "theseer/tokenizer": "^1.2.3"
  9466. },
  9467. "require-dev": {
  9468. "phpunit/phpunit": "^9.6"
  9469. },
  9470. "suggest": {
  9471. "ext-pcov": "PHP extension that provides line coverage",
  9472. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9473. },
  9474. "type": "library",
  9475. "extra": {
  9476. "branch-alias": {
  9477. "dev-main": "9.2.x-dev"
  9478. }
  9479. },
  9480. "autoload": {
  9481. "classmap": [
  9482. "src/"
  9483. ]
  9484. },
  9485. "notification-url": "https://packagist.org/downloads/",
  9486. "license": [
  9487. "BSD-3-Clause"
  9488. ],
  9489. "authors": [
  9490. {
  9491. "name": "Sebastian Bergmann",
  9492. "email": "sebastian@phpunit.de",
  9493. "role": "lead"
  9494. }
  9495. ],
  9496. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9497. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9498. "keywords": [
  9499. "coverage",
  9500. "testing",
  9501. "xunit"
  9502. ],
  9503. "support": {
  9504. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9505. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9506. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. }
  9513. ],
  9514. "time": "2024-08-22T04:23:01+00:00"
  9515. },
  9516. {
  9517. "name": "phpunit/php-file-iterator",
  9518. "version": "3.0.6",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9522. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9527. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9528. "shasum": ""
  9529. },
  9530. "require": {
  9531. "php": ">=7.3"
  9532. },
  9533. "require-dev": {
  9534. "phpunit/phpunit": "^9.3"
  9535. },
  9536. "type": "library",
  9537. "extra": {
  9538. "branch-alias": {
  9539. "dev-master": "3.0-dev"
  9540. }
  9541. },
  9542. "autoload": {
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de",
  9555. "role": "lead"
  9556. }
  9557. ],
  9558. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9559. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9560. "keywords": [
  9561. "filesystem",
  9562. "iterator"
  9563. ],
  9564. "support": {
  9565. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9566. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9567. },
  9568. "funding": [
  9569. {
  9570. "url": "https://github.com/sebastianbergmann",
  9571. "type": "github"
  9572. }
  9573. ],
  9574. "time": "2021-12-02T12:48:52+00:00"
  9575. },
  9576. {
  9577. "name": "phpunit/php-invoker",
  9578. "version": "3.1.1",
  9579. "source": {
  9580. "type": "git",
  9581. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9582. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9583. },
  9584. "dist": {
  9585. "type": "zip",
  9586. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9587. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9588. "shasum": ""
  9589. },
  9590. "require": {
  9591. "php": ">=7.3"
  9592. },
  9593. "require-dev": {
  9594. "ext-pcntl": "*",
  9595. "phpunit/phpunit": "^9.3"
  9596. },
  9597. "suggest": {
  9598. "ext-pcntl": "*"
  9599. },
  9600. "type": "library",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-master": "3.1-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "classmap": [
  9608. "src/"
  9609. ]
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "BSD-3-Clause"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Sebastian Bergmann",
  9618. "email": "sebastian@phpunit.de",
  9619. "role": "lead"
  9620. }
  9621. ],
  9622. "description": "Invoke callables with a timeout",
  9623. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9624. "keywords": [
  9625. "process"
  9626. ],
  9627. "support": {
  9628. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9629. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9630. },
  9631. "funding": [
  9632. {
  9633. "url": "https://github.com/sebastianbergmann",
  9634. "type": "github"
  9635. }
  9636. ],
  9637. "time": "2020-09-28T05:58:55+00:00"
  9638. },
  9639. {
  9640. "name": "phpunit/php-text-template",
  9641. "version": "2.0.4",
  9642. "source": {
  9643. "type": "git",
  9644. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9645. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9646. },
  9647. "dist": {
  9648. "type": "zip",
  9649. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9650. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9651. "shasum": ""
  9652. },
  9653. "require": {
  9654. "php": ">=7.3"
  9655. },
  9656. "require-dev": {
  9657. "phpunit/phpunit": "^9.3"
  9658. },
  9659. "type": "library",
  9660. "extra": {
  9661. "branch-alias": {
  9662. "dev-master": "2.0-dev"
  9663. }
  9664. },
  9665. "autoload": {
  9666. "classmap": [
  9667. "src/"
  9668. ]
  9669. },
  9670. "notification-url": "https://packagist.org/downloads/",
  9671. "license": [
  9672. "BSD-3-Clause"
  9673. ],
  9674. "authors": [
  9675. {
  9676. "name": "Sebastian Bergmann",
  9677. "email": "sebastian@phpunit.de",
  9678. "role": "lead"
  9679. }
  9680. ],
  9681. "description": "Simple template engine.",
  9682. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9683. "keywords": [
  9684. "template"
  9685. ],
  9686. "support": {
  9687. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9688. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9689. },
  9690. "funding": [
  9691. {
  9692. "url": "https://github.com/sebastianbergmann",
  9693. "type": "github"
  9694. }
  9695. ],
  9696. "time": "2020-10-26T05:33:50+00:00"
  9697. },
  9698. {
  9699. "name": "phpunit/php-timer",
  9700. "version": "5.0.3",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9704. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9709. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": ">=7.3"
  9714. },
  9715. "require-dev": {
  9716. "phpunit/phpunit": "^9.3"
  9717. },
  9718. "type": "library",
  9719. "extra": {
  9720. "branch-alias": {
  9721. "dev-master": "5.0-dev"
  9722. }
  9723. },
  9724. "autoload": {
  9725. "classmap": [
  9726. "src/"
  9727. ]
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "BSD-3-Clause"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Sebastian Bergmann",
  9736. "email": "sebastian@phpunit.de",
  9737. "role": "lead"
  9738. }
  9739. ],
  9740. "description": "Utility class for timing",
  9741. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9742. "keywords": [
  9743. "timer"
  9744. ],
  9745. "support": {
  9746. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9747. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9748. },
  9749. "funding": [
  9750. {
  9751. "url": "https://github.com/sebastianbergmann",
  9752. "type": "github"
  9753. }
  9754. ],
  9755. "time": "2020-10-26T13:16:10+00:00"
  9756. },
  9757. {
  9758. "name": "phpunit/phpunit",
  9759. "version": "9.6.23",
  9760. "source": {
  9761. "type": "git",
  9762. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9763. "reference": "43d2cb18d0675c38bd44982a5d1d88f6d53d8d95"
  9764. },
  9765. "dist": {
  9766. "type": "zip",
  9767. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/43d2cb18d0675c38bd44982a5d1d88f6d53d8d95",
  9768. "reference": "43d2cb18d0675c38bd44982a5d1d88f6d53d8d95",
  9769. "shasum": ""
  9770. },
  9771. "require": {
  9772. "doctrine/instantiator": "^1.5.0 || ^2",
  9773. "ext-dom": "*",
  9774. "ext-json": "*",
  9775. "ext-libxml": "*",
  9776. "ext-mbstring": "*",
  9777. "ext-xml": "*",
  9778. "ext-xmlwriter": "*",
  9779. "myclabs/deep-copy": "^1.13.1",
  9780. "phar-io/manifest": "^2.0.4",
  9781. "phar-io/version": "^3.2.1",
  9782. "php": ">=7.3",
  9783. "phpunit/php-code-coverage": "^9.2.32",
  9784. "phpunit/php-file-iterator": "^3.0.6",
  9785. "phpunit/php-invoker": "^3.1.1",
  9786. "phpunit/php-text-template": "^2.0.4",
  9787. "phpunit/php-timer": "^5.0.3",
  9788. "sebastian/cli-parser": "^1.0.2",
  9789. "sebastian/code-unit": "^1.0.8",
  9790. "sebastian/comparator": "^4.0.8",
  9791. "sebastian/diff": "^4.0.6",
  9792. "sebastian/environment": "^5.1.5",
  9793. "sebastian/exporter": "^4.0.6",
  9794. "sebastian/global-state": "^5.0.7",
  9795. "sebastian/object-enumerator": "^4.0.4",
  9796. "sebastian/resource-operations": "^3.0.4",
  9797. "sebastian/type": "^3.2.1",
  9798. "sebastian/version": "^3.0.2"
  9799. },
  9800. "suggest": {
  9801. "ext-soap": "To be able to generate mocks based on WSDL files",
  9802. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9803. },
  9804. "bin": [
  9805. "phpunit"
  9806. ],
  9807. "type": "library",
  9808. "extra": {
  9809. "branch-alias": {
  9810. "dev-master": "9.6-dev"
  9811. }
  9812. },
  9813. "autoload": {
  9814. "files": [
  9815. "src/Framework/Assert/Functions.php"
  9816. ],
  9817. "classmap": [
  9818. "src/"
  9819. ]
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "BSD-3-Clause"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Sebastian Bergmann",
  9828. "email": "sebastian@phpunit.de",
  9829. "role": "lead"
  9830. }
  9831. ],
  9832. "description": "The PHP Unit Testing framework.",
  9833. "homepage": "https://phpunit.de/",
  9834. "keywords": [
  9835. "phpunit",
  9836. "testing",
  9837. "xunit"
  9838. ],
  9839. "support": {
  9840. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9841. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9842. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.23"
  9843. },
  9844. "funding": [
  9845. {
  9846. "url": "https://phpunit.de/sponsors.html",
  9847. "type": "custom"
  9848. },
  9849. {
  9850. "url": "https://github.com/sebastianbergmann",
  9851. "type": "github"
  9852. },
  9853. {
  9854. "url": "https://liberapay.com/sebastianbergmann",
  9855. "type": "liberapay"
  9856. },
  9857. {
  9858. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9859. "type": "thanks_dev"
  9860. },
  9861. {
  9862. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9863. "type": "tidelift"
  9864. }
  9865. ],
  9866. "time": "2025-05-02T06:40:34+00:00"
  9867. },
  9868. {
  9869. "name": "sebastian/cli-parser",
  9870. "version": "1.0.2",
  9871. "source": {
  9872. "type": "git",
  9873. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9874. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9875. },
  9876. "dist": {
  9877. "type": "zip",
  9878. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9879. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9880. "shasum": ""
  9881. },
  9882. "require": {
  9883. "php": ">=7.3"
  9884. },
  9885. "require-dev": {
  9886. "phpunit/phpunit": "^9.3"
  9887. },
  9888. "type": "library",
  9889. "extra": {
  9890. "branch-alias": {
  9891. "dev-master": "1.0-dev"
  9892. }
  9893. },
  9894. "autoload": {
  9895. "classmap": [
  9896. "src/"
  9897. ]
  9898. },
  9899. "notification-url": "https://packagist.org/downloads/",
  9900. "license": [
  9901. "BSD-3-Clause"
  9902. ],
  9903. "authors": [
  9904. {
  9905. "name": "Sebastian Bergmann",
  9906. "email": "sebastian@phpunit.de",
  9907. "role": "lead"
  9908. }
  9909. ],
  9910. "description": "Library for parsing CLI options",
  9911. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9912. "support": {
  9913. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9914. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9915. },
  9916. "funding": [
  9917. {
  9918. "url": "https://github.com/sebastianbergmann",
  9919. "type": "github"
  9920. }
  9921. ],
  9922. "time": "2024-03-02T06:27:43+00:00"
  9923. },
  9924. {
  9925. "name": "sebastian/code-unit",
  9926. "version": "1.0.8",
  9927. "source": {
  9928. "type": "git",
  9929. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9930. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9931. },
  9932. "dist": {
  9933. "type": "zip",
  9934. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9935. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9936. "shasum": ""
  9937. },
  9938. "require": {
  9939. "php": ">=7.3"
  9940. },
  9941. "require-dev": {
  9942. "phpunit/phpunit": "^9.3"
  9943. },
  9944. "type": "library",
  9945. "extra": {
  9946. "branch-alias": {
  9947. "dev-master": "1.0-dev"
  9948. }
  9949. },
  9950. "autoload": {
  9951. "classmap": [
  9952. "src/"
  9953. ]
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "BSD-3-Clause"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Sebastian Bergmann",
  9962. "email": "sebastian@phpunit.de",
  9963. "role": "lead"
  9964. }
  9965. ],
  9966. "description": "Collection of value objects that represent the PHP code units",
  9967. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9968. "support": {
  9969. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9970. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9971. },
  9972. "funding": [
  9973. {
  9974. "url": "https://github.com/sebastianbergmann",
  9975. "type": "github"
  9976. }
  9977. ],
  9978. "time": "2020-10-26T13:08:54+00:00"
  9979. },
  9980. {
  9981. "name": "sebastian/code-unit-reverse-lookup",
  9982. "version": "2.0.3",
  9983. "source": {
  9984. "type": "git",
  9985. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9986. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9987. },
  9988. "dist": {
  9989. "type": "zip",
  9990. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9991. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9992. "shasum": ""
  9993. },
  9994. "require": {
  9995. "php": ">=7.3"
  9996. },
  9997. "require-dev": {
  9998. "phpunit/phpunit": "^9.3"
  9999. },
  10000. "type": "library",
  10001. "extra": {
  10002. "branch-alias": {
  10003. "dev-master": "2.0-dev"
  10004. }
  10005. },
  10006. "autoload": {
  10007. "classmap": [
  10008. "src/"
  10009. ]
  10010. },
  10011. "notification-url": "https://packagist.org/downloads/",
  10012. "license": [
  10013. "BSD-3-Clause"
  10014. ],
  10015. "authors": [
  10016. {
  10017. "name": "Sebastian Bergmann",
  10018. "email": "sebastian@phpunit.de"
  10019. }
  10020. ],
  10021. "description": "Looks up which function or method a line of code belongs to",
  10022. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10023. "support": {
  10024. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10025. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10026. },
  10027. "funding": [
  10028. {
  10029. "url": "https://github.com/sebastianbergmann",
  10030. "type": "github"
  10031. }
  10032. ],
  10033. "time": "2020-09-28T05:30:19+00:00"
  10034. },
  10035. {
  10036. "name": "sebastian/comparator",
  10037. "version": "4.0.8",
  10038. "source": {
  10039. "type": "git",
  10040. "url": "https://github.com/sebastianbergmann/comparator.git",
  10041. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10042. },
  10043. "dist": {
  10044. "type": "zip",
  10045. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10046. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10047. "shasum": ""
  10048. },
  10049. "require": {
  10050. "php": ">=7.3",
  10051. "sebastian/diff": "^4.0",
  10052. "sebastian/exporter": "^4.0"
  10053. },
  10054. "require-dev": {
  10055. "phpunit/phpunit": "^9.3"
  10056. },
  10057. "type": "library",
  10058. "extra": {
  10059. "branch-alias": {
  10060. "dev-master": "4.0-dev"
  10061. }
  10062. },
  10063. "autoload": {
  10064. "classmap": [
  10065. "src/"
  10066. ]
  10067. },
  10068. "notification-url": "https://packagist.org/downloads/",
  10069. "license": [
  10070. "BSD-3-Clause"
  10071. ],
  10072. "authors": [
  10073. {
  10074. "name": "Sebastian Bergmann",
  10075. "email": "sebastian@phpunit.de"
  10076. },
  10077. {
  10078. "name": "Jeff Welch",
  10079. "email": "whatthejeff@gmail.com"
  10080. },
  10081. {
  10082. "name": "Volker Dusch",
  10083. "email": "github@wallbash.com"
  10084. },
  10085. {
  10086. "name": "Bernhard Schussek",
  10087. "email": "bschussek@2bepublished.at"
  10088. }
  10089. ],
  10090. "description": "Provides the functionality to compare PHP values for equality",
  10091. "homepage": "https://github.com/sebastianbergmann/comparator",
  10092. "keywords": [
  10093. "comparator",
  10094. "compare",
  10095. "equality"
  10096. ],
  10097. "support": {
  10098. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10099. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10100. },
  10101. "funding": [
  10102. {
  10103. "url": "https://github.com/sebastianbergmann",
  10104. "type": "github"
  10105. }
  10106. ],
  10107. "time": "2022-09-14T12:41:17+00:00"
  10108. },
  10109. {
  10110. "name": "sebastian/complexity",
  10111. "version": "2.0.3",
  10112. "source": {
  10113. "type": "git",
  10114. "url": "https://github.com/sebastianbergmann/complexity.git",
  10115. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10116. },
  10117. "dist": {
  10118. "type": "zip",
  10119. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10120. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10121. "shasum": ""
  10122. },
  10123. "require": {
  10124. "nikic/php-parser": "^4.18 || ^5.0",
  10125. "php": ">=7.3"
  10126. },
  10127. "require-dev": {
  10128. "phpunit/phpunit": "^9.3"
  10129. },
  10130. "type": "library",
  10131. "extra": {
  10132. "branch-alias": {
  10133. "dev-master": "2.0-dev"
  10134. }
  10135. },
  10136. "autoload": {
  10137. "classmap": [
  10138. "src/"
  10139. ]
  10140. },
  10141. "notification-url": "https://packagist.org/downloads/",
  10142. "license": [
  10143. "BSD-3-Clause"
  10144. ],
  10145. "authors": [
  10146. {
  10147. "name": "Sebastian Bergmann",
  10148. "email": "sebastian@phpunit.de",
  10149. "role": "lead"
  10150. }
  10151. ],
  10152. "description": "Library for calculating the complexity of PHP code units",
  10153. "homepage": "https://github.com/sebastianbergmann/complexity",
  10154. "support": {
  10155. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10156. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10157. },
  10158. "funding": [
  10159. {
  10160. "url": "https://github.com/sebastianbergmann",
  10161. "type": "github"
  10162. }
  10163. ],
  10164. "time": "2023-12-22T06:19:30+00:00"
  10165. },
  10166. {
  10167. "name": "sebastian/diff",
  10168. "version": "4.0.6",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/sebastianbergmann/diff.git",
  10172. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10177. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10178. "shasum": ""
  10179. },
  10180. "require": {
  10181. "php": ">=7.3"
  10182. },
  10183. "require-dev": {
  10184. "phpunit/phpunit": "^9.3",
  10185. "symfony/process": "^4.2 || ^5"
  10186. },
  10187. "type": "library",
  10188. "extra": {
  10189. "branch-alias": {
  10190. "dev-master": "4.0-dev"
  10191. }
  10192. },
  10193. "autoload": {
  10194. "classmap": [
  10195. "src/"
  10196. ]
  10197. },
  10198. "notification-url": "https://packagist.org/downloads/",
  10199. "license": [
  10200. "BSD-3-Clause"
  10201. ],
  10202. "authors": [
  10203. {
  10204. "name": "Sebastian Bergmann",
  10205. "email": "sebastian@phpunit.de"
  10206. },
  10207. {
  10208. "name": "Kore Nordmann",
  10209. "email": "mail@kore-nordmann.de"
  10210. }
  10211. ],
  10212. "description": "Diff implementation",
  10213. "homepage": "https://github.com/sebastianbergmann/diff",
  10214. "keywords": [
  10215. "diff",
  10216. "udiff",
  10217. "unidiff",
  10218. "unified diff"
  10219. ],
  10220. "support": {
  10221. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10222. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10223. },
  10224. "funding": [
  10225. {
  10226. "url": "https://github.com/sebastianbergmann",
  10227. "type": "github"
  10228. }
  10229. ],
  10230. "time": "2024-03-02T06:30:58+00:00"
  10231. },
  10232. {
  10233. "name": "sebastian/environment",
  10234. "version": "5.1.5",
  10235. "source": {
  10236. "type": "git",
  10237. "url": "https://github.com/sebastianbergmann/environment.git",
  10238. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10239. },
  10240. "dist": {
  10241. "type": "zip",
  10242. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10243. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10244. "shasum": ""
  10245. },
  10246. "require": {
  10247. "php": ">=7.3"
  10248. },
  10249. "require-dev": {
  10250. "phpunit/phpunit": "^9.3"
  10251. },
  10252. "suggest": {
  10253. "ext-posix": "*"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-master": "5.1-dev"
  10259. }
  10260. },
  10261. "autoload": {
  10262. "classmap": [
  10263. "src/"
  10264. ]
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "BSD-3-Clause"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Sebastian Bergmann",
  10273. "email": "sebastian@phpunit.de"
  10274. }
  10275. ],
  10276. "description": "Provides functionality to handle HHVM/PHP environments",
  10277. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10278. "keywords": [
  10279. "Xdebug",
  10280. "environment",
  10281. "hhvm"
  10282. ],
  10283. "support": {
  10284. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10285. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10286. },
  10287. "funding": [
  10288. {
  10289. "url": "https://github.com/sebastianbergmann",
  10290. "type": "github"
  10291. }
  10292. ],
  10293. "time": "2023-02-03T06:03:51+00:00"
  10294. },
  10295. {
  10296. "name": "sebastian/exporter",
  10297. "version": "4.0.6",
  10298. "source": {
  10299. "type": "git",
  10300. "url": "https://github.com/sebastianbergmann/exporter.git",
  10301. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  10302. },
  10303. "dist": {
  10304. "type": "zip",
  10305. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  10306. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  10307. "shasum": ""
  10308. },
  10309. "require": {
  10310. "php": ">=7.3",
  10311. "sebastian/recursion-context": "^4.0"
  10312. },
  10313. "require-dev": {
  10314. "ext-mbstring": "*",
  10315. "phpunit/phpunit": "^9.3"
  10316. },
  10317. "type": "library",
  10318. "extra": {
  10319. "branch-alias": {
  10320. "dev-master": "4.0-dev"
  10321. }
  10322. },
  10323. "autoload": {
  10324. "classmap": [
  10325. "src/"
  10326. ]
  10327. },
  10328. "notification-url": "https://packagist.org/downloads/",
  10329. "license": [
  10330. "BSD-3-Clause"
  10331. ],
  10332. "authors": [
  10333. {
  10334. "name": "Sebastian Bergmann",
  10335. "email": "sebastian@phpunit.de"
  10336. },
  10337. {
  10338. "name": "Jeff Welch",
  10339. "email": "whatthejeff@gmail.com"
  10340. },
  10341. {
  10342. "name": "Volker Dusch",
  10343. "email": "github@wallbash.com"
  10344. },
  10345. {
  10346. "name": "Adam Harvey",
  10347. "email": "aharvey@php.net"
  10348. },
  10349. {
  10350. "name": "Bernhard Schussek",
  10351. "email": "bschussek@gmail.com"
  10352. }
  10353. ],
  10354. "description": "Provides the functionality to export PHP variables for visualization",
  10355. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10356. "keywords": [
  10357. "export",
  10358. "exporter"
  10359. ],
  10360. "support": {
  10361. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10362. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10363. },
  10364. "funding": [
  10365. {
  10366. "url": "https://github.com/sebastianbergmann",
  10367. "type": "github"
  10368. }
  10369. ],
  10370. "time": "2024-03-02T06:33:00+00:00"
  10371. },
  10372. {
  10373. "name": "sebastian/global-state",
  10374. "version": "5.0.7",
  10375. "source": {
  10376. "type": "git",
  10377. "url": "https://github.com/sebastianbergmann/global-state.git",
  10378. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10379. },
  10380. "dist": {
  10381. "type": "zip",
  10382. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10383. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10384. "shasum": ""
  10385. },
  10386. "require": {
  10387. "php": ">=7.3",
  10388. "sebastian/object-reflector": "^2.0",
  10389. "sebastian/recursion-context": "^4.0"
  10390. },
  10391. "require-dev": {
  10392. "ext-dom": "*",
  10393. "phpunit/phpunit": "^9.3"
  10394. },
  10395. "suggest": {
  10396. "ext-uopz": "*"
  10397. },
  10398. "type": "library",
  10399. "extra": {
  10400. "branch-alias": {
  10401. "dev-master": "5.0-dev"
  10402. }
  10403. },
  10404. "autoload": {
  10405. "classmap": [
  10406. "src/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "BSD-3-Clause"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Sebastian Bergmann",
  10416. "email": "sebastian@phpunit.de"
  10417. }
  10418. ],
  10419. "description": "Snapshotting of global state",
  10420. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10421. "keywords": [
  10422. "global state"
  10423. ],
  10424. "support": {
  10425. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10426. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10427. },
  10428. "funding": [
  10429. {
  10430. "url": "https://github.com/sebastianbergmann",
  10431. "type": "github"
  10432. }
  10433. ],
  10434. "time": "2024-03-02T06:35:11+00:00"
  10435. },
  10436. {
  10437. "name": "sebastian/lines-of-code",
  10438. "version": "1.0.4",
  10439. "source": {
  10440. "type": "git",
  10441. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10442. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10443. },
  10444. "dist": {
  10445. "type": "zip",
  10446. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10447. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10448. "shasum": ""
  10449. },
  10450. "require": {
  10451. "nikic/php-parser": "^4.18 || ^5.0",
  10452. "php": ">=7.3"
  10453. },
  10454. "require-dev": {
  10455. "phpunit/phpunit": "^9.3"
  10456. },
  10457. "type": "library",
  10458. "extra": {
  10459. "branch-alias": {
  10460. "dev-master": "1.0-dev"
  10461. }
  10462. },
  10463. "autoload": {
  10464. "classmap": [
  10465. "src/"
  10466. ]
  10467. },
  10468. "notification-url": "https://packagist.org/downloads/",
  10469. "license": [
  10470. "BSD-3-Clause"
  10471. ],
  10472. "authors": [
  10473. {
  10474. "name": "Sebastian Bergmann",
  10475. "email": "sebastian@phpunit.de",
  10476. "role": "lead"
  10477. }
  10478. ],
  10479. "description": "Library for counting the lines of code in PHP source code",
  10480. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10481. "support": {
  10482. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10483. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10484. },
  10485. "funding": [
  10486. {
  10487. "url": "https://github.com/sebastianbergmann",
  10488. "type": "github"
  10489. }
  10490. ],
  10491. "time": "2023-12-22T06:20:34+00:00"
  10492. },
  10493. {
  10494. "name": "sebastian/object-enumerator",
  10495. "version": "4.0.4",
  10496. "source": {
  10497. "type": "git",
  10498. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10499. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10500. },
  10501. "dist": {
  10502. "type": "zip",
  10503. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10504. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10505. "shasum": ""
  10506. },
  10507. "require": {
  10508. "php": ">=7.3",
  10509. "sebastian/object-reflector": "^2.0",
  10510. "sebastian/recursion-context": "^4.0"
  10511. },
  10512. "require-dev": {
  10513. "phpunit/phpunit": "^9.3"
  10514. },
  10515. "type": "library",
  10516. "extra": {
  10517. "branch-alias": {
  10518. "dev-master": "4.0-dev"
  10519. }
  10520. },
  10521. "autoload": {
  10522. "classmap": [
  10523. "src/"
  10524. ]
  10525. },
  10526. "notification-url": "https://packagist.org/downloads/",
  10527. "license": [
  10528. "BSD-3-Clause"
  10529. ],
  10530. "authors": [
  10531. {
  10532. "name": "Sebastian Bergmann",
  10533. "email": "sebastian@phpunit.de"
  10534. }
  10535. ],
  10536. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10537. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10538. "support": {
  10539. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10540. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10541. },
  10542. "funding": [
  10543. {
  10544. "url": "https://github.com/sebastianbergmann",
  10545. "type": "github"
  10546. }
  10547. ],
  10548. "time": "2020-10-26T13:12:34+00:00"
  10549. },
  10550. {
  10551. "name": "sebastian/object-reflector",
  10552. "version": "2.0.4",
  10553. "source": {
  10554. "type": "git",
  10555. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10556. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10557. },
  10558. "dist": {
  10559. "type": "zip",
  10560. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10561. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10562. "shasum": ""
  10563. },
  10564. "require": {
  10565. "php": ">=7.3"
  10566. },
  10567. "require-dev": {
  10568. "phpunit/phpunit": "^9.3"
  10569. },
  10570. "type": "library",
  10571. "extra": {
  10572. "branch-alias": {
  10573. "dev-master": "2.0-dev"
  10574. }
  10575. },
  10576. "autoload": {
  10577. "classmap": [
  10578. "src/"
  10579. ]
  10580. },
  10581. "notification-url": "https://packagist.org/downloads/",
  10582. "license": [
  10583. "BSD-3-Clause"
  10584. ],
  10585. "authors": [
  10586. {
  10587. "name": "Sebastian Bergmann",
  10588. "email": "sebastian@phpunit.de"
  10589. }
  10590. ],
  10591. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10592. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10593. "support": {
  10594. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10595. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10596. },
  10597. "funding": [
  10598. {
  10599. "url": "https://github.com/sebastianbergmann",
  10600. "type": "github"
  10601. }
  10602. ],
  10603. "time": "2020-10-26T13:14:26+00:00"
  10604. },
  10605. {
  10606. "name": "sebastian/recursion-context",
  10607. "version": "4.0.5",
  10608. "source": {
  10609. "type": "git",
  10610. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10611. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10612. },
  10613. "dist": {
  10614. "type": "zip",
  10615. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10616. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10617. "shasum": ""
  10618. },
  10619. "require": {
  10620. "php": ">=7.3"
  10621. },
  10622. "require-dev": {
  10623. "phpunit/phpunit": "^9.3"
  10624. },
  10625. "type": "library",
  10626. "extra": {
  10627. "branch-alias": {
  10628. "dev-master": "4.0-dev"
  10629. }
  10630. },
  10631. "autoload": {
  10632. "classmap": [
  10633. "src/"
  10634. ]
  10635. },
  10636. "notification-url": "https://packagist.org/downloads/",
  10637. "license": [
  10638. "BSD-3-Clause"
  10639. ],
  10640. "authors": [
  10641. {
  10642. "name": "Sebastian Bergmann",
  10643. "email": "sebastian@phpunit.de"
  10644. },
  10645. {
  10646. "name": "Jeff Welch",
  10647. "email": "whatthejeff@gmail.com"
  10648. },
  10649. {
  10650. "name": "Adam Harvey",
  10651. "email": "aharvey@php.net"
  10652. }
  10653. ],
  10654. "description": "Provides functionality to recursively process PHP variables",
  10655. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10656. "support": {
  10657. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10658. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10659. },
  10660. "funding": [
  10661. {
  10662. "url": "https://github.com/sebastianbergmann",
  10663. "type": "github"
  10664. }
  10665. ],
  10666. "time": "2023-02-03T06:07:39+00:00"
  10667. },
  10668. {
  10669. "name": "sebastian/resource-operations",
  10670. "version": "3.0.4",
  10671. "source": {
  10672. "type": "git",
  10673. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10674. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10675. },
  10676. "dist": {
  10677. "type": "zip",
  10678. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10679. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10680. "shasum": ""
  10681. },
  10682. "require": {
  10683. "php": ">=7.3"
  10684. },
  10685. "require-dev": {
  10686. "phpunit/phpunit": "^9.0"
  10687. },
  10688. "type": "library",
  10689. "extra": {
  10690. "branch-alias": {
  10691. "dev-main": "3.0-dev"
  10692. }
  10693. },
  10694. "autoload": {
  10695. "classmap": [
  10696. "src/"
  10697. ]
  10698. },
  10699. "notification-url": "https://packagist.org/downloads/",
  10700. "license": [
  10701. "BSD-3-Clause"
  10702. ],
  10703. "authors": [
  10704. {
  10705. "name": "Sebastian Bergmann",
  10706. "email": "sebastian@phpunit.de"
  10707. }
  10708. ],
  10709. "description": "Provides a list of PHP built-in functions that operate on resources",
  10710. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10711. "support": {
  10712. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10713. },
  10714. "funding": [
  10715. {
  10716. "url": "https://github.com/sebastianbergmann",
  10717. "type": "github"
  10718. }
  10719. ],
  10720. "time": "2024-03-14T16:00:52+00:00"
  10721. },
  10722. {
  10723. "name": "sebastian/type",
  10724. "version": "3.2.1",
  10725. "source": {
  10726. "type": "git",
  10727. "url": "https://github.com/sebastianbergmann/type.git",
  10728. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10729. },
  10730. "dist": {
  10731. "type": "zip",
  10732. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10733. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10734. "shasum": ""
  10735. },
  10736. "require": {
  10737. "php": ">=7.3"
  10738. },
  10739. "require-dev": {
  10740. "phpunit/phpunit": "^9.5"
  10741. },
  10742. "type": "library",
  10743. "extra": {
  10744. "branch-alias": {
  10745. "dev-master": "3.2-dev"
  10746. }
  10747. },
  10748. "autoload": {
  10749. "classmap": [
  10750. "src/"
  10751. ]
  10752. },
  10753. "notification-url": "https://packagist.org/downloads/",
  10754. "license": [
  10755. "BSD-3-Clause"
  10756. ],
  10757. "authors": [
  10758. {
  10759. "name": "Sebastian Bergmann",
  10760. "email": "sebastian@phpunit.de",
  10761. "role": "lead"
  10762. }
  10763. ],
  10764. "description": "Collection of value objects that represent the types of the PHP type system",
  10765. "homepage": "https://github.com/sebastianbergmann/type",
  10766. "support": {
  10767. "issues": "https://github.com/sebastianbergmann/type/issues",
  10768. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10769. },
  10770. "funding": [
  10771. {
  10772. "url": "https://github.com/sebastianbergmann",
  10773. "type": "github"
  10774. }
  10775. ],
  10776. "time": "2023-02-03T06:13:03+00:00"
  10777. },
  10778. {
  10779. "name": "sebastian/version",
  10780. "version": "3.0.2",
  10781. "source": {
  10782. "type": "git",
  10783. "url": "https://github.com/sebastianbergmann/version.git",
  10784. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10785. },
  10786. "dist": {
  10787. "type": "zip",
  10788. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10789. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10790. "shasum": ""
  10791. },
  10792. "require": {
  10793. "php": ">=7.3"
  10794. },
  10795. "type": "library",
  10796. "extra": {
  10797. "branch-alias": {
  10798. "dev-master": "3.0-dev"
  10799. }
  10800. },
  10801. "autoload": {
  10802. "classmap": [
  10803. "src/"
  10804. ]
  10805. },
  10806. "notification-url": "https://packagist.org/downloads/",
  10807. "license": [
  10808. "BSD-3-Clause"
  10809. ],
  10810. "authors": [
  10811. {
  10812. "name": "Sebastian Bergmann",
  10813. "email": "sebastian@phpunit.de",
  10814. "role": "lead"
  10815. }
  10816. ],
  10817. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10818. "homepage": "https://github.com/sebastianbergmann/version",
  10819. "support": {
  10820. "issues": "https://github.com/sebastianbergmann/version/issues",
  10821. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10822. },
  10823. "funding": [
  10824. {
  10825. "url": "https://github.com/sebastianbergmann",
  10826. "type": "github"
  10827. }
  10828. ],
  10829. "time": "2020-09-28T06:39:44+00:00"
  10830. },
  10831. {
  10832. "name": "symfony/browser-kit",
  10833. "version": "v7.1.6",
  10834. "source": {
  10835. "type": "git",
  10836. "url": "https://github.com/symfony/browser-kit.git",
  10837. "reference": "714becc9ba9b20115ffededc58f6b7172dc394cf"
  10838. },
  10839. "dist": {
  10840. "type": "zip",
  10841. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/714becc9ba9b20115ffededc58f6b7172dc394cf",
  10842. "reference": "714becc9ba9b20115ffededc58f6b7172dc394cf",
  10843. "shasum": ""
  10844. },
  10845. "require": {
  10846. "php": ">=8.2",
  10847. "symfony/dom-crawler": "^6.4|^7.0"
  10848. },
  10849. "require-dev": {
  10850. "symfony/css-selector": "^6.4|^7.0",
  10851. "symfony/http-client": "^6.4|^7.0",
  10852. "symfony/mime": "^6.4|^7.0",
  10853. "symfony/process": "^6.4|^7.0"
  10854. },
  10855. "type": "library",
  10856. "autoload": {
  10857. "psr-4": {
  10858. "Symfony\\Component\\BrowserKit\\": ""
  10859. },
  10860. "exclude-from-classmap": [
  10861. "/Tests/"
  10862. ]
  10863. },
  10864. "notification-url": "https://packagist.org/downloads/",
  10865. "license": [
  10866. "MIT"
  10867. ],
  10868. "authors": [
  10869. {
  10870. "name": "Fabien Potencier",
  10871. "email": "fabien@symfony.com"
  10872. },
  10873. {
  10874. "name": "Symfony Community",
  10875. "homepage": "https://symfony.com/contributors"
  10876. }
  10877. ],
  10878. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10879. "homepage": "https://symfony.com",
  10880. "support": {
  10881. "source": "https://github.com/symfony/browser-kit/tree/v7.1.6"
  10882. },
  10883. "funding": [
  10884. {
  10885. "url": "https://symfony.com/sponsor",
  10886. "type": "custom"
  10887. },
  10888. {
  10889. "url": "https://github.com/fabpot",
  10890. "type": "github"
  10891. },
  10892. {
  10893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10894. "type": "tidelift"
  10895. }
  10896. ],
  10897. "time": "2024-10-25T15:11:02+00:00"
  10898. },
  10899. {
  10900. "name": "symfony/css-selector",
  10901. "version": "v7.1.6",
  10902. "source": {
  10903. "type": "git",
  10904. "url": "https://github.com/symfony/css-selector.git",
  10905. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  10906. },
  10907. "dist": {
  10908. "type": "zip",
  10909. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  10910. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  10911. "shasum": ""
  10912. },
  10913. "require": {
  10914. "php": ">=8.2"
  10915. },
  10916. "type": "library",
  10917. "autoload": {
  10918. "psr-4": {
  10919. "Symfony\\Component\\CssSelector\\": ""
  10920. },
  10921. "exclude-from-classmap": [
  10922. "/Tests/"
  10923. ]
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "MIT"
  10928. ],
  10929. "authors": [
  10930. {
  10931. "name": "Fabien Potencier",
  10932. "email": "fabien@symfony.com"
  10933. },
  10934. {
  10935. "name": "Jean-François Simon",
  10936. "email": "jeanfrancois.simon@sensiolabs.com"
  10937. },
  10938. {
  10939. "name": "Symfony Community",
  10940. "homepage": "https://symfony.com/contributors"
  10941. }
  10942. ],
  10943. "description": "Converts CSS selectors to XPath expressions",
  10944. "homepage": "https://symfony.com",
  10945. "support": {
  10946. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  10947. },
  10948. "funding": [
  10949. {
  10950. "url": "https://symfony.com/sponsor",
  10951. "type": "custom"
  10952. },
  10953. {
  10954. "url": "https://github.com/fabpot",
  10955. "type": "github"
  10956. },
  10957. {
  10958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10959. "type": "tidelift"
  10960. }
  10961. ],
  10962. "time": "2024-09-25T14:20:29+00:00"
  10963. },
  10964. {
  10965. "name": "symfony/debug-bundle",
  10966. "version": "v7.1.6",
  10967. "source": {
  10968. "type": "git",
  10969. "url": "https://github.com/symfony/debug-bundle.git",
  10970. "reference": "c91a650aa390071d22dfaf32c2ff77fda27e9583"
  10971. },
  10972. "dist": {
  10973. "type": "zip",
  10974. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/c91a650aa390071d22dfaf32c2ff77fda27e9583",
  10975. "reference": "c91a650aa390071d22dfaf32c2ff77fda27e9583",
  10976. "shasum": ""
  10977. },
  10978. "require": {
  10979. "ext-xml": "*",
  10980. "php": ">=8.2",
  10981. "symfony/dependency-injection": "^6.4|^7.0",
  10982. "symfony/http-kernel": "^6.4|^7.0",
  10983. "symfony/twig-bridge": "^6.4|^7.0",
  10984. "symfony/var-dumper": "^6.4|^7.0"
  10985. },
  10986. "conflict": {
  10987. "symfony/config": "<6.4",
  10988. "symfony/dependency-injection": "<6.4"
  10989. },
  10990. "require-dev": {
  10991. "symfony/config": "^6.4|^7.0",
  10992. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10993. },
  10994. "type": "symfony-bundle",
  10995. "autoload": {
  10996. "psr-4": {
  10997. "Symfony\\Bundle\\DebugBundle\\": ""
  10998. },
  10999. "exclude-from-classmap": [
  11000. "/Tests/"
  11001. ]
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "MIT"
  11006. ],
  11007. "authors": [
  11008. {
  11009. "name": "Fabien Potencier",
  11010. "email": "fabien@symfony.com"
  11011. },
  11012. {
  11013. "name": "Symfony Community",
  11014. "homepage": "https://symfony.com/contributors"
  11015. }
  11016. ],
  11017. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  11018. "homepage": "https://symfony.com",
  11019. "support": {
  11020. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.6"
  11021. },
  11022. "funding": [
  11023. {
  11024. "url": "https://symfony.com/sponsor",
  11025. "type": "custom"
  11026. },
  11027. {
  11028. "url": "https://github.com/fabpot",
  11029. "type": "github"
  11030. },
  11031. {
  11032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11033. "type": "tidelift"
  11034. }
  11035. ],
  11036. "time": "2024-09-25T14:20:29+00:00"
  11037. },
  11038. {
  11039. "name": "symfony/dom-crawler",
  11040. "version": "v7.1.11",
  11041. "source": {
  11042. "type": "git",
  11043. "url": "https://github.com/symfony/dom-crawler.git",
  11044. "reference": "7361d8f7e7eecbca17efe68ca1ee677bf23cfe5a"
  11045. },
  11046. "dist": {
  11047. "type": "zip",
  11048. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/7361d8f7e7eecbca17efe68ca1ee677bf23cfe5a",
  11049. "reference": "7361d8f7e7eecbca17efe68ca1ee677bf23cfe5a",
  11050. "shasum": ""
  11051. },
  11052. "require": {
  11053. "masterminds/html5": "^2.6",
  11054. "php": ">=8.2",
  11055. "symfony/polyfill-ctype": "~1.8",
  11056. "symfony/polyfill-mbstring": "~1.0"
  11057. },
  11058. "require-dev": {
  11059. "symfony/css-selector": "^6.4|^7.0"
  11060. },
  11061. "type": "library",
  11062. "autoload": {
  11063. "psr-4": {
  11064. "Symfony\\Component\\DomCrawler\\": ""
  11065. },
  11066. "exclude-from-classmap": [
  11067. "/Tests/"
  11068. ]
  11069. },
  11070. "notification-url": "https://packagist.org/downloads/",
  11071. "license": [
  11072. "MIT"
  11073. ],
  11074. "authors": [
  11075. {
  11076. "name": "Fabien Potencier",
  11077. "email": "fabien@symfony.com"
  11078. },
  11079. {
  11080. "name": "Symfony Community",
  11081. "homepage": "https://symfony.com/contributors"
  11082. }
  11083. ],
  11084. "description": "Eases DOM navigation for HTML and XML documents",
  11085. "homepage": "https://symfony.com",
  11086. "support": {
  11087. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.11"
  11088. },
  11089. "funding": [
  11090. {
  11091. "url": "https://symfony.com/sponsor",
  11092. "type": "custom"
  11093. },
  11094. {
  11095. "url": "https://github.com/fabpot",
  11096. "type": "github"
  11097. },
  11098. {
  11099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11100. "type": "tidelift"
  11101. }
  11102. ],
  11103. "time": "2025-01-27T10:57:12+00:00"
  11104. },
  11105. {
  11106. "name": "symfony/maker-bundle",
  11107. "version": "v1.63.0",
  11108. "source": {
  11109. "type": "git",
  11110. "url": "https://github.com/symfony/maker-bundle.git",
  11111. "reference": "69478ab39bc303abfbe3293006a78b09a8512425"
  11112. },
  11113. "dist": {
  11114. "type": "zip",
  11115. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/69478ab39bc303abfbe3293006a78b09a8512425",
  11116. "reference": "69478ab39bc303abfbe3293006a78b09a8512425",
  11117. "shasum": ""
  11118. },
  11119. "require": {
  11120. "doctrine/inflector": "^2.0",
  11121. "nikic/php-parser": "^5.0",
  11122. "php": ">=8.1",
  11123. "symfony/config": "^6.4|^7.0",
  11124. "symfony/console": "^6.4|^7.0",
  11125. "symfony/dependency-injection": "^6.4|^7.0",
  11126. "symfony/deprecation-contracts": "^2.2|^3",
  11127. "symfony/filesystem": "^6.4|^7.0",
  11128. "symfony/finder": "^6.4|^7.0",
  11129. "symfony/framework-bundle": "^6.4|^7.0",
  11130. "symfony/http-kernel": "^6.4|^7.0",
  11131. "symfony/process": "^6.4|^7.0"
  11132. },
  11133. "conflict": {
  11134. "doctrine/doctrine-bundle": "<2.10",
  11135. "doctrine/orm": "<2.15"
  11136. },
  11137. "require-dev": {
  11138. "composer/semver": "^3.0",
  11139. "doctrine/doctrine-bundle": "^2.5.0",
  11140. "doctrine/orm": "^2.15|^3",
  11141. "symfony/http-client": "^6.4|^7.0",
  11142. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  11143. "symfony/security-core": "^6.4|^7.0",
  11144. "symfony/yaml": "^6.4|^7.0",
  11145. "twig/twig": "^3.0|^4.x-dev"
  11146. },
  11147. "type": "symfony-bundle",
  11148. "extra": {
  11149. "branch-alias": {
  11150. "dev-main": "1.x-dev"
  11151. }
  11152. },
  11153. "autoload": {
  11154. "psr-4": {
  11155. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11156. }
  11157. },
  11158. "notification-url": "https://packagist.org/downloads/",
  11159. "license": [
  11160. "MIT"
  11161. ],
  11162. "authors": [
  11163. {
  11164. "name": "Symfony Community",
  11165. "homepage": "https://symfony.com/contributors"
  11166. }
  11167. ],
  11168. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11169. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11170. "keywords": [
  11171. "code generator",
  11172. "dev",
  11173. "generator",
  11174. "scaffold",
  11175. "scaffolding"
  11176. ],
  11177. "support": {
  11178. "issues": "https://github.com/symfony/maker-bundle/issues",
  11179. "source": "https://github.com/symfony/maker-bundle/tree/v1.63.0"
  11180. },
  11181. "funding": [
  11182. {
  11183. "url": "https://symfony.com/sponsor",
  11184. "type": "custom"
  11185. },
  11186. {
  11187. "url": "https://github.com/fabpot",
  11188. "type": "github"
  11189. },
  11190. {
  11191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11192. "type": "tidelift"
  11193. }
  11194. ],
  11195. "time": "2025-04-26T01:41:37+00:00"
  11196. },
  11197. {
  11198. "name": "symfony/phpunit-bridge",
  11199. "version": "v7.3.0",
  11200. "source": {
  11201. "type": "git",
  11202. "url": "https://github.com/symfony/phpunit-bridge.git",
  11203. "reference": "2eabda563921f21cbce1d1e3247b3c36568905e6"
  11204. },
  11205. "dist": {
  11206. "type": "zip",
  11207. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/2eabda563921f21cbce1d1e3247b3c36568905e6",
  11208. "reference": "2eabda563921f21cbce1d1e3247b3c36568905e6",
  11209. "shasum": ""
  11210. },
  11211. "require": {
  11212. "php": ">=7.2.5"
  11213. },
  11214. "conflict": {
  11215. "phpunit/phpunit": "<7.5|9.1.2"
  11216. },
  11217. "require-dev": {
  11218. "symfony/deprecation-contracts": "^2.5|^3.0",
  11219. "symfony/error-handler": "^5.4|^6.4|^7.0",
  11220. "symfony/polyfill-php81": "^1.27"
  11221. },
  11222. "bin": [
  11223. "bin/simple-phpunit"
  11224. ],
  11225. "type": "symfony-bridge",
  11226. "extra": {
  11227. "thanks": {
  11228. "url": "https://github.com/sebastianbergmann/phpunit",
  11229. "name": "phpunit/phpunit"
  11230. }
  11231. },
  11232. "autoload": {
  11233. "files": [
  11234. "bootstrap.php"
  11235. ],
  11236. "psr-4": {
  11237. "Symfony\\Bridge\\PhpUnit\\": ""
  11238. },
  11239. "exclude-from-classmap": [
  11240. "/Tests/",
  11241. "/bin/"
  11242. ]
  11243. },
  11244. "notification-url": "https://packagist.org/downloads/",
  11245. "license": [
  11246. "MIT"
  11247. ],
  11248. "authors": [
  11249. {
  11250. "name": "Nicolas Grekas",
  11251. "email": "p@tchwork.com"
  11252. },
  11253. {
  11254. "name": "Symfony Community",
  11255. "homepage": "https://symfony.com/contributors"
  11256. }
  11257. ],
  11258. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  11259. "homepage": "https://symfony.com",
  11260. "support": {
  11261. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.3.0"
  11262. },
  11263. "funding": [
  11264. {
  11265. "url": "https://symfony.com/sponsor",
  11266. "type": "custom"
  11267. },
  11268. {
  11269. "url": "https://github.com/fabpot",
  11270. "type": "github"
  11271. },
  11272. {
  11273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11274. "type": "tidelift"
  11275. }
  11276. ],
  11277. "time": "2025-05-23T07:26:30+00:00"
  11278. },
  11279. {
  11280. "name": "symfony/web-profiler-bundle",
  11281. "version": "v7.1.11",
  11282. "source": {
  11283. "type": "git",
  11284. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11285. "reference": "328b2728bb5d85d0d38b18d1458834098202afe2"
  11286. },
  11287. "dist": {
  11288. "type": "zip",
  11289. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/328b2728bb5d85d0d38b18d1458834098202afe2",
  11290. "reference": "328b2728bb5d85d0d38b18d1458834098202afe2",
  11291. "shasum": ""
  11292. },
  11293. "require": {
  11294. "php": ">=8.2",
  11295. "symfony/config": "^6.4|^7.0",
  11296. "symfony/framework-bundle": "^6.4|^7.0",
  11297. "symfony/http-kernel": "^6.4|^7.0",
  11298. "symfony/routing": "^6.4|^7.0",
  11299. "symfony/twig-bundle": "^6.4|^7.0",
  11300. "twig/twig": "^3.10"
  11301. },
  11302. "conflict": {
  11303. "symfony/form": "<6.4",
  11304. "symfony/mailer": "<6.4",
  11305. "symfony/messenger": "<6.4"
  11306. },
  11307. "require-dev": {
  11308. "symfony/browser-kit": "^6.4|^7.0",
  11309. "symfony/console": "^6.4|^7.0",
  11310. "symfony/css-selector": "^6.4|^7.0",
  11311. "symfony/stopwatch": "^6.4|^7.0"
  11312. },
  11313. "type": "symfony-bundle",
  11314. "autoload": {
  11315. "psr-4": {
  11316. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11317. },
  11318. "exclude-from-classmap": [
  11319. "/Tests/"
  11320. ]
  11321. },
  11322. "notification-url": "https://packagist.org/downloads/",
  11323. "license": [
  11324. "MIT"
  11325. ],
  11326. "authors": [
  11327. {
  11328. "name": "Fabien Potencier",
  11329. "email": "fabien@symfony.com"
  11330. },
  11331. {
  11332. "name": "Symfony Community",
  11333. "homepage": "https://symfony.com/contributors"
  11334. }
  11335. ],
  11336. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11337. "homepage": "https://symfony.com",
  11338. "keywords": [
  11339. "dev"
  11340. ],
  11341. "support": {
  11342. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.11"
  11343. },
  11344. "funding": [
  11345. {
  11346. "url": "https://symfony.com/sponsor",
  11347. "type": "custom"
  11348. },
  11349. {
  11350. "url": "https://github.com/fabpot",
  11351. "type": "github"
  11352. },
  11353. {
  11354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11355. "type": "tidelift"
  11356. }
  11357. ],
  11358. "time": "2025-01-07T09:23:14+00:00"
  11359. },
  11360. {
  11361. "name": "theseer/tokenizer",
  11362. "version": "1.2.3",
  11363. "source": {
  11364. "type": "git",
  11365. "url": "https://github.com/theseer/tokenizer.git",
  11366. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11367. },
  11368. "dist": {
  11369. "type": "zip",
  11370. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11371. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11372. "shasum": ""
  11373. },
  11374. "require": {
  11375. "ext-dom": "*",
  11376. "ext-tokenizer": "*",
  11377. "ext-xmlwriter": "*",
  11378. "php": "^7.2 || ^8.0"
  11379. },
  11380. "type": "library",
  11381. "autoload": {
  11382. "classmap": [
  11383. "src/"
  11384. ]
  11385. },
  11386. "notification-url": "https://packagist.org/downloads/",
  11387. "license": [
  11388. "BSD-3-Clause"
  11389. ],
  11390. "authors": [
  11391. {
  11392. "name": "Arne Blankerts",
  11393. "email": "arne@blankerts.de",
  11394. "role": "Developer"
  11395. }
  11396. ],
  11397. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11398. "support": {
  11399. "issues": "https://github.com/theseer/tokenizer/issues",
  11400. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11401. },
  11402. "funding": [
  11403. {
  11404. "url": "https://github.com/theseer",
  11405. "type": "github"
  11406. }
  11407. ],
  11408. "time": "2024-03-03T12:36:25+00:00"
  11409. }
  11410. ],
  11411. "aliases": [],
  11412. "minimum-stability": "stable",
  11413. "stability-flags": {},
  11414. "prefer-stable": true,
  11415. "prefer-lowest": false,
  11416. "platform": {
  11417. "php": ">=8.2",
  11418. "ext-ctype": "*",
  11419. "ext-iconv": "*"
  11420. },
  11421. "platform-dev": {},
  11422. "plugin-api-version": "2.6.0"
  11423. }