composer.lock 379 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400
  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": "d570c6f81e8a1c1cafe6e8eaf7957800",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  62. },
  63. "time": "2025-03-13T08:50:04+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "composer/installers",
  127. "version": "v1.12.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/composer/installers.git",
  131. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  136. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "composer-plugin-api": "^1.0 || ^2.0"
  141. },
  142. "replace": {
  143. "roundcube/plugin-installer": "*",
  144. "shama/baton": "*"
  145. },
  146. "require-dev": {
  147. "composer/composer": "1.6.* || ^2.0",
  148. "composer/semver": "^1 || ^3",
  149. "phpstan/phpstan": "^0.12.55",
  150. "phpstan/phpstan-phpunit": "^0.12.16",
  151. "symfony/phpunit-bridge": "^4.2 || ^5",
  152. "symfony/process": "^2.3"
  153. },
  154. "type": "composer-plugin",
  155. "extra": {
  156. "class": "Composer\\Installers\\Plugin",
  157. "branch-alias": {
  158. "dev-main": "1.x-dev"
  159. }
  160. },
  161. "autoload": {
  162. "psr-4": {
  163. "Composer\\Installers\\": "src/Composer/Installers"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Kyle Robinson Young",
  173. "email": "kyle@dontkry.com",
  174. "homepage": "https://github.com/shama"
  175. }
  176. ],
  177. "description": "A multi-framework Composer library installer",
  178. "homepage": "https://composer.github.io/installers/",
  179. "keywords": [
  180. "Craft",
  181. "Dolibarr",
  182. "Eliasis",
  183. "Hurad",
  184. "ImageCMS",
  185. "Kanboard",
  186. "Lan Management System",
  187. "MODX Evo",
  188. "MantisBT",
  189. "Mautic",
  190. "Maya",
  191. "OXID",
  192. "Plentymarkets",
  193. "Porto",
  194. "RadPHP",
  195. "SMF",
  196. "Starbug",
  197. "Thelia",
  198. "Whmcs",
  199. "WolfCMS",
  200. "agl",
  201. "aimeos",
  202. "annotatecms",
  203. "attogram",
  204. "bitrix",
  205. "cakephp",
  206. "chef",
  207. "cockpit",
  208. "codeigniter",
  209. "concrete5",
  210. "croogo",
  211. "dokuwiki",
  212. "drupal",
  213. "eZ Platform",
  214. "elgg",
  215. "expressionengine",
  216. "fuelphp",
  217. "grav",
  218. "installer",
  219. "itop",
  220. "joomla",
  221. "known",
  222. "kohana",
  223. "laravel",
  224. "lavalite",
  225. "lithium",
  226. "magento",
  227. "majima",
  228. "mako",
  229. "mediawiki",
  230. "miaoxing",
  231. "modulework",
  232. "modx",
  233. "moodle",
  234. "osclass",
  235. "pantheon",
  236. "phpbb",
  237. "piwik",
  238. "ppi",
  239. "processwire",
  240. "puppet",
  241. "pxcms",
  242. "reindex",
  243. "roundcube",
  244. "shopware",
  245. "silverstripe",
  246. "sydes",
  247. "sylius",
  248. "symfony",
  249. "tastyigniter",
  250. "typo3",
  251. "wordpress",
  252. "yawik",
  253. "zend",
  254. "zikula"
  255. ],
  256. "support": {
  257. "issues": "https://github.com/composer/installers/issues",
  258. "source": "https://github.com/composer/installers/tree/v1.12.0"
  259. },
  260. "funding": [
  261. {
  262. "url": "https://packagist.com",
  263. "type": "custom"
  264. },
  265. {
  266. "url": "https://github.com/composer",
  267. "type": "github"
  268. },
  269. {
  270. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  271. "type": "tidelift"
  272. }
  273. ],
  274. "time": "2021-09-13T08:19:44+00:00"
  275. },
  276. {
  277. "name": "composer/semver",
  278. "version": "3.4.4",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/semver.git",
  282. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  287. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "php": "^5.3.2 || ^7.0 || ^8.0"
  292. },
  293. "require-dev": {
  294. "phpstan/phpstan": "^1.11",
  295. "symfony/phpunit-bridge": "^3 || ^7"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-main": "3.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-4": {
  305. "Composer\\Semver\\": "src"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Nils Adermann",
  315. "email": "naderman@naderman.de",
  316. "homepage": "http://www.naderman.de"
  317. },
  318. {
  319. "name": "Jordi Boggiano",
  320. "email": "j.boggiano@seld.be",
  321. "homepage": "http://seld.be"
  322. },
  323. {
  324. "name": "Rob Bast",
  325. "email": "rob.bast@gmail.com",
  326. "homepage": "http://robbast.nl"
  327. }
  328. ],
  329. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  330. "keywords": [
  331. "semantic",
  332. "semver",
  333. "validation",
  334. "versioning"
  335. ],
  336. "support": {
  337. "irc": "ircs://irc.libera.chat:6697/composer",
  338. "issues": "https://github.com/composer/semver/issues",
  339. "source": "https://github.com/composer/semver/tree/3.4.4"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://packagist.com",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://github.com/composer",
  348. "type": "github"
  349. }
  350. ],
  351. "time": "2025-08-20T19:15:30+00:00"
  352. },
  353. {
  354. "name": "consolidation/annotated-command",
  355. "version": "4.10.5",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/consolidation/annotated-command.git",
  359. "reference": "78abf3b6853d7ff9044babd2b9c002ff433207d8"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/78abf3b6853d7ff9044babd2b9c002ff433207d8",
  364. "reference": "78abf3b6853d7ff9044babd2b9c002ff433207d8",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "consolidation/output-formatters": "^4.3.1",
  369. "php": ">=7.1.3",
  370. "psr/log": "^1 || ^2 || ^3",
  371. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7 || ^8",
  372. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7 || ^8",
  373. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7 || ^8"
  374. },
  375. "require-dev": {
  376. "composer-runtime-api": "^2.0",
  377. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  378. "squizlabs/php_codesniffer": "^3",
  379. "yoast/phpunit-polyfills": "^0.2.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-main": "4.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Consolidation\\AnnotatedCommand\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Greg Anderson",
  399. "email": "greg.1.anderson@greenknowe.org"
  400. }
  401. ],
  402. "description": "Initialize Symfony Console commands from annotated command class methods.",
  403. "support": {
  404. "issues": "https://github.com/consolidation/annotated-command/issues",
  405. "source": "https://github.com/consolidation/annotated-command/tree/4.10.5"
  406. },
  407. "time": "2026-03-29T00:50:52+00:00"
  408. },
  409. {
  410. "name": "consolidation/config",
  411. "version": "3.2.1",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/consolidation/config.git",
  415. "reference": "adcb989d789f7e0984121492b0377a1def3a6dc8"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/consolidation/config/zipball/adcb989d789f7e0984121492b0377a1def3a6dc8",
  420. "reference": "adcb989d789f7e0984121492b0377a1def3a6dc8",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "dflydev/dot-access-data": "^3",
  425. "grasmash/expander": "^3",
  426. "php": ">=8.2.0",
  427. "symfony/event-dispatcher": "^6 || ^7 || ^8"
  428. },
  429. "require-dev": {
  430. "ext-json": "*",
  431. "phpunit/phpunit": "^9",
  432. "squizlabs/php_codesniffer": "^3",
  433. "symfony/console": "^7.4 || ^8",
  434. "symfony/yaml": "^7 || ^8",
  435. "yoast/phpunit-polyfills": "^1"
  436. },
  437. "suggest": {
  438. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  439. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  440. },
  441. "type": "library",
  442. "extra": {
  443. "branch-alias": {
  444. "dev-main": "3.x-dev"
  445. }
  446. },
  447. "autoload": {
  448. "psr-4": {
  449. "Consolidation\\Config\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Greg Anderson",
  459. "email": "greg.1.anderson@greenknowe.org"
  460. }
  461. ],
  462. "description": "Provide configuration services for a commandline tool.",
  463. "support": {
  464. "issues": "https://github.com/consolidation/config/issues",
  465. "source": "https://github.com/consolidation/config/tree/3.2.1"
  466. },
  467. "time": "2026-03-28T23:38:17+00:00"
  468. },
  469. {
  470. "name": "consolidation/filter-via-dot-access-data",
  471. "version": "2.0.3",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  475. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  480. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  485. "php": ">=7.1.3"
  486. },
  487. "require-dev": {
  488. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  489. "squizlabs/php_codesniffer": "^3",
  490. "yoast/phpunit-polyfills": "^0.2.0"
  491. },
  492. "type": "library",
  493. "extra": {
  494. "branch-alias": {
  495. "dev-main": "2.x-dev"
  496. }
  497. },
  498. "autoload": {
  499. "psr-4": {
  500. "Consolidation\\Filter\\": "src"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Greg Anderson",
  510. "email": "greg.1.anderson@greenknowe.org"
  511. }
  512. ],
  513. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  514. "support": {
  515. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  516. },
  517. "time": "2025-11-14T21:01:06+00:00"
  518. },
  519. {
  520. "name": "consolidation/log",
  521. "version": "3.1.2",
  522. "source": {
  523. "type": "git",
  524. "url": "https://github.com/consolidation/log.git",
  525. "reference": "a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6"
  526. },
  527. "dist": {
  528. "type": "zip",
  529. "url": "https://api.github.com/repos/consolidation/log/zipball/a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6",
  530. "reference": "a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6",
  531. "shasum": ""
  532. },
  533. "require": {
  534. "php": ">=8.0.0",
  535. "psr/log": "^3",
  536. "symfony/console": "^5 || ^6 || ^7 || ^8"
  537. },
  538. "require-dev": {
  539. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  540. "squizlabs/php_codesniffer": "^3",
  541. "yoast/phpunit-polyfills": "^0.2.0"
  542. },
  543. "type": "library",
  544. "extra": {
  545. "platform": {
  546. "php": "8.2.17"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "Consolidation\\Log\\": "src"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Greg Anderson",
  561. "email": "greg.1.anderson@greenknowe.org"
  562. }
  563. ],
  564. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  565. "support": {
  566. "issues": "https://github.com/consolidation/log/issues",
  567. "source": "https://github.com/consolidation/log/tree/3.1.2"
  568. },
  569. "time": "2026-03-28T23:36:49+00:00"
  570. },
  571. {
  572. "name": "consolidation/output-formatters",
  573. "version": "4.7.1",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/consolidation/output-formatters.git",
  577. "reference": "a112df9a74854c8438b33b334ed619fa43edf31a"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a112df9a74854c8438b33b334ed619fa43edf31a",
  582. "reference": "a112df9a74854c8438b33b334ed619fa43edf31a",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  587. "php": ">=7.1.3",
  588. "symfony/console": "^4 || ^5 || ^6 || ^7 || ^8",
  589. "symfony/finder": "^4 || ^5 || ^6 || ^7 || ^8"
  590. },
  591. "require-dev": {
  592. "php-coveralls/php-coveralls": "^2.4.2",
  593. "phpunit/phpunit": "^7 || ^8 || ^9",
  594. "squizlabs/php_codesniffer": "^3",
  595. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7 || ^8",
  596. "symfony/yaml": "^4 || ^5 || ^6 || ^7 || ^8",
  597. "yoast/phpunit-polyfills": "^1"
  598. },
  599. "suggest": {
  600. "symfony/var-dumper": "For using the var_dump formatter"
  601. },
  602. "type": "library",
  603. "autoload": {
  604. "psr-4": {
  605. "Consolidation\\OutputFormatters\\": "src"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Greg Anderson",
  615. "email": "greg.1.anderson@greenknowe.org"
  616. }
  617. ],
  618. "description": "Format text by applying transformations provided by plug-in formatters.",
  619. "support": {
  620. "issues": "https://github.com/consolidation/output-formatters/issues",
  621. "source": "https://github.com/consolidation/output-formatters/tree/4.7.1"
  622. },
  623. "time": "2026-03-28T23:34:39+00:00"
  624. },
  625. {
  626. "name": "consolidation/robo",
  627. "version": "5.1.1",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/consolidation/robo.git",
  631. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/consolidation/robo/zipball/6d02c7d800b5e1a3a8977ae74d23bce723486025",
  636. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "consolidation/annotated-command": "^4.8.1",
  641. "consolidation/config": "^3",
  642. "consolidation/log": "^3",
  643. "consolidation/output-formatters": "^4.1.2",
  644. "league/container": "^3.3.1 || ^4.0",
  645. "php": ">=8.2",
  646. "phpowermove/docblock": "^4.0",
  647. "symfony/console": "^6 || ^7",
  648. "symfony/event-dispatcher": "^6 || ^7",
  649. "symfony/filesystem": "^6 || ^7",
  650. "symfony/finder": "^6 || ^7",
  651. "symfony/process": "^6 || ^7",
  652. "symfony/yaml": "^6 || ^7"
  653. },
  654. "conflict": {
  655. "codegyre/robo": "*"
  656. },
  657. "require-dev": {
  658. "natxet/cssmin": "3.0.4",
  659. "patchwork/jsqueeze": "^2",
  660. "pear/archive_tar": "^1.4.4",
  661. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3.6",
  663. "yoast/phpunit-polyfills": "^0.2.0"
  664. },
  665. "suggest": {
  666. "consolidation/self-update": "For self-updating a phar-based app built with Robo",
  667. "natxet/cssmin": "For minifying CSS files in taskMinify",
  668. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  669. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  670. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  671. },
  672. "bin": [
  673. "robo"
  674. ],
  675. "type": "library",
  676. "autoload": {
  677. "psr-4": {
  678. "Robo\\": "src"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Davert",
  688. "email": "davert.php@resend.cc"
  689. }
  690. ],
  691. "description": "Modern task runner",
  692. "support": {
  693. "issues": "https://github.com/consolidation/robo/issues",
  694. "source": "https://github.com/consolidation/robo/tree/5.1.1"
  695. },
  696. "time": "2025-11-14T23:30:05+00:00"
  697. },
  698. {
  699. "name": "consolidation/site-alias",
  700. "version": "4.1.3",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/consolidation/site-alias.git",
  704. "reference": "7e1364aec7be0be23bb45799045fd9838a93f2ad"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/7e1364aec7be0be23bb45799045fd9838a93f2ad",
  709. "reference": "7e1364aec7be0be23bb45799045fd9838a93f2ad",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "consolidation/config": "^1.2.1 || ^2 || ^3",
  714. "php": ">=7.4",
  715. "symfony/filesystem": "^5.4 || ^6 || ^7 || ^8",
  716. "symfony/finder": "^5 || ^6 || ^7 || ^8"
  717. },
  718. "require-dev": {
  719. "php-coveralls/php-coveralls": "^2.4.2",
  720. "phpunit/phpunit": ">=7",
  721. "squizlabs/php_codesniffer": "^3",
  722. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7 || ^8",
  723. "yoast/phpunit-polyfills": "^0.2.0"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-main": "4.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "Consolidation\\SiteAlias\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Greg Anderson",
  743. "email": "greg.1.anderson@greenknowe.org"
  744. },
  745. {
  746. "name": "Moshe Weitzman",
  747. "email": "weitzman@tejasa.com"
  748. }
  749. ],
  750. "description": "Manage alias records for local and remote sites.",
  751. "support": {
  752. "issues": "https://github.com/consolidation/site-alias/issues",
  753. "source": "https://github.com/consolidation/site-alias/tree/4.1.3"
  754. },
  755. "time": "2026-03-28T23:34:58+00:00"
  756. },
  757. {
  758. "name": "consolidation/site-process",
  759. "version": "5.4.2",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/site-process.git",
  763. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  768. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/config": "^2 || ^3",
  773. "consolidation/site-alias": "^3 || ^4",
  774. "php": ">=8.0.14",
  775. "symfony/console": "^5.4 || ^6 || ^7",
  776. "symfony/process": "^6 || ^7"
  777. },
  778. "require-dev": {
  779. "phpunit/phpunit": "^9",
  780. "squizlabs/php_codesniffer": "^3"
  781. },
  782. "type": "library",
  783. "extra": {
  784. "branch-alias": {
  785. "dev-main": "5.x-dev"
  786. }
  787. },
  788. "autoload": {
  789. "psr-4": {
  790. "Consolidation\\SiteProcess\\": "src"
  791. }
  792. },
  793. "notification-url": "https://packagist.org/downloads/",
  794. "license": [
  795. "MIT"
  796. ],
  797. "authors": [
  798. {
  799. "name": "Greg Anderson",
  800. "email": "greg.1.anderson@greenknowe.org"
  801. },
  802. {
  803. "name": "Moshe Weitzman",
  804. "email": "weitzman@tejasa.com"
  805. }
  806. ],
  807. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  808. "support": {
  809. "issues": "https://github.com/consolidation/site-process/issues",
  810. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  811. },
  812. "time": "2024-12-13T19:25:56+00:00"
  813. },
  814. {
  815. "name": "cweagans/composer-patches",
  816. "version": "1.7.3",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/cweagans/composer-patches.git",
  820. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  825. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "composer-plugin-api": "^1.0 || ^2.0",
  830. "php": ">=5.3.0"
  831. },
  832. "require-dev": {
  833. "composer/composer": "~1.0 || ~2.0",
  834. "phpunit/phpunit": "~4.6"
  835. },
  836. "type": "composer-plugin",
  837. "extra": {
  838. "class": "cweagans\\Composer\\Patches"
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "cweagans\\Composer\\": "src"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "BSD-3-Clause"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Cameron Eagans",
  852. "email": "me@cweagans.net"
  853. }
  854. ],
  855. "description": "Provides a way to patch Composer packages.",
  856. "support": {
  857. "issues": "https://github.com/cweagans/composer-patches/issues",
  858. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  859. },
  860. "time": "2022-12-20T22:53:13+00:00"
  861. },
  862. {
  863. "name": "dekor/php-array-table",
  864. "version": "2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/deniskoronets/php-array-table.git",
  868. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  873. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "ext-mbstring": "*",
  878. "php": ">=5.6.0"
  879. },
  880. "require-dev": {
  881. "phpunit/phpunit": "^10"
  882. },
  883. "type": "library",
  884. "autoload": {
  885. "psr-4": {
  886. "dekor\\": "src"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "BSD-3-Clause"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Denis Koronets",
  896. "email": "deniskoronets@woo.zp.ua",
  897. "homepage": "https://woo.zp.ua/"
  898. }
  899. ],
  900. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  901. "keywords": [
  902. "library",
  903. "php"
  904. ],
  905. "support": {
  906. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  907. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  908. },
  909. "time": "2023-02-10T10:13:42+00:00"
  910. },
  911. {
  912. "name": "dflydev/dot-access-data",
  913. "version": "v3.0.3",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  917. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  922. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "php": "^7.1 || ^8.0"
  927. },
  928. "require-dev": {
  929. "phpstan/phpstan": "^0.12.42",
  930. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  931. "scrutinizer/ocular": "1.6.0",
  932. "squizlabs/php_codesniffer": "^3.5",
  933. "vimeo/psalm": "^4.0.0"
  934. },
  935. "type": "library",
  936. "extra": {
  937. "branch-alias": {
  938. "dev-main": "3.x-dev"
  939. }
  940. },
  941. "autoload": {
  942. "psr-4": {
  943. "Dflydev\\DotAccessData\\": "src/"
  944. }
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "MIT"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Dragonfly Development Inc.",
  953. "email": "info@dflydev.com",
  954. "homepage": "http://dflydev.com"
  955. },
  956. {
  957. "name": "Beau Simensen",
  958. "email": "beau@dflydev.com",
  959. "homepage": "http://beausimensen.com"
  960. },
  961. {
  962. "name": "Carlos Frutos",
  963. "email": "carlos@kiwing.it",
  964. "homepage": "https://github.com/cfrutos"
  965. },
  966. {
  967. "name": "Colin O'Dell",
  968. "email": "colinodell@gmail.com",
  969. "homepage": "https://www.colinodell.com"
  970. }
  971. ],
  972. "description": "Given a deep data structure, access data by dot notation.",
  973. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  974. "keywords": [
  975. "access",
  976. "data",
  977. "dot",
  978. "notation"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  982. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  983. },
  984. "time": "2024-07-08T12:26:09+00:00"
  985. },
  986. {
  987. "name": "doctrine/common",
  988. "version": "3.5.0",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/doctrine/common.git",
  992. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  997. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1002. "php": "^7.1 || ^8.0"
  1003. },
  1004. "require-dev": {
  1005. "doctrine/coding-standard": "^9.0 || ^10.0",
  1006. "doctrine/collections": "^1",
  1007. "phpstan/phpstan": "^1.4.1",
  1008. "phpstan/phpstan-phpunit": "^1",
  1009. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1010. "squizlabs/php_codesniffer": "^3.0",
  1011. "symfony/phpunit-bridge": "^6.1",
  1012. "vimeo/psalm": "^4.4"
  1013. },
  1014. "type": "library",
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Doctrine\\Common\\": "src"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Guilherme Blanco",
  1027. "email": "guilhermeblanco@gmail.com"
  1028. },
  1029. {
  1030. "name": "Roman Borschel",
  1031. "email": "roman@code-factory.org"
  1032. },
  1033. {
  1034. "name": "Benjamin Eberlei",
  1035. "email": "kontakt@beberlei.de"
  1036. },
  1037. {
  1038. "name": "Jonathan Wage",
  1039. "email": "jonwage@gmail.com"
  1040. },
  1041. {
  1042. "name": "Johannes Schmitt",
  1043. "email": "schmittjoh@gmail.com"
  1044. },
  1045. {
  1046. "name": "Marco Pivetta",
  1047. "email": "ocramius@gmail.com"
  1048. }
  1049. ],
  1050. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1051. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1052. "keywords": [
  1053. "common",
  1054. "doctrine",
  1055. "php"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/doctrine/common/issues",
  1059. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://www.doctrine-project.org/sponsorship.html",
  1064. "type": "custom"
  1065. },
  1066. {
  1067. "url": "https://www.patreon.com/phpdoctrine",
  1068. "type": "patreon"
  1069. },
  1070. {
  1071. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1072. "type": "tidelift"
  1073. }
  1074. ],
  1075. "time": "2025-01-01T22:12:03+00:00"
  1076. },
  1077. {
  1078. "name": "doctrine/deprecations",
  1079. "version": "1.1.6",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/doctrine/deprecations.git",
  1083. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1088. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "php": "^7.1 || ^8.0"
  1093. },
  1094. "conflict": {
  1095. "phpunit/phpunit": "<=7.5 || >=14"
  1096. },
  1097. "require-dev": {
  1098. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1099. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1100. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1102. "psr/log": "^1 || ^2 || ^3"
  1103. },
  1104. "suggest": {
  1105. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1106. },
  1107. "type": "library",
  1108. "autoload": {
  1109. "psr-4": {
  1110. "Doctrine\\Deprecations\\": "src"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "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.",
  1118. "homepage": "https://www.doctrine-project.org/",
  1119. "support": {
  1120. "issues": "https://github.com/doctrine/deprecations/issues",
  1121. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1122. },
  1123. "time": "2026-02-07T07:09:04+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/event-manager",
  1127. "version": "2.1.1",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/event-manager.git",
  1131. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1136. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "php": "^8.1"
  1141. },
  1142. "conflict": {
  1143. "doctrine/common": "<2.9"
  1144. },
  1145. "require-dev": {
  1146. "doctrine/coding-standard": "^14",
  1147. "phpdocumentor/guides-cli": "^1.4",
  1148. "phpstan/phpstan": "^2.1.32",
  1149. "phpunit/phpunit": "^10.5.58"
  1150. },
  1151. "type": "library",
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Doctrine\\Common\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Guilherme Blanco",
  1164. "email": "guilhermeblanco@gmail.com"
  1165. },
  1166. {
  1167. "name": "Roman Borschel",
  1168. "email": "roman@code-factory.org"
  1169. },
  1170. {
  1171. "name": "Benjamin Eberlei",
  1172. "email": "kontakt@beberlei.de"
  1173. },
  1174. {
  1175. "name": "Jonathan Wage",
  1176. "email": "jonwage@gmail.com"
  1177. },
  1178. {
  1179. "name": "Johannes Schmitt",
  1180. "email": "schmittjoh@gmail.com"
  1181. },
  1182. {
  1183. "name": "Marco Pivetta",
  1184. "email": "ocramius@gmail.com"
  1185. }
  1186. ],
  1187. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1188. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1189. "keywords": [
  1190. "event",
  1191. "event dispatcher",
  1192. "event manager",
  1193. "event system",
  1194. "events"
  1195. ],
  1196. "support": {
  1197. "issues": "https://github.com/doctrine/event-manager/issues",
  1198. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://www.doctrine-project.org/sponsorship.html",
  1203. "type": "custom"
  1204. },
  1205. {
  1206. "url": "https://www.patreon.com/phpdoctrine",
  1207. "type": "patreon"
  1208. },
  1209. {
  1210. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1211. "type": "tidelift"
  1212. }
  1213. ],
  1214. "time": "2026-01-29T07:11:08+00:00"
  1215. },
  1216. {
  1217. "name": "doctrine/lexer",
  1218. "version": "2.1.1",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/doctrine/lexer.git",
  1222. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1228. "shasum": ""
  1229. },
  1230. "require": {
  1231. "doctrine/deprecations": "^1.0",
  1232. "php": "^7.1 || ^8.0"
  1233. },
  1234. "require-dev": {
  1235. "doctrine/coding-standard": "^9 || ^12",
  1236. "phpstan/phpstan": "^1.3",
  1237. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1238. "psalm/plugin-phpunit": "^0.18.3",
  1239. "vimeo/psalm": "^4.11 || ^5.21"
  1240. },
  1241. "type": "library",
  1242. "autoload": {
  1243. "psr-4": {
  1244. "Doctrine\\Common\\Lexer\\": "src"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "authors": [
  1252. {
  1253. "name": "Guilherme Blanco",
  1254. "email": "guilhermeblanco@gmail.com"
  1255. },
  1256. {
  1257. "name": "Roman Borschel",
  1258. "email": "roman@code-factory.org"
  1259. },
  1260. {
  1261. "name": "Johannes Schmitt",
  1262. "email": "schmittjoh@gmail.com"
  1263. }
  1264. ],
  1265. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1266. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1267. "keywords": [
  1268. "annotations",
  1269. "docblock",
  1270. "lexer",
  1271. "parser",
  1272. "php"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/doctrine/lexer/issues",
  1276. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://www.doctrine-project.org/sponsorship.html",
  1281. "type": "custom"
  1282. },
  1283. {
  1284. "url": "https://www.patreon.com/phpdoctrine",
  1285. "type": "patreon"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2024-02-05T11:35:39+00:00"
  1293. },
  1294. {
  1295. "name": "doctrine/persistence",
  1296. "version": "4.1.1",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/doctrine/persistence.git",
  1300. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1305. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "doctrine/event-manager": "^1 || ^2",
  1310. "php": "^8.1",
  1311. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1312. },
  1313. "require-dev": {
  1314. "doctrine/coding-standard": "^14",
  1315. "phpstan/phpstan": "2.1.30",
  1316. "phpstan/phpstan-phpunit": "^2",
  1317. "phpstan/phpstan-strict-rules": "^2",
  1318. "phpunit/phpunit": "^10.5.58 || ^12",
  1319. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1320. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-4": {
  1325. "Doctrine\\Persistence\\": "src/Persistence"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Guilherme Blanco",
  1335. "email": "guilhermeblanco@gmail.com"
  1336. },
  1337. {
  1338. "name": "Roman Borschel",
  1339. "email": "roman@code-factory.org"
  1340. },
  1341. {
  1342. "name": "Benjamin Eberlei",
  1343. "email": "kontakt@beberlei.de"
  1344. },
  1345. {
  1346. "name": "Jonathan Wage",
  1347. "email": "jonwage@gmail.com"
  1348. },
  1349. {
  1350. "name": "Johannes Schmitt",
  1351. "email": "schmittjoh@gmail.com"
  1352. },
  1353. {
  1354. "name": "Marco Pivetta",
  1355. "email": "ocramius@gmail.com"
  1356. }
  1357. ],
  1358. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1359. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1360. "keywords": [
  1361. "mapper",
  1362. "object",
  1363. "odm",
  1364. "orm",
  1365. "persistence"
  1366. ],
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/persistence/issues",
  1369. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://www.doctrine-project.org/sponsorship.html",
  1374. "type": "custom"
  1375. },
  1376. {
  1377. "url": "https://www.patreon.com/phpdoctrine",
  1378. "type": "patreon"
  1379. },
  1380. {
  1381. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1382. "type": "tidelift"
  1383. }
  1384. ],
  1385. "time": "2025-10-16T20:13:18+00:00"
  1386. },
  1387. {
  1388. "name": "drupal/addtoany",
  1389. "version": "2.0.7",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://git.drupalcode.org/project/addtoany.git",
  1393. "reference": "2.0.7"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.7.zip",
  1398. "reference": "2.0.7",
  1399. "shasum": "33bfb5f425134705f8208f7c2f6ac23382a87bb6"
  1400. },
  1401. "require": {
  1402. "drupal/core": "^10.1 || ^11"
  1403. },
  1404. "type": "drupal-module",
  1405. "extra": {
  1406. "drupal": {
  1407. "version": "2.0.7",
  1408. "datestamp": "1731984029",
  1409. "security-coverage": {
  1410. "status": "covered",
  1411. "message": "Covered by Drupal's security advisory policy"
  1412. }
  1413. }
  1414. },
  1415. "notification-url": "https://packages.drupal.org/8/downloads",
  1416. "license": [
  1417. "GPL-2.0-or-later"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "AddToAny",
  1422. "homepage": "https://www.drupal.org/user/2640913"
  1423. },
  1424. {
  1425. "name": "micropat",
  1426. "homepage": "https://www.drupal.org/user/260224"
  1427. }
  1428. ],
  1429. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1430. "homepage": "https://www.drupal.org/project/addtoany",
  1431. "keywords": [
  1432. "Drupal"
  1433. ],
  1434. "support": {
  1435. "source": "https://git.drupalcode.org/project/addtoany",
  1436. "issues": "https://www.drupal.org/project/issues/addtoany"
  1437. }
  1438. },
  1439. {
  1440. "name": "drupal/admin_toolbar",
  1441. "version": "3.6.3",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1445. "reference": "3.6.3"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1450. "reference": "3.6.3",
  1451. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1452. },
  1453. "require": {
  1454. "drupal/core": "^9.5 || ^10 || ^11"
  1455. },
  1456. "conflict": {
  1457. "drupal/project_browser": "<2.1.0"
  1458. },
  1459. "type": "drupal-module",
  1460. "extra": {
  1461. "drupal": {
  1462. "version": "3.6.3",
  1463. "datestamp": "1767318997",
  1464. "security-coverage": {
  1465. "status": "covered",
  1466. "message": "Covered by Drupal's security advisory policy"
  1467. }
  1468. }
  1469. },
  1470. "notification-url": "https://packages.drupal.org/8/downloads",
  1471. "license": [
  1472. "GPL-2.0-or-later"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Wilfrid Roze (eme)",
  1477. "homepage": "https://www.drupal.org/u/eme",
  1478. "role": "Maintainer"
  1479. },
  1480. {
  1481. "name": "Romain Jarraud (romainj)",
  1482. "homepage": "https://www.drupal.org/u/romainj",
  1483. "role": "Maintainer"
  1484. },
  1485. {
  1486. "name": "Adrian Cid Almaguer (adriancid)",
  1487. "homepage": "https://www.drupal.org/u/adriancid",
  1488. "email": "adriancid@gmail.com",
  1489. "role": "Maintainer"
  1490. },
  1491. {
  1492. "name": "Mohamed Anis Taktak (matio89)",
  1493. "homepage": "https://www.drupal.org/u/matio89",
  1494. "role": "Maintainer"
  1495. },
  1496. {
  1497. "name": "David Suissa (DYdave)",
  1498. "homepage": "https://www.drupal.org/u/dydave",
  1499. "role": "Maintainer"
  1500. },
  1501. {
  1502. "name": "japerry",
  1503. "homepage": "https://www.drupal.org/user/45640"
  1504. },
  1505. {
  1506. "name": "matio89",
  1507. "homepage": "https://www.drupal.org/user/2320090"
  1508. },
  1509. {
  1510. "name": "musa.thomas",
  1511. "homepage": "https://www.drupal.org/user/1213824"
  1512. },
  1513. {
  1514. "name": "romainj",
  1515. "homepage": "https://www.drupal.org/user/370706"
  1516. }
  1517. ],
  1518. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1519. "homepage": "http://drupal.org/project/admin_toolbar",
  1520. "keywords": [
  1521. "Drupal",
  1522. "Toolbar"
  1523. ],
  1524. "support": {
  1525. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1526. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1527. }
  1528. },
  1529. {
  1530. "name": "drupal/adminimal_theme",
  1531. "version": "1.7.0",
  1532. "source": {
  1533. "type": "git",
  1534. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1535. "reference": "8.x-1.7"
  1536. },
  1537. "dist": {
  1538. "type": "zip",
  1539. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1540. "reference": "8.x-1.7",
  1541. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1542. },
  1543. "require": {
  1544. "drupal/core": "^9.3 || ^10",
  1545. "drupal/seven": "~1.0"
  1546. },
  1547. "type": "drupal-theme",
  1548. "extra": {
  1549. "drupal": {
  1550. "version": "8.x-1.7",
  1551. "datestamp": "1691504486",
  1552. "security-coverage": {
  1553. "status": "covered",
  1554. "message": "Covered by Drupal's security advisory policy"
  1555. }
  1556. }
  1557. },
  1558. "notification-url": "https://packages.drupal.org/8/downloads",
  1559. "license": [
  1560. "GPL-2.0+"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "ANDiTKO",
  1565. "homepage": "https://www.drupal.org/user/1428124"
  1566. },
  1567. {
  1568. "name": "andrey.troeglazov",
  1569. "homepage": "https://www.drupal.org/user/3145389"
  1570. },
  1571. {
  1572. "name": "realityloop",
  1573. "homepage": "https://www.drupal.org/user/139189"
  1574. },
  1575. {
  1576. "name": "rjjakes",
  1577. "homepage": "https://www.drupal.org/user/3457245"
  1578. }
  1579. ],
  1580. "description": "Drupal administration theme with modern minimalist design.",
  1581. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1582. "support": {
  1583. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1584. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1585. }
  1586. },
  1587. {
  1588. "name": "drupal/audiofield",
  1589. "version": "1.13.0",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://git.drupalcode.org/project/audiofield.git",
  1593. "reference": "8.x-1.13"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1598. "reference": "8.x-1.13",
  1599. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1600. },
  1601. "require": {
  1602. "drupal/core": "^8 || ^9 || ^10"
  1603. },
  1604. "type": "drupal-module",
  1605. "extra": {
  1606. "drupal": {
  1607. "version": "8.x-1.13",
  1608. "datestamp": "1681143245",
  1609. "security-coverage": {
  1610. "status": "covered",
  1611. "message": "Covered by Drupal's security advisory policy"
  1612. }
  1613. },
  1614. "drush": {
  1615. "services": {
  1616. "drush.services.yml": "^9"
  1617. }
  1618. }
  1619. },
  1620. "notification-url": "https://packages.drupal.org/8/downloads",
  1621. "license": [
  1622. "GPL-2.0-or-later"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Daniel Moberly",
  1627. "homepage": "https://www.drupal.org/u/danielmoberly",
  1628. "role": "Maintainer"
  1629. },
  1630. {
  1631. "name": "tamerzg",
  1632. "homepage": "https://www.drupal.org/user/464564"
  1633. }
  1634. ],
  1635. "description": "AudioField Module",
  1636. "homepage": "https://www.drupal.org/project/audiofield",
  1637. "support": {
  1638. "source": "https://git.drupalcode.org/project/audiofield",
  1639. "issues": "https://www.drupal.org/project/issues/audiofield"
  1640. }
  1641. },
  1642. {
  1643. "name": "drupal/autologout",
  1644. "version": "2.0.2",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://git.drupalcode.org/project/autologout.git",
  1648. "reference": "2.0.2"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.2.zip",
  1653. "reference": "2.0.2",
  1654. "shasum": "5e9bb2b37368cdb5e5d09f27ac4018466aaac2d6"
  1655. },
  1656. "require": {
  1657. "drupal/core": "^9.2 || ^10 || ^11"
  1658. },
  1659. "type": "drupal-module",
  1660. "extra": {
  1661. "drupal": {
  1662. "version": "2.0.2",
  1663. "datestamp": "1773996386",
  1664. "security-coverage": {
  1665. "status": "covered",
  1666. "message": "Covered by Drupal's security advisory policy"
  1667. }
  1668. }
  1669. },
  1670. "notification-url": "https://packages.drupal.org/8/downloads",
  1671. "license": [
  1672. "GPL-2.0-or-later"
  1673. ],
  1674. "authors": [
  1675. {
  1676. "name": "ajits",
  1677. "homepage": "https://www.drupal.org/user/981944"
  1678. },
  1679. {
  1680. "name": "AjK",
  1681. "homepage": "https://www.drupal.org/user/39030"
  1682. },
  1683. {
  1684. "name": "boshtian",
  1685. "homepage": "https://www.drupal.org/user/1773456"
  1686. },
  1687. {
  1688. "name": "dandrews",
  1689. "homepage": "https://www.drupal.org/user/2014490"
  1690. },
  1691. {
  1692. "name": "darksnow",
  1693. "homepage": "https://www.drupal.org/user/391915"
  1694. },
  1695. {
  1696. "name": "japerry",
  1697. "homepage": "https://www.drupal.org/user/45640"
  1698. },
  1699. {
  1700. "name": "johnennew",
  1701. "homepage": "https://www.drupal.org/user/1150042"
  1702. },
  1703. {
  1704. "name": "jrglasgow",
  1705. "homepage": "https://www.drupal.org/user/36590"
  1706. },
  1707. {
  1708. "name": "kmasood",
  1709. "homepage": "https://www.drupal.org/user/1262860"
  1710. },
  1711. {
  1712. "name": "levelos",
  1713. "homepage": "https://www.drupal.org/user/54135"
  1714. },
  1715. {
  1716. "name": "prabeen.giri",
  1717. "homepage": "https://www.drupal.org/user/913078"
  1718. },
  1719. {
  1720. "name": "str8",
  1721. "homepage": "https://www.drupal.org/user/2865063"
  1722. },
  1723. {
  1724. "name": "the_g_bomb",
  1725. "homepage": "https://www.drupal.org/user/492012"
  1726. }
  1727. ],
  1728. "description": "Adds automated timed logout.",
  1729. "homepage": "http://drupal.org/project/autologout",
  1730. "support": {
  1731. "source": "https://git.drupalcode.org/project/autologout",
  1732. "issues": "https://www.drupal.org/project/issues/autologout"
  1733. }
  1734. },
  1735. {
  1736. "name": "drupal/basic",
  1737. "version": "3.0.0-alpha2",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://git.drupalcode.org/project/basic.git",
  1741. "reference": "3.0.0-alpha2"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  1746. "reference": "3.0.0-alpha2",
  1747. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  1748. },
  1749. "require": {
  1750. "drupal/core": "^9.3 || ^10"
  1751. },
  1752. "type": "drupal-theme",
  1753. "extra": {
  1754. "drupal": {
  1755. "version": "3.0.0-alpha2",
  1756. "datestamp": "1674980765",
  1757. "security-coverage": {
  1758. "status": "not-covered",
  1759. "message": "Alpha releases are not covered by Drupal security advisories."
  1760. }
  1761. }
  1762. },
  1763. "notification-url": "https://packages.drupal.org/8/downloads",
  1764. "license": [
  1765. "GPL-2.0+"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Steve Krueger",
  1770. "homepage": "http://thejibe.com",
  1771. "email": "steve@thejibe.com",
  1772. "role": "Maintainer"
  1773. },
  1774. {
  1775. "name": "Joël Pittet",
  1776. "homepage": "https://www.drupal.org/u/joelpittet",
  1777. "email": "joel@pittet.ca",
  1778. "role": "Maintainer"
  1779. },
  1780. {
  1781. "name": "Leah Wagner",
  1782. "homepage": "http://thejibe.com",
  1783. "email": "leah@thejibe.com",
  1784. "role": "Maintainer"
  1785. },
  1786. {
  1787. "name": "Catherine Winters",
  1788. "homepage": "http://www.catherinewinters.com",
  1789. "email": "catherine@catherinewinters.com",
  1790. "role": "Maintainer"
  1791. },
  1792. {
  1793. "name": "Johannes Schmidt",
  1794. "homepage": "http://2tabs.com",
  1795. "email": "mail@2tabs.com",
  1796. "role": "Maintainer"
  1797. },
  1798. {
  1799. "name": "Chuck Kosman",
  1800. "homepage": "http://thejibe.com",
  1801. "email": "chuck@thejibe.com",
  1802. "role": "Maintainer"
  1803. },
  1804. {
  1805. "name": "SteveK",
  1806. "homepage": "https://www.drupal.org/user/111656"
  1807. }
  1808. ],
  1809. "description": "HTML5, SASS, Responsive grid starter theme.",
  1810. "homepage": "http://drupal.org/project/basic",
  1811. "support": {
  1812. "source": "http://cgit.drupalcode.org/basic",
  1813. "issues": "https://www.drupal.org/project/issues/basic",
  1814. "irc": "irc://irc.freenode.org/drupal-contribute"
  1815. }
  1816. },
  1817. {
  1818. "name": "drupal/bulkdelete",
  1819. "version": "dev-1.x",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1823. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1824. },
  1825. "require": {
  1826. "drupal/core": "^8.7.7 || ^9 || ^10"
  1827. },
  1828. "type": "drupal-module",
  1829. "extra": {
  1830. "branch-alias": {
  1831. "dev-1.x": "1.x-dev"
  1832. },
  1833. "drupal": {
  1834. "version": "8.x-1.x-dev",
  1835. "datestamp": "1655322426",
  1836. "security-coverage": {
  1837. "status": "not-covered",
  1838. "message": "Dev releases are not covered by Drupal security advisories."
  1839. }
  1840. }
  1841. },
  1842. "notification-url": "https://packages.drupal.org/8/downloads",
  1843. "license": [
  1844. "GPL-2.0-or-later"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Kars-T",
  1849. "homepage": "https://www.drupal.org/user/224499"
  1850. },
  1851. {
  1852. "name": "Rahul Seth",
  1853. "homepage": "https://www.drupal.org/user/2694359"
  1854. },
  1855. {
  1856. "name": "adriancid",
  1857. "homepage": "https://www.drupal.org/user/1962106"
  1858. },
  1859. {
  1860. "name": "robertDouglass",
  1861. "homepage": "https://www.drupal.org/user/5449"
  1862. }
  1863. ],
  1864. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1865. "homepage": "https://www.drupal.org/project/bulkdelete",
  1866. "support": {
  1867. "source": "https://git.drupalcode.org/project/bulkdelete"
  1868. }
  1869. },
  1870. {
  1871. "name": "drupal/classy",
  1872. "version": "1.0.2",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://git.drupalcode.org/project/classy.git",
  1876. "reference": "1.0.2"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  1881. "reference": "1.0.2",
  1882. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  1883. },
  1884. "require": {
  1885. "drupal/core": "^9 || ^10",
  1886. "drupal/stable": "^2.0.0"
  1887. },
  1888. "type": "drupal-theme",
  1889. "extra": {
  1890. "drupal": {
  1891. "version": "1.0.2",
  1892. "datestamp": "1663949784",
  1893. "security-coverage": {
  1894. "status": "covered",
  1895. "message": "Covered by Drupal's security advisory policy"
  1896. }
  1897. }
  1898. },
  1899. "notification-url": "https://packages.drupal.org/8/downloads",
  1900. "license": [
  1901. "GPL-2.0-or-later"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "bnjmnm",
  1906. "homepage": "https://www.drupal.org/user/2369194"
  1907. },
  1908. {
  1909. "name": "davidhernandez",
  1910. "homepage": "https://www.drupal.org/user/274559"
  1911. },
  1912. {
  1913. "name": "lauriii",
  1914. "homepage": "https://www.drupal.org/user/1078742"
  1915. },
  1916. {
  1917. "name": "smustgrave",
  1918. "homepage": "https://www.drupal.org/user/3252890"
  1919. }
  1920. ],
  1921. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  1922. "homepage": "https://drupal.org/project/classy",
  1923. "support": {
  1924. "source": "https://git.drupalcode.org/project/classy",
  1925. "issues": "https://drupal.org/project/issues/classy"
  1926. }
  1927. },
  1928. {
  1929. "name": "drupal/color_field",
  1930. "version": "3.0.2",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://git.drupalcode.org/project/color_field.git",
  1934. "reference": "3.0.2"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.2.zip",
  1939. "reference": "3.0.2",
  1940. "shasum": "2778e454798a59d3e9fd27f56a161562e2d1f0fe"
  1941. },
  1942. "require": {
  1943. "drupal/core": "^9 || ^10 || ^11"
  1944. },
  1945. "require-dev": {
  1946. "drupal/core-recommended": "^9 || ^10 || ^11",
  1947. "drupal/feeds": "^3.0@beta",
  1948. "drupal/token": "~1.3"
  1949. },
  1950. "type": "drupal-module",
  1951. "extra": {
  1952. "drupal": {
  1953. "version": "3.0.2",
  1954. "datestamp": "1743394003",
  1955. "security-coverage": {
  1956. "status": "covered",
  1957. "message": "Covered by Drupal's security advisory policy"
  1958. }
  1959. }
  1960. },
  1961. "notification-url": "https://packages.drupal.org/8/downloads",
  1962. "license": [
  1963. "GPL-2.0-or-later"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "targoo",
  1968. "homepage": "https://www.drupal.org/user/431910",
  1969. "role": "Maintainer"
  1970. },
  1971. {
  1972. "name": "Nick Wilde",
  1973. "homepage": "https://www.drupal.org/user/nickwilde",
  1974. "role": "Maintainer"
  1975. },
  1976. {
  1977. "name": "targoo",
  1978. "homepage": "https://www.drupal.org/user/431910"
  1979. }
  1980. ],
  1981. "description": "Provides a color field type to store the color value and opacity",
  1982. "homepage": "https://www.drupal.org/project/color_field",
  1983. "support": {
  1984. "source": "https://git.drupalcode.org/project/color_field",
  1985. "issues": "https://www.drupal.org/project/issues/color_field"
  1986. }
  1987. },
  1988. {
  1989. "name": "drupal/composer_deploy",
  1990. "version": "1.10.0",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  1994. "reference": "8.x-1.10"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.10.zip",
  1999. "reference": "8.x-1.10",
  2000. "shasum": "71a80d50a6f2a0f1f00fcae3dd61865ef3caf6bd"
  2001. },
  2002. "require": {
  2003. "drupal/core": "^9 || ^10 || ^11",
  2004. "php": ">=8.1",
  2005. "webflo/drupal-finder": "^1.3"
  2006. },
  2007. "type": "drupal-module",
  2008. "extra": {
  2009. "drupal": {
  2010. "version": "8.x-1.10",
  2011. "datestamp": "1728893427",
  2012. "security-coverage": {
  2013. "status": "covered",
  2014. "message": "Covered by Drupal's security advisory policy"
  2015. }
  2016. }
  2017. },
  2018. "notification-url": "https://packages.drupal.org/8/downloads",
  2019. "license": [
  2020. "GPL-2.0+"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "jhedstrom",
  2025. "homepage": "https://www.drupal.org/user/208732"
  2026. },
  2027. {
  2028. "name": "joelpittet",
  2029. "homepage": "https://www.drupal.org/user/160302"
  2030. },
  2031. {
  2032. "name": "nerdstein",
  2033. "homepage": "https://www.drupal.org/user/1557710"
  2034. },
  2035. {
  2036. "name": "webflo",
  2037. "homepage": "https://www.drupal.org/user/254778"
  2038. }
  2039. ],
  2040. "description": "Provide version number from composers lockfile.",
  2041. "homepage": "https://www.drupal.org/project/composer_deploy",
  2042. "support": {
  2043. "source": "https://git.drupalcode.org/project/composer_deploy"
  2044. }
  2045. },
  2046. {
  2047. "name": "drupal/config_devel",
  2048. "version": "1.11.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://git.drupalcode.org/project/config_devel.git",
  2052. "reference": "8.x-1.11"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.11.zip",
  2057. "reference": "8.x-1.11",
  2058. "shasum": "06e68921c2ab737d775445068280c23c176edf19"
  2059. },
  2060. "require": {
  2061. "drupal/core": "^9.3 || ^10 || ^11"
  2062. },
  2063. "type": "drupal-module",
  2064. "extra": {
  2065. "drupal": {
  2066. "version": "8.x-1.11",
  2067. "datestamp": "1763045911",
  2068. "security-coverage": {
  2069. "status": "covered",
  2070. "message": "Covered by Drupal's security advisory policy"
  2071. }
  2072. }
  2073. },
  2074. "notification-url": "https://packages.drupal.org/8/downloads",
  2075. "license": [
  2076. "GPL-2.0+"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "alexpott",
  2081. "homepage": "https://www.drupal.org/user/157725"
  2082. },
  2083. {
  2084. "name": "benjy",
  2085. "homepage": "https://www.drupal.org/user/1852732"
  2086. },
  2087. {
  2088. "name": "chx",
  2089. "homepage": "https://www.drupal.org/user/9446"
  2090. },
  2091. {
  2092. "name": "joachim",
  2093. "homepage": "https://www.drupal.org/user/107701"
  2094. },
  2095. {
  2096. "name": "vijaycs85",
  2097. "homepage": "https://www.drupal.org/user/93488"
  2098. }
  2099. ],
  2100. "description": "Helps developers work with configuration.",
  2101. "homepage": "https://www.drupal.org/project/config_devel",
  2102. "support": {
  2103. "source": "https://git.drupalcode.org/project/config_devel"
  2104. }
  2105. },
  2106. {
  2107. "name": "drupal/config_filter",
  2108. "version": "2.7.0",
  2109. "source": {
  2110. "type": "git",
  2111. "url": "https://git.drupalcode.org/project/config_filter.git",
  2112. "reference": "8.x-2.7"
  2113. },
  2114. "dist": {
  2115. "type": "zip",
  2116. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2117. "reference": "8.x-2.7",
  2118. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2119. },
  2120. "require": {
  2121. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2122. },
  2123. "conflict": {
  2124. "drush/drush": "<10"
  2125. },
  2126. "suggest": {
  2127. "drupal/config_split": "Split site configuration for different environments."
  2128. },
  2129. "type": "drupal-module",
  2130. "extra": {
  2131. "drupal": {
  2132. "version": "8.x-2.7",
  2133. "datestamp": "1727472458",
  2134. "security-coverage": {
  2135. "status": "covered",
  2136. "message": "Covered by Drupal's security advisory policy"
  2137. }
  2138. }
  2139. },
  2140. "notification-url": "https://packages.drupal.org/8/downloads",
  2141. "license": [
  2142. "GPL-2.0-or-later"
  2143. ],
  2144. "authors": [
  2145. {
  2146. "name": "Fabian Bircher",
  2147. "homepage": "https://www.drupal.org/u/bircher",
  2148. "email": "opensource@fabianbircher.com",
  2149. "role": "Maintainer"
  2150. },
  2151. {
  2152. "name": "Nuvole Web",
  2153. "homepage": "http://nuvole.org",
  2154. "email": "info@nuvole.org",
  2155. "role": "Maintainer"
  2156. },
  2157. {
  2158. "name": "pescetti",
  2159. "homepage": "https://www.drupal.org/user/436244"
  2160. }
  2161. ],
  2162. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2163. "homepage": "https://www.drupal.org/project/config_filter",
  2164. "keywords": [
  2165. "Drupal",
  2166. "configuration",
  2167. "configuration management"
  2168. ],
  2169. "support": {
  2170. "source": "https://git.drupalcode.org/project/config_filter",
  2171. "issues": "https://www.drupal.org/project/issues/config_filter",
  2172. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2173. }
  2174. },
  2175. {
  2176. "name": "drupal/config_ignore",
  2177. "version": "3.3.0",
  2178. "source": {
  2179. "type": "git",
  2180. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2181. "reference": "8.x-3.3"
  2182. },
  2183. "dist": {
  2184. "type": "zip",
  2185. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2186. "reference": "8.x-3.3",
  2187. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2188. },
  2189. "require": {
  2190. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2191. },
  2192. "require-dev": {
  2193. "drupal/config_filter": "^1.8||^2.2",
  2194. "drush/drush": "^10 || ^11 || ^12"
  2195. },
  2196. "type": "drupal-module",
  2197. "extra": {
  2198. "drupal": {
  2199. "version": "8.x-3.3",
  2200. "datestamp": "1713299496",
  2201. "security-coverage": {
  2202. "status": "covered",
  2203. "message": "Covered by Drupal's security advisory policy"
  2204. }
  2205. }
  2206. },
  2207. "notification-url": "https://packages.drupal.org/8/downloads",
  2208. "license": [
  2209. "GPL-2.0-or-later"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Tommy Lynge Jørgensen",
  2214. "homepage": "https://www.drupal.org/u/tlyngej",
  2215. "email": "tlyngej@gmail.com",
  2216. "role": "Maintainer"
  2217. },
  2218. {
  2219. "name": "Fabian Bircher",
  2220. "homepage": "https://www.drupal.org/u/bircher",
  2221. "role": "Maintainer"
  2222. },
  2223. {
  2224. "name": "tlyngej",
  2225. "homepage": "https://www.drupal.org/user/413139"
  2226. }
  2227. ],
  2228. "description": "Ignore certain configuration during import and export.",
  2229. "homepage": "http://drupal.org/project/config_ignore",
  2230. "support": {
  2231. "source": "https://git.drupalcode.org/project/config_ignore",
  2232. "issues": "http://drupal.org/project/config_ignore"
  2233. }
  2234. },
  2235. {
  2236. "name": "drupal/config_update",
  2237. "version": "2.0.0-alpha4",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://git.drupalcode.org/project/config_update.git",
  2241. "reference": "2.0.0-alpha4"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2246. "reference": "2.0.0-alpha4",
  2247. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2248. },
  2249. "require": {
  2250. "drupal/core": "^9.4 || ^10 || ^11"
  2251. },
  2252. "type": "drupal-module",
  2253. "extra": {
  2254. "drupal": {
  2255. "version": "2.0.0-alpha4",
  2256. "datestamp": "1724596931",
  2257. "security-coverage": {
  2258. "status": "not-covered",
  2259. "message": "Alpha releases are not covered by Drupal security advisories."
  2260. }
  2261. }
  2262. },
  2263. "notification-url": "https://packages.drupal.org/8/downloads",
  2264. "license": [
  2265. "GPL-2.0-or-later"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "codebymikey",
  2270. "homepage": "https://www.drupal.org/user/3573206"
  2271. },
  2272. {
  2273. "name": "pasqualle",
  2274. "homepage": "https://www.drupal.org/user/80733"
  2275. },
  2276. {
  2277. "name": "vishalkhode",
  2278. "homepage": "https://www.drupal.org/user/2439156"
  2279. }
  2280. ],
  2281. "description": "Provides basic revert and update functionality for other modules.",
  2282. "homepage": "https://www.drupal.org/project/config_update",
  2283. "support": {
  2284. "source": "https://git.drupalcode.org/project/config_update"
  2285. }
  2286. },
  2287. {
  2288. "name": "drupal/context",
  2289. "version": "5.0.0-rc2",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://git.drupalcode.org/project/context.git",
  2293. "reference": "5.0.0-rc2"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  2298. "reference": "5.0.0-rc2",
  2299. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  2300. },
  2301. "require": {
  2302. "drupal/core": "^9.3 || ^10 || ^11"
  2303. },
  2304. "type": "drupal-module",
  2305. "extra": {
  2306. "drupal": {
  2307. "version": "5.0.0-rc2",
  2308. "datestamp": "1741253306",
  2309. "security-coverage": {
  2310. "status": "not-covered",
  2311. "message": "RC releases are not covered by Drupal security advisories."
  2312. }
  2313. }
  2314. },
  2315. "notification-url": "https://packages.drupal.org/8/downloads",
  2316. "license": [
  2317. "MIT"
  2318. ],
  2319. "authors": [
  2320. {
  2321. "name": "Christoffer Palm",
  2322. "homepage": "http://www.oddhill.se/",
  2323. "email": "christoffer.palm@oddhill.se",
  2324. "role": "Developer"
  2325. },
  2326. {
  2327. "name": "boshtian",
  2328. "homepage": "https://www.drupal.org/user/1773456"
  2329. },
  2330. {
  2331. "name": "colan",
  2332. "homepage": "https://www.drupal.org/user/58704"
  2333. },
  2334. {
  2335. "name": "emanaton",
  2336. "homepage": "https://www.drupal.org/user/120853"
  2337. },
  2338. {
  2339. "name": "febbraro",
  2340. "homepage": "https://www.drupal.org/user/43670"
  2341. },
  2342. {
  2343. "name": "fizk",
  2344. "homepage": "https://www.drupal.org/user/473174"
  2345. },
  2346. {
  2347. "name": "hass",
  2348. "homepage": "https://www.drupal.org/user/85918"
  2349. },
  2350. {
  2351. "name": "hefox",
  2352. "homepage": "https://www.drupal.org/user/426416"
  2353. },
  2354. {
  2355. "name": "jmiccolis",
  2356. "homepage": "https://www.drupal.org/user/31731"
  2357. },
  2358. {
  2359. "name": "kristen pol",
  2360. "homepage": "https://www.drupal.org/user/8389"
  2361. },
  2362. {
  2363. "name": "mandclu",
  2364. "homepage": "https://www.drupal.org/user/52136"
  2365. },
  2366. {
  2367. "name": "nedjo",
  2368. "homepage": "https://www.drupal.org/user/4481"
  2369. },
  2370. {
  2371. "name": "NormySan",
  2372. "homepage": "https://www.drupal.org/user/112352"
  2373. },
  2374. {
  2375. "name": "patricksettle",
  2376. "homepage": "https://www.drupal.org/user/26618"
  2377. },
  2378. {
  2379. "name": "paulocs",
  2380. "homepage": "https://www.drupal.org/user/3640109"
  2381. },
  2382. {
  2383. "name": "steven jones",
  2384. "homepage": "https://www.drupal.org/user/99644"
  2385. },
  2386. {
  2387. "name": "tekante",
  2388. "homepage": "https://www.drupal.org/user/640024"
  2389. },
  2390. {
  2391. "name": "yhahn",
  2392. "homepage": "https://www.drupal.org/user/264833"
  2393. }
  2394. ],
  2395. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2396. "homepage": "https://github.com/oddhill/context",
  2397. "keywords": [
  2398. "Drupal",
  2399. "block",
  2400. "conditions",
  2401. "context",
  2402. "visibility"
  2403. ],
  2404. "support": {
  2405. "source": "https://github.com/oddhill/context",
  2406. "issues": "https://github.com/oddhill/context/issues",
  2407. "docs": "https://github.com/oddhill/context"
  2408. }
  2409. },
  2410. {
  2411. "name": "drupal/core",
  2412. "version": "10.6.5",
  2413. "source": {
  2414. "type": "git",
  2415. "url": "https://github.com/drupal/core.git",
  2416. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  2417. },
  2418. "dist": {
  2419. "type": "zip",
  2420. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  2421. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  2422. "shasum": ""
  2423. },
  2424. "require": {
  2425. "asm89/stack-cors": "^2.3",
  2426. "composer-runtime-api": "^2.1",
  2427. "composer/semver": "^3.3",
  2428. "doctrine/lexer": "^2",
  2429. "egulias/email-validator": "^3.2.1|^4.0",
  2430. "ext-date": "*",
  2431. "ext-dom": "*",
  2432. "ext-filter": "*",
  2433. "ext-gd": "*",
  2434. "ext-hash": "*",
  2435. "ext-json": "*",
  2436. "ext-pcre": "*",
  2437. "ext-pdo": "*",
  2438. "ext-session": "*",
  2439. "ext-simplexml": "*",
  2440. "ext-spl": "*",
  2441. "ext-tokenizer": "*",
  2442. "ext-xml": "*",
  2443. "guzzlehttp/guzzle": "^7.5",
  2444. "guzzlehttp/psr7": "^2.4.5",
  2445. "masterminds/html5": "^2.7",
  2446. "mck89/peast": "^1.14",
  2447. "pear/archive_tar": "^1.4.14",
  2448. "php": ">=8.1.0",
  2449. "psr/log": "^3.0",
  2450. "sebastian/diff": "^4",
  2451. "symfony/console": "^6.4",
  2452. "symfony/dependency-injection": "^6.4",
  2453. "symfony/event-dispatcher": "^6.4",
  2454. "symfony/filesystem": "^6.4",
  2455. "symfony/finder": "^6.4",
  2456. "symfony/http-foundation": "^6.4",
  2457. "symfony/http-kernel": "^6.4",
  2458. "symfony/mailer": "^6.4",
  2459. "symfony/mime": "^6.4",
  2460. "symfony/polyfill-iconv": "^1.26",
  2461. "symfony/process": "^6.4.33",
  2462. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2463. "symfony/routing": "^6.4",
  2464. "symfony/serializer": "^6.4",
  2465. "symfony/validator": "^6.4",
  2466. "symfony/yaml": "^6.4",
  2467. "twig/twig": "^3.22.0"
  2468. },
  2469. "conflict": {
  2470. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  2471. "drush/drush": "<12.4.3"
  2472. },
  2473. "replace": {
  2474. "drupal/core-annotation": "self.version",
  2475. "drupal/core-assertion": "self.version",
  2476. "drupal/core-class-finder": "self.version",
  2477. "drupal/core-datetime": "self.version",
  2478. "drupal/core-dependency-injection": "self.version",
  2479. "drupal/core-diff": "self.version",
  2480. "drupal/core-discovery": "self.version",
  2481. "drupal/core-event-dispatcher": "self.version",
  2482. "drupal/core-file-cache": "self.version",
  2483. "drupal/core-file-security": "self.version",
  2484. "drupal/core-filesystem": "self.version",
  2485. "drupal/core-front-matter": "self.version",
  2486. "drupal/core-gettext": "self.version",
  2487. "drupal/core-graph": "self.version",
  2488. "drupal/core-http-foundation": "self.version",
  2489. "drupal/core-php-storage": "self.version",
  2490. "drupal/core-plugin": "self.version",
  2491. "drupal/core-proxy-builder": "self.version",
  2492. "drupal/core-render": "self.version",
  2493. "drupal/core-serialization": "self.version",
  2494. "drupal/core-transliteration": "self.version",
  2495. "drupal/core-utility": "self.version",
  2496. "drupal/core-uuid": "self.version",
  2497. "drupal/core-version": "self.version"
  2498. },
  2499. "suggest": {
  2500. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2501. },
  2502. "type": "drupal-core",
  2503. "extra": {
  2504. "drupal-scaffold": {
  2505. "file-mapping": {
  2506. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2507. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2508. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2509. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2510. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2511. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2512. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2513. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2514. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2515. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2516. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2517. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2518. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2519. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2520. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  2521. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2522. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2523. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2524. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2525. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2526. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2527. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2528. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  2529. }
  2530. }
  2531. },
  2532. "autoload": {
  2533. "files": [
  2534. "includes/bootstrap.inc"
  2535. ],
  2536. "psr-4": {
  2537. "Drupal\\Core\\": "lib/Drupal/Core",
  2538. "Drupal\\Component\\": "lib/Drupal/Component"
  2539. },
  2540. "classmap": [
  2541. "lib/Drupal.php",
  2542. "lib/Drupal/Component/DependencyInjection/Container.php",
  2543. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2544. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2545. "lib/Drupal/Component/Utility/Timer.php",
  2546. "lib/Drupal/Component/Utility/Unicode.php",
  2547. "lib/Drupal/Core/Cache/Cache.php",
  2548. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2549. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2550. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2551. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2552. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2553. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2554. "lib/Drupal/Core/Database/Connection.php",
  2555. "lib/Drupal/Core/Database/Database.php",
  2556. "lib/Drupal/Core/Database/StatementInterface.php",
  2557. "lib/Drupal/Core/DependencyInjection/Container.php",
  2558. "lib/Drupal/Core/DrupalKernel.php",
  2559. "lib/Drupal/Core/DrupalKernelInterface.php",
  2560. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2561. "lib/Drupal/Core/Site/Settings.php",
  2562. "lib/Drupal/Component/Datetime/Time.php"
  2563. ]
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "GPL-2.0-or-later"
  2568. ],
  2569. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2570. "support": {
  2571. "source": "https://github.com/drupal/core/tree/10.6.5"
  2572. },
  2573. "time": "2026-03-06T09:55:31+00:00"
  2574. },
  2575. {
  2576. "name": "drupal/core-composer-scaffold",
  2577. "version": "10.6.5",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2581. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  2586. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "composer-plugin-api": "^2",
  2591. "php": ">=7.3.0"
  2592. },
  2593. "conflict": {
  2594. "drupal-composer/drupal-scaffold": "*"
  2595. },
  2596. "require-dev": {
  2597. "composer/composer": "^1.8@stable"
  2598. },
  2599. "type": "composer-plugin",
  2600. "extra": {
  2601. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2602. "branch-alias": {
  2603. "dev-master": "1.0.x-dev"
  2604. }
  2605. },
  2606. "autoload": {
  2607. "psr-4": {
  2608. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2609. }
  2610. },
  2611. "notification-url": "https://packagist.org/downloads/",
  2612. "license": [
  2613. "GPL-2.0-or-later"
  2614. ],
  2615. "description": "A flexible Composer project scaffold builder.",
  2616. "homepage": "https://www.drupal.org/project/drupal",
  2617. "keywords": [
  2618. "drupal"
  2619. ],
  2620. "support": {
  2621. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  2622. },
  2623. "time": "2024-08-22T14:31:30+00:00"
  2624. },
  2625. {
  2626. "name": "drupal/core-project-message",
  2627. "version": "10.6.5",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/drupal/core-project-message.git",
  2631. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2636. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "composer-plugin-api": "^2",
  2641. "php": ">=7.3.0"
  2642. },
  2643. "type": "composer-plugin",
  2644. "extra": {
  2645. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "GPL-2.0-or-later"
  2655. ],
  2656. "description": "Adds a message after Composer installation.",
  2657. "homepage": "https://www.drupal.org/project/drupal",
  2658. "keywords": [
  2659. "drupal"
  2660. ],
  2661. "support": {
  2662. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  2663. },
  2664. "time": "2023-07-24T07:55:25+00:00"
  2665. },
  2666. {
  2667. "name": "drupal/core-recommended",
  2668. "version": "10.6.5",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/drupal/core-recommended.git",
  2672. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  2677. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  2678. "shasum": ""
  2679. },
  2680. "require": {
  2681. "asm89/stack-cors": "~v2.3.0",
  2682. "composer/semver": "~3.4.4",
  2683. "doctrine/deprecations": "~1.1.5",
  2684. "doctrine/lexer": "~2.1.1",
  2685. "drupal/core": "10.6.5",
  2686. "egulias/email-validator": "~4.0.4",
  2687. "guzzlehttp/guzzle": "~7.10.0",
  2688. "guzzlehttp/promises": "~2.3.0",
  2689. "guzzlehttp/psr7": "~2.8.0",
  2690. "masterminds/html5": "~2.10.0",
  2691. "mck89/peast": "~v1.17.4",
  2692. "pear/archive_tar": "~1.6.0",
  2693. "pear/console_getopt": "~v1.4.3",
  2694. "pear/pear-core-minimal": "~v1.10.16",
  2695. "pear/pear_exception": "~v1.0.2",
  2696. "psr/container": "~2.0.2",
  2697. "psr/event-dispatcher": "~1.0.0",
  2698. "psr/http-client": "~1.0.3",
  2699. "psr/http-factory": "~1.1.0",
  2700. "psr/log": "~3.0.2",
  2701. "ralouphie/getallheaders": "~3.0.3",
  2702. "sebastian/diff": "~4.0.6",
  2703. "symfony/console": "~v6.4.27",
  2704. "symfony/dependency-injection": "~v6.4.26",
  2705. "symfony/deprecation-contracts": "~v3.6.0",
  2706. "symfony/error-handler": "~v6.4.26",
  2707. "symfony/event-dispatcher": "~v6.4.25",
  2708. "symfony/event-dispatcher-contracts": "~v3.6.0",
  2709. "symfony/filesystem": "~v6.4.24",
  2710. "symfony/finder": "~v6.4.27",
  2711. "symfony/http-foundation": "~v6.4.29",
  2712. "symfony/http-kernel": "~v6.4.29",
  2713. "symfony/mailer": "~v6.4.27",
  2714. "symfony/mime": "~v6.4.26",
  2715. "symfony/polyfill-ctype": "~v1.33.0",
  2716. "symfony/polyfill-iconv": "~v1.33.0",
  2717. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  2718. "symfony/polyfill-intl-idn": "~v1.33.0",
  2719. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  2720. "symfony/polyfill-mbstring": "~v1.33.0",
  2721. "symfony/polyfill-php83": "~v1.33.0",
  2722. "symfony/process": "~v6.4.33",
  2723. "symfony/psr-http-message-bridge": "~v6.4.24",
  2724. "symfony/routing": "~v6.4.28",
  2725. "symfony/serializer": "~v6.4.27",
  2726. "symfony/service-contracts": "~v3.6.1",
  2727. "symfony/string": "~v6.4.26",
  2728. "symfony/translation-contracts": "~v3.6.1",
  2729. "symfony/validator": "~v6.4.29",
  2730. "symfony/var-dumper": "~v6.4.26",
  2731. "symfony/var-exporter": "~v6.4.26",
  2732. "symfony/yaml": "~v6.4.26",
  2733. "twig/twig": "~v3.22.0"
  2734. },
  2735. "conflict": {
  2736. "webflo/drupal-core-strict": "*"
  2737. },
  2738. "type": "metapackage",
  2739. "notification-url": "https://packagist.org/downloads/",
  2740. "license": [
  2741. "GPL-2.0-or-later"
  2742. ],
  2743. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2744. "support": {
  2745. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  2746. },
  2747. "time": "2026-03-06T09:55:31+00:00"
  2748. },
  2749. {
  2750. "name": "drupal/ctools",
  2751. "version": "4.1.0",
  2752. "source": {
  2753. "type": "git",
  2754. "url": "https://git.drupalcode.org/project/ctools.git",
  2755. "reference": "4.1.0"
  2756. },
  2757. "dist": {
  2758. "type": "zip",
  2759. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2760. "reference": "4.1.0",
  2761. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2762. },
  2763. "require": {
  2764. "drupal/core": "^9.5 || ^10 || ^11"
  2765. },
  2766. "type": "drupal-module",
  2767. "extra": {
  2768. "drupal": {
  2769. "version": "4.1.0",
  2770. "datestamp": "1718144949",
  2771. "security-coverage": {
  2772. "status": "covered",
  2773. "message": "Covered by Drupal's security advisory policy"
  2774. }
  2775. },
  2776. "branch-alias": {
  2777. "dev-8.x-3.x": "3.x-dev"
  2778. }
  2779. },
  2780. "notification-url": "https://packages.drupal.org/8/downloads",
  2781. "license": [
  2782. "GPL-2.0-or-later"
  2783. ],
  2784. "authors": [
  2785. {
  2786. "name": "Kris Vanderwater (EclipseGc)",
  2787. "homepage": "https://www.drupal.org/u/eclipsegc",
  2788. "role": "Maintainer"
  2789. },
  2790. {
  2791. "name": "Jakob Perry (japerry)",
  2792. "homepage": "https://www.drupal.org/u/japerry",
  2793. "role": "Maintainer"
  2794. },
  2795. {
  2796. "name": "Tim Plunkett (tim.plunkett)",
  2797. "homepage": "https://www.drupal.org/u/timplunkett",
  2798. "role": "Maintainer"
  2799. },
  2800. {
  2801. "name": "James Gilliland (neclimdul)",
  2802. "homepage": "https://www.drupal.org/u/neclimdul",
  2803. "role": "Maintainer"
  2804. },
  2805. {
  2806. "name": "Daniel Wehner (dawehner)",
  2807. "homepage": "https://www.drupal.org/u/dawehner",
  2808. "role": "Maintainer"
  2809. },
  2810. {
  2811. "name": "joelpittet",
  2812. "homepage": "https://www.drupal.org/user/160302"
  2813. },
  2814. {
  2815. "name": "merlinofchaos",
  2816. "homepage": "https://www.drupal.org/user/26979"
  2817. },
  2818. {
  2819. "name": "neclimdul",
  2820. "homepage": "https://www.drupal.org/user/48673"
  2821. },
  2822. {
  2823. "name": "sdboyer",
  2824. "homepage": "https://www.drupal.org/user/146719"
  2825. },
  2826. {
  2827. "name": "sun",
  2828. "homepage": "https://www.drupal.org/user/54136"
  2829. },
  2830. {
  2831. "name": "tim.plunkett",
  2832. "homepage": "https://www.drupal.org/user/241634"
  2833. }
  2834. ],
  2835. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2836. "homepage": "https://www.drupal.org/project/ctools",
  2837. "support": {
  2838. "source": "https://git.drupalcode.org/project/ctools",
  2839. "issues": "https://www.drupal.org/project/issues/ctools"
  2840. }
  2841. },
  2842. {
  2843. "name": "drupal/date_range_formatter",
  2844. "version": "4.0.2",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2848. "reference": "4.0.2"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2853. "reference": "4.0.2",
  2854. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2855. },
  2856. "require": {
  2857. "drupal/core": "^8 || ^9 || ^10"
  2858. },
  2859. "type": "drupal-module",
  2860. "extra": {
  2861. "drupal": {
  2862. "version": "4.0.2",
  2863. "datestamp": "1703156621",
  2864. "security-coverage": {
  2865. "status": "covered",
  2866. "message": "Covered by Drupal's security advisory policy"
  2867. }
  2868. }
  2869. },
  2870. "notification-url": "https://packages.drupal.org/8/downloads",
  2871. "license": [
  2872. "GPL-2.0-or-later"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "maximpodorov",
  2877. "homepage": "https://www.drupal.org/user/515310"
  2878. },
  2879. {
  2880. "name": "sudishth",
  2881. "homepage": "https://www.drupal.org/user/1440562"
  2882. }
  2883. ],
  2884. "description": "Formats date ranges.",
  2885. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2886. "support": {
  2887. "source": "https://git.drupalcode.org/project/date_range_formatter"
  2888. }
  2889. },
  2890. {
  2891. "name": "drupal/devel",
  2892. "version": "5.5.0",
  2893. "source": {
  2894. "type": "git",
  2895. "url": "https://git.drupalcode.org/project/devel.git",
  2896. "reference": "5.5.0"
  2897. },
  2898. "dist": {
  2899. "type": "zip",
  2900. "url": "https://ftp.drupal.org/files/projects/devel-5.5.0.zip",
  2901. "reference": "5.5.0",
  2902. "shasum": "b6f45c84ec31bc18817c7464b51e951dec73d5ce"
  2903. },
  2904. "require": {
  2905. "doctrine/common": "^2.7 || ^3.4",
  2906. "drupal/core": "^10.3 || ^11 || ^12",
  2907. "php": ">=8.3",
  2908. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  2909. },
  2910. "conflict": {
  2911. "drupal/core": "<10.3",
  2912. "drush/drush": "<13.7.0"
  2913. },
  2914. "require-dev": {
  2915. "drupal/navigation_extra_tools": "1.0.x-dev",
  2916. "drush/drush": "^13",
  2917. "firephp/firephp-core": "^0.5.3"
  2918. },
  2919. "type": "drupal-module",
  2920. "extra": {
  2921. "drupal": {
  2922. "version": "5.5.0",
  2923. "datestamp": "1764211205",
  2924. "security-coverage": {
  2925. "status": "covered",
  2926. "message": "Covered by Drupal's security advisory policy"
  2927. }
  2928. }
  2929. },
  2930. "notification-url": "https://packages.drupal.org/8/downloads",
  2931. "license": [
  2932. "GPL-2.0-or-later"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "moshe weitzman",
  2937. "homepage": "https://www.drupal.org/user/23"
  2938. }
  2939. ],
  2940. "description": "Various blocks, pages, and functions for developers.",
  2941. "homepage": "https://www.drupal.org/project/devel",
  2942. "support": {
  2943. "source": "https://gitlab.com/drupalspoons/devel",
  2944. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  2945. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  2946. }
  2947. },
  2948. {
  2949. "name": "drupal/domain",
  2950. "version": "2.0.0",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://git.drupalcode.org/project/domain.git",
  2954. "reference": "2.0.0"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0.zip",
  2959. "reference": "2.0.0",
  2960. "shasum": "c53dc7621a3cac591b40025911711e9b852feafa"
  2961. },
  2962. "require": {
  2963. "drupal/core": "^10.2 || ^11"
  2964. },
  2965. "require-dev": {
  2966. "drupal/domain_access": "*",
  2967. "drupal/domain_config": "*"
  2968. },
  2969. "type": "drupal-module",
  2970. "extra": {
  2971. "drupal": {
  2972. "version": "2.0.0",
  2973. "datestamp": "1772625533",
  2974. "security-coverage": {
  2975. "status": "covered",
  2976. "message": "Covered by Drupal's security advisory policy"
  2977. }
  2978. }
  2979. },
  2980. "notification-url": "https://packages.drupal.org/8/downloads",
  2981. "license": [
  2982. "GPL-2.0-or-later"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "agentrickard",
  2987. "homepage": "https://www.drupal.org/user/20975"
  2988. },
  2989. {
  2990. "name": "danrod",
  2991. "homepage": "https://www.drupal.org/user/19150"
  2992. },
  2993. {
  2994. "name": "mably",
  2995. "homepage": "https://www.drupal.org/user/3375160"
  2996. },
  2997. {
  2998. "name": "nonsie",
  2999. "homepage": "https://www.drupal.org/user/29899"
  3000. },
  3001. {
  3002. "name": "webflo",
  3003. "homepage": "https://www.drupal.org/user/254778"
  3004. }
  3005. ],
  3006. "description": "Creates domain records within a Drupal installation.",
  3007. "homepage": "https://www.drupal.org/project/domain",
  3008. "support": {
  3009. "source": "https://git.drupalcode.org/project/domain"
  3010. }
  3011. },
  3012. {
  3013. "name": "drupal/domain_access",
  3014. "version": "2.0.0",
  3015. "require": {
  3016. "drupal/core": "^10.2 || ^11",
  3017. "drupal/domain": "*"
  3018. },
  3019. "type": "metapackage",
  3020. "extra": {
  3021. "drupal": {
  3022. "version": "2.0.0",
  3023. "datestamp": "1772625533",
  3024. "security-coverage": {
  3025. "status": "covered",
  3026. "message": "Covered by Drupal's security advisory policy"
  3027. }
  3028. }
  3029. },
  3030. "notification-url": "https://packages.drupal.org/8/downloads",
  3031. "license": [
  3032. "GPL-2.0-or-later"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "agentrickard",
  3037. "homepage": "https://www.drupal.org/user/20975"
  3038. },
  3039. {
  3040. "name": "danrod",
  3041. "homepage": "https://www.drupal.org/user/19150"
  3042. },
  3043. {
  3044. "name": "mably",
  3045. "homepage": "https://www.drupal.org/user/3375160"
  3046. },
  3047. {
  3048. "name": "nonsie",
  3049. "homepage": "https://www.drupal.org/user/29899"
  3050. },
  3051. {
  3052. "name": "webflo",
  3053. "homepage": "https://www.drupal.org/user/254778"
  3054. }
  3055. ],
  3056. "description": "Domain-based access control for content.",
  3057. "homepage": "https://www.drupal.org/project/domain",
  3058. "support": {
  3059. "source": "https://git.drupalcode.org/project/domain"
  3060. }
  3061. },
  3062. {
  3063. "name": "drupal/domain_config",
  3064. "version": "2.0.0-beta1",
  3065. "require": {
  3066. "drupal/core": "^9 || ^10",
  3067. "drupal/domain": "*"
  3068. },
  3069. "type": "metapackage",
  3070. "extra": {
  3071. "drupal": {
  3072. "version": "2.0.0-beta1",
  3073. "datestamp": "1686067462",
  3074. "security-coverage": {
  3075. "status": "not-covered",
  3076. "message": "Beta releases are not covered by Drupal security advisories."
  3077. }
  3078. }
  3079. },
  3080. "notification-url": "https://packages.drupal.org/8/downloads",
  3081. "license": [
  3082. "GPL-2.0-or-later"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "agentrickard",
  3087. "homepage": "https://www.drupal.org/user/20975"
  3088. },
  3089. {
  3090. "name": "nonsie",
  3091. "homepage": "https://www.drupal.org/user/29899"
  3092. },
  3093. {
  3094. "name": "webflo",
  3095. "homepage": "https://www.drupal.org/user/254778"
  3096. }
  3097. ],
  3098. "description": "Allows domain specific configuration.",
  3099. "homepage": "https://www.drupal.org/project/domain",
  3100. "support": {
  3101. "source": "https://git.drupalcode.org/project/domain"
  3102. }
  3103. },
  3104. {
  3105. "name": "drupal/domain_menu_access",
  3106. "version": "2.0.1",
  3107. "source": {
  3108. "type": "git",
  3109. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3110. "reference": "2.0.1"
  3111. },
  3112. "dist": {
  3113. "type": "zip",
  3114. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-2.0.1.zip",
  3115. "reference": "2.0.1",
  3116. "shasum": "d2b94e6fbd4657b604ac15866d5b798fc40700b7"
  3117. },
  3118. "require": {
  3119. "drupal/core": "^10.2 || ^11",
  3120. "drupal/domain": "^1.0 || ^2.0",
  3121. "drupal/domain_access": "*"
  3122. },
  3123. "require-dev": {
  3124. "drupal/menu_block": "^1.0",
  3125. "phpstan/phpstan-deprecation-rules": "^1.1",
  3126. "phpstan/phpstan-strict-rules": "^1.5"
  3127. },
  3128. "suggest": {
  3129. "drupal/menu_block": "Provides configurable blocks of menu links and is needed to allow to install the submodule domain_menu_access_menu_block"
  3130. },
  3131. "type": "drupal-module",
  3132. "extra": {
  3133. "drupal": {
  3134. "version": "2.0.1",
  3135. "datestamp": "1744139145",
  3136. "security-coverage": {
  3137. "status": "covered",
  3138. "message": "Covered by Drupal's security advisory policy"
  3139. }
  3140. }
  3141. },
  3142. "notification-url": "https://packages.drupal.org/8/downloads",
  3143. "license": [
  3144. "GPL-2.0-or-later"
  3145. ],
  3146. "authors": [
  3147. {
  3148. "name": "maciej.zgadzaj",
  3149. "homepage": "https://www.drupal.org/u/maciejzgadzaj",
  3150. "role": "Maintainer"
  3151. },
  3152. {
  3153. "name": "Oleksandr Dekhteruk (pifagor)",
  3154. "homepage": "https://www.drupal.org/u/pifagor",
  3155. "role": "Co-maintainer"
  3156. },
  3157. {
  3158. "name": "Sebastien MALOT (Sebastien M.)",
  3159. "homepage": "https://www.drupal.org/u/sebastien-m",
  3160. "role": "Co-maintainer"
  3161. },
  3162. {
  3163. "name": "Tim Diels (tim-diels)",
  3164. "homepage": "https://www.drupal.org/u/tim-diels",
  3165. "role": "Co-maintainer"
  3166. }
  3167. ],
  3168. "description": "Domain-based access control for menu link.",
  3169. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3170. "support": {
  3171. "source": "https://git.drupalcode.org/project/domain_menu_access",
  3172. "issues": "https://drupal.org/project/issues/domain_menu_access"
  3173. }
  3174. },
  3175. {
  3176. "name": "drupal/domain_site_settings",
  3177. "version": "1.6.0",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3181. "reference": "8.x-1.6"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3186. "reference": "8.x-1.6",
  3187. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3188. },
  3189. "require": {
  3190. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3191. "drupal/domain": "^1.0 || ^2.0",
  3192. "drupal/domain_config": "*"
  3193. },
  3194. "type": "drupal-module",
  3195. "extra": {
  3196. "drupal": {
  3197. "version": "8.x-1.6",
  3198. "datestamp": "1726238712",
  3199. "security-coverage": {
  3200. "status": "covered",
  3201. "message": "Covered by Drupal's security advisory policy"
  3202. }
  3203. }
  3204. },
  3205. "notification-url": "https://packages.drupal.org/8/downloads",
  3206. "license": [
  3207. "GPL-2.0+"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "aloknarwaria",
  3212. "homepage": "https://www.drupal.org/user/906640"
  3213. },
  3214. {
  3215. "name": "jeroent",
  3216. "homepage": "https://www.drupal.org/user/2228934"
  3217. },
  3218. {
  3219. "name": "malaynayak",
  3220. "homepage": "https://www.drupal.org/user/3529755"
  3221. }
  3222. ],
  3223. "description": "Basic Site Setting for Domains.",
  3224. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3225. "keywords": [
  3226. "Drupal"
  3227. ],
  3228. "support": {
  3229. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3230. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3231. }
  3232. },
  3233. {
  3234. "name": "drupal/email_registration",
  3235. "version": "1.4.0",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://git.drupalcode.org/project/email_registration.git",
  3239. "reference": "8.x-1.4"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3244. "reference": "8.x-1.4",
  3245. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3246. },
  3247. "require": {
  3248. "drupal/core": "^9.1 || ^10"
  3249. },
  3250. "conflict": {
  3251. "drupal/commerce": "<2.12"
  3252. },
  3253. "require-dev": {
  3254. "drupal/commerce": "^2.0",
  3255. "drupal/token": "*"
  3256. },
  3257. "type": "drupal-module",
  3258. "extra": {
  3259. "drupal": {
  3260. "version": "8.x-1.4",
  3261. "datestamp": "1700548925",
  3262. "security-coverage": {
  3263. "status": "covered",
  3264. "message": "Covered by Drupal's security advisory policy"
  3265. }
  3266. }
  3267. },
  3268. "notification-url": "https://packages.drupal.org/8/downloads",
  3269. "license": [
  3270. "GPL-2.0-or-later"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Greg Knaddison (greggles)",
  3275. "homepage": "https://www.drupal.org/u/greggles",
  3276. "role": "Maintainer"
  3277. },
  3278. {
  3279. "name": "Andrey Postnikov (andypost)",
  3280. "homepage": "https://www.drupal.org/u/andypost",
  3281. "role": "Maintainer"
  3282. },
  3283. {
  3284. "name": "Chris Herberte",
  3285. "homepage": "https://www.drupal.org/u/chris-herberte",
  3286. "role": "Maintainer"
  3287. },
  3288. {
  3289. "name": "Moshe Weitzman (moshe weitzman)",
  3290. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3291. "role": "Maintainer"
  3292. },
  3293. {
  3294. "name": "Grevil",
  3295. "homepage": "https://www.drupal.org/user/3668491"
  3296. },
  3297. {
  3298. "name": "moshe weitzman",
  3299. "homepage": "https://www.drupal.org/user/23"
  3300. }
  3301. ],
  3302. "description": "Allows users to register with an email address as their username.",
  3303. "homepage": "https://www.drupal.org/project/email_registration",
  3304. "support": {
  3305. "source": "https://git.drupalcode.org/project/email_registration",
  3306. "issues": "http://drupal.org/project/issues/email_registration"
  3307. }
  3308. },
  3309. {
  3310. "name": "drupal/entity",
  3311. "version": "1.5.0",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://git.drupalcode.org/project/entity.git",
  3315. "reference": "8.x-1.5"
  3316. },
  3317. "dist": {
  3318. "type": "zip",
  3319. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.5.zip",
  3320. "reference": "8.x-1.5",
  3321. "shasum": "86c0b75c173144aaedde3e3258dc0d3ce11d1a22"
  3322. },
  3323. "require": {
  3324. "drupal/core": "^10.1 || ^11"
  3325. },
  3326. "type": "drupal-module",
  3327. "extra": {
  3328. "drupal": {
  3329. "version": "8.x-1.5",
  3330. "datestamp": "1723380062",
  3331. "security-coverage": {
  3332. "status": "covered",
  3333. "message": "Covered by Drupal's security advisory policy"
  3334. }
  3335. }
  3336. },
  3337. "notification-url": "https://packages.drupal.org/8/downloads",
  3338. "license": [
  3339. "GPL-2.0-or-later"
  3340. ],
  3341. "authors": [
  3342. {
  3343. "name": "berdir",
  3344. "homepage": "https://www.drupal.org/user/214652"
  3345. },
  3346. {
  3347. "name": "bojanz",
  3348. "homepage": "https://www.drupal.org/user/86106"
  3349. },
  3350. {
  3351. "name": "dawehner",
  3352. "homepage": "https://www.drupal.org/user/99340"
  3353. },
  3354. {
  3355. "name": "dixon_",
  3356. "homepage": "https://www.drupal.org/user/239911"
  3357. },
  3358. {
  3359. "name": "fago",
  3360. "homepage": "https://www.drupal.org/user/16747"
  3361. },
  3362. {
  3363. "name": "mglaman",
  3364. "homepage": "https://www.drupal.org/user/2416470"
  3365. },
  3366. {
  3367. "name": "TR",
  3368. "homepage": "https://www.drupal.org/user/202830"
  3369. }
  3370. ],
  3371. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3372. "homepage": "https://www.drupal.org/project/entity",
  3373. "support": {
  3374. "source": "https://git.drupalcode.org/project/entity",
  3375. "issues": "https://www.drupal.org/project/issues/entity"
  3376. }
  3377. },
  3378. {
  3379. "name": "drupal/field_group",
  3380. "version": "3.6.0",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://git.drupalcode.org/project/field_group.git",
  3384. "reference": "8.x-3.6"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3389. "reference": "8.x-3.6",
  3390. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3391. },
  3392. "require": {
  3393. "drupal/core": "^9.2 || ^10 || ^11"
  3394. },
  3395. "require-dev": {
  3396. "drupal/jquery_ui_accordion": "*"
  3397. },
  3398. "type": "drupal-module",
  3399. "extra": {
  3400. "drupal": {
  3401. "version": "8.x-3.6",
  3402. "datestamp": "1722672510",
  3403. "security-coverage": {
  3404. "status": "covered",
  3405. "message": "Covered by Drupal's security advisory policy"
  3406. }
  3407. }
  3408. },
  3409. "notification-url": "https://packages.drupal.org/8/downloads",
  3410. "license": [
  3411. "GPL-2.0-or-later"
  3412. ],
  3413. "authors": [
  3414. {
  3415. "name": "anybody",
  3416. "homepage": "https://www.drupal.org/user/291091"
  3417. },
  3418. {
  3419. "name": "grevil",
  3420. "homepage": "https://www.drupal.org/user/3668491"
  3421. },
  3422. {
  3423. "name": "hydra",
  3424. "homepage": "https://www.drupal.org/user/647364"
  3425. },
  3426. {
  3427. "name": "joevagyok",
  3428. "homepage": "https://www.drupal.org/user/2876343"
  3429. },
  3430. {
  3431. "name": "jyve",
  3432. "homepage": "https://www.drupal.org/user/591438"
  3433. },
  3434. {
  3435. "name": "nils.destoop",
  3436. "homepage": "https://www.drupal.org/user/361625"
  3437. },
  3438. {
  3439. "name": "Stalski",
  3440. "homepage": "https://www.drupal.org/user/322618"
  3441. },
  3442. {
  3443. "name": "swentel",
  3444. "homepage": "https://www.drupal.org/user/107403"
  3445. }
  3446. ],
  3447. "description": "Provides the field_group module.",
  3448. "homepage": "https://www.drupal.org/project/field_group",
  3449. "support": {
  3450. "source": "https://git.drupalcode.org/project/field_group",
  3451. "issues": "https://www.drupal.org/project/issues/field_group"
  3452. }
  3453. },
  3454. {
  3455. "name": "drupal/filefield_sources",
  3456. "version": "dev-2.0.x",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3460. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3461. },
  3462. "require": {
  3463. "drupal/core": "^9.2.0 | ^10"
  3464. },
  3465. "require-dev": {
  3466. "drupal/imce": "^3.0"
  3467. },
  3468. "type": "drupal-module",
  3469. "extra": {
  3470. "branch-alias": {
  3471. "dev-2.0.x": "2.0.x-dev"
  3472. },
  3473. "drupal": {
  3474. "version": "2.0.x-dev",
  3475. "datestamp": "1714083250",
  3476. "security-coverage": {
  3477. "status": "not-covered",
  3478. "message": "Dev releases are not covered by Drupal security advisories."
  3479. }
  3480. }
  3481. },
  3482. "notification-url": "https://packages.drupal.org/8/downloads",
  3483. "license": [
  3484. "GPL-2.0-or-later"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Nate Lampton (quicksketch)",
  3489. "homepage": "https://www.drupal.org/u/quicksketch",
  3490. "role": "Maintainer"
  3491. },
  3492. {
  3493. "name": "Andrey Khromyshev (profak)",
  3494. "homepage": "https://www.drupal.org/u/profak",
  3495. "role": "Maintainer"
  3496. },
  3497. {
  3498. "name": "David Valdez (gnuget)",
  3499. "homepage": "https://www.drupal.org/u/gnuget",
  3500. "role": "Maintainer"
  3501. },
  3502. {
  3503. "name": "quicksketch",
  3504. "homepage": "https://www.drupal.org/user/35821"
  3505. }
  3506. ],
  3507. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3508. "homepage": "https://www.drupal.org/project/filefield_sources",
  3509. "support": {
  3510. "source": "https://git.drupalcode.org/project/filefield_sources",
  3511. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3512. "irc": "irc://irc.freenode.org/drupal-contribute"
  3513. }
  3514. },
  3515. {
  3516. "name": "drupal/filter_perms",
  3517. "version": "2.0.1",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3521. "reference": "2.0.1"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3526. "reference": "2.0.1",
  3527. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3528. },
  3529. "require": {
  3530. "drupal/core": "^9.0 || ^10.0 || ^11"
  3531. },
  3532. "type": "drupal-module",
  3533. "extra": {
  3534. "drupal": {
  3535. "version": "2.0.1",
  3536. "datestamp": "1722444219",
  3537. "security-coverage": {
  3538. "status": "covered",
  3539. "message": "Covered by Drupal's security advisory policy"
  3540. }
  3541. }
  3542. },
  3543. "notification-url": "https://packages.drupal.org/8/downloads",
  3544. "license": [
  3545. "GPL-2.0+"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "cYu",
  3550. "homepage": "https://www.drupal.org/user/202205"
  3551. },
  3552. {
  3553. "name": "deekayen",
  3554. "homepage": "https://www.drupal.org/user/972"
  3555. },
  3556. {
  3557. "name": "ivavictoria",
  3558. "homepage": "https://www.drupal.org/user/3061533"
  3559. },
  3560. {
  3561. "name": "justcaldwell",
  3562. "homepage": "https://www.drupal.org/user/290069"
  3563. },
  3564. {
  3565. "name": "mgbellaire",
  3566. "homepage": "https://www.drupal.org/user/1831932"
  3567. },
  3568. {
  3569. "name": "willzyx",
  3570. "homepage": "https://www.drupal.org/user/1043862"
  3571. }
  3572. ],
  3573. "description": "Provides role and module filters to simplify the user permissions page.",
  3574. "homepage": "https://www.drupal.org/project/filter_perms",
  3575. "support": {
  3576. "source": "http://cgit.drupalcode.org/filter_perms",
  3577. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3578. }
  3579. },
  3580. {
  3581. "name": "drupal/honeypot",
  3582. "version": "2.2.0",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://git.drupalcode.org/project/honeypot.git",
  3586. "reference": "2.2.0"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.0.zip",
  3591. "reference": "2.2.0",
  3592. "shasum": "56397c3779ebac1526cce9ecd39385017ee9a837"
  3593. },
  3594. "require": {
  3595. "drupal/core": "^10.3 || ^11"
  3596. },
  3597. "require-dev": {
  3598. "drupal/rules": "^4.0"
  3599. },
  3600. "type": "drupal-module",
  3601. "extra": {
  3602. "drupal": {
  3603. "version": "2.2.0",
  3604. "datestamp": "1723761042",
  3605. "security-coverage": {
  3606. "status": "covered",
  3607. "message": "Covered by Drupal's security advisory policy"
  3608. }
  3609. }
  3610. },
  3611. "notification-url": "https://packages.drupal.org/8/downloads",
  3612. "license": [
  3613. "GPL-2.0-or-later"
  3614. ],
  3615. "authors": [
  3616. {
  3617. "name": "Jeff Geerling",
  3618. "homepage": "https://www.drupal.org/user/389011",
  3619. "email": "geerlingguy@mac.com"
  3620. },
  3621. {
  3622. "name": "Manuel Garcia",
  3623. "homepage": "https://www.drupal.org/user/213194"
  3624. },
  3625. {
  3626. "name": "tr",
  3627. "homepage": "https://www.drupal.org/user/202830"
  3628. },
  3629. {
  3630. "name": "vijaycs85",
  3631. "homepage": "https://www.drupal.org/user/93488"
  3632. }
  3633. ],
  3634. "description": "Mitigates spam form submissions using the honeypot method.",
  3635. "homepage": "https://www.drupal.org/project/honeypot",
  3636. "keywords": [
  3637. "deterrent",
  3638. "form",
  3639. "honeypot",
  3640. "honeytrap",
  3641. "php",
  3642. "spam"
  3643. ],
  3644. "support": {
  3645. "source": "https://git.drupalcode.org/project/honeypot",
  3646. "issues": "https://www.drupal.org/project/issues/honeypot"
  3647. }
  3648. },
  3649. {
  3650. "name": "drupal/jquery_ui",
  3651. "version": "1.7.0",
  3652. "source": {
  3653. "type": "git",
  3654. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3655. "reference": "8.x-1.7"
  3656. },
  3657. "dist": {
  3658. "type": "zip",
  3659. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3660. "reference": "8.x-1.7",
  3661. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3662. },
  3663. "require": {
  3664. "drupal/core": "^9.2 || ^10 || ^11"
  3665. },
  3666. "type": "drupal-module",
  3667. "extra": {
  3668. "drupal": {
  3669. "version": "8.x-1.7",
  3670. "datestamp": "1717002098",
  3671. "security-coverage": {
  3672. "status": "covered",
  3673. "message": "Covered by Drupal's security advisory policy"
  3674. }
  3675. }
  3676. },
  3677. "notification-url": "https://packages.drupal.org/8/downloads",
  3678. "license": [
  3679. "GPL-2.0-or-later"
  3680. ],
  3681. "authors": [
  3682. {
  3683. "name": "bnjmnm",
  3684. "homepage": "https://www.drupal.org/user/2369194"
  3685. },
  3686. {
  3687. "name": "jjeff",
  3688. "homepage": "https://www.drupal.org/user/17190"
  3689. },
  3690. {
  3691. "name": "lauriii",
  3692. "homepage": "https://www.drupal.org/user/1078742"
  3693. },
  3694. {
  3695. "name": "litwol",
  3696. "homepage": "https://www.drupal.org/user/78134"
  3697. },
  3698. {
  3699. "name": "mfb",
  3700. "homepage": "https://www.drupal.org/user/12302"
  3701. },
  3702. {
  3703. "name": "mfer",
  3704. "homepage": "https://www.drupal.org/user/25701"
  3705. },
  3706. {
  3707. "name": "mikelutz",
  3708. "homepage": "https://www.drupal.org/user/2972409"
  3709. },
  3710. {
  3711. "name": "nod_",
  3712. "homepage": "https://www.drupal.org/user/598310"
  3713. },
  3714. {
  3715. "name": "phenaproxima",
  3716. "homepage": "https://www.drupal.org/user/205645"
  3717. },
  3718. {
  3719. "name": "RobLoach",
  3720. "homepage": "https://www.drupal.org/user/61114"
  3721. },
  3722. {
  3723. "name": "sun",
  3724. "homepage": "https://www.drupal.org/user/54136"
  3725. },
  3726. {
  3727. "name": "webchick",
  3728. "homepage": "https://www.drupal.org/user/24967"
  3729. },
  3730. {
  3731. "name": "Wim Leers",
  3732. "homepage": "https://www.drupal.org/user/99777"
  3733. },
  3734. {
  3735. "name": "zrpnr",
  3736. "homepage": "https://www.drupal.org/user/1448368"
  3737. }
  3738. ],
  3739. "description": "Provides jQuery UI library.",
  3740. "homepage": "https://www.drupal.org/project/jquery_ui",
  3741. "support": {
  3742. "source": "https://git.drupalcode.org/project/jquery_ui"
  3743. }
  3744. },
  3745. {
  3746. "name": "drupal/jquery_ui_draggable",
  3747. "version": "2.1.0",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3751. "reference": "2.1.0"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3756. "reference": "2.1.0",
  3757. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3758. },
  3759. "require": {
  3760. "drupal/core": "^9.2 || ^10 || ^11",
  3761. "drupal/jquery_ui": "^1.7"
  3762. },
  3763. "type": "drupal-module",
  3764. "extra": {
  3765. "drupal": {
  3766. "version": "2.1.0",
  3767. "datestamp": "1717015492",
  3768. "security-coverage": {
  3769. "status": "covered",
  3770. "message": "Covered by Drupal's security advisory policy"
  3771. }
  3772. }
  3773. },
  3774. "notification-url": "https://packages.drupal.org/8/downloads",
  3775. "license": [
  3776. "GPL-2.0-or-later"
  3777. ],
  3778. "authors": [
  3779. {
  3780. "name": "bnjmnm",
  3781. "homepage": "https://www.drupal.org/user/2369194"
  3782. },
  3783. {
  3784. "name": "lauriii",
  3785. "homepage": "https://www.drupal.org/user/1078742"
  3786. },
  3787. {
  3788. "name": "zrpnr",
  3789. "homepage": "https://www.drupal.org/user/1448368"
  3790. }
  3791. ],
  3792. "description": "Provides jQuery UI Draggable library.",
  3793. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3794. "support": {
  3795. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3796. }
  3797. },
  3798. {
  3799. "name": "drupal/jquery_ui_droppable",
  3800. "version": "2.1.0",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3804. "reference": "2.1.0"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3809. "reference": "2.1.0",
  3810. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3811. },
  3812. "require": {
  3813. "drupal/core": "^9.2 || ^10 || ^11",
  3814. "drupal/jquery_ui": "^1.7",
  3815. "drupal/jquery_ui_draggable": "^2.1"
  3816. },
  3817. "type": "drupal-module",
  3818. "extra": {
  3819. "drupal": {
  3820. "version": "2.1.0",
  3821. "datestamp": "1717031391",
  3822. "security-coverage": {
  3823. "status": "covered",
  3824. "message": "Covered by Drupal's security advisory policy"
  3825. }
  3826. }
  3827. },
  3828. "notification-url": "https://packages.drupal.org/8/downloads",
  3829. "license": [
  3830. "GPL-2.0-or-later"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "bnjmnm",
  3835. "homepage": "https://www.drupal.org/user/2369194"
  3836. },
  3837. {
  3838. "name": "lauriii",
  3839. "homepage": "https://www.drupal.org/user/1078742"
  3840. },
  3841. {
  3842. "name": "zrpnr",
  3843. "homepage": "https://www.drupal.org/user/1448368"
  3844. }
  3845. ],
  3846. "description": "Provides jQuery UI Droppable library.",
  3847. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3848. "support": {
  3849. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3850. }
  3851. },
  3852. {
  3853. "name": "drupal/jquery_ui_sortable",
  3854. "version": "2.0.1",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3858. "reference": "2.0.1"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  3863. "reference": "2.0.1",
  3864. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  3865. },
  3866. "require": {
  3867. "drupal/core": "^9.2 || ^10",
  3868. "drupal/jquery_ui": "^1.5"
  3869. },
  3870. "type": "drupal-module",
  3871. "extra": {
  3872. "drupal": {
  3873. "version": "2.0.1",
  3874. "datestamp": "1694604335",
  3875. "security-coverage": {
  3876. "status": "covered",
  3877. "message": "Covered by Drupal's security advisory policy"
  3878. }
  3879. }
  3880. },
  3881. "notification-url": "https://packages.drupal.org/8/downloads",
  3882. "license": [
  3883. "GPL-2.0-or-later"
  3884. ],
  3885. "authors": [
  3886. {
  3887. "name": "bnjmnm",
  3888. "homepage": "https://www.drupal.org/user/2369194"
  3889. },
  3890. {
  3891. "name": "lauriii",
  3892. "homepage": "https://www.drupal.org/user/1078742"
  3893. },
  3894. {
  3895. "name": "zrpnr",
  3896. "homepage": "https://www.drupal.org/user/1448368"
  3897. }
  3898. ],
  3899. "description": "Provides jQuery UI Sortable library.",
  3900. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  3901. "support": {
  3902. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  3903. }
  3904. },
  3905. {
  3906. "name": "drupal/js_cookie",
  3907. "version": "1.0.2",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://git.drupalcode.org/project/js_cookie.git",
  3911. "reference": "1.0.2"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.2.zip",
  3916. "reference": "1.0.2",
  3917. "shasum": "effcbee68083efc866aca2a1bfa3fc6e14fe0c2f"
  3918. },
  3919. "require": {
  3920. "drupal/core": "^9 || ^10 || ^11"
  3921. },
  3922. "type": "drupal-module",
  3923. "extra": {
  3924. "drupal": {
  3925. "version": "1.0.2",
  3926. "datestamp": "1762168962",
  3927. "security-coverage": {
  3928. "status": "covered",
  3929. "message": "Covered by Drupal's security advisory policy"
  3930. }
  3931. }
  3932. },
  3933. "notification-url": "https://packages.drupal.org/8/downloads",
  3934. "license": [
  3935. "GPL-2.0-or-later"
  3936. ],
  3937. "authors": [
  3938. {
  3939. "name": "anybody",
  3940. "homepage": "https://www.drupal.org/user/291091"
  3941. },
  3942. {
  3943. "name": "dave reid",
  3944. "homepage": "https://www.drupal.org/user/53892"
  3945. },
  3946. {
  3947. "name": "grevil",
  3948. "homepage": "https://www.drupal.org/user/3668491"
  3949. },
  3950. {
  3951. "name": "jan kellermann",
  3952. "homepage": "https://www.drupal.org/user/371731"
  3953. }
  3954. ],
  3955. "description": "Provides the js-cookie library as a dependency.",
  3956. "homepage": "https://www.drupal.org/project/js_cookie",
  3957. "support": {
  3958. "source": "https://git.drupalcode.org/project/js_cookie"
  3959. }
  3960. },
  3961. {
  3962. "name": "drupal/linkit",
  3963. "version": "6.1.4",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://git.drupalcode.org/project/linkit.git",
  3967. "reference": "6.1.4"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.4.zip",
  3972. "reference": "6.1.4",
  3973. "shasum": "f5544a39d691af5efd1532bd5403862a7153f60b"
  3974. },
  3975. "require": {
  3976. "drupal/core": "^10.1"
  3977. },
  3978. "require-dev": {
  3979. "drupal/ckeditor": "*",
  3980. "drupal/imce": "*"
  3981. },
  3982. "type": "drupal-module",
  3983. "extra": {
  3984. "drupal": {
  3985. "version": "6.1.4",
  3986. "datestamp": "1715203830",
  3987. "security-coverage": {
  3988. "status": "covered",
  3989. "message": "Covered by Drupal's security advisory policy"
  3990. }
  3991. }
  3992. },
  3993. "notification-url": "https://packages.drupal.org/8/downloads",
  3994. "license": [
  3995. "GPL-2.0-or-later"
  3996. ],
  3997. "authors": [
  3998. {
  3999. "name": "Emil Stjerneman",
  4000. "homepage": "https://stjerneman.com",
  4001. "email": "emil@stjerneman.com",
  4002. "role": "Maintainer"
  4003. },
  4004. {
  4005. "name": "johnwebdev",
  4006. "homepage": "https://www.drupal.org/user/3331569"
  4007. },
  4008. {
  4009. "name": "mark_fullmer",
  4010. "homepage": "https://www.drupal.org/user/2612816"
  4011. }
  4012. ],
  4013. "description": "Linkit - Enriched linking experience",
  4014. "homepage": "http://drupal.org/project/linkit",
  4015. "support": {
  4016. "source": "http://cgit.drupalcode.org/linkit",
  4017. "issues": "http://drupal.org/project/linkit"
  4018. }
  4019. },
  4020. {
  4021. "name": "drupal/login_emailusername",
  4022. "version": "2.1.0",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4026. "reference": "2.1.0"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4031. "reference": "2.1.0",
  4032. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4033. },
  4034. "require": {
  4035. "drupal/core": "^8.8 || ^9 || ^10"
  4036. },
  4037. "type": "drupal-module",
  4038. "extra": {
  4039. "drupal": {
  4040. "version": "2.1.0",
  4041. "datestamp": "1677072401",
  4042. "security-coverage": {
  4043. "status": "covered",
  4044. "message": "Covered by Drupal's security advisory policy"
  4045. }
  4046. },
  4047. "branch-alias": {
  4048. "dev-8.x-1.x": "8.1.x-dev"
  4049. }
  4050. },
  4051. "notification-url": "https://packages.drupal.org/8/downloads",
  4052. "license": [
  4053. "GPL-2.0-or-later"
  4054. ],
  4055. "authors": [
  4056. {
  4057. "name": "See contributors",
  4058. "homepage": "https://www.drupal.org/node/2820429/committers",
  4059. "role": "contributor"
  4060. },
  4061. {
  4062. "name": "rjjakes",
  4063. "homepage": "https://www.drupal.org/user/3457245"
  4064. },
  4065. {
  4066. "name": "VladimirAus",
  4067. "homepage": "https://www.drupal.org/user/673120"
  4068. }
  4069. ],
  4070. "description": "Login with the email as username.",
  4071. "homepage": "https://drupal.org/project/login_emailusername",
  4072. "support": {
  4073. "source": "https://git.drupalcode.org/project/login_emailusername",
  4074. "issues": "https://drupal.org/project/issues/login_emailusername"
  4075. }
  4076. },
  4077. {
  4078. "name": "drupal/maillog",
  4079. "version": "1.1.0",
  4080. "source": {
  4081. "type": "git",
  4082. "url": "https://git.drupalcode.org/project/maillog.git",
  4083. "reference": "8.x-1.1"
  4084. },
  4085. "dist": {
  4086. "type": "zip",
  4087. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4088. "reference": "8.x-1.1",
  4089. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4090. },
  4091. "require": {
  4092. "drupal/core": "^9 || ^10"
  4093. },
  4094. "type": "drupal-module",
  4095. "extra": {
  4096. "drupal": {
  4097. "version": "8.x-1.1",
  4098. "datestamp": "1685616898",
  4099. "security-coverage": {
  4100. "status": "covered",
  4101. "message": "Covered by Drupal's security advisory policy"
  4102. }
  4103. }
  4104. },
  4105. "notification-url": "https://packages.drupal.org/8/downloads",
  4106. "license": [
  4107. "GPL-2.0-or-later"
  4108. ],
  4109. "authors": [
  4110. {
  4111. "name": "berdir",
  4112. "homepage": "https://www.drupal.org/user/214652"
  4113. },
  4114. {
  4115. "name": "damienmckenna",
  4116. "homepage": "https://www.drupal.org/user/108450"
  4117. },
  4118. {
  4119. "name": "miro_dietiker",
  4120. "homepage": "https://www.drupal.org/user/227761"
  4121. },
  4122. {
  4123. "name": "pluess",
  4124. "homepage": "https://www.drupal.org/user/84659"
  4125. }
  4126. ],
  4127. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4128. "homepage": "https://www.drupal.org/project/maillog",
  4129. "support": {
  4130. "source": "https://git.drupalcode.org/project/maillog"
  4131. }
  4132. },
  4133. {
  4134. "name": "drupal/menu_admin_per_menu",
  4135. "version": "1.6.0",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4139. "reference": "8.x-1.6"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip",
  4144. "reference": "8.x-1.6",
  4145. "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a"
  4146. },
  4147. "require": {
  4148. "drupal/core": "^10.2 || ^11.0"
  4149. },
  4150. "type": "drupal-module",
  4151. "extra": {
  4152. "drupal": {
  4153. "version": "8.x-1.6",
  4154. "datestamp": "1726150514",
  4155. "security-coverage": {
  4156. "status": "covered",
  4157. "message": "Covered by Drupal's security advisory policy"
  4158. }
  4159. }
  4160. },
  4161. "notification-url": "https://packages.drupal.org/8/downloads",
  4162. "license": [
  4163. "GPL-2.0-or-later"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "anrikun",
  4168. "homepage": "https://www.drupal.org/user/410199"
  4169. },
  4170. {
  4171. "name": "jeroent",
  4172. "homepage": "https://www.drupal.org/user/2228934"
  4173. },
  4174. {
  4175. "name": "jonas139",
  4176. "homepage": "https://www.drupal.org/user/2873401"
  4177. },
  4178. {
  4179. "name": "mkdok",
  4180. "homepage": "https://www.drupal.org/user/3308753"
  4181. }
  4182. ],
  4183. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4184. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4185. "keywords": [
  4186. "Drupal"
  4187. ],
  4188. "support": {
  4189. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4190. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4191. }
  4192. },
  4193. {
  4194. "name": "drupal/metatag",
  4195. "version": "2.0.2",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://git.drupalcode.org/project/metatag.git",
  4199. "reference": "2.0.2"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4204. "reference": "2.0.2",
  4205. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4206. },
  4207. "require": {
  4208. "drupal/core": "^9.4 || ^10 || ^11",
  4209. "drupal/token": "^1.0",
  4210. "php": ">=8.0"
  4211. },
  4212. "require-dev": {
  4213. "drupal/hal": "^1 || ^2 || ^9",
  4214. "drupal/metatag_dc": "*",
  4215. "drupal/metatag_open_graph": "*",
  4216. "drupal/page_manager": "^4.0",
  4217. "drupal/redirect": "^1.0",
  4218. "ergebnis/composer-normalize": "*",
  4219. "mpyw/phpunit-patch-serializable-comparison": "*"
  4220. },
  4221. "type": "drupal-module",
  4222. "extra": {
  4223. "drupal": {
  4224. "version": "2.0.2",
  4225. "datestamp": "1722869772",
  4226. "security-coverage": {
  4227. "status": "covered",
  4228. "message": "Covered by Drupal's security advisory policy"
  4229. }
  4230. },
  4231. "composer-normalize": {
  4232. "indent-size": 2,
  4233. "indent-style": "space"
  4234. }
  4235. },
  4236. "notification-url": "https://packages.drupal.org/8/downloads",
  4237. "license": [
  4238. "GPL-2.0-or-later"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "See contributors",
  4243. "homepage": "https://www.drupal.org/node/640498/committers",
  4244. "role": "Developer"
  4245. },
  4246. {
  4247. "name": "dave reid",
  4248. "homepage": "https://www.drupal.org/user/53892"
  4249. }
  4250. ],
  4251. "description": "Manage meta tags for all entities.",
  4252. "homepage": "https://www.drupal.org/project/metatag",
  4253. "keywords": [
  4254. "Drupal",
  4255. "seo"
  4256. ],
  4257. "support": {
  4258. "source": "https://git.drupalcode.org/project/metatag",
  4259. "issues": "https://www.drupal.org/project/issues/metatag",
  4260. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4261. }
  4262. },
  4263. {
  4264. "name": "drupal/pathauto",
  4265. "version": "1.13.0",
  4266. "source": {
  4267. "type": "git",
  4268. "url": "https://git.drupalcode.org/project/pathauto.git",
  4269. "reference": "8.x-1.13"
  4270. },
  4271. "dist": {
  4272. "type": "zip",
  4273. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4274. "reference": "8.x-1.13",
  4275. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4276. },
  4277. "require": {
  4278. "drupal/core": "^9.4 || ^10 || ^11",
  4279. "drupal/ctools": "*",
  4280. "drupal/token": "*"
  4281. },
  4282. "require-dev": {
  4283. "drupal/forum": "*"
  4284. },
  4285. "suggest": {
  4286. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  4287. },
  4288. "type": "drupal-module",
  4289. "extra": {
  4290. "drupal": {
  4291. "version": "8.x-1.13",
  4292. "datestamp": "1722507672",
  4293. "security-coverage": {
  4294. "status": "covered",
  4295. "message": "Covered by Drupal's security advisory policy"
  4296. }
  4297. },
  4298. "drush": {
  4299. "services": {
  4300. "drush.services.yml": "^9 || ^10"
  4301. }
  4302. }
  4303. },
  4304. "notification-url": "https://packages.drupal.org/8/downloads",
  4305. "license": [
  4306. "GPL-2.0-or-later"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "Berdir",
  4311. "homepage": "https://www.drupal.org/user/214652"
  4312. },
  4313. {
  4314. "name": "Dave Reid",
  4315. "homepage": "https://www.drupal.org/user/53892"
  4316. },
  4317. {
  4318. "name": "Freso",
  4319. "homepage": "https://www.drupal.org/user/27504"
  4320. },
  4321. {
  4322. "name": "greggles",
  4323. "homepage": "https://www.drupal.org/user/36762"
  4324. }
  4325. ],
  4326. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4327. "homepage": "https://www.drupal.org/project/pathauto",
  4328. "support": {
  4329. "source": "https://cgit.drupalcode.org/pathauto",
  4330. "issues": "https://www.drupal.org/project/issues/pathauto",
  4331. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4332. }
  4333. },
  4334. {
  4335. "name": "drupal/profile",
  4336. "version": "1.11.0",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://git.drupalcode.org/project/profile.git",
  4340. "reference": "8.x-1.11"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.11.zip",
  4345. "reference": "8.x-1.11",
  4346. "shasum": "cdb6c7180be1f0a2d8a03c1a933d939f3d878cfb"
  4347. },
  4348. "require": {
  4349. "drupal/core": "^9 || ^10 || ^11",
  4350. "drupal/entity": "^1.0",
  4351. "php": "^7.4 || ^8.0"
  4352. },
  4353. "require-dev": {
  4354. "drupal/search_api": "~1.30",
  4355. "drupal/token": "^1.7"
  4356. },
  4357. "type": "drupal-module",
  4358. "extra": {
  4359. "drupal": {
  4360. "version": "8.x-1.11",
  4361. "datestamp": "1721735588",
  4362. "security-coverage": {
  4363. "status": "covered",
  4364. "message": "Covered by Drupal's security advisory policy"
  4365. }
  4366. }
  4367. },
  4368. "notification-url": "https://packages.drupal.org/8/downloads",
  4369. "license": [
  4370. "GPL-2.0-or-later"
  4371. ],
  4372. "authors": [
  4373. {
  4374. "name": "bojanz",
  4375. "homepage": "https://www.drupal.org/user/86106"
  4376. },
  4377. {
  4378. "name": "daggerhart",
  4379. "homepage": "https://www.drupal.org/user/167806"
  4380. },
  4381. {
  4382. "name": "fago",
  4383. "homepage": "https://www.drupal.org/user/16747"
  4384. },
  4385. {
  4386. "name": "jsacksick",
  4387. "homepage": "https://www.drupal.org/user/972218"
  4388. },
  4389. {
  4390. "name": "mglaman",
  4391. "homepage": "https://www.drupal.org/user/2416470"
  4392. },
  4393. {
  4394. "name": "pcambra",
  4395. "homepage": "https://www.drupal.org/user/122101"
  4396. }
  4397. ],
  4398. "description": "Provides configurable user profiles.",
  4399. "homepage": "https://drupal.org/project/profile",
  4400. "support": {
  4401. "source": "https://git.drupalcode.org/project/profile"
  4402. }
  4403. },
  4404. {
  4405. "name": "drupal/redirect",
  4406. "version": "1.10.0",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://git.drupalcode.org/project/redirect.git",
  4410. "reference": "8.x-1.10"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4415. "reference": "8.x-1.10",
  4416. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4417. },
  4418. "require": {
  4419. "drupal/core": "^9.2 || ^10 || ^11"
  4420. },
  4421. "type": "drupal-module",
  4422. "extra": {
  4423. "drupal": {
  4424. "version": "8.x-1.10",
  4425. "datestamp": "1723277641",
  4426. "security-coverage": {
  4427. "status": "covered",
  4428. "message": "Covered by Drupal's security advisory policy"
  4429. }
  4430. }
  4431. },
  4432. "notification-url": "https://packages.drupal.org/8/downloads",
  4433. "license": [
  4434. "GPL-2.0-or-later"
  4435. ],
  4436. "authors": [
  4437. {
  4438. "name": "Berdir",
  4439. "homepage": "https://www.drupal.org/user/214652"
  4440. },
  4441. {
  4442. "name": "dave reid",
  4443. "homepage": "https://www.drupal.org/user/53892"
  4444. },
  4445. {
  4446. "name": "Kristen Pol",
  4447. "homepage": "https://www.drupal.org/user/8389"
  4448. },
  4449. {
  4450. "name": "pifagor",
  4451. "homepage": "https://www.drupal.org/user/2375692"
  4452. }
  4453. ],
  4454. "description": "Allows users to redirect from old URLs to new URLs.",
  4455. "homepage": "https://www.drupal.org/project/redirect",
  4456. "support": {
  4457. "source": "https://git.drupalcode.org/project/redirect"
  4458. }
  4459. },
  4460. {
  4461. "name": "drupal/redis",
  4462. "version": "1.8.0",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://git.drupalcode.org/project/redis.git",
  4466. "reference": "8.x-1.8"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4471. "reference": "8.x-1.8",
  4472. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4473. },
  4474. "require": {
  4475. "drupal/core": "^9.3 || ^10 || ^11"
  4476. },
  4477. "suggest": {
  4478. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4479. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4480. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4481. },
  4482. "type": "drupal-module",
  4483. "extra": {
  4484. "drupal": {
  4485. "version": "8.x-1.8",
  4486. "datestamp": "1723934771",
  4487. "security-coverage": {
  4488. "status": "covered",
  4489. "message": "Covered by Drupal's security advisory policy"
  4490. }
  4491. }
  4492. },
  4493. "autoload": {
  4494. "psr-4": {
  4495. "Drupal\\redis\\": "src"
  4496. }
  4497. },
  4498. "notification-url": "https://packages.drupal.org/8/downloads",
  4499. "license": [
  4500. "GPL-2.0-or-later"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "berdir",
  4505. "homepage": "https://www.drupal.org/user/214652"
  4506. },
  4507. {
  4508. "name": "greg.1.anderson",
  4509. "homepage": "https://www.drupal.org/user/438598"
  4510. },
  4511. {
  4512. "name": "kporras07",
  4513. "homepage": "https://www.drupal.org/user/1349780"
  4514. },
  4515. {
  4516. "name": "pounard",
  4517. "homepage": "https://www.drupal.org/user/240164"
  4518. }
  4519. ],
  4520. "description": "Integration of Drupal with the Redis key-value store.",
  4521. "homepage": "https://www.drupal.org/project/redis",
  4522. "support": {
  4523. "source": "https://git.drupalcode.org/project/redis"
  4524. }
  4525. },
  4526. {
  4527. "name": "drupal/restui",
  4528. "version": "1.22.0",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://git.drupalcode.org/project/restui.git",
  4532. "reference": "8.x-1.22"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4537. "reference": "8.x-1.22",
  4538. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4539. },
  4540. "require": {
  4541. "drupal/core": "^9.5 || ^10 || ^11"
  4542. },
  4543. "type": "drupal-module",
  4544. "extra": {
  4545. "drupal": {
  4546. "version": "8.x-1.22",
  4547. "datestamp": "1721134189",
  4548. "security-coverage": {
  4549. "status": "covered",
  4550. "message": "Covered by Drupal's security advisory policy"
  4551. }
  4552. }
  4553. },
  4554. "notification-url": "https://packages.drupal.org/8/downloads",
  4555. "license": [
  4556. "GPL-2.0-or-later"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "-enzo-",
  4561. "homepage": "https://www.drupal.org/user/294937"
  4562. },
  4563. {
  4564. "name": "clemens.tolboom",
  4565. "homepage": "https://www.drupal.org/user/125814"
  4566. },
  4567. {
  4568. "name": "juampynr",
  4569. "homepage": "https://www.drupal.org/user/682736"
  4570. },
  4571. {
  4572. "name": "kamkejj",
  4573. "homepage": "https://www.drupal.org/user/81043"
  4574. },
  4575. {
  4576. "name": "vipin.mittal18",
  4577. "homepage": "https://www.drupal.org/user/319716"
  4578. }
  4579. ],
  4580. "description": "Provides a user interface to manage REST resources.",
  4581. "homepage": "https://www.drupal.org/project/restui",
  4582. "support": {
  4583. "source": "https://git.drupalcode.org/project/restui"
  4584. }
  4585. },
  4586. {
  4587. "name": "drupal/search_api",
  4588. "version": "1.35.0",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://git.drupalcode.org/project/search_api.git",
  4592. "reference": "8.x-1.35"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.35.zip",
  4597. "reference": "8.x-1.35",
  4598. "shasum": "d119726e870f793c6470d2a4fa9286662c5eb45d"
  4599. },
  4600. "require": {
  4601. "drupal/core": "^10.1 || ^11"
  4602. },
  4603. "conflict": {
  4604. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4605. },
  4606. "require-dev": {
  4607. "drupal/language_fallback_fix": "@dev",
  4608. "drupal/search_api_autocomplete": "@dev",
  4609. "drupal/search_api_db": "*"
  4610. },
  4611. "suggest": {
  4612. "drupal/facets": "Adds the ability to create faceted searches.",
  4613. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4614. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4615. },
  4616. "type": "drupal-module",
  4617. "extra": {
  4618. "drupal": {
  4619. "version": "8.x-1.35",
  4620. "datestamp": "1718551025",
  4621. "security-coverage": {
  4622. "status": "covered",
  4623. "message": "Covered by Drupal's security advisory policy"
  4624. }
  4625. },
  4626. "drush": {
  4627. "services": {
  4628. "drush.services.yml": "^9 || ^10 || ^11"
  4629. }
  4630. }
  4631. },
  4632. "notification-url": "https://packages.drupal.org/8/downloads",
  4633. "license": [
  4634. "GPL-2.0-or-later"
  4635. ],
  4636. "authors": [
  4637. {
  4638. "name": "Thomas Seidl",
  4639. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4640. },
  4641. {
  4642. "name": "Nick Veenhof",
  4643. "homepage": "https://www.drupal.org/u/nick_vh"
  4644. },
  4645. {
  4646. "name": "See other contributors",
  4647. "homepage": "https://www.drupal.org/node/790418/committers"
  4648. }
  4649. ],
  4650. "description": "Provides a generic framework for modules offering search capabilities.",
  4651. "homepage": "https://www.drupal.org/project/search_api",
  4652. "support": {
  4653. "source": "https://git.drupalcode.org/project/search_api",
  4654. "issues": "https://www.drupal.org/project/issues/search_api",
  4655. "irc": "irc://irc.freenode.org/drupal-search-api"
  4656. }
  4657. },
  4658. {
  4659. "name": "drupal/seven",
  4660. "version": "1.0.0",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://git.drupalcode.org/project/seven.git",
  4664. "reference": "1.0.0"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4669. "reference": "1.0.0",
  4670. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4671. },
  4672. "require": {
  4673. "drupal/core": "^9 || ^10"
  4674. },
  4675. "type": "drupal-theme",
  4676. "extra": {
  4677. "drupal": {
  4678. "version": "1.0.0",
  4679. "datestamp": "1758908691",
  4680. "security-coverage": {
  4681. "status": "covered",
  4682. "message": "Covered by Drupal's security advisory policy"
  4683. }
  4684. }
  4685. },
  4686. "notification-url": "https://packages.drupal.org/8/downloads",
  4687. "license": [
  4688. "GPL-2.0-or-later"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "avpaderno",
  4693. "homepage": "https://www.drupal.org/user/55077"
  4694. },
  4695. {
  4696. "name": "bnjmnm",
  4697. "homepage": "https://www.drupal.org/user/2369194"
  4698. },
  4699. {
  4700. "name": "krakenbite",
  4701. "homepage": "https://www.drupal.org/user/3805933"
  4702. },
  4703. {
  4704. "name": "lauriii",
  4705. "homepage": "https://www.drupal.org/user/1078742"
  4706. },
  4707. {
  4708. "name": "mcrittenden",
  4709. "homepage": "https://www.drupal.org/user/420631"
  4710. },
  4711. {
  4712. "name": "mrfelton",
  4713. "homepage": "https://www.drupal.org/user/305669"
  4714. }
  4715. ],
  4716. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4717. "homepage": "https://www.drupal.org/project/seven",
  4718. "support": {
  4719. "source": "https://git.drupalcode.org/project/seven"
  4720. }
  4721. },
  4722. {
  4723. "name": "drupal/simple_sitemap",
  4724. "version": "4.2.1",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4728. "reference": "4.2.1"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.1.zip",
  4733. "reference": "4.2.1",
  4734. "shasum": "d96b481571ca2fecdb305e87d2557f9338116864"
  4735. },
  4736. "require": {
  4737. "drupal/core": "^10.2 || ^11",
  4738. "ext-xmlwriter": "*"
  4739. },
  4740. "type": "drupal-module",
  4741. "extra": {
  4742. "drupal": {
  4743. "version": "4.2.1",
  4744. "datestamp": "1723802052",
  4745. "security-coverage": {
  4746. "status": "covered",
  4747. "message": "Covered by Drupal's security advisory policy"
  4748. }
  4749. },
  4750. "drush": {
  4751. "services": {
  4752. "drush.services.yml": ">=9"
  4753. }
  4754. }
  4755. },
  4756. "notification-url": "https://packages.drupal.org/8/downloads",
  4757. "license": [
  4758. "GPL-2.0-or-later"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Pawel Ginalski (gbyte)",
  4763. "homepage": "https://www.drupal.org/u/gbyte",
  4764. "email": "contact@gbyte.dev",
  4765. "role": "Maintainer"
  4766. },
  4767. {
  4768. "name": "walkingdexter",
  4769. "homepage": "https://www.drupal.org/user/3251330"
  4770. }
  4771. ],
  4772. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4773. "homepage": "https://drupal.org/project/simple_sitemap",
  4774. "support": {
  4775. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4776. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4777. }
  4778. },
  4779. {
  4780. "name": "drupal/stable",
  4781. "version": "2.1.0",
  4782. "source": {
  4783. "type": "git",
  4784. "url": "https://git.drupalcode.org/project/stable.git",
  4785. "reference": "2.1.0"
  4786. },
  4787. "dist": {
  4788. "type": "zip",
  4789. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4790. "reference": "2.1.0",
  4791. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4792. },
  4793. "require": {
  4794. "drupal/core": "^10.3 || ^11"
  4795. },
  4796. "type": "drupal-theme",
  4797. "extra": {
  4798. "drupal": {
  4799. "version": "2.1.0",
  4800. "datestamp": "1721202956",
  4801. "security-coverage": {
  4802. "status": "covered",
  4803. "message": "Covered by Drupal's security advisory policy"
  4804. }
  4805. }
  4806. },
  4807. "notification-url": "https://packages.drupal.org/8/downloads",
  4808. "license": [
  4809. "GPL-2.0-or-later"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "bnjmnm",
  4814. "homepage": "https://www.drupal.org/user/2369194"
  4815. },
  4816. {
  4817. "name": "lauriii",
  4818. "homepage": "https://www.drupal.org/user/1078742"
  4819. },
  4820. {
  4821. "name": "rajeshreeputra",
  4822. "homepage": "https://www.drupal.org/user/3418561"
  4823. },
  4824. {
  4825. "name": "star-szr",
  4826. "homepage": "https://www.drupal.org/user/1167326"
  4827. }
  4828. ],
  4829. "description": "A base theme using Drupal core markup and CSS.",
  4830. "homepage": "https://www.drupal.org/project/stable",
  4831. "support": {
  4832. "source": "https://git.drupalcode.org/project/stable"
  4833. }
  4834. },
  4835. {
  4836. "name": "drupal/synonyms",
  4837. "version": "2.1.4",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://git.drupalcode.org/project/synonyms.git",
  4841. "reference": "2.1.4"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4846. "reference": "2.1.4",
  4847. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4848. },
  4849. "require": {
  4850. "drupal/core": "^9 || ^10 || ^11"
  4851. },
  4852. "require-dev": {
  4853. "drupal/synonyms_list_field": "*"
  4854. },
  4855. "type": "drupal-module",
  4856. "extra": {
  4857. "drupal": {
  4858. "version": "2.1.4",
  4859. "datestamp": "1723069842",
  4860. "security-coverage": {
  4861. "status": "covered",
  4862. "message": "Covered by Drupal's security advisory policy"
  4863. }
  4864. }
  4865. },
  4866. "notification-url": "https://packages.drupal.org/8/downloads",
  4867. "license": [
  4868. "GPL-2.0-or-later"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Bojan Zivanovic",
  4873. "homepage": "https://www.drupal.org/u/bojanz",
  4874. "role": "Author and D5, D6 and D7 versions developer."
  4875. },
  4876. {
  4877. "name": "Alex Trosenko",
  4878. "homepage": "https://www.drupal.org/u/bucefal91",
  4879. "role": "D7 and D8 versions developer."
  4880. },
  4881. {
  4882. "name": "Duro Arezina",
  4883. "homepage": "https://www.drupal.org/u/devad",
  4884. "role": "D8+ versions maintenance"
  4885. },
  4886. {
  4887. "name": "See other contributors",
  4888. "homepage": "https://www.drupal.org/node/148775/committers"
  4889. }
  4890. ],
  4891. "description": "Provides synonyms feature for all entities.",
  4892. "homepage": "https://www.drupal.org/project/synonyms",
  4893. "support": {
  4894. "source": "https://git.drupalcode.org/project/synonyms",
  4895. "issues": "https://www.drupal.org/project/issues/synonyms"
  4896. }
  4897. },
  4898. {
  4899. "name": "drupal/token",
  4900. "version": "1.15.0",
  4901. "source": {
  4902. "type": "git",
  4903. "url": "https://git.drupalcode.org/project/token.git",
  4904. "reference": "8.x-1.15"
  4905. },
  4906. "dist": {
  4907. "type": "zip",
  4908. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  4909. "reference": "8.x-1.15",
  4910. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  4911. },
  4912. "require": {
  4913. "drupal/core": "^9.2 || ^10 || ^11"
  4914. },
  4915. "require-dev": {
  4916. "drupal/book": "*"
  4917. },
  4918. "type": "drupal-module",
  4919. "extra": {
  4920. "drupal": {
  4921. "version": "8.x-1.15",
  4922. "datestamp": "1722206211",
  4923. "security-coverage": {
  4924. "status": "covered",
  4925. "message": "Covered by Drupal's security advisory policy"
  4926. }
  4927. },
  4928. "drush": {
  4929. "services": {
  4930. "drush.services.yml": ">=9"
  4931. }
  4932. }
  4933. },
  4934. "notification-url": "https://packages.drupal.org/8/downloads",
  4935. "license": [
  4936. "GPL-2.0-or-later"
  4937. ],
  4938. "authors": [
  4939. {
  4940. "name": "Berdir",
  4941. "homepage": "https://www.drupal.org/user/214652"
  4942. },
  4943. {
  4944. "name": "Dave Reid",
  4945. "homepage": "https://www.drupal.org/user/53892"
  4946. },
  4947. {
  4948. "name": "eaton",
  4949. "homepage": "https://www.drupal.org/user/16496"
  4950. },
  4951. {
  4952. "name": "fago",
  4953. "homepage": "https://www.drupal.org/user/16747"
  4954. },
  4955. {
  4956. "name": "greggles",
  4957. "homepage": "https://www.drupal.org/user/36762"
  4958. },
  4959. {
  4960. "name": "mikeryan",
  4961. "homepage": "https://www.drupal.org/user/4420"
  4962. }
  4963. ],
  4964. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4965. "homepage": "https://www.drupal.org/project/token",
  4966. "support": {
  4967. "source": "https://git.drupalcode.org/project/token"
  4968. }
  4969. },
  4970. {
  4971. "name": "drupal/translation_views",
  4972. "version": "1.0.0-alpha11",
  4973. "source": {
  4974. "type": "git",
  4975. "url": "https://git.drupalcode.org/project/translation_views.git",
  4976. "reference": "8.x-1.0-alpha11"
  4977. },
  4978. "dist": {
  4979. "type": "zip",
  4980. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  4981. "reference": "8.x-1.0-alpha11",
  4982. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  4983. },
  4984. "require": {
  4985. "drupal/core": "^8.8 || ^9 || ^10"
  4986. },
  4987. "require-dev": {
  4988. "drupal/translators_content": "^1.0@alpha"
  4989. },
  4990. "type": "drupal-module",
  4991. "extra": {
  4992. "drupal": {
  4993. "version": "8.x-1.0-alpha11",
  4994. "datestamp": "1679660668",
  4995. "security-coverage": {
  4996. "status": "not-covered",
  4997. "message": "Project has not opted into security advisory coverage!"
  4998. }
  4999. }
  5000. },
  5001. "notification-url": "https://packages.drupal.org/8/downloads",
  5002. "license": [
  5003. "GPL-2.0-or-later"
  5004. ],
  5005. "authors": [
  5006. {
  5007. "name": "matsbla",
  5008. "homepage": "https://www.drupal.org/user/2325394"
  5009. },
  5010. {
  5011. "name": "vlad.dancer",
  5012. "homepage": "https://www.drupal.org/user/903844"
  5013. }
  5014. ],
  5015. "description": "Create customized lists and queries of translations from your database.",
  5016. "homepage": "https://www.drupal.org/project/translation_views",
  5017. "support": {
  5018. "source": "https://git.drupalcode.org/project/translation_views"
  5019. }
  5020. },
  5021. {
  5022. "name": "drupal/upgrade_status",
  5023. "version": "4.3.5",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5027. "reference": "4.3.5"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.5.zip",
  5032. "reference": "4.3.5",
  5033. "shasum": "353c17f14c855f5ba0fe48c6a4f6486360c066a7"
  5034. },
  5035. "require": {
  5036. "dekor/php-array-table": "^2.0",
  5037. "drupal/core": "^9 || ^10 || ^11",
  5038. "mglaman/phpstan-drupal": "^1.2.11",
  5039. "nikic/php-parser": "^4.0.0|^5.0.0",
  5040. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5041. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5042. "webflo/drupal-finder": "^1.2"
  5043. },
  5044. "require-dev": {
  5045. "drush/drush": "^11|^12|^13"
  5046. },
  5047. "type": "drupal-module",
  5048. "extra": {
  5049. "drupal": {
  5050. "version": "4.3.5",
  5051. "datestamp": "1723044184",
  5052. "security-coverage": {
  5053. "status": "covered",
  5054. "message": "Covered by Drupal's security advisory policy"
  5055. }
  5056. },
  5057. "drush": {
  5058. "services": {
  5059. "drush.services.yml": "^9 || ^10"
  5060. }
  5061. }
  5062. },
  5063. "notification-url": "https://packages.drupal.org/8/downloads",
  5064. "license": [
  5065. "GPL-2.0-or-later"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "Gábor Hojtsy",
  5070. "homepage": "https://www.drupal.org/user/4166"
  5071. }
  5072. ],
  5073. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5074. "homepage": "http://drupal.org/project/upgrade_status",
  5075. "support": {
  5076. "source": "https://git.drupalcode.org/project/upgrade_status"
  5077. }
  5078. },
  5079. {
  5080. "name": "drupal/views_bulk_edit",
  5081. "version": "3.0.0",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5085. "reference": "3.0.0"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  5090. "reference": "3.0.0",
  5091. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  5092. },
  5093. "require": {
  5094. "drupal/core": "^9.4 || ^10 || ^11",
  5095. "php": ">=8.1"
  5096. },
  5097. "require-dev": {
  5098. "drupal/views_bulk_operations": "~4.2.4"
  5099. },
  5100. "suggest": {
  5101. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5102. },
  5103. "type": "drupal-module",
  5104. "extra": {
  5105. "drupal": {
  5106. "version": "3.0.0",
  5107. "datestamp": "1725358398",
  5108. "security-coverage": {
  5109. "status": "covered",
  5110. "message": "Covered by Drupal's security advisory policy"
  5111. }
  5112. }
  5113. },
  5114. "notification-url": "https://packages.drupal.org/8/downloads",
  5115. "license": [
  5116. "GPL-2.0+"
  5117. ],
  5118. "authors": [
  5119. {
  5120. "name": "Marcin Grabias",
  5121. "homepage": "https://www.drupal.org/u/graber"
  5122. },
  5123. {
  5124. "name": "benjy",
  5125. "homepage": "https://www.drupal.org/user/1852732"
  5126. },
  5127. {
  5128. "name": "graber",
  5129. "homepage": "https://www.drupal.org/user/1599440"
  5130. },
  5131. {
  5132. "name": "grevil",
  5133. "homepage": "https://www.drupal.org/user/3668491"
  5134. },
  5135. {
  5136. "name": "joseph.olstad",
  5137. "homepage": "https://www.drupal.org/user/1321830"
  5138. }
  5139. ],
  5140. "description": "Allows bulk edition of entity field values.",
  5141. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5142. "support": {
  5143. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5144. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5145. }
  5146. },
  5147. {
  5148. "name": "drupal/views_bulk_operations",
  5149. "version": "4.3.4",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5153. "reference": "4.3.4"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  5158. "reference": "4.3.4",
  5159. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  5160. },
  5161. "require": {
  5162. "drupal/core": "^10.3 || ^11"
  5163. },
  5164. "conflict": {
  5165. "drush/drush": "<12.5.1"
  5166. },
  5167. "require-dev": {
  5168. "drush/drush": "^12 || ^13"
  5169. },
  5170. "suggest": {
  5171. "drush/drush": "^12 || ^13"
  5172. },
  5173. "type": "drupal-module",
  5174. "extra": {
  5175. "drupal": {
  5176. "version": "4.3.4",
  5177. "datestamp": "1741604495",
  5178. "security-coverage": {
  5179. "status": "covered",
  5180. "message": "Covered by Drupal's security advisory policy"
  5181. }
  5182. }
  5183. },
  5184. "notification-url": "https://packages.drupal.org/8/downloads",
  5185. "license": [
  5186. "GPL-2.0-or-later"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "Marcin Grabias",
  5191. "homepage": "https://www.drupal.org/u/graber"
  5192. },
  5193. {
  5194. "name": "graber",
  5195. "homepage": "https://www.drupal.org/user/1599440"
  5196. },
  5197. {
  5198. "name": "joelpittet",
  5199. "homepage": "https://www.drupal.org/user/160302"
  5200. }
  5201. ],
  5202. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5203. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5204. "support": {
  5205. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5206. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  5207. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  5208. }
  5209. },
  5210. {
  5211. "name": "drupal/workflow",
  5212. "version": "1.8.0",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://git.drupalcode.org/project/workflow.git",
  5216. "reference": "8.x-1.8"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5221. "reference": "8.x-1.8",
  5222. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5223. },
  5224. "require": {
  5225. "drupal/core": ">=8.8"
  5226. },
  5227. "type": "drupal-module",
  5228. "extra": {
  5229. "drupal": {
  5230. "version": "8.x-1.8",
  5231. "datestamp": "1717579628",
  5232. "security-coverage": {
  5233. "status": "covered",
  5234. "message": "Covered by Drupal's security advisory policy"
  5235. }
  5236. }
  5237. },
  5238. "notification-url": "https://packages.drupal.org/8/downloads",
  5239. "license": [
  5240. "GPL-2.0-or-later"
  5241. ],
  5242. "authors": [
  5243. {
  5244. "name": "Bastlynn",
  5245. "homepage": "https://www.drupal.org/user/275249"
  5246. },
  5247. {
  5248. "name": "eaton",
  5249. "homepage": "https://www.drupal.org/user/16496"
  5250. },
  5251. {
  5252. "name": "Heine",
  5253. "homepage": "https://www.drupal.org/user/17943"
  5254. },
  5255. {
  5256. "name": "JacobSingh",
  5257. "homepage": "https://www.drupal.org/user/68912"
  5258. },
  5259. {
  5260. "name": "johnv",
  5261. "homepage": "https://www.drupal.org/user/591042"
  5262. },
  5263. {
  5264. "name": "jvandyk",
  5265. "homepage": "https://www.drupal.org/user/2375"
  5266. },
  5267. {
  5268. "name": "mfredrickson",
  5269. "homepage": "https://www.drupal.org/user/31994"
  5270. },
  5271. {
  5272. "name": "NancyDru",
  5273. "homepage": "https://www.drupal.org/user/101412"
  5274. },
  5275. {
  5276. "name": "q0rban",
  5277. "homepage": "https://www.drupal.org/user/31022"
  5278. }
  5279. ],
  5280. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5281. "homepage": "https://www.drupal.org/project/workflow",
  5282. "support": {
  5283. "source": "https://git.drupalcode.org/project/workflow"
  5284. }
  5285. },
  5286. {
  5287. "name": "drush/drush",
  5288. "version": "13.7.2",
  5289. "source": {
  5290. "type": "git",
  5291. "url": "https://github.com/drush-ops/drush.git",
  5292. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d"
  5293. },
  5294. "dist": {
  5295. "type": "zip",
  5296. "url": "https://api.github.com/repos/drush-ops/drush/zipball/670c5f81b3f525b3f08263f038c7f07558f2580d",
  5297. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d",
  5298. "shasum": ""
  5299. },
  5300. "require": {
  5301. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  5302. "composer-runtime-api": "^2.2",
  5303. "composer/semver": "^1.4 || ^3",
  5304. "consolidation/annotated-command": "^4.10.2",
  5305. "consolidation/config": "^2.1.2 || ^3.1.1",
  5306. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5307. "consolidation/output-formatters": "^4.6.1",
  5308. "consolidation/robo": "^4.0.6 || ^5.1.0",
  5309. "consolidation/site-alias": "^4.1.1",
  5310. "consolidation/site-process": "^5.4.2",
  5311. "dflydev/dot-access-data": "^3.0.2",
  5312. "ext-dom": "*",
  5313. "grasmash/yaml-cli": "^3.2",
  5314. "guzzlehttp/guzzle": "^7.0",
  5315. "laravel/prompts": "^0.3.5",
  5316. "league/container": "^4.2",
  5317. "php": ">=8.3",
  5318. "psy/psysh": "~0.12",
  5319. "symfony/event-dispatcher": "^6 || ^7",
  5320. "symfony/filesystem": "^6.1 || ^7",
  5321. "symfony/finder": "^6 || ^7",
  5322. "symfony/var-dumper": "^6.0 || ^7",
  5323. "symfony/yaml": "^6.0 || ^7"
  5324. },
  5325. "conflict": {
  5326. "drupal/core": "< 10.4",
  5327. "drupal/migrate_run": "*",
  5328. "drupal/migrate_tools": "<= 5"
  5329. },
  5330. "require-dev": {
  5331. "composer/installers": "^2",
  5332. "cweagans/composer-patches": "~1.7.3",
  5333. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  5334. "drupal/semver_example": "2.3.0",
  5335. "jetbrains/phpstorm-attributes": "^1.0",
  5336. "mglaman/phpstan-drupal": "^2",
  5337. "phpunit/phpunit": "^9 || ^10 || ^11",
  5338. "rector/rector": "^2",
  5339. "squizlabs/php_codesniffer": "^3.7"
  5340. },
  5341. "bin": [
  5342. "drush",
  5343. "drush.php"
  5344. ],
  5345. "type": "library",
  5346. "extra": {
  5347. "patches-file": "composer.patches.json",
  5348. "installer-paths": {
  5349. "sut/core": [
  5350. "type:drupal-core"
  5351. ],
  5352. "sut/libraries/{$name}": [
  5353. "type:drupal-library"
  5354. ],
  5355. "sut/themes/unish/{$name}": [
  5356. "drupal/empty_theme"
  5357. ],
  5358. "sut/drush/contrib/{$name}": [
  5359. "type:drupal-drush"
  5360. ],
  5361. "sut/modules/unish/{$name}": [
  5362. "drupal/devel"
  5363. ],
  5364. "sut/themes/contrib/{$name}": [
  5365. "type:drupal-theme"
  5366. ],
  5367. "sut/modules/contrib/{$name}": [
  5368. "type:drupal-module"
  5369. ],
  5370. "sut/profiles/contrib/{$name}": [
  5371. "type:drupal-profile"
  5372. ]
  5373. }
  5374. },
  5375. "autoload": {
  5376. "psr-4": {
  5377. "Drush\\": "src/"
  5378. }
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "GPL-2.0-or-later"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Moshe Weitzman",
  5387. "email": "weitzman@tejasa.com"
  5388. },
  5389. {
  5390. "name": "Owen Barton",
  5391. "email": "drupal@owenbarton.com"
  5392. },
  5393. {
  5394. "name": "Greg Anderson",
  5395. "email": "greg.1.anderson@greenknowe.org"
  5396. },
  5397. {
  5398. "name": "Jonathan Araña Cruz",
  5399. "email": "jonhattan@faita.net"
  5400. },
  5401. {
  5402. "name": "Jonathan Hedstrom",
  5403. "email": "jhedstrom@gmail.com"
  5404. },
  5405. {
  5406. "name": "Christopher Gervais",
  5407. "email": "chris@ergonlogic.com"
  5408. },
  5409. {
  5410. "name": "Dave Reid",
  5411. "email": "dave@davereid.net"
  5412. },
  5413. {
  5414. "name": "Damian Lee",
  5415. "email": "damiankloip@googlemail.com"
  5416. }
  5417. ],
  5418. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  5419. "homepage": "http://www.drush.org",
  5420. "support": {
  5421. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5422. "issues": "https://github.com/drush-ops/drush/issues",
  5423. "security": "https://github.com/drush-ops/drush/security/advisories",
  5424. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5425. "source": "https://github.com/drush-ops/drush/tree/13.7.2"
  5426. },
  5427. "funding": [
  5428. {
  5429. "url": "https://github.com/weitzman",
  5430. "type": "github"
  5431. }
  5432. ],
  5433. "time": "2026-03-20T19:18:11+00:00"
  5434. },
  5435. {
  5436. "name": "egulias/email-validator",
  5437. "version": "4.0.4",
  5438. "source": {
  5439. "type": "git",
  5440. "url": "https://github.com/egulias/EmailValidator.git",
  5441. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  5442. },
  5443. "dist": {
  5444. "type": "zip",
  5445. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5446. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5447. "shasum": ""
  5448. },
  5449. "require": {
  5450. "doctrine/lexer": "^2.0 || ^3.0",
  5451. "php": ">=8.1",
  5452. "symfony/polyfill-intl-idn": "^1.26"
  5453. },
  5454. "require-dev": {
  5455. "phpunit/phpunit": "^10.2",
  5456. "vimeo/psalm": "^5.12"
  5457. },
  5458. "suggest": {
  5459. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5460. },
  5461. "type": "library",
  5462. "extra": {
  5463. "branch-alias": {
  5464. "dev-master": "4.0.x-dev"
  5465. }
  5466. },
  5467. "autoload": {
  5468. "psr-4": {
  5469. "Egulias\\EmailValidator\\": "src"
  5470. }
  5471. },
  5472. "notification-url": "https://packagist.org/downloads/",
  5473. "license": [
  5474. "MIT"
  5475. ],
  5476. "authors": [
  5477. {
  5478. "name": "Eduardo Gulias Davis"
  5479. }
  5480. ],
  5481. "description": "A library for validating emails against several RFCs",
  5482. "homepage": "https://github.com/egulias/EmailValidator",
  5483. "keywords": [
  5484. "email",
  5485. "emailvalidation",
  5486. "emailvalidator",
  5487. "validation",
  5488. "validator"
  5489. ],
  5490. "support": {
  5491. "issues": "https://github.com/egulias/EmailValidator/issues",
  5492. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  5493. },
  5494. "funding": [
  5495. {
  5496. "url": "https://github.com/egulias",
  5497. "type": "github"
  5498. }
  5499. ],
  5500. "time": "2025-03-06T22:45:56+00:00"
  5501. },
  5502. {
  5503. "name": "grasmash/expander",
  5504. "version": "3.0.1",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://github.com/grasmash/expander.git",
  5508. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5513. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5514. "shasum": ""
  5515. },
  5516. "require": {
  5517. "dflydev/dot-access-data": "^3.0.0",
  5518. "php": ">=8.0",
  5519. "psr/log": "^2 | ^3"
  5520. },
  5521. "require-dev": {
  5522. "greg-1-anderson/composer-test-scenarios": "^1",
  5523. "php-coveralls/php-coveralls": "^2.5",
  5524. "phpunit/phpunit": "^9",
  5525. "squizlabs/php_codesniffer": "^3.3"
  5526. },
  5527. "type": "library",
  5528. "extra": {
  5529. "branch-alias": {
  5530. "dev-master": "1.x-dev"
  5531. }
  5532. },
  5533. "autoload": {
  5534. "psr-4": {
  5535. "Grasmash\\Expander\\": "src/"
  5536. }
  5537. },
  5538. "notification-url": "https://packagist.org/downloads/",
  5539. "license": [
  5540. "MIT"
  5541. ],
  5542. "authors": [
  5543. {
  5544. "name": "Matthew Grasmick"
  5545. }
  5546. ],
  5547. "description": "Expands internal property references in PHP arrays file.",
  5548. "support": {
  5549. "issues": "https://github.com/grasmash/expander/issues",
  5550. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  5551. },
  5552. "time": "2024-11-25T23:28:05+00:00"
  5553. },
  5554. {
  5555. "name": "grasmash/yaml-cli",
  5556. "version": "3.2.1",
  5557. "source": {
  5558. "type": "git",
  5559. "url": "https://github.com/grasmash/yaml-cli.git",
  5560. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5561. },
  5562. "dist": {
  5563. "type": "zip",
  5564. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5565. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5566. "shasum": ""
  5567. },
  5568. "require": {
  5569. "dflydev/dot-access-data": "^3",
  5570. "php": ">=8.0",
  5571. "symfony/console": "^6 || ^7",
  5572. "symfony/filesystem": "^6 || ^7",
  5573. "symfony/yaml": "^6 || ^7"
  5574. },
  5575. "require-dev": {
  5576. "php-coveralls/php-coveralls": "^2",
  5577. "phpunit/phpunit": "^9",
  5578. "squizlabs/php_codesniffer": "^3.0"
  5579. },
  5580. "bin": [
  5581. "bin/yaml-cli"
  5582. ],
  5583. "type": "library",
  5584. "extra": {
  5585. "branch-alias": {
  5586. "dev-master": "3.x-dev"
  5587. }
  5588. },
  5589. "autoload": {
  5590. "psr-4": {
  5591. "Grasmash\\YamlCli\\": "src/"
  5592. }
  5593. },
  5594. "notification-url": "https://packagist.org/downloads/",
  5595. "license": [
  5596. "MIT"
  5597. ],
  5598. "authors": [
  5599. {
  5600. "name": "Matthew Grasmick"
  5601. }
  5602. ],
  5603. "description": "A command line tool for reading and manipulating yaml files.",
  5604. "support": {
  5605. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5606. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5607. },
  5608. "time": "2024-04-23T02:10:57+00:00"
  5609. },
  5610. {
  5611. "name": "guzzlehttp/guzzle",
  5612. "version": "7.10.0",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/guzzle/guzzle.git",
  5616. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5621. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5622. "shasum": ""
  5623. },
  5624. "require": {
  5625. "ext-json": "*",
  5626. "guzzlehttp/promises": "^2.3",
  5627. "guzzlehttp/psr7": "^2.8",
  5628. "php": "^7.2.5 || ^8.0",
  5629. "psr/http-client": "^1.0",
  5630. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5631. },
  5632. "provide": {
  5633. "psr/http-client-implementation": "1.0"
  5634. },
  5635. "require-dev": {
  5636. "bamarni/composer-bin-plugin": "^1.8.2",
  5637. "ext-curl": "*",
  5638. "guzzle/client-integration-tests": "3.0.2",
  5639. "php-http/message-factory": "^1.1",
  5640. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5641. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5642. },
  5643. "suggest": {
  5644. "ext-curl": "Required for CURL handler support",
  5645. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5646. "psr/log": "Required for using the Log middleware"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "bamarni-bin": {
  5651. "bin-links": true,
  5652. "forward-command": false
  5653. }
  5654. },
  5655. "autoload": {
  5656. "files": [
  5657. "src/functions_include.php"
  5658. ],
  5659. "psr-4": {
  5660. "GuzzleHttp\\": "src/"
  5661. }
  5662. },
  5663. "notification-url": "https://packagist.org/downloads/",
  5664. "license": [
  5665. "MIT"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "Graham Campbell",
  5670. "email": "hello@gjcampbell.co.uk",
  5671. "homepage": "https://github.com/GrahamCampbell"
  5672. },
  5673. {
  5674. "name": "Michael Dowling",
  5675. "email": "mtdowling@gmail.com",
  5676. "homepage": "https://github.com/mtdowling"
  5677. },
  5678. {
  5679. "name": "Jeremy Lindblom",
  5680. "email": "jeremeamia@gmail.com",
  5681. "homepage": "https://github.com/jeremeamia"
  5682. },
  5683. {
  5684. "name": "George Mponos",
  5685. "email": "gmponos@gmail.com",
  5686. "homepage": "https://github.com/gmponos"
  5687. },
  5688. {
  5689. "name": "Tobias Nyholm",
  5690. "email": "tobias.nyholm@gmail.com",
  5691. "homepage": "https://github.com/Nyholm"
  5692. },
  5693. {
  5694. "name": "Márk Sági-Kazár",
  5695. "email": "mark.sagikazar@gmail.com",
  5696. "homepage": "https://github.com/sagikazarmark"
  5697. },
  5698. {
  5699. "name": "Tobias Schultze",
  5700. "email": "webmaster@tubo-world.de",
  5701. "homepage": "https://github.com/Tobion"
  5702. }
  5703. ],
  5704. "description": "Guzzle is a PHP HTTP client library",
  5705. "keywords": [
  5706. "client",
  5707. "curl",
  5708. "framework",
  5709. "http",
  5710. "http client",
  5711. "psr-18",
  5712. "psr-7",
  5713. "rest",
  5714. "web service"
  5715. ],
  5716. "support": {
  5717. "issues": "https://github.com/guzzle/guzzle/issues",
  5718. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  5719. },
  5720. "funding": [
  5721. {
  5722. "url": "https://github.com/GrahamCampbell",
  5723. "type": "github"
  5724. },
  5725. {
  5726. "url": "https://github.com/Nyholm",
  5727. "type": "github"
  5728. },
  5729. {
  5730. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5731. "type": "tidelift"
  5732. }
  5733. ],
  5734. "time": "2025-08-23T22:36:01+00:00"
  5735. },
  5736. {
  5737. "name": "guzzlehttp/promises",
  5738. "version": "2.3.0",
  5739. "source": {
  5740. "type": "git",
  5741. "url": "https://github.com/guzzle/promises.git",
  5742. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  5743. },
  5744. "dist": {
  5745. "type": "zip",
  5746. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  5747. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  5748. "shasum": ""
  5749. },
  5750. "require": {
  5751. "php": "^7.2.5 || ^8.0"
  5752. },
  5753. "require-dev": {
  5754. "bamarni/composer-bin-plugin": "^1.8.2",
  5755. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5756. },
  5757. "type": "library",
  5758. "extra": {
  5759. "bamarni-bin": {
  5760. "bin-links": true,
  5761. "forward-command": false
  5762. }
  5763. },
  5764. "autoload": {
  5765. "psr-4": {
  5766. "GuzzleHttp\\Promise\\": "src/"
  5767. }
  5768. },
  5769. "notification-url": "https://packagist.org/downloads/",
  5770. "license": [
  5771. "MIT"
  5772. ],
  5773. "authors": [
  5774. {
  5775. "name": "Graham Campbell",
  5776. "email": "hello@gjcampbell.co.uk",
  5777. "homepage": "https://github.com/GrahamCampbell"
  5778. },
  5779. {
  5780. "name": "Michael Dowling",
  5781. "email": "mtdowling@gmail.com",
  5782. "homepage": "https://github.com/mtdowling"
  5783. },
  5784. {
  5785. "name": "Tobias Nyholm",
  5786. "email": "tobias.nyholm@gmail.com",
  5787. "homepage": "https://github.com/Nyholm"
  5788. },
  5789. {
  5790. "name": "Tobias Schultze",
  5791. "email": "webmaster@tubo-world.de",
  5792. "homepage": "https://github.com/Tobion"
  5793. }
  5794. ],
  5795. "description": "Guzzle promises library",
  5796. "keywords": [
  5797. "promise"
  5798. ],
  5799. "support": {
  5800. "issues": "https://github.com/guzzle/promises/issues",
  5801. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  5802. },
  5803. "funding": [
  5804. {
  5805. "url": "https://github.com/GrahamCampbell",
  5806. "type": "github"
  5807. },
  5808. {
  5809. "url": "https://github.com/Nyholm",
  5810. "type": "github"
  5811. },
  5812. {
  5813. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5814. "type": "tidelift"
  5815. }
  5816. ],
  5817. "time": "2025-08-22T14:34:08+00:00"
  5818. },
  5819. {
  5820. "name": "guzzlehttp/psr7",
  5821. "version": "2.8.1",
  5822. "source": {
  5823. "type": "git",
  5824. "url": "https://github.com/guzzle/psr7.git",
  5825. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9"
  5826. },
  5827. "dist": {
  5828. "type": "zip",
  5829. "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9",
  5830. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9",
  5831. "shasum": ""
  5832. },
  5833. "require": {
  5834. "php": "^7.2.5 || ^8.0",
  5835. "psr/http-factory": "^1.0",
  5836. "psr/http-message": "^1.1 || ^2.0",
  5837. "ralouphie/getallheaders": "^3.0"
  5838. },
  5839. "provide": {
  5840. "psr/http-factory-implementation": "1.0",
  5841. "psr/http-message-implementation": "1.0"
  5842. },
  5843. "require-dev": {
  5844. "bamarni/composer-bin-plugin": "^1.8.2",
  5845. "http-interop/http-factory-tests": "0.9.0",
  5846. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5847. },
  5848. "suggest": {
  5849. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5850. },
  5851. "type": "library",
  5852. "extra": {
  5853. "bamarni-bin": {
  5854. "bin-links": true,
  5855. "forward-command": false
  5856. }
  5857. },
  5858. "autoload": {
  5859. "psr-4": {
  5860. "GuzzleHttp\\Psr7\\": "src/"
  5861. }
  5862. },
  5863. "notification-url": "https://packagist.org/downloads/",
  5864. "license": [
  5865. "MIT"
  5866. ],
  5867. "authors": [
  5868. {
  5869. "name": "Graham Campbell",
  5870. "email": "hello@gjcampbell.co.uk",
  5871. "homepage": "https://github.com/GrahamCampbell"
  5872. },
  5873. {
  5874. "name": "Michael Dowling",
  5875. "email": "mtdowling@gmail.com",
  5876. "homepage": "https://github.com/mtdowling"
  5877. },
  5878. {
  5879. "name": "George Mponos",
  5880. "email": "gmponos@gmail.com",
  5881. "homepage": "https://github.com/gmponos"
  5882. },
  5883. {
  5884. "name": "Tobias Nyholm",
  5885. "email": "tobias.nyholm@gmail.com",
  5886. "homepage": "https://github.com/Nyholm"
  5887. },
  5888. {
  5889. "name": "Márk Sági-Kazár",
  5890. "email": "mark.sagikazar@gmail.com",
  5891. "homepage": "https://github.com/sagikazarmark"
  5892. },
  5893. {
  5894. "name": "Tobias Schultze",
  5895. "email": "webmaster@tubo-world.de",
  5896. "homepage": "https://github.com/Tobion"
  5897. },
  5898. {
  5899. "name": "Márk Sági-Kazár",
  5900. "email": "mark.sagikazar@gmail.com",
  5901. "homepage": "https://sagikazarmark.hu"
  5902. }
  5903. ],
  5904. "description": "PSR-7 message implementation that also provides common utility methods",
  5905. "keywords": [
  5906. "http",
  5907. "message",
  5908. "psr-7",
  5909. "request",
  5910. "response",
  5911. "stream",
  5912. "uri",
  5913. "url"
  5914. ],
  5915. "support": {
  5916. "issues": "https://github.com/guzzle/psr7/issues",
  5917. "source": "https://github.com/guzzle/psr7/tree/2.8.1"
  5918. },
  5919. "funding": [
  5920. {
  5921. "url": "https://github.com/GrahamCampbell",
  5922. "type": "github"
  5923. },
  5924. {
  5925. "url": "https://github.com/Nyholm",
  5926. "type": "github"
  5927. },
  5928. {
  5929. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5930. "type": "tidelift"
  5931. }
  5932. ],
  5933. "time": "2026-03-10T09:55:26+00:00"
  5934. },
  5935. {
  5936. "name": "kint-php/kint",
  5937. "version": "5.1.1",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/kint-php/kint.git",
  5941. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5946. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": ">=7.1"
  5951. },
  5952. "require-dev": {
  5953. "friendsofphp/php-cs-fixer": "^3",
  5954. "phpspec/prophecy-phpunit": "^2",
  5955. "phpunit/phpunit": "^9",
  5956. "seld/phar-utils": "^1",
  5957. "symfony/finder": ">=4.0",
  5958. "vimeo/psalm": "^5"
  5959. },
  5960. "suggest": {
  5961. "kint-php/kint-helpers": "Provides extra helper functions",
  5962. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5963. },
  5964. "type": "library",
  5965. "autoload": {
  5966. "files": [
  5967. "init.php"
  5968. ],
  5969. "psr-4": {
  5970. "Kint\\": "src/"
  5971. }
  5972. },
  5973. "notification-url": "https://packagist.org/downloads/",
  5974. "license": [
  5975. "MIT"
  5976. ],
  5977. "authors": [
  5978. {
  5979. "name": "Jonathan Vollebregt",
  5980. "homepage": "https://github.com/jnvsor"
  5981. },
  5982. {
  5983. "name": "Contributors",
  5984. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  5985. }
  5986. ],
  5987. "description": "Kint - debugging tool for PHP developers",
  5988. "homepage": "https://kint-php.github.io/kint/",
  5989. "keywords": [
  5990. "debug",
  5991. "kint",
  5992. "php"
  5993. ],
  5994. "support": {
  5995. "issues": "https://github.com/kint-php/kint/issues",
  5996. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  5997. },
  5998. "time": "2024-04-26T14:20:09+00:00"
  5999. },
  6000. {
  6001. "name": "laravel/prompts",
  6002. "version": "v0.3.16",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/laravel/prompts.git",
  6006. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/laravel/prompts/zipball/11e7d5f93803a2190b00e145142cb00a33d17ad2",
  6011. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "composer-runtime-api": "^2.2",
  6016. "ext-mbstring": "*",
  6017. "php": "^8.1",
  6018. "symfony/console": "^6.2|^7.0|^8.0"
  6019. },
  6020. "conflict": {
  6021. "illuminate/console": ">=10.17.0 <10.25.0",
  6022. "laravel/framework": ">=10.17.0 <10.25.0"
  6023. },
  6024. "require-dev": {
  6025. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  6026. "mockery/mockery": "^1.5",
  6027. "pestphp/pest": "^2.3|^3.4|^4.0",
  6028. "phpstan/phpstan": "^1.12.28",
  6029. "phpstan/phpstan-mockery": "^1.1.3"
  6030. },
  6031. "suggest": {
  6032. "ext-pcntl": "Required for the spinner to be animated."
  6033. },
  6034. "type": "library",
  6035. "extra": {
  6036. "branch-alias": {
  6037. "dev-main": "0.3.x-dev"
  6038. }
  6039. },
  6040. "autoload": {
  6041. "files": [
  6042. "src/helpers.php"
  6043. ],
  6044. "psr-4": {
  6045. "Laravel\\Prompts\\": "src/"
  6046. }
  6047. },
  6048. "notification-url": "https://packagist.org/downloads/",
  6049. "license": [
  6050. "MIT"
  6051. ],
  6052. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  6053. "support": {
  6054. "issues": "https://github.com/laravel/prompts/issues",
  6055. "source": "https://github.com/laravel/prompts/tree/v0.3.16"
  6056. },
  6057. "time": "2026-03-23T14:35:33+00:00"
  6058. },
  6059. {
  6060. "name": "league/container",
  6061. "version": "4.2.5",
  6062. "source": {
  6063. "type": "git",
  6064. "url": "https://github.com/thephpleague/container.git",
  6065. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  6066. },
  6067. "dist": {
  6068. "type": "zip",
  6069. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6070. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6071. "shasum": ""
  6072. },
  6073. "require": {
  6074. "php": "^7.2 || ^8.0",
  6075. "psr/container": "^1.1 || ^2.0"
  6076. },
  6077. "provide": {
  6078. "psr/container-implementation": "^1.0"
  6079. },
  6080. "replace": {
  6081. "orno/di": "~2.0"
  6082. },
  6083. "require-dev": {
  6084. "nette/php-generator": "^3.4",
  6085. "nikic/php-parser": "^4.10",
  6086. "phpstan/phpstan": "^0.12.47",
  6087. "phpunit/phpunit": "^8.5.17",
  6088. "roave/security-advisories": "dev-latest",
  6089. "scrutinizer/ocular": "^1.8",
  6090. "squizlabs/php_codesniffer": "^3.6"
  6091. },
  6092. "type": "library",
  6093. "extra": {
  6094. "branch-alias": {
  6095. "dev-1.x": "1.x-dev",
  6096. "dev-2.x": "2.x-dev",
  6097. "dev-3.x": "3.x-dev",
  6098. "dev-4.x": "4.x-dev",
  6099. "dev-master": "4.x-dev"
  6100. }
  6101. },
  6102. "autoload": {
  6103. "psr-4": {
  6104. "League\\Container\\": "src"
  6105. }
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "Phil Bennett",
  6114. "email": "mail@philbennett.co.uk",
  6115. "role": "Developer"
  6116. }
  6117. ],
  6118. "description": "A fast and intuitive dependency injection container.",
  6119. "homepage": "https://github.com/thephpleague/container",
  6120. "keywords": [
  6121. "container",
  6122. "dependency",
  6123. "di",
  6124. "injection",
  6125. "league",
  6126. "provider",
  6127. "service"
  6128. ],
  6129. "support": {
  6130. "issues": "https://github.com/thephpleague/container/issues",
  6131. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  6132. },
  6133. "funding": [
  6134. {
  6135. "url": "https://github.com/philipobenito",
  6136. "type": "github"
  6137. }
  6138. ],
  6139. "time": "2025-05-20T12:55:37+00:00"
  6140. },
  6141. {
  6142. "name": "masterminds/html5",
  6143. "version": "2.10.0",
  6144. "source": {
  6145. "type": "git",
  6146. "url": "https://github.com/Masterminds/html5-php.git",
  6147. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  6148. },
  6149. "dist": {
  6150. "type": "zip",
  6151. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  6152. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  6153. "shasum": ""
  6154. },
  6155. "require": {
  6156. "ext-dom": "*",
  6157. "php": ">=5.3.0"
  6158. },
  6159. "require-dev": {
  6160. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6161. },
  6162. "type": "library",
  6163. "extra": {
  6164. "branch-alias": {
  6165. "dev-master": "2.7-dev"
  6166. }
  6167. },
  6168. "autoload": {
  6169. "psr-4": {
  6170. "Masterminds\\": "src"
  6171. }
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "MIT"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "Matt Butcher",
  6180. "email": "technosophos@gmail.com"
  6181. },
  6182. {
  6183. "name": "Matt Farina",
  6184. "email": "matt@mattfarina.com"
  6185. },
  6186. {
  6187. "name": "Asmir Mustafic",
  6188. "email": "goetas@gmail.com"
  6189. }
  6190. ],
  6191. "description": "An HTML5 parser and serializer.",
  6192. "homepage": "http://masterminds.github.io/html5-php",
  6193. "keywords": [
  6194. "HTML5",
  6195. "dom",
  6196. "html",
  6197. "parser",
  6198. "querypath",
  6199. "serializer",
  6200. "xml"
  6201. ],
  6202. "support": {
  6203. "issues": "https://github.com/Masterminds/html5-php/issues",
  6204. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  6205. },
  6206. "time": "2025-07-25T09:04:22+00:00"
  6207. },
  6208. {
  6209. "name": "mck89/peast",
  6210. "version": "v1.17.5",
  6211. "source": {
  6212. "type": "git",
  6213. "url": "https://github.com/mck89/peast.git",
  6214. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f"
  6215. },
  6216. "dist": {
  6217. "type": "zip",
  6218. "url": "https://api.github.com/repos/mck89/peast/zipball/e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6219. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6220. "shasum": ""
  6221. },
  6222. "require": {
  6223. "ext-mbstring": "*",
  6224. "php": ">=5.4.0"
  6225. },
  6226. "require-dev": {
  6227. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6228. },
  6229. "type": "library",
  6230. "extra": {
  6231. "branch-alias": {
  6232. "dev-master": "1.17.5-dev"
  6233. }
  6234. },
  6235. "autoload": {
  6236. "psr-4": {
  6237. "Peast\\": "lib/Peast/"
  6238. }
  6239. },
  6240. "notification-url": "https://packagist.org/downloads/",
  6241. "license": [
  6242. "BSD-3-Clause"
  6243. ],
  6244. "authors": [
  6245. {
  6246. "name": "Marco Marchiò",
  6247. "email": "marco.mm89@gmail.com"
  6248. }
  6249. ],
  6250. "description": "Peast is PHP library that generates AST for JavaScript code",
  6251. "support": {
  6252. "issues": "https://github.com/mck89/peast/issues",
  6253. "source": "https://github.com/mck89/peast/tree/v1.17.5"
  6254. },
  6255. "time": "2026-03-15T10:47:07+00:00"
  6256. },
  6257. {
  6258. "name": "mglaman/phpstan-drupal",
  6259. "version": "1.2.12",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6263. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6268. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6269. "shasum": ""
  6270. },
  6271. "require": {
  6272. "php": "^8.1",
  6273. "phpstan/phpstan": "^1.10.56",
  6274. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6275. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6276. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6277. "webflo/drupal-finder": "^1.2"
  6278. },
  6279. "require-dev": {
  6280. "behat/mink": "^1.8",
  6281. "composer/installers": "^1.9",
  6282. "drupal/core-recommended": "^10",
  6283. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6284. "phpstan/extension-installer": "^1.1",
  6285. "phpstan/phpstan-strict-rules": "^1.0",
  6286. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6287. "slevomat/coding-standard": "^7.1",
  6288. "squizlabs/php_codesniffer": "^3.3",
  6289. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6290. },
  6291. "suggest": {
  6292. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6293. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6294. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6295. },
  6296. "type": "phpstan-extension",
  6297. "extra": {
  6298. "branch-alias": {
  6299. "dev-main": "1.0-dev"
  6300. },
  6301. "installer-paths": {
  6302. "tests/fixtures/drupal/core": [
  6303. "type:drupal-core"
  6304. ],
  6305. "tests/fixtures/drupal/libraries/{$name}": [
  6306. "type:drupal-library"
  6307. ],
  6308. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6309. "type:drupal-module"
  6310. ],
  6311. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6312. "type:drupal-profile"
  6313. ],
  6314. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6315. "type:drupal-theme"
  6316. ]
  6317. },
  6318. "phpstan": {
  6319. "includes": [
  6320. "extension.neon",
  6321. "rules.neon"
  6322. ]
  6323. }
  6324. },
  6325. "autoload": {
  6326. "psr-4": {
  6327. "mglaman\\PHPStanDrupal\\": "src/"
  6328. }
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Matt Glaman",
  6337. "email": "nmd.matt@gmail.com"
  6338. }
  6339. ],
  6340. "description": "Drupal extension and rules for PHPStan",
  6341. "support": {
  6342. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6343. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6344. },
  6345. "funding": [
  6346. {
  6347. "url": "https://github.com/mglaman",
  6348. "type": "github"
  6349. },
  6350. {
  6351. "url": "https://opencollective.com/phpstan-drupal",
  6352. "type": "open_collective"
  6353. },
  6354. {
  6355. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6356. "type": "tidelift"
  6357. }
  6358. ],
  6359. "time": "2024-08-07T21:15:21+00:00"
  6360. },
  6361. {
  6362. "name": "nikic/php-parser",
  6363. "version": "v5.7.0",
  6364. "source": {
  6365. "type": "git",
  6366. "url": "https://github.com/nikic/PHP-Parser.git",
  6367. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  6368. },
  6369. "dist": {
  6370. "type": "zip",
  6371. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6372. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6373. "shasum": ""
  6374. },
  6375. "require": {
  6376. "ext-ctype": "*",
  6377. "ext-json": "*",
  6378. "ext-tokenizer": "*",
  6379. "php": ">=7.4"
  6380. },
  6381. "require-dev": {
  6382. "ircmaxell/php-yacc": "^0.0.7",
  6383. "phpunit/phpunit": "^9.0"
  6384. },
  6385. "bin": [
  6386. "bin/php-parse"
  6387. ],
  6388. "type": "library",
  6389. "extra": {
  6390. "branch-alias": {
  6391. "dev-master": "5.x-dev"
  6392. }
  6393. },
  6394. "autoload": {
  6395. "psr-4": {
  6396. "PhpParser\\": "lib/PhpParser"
  6397. }
  6398. },
  6399. "notification-url": "https://packagist.org/downloads/",
  6400. "license": [
  6401. "BSD-3-Clause"
  6402. ],
  6403. "authors": [
  6404. {
  6405. "name": "Nikita Popov"
  6406. }
  6407. ],
  6408. "description": "A PHP parser written in PHP",
  6409. "keywords": [
  6410. "parser",
  6411. "php"
  6412. ],
  6413. "support": {
  6414. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6415. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  6416. },
  6417. "time": "2025-12-06T11:56:16+00:00"
  6418. },
  6419. {
  6420. "name": "pear/archive_tar",
  6421. "version": "1.6.0",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/pear/Archive_Tar.git",
  6425. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6430. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "pear/pear-core-minimal": "^1.10.0alpha2",
  6435. "php": ">=5.4.0"
  6436. },
  6437. "require-dev": {
  6438. "phpunit/phpunit": "*"
  6439. },
  6440. "suggest": {
  6441. "ext-bz2": "Bz2 compression support.",
  6442. "ext-xz": "Lzma2 compression support.",
  6443. "ext-zlib": "Gzip compression support."
  6444. },
  6445. "type": "library",
  6446. "extra": {
  6447. "branch-alias": {
  6448. "dev-master": "1.4.x-dev"
  6449. }
  6450. },
  6451. "autoload": {
  6452. "psr-0": {
  6453. "Archive_Tar": ""
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "include-path": [
  6458. "./"
  6459. ],
  6460. "license": [
  6461. "BSD-2-Clause"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Vincent Blavet",
  6466. "email": "vincent@phpconcept.net"
  6467. },
  6468. {
  6469. "name": "Greg Beaver",
  6470. "email": "greg@chiaraquartet.net"
  6471. },
  6472. {
  6473. "name": "Michiel Rook",
  6474. "email": "mrook@php.net"
  6475. }
  6476. ],
  6477. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6478. "homepage": "https://github.com/pear/Archive_Tar",
  6479. "keywords": [
  6480. "archive",
  6481. "tar"
  6482. ],
  6483. "support": {
  6484. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6485. "source": "https://github.com/pear/Archive_Tar"
  6486. },
  6487. "time": "2025-07-19T14:49:16+00:00"
  6488. },
  6489. {
  6490. "name": "pear/console_getopt",
  6491. "version": "v1.4.3",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/pear/Console_Getopt.git",
  6495. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6500. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6501. "shasum": ""
  6502. },
  6503. "type": "library",
  6504. "autoload": {
  6505. "psr-0": {
  6506. "Console": "./"
  6507. }
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "include-path": [
  6511. "./"
  6512. ],
  6513. "license": [
  6514. "BSD-2-Clause"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Andrei Zmievski",
  6519. "email": "andrei@php.net",
  6520. "role": "Lead"
  6521. },
  6522. {
  6523. "name": "Stig Bakken",
  6524. "email": "stig@php.net",
  6525. "role": "Developer"
  6526. },
  6527. {
  6528. "name": "Greg Beaver",
  6529. "email": "cellog@php.net",
  6530. "role": "Helper"
  6531. }
  6532. ],
  6533. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6534. "support": {
  6535. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6536. "source": "https://github.com/pear/Console_Getopt"
  6537. },
  6538. "time": "2019-11-20T18:27:48+00:00"
  6539. },
  6540. {
  6541. "name": "pear/pear-core-minimal",
  6542. "version": "v1.10.18",
  6543. "source": {
  6544. "type": "git",
  6545. "url": "https://github.com/pear/pear-core-minimal.git",
  6546. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  6547. },
  6548. "dist": {
  6549. "type": "zip",
  6550. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6551. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6552. "shasum": ""
  6553. },
  6554. "require": {
  6555. "pear/console_getopt": "~1.4",
  6556. "pear/pear_exception": "~1.0",
  6557. "php": ">=5.4"
  6558. },
  6559. "replace": {
  6560. "rsky/pear-core-min": "self.version"
  6561. },
  6562. "type": "library",
  6563. "autoload": {
  6564. "classmap": [
  6565. "src/"
  6566. ]
  6567. },
  6568. "notification-url": "https://packagist.org/downloads/",
  6569. "include-path": [
  6570. "src/"
  6571. ],
  6572. "license": [
  6573. "BSD-3-Clause"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "Christian Weiske",
  6578. "email": "cweiske@php.net",
  6579. "role": "Lead"
  6580. }
  6581. ],
  6582. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6583. "support": {
  6584. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6585. "source": "https://github.com/pear/pear-core-minimal"
  6586. },
  6587. "time": "2025-12-14T20:37:07+00:00"
  6588. },
  6589. {
  6590. "name": "pear/pear_exception",
  6591. "version": "v1.0.2",
  6592. "source": {
  6593. "type": "git",
  6594. "url": "https://github.com/pear/PEAR_Exception.git",
  6595. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6596. },
  6597. "dist": {
  6598. "type": "zip",
  6599. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6600. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6601. "shasum": ""
  6602. },
  6603. "require": {
  6604. "php": ">=5.2.0"
  6605. },
  6606. "require-dev": {
  6607. "phpunit/phpunit": "<9"
  6608. },
  6609. "type": "class",
  6610. "extra": {
  6611. "branch-alias": {
  6612. "dev-master": "1.0.x-dev"
  6613. }
  6614. },
  6615. "autoload": {
  6616. "classmap": [
  6617. "PEAR/"
  6618. ]
  6619. },
  6620. "notification-url": "https://packagist.org/downloads/",
  6621. "include-path": [
  6622. "."
  6623. ],
  6624. "license": [
  6625. "BSD-2-Clause"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "Helgi Thormar",
  6630. "email": "dufuz@php.net"
  6631. },
  6632. {
  6633. "name": "Greg Beaver",
  6634. "email": "cellog@php.net"
  6635. }
  6636. ],
  6637. "description": "The PEAR Exception base class.",
  6638. "homepage": "https://github.com/pear/PEAR_Exception",
  6639. "keywords": [
  6640. "exception"
  6641. ],
  6642. "support": {
  6643. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6644. "source": "https://github.com/pear/PEAR_Exception"
  6645. },
  6646. "time": "2021-03-21T15:43:46+00:00"
  6647. },
  6648. {
  6649. "name": "phootwork/collection",
  6650. "version": "v3.2.3",
  6651. "source": {
  6652. "type": "git",
  6653. "url": "https://github.com/phootwork/collection.git",
  6654. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6655. },
  6656. "dist": {
  6657. "type": "zip",
  6658. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6659. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6660. "shasum": ""
  6661. },
  6662. "require": {
  6663. "phootwork/lang": "^3.0",
  6664. "php": ">=8.0"
  6665. },
  6666. "type": "library",
  6667. "autoload": {
  6668. "psr-4": {
  6669. "phootwork\\collection\\": ""
  6670. }
  6671. },
  6672. "notification-url": "https://packagist.org/downloads/",
  6673. "license": [
  6674. "MIT"
  6675. ],
  6676. "authors": [
  6677. {
  6678. "name": "Thomas Gossmann",
  6679. "homepage": "http://gos.si"
  6680. }
  6681. ],
  6682. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6683. "homepage": "https://phootwork.github.io/collection/",
  6684. "keywords": [
  6685. "Array object",
  6686. "Text object",
  6687. "collection",
  6688. "collections",
  6689. "json",
  6690. "list",
  6691. "map",
  6692. "queue",
  6693. "set",
  6694. "stack",
  6695. "xml"
  6696. ],
  6697. "support": {
  6698. "issues": "https://github.com/phootwork/phootwork/issues",
  6699. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  6700. },
  6701. "time": "2022-08-27T12:51:24+00:00"
  6702. },
  6703. {
  6704. "name": "phootwork/lang",
  6705. "version": "v3.2.3",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/phootwork/lang.git",
  6709. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6714. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6715. "shasum": ""
  6716. },
  6717. "require": {
  6718. "php": ">=8.0",
  6719. "symfony/polyfill-mbstring": "^1.12",
  6720. "symfony/polyfill-php81": "^1.22"
  6721. },
  6722. "type": "library",
  6723. "autoload": {
  6724. "psr-4": {
  6725. "phootwork\\lang\\": ""
  6726. }
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Thomas Gossmann",
  6735. "homepage": "http://gos.si"
  6736. }
  6737. ],
  6738. "description": "Missing PHP language constructs",
  6739. "homepage": "https://phootwork.github.io/lang/",
  6740. "keywords": [
  6741. "array",
  6742. "comparator",
  6743. "comparison",
  6744. "string"
  6745. ],
  6746. "support": {
  6747. "issues": "https://github.com/phootwork/phootwork/issues",
  6748. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  6749. },
  6750. "time": "2024-10-03T13:43:19+00:00"
  6751. },
  6752. {
  6753. "name": "phpowermove/docblock",
  6754. "version": "v4.0",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://github.com/phpowermove/docblock.git",
  6758. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6763. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6764. "shasum": ""
  6765. },
  6766. "require": {
  6767. "phootwork/collection": "^3.0",
  6768. "phootwork/lang": "^3.0",
  6769. "php": ">=8.0"
  6770. },
  6771. "require-dev": {
  6772. "phootwork/php-cs-fixer-config": "^0.4",
  6773. "phpunit/phpunit": "^9.0",
  6774. "psalm/phar": "^4.3"
  6775. },
  6776. "type": "library",
  6777. "autoload": {
  6778. "psr-4": {
  6779. "phpowermove\\docblock\\": "src/"
  6780. }
  6781. },
  6782. "notification-url": "https://packagist.org/downloads/",
  6783. "license": [
  6784. "MIT"
  6785. ],
  6786. "authors": [
  6787. {
  6788. "name": "Thomas Gossmann",
  6789. "homepage": "http://gos.si"
  6790. }
  6791. ],
  6792. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6793. "keywords": [
  6794. "docblock",
  6795. "generator",
  6796. "parser"
  6797. ],
  6798. "support": {
  6799. "issues": "https://github.com/phpowermove/docblock/issues",
  6800. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6801. },
  6802. "time": "2021-09-22T16:57:06+00:00"
  6803. },
  6804. {
  6805. "name": "phpstan/phpstan",
  6806. "version": "1.12.3",
  6807. "source": {
  6808. "type": "git",
  6809. "url": "https://github.com/phpstan/phpstan.git",
  6810. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6811. },
  6812. "dist": {
  6813. "type": "zip",
  6814. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6815. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6816. "shasum": ""
  6817. },
  6818. "require": {
  6819. "php": "^7.2|^8.0"
  6820. },
  6821. "conflict": {
  6822. "phpstan/phpstan-shim": "*"
  6823. },
  6824. "bin": [
  6825. "phpstan",
  6826. "phpstan.phar"
  6827. ],
  6828. "type": "library",
  6829. "autoload": {
  6830. "files": [
  6831. "bootstrap.php"
  6832. ]
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "license": [
  6836. "MIT"
  6837. ],
  6838. "description": "PHPStan - PHP Static Analysis Tool",
  6839. "keywords": [
  6840. "dev",
  6841. "static analysis"
  6842. ],
  6843. "support": {
  6844. "docs": "https://phpstan.org/user-guide/getting-started",
  6845. "forum": "https://github.com/phpstan/phpstan/discussions",
  6846. "issues": "https://github.com/phpstan/phpstan/issues",
  6847. "security": "https://github.com/phpstan/phpstan/security/policy",
  6848. "source": "https://github.com/phpstan/phpstan-src"
  6849. },
  6850. "funding": [
  6851. {
  6852. "url": "https://github.com/ondrejmirtes",
  6853. "type": "github"
  6854. },
  6855. {
  6856. "url": "https://github.com/phpstan",
  6857. "type": "github"
  6858. }
  6859. ],
  6860. "time": "2024-09-09T08:10:35+00:00"
  6861. },
  6862. {
  6863. "name": "phpstan/phpstan-deprecation-rules",
  6864. "version": "1.2.1",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6868. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6873. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6874. "shasum": ""
  6875. },
  6876. "require": {
  6877. "php": "^7.2 || ^8.0",
  6878. "phpstan/phpstan": "^1.12"
  6879. },
  6880. "require-dev": {
  6881. "php-parallel-lint/php-parallel-lint": "^1.2",
  6882. "phpstan/phpstan-phpunit": "^1.0",
  6883. "phpunit/phpunit": "^9.5"
  6884. },
  6885. "type": "phpstan-extension",
  6886. "extra": {
  6887. "phpstan": {
  6888. "includes": [
  6889. "rules.neon"
  6890. ]
  6891. }
  6892. },
  6893. "autoload": {
  6894. "psr-4": {
  6895. "PHPStan\\": "src/"
  6896. }
  6897. },
  6898. "notification-url": "https://packagist.org/downloads/",
  6899. "license": [
  6900. "MIT"
  6901. ],
  6902. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6903. "support": {
  6904. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6905. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  6906. },
  6907. "time": "2024-09-11T15:52:35+00:00"
  6908. },
  6909. {
  6910. "name": "psr/cache",
  6911. "version": "3.0.0",
  6912. "source": {
  6913. "type": "git",
  6914. "url": "https://github.com/php-fig/cache.git",
  6915. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6916. },
  6917. "dist": {
  6918. "type": "zip",
  6919. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6920. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6921. "shasum": ""
  6922. },
  6923. "require": {
  6924. "php": ">=8.0.0"
  6925. },
  6926. "type": "library",
  6927. "extra": {
  6928. "branch-alias": {
  6929. "dev-master": "1.0.x-dev"
  6930. }
  6931. },
  6932. "autoload": {
  6933. "psr-4": {
  6934. "Psr\\Cache\\": "src/"
  6935. }
  6936. },
  6937. "notification-url": "https://packagist.org/downloads/",
  6938. "license": [
  6939. "MIT"
  6940. ],
  6941. "authors": [
  6942. {
  6943. "name": "PHP-FIG",
  6944. "homepage": "https://www.php-fig.org/"
  6945. }
  6946. ],
  6947. "description": "Common interface for caching libraries",
  6948. "keywords": [
  6949. "cache",
  6950. "psr",
  6951. "psr-6"
  6952. ],
  6953. "support": {
  6954. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6955. },
  6956. "time": "2021-02-03T23:26:27+00:00"
  6957. },
  6958. {
  6959. "name": "psr/container",
  6960. "version": "2.0.2",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://github.com/php-fig/container.git",
  6964. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6969. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6970. "shasum": ""
  6971. },
  6972. "require": {
  6973. "php": ">=7.4.0"
  6974. },
  6975. "type": "library",
  6976. "extra": {
  6977. "branch-alias": {
  6978. "dev-master": "2.0.x-dev"
  6979. }
  6980. },
  6981. "autoload": {
  6982. "psr-4": {
  6983. "Psr\\Container\\": "src/"
  6984. }
  6985. },
  6986. "notification-url": "https://packagist.org/downloads/",
  6987. "license": [
  6988. "MIT"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "PHP-FIG",
  6993. "homepage": "https://www.php-fig.org/"
  6994. }
  6995. ],
  6996. "description": "Common Container Interface (PHP FIG PSR-11)",
  6997. "homepage": "https://github.com/php-fig/container",
  6998. "keywords": [
  6999. "PSR-11",
  7000. "container",
  7001. "container-interface",
  7002. "container-interop",
  7003. "psr"
  7004. ],
  7005. "support": {
  7006. "issues": "https://github.com/php-fig/container/issues",
  7007. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7008. },
  7009. "time": "2021-11-05T16:47:00+00:00"
  7010. },
  7011. {
  7012. "name": "psr/event-dispatcher",
  7013. "version": "1.0.0",
  7014. "source": {
  7015. "type": "git",
  7016. "url": "https://github.com/php-fig/event-dispatcher.git",
  7017. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7018. },
  7019. "dist": {
  7020. "type": "zip",
  7021. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7022. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7023. "shasum": ""
  7024. },
  7025. "require": {
  7026. "php": ">=7.2.0"
  7027. },
  7028. "type": "library",
  7029. "extra": {
  7030. "branch-alias": {
  7031. "dev-master": "1.0.x-dev"
  7032. }
  7033. },
  7034. "autoload": {
  7035. "psr-4": {
  7036. "Psr\\EventDispatcher\\": "src/"
  7037. }
  7038. },
  7039. "notification-url": "https://packagist.org/downloads/",
  7040. "license": [
  7041. "MIT"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "PHP-FIG",
  7046. "homepage": "http://www.php-fig.org/"
  7047. }
  7048. ],
  7049. "description": "Standard interfaces for event handling.",
  7050. "keywords": [
  7051. "events",
  7052. "psr",
  7053. "psr-14"
  7054. ],
  7055. "support": {
  7056. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7057. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7058. },
  7059. "time": "2019-01-08T18:20:26+00:00"
  7060. },
  7061. {
  7062. "name": "psr/http-client",
  7063. "version": "1.0.3",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/php-fig/http-client.git",
  7067. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7072. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7073. "shasum": ""
  7074. },
  7075. "require": {
  7076. "php": "^7.0 || ^8.0",
  7077. "psr/http-message": "^1.0 || ^2.0"
  7078. },
  7079. "type": "library",
  7080. "extra": {
  7081. "branch-alias": {
  7082. "dev-master": "1.0.x-dev"
  7083. }
  7084. },
  7085. "autoload": {
  7086. "psr-4": {
  7087. "Psr\\Http\\Client\\": "src/"
  7088. }
  7089. },
  7090. "notification-url": "https://packagist.org/downloads/",
  7091. "license": [
  7092. "MIT"
  7093. ],
  7094. "authors": [
  7095. {
  7096. "name": "PHP-FIG",
  7097. "homepage": "https://www.php-fig.org/"
  7098. }
  7099. ],
  7100. "description": "Common interface for HTTP clients",
  7101. "homepage": "https://github.com/php-fig/http-client",
  7102. "keywords": [
  7103. "http",
  7104. "http-client",
  7105. "psr",
  7106. "psr-18"
  7107. ],
  7108. "support": {
  7109. "source": "https://github.com/php-fig/http-client"
  7110. },
  7111. "time": "2023-09-23T14:17:50+00:00"
  7112. },
  7113. {
  7114. "name": "psr/http-factory",
  7115. "version": "1.1.0",
  7116. "source": {
  7117. "type": "git",
  7118. "url": "https://github.com/php-fig/http-factory.git",
  7119. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7120. },
  7121. "dist": {
  7122. "type": "zip",
  7123. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7124. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7125. "shasum": ""
  7126. },
  7127. "require": {
  7128. "php": ">=7.1",
  7129. "psr/http-message": "^1.0 || ^2.0"
  7130. },
  7131. "type": "library",
  7132. "extra": {
  7133. "branch-alias": {
  7134. "dev-master": "1.0.x-dev"
  7135. }
  7136. },
  7137. "autoload": {
  7138. "psr-4": {
  7139. "Psr\\Http\\Message\\": "src/"
  7140. }
  7141. },
  7142. "notification-url": "https://packagist.org/downloads/",
  7143. "license": [
  7144. "MIT"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "PHP-FIG",
  7149. "homepage": "https://www.php-fig.org/"
  7150. }
  7151. ],
  7152. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7153. "keywords": [
  7154. "factory",
  7155. "http",
  7156. "message",
  7157. "psr",
  7158. "psr-17",
  7159. "psr-7",
  7160. "request",
  7161. "response"
  7162. ],
  7163. "support": {
  7164. "source": "https://github.com/php-fig/http-factory"
  7165. },
  7166. "time": "2024-04-15T12:06:14+00:00"
  7167. },
  7168. {
  7169. "name": "psr/http-message",
  7170. "version": "2.0",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/php-fig/http-message.git",
  7174. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7179. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "php": "^7.2 || ^8.0"
  7184. },
  7185. "type": "library",
  7186. "extra": {
  7187. "branch-alias": {
  7188. "dev-master": "2.0.x-dev"
  7189. }
  7190. },
  7191. "autoload": {
  7192. "psr-4": {
  7193. "Psr\\Http\\Message\\": "src/"
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "PHP-FIG",
  7203. "homepage": "https://www.php-fig.org/"
  7204. }
  7205. ],
  7206. "description": "Common interface for HTTP messages",
  7207. "homepage": "https://github.com/php-fig/http-message",
  7208. "keywords": [
  7209. "http",
  7210. "http-message",
  7211. "psr",
  7212. "psr-7",
  7213. "request",
  7214. "response"
  7215. ],
  7216. "support": {
  7217. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7218. },
  7219. "time": "2023-04-04T09:54:51+00:00"
  7220. },
  7221. {
  7222. "name": "psr/log",
  7223. "version": "3.0.2",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/php-fig/log.git",
  7227. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7232. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7233. "shasum": ""
  7234. },
  7235. "require": {
  7236. "php": ">=8.0.0"
  7237. },
  7238. "type": "library",
  7239. "extra": {
  7240. "branch-alias": {
  7241. "dev-master": "3.x-dev"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "psr-4": {
  7246. "Psr\\Log\\": "src"
  7247. }
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "MIT"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "PHP-FIG",
  7256. "homepage": "https://www.php-fig.org/"
  7257. }
  7258. ],
  7259. "description": "Common interface for logging libraries",
  7260. "homepage": "https://github.com/php-fig/log",
  7261. "keywords": [
  7262. "log",
  7263. "psr",
  7264. "psr-3"
  7265. ],
  7266. "support": {
  7267. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7268. },
  7269. "time": "2024-09-11T13:17:53+00:00"
  7270. },
  7271. {
  7272. "name": "psy/psysh",
  7273. "version": "v0.12.22",
  7274. "source": {
  7275. "type": "git",
  7276. "url": "https://github.com/bobthecow/psysh.git",
  7277. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f"
  7278. },
  7279. "dist": {
  7280. "type": "zip",
  7281. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7282. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7283. "shasum": ""
  7284. },
  7285. "require": {
  7286. "ext-json": "*",
  7287. "ext-tokenizer": "*",
  7288. "nikic/php-parser": "^5.0 || ^4.0",
  7289. "php": "^8.0 || ^7.4",
  7290. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7291. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7292. },
  7293. "conflict": {
  7294. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7295. },
  7296. "require-dev": {
  7297. "bamarni/composer-bin-plugin": "^1.2",
  7298. "composer/class-map-generator": "^1.6"
  7299. },
  7300. "suggest": {
  7301. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  7302. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7303. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7304. },
  7305. "bin": [
  7306. "bin/psysh"
  7307. ],
  7308. "type": "library",
  7309. "extra": {
  7310. "bamarni-bin": {
  7311. "bin-links": false,
  7312. "forward-command": false
  7313. },
  7314. "branch-alias": {
  7315. "dev-main": "0.12.x-dev"
  7316. }
  7317. },
  7318. "autoload": {
  7319. "files": [
  7320. "src/functions.php"
  7321. ],
  7322. "psr-4": {
  7323. "Psy\\": "src/"
  7324. }
  7325. },
  7326. "notification-url": "https://packagist.org/downloads/",
  7327. "license": [
  7328. "MIT"
  7329. ],
  7330. "authors": [
  7331. {
  7332. "name": "Justin Hileman",
  7333. "email": "justin@justinhileman.info"
  7334. }
  7335. ],
  7336. "description": "An interactive shell for modern PHP.",
  7337. "homepage": "https://psysh.org",
  7338. "keywords": [
  7339. "REPL",
  7340. "console",
  7341. "interactive",
  7342. "shell"
  7343. ],
  7344. "support": {
  7345. "issues": "https://github.com/bobthecow/psysh/issues",
  7346. "source": "https://github.com/bobthecow/psysh/tree/v0.12.22"
  7347. },
  7348. "time": "2026-03-22T23:03:24+00:00"
  7349. },
  7350. {
  7351. "name": "ralouphie/getallheaders",
  7352. "version": "3.0.3",
  7353. "source": {
  7354. "type": "git",
  7355. "url": "https://github.com/ralouphie/getallheaders.git",
  7356. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7357. },
  7358. "dist": {
  7359. "type": "zip",
  7360. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7361. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7362. "shasum": ""
  7363. },
  7364. "require": {
  7365. "php": ">=5.6"
  7366. },
  7367. "require-dev": {
  7368. "php-coveralls/php-coveralls": "^2.1",
  7369. "phpunit/phpunit": "^5 || ^6.5"
  7370. },
  7371. "type": "library",
  7372. "autoload": {
  7373. "files": [
  7374. "src/getallheaders.php"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Ralph Khattar",
  7384. "email": "ralph.khattar@gmail.com"
  7385. }
  7386. ],
  7387. "description": "A polyfill for getallheaders.",
  7388. "support": {
  7389. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7390. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7391. },
  7392. "time": "2019-03-08T08:55:37+00:00"
  7393. },
  7394. {
  7395. "name": "sebastian/diff",
  7396. "version": "4.0.6",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/sebastianbergmann/diff.git",
  7400. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7405. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7406. "shasum": ""
  7407. },
  7408. "require": {
  7409. "php": ">=7.3"
  7410. },
  7411. "require-dev": {
  7412. "phpunit/phpunit": "^9.3",
  7413. "symfony/process": "^4.2 || ^5"
  7414. },
  7415. "type": "library",
  7416. "extra": {
  7417. "branch-alias": {
  7418. "dev-master": "4.0-dev"
  7419. }
  7420. },
  7421. "autoload": {
  7422. "classmap": [
  7423. "src/"
  7424. ]
  7425. },
  7426. "notification-url": "https://packagist.org/downloads/",
  7427. "license": [
  7428. "BSD-3-Clause"
  7429. ],
  7430. "authors": [
  7431. {
  7432. "name": "Sebastian Bergmann",
  7433. "email": "sebastian@phpunit.de"
  7434. },
  7435. {
  7436. "name": "Kore Nordmann",
  7437. "email": "mail@kore-nordmann.de"
  7438. }
  7439. ],
  7440. "description": "Diff implementation",
  7441. "homepage": "https://github.com/sebastianbergmann/diff",
  7442. "keywords": [
  7443. "diff",
  7444. "udiff",
  7445. "unidiff",
  7446. "unified diff"
  7447. ],
  7448. "support": {
  7449. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7450. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7451. },
  7452. "funding": [
  7453. {
  7454. "url": "https://github.com/sebastianbergmann",
  7455. "type": "github"
  7456. }
  7457. ],
  7458. "time": "2024-03-02T06:30:58+00:00"
  7459. },
  7460. {
  7461. "name": "symfony/console",
  7462. "version": "v6.4.35",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/symfony/console.git",
  7466. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  7471. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  7472. "shasum": ""
  7473. },
  7474. "require": {
  7475. "php": ">=8.1",
  7476. "symfony/deprecation-contracts": "^2.5|^3",
  7477. "symfony/polyfill-mbstring": "~1.0",
  7478. "symfony/service-contracts": "^2.5|^3",
  7479. "symfony/string": "^5.4|^6.0|^7.0"
  7480. },
  7481. "conflict": {
  7482. "symfony/dependency-injection": "<5.4",
  7483. "symfony/dotenv": "<5.4",
  7484. "symfony/event-dispatcher": "<5.4",
  7485. "symfony/lock": "<5.4",
  7486. "symfony/process": "<5.4"
  7487. },
  7488. "provide": {
  7489. "psr/log-implementation": "1.0|2.0|3.0"
  7490. },
  7491. "require-dev": {
  7492. "psr/log": "^1|^2|^3",
  7493. "symfony/config": "^5.4|^6.0|^7.0",
  7494. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7495. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7496. "symfony/http-foundation": "^6.4|^7.0",
  7497. "symfony/http-kernel": "^6.4|^7.0",
  7498. "symfony/lock": "^5.4|^6.0|^7.0",
  7499. "symfony/messenger": "^5.4|^6.0|^7.0",
  7500. "symfony/process": "^5.4|^6.0|^7.0",
  7501. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7502. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7503. },
  7504. "type": "library",
  7505. "autoload": {
  7506. "psr-4": {
  7507. "Symfony\\Component\\Console\\": ""
  7508. },
  7509. "exclude-from-classmap": [
  7510. "/Tests/"
  7511. ]
  7512. },
  7513. "notification-url": "https://packagist.org/downloads/",
  7514. "license": [
  7515. "MIT"
  7516. ],
  7517. "authors": [
  7518. {
  7519. "name": "Fabien Potencier",
  7520. "email": "fabien@symfony.com"
  7521. },
  7522. {
  7523. "name": "Symfony Community",
  7524. "homepage": "https://symfony.com/contributors"
  7525. }
  7526. ],
  7527. "description": "Eases the creation of beautiful and testable command line interfaces",
  7528. "homepage": "https://symfony.com",
  7529. "keywords": [
  7530. "cli",
  7531. "command-line",
  7532. "console",
  7533. "terminal"
  7534. ],
  7535. "support": {
  7536. "source": "https://github.com/symfony/console/tree/v6.4.35"
  7537. },
  7538. "funding": [
  7539. {
  7540. "url": "https://symfony.com/sponsor",
  7541. "type": "custom"
  7542. },
  7543. {
  7544. "url": "https://github.com/fabpot",
  7545. "type": "github"
  7546. },
  7547. {
  7548. "url": "https://github.com/nicolas-grekas",
  7549. "type": "github"
  7550. },
  7551. {
  7552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7553. "type": "tidelift"
  7554. }
  7555. ],
  7556. "time": "2026-03-06T13:31:08+00:00"
  7557. },
  7558. {
  7559. "name": "symfony/dependency-injection",
  7560. "version": "v6.4.35",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/symfony/dependency-injection.git",
  7564. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  7569. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  7570. "shasum": ""
  7571. },
  7572. "require": {
  7573. "php": ">=8.1",
  7574. "psr/container": "^1.1|^2.0",
  7575. "symfony/deprecation-contracts": "^2.5|^3",
  7576. "symfony/service-contracts": "^2.5|^3.0",
  7577. "symfony/var-exporter": "^6.4.20|^7.2.5"
  7578. },
  7579. "conflict": {
  7580. "ext-psr": "<1.1|>=2",
  7581. "symfony/config": "<6.1",
  7582. "symfony/finder": "<5.4",
  7583. "symfony/proxy-manager-bridge": "<6.3",
  7584. "symfony/yaml": "<5.4"
  7585. },
  7586. "provide": {
  7587. "psr/container-implementation": "1.1|2.0",
  7588. "symfony/service-implementation": "1.1|2.0|3.0"
  7589. },
  7590. "require-dev": {
  7591. "symfony/config": "^6.1|^7.0",
  7592. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7593. "symfony/yaml": "^5.4|^6.0|^7.0"
  7594. },
  7595. "type": "library",
  7596. "autoload": {
  7597. "psr-4": {
  7598. "Symfony\\Component\\DependencyInjection\\": ""
  7599. },
  7600. "exclude-from-classmap": [
  7601. "/Tests/"
  7602. ]
  7603. },
  7604. "notification-url": "https://packagist.org/downloads/",
  7605. "license": [
  7606. "MIT"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Fabien Potencier",
  7611. "email": "fabien@symfony.com"
  7612. },
  7613. {
  7614. "name": "Symfony Community",
  7615. "homepage": "https://symfony.com/contributors"
  7616. }
  7617. ],
  7618. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7619. "homepage": "https://symfony.com",
  7620. "support": {
  7621. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  7622. },
  7623. "funding": [
  7624. {
  7625. "url": "https://symfony.com/sponsor",
  7626. "type": "custom"
  7627. },
  7628. {
  7629. "url": "https://github.com/fabpot",
  7630. "type": "github"
  7631. },
  7632. {
  7633. "url": "https://github.com/nicolas-grekas",
  7634. "type": "github"
  7635. },
  7636. {
  7637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7638. "type": "tidelift"
  7639. }
  7640. ],
  7641. "time": "2026-02-26T12:16:01+00:00"
  7642. },
  7643. {
  7644. "name": "symfony/deprecation-contracts",
  7645. "version": "v3.6.0",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/symfony/deprecation-contracts.git",
  7649. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7654. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": ">=8.1"
  7659. },
  7660. "type": "library",
  7661. "extra": {
  7662. "thanks": {
  7663. "url": "https://github.com/symfony/contracts",
  7664. "name": "symfony/contracts"
  7665. },
  7666. "branch-alias": {
  7667. "dev-main": "3.6-dev"
  7668. }
  7669. },
  7670. "autoload": {
  7671. "files": [
  7672. "function.php"
  7673. ]
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "license": [
  7677. "MIT"
  7678. ],
  7679. "authors": [
  7680. {
  7681. "name": "Nicolas Grekas",
  7682. "email": "p@tchwork.com"
  7683. },
  7684. {
  7685. "name": "Symfony Community",
  7686. "homepage": "https://symfony.com/contributors"
  7687. }
  7688. ],
  7689. "description": "A generic function and convention to trigger deprecation notices",
  7690. "homepage": "https://symfony.com",
  7691. "support": {
  7692. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  7693. },
  7694. "funding": [
  7695. {
  7696. "url": "https://symfony.com/sponsor",
  7697. "type": "custom"
  7698. },
  7699. {
  7700. "url": "https://github.com/fabpot",
  7701. "type": "github"
  7702. },
  7703. {
  7704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7705. "type": "tidelift"
  7706. }
  7707. ],
  7708. "time": "2024-09-25T14:21:43+00:00"
  7709. },
  7710. {
  7711. "name": "symfony/error-handler",
  7712. "version": "v6.4.32",
  7713. "source": {
  7714. "type": "git",
  7715. "url": "https://github.com/symfony/error-handler.git",
  7716. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  7717. },
  7718. "dist": {
  7719. "type": "zip",
  7720. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7721. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7722. "shasum": ""
  7723. },
  7724. "require": {
  7725. "php": ">=8.1",
  7726. "psr/log": "^1|^2|^3",
  7727. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7728. },
  7729. "conflict": {
  7730. "symfony/deprecation-contracts": "<2.5",
  7731. "symfony/http-kernel": "<6.4"
  7732. },
  7733. "require-dev": {
  7734. "symfony/deprecation-contracts": "^2.5|^3",
  7735. "symfony/http-kernel": "^6.4|^7.0",
  7736. "symfony/serializer": "^5.4|^6.0|^7.0"
  7737. },
  7738. "bin": [
  7739. "Resources/bin/patch-type-declarations"
  7740. ],
  7741. "type": "library",
  7742. "autoload": {
  7743. "psr-4": {
  7744. "Symfony\\Component\\ErrorHandler\\": ""
  7745. },
  7746. "exclude-from-classmap": [
  7747. "/Tests/"
  7748. ]
  7749. },
  7750. "notification-url": "https://packagist.org/downloads/",
  7751. "license": [
  7752. "MIT"
  7753. ],
  7754. "authors": [
  7755. {
  7756. "name": "Fabien Potencier",
  7757. "email": "fabien@symfony.com"
  7758. },
  7759. {
  7760. "name": "Symfony Community",
  7761. "homepage": "https://symfony.com/contributors"
  7762. }
  7763. ],
  7764. "description": "Provides tools to manage errors and ease debugging PHP code",
  7765. "homepage": "https://symfony.com",
  7766. "support": {
  7767. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  7768. },
  7769. "funding": [
  7770. {
  7771. "url": "https://symfony.com/sponsor",
  7772. "type": "custom"
  7773. },
  7774. {
  7775. "url": "https://github.com/fabpot",
  7776. "type": "github"
  7777. },
  7778. {
  7779. "url": "https://github.com/nicolas-grekas",
  7780. "type": "github"
  7781. },
  7782. {
  7783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7784. "type": "tidelift"
  7785. }
  7786. ],
  7787. "time": "2026-01-19T19:28:19+00:00"
  7788. },
  7789. {
  7790. "name": "symfony/event-dispatcher",
  7791. "version": "v6.4.32",
  7792. "source": {
  7793. "type": "git",
  7794. "url": "https://github.com/symfony/event-dispatcher.git",
  7795. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  7796. },
  7797. "dist": {
  7798. "type": "zip",
  7799. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  7800. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  7801. "shasum": ""
  7802. },
  7803. "require": {
  7804. "php": ">=8.1",
  7805. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7806. },
  7807. "conflict": {
  7808. "symfony/dependency-injection": "<5.4",
  7809. "symfony/service-contracts": "<2.5"
  7810. },
  7811. "provide": {
  7812. "psr/event-dispatcher-implementation": "1.0",
  7813. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7814. },
  7815. "require-dev": {
  7816. "psr/log": "^1|^2|^3",
  7817. "symfony/config": "^5.4|^6.0|^7.0",
  7818. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7819. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7820. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7821. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7822. "symfony/service-contracts": "^2.5|^3",
  7823. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7824. },
  7825. "type": "library",
  7826. "autoload": {
  7827. "psr-4": {
  7828. "Symfony\\Component\\EventDispatcher\\": ""
  7829. },
  7830. "exclude-from-classmap": [
  7831. "/Tests/"
  7832. ]
  7833. },
  7834. "notification-url": "https://packagist.org/downloads/",
  7835. "license": [
  7836. "MIT"
  7837. ],
  7838. "authors": [
  7839. {
  7840. "name": "Fabien Potencier",
  7841. "email": "fabien@symfony.com"
  7842. },
  7843. {
  7844. "name": "Symfony Community",
  7845. "homepage": "https://symfony.com/contributors"
  7846. }
  7847. ],
  7848. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7849. "homepage": "https://symfony.com",
  7850. "support": {
  7851. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  7852. },
  7853. "funding": [
  7854. {
  7855. "url": "https://symfony.com/sponsor",
  7856. "type": "custom"
  7857. },
  7858. {
  7859. "url": "https://github.com/fabpot",
  7860. "type": "github"
  7861. },
  7862. {
  7863. "url": "https://github.com/nicolas-grekas",
  7864. "type": "github"
  7865. },
  7866. {
  7867. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7868. "type": "tidelift"
  7869. }
  7870. ],
  7871. "time": "2026-01-05T11:13:48+00:00"
  7872. },
  7873. {
  7874. "name": "symfony/event-dispatcher-contracts",
  7875. "version": "v3.6.0",
  7876. "source": {
  7877. "type": "git",
  7878. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7879. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7880. },
  7881. "dist": {
  7882. "type": "zip",
  7883. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7884. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7885. "shasum": ""
  7886. },
  7887. "require": {
  7888. "php": ">=8.1",
  7889. "psr/event-dispatcher": "^1"
  7890. },
  7891. "type": "library",
  7892. "extra": {
  7893. "thanks": {
  7894. "url": "https://github.com/symfony/contracts",
  7895. "name": "symfony/contracts"
  7896. },
  7897. "branch-alias": {
  7898. "dev-main": "3.6-dev"
  7899. }
  7900. },
  7901. "autoload": {
  7902. "psr-4": {
  7903. "Symfony\\Contracts\\EventDispatcher\\": ""
  7904. }
  7905. },
  7906. "notification-url": "https://packagist.org/downloads/",
  7907. "license": [
  7908. "MIT"
  7909. ],
  7910. "authors": [
  7911. {
  7912. "name": "Nicolas Grekas",
  7913. "email": "p@tchwork.com"
  7914. },
  7915. {
  7916. "name": "Symfony Community",
  7917. "homepage": "https://symfony.com/contributors"
  7918. }
  7919. ],
  7920. "description": "Generic abstractions related to dispatching event",
  7921. "homepage": "https://symfony.com",
  7922. "keywords": [
  7923. "abstractions",
  7924. "contracts",
  7925. "decoupling",
  7926. "interfaces",
  7927. "interoperability",
  7928. "standards"
  7929. ],
  7930. "support": {
  7931. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7932. },
  7933. "funding": [
  7934. {
  7935. "url": "https://symfony.com/sponsor",
  7936. "type": "custom"
  7937. },
  7938. {
  7939. "url": "https://github.com/fabpot",
  7940. "type": "github"
  7941. },
  7942. {
  7943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7944. "type": "tidelift"
  7945. }
  7946. ],
  7947. "time": "2024-09-25T14:21:43+00:00"
  7948. },
  7949. {
  7950. "name": "symfony/filesystem",
  7951. "version": "v6.4.34",
  7952. "source": {
  7953. "type": "git",
  7954. "url": "https://github.com/symfony/filesystem.git",
  7955. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  7956. },
  7957. "dist": {
  7958. "type": "zip",
  7959. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7960. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7961. "shasum": ""
  7962. },
  7963. "require": {
  7964. "php": ">=8.1",
  7965. "symfony/polyfill-ctype": "~1.8",
  7966. "symfony/polyfill-mbstring": "~1.8"
  7967. },
  7968. "require-dev": {
  7969. "symfony/process": "^5.4|^6.4|^7.0"
  7970. },
  7971. "type": "library",
  7972. "autoload": {
  7973. "psr-4": {
  7974. "Symfony\\Component\\Filesystem\\": ""
  7975. },
  7976. "exclude-from-classmap": [
  7977. "/Tests/"
  7978. ]
  7979. },
  7980. "notification-url": "https://packagist.org/downloads/",
  7981. "license": [
  7982. "MIT"
  7983. ],
  7984. "authors": [
  7985. {
  7986. "name": "Fabien Potencier",
  7987. "email": "fabien@symfony.com"
  7988. },
  7989. {
  7990. "name": "Symfony Community",
  7991. "homepage": "https://symfony.com/contributors"
  7992. }
  7993. ],
  7994. "description": "Provides basic utilities for the filesystem",
  7995. "homepage": "https://symfony.com",
  7996. "support": {
  7997. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  7998. },
  7999. "funding": [
  8000. {
  8001. "url": "https://symfony.com/sponsor",
  8002. "type": "custom"
  8003. },
  8004. {
  8005. "url": "https://github.com/fabpot",
  8006. "type": "github"
  8007. },
  8008. {
  8009. "url": "https://github.com/nicolas-grekas",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "time": "2026-02-24T17:51:06+00:00"
  8018. },
  8019. {
  8020. "name": "symfony/finder",
  8021. "version": "v6.4.34",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/symfony/finder.git",
  8025. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  8030. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "php": ">=8.1"
  8035. },
  8036. "require-dev": {
  8037. "symfony/filesystem": "^6.0|^7.0"
  8038. },
  8039. "type": "library",
  8040. "autoload": {
  8041. "psr-4": {
  8042. "Symfony\\Component\\Finder\\": ""
  8043. },
  8044. "exclude-from-classmap": [
  8045. "/Tests/"
  8046. ]
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "MIT"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "Fabien Potencier",
  8055. "email": "fabien@symfony.com"
  8056. },
  8057. {
  8058. "name": "Symfony Community",
  8059. "homepage": "https://symfony.com/contributors"
  8060. }
  8061. ],
  8062. "description": "Finds files and directories via an intuitive fluent interface",
  8063. "homepage": "https://symfony.com",
  8064. "support": {
  8065. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  8066. },
  8067. "funding": [
  8068. {
  8069. "url": "https://symfony.com/sponsor",
  8070. "type": "custom"
  8071. },
  8072. {
  8073. "url": "https://github.com/fabpot",
  8074. "type": "github"
  8075. },
  8076. {
  8077. "url": "https://github.com/nicolas-grekas",
  8078. "type": "github"
  8079. },
  8080. {
  8081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8082. "type": "tidelift"
  8083. }
  8084. ],
  8085. "time": "2026-01-28T15:16:37+00:00"
  8086. },
  8087. {
  8088. "name": "symfony/http-foundation",
  8089. "version": "v6.4.35",
  8090. "source": {
  8091. "type": "git",
  8092. "url": "https://github.com/symfony/http-foundation.git",
  8093. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  8094. },
  8095. "dist": {
  8096. "type": "zip",
  8097. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8098. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8099. "shasum": ""
  8100. },
  8101. "require": {
  8102. "php": ">=8.1",
  8103. "symfony/deprecation-contracts": "^2.5|^3",
  8104. "symfony/polyfill-mbstring": "~1.1",
  8105. "symfony/polyfill-php83": "^1.27"
  8106. },
  8107. "conflict": {
  8108. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8109. },
  8110. "require-dev": {
  8111. "doctrine/dbal": "^2.13.1|^3|^4",
  8112. "predis/predis": "^1.1|^2.0",
  8113. "symfony/cache": "^6.4.12|^7.1.5",
  8114. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8115. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8116. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8117. "symfony/mime": "^5.4|^6.0|^7.0",
  8118. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8119. },
  8120. "type": "library",
  8121. "autoload": {
  8122. "psr-4": {
  8123. "Symfony\\Component\\HttpFoundation\\": ""
  8124. },
  8125. "exclude-from-classmap": [
  8126. "/Tests/"
  8127. ]
  8128. },
  8129. "notification-url": "https://packagist.org/downloads/",
  8130. "license": [
  8131. "MIT"
  8132. ],
  8133. "authors": [
  8134. {
  8135. "name": "Fabien Potencier",
  8136. "email": "fabien@symfony.com"
  8137. },
  8138. {
  8139. "name": "Symfony Community",
  8140. "homepage": "https://symfony.com/contributors"
  8141. }
  8142. ],
  8143. "description": "Defines an object-oriented layer for the HTTP specification",
  8144. "homepage": "https://symfony.com",
  8145. "support": {
  8146. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  8147. },
  8148. "funding": [
  8149. {
  8150. "url": "https://symfony.com/sponsor",
  8151. "type": "custom"
  8152. },
  8153. {
  8154. "url": "https://github.com/fabpot",
  8155. "type": "github"
  8156. },
  8157. {
  8158. "url": "https://github.com/nicolas-grekas",
  8159. "type": "github"
  8160. },
  8161. {
  8162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8163. "type": "tidelift"
  8164. }
  8165. ],
  8166. "time": "2026-03-06T11:15:58+00:00"
  8167. },
  8168. {
  8169. "name": "symfony/http-kernel",
  8170. "version": "v6.4.35",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/symfony/http-kernel.git",
  8174. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  8179. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "php": ">=8.1",
  8184. "psr/log": "^1|^2|^3",
  8185. "symfony/deprecation-contracts": "^2.5|^3",
  8186. "symfony/error-handler": "^6.4|^7.0",
  8187. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8188. "symfony/http-foundation": "^6.4|^7.0",
  8189. "symfony/polyfill-ctype": "^1.8"
  8190. },
  8191. "conflict": {
  8192. "symfony/browser-kit": "<5.4",
  8193. "symfony/cache": "<5.4",
  8194. "symfony/config": "<6.1",
  8195. "symfony/console": "<5.4",
  8196. "symfony/dependency-injection": "<6.4",
  8197. "symfony/doctrine-bridge": "<5.4",
  8198. "symfony/form": "<5.4",
  8199. "symfony/http-client": "<5.4",
  8200. "symfony/http-client-contracts": "<2.5",
  8201. "symfony/mailer": "<5.4",
  8202. "symfony/messenger": "<5.4",
  8203. "symfony/translation": "<5.4",
  8204. "symfony/translation-contracts": "<2.5",
  8205. "symfony/twig-bridge": "<5.4",
  8206. "symfony/validator": "<6.4",
  8207. "symfony/var-dumper": "<6.3",
  8208. "twig/twig": "<2.13"
  8209. },
  8210. "provide": {
  8211. "psr/log-implementation": "1.0|2.0|3.0"
  8212. },
  8213. "require-dev": {
  8214. "psr/cache": "^1.0|^2.0|^3.0",
  8215. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8216. "symfony/clock": "^6.2|^7.0",
  8217. "symfony/config": "^6.1|^7.0",
  8218. "symfony/console": "^5.4|^6.0|^7.0",
  8219. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8220. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  8221. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8222. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8223. "symfony/finder": "^5.4|^6.0|^7.0",
  8224. "symfony/http-client-contracts": "^2.5|^3",
  8225. "symfony/process": "^5.4|^6.0|^7.0",
  8226. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8227. "symfony/routing": "^5.4|^6.0|^7.0",
  8228. "symfony/serializer": "^6.4.4|^7.0.4",
  8229. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8230. "symfony/translation": "^5.4|^6.0|^7.0",
  8231. "symfony/translation-contracts": "^2.5|^3",
  8232. "symfony/uid": "^5.4|^6.0|^7.0",
  8233. "symfony/validator": "^6.4|^7.0",
  8234. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8235. "symfony/var-exporter": "^6.2|^7.0",
  8236. "twig/twig": "^2.13|^3.0.4"
  8237. },
  8238. "type": "library",
  8239. "autoload": {
  8240. "psr-4": {
  8241. "Symfony\\Component\\HttpKernel\\": ""
  8242. },
  8243. "exclude-from-classmap": [
  8244. "/Tests/"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "MIT"
  8250. ],
  8251. "authors": [
  8252. {
  8253. "name": "Fabien Potencier",
  8254. "email": "fabien@symfony.com"
  8255. },
  8256. {
  8257. "name": "Symfony Community",
  8258. "homepage": "https://symfony.com/contributors"
  8259. }
  8260. ],
  8261. "description": "Provides a structured process for converting a Request into a Response",
  8262. "homepage": "https://symfony.com",
  8263. "support": {
  8264. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  8265. },
  8266. "funding": [
  8267. {
  8268. "url": "https://symfony.com/sponsor",
  8269. "type": "custom"
  8270. },
  8271. {
  8272. "url": "https://github.com/fabpot",
  8273. "type": "github"
  8274. },
  8275. {
  8276. "url": "https://github.com/nicolas-grekas",
  8277. "type": "github"
  8278. },
  8279. {
  8280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8281. "type": "tidelift"
  8282. }
  8283. ],
  8284. "time": "2026-03-06T16:28:07+00:00"
  8285. },
  8286. {
  8287. "name": "symfony/mailer",
  8288. "version": "v6.4.34",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/symfony/mailer.git",
  8292. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  8297. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "egulias/email-validator": "^2.1.10|^3|^4",
  8302. "php": ">=8.1",
  8303. "psr/event-dispatcher": "^1",
  8304. "psr/log": "^1|^2|^3",
  8305. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8306. "symfony/mime": "^6.2|^7.0",
  8307. "symfony/service-contracts": "^2.5|^3"
  8308. },
  8309. "conflict": {
  8310. "symfony/http-client-contracts": "<2.5",
  8311. "symfony/http-kernel": "<5.4",
  8312. "symfony/messenger": "<6.2",
  8313. "symfony/mime": "<6.2",
  8314. "symfony/twig-bridge": "<6.2.1"
  8315. },
  8316. "require-dev": {
  8317. "symfony/console": "^5.4|^6.0|^7.0",
  8318. "symfony/http-client": "^5.4|^6.0|^7.0",
  8319. "symfony/messenger": "^6.2|^7.0",
  8320. "symfony/twig-bridge": "^6.2|^7.0"
  8321. },
  8322. "type": "library",
  8323. "autoload": {
  8324. "psr-4": {
  8325. "Symfony\\Component\\Mailer\\": ""
  8326. },
  8327. "exclude-from-classmap": [
  8328. "/Tests/"
  8329. ]
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Fabien Potencier",
  8338. "email": "fabien@symfony.com"
  8339. },
  8340. {
  8341. "name": "Symfony Community",
  8342. "homepage": "https://symfony.com/contributors"
  8343. }
  8344. ],
  8345. "description": "Helps sending emails",
  8346. "homepage": "https://symfony.com",
  8347. "support": {
  8348. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  8349. },
  8350. "funding": [
  8351. {
  8352. "url": "https://symfony.com/sponsor",
  8353. "type": "custom"
  8354. },
  8355. {
  8356. "url": "https://github.com/fabpot",
  8357. "type": "github"
  8358. },
  8359. {
  8360. "url": "https://github.com/nicolas-grekas",
  8361. "type": "github"
  8362. },
  8363. {
  8364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8365. "type": "tidelift"
  8366. }
  8367. ],
  8368. "time": "2026-02-24T09:34:36+00:00"
  8369. },
  8370. {
  8371. "name": "symfony/mime",
  8372. "version": "v6.4.35",
  8373. "source": {
  8374. "type": "git",
  8375. "url": "https://github.com/symfony/mime.git",
  8376. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  8377. },
  8378. "dist": {
  8379. "type": "zip",
  8380. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8381. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8382. "shasum": ""
  8383. },
  8384. "require": {
  8385. "php": ">=8.1",
  8386. "symfony/deprecation-contracts": "^2.5|^3",
  8387. "symfony/polyfill-intl-idn": "^1.10",
  8388. "symfony/polyfill-mbstring": "^1.0"
  8389. },
  8390. "conflict": {
  8391. "egulias/email-validator": "~3.0.0",
  8392. "phpdocumentor/reflection-docblock": "<3.2.2",
  8393. "phpdocumentor/type-resolver": "<1.4.0",
  8394. "symfony/mailer": "<5.4",
  8395. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8396. },
  8397. "require-dev": {
  8398. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8399. "league/html-to-markdown": "^5.0",
  8400. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8401. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8402. "symfony/process": "^5.4|^6.4|^7.0",
  8403. "symfony/property-access": "^5.4|^6.0|^7.0",
  8404. "symfony/property-info": "^5.4|^6.0|^7.0",
  8405. "symfony/serializer": "^6.4.3|^7.0.3"
  8406. },
  8407. "type": "library",
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Symfony\\Component\\Mime\\": ""
  8411. },
  8412. "exclude-from-classmap": [
  8413. "/Tests/"
  8414. ]
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "Fabien Potencier",
  8423. "email": "fabien@symfony.com"
  8424. },
  8425. {
  8426. "name": "Symfony Community",
  8427. "homepage": "https://symfony.com/contributors"
  8428. }
  8429. ],
  8430. "description": "Allows manipulating MIME messages",
  8431. "homepage": "https://symfony.com",
  8432. "keywords": [
  8433. "mime",
  8434. "mime-type"
  8435. ],
  8436. "support": {
  8437. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  8438. },
  8439. "funding": [
  8440. {
  8441. "url": "https://symfony.com/sponsor",
  8442. "type": "custom"
  8443. },
  8444. {
  8445. "url": "https://github.com/fabpot",
  8446. "type": "github"
  8447. },
  8448. {
  8449. "url": "https://github.com/nicolas-grekas",
  8450. "type": "github"
  8451. },
  8452. {
  8453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8454. "type": "tidelift"
  8455. }
  8456. ],
  8457. "time": "2026-03-05T11:25:28+00:00"
  8458. },
  8459. {
  8460. "name": "symfony/polyfill-ctype",
  8461. "version": "v1.33.0",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/symfony/polyfill-ctype.git",
  8465. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8470. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": ">=7.2"
  8475. },
  8476. "provide": {
  8477. "ext-ctype": "*"
  8478. },
  8479. "suggest": {
  8480. "ext-ctype": "For best performance"
  8481. },
  8482. "type": "library",
  8483. "extra": {
  8484. "thanks": {
  8485. "url": "https://github.com/symfony/polyfill",
  8486. "name": "symfony/polyfill"
  8487. }
  8488. },
  8489. "autoload": {
  8490. "files": [
  8491. "bootstrap.php"
  8492. ],
  8493. "psr-4": {
  8494. "Symfony\\Polyfill\\Ctype\\": ""
  8495. }
  8496. },
  8497. "notification-url": "https://packagist.org/downloads/",
  8498. "license": [
  8499. "MIT"
  8500. ],
  8501. "authors": [
  8502. {
  8503. "name": "Gert de Pagter",
  8504. "email": "BackEndTea@gmail.com"
  8505. },
  8506. {
  8507. "name": "Symfony Community",
  8508. "homepage": "https://symfony.com/contributors"
  8509. }
  8510. ],
  8511. "description": "Symfony polyfill for ctype functions",
  8512. "homepage": "https://symfony.com",
  8513. "keywords": [
  8514. "compatibility",
  8515. "ctype",
  8516. "polyfill",
  8517. "portable"
  8518. ],
  8519. "support": {
  8520. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  8521. },
  8522. "funding": [
  8523. {
  8524. "url": "https://symfony.com/sponsor",
  8525. "type": "custom"
  8526. },
  8527. {
  8528. "url": "https://github.com/fabpot",
  8529. "type": "github"
  8530. },
  8531. {
  8532. "url": "https://github.com/nicolas-grekas",
  8533. "type": "github"
  8534. },
  8535. {
  8536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8537. "type": "tidelift"
  8538. }
  8539. ],
  8540. "time": "2024-09-09T11:45:10+00:00"
  8541. },
  8542. {
  8543. "name": "symfony/polyfill-iconv",
  8544. "version": "v1.33.0",
  8545. "source": {
  8546. "type": "git",
  8547. "url": "https://github.com/symfony/polyfill-iconv.git",
  8548. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  8549. },
  8550. "dist": {
  8551. "type": "zip",
  8552. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8553. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8554. "shasum": ""
  8555. },
  8556. "require": {
  8557. "php": ">=7.2"
  8558. },
  8559. "provide": {
  8560. "ext-iconv": "*"
  8561. },
  8562. "suggest": {
  8563. "ext-iconv": "For best performance"
  8564. },
  8565. "type": "library",
  8566. "extra": {
  8567. "thanks": {
  8568. "url": "https://github.com/symfony/polyfill",
  8569. "name": "symfony/polyfill"
  8570. }
  8571. },
  8572. "autoload": {
  8573. "files": [
  8574. "bootstrap.php"
  8575. ],
  8576. "psr-4": {
  8577. "Symfony\\Polyfill\\Iconv\\": ""
  8578. }
  8579. },
  8580. "notification-url": "https://packagist.org/downloads/",
  8581. "license": [
  8582. "MIT"
  8583. ],
  8584. "authors": [
  8585. {
  8586. "name": "Nicolas Grekas",
  8587. "email": "p@tchwork.com"
  8588. },
  8589. {
  8590. "name": "Symfony Community",
  8591. "homepage": "https://symfony.com/contributors"
  8592. }
  8593. ],
  8594. "description": "Symfony polyfill for the Iconv extension",
  8595. "homepage": "https://symfony.com",
  8596. "keywords": [
  8597. "compatibility",
  8598. "iconv",
  8599. "polyfill",
  8600. "portable",
  8601. "shim"
  8602. ],
  8603. "support": {
  8604. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  8605. },
  8606. "funding": [
  8607. {
  8608. "url": "https://symfony.com/sponsor",
  8609. "type": "custom"
  8610. },
  8611. {
  8612. "url": "https://github.com/fabpot",
  8613. "type": "github"
  8614. },
  8615. {
  8616. "url": "https://github.com/nicolas-grekas",
  8617. "type": "github"
  8618. },
  8619. {
  8620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8621. "type": "tidelift"
  8622. }
  8623. ],
  8624. "time": "2024-09-17T14:58:18+00:00"
  8625. },
  8626. {
  8627. "name": "symfony/polyfill-intl-grapheme",
  8628. "version": "v1.33.0",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8632. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8637. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8638. "shasum": ""
  8639. },
  8640. "require": {
  8641. "php": ">=7.2"
  8642. },
  8643. "suggest": {
  8644. "ext-intl": "For best performance"
  8645. },
  8646. "type": "library",
  8647. "extra": {
  8648. "thanks": {
  8649. "url": "https://github.com/symfony/polyfill",
  8650. "name": "symfony/polyfill"
  8651. }
  8652. },
  8653. "autoload": {
  8654. "files": [
  8655. "bootstrap.php"
  8656. ],
  8657. "psr-4": {
  8658. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8659. }
  8660. },
  8661. "notification-url": "https://packagist.org/downloads/",
  8662. "license": [
  8663. "MIT"
  8664. ],
  8665. "authors": [
  8666. {
  8667. "name": "Nicolas Grekas",
  8668. "email": "p@tchwork.com"
  8669. },
  8670. {
  8671. "name": "Symfony Community",
  8672. "homepage": "https://symfony.com/contributors"
  8673. }
  8674. ],
  8675. "description": "Symfony polyfill for intl's grapheme_* functions",
  8676. "homepage": "https://symfony.com",
  8677. "keywords": [
  8678. "compatibility",
  8679. "grapheme",
  8680. "intl",
  8681. "polyfill",
  8682. "portable",
  8683. "shim"
  8684. ],
  8685. "support": {
  8686. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  8687. },
  8688. "funding": [
  8689. {
  8690. "url": "https://symfony.com/sponsor",
  8691. "type": "custom"
  8692. },
  8693. {
  8694. "url": "https://github.com/fabpot",
  8695. "type": "github"
  8696. },
  8697. {
  8698. "url": "https://github.com/nicolas-grekas",
  8699. "type": "github"
  8700. },
  8701. {
  8702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8703. "type": "tidelift"
  8704. }
  8705. ],
  8706. "time": "2025-06-27T09:58:17+00:00"
  8707. },
  8708. {
  8709. "name": "symfony/polyfill-intl-idn",
  8710. "version": "v1.33.0",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8714. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8719. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8720. "shasum": ""
  8721. },
  8722. "require": {
  8723. "php": ">=7.2",
  8724. "symfony/polyfill-intl-normalizer": "^1.10"
  8725. },
  8726. "suggest": {
  8727. "ext-intl": "For best performance"
  8728. },
  8729. "type": "library",
  8730. "extra": {
  8731. "thanks": {
  8732. "url": "https://github.com/symfony/polyfill",
  8733. "name": "symfony/polyfill"
  8734. }
  8735. },
  8736. "autoload": {
  8737. "files": [
  8738. "bootstrap.php"
  8739. ],
  8740. "psr-4": {
  8741. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8742. }
  8743. },
  8744. "notification-url": "https://packagist.org/downloads/",
  8745. "license": [
  8746. "MIT"
  8747. ],
  8748. "authors": [
  8749. {
  8750. "name": "Laurent Bassin",
  8751. "email": "laurent@bassin.info"
  8752. },
  8753. {
  8754. "name": "Trevor Rowbotham",
  8755. "email": "trevor.rowbotham@pm.me"
  8756. },
  8757. {
  8758. "name": "Symfony Community",
  8759. "homepage": "https://symfony.com/contributors"
  8760. }
  8761. ],
  8762. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8763. "homepage": "https://symfony.com",
  8764. "keywords": [
  8765. "compatibility",
  8766. "idn",
  8767. "intl",
  8768. "polyfill",
  8769. "portable",
  8770. "shim"
  8771. ],
  8772. "support": {
  8773. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  8774. },
  8775. "funding": [
  8776. {
  8777. "url": "https://symfony.com/sponsor",
  8778. "type": "custom"
  8779. },
  8780. {
  8781. "url": "https://github.com/fabpot",
  8782. "type": "github"
  8783. },
  8784. {
  8785. "url": "https://github.com/nicolas-grekas",
  8786. "type": "github"
  8787. },
  8788. {
  8789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8790. "type": "tidelift"
  8791. }
  8792. ],
  8793. "time": "2024-09-10T14:38:51+00:00"
  8794. },
  8795. {
  8796. "name": "symfony/polyfill-intl-normalizer",
  8797. "version": "v1.33.0",
  8798. "source": {
  8799. "type": "git",
  8800. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8801. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8802. },
  8803. "dist": {
  8804. "type": "zip",
  8805. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8806. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8807. "shasum": ""
  8808. },
  8809. "require": {
  8810. "php": ">=7.2"
  8811. },
  8812. "suggest": {
  8813. "ext-intl": "For best performance"
  8814. },
  8815. "type": "library",
  8816. "extra": {
  8817. "thanks": {
  8818. "url": "https://github.com/symfony/polyfill",
  8819. "name": "symfony/polyfill"
  8820. }
  8821. },
  8822. "autoload": {
  8823. "files": [
  8824. "bootstrap.php"
  8825. ],
  8826. "psr-4": {
  8827. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8828. },
  8829. "classmap": [
  8830. "Resources/stubs"
  8831. ]
  8832. },
  8833. "notification-url": "https://packagist.org/downloads/",
  8834. "license": [
  8835. "MIT"
  8836. ],
  8837. "authors": [
  8838. {
  8839. "name": "Nicolas Grekas",
  8840. "email": "p@tchwork.com"
  8841. },
  8842. {
  8843. "name": "Symfony Community",
  8844. "homepage": "https://symfony.com/contributors"
  8845. }
  8846. ],
  8847. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8848. "homepage": "https://symfony.com",
  8849. "keywords": [
  8850. "compatibility",
  8851. "intl",
  8852. "normalizer",
  8853. "polyfill",
  8854. "portable",
  8855. "shim"
  8856. ],
  8857. "support": {
  8858. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  8859. },
  8860. "funding": [
  8861. {
  8862. "url": "https://symfony.com/sponsor",
  8863. "type": "custom"
  8864. },
  8865. {
  8866. "url": "https://github.com/fabpot",
  8867. "type": "github"
  8868. },
  8869. {
  8870. "url": "https://github.com/nicolas-grekas",
  8871. "type": "github"
  8872. },
  8873. {
  8874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8875. "type": "tidelift"
  8876. }
  8877. ],
  8878. "time": "2024-09-09T11:45:10+00:00"
  8879. },
  8880. {
  8881. "name": "symfony/polyfill-mbstring",
  8882. "version": "v1.33.0",
  8883. "source": {
  8884. "type": "git",
  8885. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8886. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8887. },
  8888. "dist": {
  8889. "type": "zip",
  8890. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8891. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8892. "shasum": ""
  8893. },
  8894. "require": {
  8895. "ext-iconv": "*",
  8896. "php": ">=7.2"
  8897. },
  8898. "provide": {
  8899. "ext-mbstring": "*"
  8900. },
  8901. "suggest": {
  8902. "ext-mbstring": "For best performance"
  8903. },
  8904. "type": "library",
  8905. "extra": {
  8906. "thanks": {
  8907. "url": "https://github.com/symfony/polyfill",
  8908. "name": "symfony/polyfill"
  8909. }
  8910. },
  8911. "autoload": {
  8912. "files": [
  8913. "bootstrap.php"
  8914. ],
  8915. "psr-4": {
  8916. "Symfony\\Polyfill\\Mbstring\\": ""
  8917. }
  8918. },
  8919. "notification-url": "https://packagist.org/downloads/",
  8920. "license": [
  8921. "MIT"
  8922. ],
  8923. "authors": [
  8924. {
  8925. "name": "Nicolas Grekas",
  8926. "email": "p@tchwork.com"
  8927. },
  8928. {
  8929. "name": "Symfony Community",
  8930. "homepage": "https://symfony.com/contributors"
  8931. }
  8932. ],
  8933. "description": "Symfony polyfill for the Mbstring extension",
  8934. "homepage": "https://symfony.com",
  8935. "keywords": [
  8936. "compatibility",
  8937. "mbstring",
  8938. "polyfill",
  8939. "portable",
  8940. "shim"
  8941. ],
  8942. "support": {
  8943. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  8944. },
  8945. "funding": [
  8946. {
  8947. "url": "https://symfony.com/sponsor",
  8948. "type": "custom"
  8949. },
  8950. {
  8951. "url": "https://github.com/fabpot",
  8952. "type": "github"
  8953. },
  8954. {
  8955. "url": "https://github.com/nicolas-grekas",
  8956. "type": "github"
  8957. },
  8958. {
  8959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8960. "type": "tidelift"
  8961. }
  8962. ],
  8963. "time": "2024-12-23T08:48:59+00:00"
  8964. },
  8965. {
  8966. "name": "symfony/polyfill-php81",
  8967. "version": "v1.33.0",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/symfony/polyfill-php81.git",
  8971. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8976. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8977. "shasum": ""
  8978. },
  8979. "require": {
  8980. "php": ">=7.2"
  8981. },
  8982. "type": "library",
  8983. "extra": {
  8984. "thanks": {
  8985. "url": "https://github.com/symfony/polyfill",
  8986. "name": "symfony/polyfill"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "files": [
  8991. "bootstrap.php"
  8992. ],
  8993. "psr-4": {
  8994. "Symfony\\Polyfill\\Php81\\": ""
  8995. },
  8996. "classmap": [
  8997. "Resources/stubs"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Nicolas Grekas",
  9007. "email": "p@tchwork.com"
  9008. },
  9009. {
  9010. "name": "Symfony Community",
  9011. "homepage": "https://symfony.com/contributors"
  9012. }
  9013. ],
  9014. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9015. "homepage": "https://symfony.com",
  9016. "keywords": [
  9017. "compatibility",
  9018. "polyfill",
  9019. "portable",
  9020. "shim"
  9021. ],
  9022. "support": {
  9023. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  9024. },
  9025. "funding": [
  9026. {
  9027. "url": "https://symfony.com/sponsor",
  9028. "type": "custom"
  9029. },
  9030. {
  9031. "url": "https://github.com/fabpot",
  9032. "type": "github"
  9033. },
  9034. {
  9035. "url": "https://github.com/nicolas-grekas",
  9036. "type": "github"
  9037. },
  9038. {
  9039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9040. "type": "tidelift"
  9041. }
  9042. ],
  9043. "time": "2024-09-09T11:45:10+00:00"
  9044. },
  9045. {
  9046. "name": "symfony/polyfill-php83",
  9047. "version": "v1.33.0",
  9048. "source": {
  9049. "type": "git",
  9050. "url": "https://github.com/symfony/polyfill-php83.git",
  9051. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  9052. },
  9053. "dist": {
  9054. "type": "zip",
  9055. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9056. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9057. "shasum": ""
  9058. },
  9059. "require": {
  9060. "php": ">=7.2"
  9061. },
  9062. "type": "library",
  9063. "extra": {
  9064. "thanks": {
  9065. "url": "https://github.com/symfony/polyfill",
  9066. "name": "symfony/polyfill"
  9067. }
  9068. },
  9069. "autoload": {
  9070. "files": [
  9071. "bootstrap.php"
  9072. ],
  9073. "psr-4": {
  9074. "Symfony\\Polyfill\\Php83\\": ""
  9075. },
  9076. "classmap": [
  9077. "Resources/stubs"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "MIT"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Nicolas Grekas",
  9087. "email": "p@tchwork.com"
  9088. },
  9089. {
  9090. "name": "Symfony Community",
  9091. "homepage": "https://symfony.com/contributors"
  9092. }
  9093. ],
  9094. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9095. "homepage": "https://symfony.com",
  9096. "keywords": [
  9097. "compatibility",
  9098. "polyfill",
  9099. "portable",
  9100. "shim"
  9101. ],
  9102. "support": {
  9103. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  9104. },
  9105. "funding": [
  9106. {
  9107. "url": "https://symfony.com/sponsor",
  9108. "type": "custom"
  9109. },
  9110. {
  9111. "url": "https://github.com/fabpot",
  9112. "type": "github"
  9113. },
  9114. {
  9115. "url": "https://github.com/nicolas-grekas",
  9116. "type": "github"
  9117. },
  9118. {
  9119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9120. "type": "tidelift"
  9121. }
  9122. ],
  9123. "time": "2025-07-08T02:45:35+00:00"
  9124. },
  9125. {
  9126. "name": "symfony/process",
  9127. "version": "v6.4.33",
  9128. "source": {
  9129. "type": "git",
  9130. "url": "https://github.com/symfony/process.git",
  9131. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  9132. },
  9133. "dist": {
  9134. "type": "zip",
  9135. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  9136. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  9137. "shasum": ""
  9138. },
  9139. "require": {
  9140. "php": ">=8.1"
  9141. },
  9142. "type": "library",
  9143. "autoload": {
  9144. "psr-4": {
  9145. "Symfony\\Component\\Process\\": ""
  9146. },
  9147. "exclude-from-classmap": [
  9148. "/Tests/"
  9149. ]
  9150. },
  9151. "notification-url": "https://packagist.org/downloads/",
  9152. "license": [
  9153. "MIT"
  9154. ],
  9155. "authors": [
  9156. {
  9157. "name": "Fabien Potencier",
  9158. "email": "fabien@symfony.com"
  9159. },
  9160. {
  9161. "name": "Symfony Community",
  9162. "homepage": "https://symfony.com/contributors"
  9163. }
  9164. ],
  9165. "description": "Executes commands in sub-processes",
  9166. "homepage": "https://symfony.com",
  9167. "support": {
  9168. "source": "https://github.com/symfony/process/tree/v6.4.33"
  9169. },
  9170. "funding": [
  9171. {
  9172. "url": "https://symfony.com/sponsor",
  9173. "type": "custom"
  9174. },
  9175. {
  9176. "url": "https://github.com/fabpot",
  9177. "type": "github"
  9178. },
  9179. {
  9180. "url": "https://github.com/nicolas-grekas",
  9181. "type": "github"
  9182. },
  9183. {
  9184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9185. "type": "tidelift"
  9186. }
  9187. ],
  9188. "time": "2026-01-23T16:02:12+00:00"
  9189. },
  9190. {
  9191. "name": "symfony/psr-http-message-bridge",
  9192. "version": "v6.4.32",
  9193. "source": {
  9194. "type": "git",
  9195. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9196. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  9197. },
  9198. "dist": {
  9199. "type": "zip",
  9200. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  9201. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  9202. "shasum": ""
  9203. },
  9204. "require": {
  9205. "php": ">=8.1",
  9206. "psr/http-message": "^1.0|^2.0",
  9207. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9208. },
  9209. "conflict": {
  9210. "php-http/discovery": "<1.15",
  9211. "symfony/http-kernel": "<6.2"
  9212. },
  9213. "require-dev": {
  9214. "nyholm/psr7": "^1.1",
  9215. "php-http/discovery": "^1.15",
  9216. "psr/log": "^1.1.4|^2|^3",
  9217. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9218. "symfony/config": "^5.4|^6.0|^7.0",
  9219. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9220. "symfony/framework-bundle": "^6.2|^7.0",
  9221. "symfony/http-kernel": "^6.2|^7.0"
  9222. },
  9223. "type": "symfony-bridge",
  9224. "autoload": {
  9225. "psr-4": {
  9226. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9227. },
  9228. "exclude-from-classmap": [
  9229. "/Tests/"
  9230. ]
  9231. },
  9232. "notification-url": "https://packagist.org/downloads/",
  9233. "license": [
  9234. "MIT"
  9235. ],
  9236. "authors": [
  9237. {
  9238. "name": "Fabien Potencier",
  9239. "email": "fabien@symfony.com"
  9240. },
  9241. {
  9242. "name": "Symfony Community",
  9243. "homepage": "https://symfony.com/contributors"
  9244. }
  9245. ],
  9246. "description": "PSR HTTP message bridge",
  9247. "homepage": "https://symfony.com",
  9248. "keywords": [
  9249. "http",
  9250. "http-message",
  9251. "psr-17",
  9252. "psr-7"
  9253. ],
  9254. "support": {
  9255. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  9256. },
  9257. "funding": [
  9258. {
  9259. "url": "https://symfony.com/sponsor",
  9260. "type": "custom"
  9261. },
  9262. {
  9263. "url": "https://github.com/fabpot",
  9264. "type": "github"
  9265. },
  9266. {
  9267. "url": "https://github.com/nicolas-grekas",
  9268. "type": "github"
  9269. },
  9270. {
  9271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9272. "type": "tidelift"
  9273. }
  9274. ],
  9275. "time": "2026-01-02T11:59:06+00:00"
  9276. },
  9277. {
  9278. "name": "symfony/routing",
  9279. "version": "v6.4.34",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/symfony/routing.git",
  9283. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9288. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9289. "shasum": ""
  9290. },
  9291. "require": {
  9292. "php": ">=8.1",
  9293. "symfony/deprecation-contracts": "^2.5|^3"
  9294. },
  9295. "conflict": {
  9296. "doctrine/annotations": "<1.12",
  9297. "symfony/config": "<6.2",
  9298. "symfony/dependency-injection": "<5.4",
  9299. "symfony/yaml": "<5.4"
  9300. },
  9301. "require-dev": {
  9302. "doctrine/annotations": "^1.12|^2",
  9303. "psr/log": "^1|^2|^3",
  9304. "symfony/config": "^6.2|^7.0",
  9305. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9306. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9307. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9308. "symfony/yaml": "^5.4|^6.0|^7.0"
  9309. },
  9310. "type": "library",
  9311. "autoload": {
  9312. "psr-4": {
  9313. "Symfony\\Component\\Routing\\": ""
  9314. },
  9315. "exclude-from-classmap": [
  9316. "/Tests/"
  9317. ]
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "MIT"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Fabien Potencier",
  9326. "email": "fabien@symfony.com"
  9327. },
  9328. {
  9329. "name": "Symfony Community",
  9330. "homepage": "https://symfony.com/contributors"
  9331. }
  9332. ],
  9333. "description": "Maps an HTTP request to a set of configuration variables",
  9334. "homepage": "https://symfony.com",
  9335. "keywords": [
  9336. "router",
  9337. "routing",
  9338. "uri",
  9339. "url"
  9340. ],
  9341. "support": {
  9342. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://symfony.com/sponsor",
  9347. "type": "custom"
  9348. },
  9349. {
  9350. "url": "https://github.com/fabpot",
  9351. "type": "github"
  9352. },
  9353. {
  9354. "url": "https://github.com/nicolas-grekas",
  9355. "type": "github"
  9356. },
  9357. {
  9358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9359. "type": "tidelift"
  9360. }
  9361. ],
  9362. "time": "2026-02-24T17:34:50+00:00"
  9363. },
  9364. {
  9365. "name": "symfony/serializer",
  9366. "version": "v6.4.35",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/symfony/serializer.git",
  9370. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  9375. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  9376. "shasum": ""
  9377. },
  9378. "require": {
  9379. "php": ">=8.1",
  9380. "symfony/deprecation-contracts": "^2.5|^3",
  9381. "symfony/polyfill-ctype": "~1.8"
  9382. },
  9383. "conflict": {
  9384. "doctrine/annotations": "<1.12",
  9385. "phpdocumentor/reflection-docblock": "<3.2.2",
  9386. "phpdocumentor/type-resolver": "<1.4.0",
  9387. "symfony/dependency-injection": "<5.4",
  9388. "symfony/property-access": "<5.4",
  9389. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9390. "symfony/uid": "<5.4",
  9391. "symfony/validator": "<6.4",
  9392. "symfony/yaml": "<5.4"
  9393. },
  9394. "require-dev": {
  9395. "doctrine/annotations": "^1.12|^2",
  9396. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9397. "seld/jsonlint": "^1.10",
  9398. "symfony/cache": "^5.4|^6.0|^7.0",
  9399. "symfony/config": "^5.4|^6.0|^7.0",
  9400. "symfony/console": "^5.4|^6.0|^7.0",
  9401. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9402. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9403. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9404. "symfony/form": "^5.4|^6.0|^7.0",
  9405. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9406. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9407. "symfony/messenger": "^5.4|^6.0|^7.0",
  9408. "symfony/mime": "^5.4|^6.0|^7.0",
  9409. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9410. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9411. "symfony/translation-contracts": "^2.5|^3",
  9412. "symfony/uid": "^5.4|^6.0|^7.0",
  9413. "symfony/validator": "^6.4|^7.0",
  9414. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9415. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9416. "symfony/yaml": "^5.4|^6.0|^7.0"
  9417. },
  9418. "type": "library",
  9419. "autoload": {
  9420. "psr-4": {
  9421. "Symfony\\Component\\Serializer\\": ""
  9422. },
  9423. "exclude-from-classmap": [
  9424. "/Tests/"
  9425. ]
  9426. },
  9427. "notification-url": "https://packagist.org/downloads/",
  9428. "license": [
  9429. "MIT"
  9430. ],
  9431. "authors": [
  9432. {
  9433. "name": "Fabien Potencier",
  9434. "email": "fabien@symfony.com"
  9435. },
  9436. {
  9437. "name": "Symfony Community",
  9438. "homepage": "https://symfony.com/contributors"
  9439. }
  9440. ],
  9441. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9442. "homepage": "https://symfony.com",
  9443. "support": {
  9444. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://symfony.com/sponsor",
  9449. "type": "custom"
  9450. },
  9451. {
  9452. "url": "https://github.com/fabpot",
  9453. "type": "github"
  9454. },
  9455. {
  9456. "url": "https://github.com/nicolas-grekas",
  9457. "type": "github"
  9458. },
  9459. {
  9460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9461. "type": "tidelift"
  9462. }
  9463. ],
  9464. "time": "2026-03-06T11:03:24+00:00"
  9465. },
  9466. {
  9467. "name": "symfony/service-contracts",
  9468. "version": "v3.6.1",
  9469. "source": {
  9470. "type": "git",
  9471. "url": "https://github.com/symfony/service-contracts.git",
  9472. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  9473. },
  9474. "dist": {
  9475. "type": "zip",
  9476. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  9477. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  9478. "shasum": ""
  9479. },
  9480. "require": {
  9481. "php": ">=8.1",
  9482. "psr/container": "^1.1|^2.0",
  9483. "symfony/deprecation-contracts": "^2.5|^3"
  9484. },
  9485. "conflict": {
  9486. "ext-psr": "<1.1|>=2"
  9487. },
  9488. "type": "library",
  9489. "extra": {
  9490. "thanks": {
  9491. "url": "https://github.com/symfony/contracts",
  9492. "name": "symfony/contracts"
  9493. },
  9494. "branch-alias": {
  9495. "dev-main": "3.6-dev"
  9496. }
  9497. },
  9498. "autoload": {
  9499. "psr-4": {
  9500. "Symfony\\Contracts\\Service\\": ""
  9501. },
  9502. "exclude-from-classmap": [
  9503. "/Test/"
  9504. ]
  9505. },
  9506. "notification-url": "https://packagist.org/downloads/",
  9507. "license": [
  9508. "MIT"
  9509. ],
  9510. "authors": [
  9511. {
  9512. "name": "Nicolas Grekas",
  9513. "email": "p@tchwork.com"
  9514. },
  9515. {
  9516. "name": "Symfony Community",
  9517. "homepage": "https://symfony.com/contributors"
  9518. }
  9519. ],
  9520. "description": "Generic abstractions related to writing services",
  9521. "homepage": "https://symfony.com",
  9522. "keywords": [
  9523. "abstractions",
  9524. "contracts",
  9525. "decoupling",
  9526. "interfaces",
  9527. "interoperability",
  9528. "standards"
  9529. ],
  9530. "support": {
  9531. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  9532. },
  9533. "funding": [
  9534. {
  9535. "url": "https://symfony.com/sponsor",
  9536. "type": "custom"
  9537. },
  9538. {
  9539. "url": "https://github.com/fabpot",
  9540. "type": "github"
  9541. },
  9542. {
  9543. "url": "https://github.com/nicolas-grekas",
  9544. "type": "github"
  9545. },
  9546. {
  9547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9548. "type": "tidelift"
  9549. }
  9550. ],
  9551. "time": "2025-07-15T11:30:57+00:00"
  9552. },
  9553. {
  9554. "name": "symfony/string",
  9555. "version": "v6.4.34",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/symfony/string.git",
  9559. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9564. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9565. "shasum": ""
  9566. },
  9567. "require": {
  9568. "php": ">=8.1",
  9569. "symfony/polyfill-ctype": "~1.8",
  9570. "symfony/polyfill-intl-grapheme": "~1.0",
  9571. "symfony/polyfill-intl-normalizer": "~1.0",
  9572. "symfony/polyfill-mbstring": "~1.0"
  9573. },
  9574. "conflict": {
  9575. "symfony/translation-contracts": "<2.5"
  9576. },
  9577. "require-dev": {
  9578. "symfony/http-client": "^5.4|^6.0|^7.0",
  9579. "symfony/intl": "^6.2|^7.0",
  9580. "symfony/translation-contracts": "^2.5|^3.0",
  9581. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9582. },
  9583. "type": "library",
  9584. "autoload": {
  9585. "files": [
  9586. "Resources/functions.php"
  9587. ],
  9588. "psr-4": {
  9589. "Symfony\\Component\\String\\": ""
  9590. },
  9591. "exclude-from-classmap": [
  9592. "/Tests/"
  9593. ]
  9594. },
  9595. "notification-url": "https://packagist.org/downloads/",
  9596. "license": [
  9597. "MIT"
  9598. ],
  9599. "authors": [
  9600. {
  9601. "name": "Nicolas Grekas",
  9602. "email": "p@tchwork.com"
  9603. },
  9604. {
  9605. "name": "Symfony Community",
  9606. "homepage": "https://symfony.com/contributors"
  9607. }
  9608. ],
  9609. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9610. "homepage": "https://symfony.com",
  9611. "keywords": [
  9612. "grapheme",
  9613. "i18n",
  9614. "string",
  9615. "unicode",
  9616. "utf-8",
  9617. "utf8"
  9618. ],
  9619. "support": {
  9620. "source": "https://github.com/symfony/string/tree/v6.4.34"
  9621. },
  9622. "funding": [
  9623. {
  9624. "url": "https://symfony.com/sponsor",
  9625. "type": "custom"
  9626. },
  9627. {
  9628. "url": "https://github.com/fabpot",
  9629. "type": "github"
  9630. },
  9631. {
  9632. "url": "https://github.com/nicolas-grekas",
  9633. "type": "github"
  9634. },
  9635. {
  9636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9637. "type": "tidelift"
  9638. }
  9639. ],
  9640. "time": "2026-02-08T20:44:54+00:00"
  9641. },
  9642. {
  9643. "name": "symfony/translation-contracts",
  9644. "version": "v3.6.1",
  9645. "source": {
  9646. "type": "git",
  9647. "url": "https://github.com/symfony/translation-contracts.git",
  9648. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  9649. },
  9650. "dist": {
  9651. "type": "zip",
  9652. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  9653. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  9654. "shasum": ""
  9655. },
  9656. "require": {
  9657. "php": ">=8.1"
  9658. },
  9659. "type": "library",
  9660. "extra": {
  9661. "thanks": {
  9662. "url": "https://github.com/symfony/contracts",
  9663. "name": "symfony/contracts"
  9664. },
  9665. "branch-alias": {
  9666. "dev-main": "3.6-dev"
  9667. }
  9668. },
  9669. "autoload": {
  9670. "psr-4": {
  9671. "Symfony\\Contracts\\Translation\\": ""
  9672. },
  9673. "exclude-from-classmap": [
  9674. "/Test/"
  9675. ]
  9676. },
  9677. "notification-url": "https://packagist.org/downloads/",
  9678. "license": [
  9679. "MIT"
  9680. ],
  9681. "authors": [
  9682. {
  9683. "name": "Nicolas Grekas",
  9684. "email": "p@tchwork.com"
  9685. },
  9686. {
  9687. "name": "Symfony Community",
  9688. "homepage": "https://symfony.com/contributors"
  9689. }
  9690. ],
  9691. "description": "Generic abstractions related to translation",
  9692. "homepage": "https://symfony.com",
  9693. "keywords": [
  9694. "abstractions",
  9695. "contracts",
  9696. "decoupling",
  9697. "interfaces",
  9698. "interoperability",
  9699. "standards"
  9700. ],
  9701. "support": {
  9702. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  9703. },
  9704. "funding": [
  9705. {
  9706. "url": "https://symfony.com/sponsor",
  9707. "type": "custom"
  9708. },
  9709. {
  9710. "url": "https://github.com/fabpot",
  9711. "type": "github"
  9712. },
  9713. {
  9714. "url": "https://github.com/nicolas-grekas",
  9715. "type": "github"
  9716. },
  9717. {
  9718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9719. "type": "tidelift"
  9720. }
  9721. ],
  9722. "time": "2025-07-15T13:41:35+00:00"
  9723. },
  9724. {
  9725. "name": "symfony/validator",
  9726. "version": "v6.4.35",
  9727. "source": {
  9728. "type": "git",
  9729. "url": "https://github.com/symfony/validator.git",
  9730. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  9731. },
  9732. "dist": {
  9733. "type": "zip",
  9734. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9735. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9736. "shasum": ""
  9737. },
  9738. "require": {
  9739. "php": ">=8.1",
  9740. "symfony/deprecation-contracts": "^2.5|^3",
  9741. "symfony/polyfill-ctype": "~1.8",
  9742. "symfony/polyfill-mbstring": "~1.0",
  9743. "symfony/polyfill-php83": "^1.27",
  9744. "symfony/translation-contracts": "^2.5|^3"
  9745. },
  9746. "conflict": {
  9747. "doctrine/annotations": "<1.13",
  9748. "doctrine/lexer": "<1.1",
  9749. "symfony/dependency-injection": "<5.4",
  9750. "symfony/expression-language": "<5.4",
  9751. "symfony/http-kernel": "<5.4",
  9752. "symfony/intl": "<5.4",
  9753. "symfony/property-info": "<5.4",
  9754. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9755. "symfony/yaml": "<5.4"
  9756. },
  9757. "require-dev": {
  9758. "doctrine/annotations": "^1.13|^2",
  9759. "egulias/email-validator": "^2.1.10|^3|^4",
  9760. "symfony/cache": "^5.4|^6.0|^7.0",
  9761. "symfony/config": "^5.4|^6.0|^7.0",
  9762. "symfony/console": "^5.4|^6.0|^7.0",
  9763. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9764. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9765. "symfony/finder": "^5.4|^6.0|^7.0",
  9766. "symfony/http-client": "^5.4|^6.0|^7.0",
  9767. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9768. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9769. "symfony/intl": "^5.4|^6.0|^7.0",
  9770. "symfony/mime": "^5.4|^6.0|^7.0",
  9771. "symfony/property-access": "^5.4|^6.0|^7.0",
  9772. "symfony/property-info": "^5.4|^6.0|^7.0",
  9773. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9774. "symfony/yaml": "^5.4|^6.0|^7.0"
  9775. },
  9776. "type": "library",
  9777. "autoload": {
  9778. "psr-4": {
  9779. "Symfony\\Component\\Validator\\": ""
  9780. },
  9781. "exclude-from-classmap": [
  9782. "/Tests/",
  9783. "/Resources/bin/"
  9784. ]
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "MIT"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Fabien Potencier",
  9793. "email": "fabien@symfony.com"
  9794. },
  9795. {
  9796. "name": "Symfony Community",
  9797. "homepage": "https://symfony.com/contributors"
  9798. }
  9799. ],
  9800. "description": "Provides tools to validate values",
  9801. "homepage": "https://symfony.com",
  9802. "support": {
  9803. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://symfony.com/sponsor",
  9808. "type": "custom"
  9809. },
  9810. {
  9811. "url": "https://github.com/fabpot",
  9812. "type": "github"
  9813. },
  9814. {
  9815. "url": "https://github.com/nicolas-grekas",
  9816. "type": "github"
  9817. },
  9818. {
  9819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9820. "type": "tidelift"
  9821. }
  9822. ],
  9823. "time": "2026-03-02T17:53:19+00:00"
  9824. },
  9825. {
  9826. "name": "symfony/var-dumper",
  9827. "version": "v6.4.32",
  9828. "source": {
  9829. "type": "git",
  9830. "url": "https://github.com/symfony/var-dumper.git",
  9831. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  9832. },
  9833. "dist": {
  9834. "type": "zip",
  9835. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  9836. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  9837. "shasum": ""
  9838. },
  9839. "require": {
  9840. "php": ">=8.1",
  9841. "symfony/deprecation-contracts": "^2.5|^3",
  9842. "symfony/polyfill-mbstring": "~1.0"
  9843. },
  9844. "conflict": {
  9845. "symfony/console": "<5.4"
  9846. },
  9847. "require-dev": {
  9848. "symfony/console": "^5.4|^6.0|^7.0",
  9849. "symfony/error-handler": "^6.3|^7.0",
  9850. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9851. "symfony/process": "^5.4|^6.0|^7.0",
  9852. "symfony/uid": "^5.4|^6.0|^7.0",
  9853. "twig/twig": "^2.13|^3.0.4"
  9854. },
  9855. "bin": [
  9856. "Resources/bin/var-dump-server"
  9857. ],
  9858. "type": "library",
  9859. "autoload": {
  9860. "files": [
  9861. "Resources/functions/dump.php"
  9862. ],
  9863. "psr-4": {
  9864. "Symfony\\Component\\VarDumper\\": ""
  9865. },
  9866. "exclude-from-classmap": [
  9867. "/Tests/"
  9868. ]
  9869. },
  9870. "notification-url": "https://packagist.org/downloads/",
  9871. "license": [
  9872. "MIT"
  9873. ],
  9874. "authors": [
  9875. {
  9876. "name": "Nicolas Grekas",
  9877. "email": "p@tchwork.com"
  9878. },
  9879. {
  9880. "name": "Symfony Community",
  9881. "homepage": "https://symfony.com/contributors"
  9882. }
  9883. ],
  9884. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9885. "homepage": "https://symfony.com",
  9886. "keywords": [
  9887. "debug",
  9888. "dump"
  9889. ],
  9890. "support": {
  9891. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  9892. },
  9893. "funding": [
  9894. {
  9895. "url": "https://symfony.com/sponsor",
  9896. "type": "custom"
  9897. },
  9898. {
  9899. "url": "https://github.com/fabpot",
  9900. "type": "github"
  9901. },
  9902. {
  9903. "url": "https://github.com/nicolas-grekas",
  9904. "type": "github"
  9905. },
  9906. {
  9907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9908. "type": "tidelift"
  9909. }
  9910. ],
  9911. "time": "2026-01-01T13:34:06+00:00"
  9912. },
  9913. {
  9914. "name": "symfony/var-exporter",
  9915. "version": "v6.4.26",
  9916. "source": {
  9917. "type": "git",
  9918. "url": "https://github.com/symfony/var-exporter.git",
  9919. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  9920. },
  9921. "dist": {
  9922. "type": "zip",
  9923. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9924. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9925. "shasum": ""
  9926. },
  9927. "require": {
  9928. "php": ">=8.1",
  9929. "symfony/deprecation-contracts": "^2.5|^3"
  9930. },
  9931. "require-dev": {
  9932. "symfony/property-access": "^6.4|^7.0",
  9933. "symfony/serializer": "^6.4|^7.0",
  9934. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9935. },
  9936. "type": "library",
  9937. "autoload": {
  9938. "psr-4": {
  9939. "Symfony\\Component\\VarExporter\\": ""
  9940. },
  9941. "exclude-from-classmap": [
  9942. "/Tests/"
  9943. ]
  9944. },
  9945. "notification-url": "https://packagist.org/downloads/",
  9946. "license": [
  9947. "MIT"
  9948. ],
  9949. "authors": [
  9950. {
  9951. "name": "Nicolas Grekas",
  9952. "email": "p@tchwork.com"
  9953. },
  9954. {
  9955. "name": "Symfony Community",
  9956. "homepage": "https://symfony.com/contributors"
  9957. }
  9958. ],
  9959. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9960. "homepage": "https://symfony.com",
  9961. "keywords": [
  9962. "clone",
  9963. "construct",
  9964. "export",
  9965. "hydrate",
  9966. "instantiate",
  9967. "lazy-loading",
  9968. "proxy",
  9969. "serialize"
  9970. ],
  9971. "support": {
  9972. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  9973. },
  9974. "funding": [
  9975. {
  9976. "url": "https://symfony.com/sponsor",
  9977. "type": "custom"
  9978. },
  9979. {
  9980. "url": "https://github.com/fabpot",
  9981. "type": "github"
  9982. },
  9983. {
  9984. "url": "https://github.com/nicolas-grekas",
  9985. "type": "github"
  9986. },
  9987. {
  9988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9989. "type": "tidelift"
  9990. }
  9991. ],
  9992. "time": "2025-09-11T09:57:09+00:00"
  9993. },
  9994. {
  9995. "name": "symfony/yaml",
  9996. "version": "v6.4.34",
  9997. "source": {
  9998. "type": "git",
  9999. "url": "https://github.com/symfony/yaml.git",
  10000. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  10001. },
  10002. "dist": {
  10003. "type": "zip",
  10004. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  10005. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  10006. "shasum": ""
  10007. },
  10008. "require": {
  10009. "php": ">=8.1",
  10010. "symfony/deprecation-contracts": "^2.5|^3",
  10011. "symfony/polyfill-ctype": "^1.8"
  10012. },
  10013. "conflict": {
  10014. "symfony/console": "<5.4"
  10015. },
  10016. "require-dev": {
  10017. "symfony/console": "^5.4|^6.0|^7.0"
  10018. },
  10019. "bin": [
  10020. "Resources/bin/yaml-lint"
  10021. ],
  10022. "type": "library",
  10023. "autoload": {
  10024. "psr-4": {
  10025. "Symfony\\Component\\Yaml\\": ""
  10026. },
  10027. "exclude-from-classmap": [
  10028. "/Tests/"
  10029. ]
  10030. },
  10031. "notification-url": "https://packagist.org/downloads/",
  10032. "license": [
  10033. "MIT"
  10034. ],
  10035. "authors": [
  10036. {
  10037. "name": "Fabien Potencier",
  10038. "email": "fabien@symfony.com"
  10039. },
  10040. {
  10041. "name": "Symfony Community",
  10042. "homepage": "https://symfony.com/contributors"
  10043. }
  10044. ],
  10045. "description": "Loads and dumps YAML files",
  10046. "homepage": "https://symfony.com",
  10047. "support": {
  10048. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  10049. },
  10050. "funding": [
  10051. {
  10052. "url": "https://symfony.com/sponsor",
  10053. "type": "custom"
  10054. },
  10055. {
  10056. "url": "https://github.com/fabpot",
  10057. "type": "github"
  10058. },
  10059. {
  10060. "url": "https://github.com/nicolas-grekas",
  10061. "type": "github"
  10062. },
  10063. {
  10064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10065. "type": "tidelift"
  10066. }
  10067. ],
  10068. "time": "2026-02-06T18:32:11+00:00"
  10069. },
  10070. {
  10071. "name": "twig/twig",
  10072. "version": "v3.22.2",
  10073. "source": {
  10074. "type": "git",
  10075. "url": "https://github.com/twigphp/Twig.git",
  10076. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  10077. },
  10078. "dist": {
  10079. "type": "zip",
  10080. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10081. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10082. "shasum": ""
  10083. },
  10084. "require": {
  10085. "php": ">=8.1.0",
  10086. "symfony/deprecation-contracts": "^2.5|^3",
  10087. "symfony/polyfill-ctype": "^1.8",
  10088. "symfony/polyfill-mbstring": "^1.3"
  10089. },
  10090. "require-dev": {
  10091. "phpstan/phpstan": "^2.0",
  10092. "psr/container": "^1.0|^2.0",
  10093. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10094. },
  10095. "type": "library",
  10096. "autoload": {
  10097. "files": [
  10098. "src/Resources/core.php",
  10099. "src/Resources/debug.php",
  10100. "src/Resources/escaper.php",
  10101. "src/Resources/string_loader.php"
  10102. ],
  10103. "psr-4": {
  10104. "Twig\\": "src/"
  10105. }
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "BSD-3-Clause"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Fabien Potencier",
  10114. "email": "fabien@symfony.com",
  10115. "homepage": "http://fabien.potencier.org",
  10116. "role": "Lead Developer"
  10117. },
  10118. {
  10119. "name": "Twig Team",
  10120. "role": "Contributors"
  10121. },
  10122. {
  10123. "name": "Armin Ronacher",
  10124. "email": "armin.ronacher@active-4.com",
  10125. "role": "Project Founder"
  10126. }
  10127. ],
  10128. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10129. "homepage": "https://twig.symfony.com",
  10130. "keywords": [
  10131. "templating"
  10132. ],
  10133. "support": {
  10134. "issues": "https://github.com/twigphp/Twig/issues",
  10135. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://github.com/fabpot",
  10140. "type": "github"
  10141. },
  10142. {
  10143. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10144. "type": "tidelift"
  10145. }
  10146. ],
  10147. "time": "2025-12-14T11:28:47+00:00"
  10148. },
  10149. {
  10150. "name": "vlucas/phpdotenv",
  10151. "version": "v2.6.9",
  10152. "source": {
  10153. "type": "git",
  10154. "url": "https://github.com/vlucas/phpdotenv.git",
  10155. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10156. },
  10157. "dist": {
  10158. "type": "zip",
  10159. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10160. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10161. "shasum": ""
  10162. },
  10163. "require": {
  10164. "php": "^5.3.9 || ^7.0 || ^8.0",
  10165. "symfony/polyfill-ctype": "^1.17"
  10166. },
  10167. "require-dev": {
  10168. "ext-filter": "*",
  10169. "ext-pcre": "*",
  10170. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10171. },
  10172. "suggest": {
  10173. "ext-filter": "Required to use the boolean validator.",
  10174. "ext-pcre": "Required to use most of the library."
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "2.6-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "psr-4": {
  10184. "Dotenv\\": "src/"
  10185. }
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Graham Campbell",
  10194. "email": "hello@gjcampbell.co.uk",
  10195. "homepage": "https://github.com/GrahamCampbell"
  10196. },
  10197. {
  10198. "name": "Vance Lucas",
  10199. "email": "vance@vancelucas.com",
  10200. "homepage": "https://github.com/vlucas"
  10201. }
  10202. ],
  10203. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10204. "keywords": [
  10205. "dotenv",
  10206. "env",
  10207. "environment"
  10208. ],
  10209. "support": {
  10210. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10211. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10212. },
  10213. "funding": [
  10214. {
  10215. "url": "https://github.com/GrahamCampbell",
  10216. "type": "github"
  10217. },
  10218. {
  10219. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10220. "type": "tidelift"
  10221. }
  10222. ],
  10223. "time": "2021-12-12T22:59:22+00:00"
  10224. },
  10225. {
  10226. "name": "webflo/drupal-finder",
  10227. "version": "1.3.1",
  10228. "source": {
  10229. "type": "git",
  10230. "url": "https://github.com/webflo/drupal-finder.git",
  10231. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10232. },
  10233. "dist": {
  10234. "type": "zip",
  10235. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10236. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10237. "shasum": ""
  10238. },
  10239. "require": {
  10240. "composer-runtime-api": "^2.2",
  10241. "php": ">=8.1"
  10242. },
  10243. "require-dev": {
  10244. "mikey179/vfsstream": "^1.6",
  10245. "phpunit/phpunit": "^10.4",
  10246. "symfony/process": "^6.4"
  10247. },
  10248. "type": "library",
  10249. "autoload": {
  10250. "psr-4": {
  10251. "DrupalFinder\\": "src/"
  10252. }
  10253. },
  10254. "notification-url": "https://packagist.org/downloads/",
  10255. "license": [
  10256. "GPL-2.0-or-later"
  10257. ],
  10258. "authors": [
  10259. {
  10260. "name": "Florian Weber",
  10261. "email": "florian@webflo.org"
  10262. }
  10263. ],
  10264. "description": "Helper class to locate a Drupal installation.",
  10265. "support": {
  10266. "issues": "https://github.com/webflo/drupal-finder/issues",
  10267. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10268. },
  10269. "time": "2024-06-28T13:45:36+00:00"
  10270. },
  10271. {
  10272. "name": "webmozart/assert",
  10273. "version": "1.12.1",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/webmozarts/assert.git",
  10277. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68",
  10282. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "ext-ctype": "*",
  10287. "ext-date": "*",
  10288. "ext-filter": "*",
  10289. "php": "^7.2 || ^8.0"
  10290. },
  10291. "suggest": {
  10292. "ext-intl": "",
  10293. "ext-simplexml": "",
  10294. "ext-spl": ""
  10295. },
  10296. "type": "library",
  10297. "extra": {
  10298. "branch-alias": {
  10299. "dev-master": "1.10-dev"
  10300. }
  10301. },
  10302. "autoload": {
  10303. "psr-4": {
  10304. "Webmozart\\Assert\\": "src/"
  10305. }
  10306. },
  10307. "notification-url": "https://packagist.org/downloads/",
  10308. "license": [
  10309. "MIT"
  10310. ],
  10311. "authors": [
  10312. {
  10313. "name": "Bernhard Schussek",
  10314. "email": "bschussek@gmail.com"
  10315. }
  10316. ],
  10317. "description": "Assertions to validate method input/output with nice error messages.",
  10318. "keywords": [
  10319. "assert",
  10320. "check",
  10321. "validate"
  10322. ],
  10323. "support": {
  10324. "issues": "https://github.com/webmozarts/assert/issues",
  10325. "source": "https://github.com/webmozarts/assert/tree/1.12.1"
  10326. },
  10327. "time": "2025-10-29T15:56:20+00:00"
  10328. },
  10329. {
  10330. "name": "webmozart/path-util",
  10331. "version": "2.3.0",
  10332. "source": {
  10333. "type": "git",
  10334. "url": "https://github.com/webmozart/path-util.git",
  10335. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10336. },
  10337. "dist": {
  10338. "type": "zip",
  10339. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10340. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10341. "shasum": ""
  10342. },
  10343. "require": {
  10344. "php": ">=5.3.3",
  10345. "webmozart/assert": "~1.0"
  10346. },
  10347. "require-dev": {
  10348. "phpunit/phpunit": "^4.6",
  10349. "sebastian/version": "^1.0.1"
  10350. },
  10351. "type": "library",
  10352. "extra": {
  10353. "branch-alias": {
  10354. "dev-master": "2.3-dev"
  10355. }
  10356. },
  10357. "autoload": {
  10358. "psr-4": {
  10359. "Webmozart\\PathUtil\\": "src/"
  10360. }
  10361. },
  10362. "notification-url": "https://packagist.org/downloads/",
  10363. "license": [
  10364. "MIT"
  10365. ],
  10366. "authors": [
  10367. {
  10368. "name": "Bernhard Schussek",
  10369. "email": "bschussek@gmail.com"
  10370. }
  10371. ],
  10372. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10373. "support": {
  10374. "issues": "https://github.com/webmozart/path-util/issues",
  10375. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10376. },
  10377. "abandoned": "symfony/filesystem",
  10378. "time": "2015-12-17T08:42:14+00:00"
  10379. }
  10380. ],
  10381. "packages-dev": [],
  10382. "aliases": [],
  10383. "minimum-stability": "dev",
  10384. "stability-flags": {
  10385. "drupal/basic": 15,
  10386. "drupal/bulkdelete": 20,
  10387. "drupal/config_update": 15,
  10388. "drupal/context": 5,
  10389. "drupal/domain": 10,
  10390. "drupal/filefield_sources": 20,
  10391. "drupal/linkit": 10
  10392. },
  10393. "prefer-stable": true,
  10394. "prefer-lowest": false,
  10395. "platform": {
  10396. "php": ">=5.6"
  10397. },
  10398. "platform-dev": {},
  10399. "plugin-api-version": "2.9.0"
  10400. }