composer.lock 505 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742
  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": "921fe83cc519f8269ec5496e65f8e3b7",
  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": "clue/stream-filter",
  127. "version": "v1.7.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/clue/stream-filter.git",
  131. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  136. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3"
  141. },
  142. "require-dev": {
  143. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  144. },
  145. "type": "library",
  146. "autoload": {
  147. "files": [
  148. "src/functions_include.php"
  149. ],
  150. "psr-4": {
  151. "Clue\\StreamFilter\\": "src/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "Christian Lück",
  161. "email": "christian@clue.engineering"
  162. }
  163. ],
  164. "description": "A simple and modern approach to stream filtering in PHP",
  165. "homepage": "https://github.com/clue/stream-filter",
  166. "keywords": [
  167. "bucket brigade",
  168. "callback",
  169. "filter",
  170. "php_user_filter",
  171. "stream",
  172. "stream_filter_append",
  173. "stream_filter_register"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/clue/stream-filter/issues",
  177. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  178. },
  179. "funding": [
  180. {
  181. "url": "https://clue.engineering/support",
  182. "type": "custom"
  183. },
  184. {
  185. "url": "https://github.com/clue",
  186. "type": "github"
  187. }
  188. ],
  189. "time": "2023-12-20T15:40:13+00:00"
  190. },
  191. {
  192. "name": "commerceguys/addressing",
  193. "version": "v2.2.4",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda",
  202. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.6 || ^2.0",
  207. "php": ">=8.0"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.11",
  212. "phpunit/phpunit": "^9.6",
  213. "squizlabs/php_codesniffer": "^3.7",
  214. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "2.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "CommerceGuys\\Addressing\\": "src"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Bojan Zivanovic"
  237. },
  238. {
  239. "name": "Damien Tournoud"
  240. }
  241. ],
  242. "description": "Addressing library powered by CLDR and Google's address data.",
  243. "keywords": [
  244. "address",
  245. "internationalization",
  246. "localization",
  247. "postal"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/commerceguys/addressing/issues",
  251. "source": "https://github.com/commerceguys/addressing/tree/v2.2.4"
  252. },
  253. "time": "2025-01-13T16:03:24+00:00"
  254. },
  255. {
  256. "name": "components/highlightjs",
  257. "version": "9.7.0",
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  261. },
  262. "type": "drupal-library"
  263. },
  264. {
  265. "name": "composer/installers",
  266. "version": "v1.12.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/installers.git",
  270. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  275. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "composer-plugin-api": "^1.0 || ^2.0"
  280. },
  281. "replace": {
  282. "roundcube/plugin-installer": "*",
  283. "shama/baton": "*"
  284. },
  285. "require-dev": {
  286. "composer/composer": "1.6.* || ^2.0",
  287. "composer/semver": "^1 || ^3",
  288. "phpstan/phpstan": "^0.12.55",
  289. "phpstan/phpstan-phpunit": "^0.12.16",
  290. "symfony/phpunit-bridge": "^4.2 || ^5",
  291. "symfony/process": "^2.3"
  292. },
  293. "type": "composer-plugin",
  294. "extra": {
  295. "class": "Composer\\Installers\\Plugin",
  296. "branch-alias": {
  297. "dev-main": "1.x-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Composer\\Installers\\": "src/Composer/Installers"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Kyle Robinson Young",
  312. "email": "kyle@dontkry.com",
  313. "homepage": "https://github.com/shama"
  314. }
  315. ],
  316. "description": "A multi-framework Composer library installer",
  317. "homepage": "https://composer.github.io/installers/",
  318. "keywords": [
  319. "Craft",
  320. "Dolibarr",
  321. "Eliasis",
  322. "Hurad",
  323. "ImageCMS",
  324. "Kanboard",
  325. "Lan Management System",
  326. "MODX Evo",
  327. "MantisBT",
  328. "Mautic",
  329. "Maya",
  330. "OXID",
  331. "Plentymarkets",
  332. "Porto",
  333. "RadPHP",
  334. "SMF",
  335. "Starbug",
  336. "Thelia",
  337. "Whmcs",
  338. "WolfCMS",
  339. "agl",
  340. "aimeos",
  341. "annotatecms",
  342. "attogram",
  343. "bitrix",
  344. "cakephp",
  345. "chef",
  346. "cockpit",
  347. "codeigniter",
  348. "concrete5",
  349. "croogo",
  350. "dokuwiki",
  351. "drupal",
  352. "eZ Platform",
  353. "elgg",
  354. "expressionengine",
  355. "fuelphp",
  356. "grav",
  357. "installer",
  358. "itop",
  359. "joomla",
  360. "known",
  361. "kohana",
  362. "laravel",
  363. "lavalite",
  364. "lithium",
  365. "magento",
  366. "majima",
  367. "mako",
  368. "mediawiki",
  369. "miaoxing",
  370. "modulework",
  371. "modx",
  372. "moodle",
  373. "osclass",
  374. "pantheon",
  375. "phpbb",
  376. "piwik",
  377. "ppi",
  378. "processwire",
  379. "puppet",
  380. "pxcms",
  381. "reindex",
  382. "roundcube",
  383. "shopware",
  384. "silverstripe",
  385. "sydes",
  386. "sylius",
  387. "symfony",
  388. "tastyigniter",
  389. "typo3",
  390. "wordpress",
  391. "yawik",
  392. "zend",
  393. "zikula"
  394. ],
  395. "support": {
  396. "issues": "https://github.com/composer/installers/issues",
  397. "source": "https://github.com/composer/installers/tree/v1.12.0"
  398. },
  399. "funding": [
  400. {
  401. "url": "https://packagist.com",
  402. "type": "custom"
  403. },
  404. {
  405. "url": "https://github.com/composer",
  406. "type": "github"
  407. },
  408. {
  409. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  410. "type": "tidelift"
  411. }
  412. ],
  413. "time": "2021-09-13T08:19:44+00:00"
  414. },
  415. {
  416. "name": "composer/semver",
  417. "version": "3.4.4",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/composer/semver.git",
  421. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  426. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": "^5.3.2 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpstan/phpstan": "^1.11",
  434. "symfony/phpunit-bridge": "^3 || ^7"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-main": "3.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Composer\\Semver\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Nils Adermann",
  454. "email": "naderman@naderman.de",
  455. "homepage": "http://www.naderman.de"
  456. },
  457. {
  458. "name": "Jordi Boggiano",
  459. "email": "j.boggiano@seld.be",
  460. "homepage": "http://seld.be"
  461. },
  462. {
  463. "name": "Rob Bast",
  464. "email": "rob.bast@gmail.com",
  465. "homepage": "http://robbast.nl"
  466. }
  467. ],
  468. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  469. "keywords": [
  470. "semantic",
  471. "semver",
  472. "validation",
  473. "versioning"
  474. ],
  475. "support": {
  476. "irc": "ircs://irc.libera.chat:6697/composer",
  477. "issues": "https://github.com/composer/semver/issues",
  478. "source": "https://github.com/composer/semver/tree/3.4.4"
  479. },
  480. "funding": [
  481. {
  482. "url": "https://packagist.com",
  483. "type": "custom"
  484. },
  485. {
  486. "url": "https://github.com/composer",
  487. "type": "github"
  488. }
  489. ],
  490. "time": "2025-08-20T19:15:30+00:00"
  491. },
  492. {
  493. "name": "consolidation/annotated-command",
  494. "version": "4.10.4",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/consolidation/annotated-command.git",
  498. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  503. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "consolidation/output-formatters": "^4.3.1",
  508. "php": ">=7.1.3",
  509. "psr/log": "^1 || ^2 || ^3",
  510. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  511. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  512. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  513. },
  514. "require-dev": {
  515. "composer-runtime-api": "^2.0",
  516. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  517. "squizlabs/php_codesniffer": "^3",
  518. "yoast/phpunit-polyfills": "^0.2.0"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "branch-alias": {
  523. "dev-main": "4.x-dev"
  524. }
  525. },
  526. "autoload": {
  527. "psr-4": {
  528. "Consolidation\\AnnotatedCommand\\": "src"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Greg Anderson",
  538. "email": "greg.1.anderson@greenknowe.org"
  539. }
  540. ],
  541. "description": "Initialize Symfony Console commands from annotated command class methods.",
  542. "support": {
  543. "issues": "https://github.com/consolidation/annotated-command/issues",
  544. "source": "https://github.com/consolidation/annotated-command/tree/4.10.4"
  545. },
  546. "time": "2025-11-14T22:57:49+00:00"
  547. },
  548. {
  549. "name": "consolidation/config",
  550. "version": "3.2.0",
  551. "source": {
  552. "type": "git",
  553. "url": "https://github.com/consolidation/config.git",
  554. "reference": "797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84"
  555. },
  556. "dist": {
  557. "type": "zip",
  558. "url": "https://api.github.com/repos/consolidation/config/zipball/797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84",
  559. "reference": "797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84",
  560. "shasum": ""
  561. },
  562. "require": {
  563. "dflydev/dot-access-data": "^3",
  564. "grasmash/expander": "^3",
  565. "php": ">=8.2.0",
  566. "symfony/event-dispatcher": "^6 || ^7"
  567. },
  568. "require-dev": {
  569. "ext-json": "*",
  570. "phpunit/phpunit": "^9",
  571. "squizlabs/php_codesniffer": "^3",
  572. "symfony/console": "^7",
  573. "symfony/yaml": "^7",
  574. "yoast/phpunit-polyfills": "^1"
  575. },
  576. "suggest": {
  577. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  578. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-main": "3.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Consolidation\\Config\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Greg Anderson",
  598. "email": "greg.1.anderson@greenknowe.org"
  599. }
  600. ],
  601. "description": "Provide configuration services for a commandline tool.",
  602. "support": {
  603. "issues": "https://github.com/consolidation/config/issues",
  604. "source": "https://github.com/consolidation/config/tree/3.2.0"
  605. },
  606. "time": "2025-11-14T18:44:25+00:00"
  607. },
  608. {
  609. "name": "consolidation/filter-via-dot-access-data",
  610. "version": "2.0.3",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  614. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  619. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  620. "shasum": ""
  621. },
  622. "require": {
  623. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  624. "php": ">=7.1.3"
  625. },
  626. "require-dev": {
  627. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  628. "squizlabs/php_codesniffer": "^3",
  629. "yoast/phpunit-polyfills": "^0.2.0"
  630. },
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-main": "2.x-dev"
  635. }
  636. },
  637. "autoload": {
  638. "psr-4": {
  639. "Consolidation\\Filter\\": "src"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Greg Anderson",
  649. "email": "greg.1.anderson@greenknowe.org"
  650. }
  651. ],
  652. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  653. "support": {
  654. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  655. },
  656. "time": "2025-11-14T21:01:06+00:00"
  657. },
  658. {
  659. "name": "consolidation/log",
  660. "version": "3.1.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/consolidation/log.git",
  664. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/consolidation/log/zipball/c1a87a94c01957697ec347fd67404d7f0030d1aa",
  669. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=8.0.0",
  674. "psr/log": "^3",
  675. "symfony/console": "^5 || ^6 || ^7"
  676. },
  677. "require-dev": {
  678. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  679. "squizlabs/php_codesniffer": "^3",
  680. "yoast/phpunit-polyfills": "^0.2.0"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "platform": {
  685. "php": "8.2.17"
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "Consolidation\\Log\\": "src"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Greg Anderson",
  700. "email": "greg.1.anderson@greenknowe.org"
  701. }
  702. ],
  703. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  704. "support": {
  705. "issues": "https://github.com/consolidation/log/issues",
  706. "source": "https://github.com/consolidation/log/tree/3.1.1"
  707. },
  708. "time": "2025-11-14T21:11:00+00:00"
  709. },
  710. {
  711. "name": "consolidation/output-formatters",
  712. "version": "4.7.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/consolidation/output-formatters.git",
  716. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  721. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  726. "php": ">=7.1.3",
  727. "symfony/console": "^4 || ^5 || ^6 || ^7",
  728. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  729. },
  730. "require-dev": {
  731. "php-coveralls/php-coveralls": "^2.4.2",
  732. "phpunit/phpunit": "^7 || ^8 || ^9",
  733. "squizlabs/php_codesniffer": "^3",
  734. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  735. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  736. "yoast/phpunit-polyfills": "^1"
  737. },
  738. "suggest": {
  739. "symfony/var-dumper": "For using the var_dump formatter"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "Consolidation\\OutputFormatters\\": "src"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Greg Anderson",
  754. "email": "greg.1.anderson@greenknowe.org"
  755. }
  756. ],
  757. "description": "Format text by applying transformations provided by plug-in formatters.",
  758. "support": {
  759. "issues": "https://github.com/consolidation/output-formatters/issues",
  760. "source": "https://github.com/consolidation/output-formatters/tree/4.7.0"
  761. },
  762. "time": "2025-11-14T21:06:10+00:00"
  763. },
  764. {
  765. "name": "consolidation/robo",
  766. "version": "5.1.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/consolidation/robo.git",
  770. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/consolidation/robo/zipball/6d02c7d800b5e1a3a8977ae74d23bce723486025",
  775. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "consolidation/annotated-command": "^4.8.1",
  780. "consolidation/config": "^3",
  781. "consolidation/log": "^3",
  782. "consolidation/output-formatters": "^4.1.2",
  783. "league/container": "^3.3.1 || ^4.0",
  784. "php": ">=8.2",
  785. "phpowermove/docblock": "^4.0",
  786. "symfony/console": "^6 || ^7",
  787. "symfony/event-dispatcher": "^6 || ^7",
  788. "symfony/filesystem": "^6 || ^7",
  789. "symfony/finder": "^6 || ^7",
  790. "symfony/process": "^6 || ^7",
  791. "symfony/yaml": "^6 || ^7"
  792. },
  793. "conflict": {
  794. "codegyre/robo": "*"
  795. },
  796. "require-dev": {
  797. "natxet/cssmin": "3.0.4",
  798. "patchwork/jsqueeze": "^2",
  799. "pear/archive_tar": "^1.4.4",
  800. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  801. "squizlabs/php_codesniffer": "^3.6",
  802. "yoast/phpunit-polyfills": "^0.2.0"
  803. },
  804. "suggest": {
  805. "consolidation/self-update": "For self-updating a phar-based app built with Robo",
  806. "natxet/cssmin": "For minifying CSS files in taskMinify",
  807. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  808. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  809. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  810. },
  811. "bin": [
  812. "robo"
  813. ],
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Robo\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "MIT"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Davert",
  827. "email": "davert.php@resend.cc"
  828. }
  829. ],
  830. "description": "Modern task runner",
  831. "support": {
  832. "issues": "https://github.com/consolidation/robo/issues",
  833. "source": "https://github.com/consolidation/robo/tree/5.1.1"
  834. },
  835. "time": "2025-11-14T23:30:05+00:00"
  836. },
  837. {
  838. "name": "consolidation/site-alias",
  839. "version": "4.1.2",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/consolidation/site-alias.git",
  843. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  848. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "consolidation/config": "^1.2.1 || ^2 || ^3",
  853. "php": ">=7.4",
  854. "symfony/filesystem": "^5.4 || ^6 || ^7",
  855. "symfony/finder": "^5 || ^6 || ^7"
  856. },
  857. "require-dev": {
  858. "php-coveralls/php-coveralls": "^2.4.2",
  859. "phpunit/phpunit": ">=7",
  860. "squizlabs/php_codesniffer": "^3",
  861. "symfony/var-dumper": "^4",
  862. "yoast/phpunit-polyfills": "^0.2.0"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-main": "4.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Consolidation\\SiteAlias\\": "src"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Greg Anderson",
  882. "email": "greg.1.anderson@greenknowe.org"
  883. },
  884. {
  885. "name": "Moshe Weitzman",
  886. "email": "weitzman@tejasa.com"
  887. }
  888. ],
  889. "description": "Manage alias records for local and remote sites.",
  890. "support": {
  891. "issues": "https://github.com/consolidation/site-alias/issues",
  892. "source": "https://github.com/consolidation/site-alias/tree/4.1.2"
  893. },
  894. "time": "2025-11-14T21:08:14+00:00"
  895. },
  896. {
  897. "name": "consolidation/site-process",
  898. "version": "5.4.2",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/consolidation/site-process.git",
  902. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  907. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "consolidation/config": "^2 || ^3",
  912. "consolidation/site-alias": "^3 || ^4",
  913. "php": ">=8.0.14",
  914. "symfony/console": "^5.4 || ^6 || ^7",
  915. "symfony/process": "^6 || ^7"
  916. },
  917. "require-dev": {
  918. "phpunit/phpunit": "^9",
  919. "squizlabs/php_codesniffer": "^3"
  920. },
  921. "type": "library",
  922. "extra": {
  923. "branch-alias": {
  924. "dev-main": "5.x-dev"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "Consolidation\\SiteProcess\\": "src"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Greg Anderson",
  939. "email": "greg.1.anderson@greenknowe.org"
  940. },
  941. {
  942. "name": "Moshe Weitzman",
  943. "email": "weitzman@tejasa.com"
  944. }
  945. ],
  946. "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.",
  947. "support": {
  948. "issues": "https://github.com/consolidation/site-process/issues",
  949. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  950. },
  951. "time": "2024-12-13T19:25:56+00:00"
  952. },
  953. {
  954. "name": "cweagans/composer-patches",
  955. "version": "1.7.3",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/cweagans/composer-patches.git",
  959. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  964. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "composer-plugin-api": "^1.0 || ^2.0",
  969. "php": ">=5.3.0"
  970. },
  971. "require-dev": {
  972. "composer/composer": "~1.0 || ~2.0",
  973. "phpunit/phpunit": "~4.6"
  974. },
  975. "type": "composer-plugin",
  976. "extra": {
  977. "class": "cweagans\\Composer\\Patches"
  978. },
  979. "autoload": {
  980. "psr-4": {
  981. "cweagans\\Composer\\": "src"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "BSD-3-Clause"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Cameron Eagans",
  991. "email": "me@cweagans.net"
  992. }
  993. ],
  994. "description": "Provides a way to patch Composer packages.",
  995. "support": {
  996. "issues": "https://github.com/cweagans/composer-patches/issues",
  997. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  998. },
  999. "time": "2022-12-20T22:53:13+00:00"
  1000. },
  1001. {
  1002. "name": "d3/d3",
  1003. "version": "v3.5.17",
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1007. },
  1008. "type": "drupal-library"
  1009. },
  1010. {
  1011. "name": "davedevelopment/stiphle",
  1012. "version": "0.9.4",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/davedevelopment/stiphle.git",
  1016. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1021. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": "^5.6.0|^7.0|^8.0"
  1026. },
  1027. "require-dev": {
  1028. "doctrine/cache": "^1.0",
  1029. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1030. "predis/predis": "^1.1",
  1031. "zendframework/zend-cache": "^2.8"
  1032. },
  1033. "suggest": {
  1034. "doctrine/cache": "~1.0",
  1035. "predis/predis": "~1.1",
  1036. "zendframework/zend-cache": "^2.8"
  1037. },
  1038. "type": "library",
  1039. "autoload": {
  1040. "psr-0": {
  1041. "Stiphle": "src/"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Dave Marshall",
  1051. "email": "dave.marshall@atstsolutions.co.uk",
  1052. "homepage": "http://davedevelopment.co.uk"
  1053. }
  1054. ],
  1055. "description": "Simple rate limiting/throttling for php",
  1056. "homepage": "http://github.com/davedevelopment/stiphle",
  1057. "keywords": [
  1058. "rate limit",
  1059. "rate limiting",
  1060. "throttle",
  1061. "throttling"
  1062. ],
  1063. "support": {
  1064. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1065. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1066. },
  1067. "time": "2022-11-25T16:30:20+00:00"
  1068. },
  1069. {
  1070. "name": "dekor/php-array-table",
  1071. "version": "2.0",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/deniskoronets/php-array-table.git",
  1075. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1080. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "ext-mbstring": "*",
  1085. "php": ">=5.6.0"
  1086. },
  1087. "require-dev": {
  1088. "phpunit/phpunit": "^10"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "psr-4": {
  1093. "dekor\\": "src"
  1094. }
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "BSD-3-Clause"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Denis Koronets",
  1103. "email": "deniskoronets@woo.zp.ua",
  1104. "homepage": "https://woo.zp.ua/"
  1105. }
  1106. ],
  1107. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1108. "keywords": [
  1109. "library",
  1110. "php"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1114. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1115. },
  1116. "time": "2023-02-10T10:13:42+00:00"
  1117. },
  1118. {
  1119. "name": "dflydev/dot-access-data",
  1120. "version": "v3.0.3",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1124. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1129. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "php": "^7.1 || ^8.0"
  1134. },
  1135. "require-dev": {
  1136. "phpstan/phpstan": "^0.12.42",
  1137. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1138. "scrutinizer/ocular": "1.6.0",
  1139. "squizlabs/php_codesniffer": "^3.5",
  1140. "vimeo/psalm": "^4.0.0"
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-main": "3.x-dev"
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Dflydev\\DotAccessData\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Dragonfly Development Inc.",
  1160. "email": "info@dflydev.com",
  1161. "homepage": "http://dflydev.com"
  1162. },
  1163. {
  1164. "name": "Beau Simensen",
  1165. "email": "beau@dflydev.com",
  1166. "homepage": "http://beausimensen.com"
  1167. },
  1168. {
  1169. "name": "Carlos Frutos",
  1170. "email": "carlos@kiwing.it",
  1171. "homepage": "https://github.com/cfrutos"
  1172. },
  1173. {
  1174. "name": "Colin O'Dell",
  1175. "email": "colinodell@gmail.com",
  1176. "homepage": "https://www.colinodell.com"
  1177. }
  1178. ],
  1179. "description": "Given a deep data structure, access data by dot notation.",
  1180. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1181. "keywords": [
  1182. "access",
  1183. "data",
  1184. "dot",
  1185. "notation"
  1186. ],
  1187. "support": {
  1188. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1189. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1190. },
  1191. "time": "2024-07-08T12:26:09+00:00"
  1192. },
  1193. {
  1194. "name": "doctrine/collections",
  1195. "version": "2.6.0",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/doctrine/collections.git",
  1199. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1204. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1205. "shasum": ""
  1206. },
  1207. "require": {
  1208. "doctrine/deprecations": "^1",
  1209. "php": "^8.1",
  1210. "symfony/polyfill-php84": "^1.30"
  1211. },
  1212. "require-dev": {
  1213. "doctrine/coding-standard": "^14",
  1214. "ext-json": "*",
  1215. "phpstan/phpstan": "^2.1.30",
  1216. "phpstan/phpstan-phpunit": "^2.0.7",
  1217. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  1218. },
  1219. "type": "library",
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Collections\\": "src"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Guilherme Blanco",
  1232. "email": "guilhermeblanco@gmail.com"
  1233. },
  1234. {
  1235. "name": "Roman Borschel",
  1236. "email": "roman@code-factory.org"
  1237. },
  1238. {
  1239. "name": "Benjamin Eberlei",
  1240. "email": "kontakt@beberlei.de"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1252. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1253. "keywords": [
  1254. "array",
  1255. "collections",
  1256. "iterators",
  1257. "php"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/doctrine/collections/issues",
  1261. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  1262. },
  1263. "funding": [
  1264. {
  1265. "url": "https://www.doctrine-project.org/sponsorship.html",
  1266. "type": "custom"
  1267. },
  1268. {
  1269. "url": "https://www.patreon.com/phpdoctrine",
  1270. "type": "patreon"
  1271. },
  1272. {
  1273. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1274. "type": "tidelift"
  1275. }
  1276. ],
  1277. "time": "2026-01-15T10:01:58+00:00"
  1278. },
  1279. {
  1280. "name": "doctrine/common",
  1281. "version": "3.5.0",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/doctrine/common.git",
  1285. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1290. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1295. "php": "^7.1 || ^8.0"
  1296. },
  1297. "require-dev": {
  1298. "doctrine/coding-standard": "^9.0 || ^10.0",
  1299. "doctrine/collections": "^1",
  1300. "phpstan/phpstan": "^1.4.1",
  1301. "phpstan/phpstan-phpunit": "^1",
  1302. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1303. "squizlabs/php_codesniffer": "^3.0",
  1304. "symfony/phpunit-bridge": "^6.1",
  1305. "vimeo/psalm": "^4.4"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Doctrine\\Common\\": "src"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Guilherme Blanco",
  1320. "email": "guilhermeblanco@gmail.com"
  1321. },
  1322. {
  1323. "name": "Roman Borschel",
  1324. "email": "roman@code-factory.org"
  1325. },
  1326. {
  1327. "name": "Benjamin Eberlei",
  1328. "email": "kontakt@beberlei.de"
  1329. },
  1330. {
  1331. "name": "Jonathan Wage",
  1332. "email": "jonwage@gmail.com"
  1333. },
  1334. {
  1335. "name": "Johannes Schmitt",
  1336. "email": "schmittjoh@gmail.com"
  1337. },
  1338. {
  1339. "name": "Marco Pivetta",
  1340. "email": "ocramius@gmail.com"
  1341. }
  1342. ],
  1343. "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.",
  1344. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1345. "keywords": [
  1346. "common",
  1347. "doctrine",
  1348. "php"
  1349. ],
  1350. "support": {
  1351. "issues": "https://github.com/doctrine/common/issues",
  1352. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1353. },
  1354. "funding": [
  1355. {
  1356. "url": "https://www.doctrine-project.org/sponsorship.html",
  1357. "type": "custom"
  1358. },
  1359. {
  1360. "url": "https://www.patreon.com/phpdoctrine",
  1361. "type": "patreon"
  1362. },
  1363. {
  1364. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1365. "type": "tidelift"
  1366. }
  1367. ],
  1368. "time": "2025-01-01T22:12:03+00:00"
  1369. },
  1370. {
  1371. "name": "doctrine/deprecations",
  1372. "version": "1.1.6",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/doctrine/deprecations.git",
  1376. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1381. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "php": "^7.1 || ^8.0"
  1386. },
  1387. "conflict": {
  1388. "phpunit/phpunit": "<=7.5 || >=14"
  1389. },
  1390. "require-dev": {
  1391. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1392. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1393. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1394. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1395. "psr/log": "^1 || ^2 || ^3"
  1396. },
  1397. "suggest": {
  1398. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1399. },
  1400. "type": "library",
  1401. "autoload": {
  1402. "psr-4": {
  1403. "Doctrine\\Deprecations\\": "src"
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "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.",
  1411. "homepage": "https://www.doctrine-project.org/",
  1412. "support": {
  1413. "issues": "https://github.com/doctrine/deprecations/issues",
  1414. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1415. },
  1416. "time": "2026-02-07T07:09:04+00:00"
  1417. },
  1418. {
  1419. "name": "doctrine/event-manager",
  1420. "version": "2.1.1",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/doctrine/event-manager.git",
  1424. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1429. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": "^8.1"
  1434. },
  1435. "conflict": {
  1436. "doctrine/common": "<2.9"
  1437. },
  1438. "require-dev": {
  1439. "doctrine/coding-standard": "^14",
  1440. "phpdocumentor/guides-cli": "^1.4",
  1441. "phpstan/phpstan": "^2.1.32",
  1442. "phpunit/phpunit": "^10.5.58"
  1443. },
  1444. "type": "library",
  1445. "autoload": {
  1446. "psr-4": {
  1447. "Doctrine\\Common\\": "src"
  1448. }
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "MIT"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Guilherme Blanco",
  1457. "email": "guilhermeblanco@gmail.com"
  1458. },
  1459. {
  1460. "name": "Roman Borschel",
  1461. "email": "roman@code-factory.org"
  1462. },
  1463. {
  1464. "name": "Benjamin Eberlei",
  1465. "email": "kontakt@beberlei.de"
  1466. },
  1467. {
  1468. "name": "Jonathan Wage",
  1469. "email": "jonwage@gmail.com"
  1470. },
  1471. {
  1472. "name": "Johannes Schmitt",
  1473. "email": "schmittjoh@gmail.com"
  1474. },
  1475. {
  1476. "name": "Marco Pivetta",
  1477. "email": "ocramius@gmail.com"
  1478. }
  1479. ],
  1480. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1481. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1482. "keywords": [
  1483. "event",
  1484. "event dispatcher",
  1485. "event manager",
  1486. "event system",
  1487. "events"
  1488. ],
  1489. "support": {
  1490. "issues": "https://github.com/doctrine/event-manager/issues",
  1491. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1492. },
  1493. "funding": [
  1494. {
  1495. "url": "https://www.doctrine-project.org/sponsorship.html",
  1496. "type": "custom"
  1497. },
  1498. {
  1499. "url": "https://www.patreon.com/phpdoctrine",
  1500. "type": "patreon"
  1501. },
  1502. {
  1503. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1504. "type": "tidelift"
  1505. }
  1506. ],
  1507. "time": "2026-01-29T07:11:08+00:00"
  1508. },
  1509. {
  1510. "name": "doctrine/lexer",
  1511. "version": "2.1.1",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/doctrine/lexer.git",
  1515. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1520. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "doctrine/deprecations": "^1.0",
  1525. "php": "^7.1 || ^8.0"
  1526. },
  1527. "require-dev": {
  1528. "doctrine/coding-standard": "^9 || ^12",
  1529. "phpstan/phpstan": "^1.3",
  1530. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1531. "psalm/plugin-phpunit": "^0.18.3",
  1532. "vimeo/psalm": "^4.11 || ^5.21"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "Doctrine\\Common\\Lexer\\": "src"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "MIT"
  1543. ],
  1544. "authors": [
  1545. {
  1546. "name": "Guilherme Blanco",
  1547. "email": "guilhermeblanco@gmail.com"
  1548. },
  1549. {
  1550. "name": "Roman Borschel",
  1551. "email": "roman@code-factory.org"
  1552. },
  1553. {
  1554. "name": "Johannes Schmitt",
  1555. "email": "schmittjoh@gmail.com"
  1556. }
  1557. ],
  1558. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1559. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1560. "keywords": [
  1561. "annotations",
  1562. "docblock",
  1563. "lexer",
  1564. "parser",
  1565. "php"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/doctrine/lexer/issues",
  1569. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://www.doctrine-project.org/sponsorship.html",
  1574. "type": "custom"
  1575. },
  1576. {
  1577. "url": "https://www.patreon.com/phpdoctrine",
  1578. "type": "patreon"
  1579. },
  1580. {
  1581. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1582. "type": "tidelift"
  1583. }
  1584. ],
  1585. "time": "2024-02-05T11:35:39+00:00"
  1586. },
  1587. {
  1588. "name": "doctrine/persistence",
  1589. "version": "4.1.1",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://github.com/doctrine/persistence.git",
  1593. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1598. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1599. "shasum": ""
  1600. },
  1601. "require": {
  1602. "doctrine/event-manager": "^1 || ^2",
  1603. "php": "^8.1",
  1604. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1605. },
  1606. "require-dev": {
  1607. "doctrine/coding-standard": "^14",
  1608. "phpstan/phpstan": "2.1.30",
  1609. "phpstan/phpstan-phpunit": "^2",
  1610. "phpstan/phpstan-strict-rules": "^2",
  1611. "phpunit/phpunit": "^10.5.58 || ^12",
  1612. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1613. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1614. },
  1615. "type": "library",
  1616. "autoload": {
  1617. "psr-4": {
  1618. "Doctrine\\Persistence\\": "src/Persistence"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Guilherme Blanco",
  1628. "email": "guilhermeblanco@gmail.com"
  1629. },
  1630. {
  1631. "name": "Roman Borschel",
  1632. "email": "roman@code-factory.org"
  1633. },
  1634. {
  1635. "name": "Benjamin Eberlei",
  1636. "email": "kontakt@beberlei.de"
  1637. },
  1638. {
  1639. "name": "Jonathan Wage",
  1640. "email": "jonwage@gmail.com"
  1641. },
  1642. {
  1643. "name": "Johannes Schmitt",
  1644. "email": "schmittjoh@gmail.com"
  1645. },
  1646. {
  1647. "name": "Marco Pivetta",
  1648. "email": "ocramius@gmail.com"
  1649. }
  1650. ],
  1651. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1652. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1653. "keywords": [
  1654. "mapper",
  1655. "object",
  1656. "odm",
  1657. "orm",
  1658. "persistence"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/doctrine/persistence/issues",
  1662. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://www.doctrine-project.org/sponsorship.html",
  1667. "type": "custom"
  1668. },
  1669. {
  1670. "url": "https://www.patreon.com/phpdoctrine",
  1671. "type": "patreon"
  1672. },
  1673. {
  1674. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1675. "type": "tidelift"
  1676. }
  1677. ],
  1678. "time": "2025-10-16T20:13:18+00:00"
  1679. },
  1680. {
  1681. "name": "drupal/address",
  1682. "version": "2.0.4",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://git.drupalcode.org/project/address.git",
  1686. "reference": "2.0.4"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip",
  1691. "reference": "2.0.4",
  1692. "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e"
  1693. },
  1694. "require": {
  1695. "commerceguys/addressing": "^2.1.1",
  1696. "drupal/core": "^9.5 || ^10 || ^11",
  1697. "php": "^8.0"
  1698. },
  1699. "require-dev": {
  1700. "drupal/diff": "^1",
  1701. "drupal/feeds": "^3",
  1702. "drupal/token": "^1"
  1703. },
  1704. "type": "drupal-module",
  1705. "extra": {
  1706. "drupal": {
  1707. "version": "2.0.4",
  1708. "datestamp": "1746462054",
  1709. "security-coverage": {
  1710. "status": "covered",
  1711. "message": "Covered by Drupal's security advisory policy"
  1712. }
  1713. }
  1714. },
  1715. "notification-url": "https://packages.drupal.org/8/downloads",
  1716. "license": [
  1717. "GPL-2.0-or-later"
  1718. ],
  1719. "authors": [
  1720. {
  1721. "name": "bojanz",
  1722. "homepage": "https://www.drupal.org/user/86106"
  1723. },
  1724. {
  1725. "name": "centarro",
  1726. "homepage": "https://www.drupal.org/user/3661446"
  1727. },
  1728. {
  1729. "name": "dww",
  1730. "homepage": "https://www.drupal.org/user/46549"
  1731. },
  1732. {
  1733. "name": "jsacksick",
  1734. "homepage": "https://www.drupal.org/user/972218"
  1735. },
  1736. {
  1737. "name": "rszrama",
  1738. "homepage": "https://www.drupal.org/user/49344"
  1739. }
  1740. ],
  1741. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1742. "homepage": "http://drupal.org/project/address",
  1743. "support": {
  1744. "source": "https://git.drupalcode.org/project/address"
  1745. }
  1746. },
  1747. {
  1748. "name": "drupal/admin_toolbar",
  1749. "version": "3.6.3",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1753. "reference": "3.6.3"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1758. "reference": "3.6.3",
  1759. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1760. },
  1761. "require": {
  1762. "drupal/core": "^9.5 || ^10 || ^11"
  1763. },
  1764. "conflict": {
  1765. "drupal/project_browser": "<2.1.0"
  1766. },
  1767. "type": "drupal-module",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "3.6.3",
  1771. "datestamp": "1767318997",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0-or-later"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "Wilfrid Roze (eme)",
  1785. "homepage": "https://www.drupal.org/u/eme",
  1786. "role": "Maintainer"
  1787. },
  1788. {
  1789. "name": "Romain Jarraud (romainj)",
  1790. "homepage": "https://www.drupal.org/u/romainj",
  1791. "role": "Maintainer"
  1792. },
  1793. {
  1794. "name": "Adrian Cid Almaguer (adriancid)",
  1795. "homepage": "https://www.drupal.org/u/adriancid",
  1796. "email": "adriancid@gmail.com",
  1797. "role": "Maintainer"
  1798. },
  1799. {
  1800. "name": "Mohamed Anis Taktak (matio89)",
  1801. "homepage": "https://www.drupal.org/u/matio89",
  1802. "role": "Maintainer"
  1803. },
  1804. {
  1805. "name": "David Suissa (DYdave)",
  1806. "homepage": "https://www.drupal.org/u/dydave",
  1807. "role": "Maintainer"
  1808. },
  1809. {
  1810. "name": "japerry",
  1811. "homepage": "https://www.drupal.org/user/45640"
  1812. },
  1813. {
  1814. "name": "matio89",
  1815. "homepage": "https://www.drupal.org/user/2320090"
  1816. },
  1817. {
  1818. "name": "musa.thomas",
  1819. "homepage": "https://www.drupal.org/user/1213824"
  1820. },
  1821. {
  1822. "name": "romainj",
  1823. "homepage": "https://www.drupal.org/user/370706"
  1824. }
  1825. ],
  1826. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1827. "homepage": "http://drupal.org/project/admin_toolbar",
  1828. "keywords": [
  1829. "Drupal",
  1830. "Toolbar"
  1831. ],
  1832. "support": {
  1833. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1834. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1835. }
  1836. },
  1837. {
  1838. "name": "drupal/adminimal_theme",
  1839. "version": "1.7.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1843. "reference": "8.x-1.7"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1848. "reference": "8.x-1.7",
  1849. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1850. },
  1851. "require": {
  1852. "drupal/core": "^9.3 || ^10",
  1853. "drupal/seven": "~1.0"
  1854. },
  1855. "type": "drupal-theme",
  1856. "extra": {
  1857. "drupal": {
  1858. "version": "8.x-1.7",
  1859. "datestamp": "1691504486",
  1860. "security-coverage": {
  1861. "status": "covered",
  1862. "message": "Covered by Drupal's security advisory policy"
  1863. }
  1864. }
  1865. },
  1866. "notification-url": "https://packages.drupal.org/8/downloads",
  1867. "license": [
  1868. "GPL-2.0+"
  1869. ],
  1870. "authors": [
  1871. {
  1872. "name": "ANDiTKO",
  1873. "homepage": "https://www.drupal.org/user/1428124"
  1874. },
  1875. {
  1876. "name": "andrey.troeglazov",
  1877. "homepage": "https://www.drupal.org/user/3145389"
  1878. },
  1879. {
  1880. "name": "realityloop",
  1881. "homepage": "https://www.drupal.org/user/139189"
  1882. },
  1883. {
  1884. "name": "rjjakes",
  1885. "homepage": "https://www.drupal.org/user/3457245"
  1886. }
  1887. ],
  1888. "description": "Drupal administration theme with modern minimalist design.",
  1889. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1890. "support": {
  1891. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1892. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1893. }
  1894. },
  1895. {
  1896. "name": "drupal/administerusersbyrole",
  1897. "version": "3.6.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  1901. "reference": "8.x-3.6"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.6.zip",
  1906. "reference": "8.x-3.6",
  1907. "shasum": "ab94307f3b47eac5c18d8c584a14516c6c54327f"
  1908. },
  1909. "require": {
  1910. "drupal/core": "^10 || ^11"
  1911. },
  1912. "type": "drupal-module",
  1913. "extra": {
  1914. "drupal": {
  1915. "version": "8.x-3.6",
  1916. "datestamp": "1762439804",
  1917. "security-coverage": {
  1918. "status": "covered",
  1919. "message": "Covered by Drupal's security advisory policy"
  1920. }
  1921. }
  1922. },
  1923. "notification-url": "https://packages.drupal.org/8/downloads",
  1924. "license": [
  1925. "GPL-2.0-or-later"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "adamps",
  1930. "homepage": "https://www.drupal.org/user/2650563"
  1931. },
  1932. {
  1933. "name": "mrfelton",
  1934. "homepage": "https://www.drupal.org/user/305669"
  1935. },
  1936. {
  1937. "name": "smokris",
  1938. "homepage": "https://www.drupal.org/user/161913"
  1939. }
  1940. ],
  1941. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  1942. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  1943. "support": {
  1944. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  1945. }
  1946. },
  1947. {
  1948. "name": "drupal/advanced_text_formatter",
  1949. "version": "3.0.0-rc2",
  1950. "source": {
  1951. "type": "git",
  1952. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1953. "reference": "3.0.0-rc2"
  1954. },
  1955. "dist": {
  1956. "type": "zip",
  1957. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  1958. "reference": "3.0.0-rc2",
  1959. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  1960. },
  1961. "require": {
  1962. "drupal/core": "^8 || ^9 || ^10 || ^11"
  1963. },
  1964. "type": "drupal-module",
  1965. "extra": {
  1966. "drupal": {
  1967. "version": "3.0.0-rc2",
  1968. "datestamp": "1727826727",
  1969. "security-coverage": {
  1970. "status": "not-covered",
  1971. "message": "RC releases are not covered by Drupal security advisories."
  1972. }
  1973. }
  1974. },
  1975. "notification-url": "https://packages.drupal.org/8/downloads",
  1976. "license": [
  1977. "GPL-2.0-or-later"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "azovsky",
  1982. "homepage": "https://www.drupal.org/user/330533"
  1983. },
  1984. {
  1985. "name": "knectar",
  1986. "homepage": "https://www.drupal.org/user/1184414"
  1987. },
  1988. {
  1989. "name": "realityloop",
  1990. "homepage": "https://www.drupal.org/user/139189"
  1991. },
  1992. {
  1993. "name": "thmnhat",
  1994. "homepage": "https://www.drupal.org/user/998946"
  1995. }
  1996. ],
  1997. "description": "Formatter of textfield, text area and text format.",
  1998. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1999. "support": {
  2000. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2001. }
  2002. },
  2003. {
  2004. "name": "drupal/audiofield",
  2005. "version": "1.13.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://git.drupalcode.org/project/audiofield.git",
  2009. "reference": "8.x-1.13"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2014. "reference": "8.x-1.13",
  2015. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2016. },
  2017. "require": {
  2018. "drupal/core": "^8 || ^9 || ^10"
  2019. },
  2020. "type": "drupal-module",
  2021. "extra": {
  2022. "drupal": {
  2023. "version": "8.x-1.13",
  2024. "datestamp": "1681143245",
  2025. "security-coverage": {
  2026. "status": "covered",
  2027. "message": "Covered by Drupal's security advisory policy"
  2028. }
  2029. },
  2030. "drush": {
  2031. "services": {
  2032. "drush.services.yml": "^9"
  2033. }
  2034. }
  2035. },
  2036. "notification-url": "https://packages.drupal.org/8/downloads",
  2037. "license": [
  2038. "GPL-2.0-or-later"
  2039. ],
  2040. "authors": [
  2041. {
  2042. "name": "Daniel Moberly",
  2043. "homepage": "https://www.drupal.org/u/danielmoberly",
  2044. "role": "Maintainer"
  2045. },
  2046. {
  2047. "name": "tamerzg",
  2048. "homepage": "https://www.drupal.org/user/464564"
  2049. }
  2050. ],
  2051. "description": "AudioField Module",
  2052. "homepage": "https://www.drupal.org/project/audiofield",
  2053. "support": {
  2054. "source": "https://git.drupalcode.org/project/audiofield",
  2055. "issues": "https://www.drupal.org/project/issues/audiofield"
  2056. }
  2057. },
  2058. {
  2059. "name": "drupal/autocomplete_deluxe",
  2060. "version": "2.1.2",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2064. "reference": "2.1.2"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2069. "reference": "2.1.2",
  2070. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2071. },
  2072. "require": {
  2073. "drupal/core": "^10.3 || ^11"
  2074. },
  2075. "type": "drupal-module",
  2076. "extra": {
  2077. "drupal": {
  2078. "version": "2.1.2",
  2079. "datestamp": "1742303934",
  2080. "security-coverage": {
  2081. "status": "covered",
  2082. "message": "Covered by Drupal's security advisory policy"
  2083. }
  2084. }
  2085. },
  2086. "notification-url": "https://packages.drupal.org/8/downloads",
  2087. "license": [
  2088. "GPL-2.0-or-later"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Vardot",
  2093. "homepage": "https://www.drupal.org/vardot",
  2094. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2095. },
  2096. {
  2097. "name": "Mediacurrent",
  2098. "homepage": "https://www.drupal.org/mediacurrent",
  2099. "role": "Supporting organization"
  2100. },
  2101. {
  2102. "name": "mohammed j. razem",
  2103. "homepage": "https://www.drupal.org/user/255384"
  2104. },
  2105. {
  2106. "name": "mpriscella",
  2107. "homepage": "https://www.drupal.org/user/2354820"
  2108. },
  2109. {
  2110. "name": "rajab natshah",
  2111. "homepage": "https://www.drupal.org/user/1414312"
  2112. },
  2113. {
  2114. "name": "sepgil",
  2115. "homepage": "https://www.drupal.org/user/512828"
  2116. }
  2117. ],
  2118. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2119. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2120. "support": {
  2121. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2122. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2123. }
  2124. },
  2125. {
  2126. "name": "drupal/autologout",
  2127. "version": "1.6.0",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://git.drupalcode.org/project/autologout.git",
  2131. "reference": "8.x-1.6"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2136. "reference": "8.x-1.6",
  2137. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2138. },
  2139. "require": {
  2140. "drupal/core": "^9.2 || ^10 || ^11",
  2141. "drupal/js_cookie": "^1.0"
  2142. },
  2143. "type": "drupal-module",
  2144. "extra": {
  2145. "drupal": {
  2146. "version": "8.x-1.6",
  2147. "datestamp": "1732235148",
  2148. "security-coverage": {
  2149. "status": "covered",
  2150. "message": "Covered by Drupal's security advisory policy"
  2151. }
  2152. }
  2153. },
  2154. "notification-url": "https://packages.drupal.org/8/downloads",
  2155. "license": [
  2156. "GPL-2.0-or-later"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "ajits",
  2161. "homepage": "https://www.drupal.org/user/981944"
  2162. },
  2163. {
  2164. "name": "AjK",
  2165. "homepage": "https://www.drupal.org/user/39030"
  2166. },
  2167. {
  2168. "name": "boshtian",
  2169. "homepage": "https://www.drupal.org/user/1773456"
  2170. },
  2171. {
  2172. "name": "dandrews",
  2173. "homepage": "https://www.drupal.org/user/2014490"
  2174. },
  2175. {
  2176. "name": "darksnow",
  2177. "homepage": "https://www.drupal.org/user/391915"
  2178. },
  2179. {
  2180. "name": "japerry",
  2181. "homepage": "https://www.drupal.org/user/45640"
  2182. },
  2183. {
  2184. "name": "johnennew",
  2185. "homepage": "https://www.drupal.org/user/1150042"
  2186. },
  2187. {
  2188. "name": "jrglasgow",
  2189. "homepage": "https://www.drupal.org/user/36590"
  2190. },
  2191. {
  2192. "name": "kmasood",
  2193. "homepage": "https://www.drupal.org/user/1262860"
  2194. },
  2195. {
  2196. "name": "levelos",
  2197. "homepage": "https://www.drupal.org/user/54135"
  2198. },
  2199. {
  2200. "name": "prabeen.giri",
  2201. "homepage": "https://www.drupal.org/user/913078"
  2202. },
  2203. {
  2204. "name": "scott_earnest",
  2205. "homepage": "https://www.drupal.org/user/416158"
  2206. },
  2207. {
  2208. "name": "str8",
  2209. "homepage": "https://www.drupal.org/user/2865063"
  2210. },
  2211. {
  2212. "name": "the_g_bomb",
  2213. "homepage": "https://www.drupal.org/user/492012"
  2214. }
  2215. ],
  2216. "description": "Adds automated timed logout.",
  2217. "homepage": "http://drupal.org/project/autologout",
  2218. "support": {
  2219. "source": "https://git.drupalcode.org/project/autologout",
  2220. "issues": "https://www.drupal.org/project/issues/autologout"
  2221. }
  2222. },
  2223. {
  2224. "name": "drupal/better_exposed_filters",
  2225. "version": "6.0.6",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2229. "reference": "6.0.6"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2234. "reference": "6.0.6",
  2235. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2236. },
  2237. "require": {
  2238. "drupal/core": "^9 || ^10",
  2239. "drupal/jquery_ui": "*",
  2240. "drupal/jquery_ui_datepicker": "*",
  2241. "drupal/jquery_ui_slider": "*",
  2242. "drupal/jquery_ui_touch_punch": "*"
  2243. },
  2244. "type": "drupal-module",
  2245. "extra": {
  2246. "drupal": {
  2247. "version": "6.0.6",
  2248. "datestamp": "1716397541",
  2249. "security-coverage": {
  2250. "status": "covered",
  2251. "message": "Covered by Drupal's security advisory policy"
  2252. }
  2253. }
  2254. },
  2255. "notification-url": "https://packages.drupal.org/8/downloads",
  2256. "license": [
  2257. "GPL-2.0-or-later"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Mike Keran",
  2262. "homepage": "https://www.drupal.org/u/mikeker"
  2263. },
  2264. {
  2265. "name": "Martin Keereman",
  2266. "homepage": "https://www.drupal.org/u/etroid"
  2267. },
  2268. {
  2269. "name": "Neslee Canil Pinto",
  2270. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2271. },
  2272. {
  2273. "name": "mikeker",
  2274. "homepage": "https://www.drupal.org/user/192273"
  2275. },
  2276. {
  2277. "name": "neslee canil pinto",
  2278. "homepage": "https://www.drupal.org/user/3580850"
  2279. },
  2280. {
  2281. "name": "podarok",
  2282. "homepage": "https://www.drupal.org/user/116002"
  2283. },
  2284. {
  2285. "name": "rlhawk",
  2286. "homepage": "https://www.drupal.org/user/352283"
  2287. },
  2288. {
  2289. "name": "smustgrave",
  2290. "homepage": "https://www.drupal.org/user/3252890"
  2291. }
  2292. ],
  2293. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2294. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2295. "support": {
  2296. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2297. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2298. }
  2299. },
  2300. {
  2301. "name": "drupal/betterlogin",
  2302. "version": "2.0.3",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2306. "reference": "2.0.3"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.3.zip",
  2311. "reference": "2.0.3",
  2312. "shasum": "5588632dae5677edf5f71faeb22bd2bc3aff5ac2"
  2313. },
  2314. "require": {
  2315. "drupal/core": "^10.1 || ^11"
  2316. },
  2317. "type": "drupal-module",
  2318. "extra": {
  2319. "drupal": {
  2320. "version": "2.0.3",
  2321. "datestamp": "1762858267",
  2322. "security-coverage": {
  2323. "status": "covered",
  2324. "message": "Covered by Drupal's security advisory policy"
  2325. }
  2326. }
  2327. },
  2328. "notification-url": "https://packages.drupal.org/8/downloads",
  2329. "license": [
  2330. "GPL-2.0-or-later"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "theamoeba",
  2335. "homepage": "https://www.drupal.org/user/251700"
  2336. },
  2337. {
  2338. "name": "yogeshmpawar",
  2339. "homepage": "https://www.drupal.org/user/2922907"
  2340. }
  2341. ],
  2342. "description": "Make the login screens better :)",
  2343. "homepage": "https://www.drupal.org/project/betterlogin",
  2344. "support": {
  2345. "source": "https://git.drupalcode.org/project/betterlogin"
  2346. }
  2347. },
  2348. {
  2349. "name": "drupal/blazy",
  2350. "version": "2.27.0",
  2351. "source": {
  2352. "type": "git",
  2353. "url": "https://git.drupalcode.org/project/blazy.git",
  2354. "reference": "8.x-2.27"
  2355. },
  2356. "dist": {
  2357. "type": "zip",
  2358. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2359. "reference": "8.x-2.27",
  2360. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2361. },
  2362. "require": {
  2363. "drupal/core": "^8.8 || ^9 || ^10"
  2364. },
  2365. "conflict": {
  2366. "drupal/csp": "<1.12"
  2367. },
  2368. "type": "drupal-module",
  2369. "extra": {
  2370. "drupal": {
  2371. "version": "8.x-2.27",
  2372. "datestamp": "1715944090",
  2373. "security-coverage": {
  2374. "status": "covered",
  2375. "message": "Covered by Drupal's security advisory policy"
  2376. }
  2377. }
  2378. },
  2379. "notification-url": "https://packages.drupal.org/8/downloads",
  2380. "license": [
  2381. "GPL-2.0-or-later"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "Gaus Surahman",
  2386. "homepage": "https://www.drupal.org/u/gausarts",
  2387. "role": "Maintainer"
  2388. },
  2389. {
  2390. "name": "Contributors",
  2391. "homepage": "https://www.drupal.org/node/2663268/committers",
  2392. "role": "Contributor"
  2393. },
  2394. {
  2395. "name": "geek-merlin",
  2396. "homepage": "https://www.drupal.org/user/229048"
  2397. },
  2398. {
  2399. "name": "sun",
  2400. "homepage": "https://www.drupal.org/user/54136"
  2401. }
  2402. ],
  2403. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2404. "homepage": "https://drupal.org/project/blazy",
  2405. "keywords": [
  2406. "Drupal",
  2407. "bLazy",
  2408. "lazyload"
  2409. ],
  2410. "support": {
  2411. "source": "https://git.drupalcode.org/project/blazy",
  2412. "issues": "https://drupal.org/project/issues/blazy"
  2413. }
  2414. },
  2415. {
  2416. "name": "drupal/block_class",
  2417. "version": "4.0.2",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://git.drupalcode.org/project/block_class.git",
  2421. "reference": "4.0.2"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.2.zip",
  2426. "reference": "4.0.2",
  2427. "shasum": "10c30a6a113a00722cb42798692c3c0389c35a89"
  2428. },
  2429. "require": {
  2430. "drupal/core": "^9 || ^10 || ^11"
  2431. },
  2432. "type": "drupal-module",
  2433. "extra": {
  2434. "drupal": {
  2435. "version": "4.0.2",
  2436. "datestamp": "1762734005",
  2437. "security-coverage": {
  2438. "status": "covered",
  2439. "message": "Covered by Drupal's security advisory policy"
  2440. }
  2441. }
  2442. },
  2443. "notification-url": "https://packages.drupal.org/8/downloads",
  2444. "license": [
  2445. "GPL-2.0-or-later"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Todd Nienkerk",
  2450. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2451. "role": "Maintainer"
  2452. },
  2453. {
  2454. "name": "Renato Gonçalves (RenatoG)",
  2455. "homepage": "https://www.drupal.org/u/RenatoG",
  2456. "role": "Maintainer"
  2457. },
  2458. {
  2459. "name": "Neslee Canil Pinto",
  2460. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2461. "role": "Maintainer"
  2462. },
  2463. {
  2464. "name": "Aaron Stanush",
  2465. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2466. "role": "Maintainer"
  2467. },
  2468. {
  2469. "name": "David Suissa (DYdave)",
  2470. "homepage": "https://www.drupal.org/u/DYdave",
  2471. "role": "Maintainer"
  2472. },
  2473. {
  2474. "name": "Four Kitchens",
  2475. "homepage": "https://www.drupal.org/user/358502",
  2476. "role": "Maintainer"
  2477. },
  2478. {
  2479. "name": "berenddeboer",
  2480. "homepage": "https://www.drupal.org/u/berenddeboer",
  2481. "role": "Maintainer"
  2482. },
  2483. {
  2484. "name": "elliotttf",
  2485. "homepage": "https://www.drupal.org/u/elliotttf",
  2486. "role": "Maintainer"
  2487. },
  2488. {
  2489. "name": "Michal Minecki (mirzu)",
  2490. "homepage": "https://www.drupal.org/u/mirzu",
  2491. "role": "Maintainer"
  2492. },
  2493. {
  2494. "name": "Patrick Coffey (pcoffey)",
  2495. "homepage": "https://www.drupal.org/u/pcoffey",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "Taylor Smith (tsmith512)",
  2500. "homepage": "https://www.drupal.org/u/tsmith512",
  2501. "role": "Maintainer"
  2502. }
  2503. ],
  2504. "description": "Allows assigning classes, attributes and ID to blocks.",
  2505. "homepage": "https://www.drupal.org/project/block_class",
  2506. "keywords": [
  2507. "Drupal"
  2508. ],
  2509. "support": {
  2510. "source": "https://git.drupalcode.org/project/block_class",
  2511. "issues": "https://www.drupal.org/project/issues/block_class",
  2512. "irc": "irc://irc.freenode.org/drupal-contribute"
  2513. }
  2514. },
  2515. {
  2516. "name": "drupal/computed_field",
  2517. "version": "3.0.0",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://git.drupalcode.org/project/computed_field.git",
  2521. "reference": "3.0.0"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2526. "reference": "3.0.0",
  2527. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2528. },
  2529. "require": {
  2530. "drupal/core": "^8 || ^9 || ^10"
  2531. },
  2532. "type": "drupal-module",
  2533. "extra": {
  2534. "drupal": {
  2535. "version": "3.0.0",
  2536. "datestamp": "1705775905",
  2537. "security-coverage": {
  2538. "status": "covered",
  2539. "message": "Covered by Drupal's security advisory policy"
  2540. }
  2541. }
  2542. },
  2543. "notification-url": "https://packages.drupal.org/8/downloads",
  2544. "license": [
  2545. "GPL-2.0-or-later"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "agileware",
  2550. "homepage": "https://www.drupal.org/user/89106"
  2551. },
  2552. {
  2553. "name": "colan",
  2554. "homepage": "https://www.drupal.org/user/58704"
  2555. },
  2556. {
  2557. "name": "dealancer",
  2558. "homepage": "https://www.drupal.org/user/243418"
  2559. },
  2560. {
  2561. "name": "joachim",
  2562. "homepage": "https://www.drupal.org/user/107701"
  2563. },
  2564. {
  2565. "name": "markus_petrux",
  2566. "homepage": "https://www.drupal.org/user/39593"
  2567. },
  2568. {
  2569. "name": "Moonshine",
  2570. "homepage": "https://www.drupal.org/user/133705"
  2571. },
  2572. {
  2573. "name": "nickcaballero",
  2574. "homepage": "https://www.drupal.org/user/588336"
  2575. },
  2576. {
  2577. "name": "Pedro Lozano",
  2578. "homepage": "https://www.drupal.org/user/123766"
  2579. },
  2580. {
  2581. "name": "ram4nd",
  2582. "homepage": "https://www.drupal.org/user/601534"
  2583. }
  2584. ],
  2585. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2586. "homepage": "https://www.drupal.org/project/computed_field",
  2587. "support": {
  2588. "source": "https://git.drupalcode.org/project/computed_field"
  2589. }
  2590. },
  2591. {
  2592. "name": "drupal/computed_token_field",
  2593. "version": "1.0.0-beta1",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2597. "reference": "1.0.0-beta1"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2602. "reference": "1.0.0-beta1",
  2603. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2604. },
  2605. "require": {
  2606. "drupal/computed_field": "^3.0",
  2607. "drupal/core": "^8 || ^9 || ^10"
  2608. },
  2609. "require-dev": {
  2610. "drupal/eck": "*",
  2611. "drupal/field_permissions": "*",
  2612. "drupal/hide_revision_field": "*",
  2613. "drupal/inline_entity_form": "*"
  2614. },
  2615. "type": "drupal-module",
  2616. "extra": {
  2617. "drupal": {
  2618. "version": "1.0.0-beta1",
  2619. "datestamp": "1741812647",
  2620. "security-coverage": {
  2621. "status": "not-covered",
  2622. "message": "Beta releases are not covered by Drupal security advisories."
  2623. }
  2624. }
  2625. },
  2626. "notification-url": "https://packages.drupal.org/8/downloads",
  2627. "license": [
  2628. "GPLv2 or later"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "Derek Laventure",
  2633. "homepage": "https://www.drupal.org/user/3082389",
  2634. "email": "derek@consensus.enterprises"
  2635. },
  2636. {
  2637. "name": "colan",
  2638. "homepage": "https://www.drupal.org/user/58704"
  2639. },
  2640. {
  2641. "name": "ergonlogic",
  2642. "homepage": "https://www.drupal.org/user/368613"
  2643. },
  2644. {
  2645. "name": "spiderman",
  2646. "homepage": "https://www.drupal.org/user/1631"
  2647. }
  2648. ],
  2649. "description": "Computed field that accepts a token to calculate its value.",
  2650. "homepage": "https://www.drupal.org/project/computed_token_field",
  2651. "support": {
  2652. "source": "https://git.drupalcode.org/project/computed_token_field"
  2653. }
  2654. },
  2655. {
  2656. "name": "drupal/config_devel",
  2657. "version": "1.11.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://git.drupalcode.org/project/config_devel.git",
  2661. "reference": "8.x-1.11"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.11.zip",
  2666. "reference": "8.x-1.11",
  2667. "shasum": "06e68921c2ab737d775445068280c23c176edf19"
  2668. },
  2669. "require": {
  2670. "drupal/core": "^9.3 || ^10 || ^11"
  2671. },
  2672. "type": "drupal-module",
  2673. "extra": {
  2674. "drupal": {
  2675. "version": "8.x-1.11",
  2676. "datestamp": "1763045911",
  2677. "security-coverage": {
  2678. "status": "covered",
  2679. "message": "Covered by Drupal's security advisory policy"
  2680. }
  2681. }
  2682. },
  2683. "notification-url": "https://packages.drupal.org/8/downloads",
  2684. "license": [
  2685. "GPL-2.0+"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "alexpott",
  2690. "homepage": "https://www.drupal.org/user/157725"
  2691. },
  2692. {
  2693. "name": "benjy",
  2694. "homepage": "https://www.drupal.org/user/1852732"
  2695. },
  2696. {
  2697. "name": "chx",
  2698. "homepage": "https://www.drupal.org/user/9446"
  2699. },
  2700. {
  2701. "name": "joachim",
  2702. "homepage": "https://www.drupal.org/user/107701"
  2703. },
  2704. {
  2705. "name": "vijaycs85",
  2706. "homepage": "https://www.drupal.org/user/93488"
  2707. }
  2708. ],
  2709. "description": "Helps developers work with configuration.",
  2710. "homepage": "https://www.drupal.org/project/config_devel",
  2711. "support": {
  2712. "source": "https://git.drupalcode.org/project/config_devel"
  2713. }
  2714. },
  2715. {
  2716. "name": "drupal/config_enforce",
  2717. "version": "1.0.7",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2721. "reference": "1.0.7"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2726. "reference": "1.0.7",
  2727. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2728. },
  2729. "require": {
  2730. "drupal/core": "^8 || ^9 || ^10",
  2731. "php": "^7.4 || ^8"
  2732. },
  2733. "suggest": {
  2734. "drush/drush": "Allows for running enforce commands via the CLI"
  2735. },
  2736. "type": "drupal-module",
  2737. "extra": {
  2738. "drupal": {
  2739. "version": "1.0.7",
  2740. "datestamp": "1723136457",
  2741. "security-coverage": {
  2742. "status": "covered",
  2743. "message": "Covered by Drupal's security advisory policy"
  2744. }
  2745. },
  2746. "drush": {
  2747. "services": {
  2748. "drush.services.yml": "^11"
  2749. }
  2750. }
  2751. },
  2752. "notification-url": "https://packages.drupal.org/8/downloads",
  2753. "license": [
  2754. "GPLv3 or later"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Christopher Gervais",
  2759. "homepage": "https://www.drupal.org/user/1131532",
  2760. "email": "chris@ergonlogic.com"
  2761. },
  2762. {
  2763. "name": "Dan Friedman",
  2764. "homepage": "https://www.drupal.org/user/58704",
  2765. "email": "dan@consensus.enterprises"
  2766. },
  2767. {
  2768. "name": "Derek Laventure",
  2769. "homepage": "https://www.drupal.org/user/368613",
  2770. "email": "derek@consensus.enterprises"
  2771. },
  2772. {
  2773. "name": "Matei Stanca",
  2774. "homepage": "https://ambientimpact.com"
  2775. },
  2776. {
  2777. "name": "M Parker",
  2778. "homepage": "https://www.drupal.org/u/mparker17"
  2779. },
  2780. {
  2781. "name": "Serena Zhu",
  2782. "homepage": "https://www.drupal.org/u/szhu"
  2783. },
  2784. {
  2785. "name": "spiderman",
  2786. "homepage": "https://www.drupal.org/user/1631"
  2787. },
  2788. {
  2789. "name": "szhu",
  2790. "homepage": "https://www.drupal.org/user/3525295"
  2791. }
  2792. ],
  2793. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2794. "homepage": "https://www.drupal.org/project/config_enforce",
  2795. "support": {
  2796. "source": "https://git.drupalcode.org/project/config_enforce"
  2797. }
  2798. },
  2799. {
  2800. "name": "drupal/config_filter",
  2801. "version": "2.7.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://git.drupalcode.org/project/config_filter.git",
  2805. "reference": "8.x-2.7"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2810. "reference": "8.x-2.7",
  2811. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2812. },
  2813. "require": {
  2814. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2815. },
  2816. "conflict": {
  2817. "drush/drush": "<10"
  2818. },
  2819. "suggest": {
  2820. "drupal/config_split": "Split site configuration for different environments."
  2821. },
  2822. "type": "drupal-module",
  2823. "extra": {
  2824. "drupal": {
  2825. "version": "8.x-2.7",
  2826. "datestamp": "1727472458",
  2827. "security-coverage": {
  2828. "status": "covered",
  2829. "message": "Covered by Drupal's security advisory policy"
  2830. }
  2831. }
  2832. },
  2833. "notification-url": "https://packages.drupal.org/8/downloads",
  2834. "license": [
  2835. "GPL-2.0-or-later"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "Fabian Bircher",
  2840. "homepage": "https://www.drupal.org/u/bircher",
  2841. "email": "opensource@fabianbircher.com",
  2842. "role": "Maintainer"
  2843. },
  2844. {
  2845. "name": "Nuvole Web",
  2846. "homepage": "http://nuvole.org",
  2847. "email": "info@nuvole.org",
  2848. "role": "Maintainer"
  2849. },
  2850. {
  2851. "name": "pescetti",
  2852. "homepage": "https://www.drupal.org/user/436244"
  2853. }
  2854. ],
  2855. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2856. "homepage": "https://www.drupal.org/project/config_filter",
  2857. "keywords": [
  2858. "Drupal",
  2859. "configuration",
  2860. "configuration management"
  2861. ],
  2862. "support": {
  2863. "source": "https://git.drupalcode.org/project/config_filter",
  2864. "issues": "https://www.drupal.org/project/issues/config_filter",
  2865. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2866. }
  2867. },
  2868. {
  2869. "name": "drupal/config_ignore",
  2870. "version": "3.3.0",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2874. "reference": "8.x-3.3"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2879. "reference": "8.x-3.3",
  2880. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2881. },
  2882. "require": {
  2883. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2884. },
  2885. "require-dev": {
  2886. "drupal/config_filter": "^1.8||^2.2",
  2887. "drush/drush": "^10 || ^11 || ^12"
  2888. },
  2889. "type": "drupal-module",
  2890. "extra": {
  2891. "drupal": {
  2892. "version": "8.x-3.3",
  2893. "datestamp": "1713299496",
  2894. "security-coverage": {
  2895. "status": "covered",
  2896. "message": "Covered by Drupal's security advisory policy"
  2897. }
  2898. }
  2899. },
  2900. "notification-url": "https://packages.drupal.org/8/downloads",
  2901. "license": [
  2902. "GPL-2.0-or-later"
  2903. ],
  2904. "authors": [
  2905. {
  2906. "name": "Tommy Lynge Jørgensen",
  2907. "homepage": "https://www.drupal.org/u/tlyngej",
  2908. "email": "tlyngej@gmail.com",
  2909. "role": "Maintainer"
  2910. },
  2911. {
  2912. "name": "Fabian Bircher",
  2913. "homepage": "https://www.drupal.org/u/bircher",
  2914. "role": "Maintainer"
  2915. },
  2916. {
  2917. "name": "tlyngej",
  2918. "homepage": "https://www.drupal.org/user/413139"
  2919. }
  2920. ],
  2921. "description": "Ignore certain configuration during import and export.",
  2922. "homepage": "http://drupal.org/project/config_ignore",
  2923. "support": {
  2924. "source": "https://git.drupalcode.org/project/config_ignore",
  2925. "issues": "http://drupal.org/project/config_ignore"
  2926. }
  2927. },
  2928. {
  2929. "name": "drupal/config_pages",
  2930. "version": "2.22.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://git.drupalcode.org/project/config_pages.git",
  2934. "reference": "8.x-2.22"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.22.zip",
  2939. "reference": "8.x-2.22",
  2940. "shasum": "8bdd51adb0c5bc70fc4b964c21c8d530f2bebf91"
  2941. },
  2942. "require": {
  2943. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  2944. },
  2945. "type": "drupal-module",
  2946. "extra": {
  2947. "drupal": {
  2948. "version": "8.x-2.22",
  2949. "datestamp": "1772826242",
  2950. "security-coverage": {
  2951. "status": "covered",
  2952. "message": "Covered by Drupal's security advisory policy"
  2953. }
  2954. },
  2955. "drush": {
  2956. "services": {
  2957. "drush.services.yml": "^9"
  2958. }
  2959. }
  2960. },
  2961. "notification-url": "https://packages.drupal.org/8/downloads",
  2962. "license": [
  2963. "GPL-2.0-or-later"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "m.krestnicov",
  2968. "homepage": "https://www.drupal.org/user/3193903"
  2969. },
  2970. {
  2971. "name": "qwaygon",
  2972. "homepage": "https://www.drupal.org/user/636624"
  2973. },
  2974. {
  2975. "name": "shumer",
  2976. "homepage": "https://www.drupal.org/user/2297432"
  2977. }
  2978. ],
  2979. "description": "ConfigPages module",
  2980. "homepage": "http://drupal.org/project/config_pages",
  2981. "keywords": [
  2982. "Drupal"
  2983. ],
  2984. "support": {
  2985. "source": "http://cgit.drupalcode.org/config_pages",
  2986. "issues": "http://drupal.org/project/issues/config_pages"
  2987. }
  2988. },
  2989. {
  2990. "name": "drupal/config_update",
  2991. "version": "2.0.0-alpha4",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://git.drupalcode.org/project/config_update.git",
  2995. "reference": "2.0.0-alpha4"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3000. "reference": "2.0.0-alpha4",
  3001. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3002. },
  3003. "require": {
  3004. "drupal/core": "^9.4 || ^10 || ^11"
  3005. },
  3006. "type": "drupal-module",
  3007. "extra": {
  3008. "drupal": {
  3009. "version": "2.0.0-alpha4",
  3010. "datestamp": "1724596931",
  3011. "security-coverage": {
  3012. "status": "not-covered",
  3013. "message": "Alpha releases are not covered by Drupal security advisories."
  3014. }
  3015. }
  3016. },
  3017. "notification-url": "https://packages.drupal.org/8/downloads",
  3018. "license": [
  3019. "GPL-2.0-or-later"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "codebymikey",
  3024. "homepage": "https://www.drupal.org/user/3573206"
  3025. },
  3026. {
  3027. "name": "pasqualle",
  3028. "homepage": "https://www.drupal.org/user/80733"
  3029. },
  3030. {
  3031. "name": "vishalkhode",
  3032. "homepage": "https://www.drupal.org/user/2439156"
  3033. }
  3034. ],
  3035. "description": "Provides basic revert and update functionality for other modules.",
  3036. "homepage": "https://www.drupal.org/project/config_update",
  3037. "support": {
  3038. "source": "https://git.drupalcode.org/project/config_update"
  3039. }
  3040. },
  3041. {
  3042. "name": "drupal/content_lock",
  3043. "version": "2.4.0",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://git.drupalcode.org/project/content_lock.git",
  3047. "reference": "8.x-2.4"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3052. "reference": "8.x-2.4",
  3053. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3054. },
  3055. "require": {
  3056. "drupal/core": "^9.0 || ^10.0"
  3057. },
  3058. "type": "drupal-module",
  3059. "extra": {
  3060. "drupal": {
  3061. "version": "8.x-2.4",
  3062. "datestamp": "1715783058",
  3063. "security-coverage": {
  3064. "status": "covered",
  3065. "message": "Covered by Drupal's security advisory policy"
  3066. }
  3067. }
  3068. },
  3069. "notification-url": "https://packages.drupal.org/8/downloads",
  3070. "license": [
  3071. "GPL-2.0-or-later"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "alexpott",
  3076. "homepage": "https://www.drupal.org/user/157725"
  3077. },
  3078. {
  3079. "name": "astonvictor",
  3080. "homepage": "https://www.drupal.org/user/3466615"
  3081. },
  3082. {
  3083. "name": "chr.fritsch",
  3084. "homepage": "https://www.drupal.org/user/2103716"
  3085. },
  3086. {
  3087. "name": "daniel.bosen",
  3088. "homepage": "https://www.drupal.org/user/404865"
  3089. },
  3090. {
  3091. "name": "ergonlogic",
  3092. "homepage": "https://www.drupal.org/user/368613"
  3093. },
  3094. {
  3095. "name": "mfb",
  3096. "homepage": "https://www.drupal.org/user/12302"
  3097. },
  3098. {
  3099. "name": "volkerk",
  3100. "homepage": "https://www.drupal.org/user/57527"
  3101. }
  3102. ],
  3103. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3104. "homepage": "https://www.drupal.org/project/content_lock",
  3105. "support": {
  3106. "source": "https://git.drupalcode.org/project/content_lock"
  3107. }
  3108. },
  3109. {
  3110. "name": "drupal/context",
  3111. "version": "5.0.0-rc2",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://git.drupalcode.org/project/context.git",
  3115. "reference": "5.0.0-rc2"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3120. "reference": "5.0.0-rc2",
  3121. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3122. },
  3123. "require": {
  3124. "drupal/core": "^9.3 || ^10 || ^11"
  3125. },
  3126. "type": "drupal-module",
  3127. "extra": {
  3128. "drupal": {
  3129. "version": "5.0.0-rc2",
  3130. "datestamp": "1741253306",
  3131. "security-coverage": {
  3132. "status": "not-covered",
  3133. "message": "RC releases are not covered by Drupal security advisories."
  3134. }
  3135. }
  3136. },
  3137. "notification-url": "https://packages.drupal.org/8/downloads",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Christoffer Palm",
  3144. "homepage": "http://www.oddhill.se/",
  3145. "email": "christoffer.palm@oddhill.se",
  3146. "role": "Developer"
  3147. },
  3148. {
  3149. "name": "boshtian",
  3150. "homepage": "https://www.drupal.org/user/1773456"
  3151. },
  3152. {
  3153. "name": "colan",
  3154. "homepage": "https://www.drupal.org/user/58704"
  3155. },
  3156. {
  3157. "name": "emanaton",
  3158. "homepage": "https://www.drupal.org/user/120853"
  3159. },
  3160. {
  3161. "name": "febbraro",
  3162. "homepage": "https://www.drupal.org/user/43670"
  3163. },
  3164. {
  3165. "name": "fizk",
  3166. "homepage": "https://www.drupal.org/user/473174"
  3167. },
  3168. {
  3169. "name": "hass",
  3170. "homepage": "https://www.drupal.org/user/85918"
  3171. },
  3172. {
  3173. "name": "hefox",
  3174. "homepage": "https://www.drupal.org/user/426416"
  3175. },
  3176. {
  3177. "name": "jmiccolis",
  3178. "homepage": "https://www.drupal.org/user/31731"
  3179. },
  3180. {
  3181. "name": "kristen pol",
  3182. "homepage": "https://www.drupal.org/user/8389"
  3183. },
  3184. {
  3185. "name": "mandclu",
  3186. "homepage": "https://www.drupal.org/user/52136"
  3187. },
  3188. {
  3189. "name": "nedjo",
  3190. "homepage": "https://www.drupal.org/user/4481"
  3191. },
  3192. {
  3193. "name": "NormySan",
  3194. "homepage": "https://www.drupal.org/user/112352"
  3195. },
  3196. {
  3197. "name": "patricksettle",
  3198. "homepage": "https://www.drupal.org/user/26618"
  3199. },
  3200. {
  3201. "name": "paulocs",
  3202. "homepage": "https://www.drupal.org/user/3640109"
  3203. },
  3204. {
  3205. "name": "steven jones",
  3206. "homepage": "https://www.drupal.org/user/99644"
  3207. },
  3208. {
  3209. "name": "tekante",
  3210. "homepage": "https://www.drupal.org/user/640024"
  3211. },
  3212. {
  3213. "name": "yhahn",
  3214. "homepage": "https://www.drupal.org/user/264833"
  3215. }
  3216. ],
  3217. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3218. "homepage": "https://github.com/oddhill/context",
  3219. "keywords": [
  3220. "Drupal",
  3221. "block",
  3222. "conditions",
  3223. "context",
  3224. "visibility"
  3225. ],
  3226. "support": {
  3227. "source": "https://github.com/oddhill/context",
  3228. "issues": "https://github.com/oddhill/context/issues",
  3229. "docs": "https://github.com/oddhill/context"
  3230. }
  3231. },
  3232. {
  3233. "name": "drupal/core",
  3234. "version": "10.6.5",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/drupal/core.git",
  3238. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  3243. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "asm89/stack-cors": "^2.3",
  3248. "composer-runtime-api": "^2.1",
  3249. "composer/semver": "^3.3",
  3250. "doctrine/lexer": "^2",
  3251. "egulias/email-validator": "^3.2.1|^4.0",
  3252. "ext-date": "*",
  3253. "ext-dom": "*",
  3254. "ext-filter": "*",
  3255. "ext-gd": "*",
  3256. "ext-hash": "*",
  3257. "ext-json": "*",
  3258. "ext-pcre": "*",
  3259. "ext-pdo": "*",
  3260. "ext-session": "*",
  3261. "ext-simplexml": "*",
  3262. "ext-spl": "*",
  3263. "ext-tokenizer": "*",
  3264. "ext-xml": "*",
  3265. "guzzlehttp/guzzle": "^7.5",
  3266. "guzzlehttp/psr7": "^2.4.5",
  3267. "masterminds/html5": "^2.7",
  3268. "mck89/peast": "^1.14",
  3269. "pear/archive_tar": "^1.4.14",
  3270. "php": ">=8.1.0",
  3271. "psr/log": "^3.0",
  3272. "sebastian/diff": "^4",
  3273. "symfony/console": "^6.4",
  3274. "symfony/dependency-injection": "^6.4",
  3275. "symfony/event-dispatcher": "^6.4",
  3276. "symfony/filesystem": "^6.4",
  3277. "symfony/finder": "^6.4",
  3278. "symfony/http-foundation": "^6.4",
  3279. "symfony/http-kernel": "^6.4",
  3280. "symfony/mailer": "^6.4",
  3281. "symfony/mime": "^6.4",
  3282. "symfony/polyfill-iconv": "^1.26",
  3283. "symfony/process": "^6.4.33",
  3284. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3285. "symfony/routing": "^6.4",
  3286. "symfony/serializer": "^6.4",
  3287. "symfony/validator": "^6.4",
  3288. "symfony/yaml": "^6.4",
  3289. "twig/twig": "^3.22.0"
  3290. },
  3291. "conflict": {
  3292. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  3293. "drush/drush": "<12.4.3"
  3294. },
  3295. "replace": {
  3296. "drupal/core-annotation": "self.version",
  3297. "drupal/core-assertion": "self.version",
  3298. "drupal/core-class-finder": "self.version",
  3299. "drupal/core-datetime": "self.version",
  3300. "drupal/core-dependency-injection": "self.version",
  3301. "drupal/core-diff": "self.version",
  3302. "drupal/core-discovery": "self.version",
  3303. "drupal/core-event-dispatcher": "self.version",
  3304. "drupal/core-file-cache": "self.version",
  3305. "drupal/core-file-security": "self.version",
  3306. "drupal/core-filesystem": "self.version",
  3307. "drupal/core-front-matter": "self.version",
  3308. "drupal/core-gettext": "self.version",
  3309. "drupal/core-graph": "self.version",
  3310. "drupal/core-http-foundation": "self.version",
  3311. "drupal/core-php-storage": "self.version",
  3312. "drupal/core-plugin": "self.version",
  3313. "drupal/core-proxy-builder": "self.version",
  3314. "drupal/core-render": "self.version",
  3315. "drupal/core-serialization": "self.version",
  3316. "drupal/core-transliteration": "self.version",
  3317. "drupal/core-utility": "self.version",
  3318. "drupal/core-uuid": "self.version",
  3319. "drupal/core-version": "self.version"
  3320. },
  3321. "suggest": {
  3322. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3323. },
  3324. "type": "drupal-core",
  3325. "extra": {
  3326. "drupal-scaffold": {
  3327. "file-mapping": {
  3328. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3329. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3330. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3331. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3332. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3333. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3334. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3335. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3336. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3337. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3338. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3339. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3340. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3341. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3342. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3343. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3344. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3345. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3346. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3347. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3348. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3349. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3350. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3351. }
  3352. }
  3353. },
  3354. "autoload": {
  3355. "files": [
  3356. "includes/bootstrap.inc"
  3357. ],
  3358. "psr-4": {
  3359. "Drupal\\Core\\": "lib/Drupal/Core",
  3360. "Drupal\\Component\\": "lib/Drupal/Component"
  3361. },
  3362. "classmap": [
  3363. "lib/Drupal.php",
  3364. "lib/Drupal/Component/DependencyInjection/Container.php",
  3365. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3366. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3367. "lib/Drupal/Component/Utility/Timer.php",
  3368. "lib/Drupal/Component/Utility/Unicode.php",
  3369. "lib/Drupal/Core/Cache/Cache.php",
  3370. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3371. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3372. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3373. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3374. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3375. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3376. "lib/Drupal/Core/Database/Connection.php",
  3377. "lib/Drupal/Core/Database/Database.php",
  3378. "lib/Drupal/Core/Database/StatementInterface.php",
  3379. "lib/Drupal/Core/DependencyInjection/Container.php",
  3380. "lib/Drupal/Core/DrupalKernel.php",
  3381. "lib/Drupal/Core/DrupalKernelInterface.php",
  3382. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3383. "lib/Drupal/Core/Site/Settings.php",
  3384. "lib/Drupal/Component/Datetime/Time.php"
  3385. ]
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "GPL-2.0-or-later"
  3390. ],
  3391. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3392. "support": {
  3393. "source": "https://github.com/drupal/core/tree/10.6.5"
  3394. },
  3395. "time": "2026-03-06T09:55:31+00:00"
  3396. },
  3397. {
  3398. "name": "drupal/core-composer-scaffold",
  3399. "version": "10.6.5",
  3400. "source": {
  3401. "type": "git",
  3402. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3403. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3404. },
  3405. "dist": {
  3406. "type": "zip",
  3407. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3408. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3409. "shasum": ""
  3410. },
  3411. "require": {
  3412. "composer-plugin-api": "^2",
  3413. "php": ">=7.3.0"
  3414. },
  3415. "conflict": {
  3416. "drupal-composer/drupal-scaffold": "*"
  3417. },
  3418. "require-dev": {
  3419. "composer/composer": "^1.8@stable"
  3420. },
  3421. "type": "composer-plugin",
  3422. "extra": {
  3423. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3424. "branch-alias": {
  3425. "dev-master": "1.0.x-dev"
  3426. }
  3427. },
  3428. "autoload": {
  3429. "psr-4": {
  3430. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3431. }
  3432. },
  3433. "notification-url": "https://packagist.org/downloads/",
  3434. "license": [
  3435. "GPL-2.0-or-later"
  3436. ],
  3437. "description": "A flexible Composer project scaffold builder.",
  3438. "homepage": "https://www.drupal.org/project/drupal",
  3439. "keywords": [
  3440. "drupal"
  3441. ],
  3442. "support": {
  3443. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  3444. },
  3445. "time": "2024-08-22T14:31:30+00:00"
  3446. },
  3447. {
  3448. "name": "drupal/core-project-message",
  3449. "version": "10.6.5",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/drupal/core-project-message.git",
  3453. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3458. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "composer-plugin-api": "^2",
  3463. "php": ">=7.3.0"
  3464. },
  3465. "type": "composer-plugin",
  3466. "extra": {
  3467. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3468. },
  3469. "autoload": {
  3470. "psr-4": {
  3471. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3472. }
  3473. },
  3474. "notification-url": "https://packagist.org/downloads/",
  3475. "license": [
  3476. "GPL-2.0-or-later"
  3477. ],
  3478. "description": "Adds a message after Composer installation.",
  3479. "homepage": "https://www.drupal.org/project/drupal",
  3480. "keywords": [
  3481. "drupal"
  3482. ],
  3483. "support": {
  3484. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  3485. },
  3486. "time": "2023-07-24T07:55:25+00:00"
  3487. },
  3488. {
  3489. "name": "drupal/core-recommended",
  3490. "version": "10.6.5",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/drupal/core-recommended.git",
  3494. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  3499. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "asm89/stack-cors": "~v2.3.0",
  3504. "composer/semver": "~3.4.4",
  3505. "doctrine/deprecations": "~1.1.5",
  3506. "doctrine/lexer": "~2.1.1",
  3507. "drupal/core": "10.6.5",
  3508. "egulias/email-validator": "~4.0.4",
  3509. "guzzlehttp/guzzle": "~7.10.0",
  3510. "guzzlehttp/promises": "~2.3.0",
  3511. "guzzlehttp/psr7": "~2.8.0",
  3512. "masterminds/html5": "~2.10.0",
  3513. "mck89/peast": "~v1.17.4",
  3514. "pear/archive_tar": "~1.6.0",
  3515. "pear/console_getopt": "~v1.4.3",
  3516. "pear/pear-core-minimal": "~v1.10.16",
  3517. "pear/pear_exception": "~v1.0.2",
  3518. "psr/container": "~2.0.2",
  3519. "psr/event-dispatcher": "~1.0.0",
  3520. "psr/http-client": "~1.0.3",
  3521. "psr/http-factory": "~1.1.0",
  3522. "psr/log": "~3.0.2",
  3523. "ralouphie/getallheaders": "~3.0.3",
  3524. "sebastian/diff": "~4.0.6",
  3525. "symfony/console": "~v6.4.27",
  3526. "symfony/dependency-injection": "~v6.4.26",
  3527. "symfony/deprecation-contracts": "~v3.6.0",
  3528. "symfony/error-handler": "~v6.4.26",
  3529. "symfony/event-dispatcher": "~v6.4.25",
  3530. "symfony/event-dispatcher-contracts": "~v3.6.0",
  3531. "symfony/filesystem": "~v6.4.24",
  3532. "symfony/finder": "~v6.4.27",
  3533. "symfony/http-foundation": "~v6.4.29",
  3534. "symfony/http-kernel": "~v6.4.29",
  3535. "symfony/mailer": "~v6.4.27",
  3536. "symfony/mime": "~v6.4.26",
  3537. "symfony/polyfill-ctype": "~v1.33.0",
  3538. "symfony/polyfill-iconv": "~v1.33.0",
  3539. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  3540. "symfony/polyfill-intl-idn": "~v1.33.0",
  3541. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  3542. "symfony/polyfill-mbstring": "~v1.33.0",
  3543. "symfony/polyfill-php83": "~v1.33.0",
  3544. "symfony/process": "~v6.4.33",
  3545. "symfony/psr-http-message-bridge": "~v6.4.24",
  3546. "symfony/routing": "~v6.4.28",
  3547. "symfony/serializer": "~v6.4.27",
  3548. "symfony/service-contracts": "~v3.6.1",
  3549. "symfony/string": "~v6.4.26",
  3550. "symfony/translation-contracts": "~v3.6.1",
  3551. "symfony/validator": "~v6.4.29",
  3552. "symfony/var-dumper": "~v6.4.26",
  3553. "symfony/var-exporter": "~v6.4.26",
  3554. "symfony/yaml": "~v6.4.26",
  3555. "twig/twig": "~v3.22.0"
  3556. },
  3557. "conflict": {
  3558. "webflo/drupal-core-strict": "*"
  3559. },
  3560. "type": "metapackage",
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "GPL-2.0-or-later"
  3564. ],
  3565. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3566. "support": {
  3567. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  3568. },
  3569. "time": "2026-03-06T09:55:31+00:00"
  3570. },
  3571. {
  3572. "name": "drupal/ctools",
  3573. "version": "4.1.0",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://git.drupalcode.org/project/ctools.git",
  3577. "reference": "4.1.0"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3582. "reference": "4.1.0",
  3583. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3584. },
  3585. "require": {
  3586. "drupal/core": "^9.5 || ^10 || ^11"
  3587. },
  3588. "type": "drupal-module",
  3589. "extra": {
  3590. "drupal": {
  3591. "version": "4.1.0",
  3592. "datestamp": "1718144949",
  3593. "security-coverage": {
  3594. "status": "covered",
  3595. "message": "Covered by Drupal's security advisory policy"
  3596. }
  3597. },
  3598. "branch-alias": {
  3599. "dev-8.x-3.x": "3.x-dev"
  3600. }
  3601. },
  3602. "notification-url": "https://packages.drupal.org/8/downloads",
  3603. "license": [
  3604. "GPL-2.0-or-later"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Kris Vanderwater (EclipseGc)",
  3609. "homepage": "https://www.drupal.org/u/eclipsegc",
  3610. "role": "Maintainer"
  3611. },
  3612. {
  3613. "name": "Jakob Perry (japerry)",
  3614. "homepage": "https://www.drupal.org/u/japerry",
  3615. "role": "Maintainer"
  3616. },
  3617. {
  3618. "name": "Tim Plunkett (tim.plunkett)",
  3619. "homepage": "https://www.drupal.org/u/timplunkett",
  3620. "role": "Maintainer"
  3621. },
  3622. {
  3623. "name": "James Gilliland (neclimdul)",
  3624. "homepage": "https://www.drupal.org/u/neclimdul",
  3625. "role": "Maintainer"
  3626. },
  3627. {
  3628. "name": "Daniel Wehner (dawehner)",
  3629. "homepage": "https://www.drupal.org/u/dawehner",
  3630. "role": "Maintainer"
  3631. },
  3632. {
  3633. "name": "joelpittet",
  3634. "homepage": "https://www.drupal.org/user/160302"
  3635. },
  3636. {
  3637. "name": "merlinofchaos",
  3638. "homepage": "https://www.drupal.org/user/26979"
  3639. },
  3640. {
  3641. "name": "neclimdul",
  3642. "homepage": "https://www.drupal.org/user/48673"
  3643. },
  3644. {
  3645. "name": "sdboyer",
  3646. "homepage": "https://www.drupal.org/user/146719"
  3647. },
  3648. {
  3649. "name": "sun",
  3650. "homepage": "https://www.drupal.org/user/54136"
  3651. },
  3652. {
  3653. "name": "tim.plunkett",
  3654. "homepage": "https://www.drupal.org/user/241634"
  3655. }
  3656. ],
  3657. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3658. "homepage": "https://www.drupal.org/project/ctools",
  3659. "support": {
  3660. "source": "https://git.drupalcode.org/project/ctools",
  3661. "issues": "https://www.drupal.org/project/issues/ctools"
  3662. }
  3663. },
  3664. {
  3665. "name": "drupal/date_range_formatter",
  3666. "version": "dev-9.0.x",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3670. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3671. },
  3672. "require": {
  3673. "drupal/core": "^8 || ^9 || ^10"
  3674. },
  3675. "type": "drupal-module",
  3676. "extra": {
  3677. "branch-alias": {
  3678. "dev-9.0.x": "9.0.x-dev"
  3679. },
  3680. "drupal": {
  3681. "version": "9.0.x-dev",
  3682. "datestamp": "1718887202",
  3683. "security-coverage": {
  3684. "status": "not-covered",
  3685. "message": "Dev releases are not covered by Drupal security advisories."
  3686. }
  3687. }
  3688. },
  3689. "notification-url": "https://packages.drupal.org/8/downloads",
  3690. "license": [
  3691. "GPL-2.0-or-later"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "maximpodorov",
  3696. "homepage": "https://www.drupal.org/user/515310"
  3697. },
  3698. {
  3699. "name": "sudishth",
  3700. "homepage": "https://www.drupal.org/user/1440562"
  3701. }
  3702. ],
  3703. "description": "Formats date ranges.",
  3704. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3705. "support": {
  3706. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3707. }
  3708. },
  3709. {
  3710. "name": "drupal/devel",
  3711. "version": "5.5.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://git.drupalcode.org/project/devel.git",
  3715. "reference": "5.5.0"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://ftp.drupal.org/files/projects/devel-5.5.0.zip",
  3720. "reference": "5.5.0",
  3721. "shasum": "b6f45c84ec31bc18817c7464b51e951dec73d5ce"
  3722. },
  3723. "require": {
  3724. "doctrine/common": "^2.7 || ^3.4",
  3725. "drupal/core": "^10.3 || ^11 || ^12",
  3726. "php": ">=8.3",
  3727. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3728. },
  3729. "conflict": {
  3730. "drupal/core": "<10.3",
  3731. "drush/drush": "<13.7.0"
  3732. },
  3733. "require-dev": {
  3734. "drupal/navigation_extra_tools": "1.0.x-dev",
  3735. "drush/drush": "^13",
  3736. "firephp/firephp-core": "^0.5.3"
  3737. },
  3738. "type": "drupal-module",
  3739. "extra": {
  3740. "drupal": {
  3741. "version": "5.5.0",
  3742. "datestamp": "1764211205",
  3743. "security-coverage": {
  3744. "status": "covered",
  3745. "message": "Covered by Drupal's security advisory policy"
  3746. }
  3747. }
  3748. },
  3749. "notification-url": "https://packages.drupal.org/8/downloads",
  3750. "license": [
  3751. "GPL-2.0-or-later"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "moshe weitzman",
  3756. "homepage": "https://www.drupal.org/user/23"
  3757. }
  3758. ],
  3759. "description": "Various blocks, pages, and functions for developers.",
  3760. "homepage": "https://www.drupal.org/project/devel",
  3761. "support": {
  3762. "source": "https://gitlab.com/drupalspoons/devel",
  3763. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3764. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3765. }
  3766. },
  3767. {
  3768. "name": "drupal/devel_kint_extras",
  3769. "version": "1.1.6",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3773. "reference": "1.1.6"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.6.zip",
  3778. "reference": "1.1.6",
  3779. "shasum": "b1bd34276f0e0bf924710f3c6a7feccff11f158b"
  3780. },
  3781. "require": {
  3782. "drupal/core": "^9 || ^10 || ^11",
  3783. "drupal/devel": "^5.4",
  3784. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3785. },
  3786. "type": "drupal-module",
  3787. "extra": {
  3788. "drupal": {
  3789. "version": "1.1.6",
  3790. "datestamp": "1759998789",
  3791. "security-coverage": {
  3792. "status": "covered",
  3793. "message": "Covered by Drupal's security advisory policy"
  3794. }
  3795. }
  3796. },
  3797. "notification-url": "https://packages.drupal.org/8/downloads",
  3798. "license": [
  3799. "GPL-2.0-or-later"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "Jan Chojnacki",
  3804. "homepage": "https://www.drupal.org/u/janchojnacki"
  3805. },
  3806. {
  3807. "name": "Other contributors",
  3808. "homepage": "https://www.drupal.org/node/3164492/committers"
  3809. }
  3810. ],
  3811. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3812. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3813. "support": {
  3814. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3815. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3816. "chat": "irc://irc.freenode.org/drupal-contribute"
  3817. }
  3818. },
  3819. {
  3820. "name": "drupal/email_registration",
  3821. "version": "1.4.0",
  3822. "source": {
  3823. "type": "git",
  3824. "url": "https://git.drupalcode.org/project/email_registration.git",
  3825. "reference": "8.x-1.4"
  3826. },
  3827. "dist": {
  3828. "type": "zip",
  3829. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3830. "reference": "8.x-1.4",
  3831. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3832. },
  3833. "require": {
  3834. "drupal/core": "^9.1 || ^10"
  3835. },
  3836. "conflict": {
  3837. "drupal/commerce": "<2.12"
  3838. },
  3839. "require-dev": {
  3840. "drupal/commerce": "^2.0",
  3841. "drupal/token": "*"
  3842. },
  3843. "type": "drupal-module",
  3844. "extra": {
  3845. "drupal": {
  3846. "version": "8.x-1.4",
  3847. "datestamp": "1700548925",
  3848. "security-coverage": {
  3849. "status": "covered",
  3850. "message": "Covered by Drupal's security advisory policy"
  3851. }
  3852. }
  3853. },
  3854. "notification-url": "https://packages.drupal.org/8/downloads",
  3855. "license": [
  3856. "GPL-2.0-or-later"
  3857. ],
  3858. "authors": [
  3859. {
  3860. "name": "Greg Knaddison (greggles)",
  3861. "homepage": "https://www.drupal.org/u/greggles",
  3862. "role": "Maintainer"
  3863. },
  3864. {
  3865. "name": "Andrey Postnikov (andypost)",
  3866. "homepage": "https://www.drupal.org/u/andypost",
  3867. "role": "Maintainer"
  3868. },
  3869. {
  3870. "name": "Chris Herberte",
  3871. "homepage": "https://www.drupal.org/u/chris-herberte",
  3872. "role": "Maintainer"
  3873. },
  3874. {
  3875. "name": "Moshe Weitzman (moshe weitzman)",
  3876. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3877. "role": "Maintainer"
  3878. },
  3879. {
  3880. "name": "grevil",
  3881. "homepage": "https://www.drupal.org/user/3668491"
  3882. },
  3883. {
  3884. "name": "moshe weitzman",
  3885. "homepage": "https://www.drupal.org/user/23"
  3886. }
  3887. ],
  3888. "description": "Allows users to register with an email address as their username.",
  3889. "homepage": "https://www.drupal.org/project/email_registration",
  3890. "support": {
  3891. "source": "https://git.drupalcode.org/project/email_registration",
  3892. "issues": "http://drupal.org/project/issues/email_registration"
  3893. }
  3894. },
  3895. {
  3896. "name": "drupal/embed",
  3897. "version": "1.10.0",
  3898. "source": {
  3899. "type": "git",
  3900. "url": "https://git.drupalcode.org/project/embed.git",
  3901. "reference": "8.x-1.10"
  3902. },
  3903. "dist": {
  3904. "type": "zip",
  3905. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  3906. "reference": "8.x-1.10",
  3907. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  3908. },
  3909. "require": {
  3910. "drupal/core": "^10.2 || ^11"
  3911. },
  3912. "require-dev": {
  3913. "drupal/ckeditor": "^1.0"
  3914. },
  3915. "type": "drupal-module",
  3916. "extra": {
  3917. "drupal": {
  3918. "version": "8.x-1.10",
  3919. "datestamp": "1737663032",
  3920. "security-coverage": {
  3921. "status": "covered",
  3922. "message": "Covered by Drupal's security advisory policy"
  3923. }
  3924. }
  3925. },
  3926. "notification-url": "https://packages.drupal.org/8/downloads",
  3927. "license": [
  3928. "GPL-2.0-or-later"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "cs_shadow",
  3933. "homepage": "https://www.drupal.org/user/2828287"
  3934. },
  3935. {
  3936. "name": "dave reid",
  3937. "homepage": "https://www.drupal.org/user/53892"
  3938. },
  3939. {
  3940. "name": "devin carlson",
  3941. "homepage": "https://www.drupal.org/user/290182"
  3942. },
  3943. {
  3944. "name": "Drupal Media Team",
  3945. "homepage": "https://www.drupal.org/user/3260690"
  3946. },
  3947. {
  3948. "name": "phenaproxima",
  3949. "homepage": "https://www.drupal.org/user/205645"
  3950. },
  3951. {
  3952. "name": "slashrsm",
  3953. "homepage": "https://www.drupal.org/user/744628"
  3954. }
  3955. ],
  3956. "description": "Provides a framework for different types of embeds in text editors.",
  3957. "homepage": "https://www.drupal.org/project/embed",
  3958. "support": {
  3959. "source": "https://git.drupalcode.org/project/embed"
  3960. }
  3961. },
  3962. {
  3963. "name": "drupal/entity_browser",
  3964. "version": "2.15.0",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3968. "reference": "8.x-2.15"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.15.zip",
  3973. "reference": "8.x-2.15",
  3974. "shasum": "86265fadf12f8c2eb4bc0dc813589efe8fa180a2"
  3975. },
  3976. "require": {
  3977. "drupal/core": "^10.2 || ^11"
  3978. },
  3979. "conflict": {
  3980. "drupal/media_entity": "1.*"
  3981. },
  3982. "require-dev": {
  3983. "drupal/embed": "^1.0",
  3984. "drupal/entity_embed": "^1.0",
  3985. "drupal/entity_reference_revisions": "^1.0",
  3986. "drupal/entityqueue": "^1.0",
  3987. "drupal/inline_entity_form": "^1 || ^3",
  3988. "drupal/paragraphs": "^1.0",
  3989. "drupal/search_api": "^1.0",
  3990. "drupal/token": "^1.0"
  3991. },
  3992. "type": "drupal-module",
  3993. "extra": {
  3994. "drupal": {
  3995. "version": "8.x-2.15",
  3996. "datestamp": "1756969160",
  3997. "security-coverage": {
  3998. "status": "covered",
  3999. "message": "Covered by Drupal's security advisory policy"
  4000. }
  4001. }
  4002. },
  4003. "notification-url": "https://packages.drupal.org/8/downloads",
  4004. "license": [
  4005. "GPL-2.0+"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Janez Urevc",
  4010. "homepage": "https://github.com/slashrsm",
  4011. "role": "Maintainer"
  4012. },
  4013. {
  4014. "name": "Primoz Hmeljak",
  4015. "homepage": "https://github.com/primsi",
  4016. "role": "Maintainer"
  4017. },
  4018. {
  4019. "name": "See other contributors",
  4020. "homepage": "https://www.drupal.org/node/1943336/committers",
  4021. "role": "contributor"
  4022. },
  4023. {
  4024. "name": "devin carlson",
  4025. "homepage": "https://www.drupal.org/user/290182"
  4026. },
  4027. {
  4028. "name": "Drupal Media Team",
  4029. "homepage": "https://www.drupal.org/user/3260690"
  4030. },
  4031. {
  4032. "name": "grevil",
  4033. "homepage": "https://www.drupal.org/user/3668491"
  4034. },
  4035. {
  4036. "name": "marcingy",
  4037. "homepage": "https://www.drupal.org/user/77320"
  4038. },
  4039. {
  4040. "name": "oknate",
  4041. "homepage": "https://www.drupal.org/user/471638"
  4042. },
  4043. {
  4044. "name": "primsi",
  4045. "homepage": "https://www.drupal.org/user/282629"
  4046. },
  4047. {
  4048. "name": "samuel.mortenson",
  4049. "homepage": "https://www.drupal.org/user/2582268"
  4050. },
  4051. {
  4052. "name": "slashrsm",
  4053. "homepage": "https://www.drupal.org/user/744628"
  4054. }
  4055. ],
  4056. "description": "Entity browsing and selecting component.",
  4057. "homepage": "https://drupal.org/project/entity_browser",
  4058. "support": {
  4059. "source": "https://git.drupalcode.org/project/entity_browser",
  4060. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4061. "irc": "irc://irc.freenode.org/drupal-contribute"
  4062. }
  4063. },
  4064. {
  4065. "name": "drupal/entity_browser_enhanced",
  4066. "version": "2.0.1",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4070. "reference": "2.0.1"
  4071. },
  4072. "dist": {
  4073. "type": "zip",
  4074. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4075. "reference": "2.0.1",
  4076. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4077. },
  4078. "require": {
  4079. "drupal/core": "^10 || ^11",
  4080. "drupal/entity_browser": "~2.0"
  4081. },
  4082. "type": "drupal-module",
  4083. "extra": {
  4084. "drupal": {
  4085. "version": "2.0.1",
  4086. "datestamp": "1719827338",
  4087. "security-coverage": {
  4088. "status": "covered",
  4089. "message": "Covered by Drupal's security advisory policy"
  4090. }
  4091. }
  4092. },
  4093. "notification-url": "https://packages.drupal.org/8/downloads",
  4094. "license": [
  4095. "GPL-2.0-or-later"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Vardot",
  4100. "homepage": "https://www.drupal.org/vardot",
  4101. "role": "Maintainer"
  4102. },
  4103. {
  4104. "name": "rajab natshah",
  4105. "homepage": "https://www.drupal.org/user/1414312"
  4106. }
  4107. ],
  4108. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4109. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4110. "support": {
  4111. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4112. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4113. }
  4114. },
  4115. {
  4116. "name": "drupal/entity_clone",
  4117. "version": "dev-2.x",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4121. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4122. },
  4123. "require": {
  4124. "drupal/core": "^9 || ^10 || ^11"
  4125. },
  4126. "require-dev": {
  4127. "drupal/entity_browser": "2.x-dev",
  4128. "drupal/entity_usage": "2.x-dev",
  4129. "drupal/paragraphs": "^1.0",
  4130. "drupal/search_api": "^1.0"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "branch-alias": {
  4135. "dev-2.x": "2.x-dev"
  4136. },
  4137. "drupal": {
  4138. "version": "2.1.0-beta1+3-dev",
  4139. "datestamp": "1748869926",
  4140. "security-coverage": {
  4141. "status": "not-covered",
  4142. "message": "Dev releases are not covered by Drupal security advisories."
  4143. }
  4144. }
  4145. },
  4146. "notification-url": "https://packages.drupal.org/8/downloads",
  4147. "license": [
  4148. "GPL-2.0-or-later"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "colan",
  4153. "homepage": "https://www.drupal.org/user/58704"
  4154. },
  4155. {
  4156. "name": "joevagyok",
  4157. "homepage": "https://www.drupal.org/user/2876343"
  4158. },
  4159. {
  4160. "name": "nickdickinsonwilde",
  4161. "homepage": "https://www.drupal.org/user/3094661"
  4162. },
  4163. {
  4164. "name": "rajeshreeputra",
  4165. "homepage": "https://www.drupal.org/user/3418561"
  4166. },
  4167. {
  4168. "name": "upchuk",
  4169. "homepage": "https://www.drupal.org/user/1885838"
  4170. },
  4171. {
  4172. "name": "vpeltot",
  4173. "homepage": "https://www.drupal.org/user/1361586"
  4174. }
  4175. ],
  4176. "description": "Add a clone action for all entities.",
  4177. "homepage": "https://drupal.org/project/entity_clone",
  4178. "support": {
  4179. "source": "https://git.drupalcode.org/project/entity_clone"
  4180. }
  4181. },
  4182. {
  4183. "name": "drupal/entity_reference_revisions",
  4184. "version": "1.14.0",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4188. "reference": "8.x-1.14"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.14.zip",
  4193. "reference": "8.x-1.14",
  4194. "shasum": "cb900e41124979a46da1912ff2b502270beda632"
  4195. },
  4196. "require": {
  4197. "drupal/core": "^10.2 || ^11"
  4198. },
  4199. "conflict": {
  4200. "drush/drush": "<12.5.1"
  4201. },
  4202. "require-dev": {
  4203. "drupal/diff": "^1 || ^2"
  4204. },
  4205. "type": "drupal-module",
  4206. "extra": {
  4207. "drupal": {
  4208. "version": "8.x-1.14",
  4209. "datestamp": "1767266825",
  4210. "security-coverage": {
  4211. "status": "covered",
  4212. "message": "Covered by Drupal's security advisory policy"
  4213. }
  4214. }
  4215. },
  4216. "notification-url": "https://packages.drupal.org/8/downloads",
  4217. "license": [
  4218. "GPL-2.0-or-later"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "berdir",
  4223. "homepage": "https://www.drupal.org/user/214652"
  4224. },
  4225. {
  4226. "name": "frans",
  4227. "homepage": "https://www.drupal.org/user/514222"
  4228. },
  4229. {
  4230. "name": "jeroen.b",
  4231. "homepage": "https://www.drupal.org/user/1853532"
  4232. },
  4233. {
  4234. "name": "miro_dietiker",
  4235. "homepage": "https://www.drupal.org/user/227761"
  4236. }
  4237. ],
  4238. "description": "Entity Reference Revisions",
  4239. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4240. "support": {
  4241. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4242. }
  4243. },
  4244. {
  4245. "name": "drupal/entity_type_clone",
  4246. "version": "4.0.6",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4250. "reference": "4.0.6"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.6.zip",
  4255. "reference": "4.0.6",
  4256. "shasum": "e87d8473151c9a28497d27148a38f44f073773da"
  4257. },
  4258. "require": {
  4259. "drupal/core": "^8 || ^9 || ^10 || ^11"
  4260. },
  4261. "type": "drupal-module",
  4262. "extra": {
  4263. "drupal": {
  4264. "version": "4.0.6",
  4265. "datestamp": "1758390322",
  4266. "security-coverage": {
  4267. "status": "covered",
  4268. "message": "Covered by Drupal's security advisory policy"
  4269. }
  4270. }
  4271. },
  4272. "notification-url": "https://packages.drupal.org/8/downloads",
  4273. "license": [
  4274. "GPL-2.0-or-later"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "ajay_reddy",
  4279. "homepage": "https://www.drupal.org/user/3261994"
  4280. },
  4281. {
  4282. "name": "vuil",
  4283. "homepage": "https://www.drupal.org/user/3568458"
  4284. }
  4285. ],
  4286. "description": "This module provide option to clone entity types and role.",
  4287. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4288. "support": {
  4289. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4290. }
  4291. },
  4292. {
  4293. "name": "drupal/extlink",
  4294. "version": "2.0.5",
  4295. "source": {
  4296. "type": "git",
  4297. "url": "https://git.drupalcode.org/project/extlink.git",
  4298. "reference": "2.0.5"
  4299. },
  4300. "dist": {
  4301. "type": "zip",
  4302. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.5.zip",
  4303. "reference": "2.0.5",
  4304. "shasum": "3b2f73f60483ebf6e7f374f7340b19f228386cca"
  4305. },
  4306. "require": {
  4307. "drupal/core": "^10 || ^11"
  4308. },
  4309. "type": "drupal-module",
  4310. "extra": {
  4311. "drupal": {
  4312. "version": "2.0.5",
  4313. "datestamp": "1757349140",
  4314. "security-coverage": {
  4315. "status": "covered",
  4316. "message": "Covered by Drupal's security advisory policy"
  4317. }
  4318. }
  4319. },
  4320. "notification-url": "https://packages.drupal.org/8/downloads",
  4321. "license": [
  4322. "GPL-2.0-or-later"
  4323. ],
  4324. "authors": [
  4325. {
  4326. "name": "Nate Lampton",
  4327. "homepage": "https://www.drupal.org/u/quicksketch",
  4328. "role": "Maintainer"
  4329. },
  4330. {
  4331. "name": "Lachlan Ennis",
  4332. "homepage": "https://www.drupal.org/u/elachlan",
  4333. "role": "Maintainer"
  4334. },
  4335. {
  4336. "name": "Neslee Canil Pinto",
  4337. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4338. "role": "Maintainer"
  4339. },
  4340. {
  4341. "name": "quicksketch",
  4342. "homepage": "https://www.drupal.org/user/35821"
  4343. },
  4344. {
  4345. "name": "smustgrave",
  4346. "homepage": "https://www.drupal.org/user/3252890"
  4347. }
  4348. ],
  4349. "description": "Modify behavior and appearance of external links.",
  4350. "homepage": "https://www.drupal.org/project/extlink",
  4351. "keywords": [
  4352. "Drupal",
  4353. "External Links"
  4354. ],
  4355. "support": {
  4356. "source": "https://git.drupalcode.org/project/extlink",
  4357. "issues": "https://www.drupal.org/project/issues/extlink"
  4358. }
  4359. },
  4360. {
  4361. "name": "drupal/field_group",
  4362. "version": "3.6.0",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://git.drupalcode.org/project/field_group.git",
  4366. "reference": "8.x-3.6"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4371. "reference": "8.x-3.6",
  4372. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4373. },
  4374. "require": {
  4375. "drupal/core": "^9.2 || ^10 || ^11"
  4376. },
  4377. "require-dev": {
  4378. "drupal/jquery_ui_accordion": "*"
  4379. },
  4380. "type": "drupal-module",
  4381. "extra": {
  4382. "drupal": {
  4383. "version": "8.x-3.6",
  4384. "datestamp": "1722672510",
  4385. "security-coverage": {
  4386. "status": "covered",
  4387. "message": "Covered by Drupal's security advisory policy"
  4388. }
  4389. }
  4390. },
  4391. "notification-url": "https://packages.drupal.org/8/downloads",
  4392. "license": [
  4393. "GPL-2.0-or-later"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "anybody",
  4398. "homepage": "https://www.drupal.org/user/291091"
  4399. },
  4400. {
  4401. "name": "grevil",
  4402. "homepage": "https://www.drupal.org/user/3668491"
  4403. },
  4404. {
  4405. "name": "hydra",
  4406. "homepage": "https://www.drupal.org/user/647364"
  4407. },
  4408. {
  4409. "name": "joevagyok",
  4410. "homepage": "https://www.drupal.org/user/2876343"
  4411. },
  4412. {
  4413. "name": "jyve",
  4414. "homepage": "https://www.drupal.org/user/591438"
  4415. },
  4416. {
  4417. "name": "nils.destoop",
  4418. "homepage": "https://www.drupal.org/user/361625"
  4419. },
  4420. {
  4421. "name": "Stalski",
  4422. "homepage": "https://www.drupal.org/user/322618"
  4423. },
  4424. {
  4425. "name": "swentel",
  4426. "homepage": "https://www.drupal.org/user/107403"
  4427. }
  4428. ],
  4429. "description": "Provides the field_group module.",
  4430. "homepage": "https://www.drupal.org/project/field_group",
  4431. "support": {
  4432. "source": "https://git.drupalcode.org/project/field_group",
  4433. "issues": "https://www.drupal.org/project/issues/field_group"
  4434. }
  4435. },
  4436. {
  4437. "name": "drupal/filter_perms",
  4438. "version": "2.0.2",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4442. "reference": "2.0.2"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4447. "reference": "2.0.2",
  4448. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4449. },
  4450. "require": {
  4451. "drupal/core": "^10.3 || ^11 || ^12"
  4452. },
  4453. "type": "drupal-module",
  4454. "extra": {
  4455. "drupal": {
  4456. "version": "2.0.2",
  4457. "datestamp": "1745993059",
  4458. "security-coverage": {
  4459. "status": "covered",
  4460. "message": "Covered by Drupal's security advisory policy"
  4461. }
  4462. }
  4463. },
  4464. "notification-url": "https://packages.drupal.org/8/downloads",
  4465. "license": [
  4466. "GPL-2.0+"
  4467. ],
  4468. "authors": [
  4469. {
  4470. "name": "cyu",
  4471. "homepage": "https://www.drupal.org/user/202205"
  4472. },
  4473. {
  4474. "name": "deekayen",
  4475. "homepage": "https://www.drupal.org/user/972"
  4476. },
  4477. {
  4478. "name": "ivavictoria",
  4479. "homepage": "https://www.drupal.org/user/3061533"
  4480. },
  4481. {
  4482. "name": "justcaldwell",
  4483. "homepage": "https://www.drupal.org/user/290069"
  4484. },
  4485. {
  4486. "name": "mgbellaire",
  4487. "homepage": "https://www.drupal.org/user/1831932"
  4488. },
  4489. {
  4490. "name": "scott_euser",
  4491. "homepage": "https://www.drupal.org/user/3267594"
  4492. },
  4493. {
  4494. "name": "willzyx",
  4495. "homepage": "https://www.drupal.org/user/1043862"
  4496. }
  4497. ],
  4498. "description": "Provides role and module filters to simplify the user permissions page.",
  4499. "homepage": "https://www.drupal.org/project/filter_perms",
  4500. "support": {
  4501. "source": "http://cgit.drupalcode.org/filter_perms",
  4502. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4503. }
  4504. },
  4505. {
  4506. "name": "drupal/formatter_suite",
  4507. "version": "2.2.0",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4511. "reference": "2.2.0"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.2.0.zip",
  4516. "reference": "2.2.0",
  4517. "shasum": "d87d11e61d6dbd76da3a5ed0aea8c25505b31c8b"
  4518. },
  4519. "require": {
  4520. "drupal/core": "^10.4 || ^11.1"
  4521. },
  4522. "type": "drupal-module",
  4523. "extra": {
  4524. "drupal": {
  4525. "version": "2.2.0",
  4526. "datestamp": "1768923220",
  4527. "security-coverage": {
  4528. "status": "covered",
  4529. "message": "Covered by Drupal's security advisory policy"
  4530. }
  4531. }
  4532. },
  4533. "notification-url": "https://packages.drupal.org/8/downloads",
  4534. "license": [
  4535. "GPL-2.0-or-later"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "cyoun",
  4540. "homepage": "https://www.drupal.org/user/3819850"
  4541. },
  4542. {
  4543. "name": "liam morland",
  4544. "homepage": "https://www.drupal.org/user/493050"
  4545. },
  4546. {
  4547. "name": "toamit",
  4548. "homepage": "https://www.drupal.org/user/2820523"
  4549. }
  4550. ],
  4551. "description": "Field formaters to present numbers, text, links, etc.",
  4552. "homepage": "https://www.drupal.org/project/formatter_suite",
  4553. "keywords": [
  4554. "Drupal",
  4555. "Format"
  4556. ],
  4557. "support": {
  4558. "source": "http://cgit.drupalcode.org/formatter_suite",
  4559. "issues": "http://drupal.org/project/issues/formatter_suite"
  4560. }
  4561. },
  4562. {
  4563. "name": "drupal/geocoder",
  4564. "version": "4.30.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://git.drupalcode.org/project/geocoder.git",
  4568. "reference": "8.x-4.30"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.30.zip",
  4573. "reference": "8.x-4.30",
  4574. "shasum": "701115afdf7435ab2ac8841e1d73ad531b465bc0"
  4575. },
  4576. "require": {
  4577. "davedevelopment/stiphle": "^0.9.2",
  4578. "drupal/core": "^9.5 || ^10 || ^11",
  4579. "php": ">=7.3.0",
  4580. "php-http/guzzle7-adapter": "^1.0",
  4581. "php-http/message": "^1.6",
  4582. "willdurand/geocoder": "^4.0|^5.0"
  4583. },
  4584. "require-dev": {
  4585. "drupal/address": "^1.11 || ^2.0",
  4586. "drupal/geocoder_field": "*",
  4587. "drupal/geofield": "^1.52",
  4588. "geo6/geocoder-php-addok-provider": "^1.0",
  4589. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4590. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4591. "geo6/geocoder-php-spw-provider": "^1.0",
  4592. "geocoder-php/arcgis-online-provider": "^4.0",
  4593. "geocoder-php/azure-maps-provider": "^1.2",
  4594. "geocoder-php/bing-maps-provider": "^4.0",
  4595. "geocoder-php/free-geoip-provider": "^4.1",
  4596. "geocoder-php/geo-plugin-provider": "^4.0",
  4597. "geocoder-php/geonames-provider": "^4.1",
  4598. "geocoder-php/google-maps-provider": "^4.2",
  4599. "geocoder-php/graphhopper-provider": "^0.5.0",
  4600. "geocoder-php/host-ip-provider": "^4.0",
  4601. "geocoder-php/ip-info-db-provider": "^4.0",
  4602. "geocoder-php/locationiq-provider": "^1.5",
  4603. "geocoder-php/mapbox-provider": "^1.0",
  4604. "geocoder-php/mapquest-provider": "^4.0",
  4605. "geocoder-php/maptiler-provider": "^1.0",
  4606. "geocoder-php/maxmind-provider": "^4.1",
  4607. "geocoder-php/nominatim-provider": "^5.0",
  4608. "geocoder-php/open-cage-provider": "^4.0",
  4609. "geocoder-php/openrouteservice-provider": "^1.0",
  4610. "geocoder-php/pelias-provider": "^1.1",
  4611. "geocoder-php/photon-provider": "^0.6",
  4612. "geocoder-php/tomtom-provider": "^4.0",
  4613. "geocoder-php/yandex-provider": "^4.0",
  4614. "systonic/ban-france-provider": "^1.0"
  4615. },
  4616. "type": "drupal-module",
  4617. "extra": {
  4618. "drupal": {
  4619. "version": "8.x-4.30",
  4620. "datestamp": "1753886741",
  4621. "security-coverage": {
  4622. "status": "covered",
  4623. "message": "Covered by Drupal's security advisory policy"
  4624. }
  4625. }
  4626. },
  4627. "notification-url": "https://packages.drupal.org/8/downloads",
  4628. "license": [
  4629. "GPL-2.0-or-later"
  4630. ],
  4631. "authors": [
  4632. {
  4633. "name": "Pol Dellaiera (@drupol)",
  4634. "homepage": "https://www.drupal.org/u/pol",
  4635. "role": "Maintainer"
  4636. },
  4637. {
  4638. "name": "Italo Mairo (@itamair)",
  4639. "homepage": "https://www.drupal.org/u/itamair",
  4640. "role": "Co-maintainer"
  4641. },
  4642. {
  4643. "name": "michaelfavia",
  4644. "homepage": "https://www.drupal.org/user/49137"
  4645. },
  4646. {
  4647. "name": "poker10",
  4648. "homepage": "https://www.drupal.org/user/272316"
  4649. }
  4650. ],
  4651. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4652. "homepage": "https://drupal.org/project/geocoder",
  4653. "support": {
  4654. "source": "https://git.drupalcode.org/project/geocoder",
  4655. "issues": "https://drupal.org/project/issues/geocoder",
  4656. "irc": "irc://irc.freenode.org/drupal-geo"
  4657. }
  4658. },
  4659. {
  4660. "name": "drupal/geofield",
  4661. "version": "1.67.0",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://git.drupalcode.org/project/geofield.git",
  4665. "reference": "8.x-1.67"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.67.zip",
  4670. "reference": "8.x-1.67",
  4671. "shasum": "c73bf312f3244be23d05caa57086f44310b0b4df"
  4672. },
  4673. "require": {
  4674. "drupal/core": "^9 || ^10 || ^11",
  4675. "itamair/geophp": "^1.6"
  4676. },
  4677. "require-dev": {
  4678. "drupal/diff": "^1.3",
  4679. "drupal/feeds": "^3.0@beta"
  4680. },
  4681. "type": "drupal-module",
  4682. "extra": {
  4683. "drupal": {
  4684. "version": "8.x-1.67",
  4685. "datestamp": "1768051870",
  4686. "security-coverage": {
  4687. "status": "covered",
  4688. "message": "Covered by Drupal's security advisory policy"
  4689. }
  4690. }
  4691. },
  4692. "notification-url": "https://packages.drupal.org/8/downloads",
  4693. "license": [
  4694. "GPL-2.0+"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Italo Mairo",
  4699. "homepage": "https://www.drupal.org/u/itamair",
  4700. "role": "Drupal 8+ Maintainer"
  4701. },
  4702. {
  4703. "name": "Brandon Morrison",
  4704. "homepage": "https://www.drupal.org/u/brandonian",
  4705. "role": "Drupal 7 Maintainer"
  4706. },
  4707. {
  4708. "name": "Pablo López",
  4709. "homepage": "https://www.drupal.org/u/plopesc",
  4710. "role": "Drupal 7 Maintainer"
  4711. }
  4712. ],
  4713. "description": "Stores geographic and location data (points, lines, and polygons).",
  4714. "homepage": "https://www.drupal.org/project/geofield",
  4715. "support": {
  4716. "source": "https://git.drupalcode.org/project/geofield",
  4717. "issues": "https://www.drupal.org/project/issues/geofield",
  4718. "irc": "irc://irc.freenode.org/drupal-contribute"
  4719. }
  4720. },
  4721. {
  4722. "name": "drupal/honeypot",
  4723. "version": "2.2.2",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://git.drupalcode.org/project/honeypot.git",
  4727. "reference": "2.2.2"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4732. "reference": "2.2.2",
  4733. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4734. },
  4735. "require": {
  4736. "drupal/core": "^10.3 || ^11"
  4737. },
  4738. "require-dev": {
  4739. "drupal/rules": "^4.0",
  4740. "drupal/webform": "^6.2"
  4741. },
  4742. "type": "drupal-module",
  4743. "extra": {
  4744. "drupal": {
  4745. "version": "2.2.2",
  4746. "datestamp": "1739854442",
  4747. "security-coverage": {
  4748. "status": "covered",
  4749. "message": "Covered by Drupal's security advisory policy"
  4750. }
  4751. }
  4752. },
  4753. "notification-url": "https://packages.drupal.org/8/downloads",
  4754. "license": [
  4755. "GPL-2.0-or-later"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Jeff Geerling",
  4760. "homepage": "https://www.drupal.org/user/389011",
  4761. "email": "geerlingguy@mac.com"
  4762. },
  4763. {
  4764. "name": "manuel garcia",
  4765. "homepage": "https://www.drupal.org/user/213194"
  4766. },
  4767. {
  4768. "name": "tr",
  4769. "homepage": "https://www.drupal.org/user/202830"
  4770. },
  4771. {
  4772. "name": "vijaycs85",
  4773. "homepage": "https://www.drupal.org/user/93488"
  4774. }
  4775. ],
  4776. "description": "Mitigates spam form submissions using the honeypot method.",
  4777. "homepage": "https://www.drupal.org/project/honeypot",
  4778. "keywords": [
  4779. "deterrent",
  4780. "form",
  4781. "honeypot",
  4782. "honeytrap",
  4783. "php",
  4784. "spam"
  4785. ],
  4786. "support": {
  4787. "source": "https://git.drupalcode.org/project/honeypot",
  4788. "issues": "https://www.drupal.org/project/issues/honeypot"
  4789. }
  4790. },
  4791. {
  4792. "name": "drupal/image_delta_formatter",
  4793. "version": "1.3.0",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4797. "reference": "8.x-1.3"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4802. "reference": "8.x-1.3",
  4803. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4804. },
  4805. "require": {
  4806. "drupal/core": "^10 || ^11"
  4807. },
  4808. "type": "drupal-module",
  4809. "extra": {
  4810. "drupal": {
  4811. "version": "8.x-1.3",
  4812. "datestamp": "1738516937",
  4813. "security-coverage": {
  4814. "status": "covered",
  4815. "message": "Covered by Drupal's security advisory policy"
  4816. }
  4817. }
  4818. },
  4819. "notification-url": "https://packages.drupal.org/8/downloads",
  4820. "license": [
  4821. "GPL-2.0-or-later"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "bojanz",
  4826. "homepage": "https://www.drupal.org/user/86106"
  4827. },
  4828. {
  4829. "name": "fgm",
  4830. "homepage": "https://www.drupal.org/user/27985"
  4831. },
  4832. {
  4833. "name": "jsacksick",
  4834. "homepage": "https://www.drupal.org/user/972218"
  4835. }
  4836. ],
  4837. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4838. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4839. "support": {
  4840. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4841. }
  4842. },
  4843. {
  4844. "name": "drupal/image_field_caption",
  4845. "version": "3.0.1",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4849. "reference": "3.0.1"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://ftp.drupal.org/files/projects/image_field_caption-3.0.1.zip",
  4854. "reference": "3.0.1",
  4855. "shasum": "e84c3b9534d5824b6a67885187b1c24d4eccaf60"
  4856. },
  4857. "require": {
  4858. "drupal/core": "^10 || ^11"
  4859. },
  4860. "type": "drupal-module",
  4861. "extra": {
  4862. "drupal": {
  4863. "version": "3.0.1",
  4864. "datestamp": "1739400507",
  4865. "security-coverage": {
  4866. "status": "covered",
  4867. "message": "Covered by Drupal's security advisory policy"
  4868. }
  4869. }
  4870. },
  4871. "notification-url": "https://packages.drupal.org/8/downloads",
  4872. "license": [
  4873. "GPL-2.0+"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "awm",
  4878. "homepage": "https://www.drupal.org/user/1059398"
  4879. },
  4880. {
  4881. "name": "foxy-vikvik",
  4882. "homepage": "https://www.drupal.org/user/3706169"
  4883. },
  4884. {
  4885. "name": "hanoii",
  4886. "homepage": "https://www.drupal.org/user/23157"
  4887. },
  4888. {
  4889. "name": "ironsizide",
  4890. "homepage": "https://www.drupal.org/user/787980"
  4891. },
  4892. {
  4893. "name": "istryker",
  4894. "homepage": "https://www.drupal.org/user/303676"
  4895. },
  4896. {
  4897. "name": "robloach",
  4898. "homepage": "https://www.drupal.org/user/61114"
  4899. },
  4900. {
  4901. "name": "tyler.frankenstein",
  4902. "homepage": "https://www.drupal.org/user/150680"
  4903. }
  4904. ],
  4905. "description": "Add caption to image field.",
  4906. "homepage": "https://www.drupal.org/project/image_field_caption",
  4907. "support": {
  4908. "source": "https://git.drupalcode.org/project/image_field_caption",
  4909. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4910. }
  4911. },
  4912. {
  4913. "name": "drupal/inline_entity_form",
  4914. "version": "1.0.0-rc17",
  4915. "source": {
  4916. "type": "git",
  4917. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4918. "reference": "8.x-1.0-rc17"
  4919. },
  4920. "dist": {
  4921. "type": "zip",
  4922. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  4923. "reference": "8.x-1.0-rc17",
  4924. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  4925. },
  4926. "require": {
  4927. "drupal/core": "^8.8 || ^9 || ^10",
  4928. "php": ">=7.1"
  4929. },
  4930. "require-dev": {
  4931. "drupal/entity_reference_revisions": "^1.0"
  4932. },
  4933. "type": "drupal-module",
  4934. "extra": {
  4935. "drupal": {
  4936. "version": "8.x-1.0-rc17",
  4937. "datestamp": "1703020130",
  4938. "security-coverage": {
  4939. "status": "not-covered",
  4940. "message": "RC releases are not covered by Drupal security advisories."
  4941. }
  4942. }
  4943. },
  4944. "notification-url": "https://packages.drupal.org/8/downloads",
  4945. "license": [
  4946. "GPL-2.0-or-later"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "bojanz",
  4951. "homepage": "https://www.drupal.org/user/86106"
  4952. },
  4953. {
  4954. "name": "centarro",
  4955. "homepage": "https://www.drupal.org/user/3661446"
  4956. },
  4957. {
  4958. "name": "dawehner",
  4959. "homepage": "https://www.drupal.org/user/99340"
  4960. },
  4961. {
  4962. "name": "dww",
  4963. "homepage": "https://www.drupal.org/user/46549"
  4964. },
  4965. {
  4966. "name": "geek-merlin",
  4967. "homepage": "https://www.drupal.org/user/229048"
  4968. },
  4969. {
  4970. "name": "joachim",
  4971. "homepage": "https://www.drupal.org/user/107701"
  4972. },
  4973. {
  4974. "name": "jsacksick",
  4975. "homepage": "https://www.drupal.org/user/972218"
  4976. },
  4977. {
  4978. "name": "oknate",
  4979. "homepage": "https://www.drupal.org/user/471638"
  4980. },
  4981. {
  4982. "name": "ram4nd",
  4983. "homepage": "https://www.drupal.org/user/601534"
  4984. },
  4985. {
  4986. "name": "rszrama",
  4987. "homepage": "https://www.drupal.org/user/49344"
  4988. },
  4989. {
  4990. "name": "slashrsm",
  4991. "homepage": "https://www.drupal.org/user/744628"
  4992. },
  4993. {
  4994. "name": "webflo",
  4995. "homepage": "https://www.drupal.org/user/254778"
  4996. }
  4997. ],
  4998. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4999. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5000. "support": {
  5001. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5002. }
  5003. },
  5004. {
  5005. "name": "drupal/jquery_ui",
  5006. "version": "1.8.0",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5010. "reference": "8.x-1.8"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.8.zip",
  5015. "reference": "8.x-1.8",
  5016. "shasum": "a53e99216a81d1e35fa357885656a2cf420f1a6a"
  5017. },
  5018. "require": {
  5019. "drupal/core": "^9.2 || ^10 || ^11"
  5020. },
  5021. "type": "drupal-module",
  5022. "extra": {
  5023. "drupal": {
  5024. "version": "8.x-1.8",
  5025. "datestamp": "1758954737",
  5026. "security-coverage": {
  5027. "status": "covered",
  5028. "message": "Covered by Drupal's security advisory policy"
  5029. }
  5030. }
  5031. },
  5032. "notification-url": "https://packages.drupal.org/8/downloads",
  5033. "license": [
  5034. "GPL-2.0-or-later"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "bnjmnm",
  5039. "homepage": "https://www.drupal.org/user/2369194"
  5040. },
  5041. {
  5042. "name": "jjeff",
  5043. "homepage": "https://www.drupal.org/user/17190"
  5044. },
  5045. {
  5046. "name": "lauriii",
  5047. "homepage": "https://www.drupal.org/user/1078742"
  5048. },
  5049. {
  5050. "name": "litwol",
  5051. "homepage": "https://www.drupal.org/user/78134"
  5052. },
  5053. {
  5054. "name": "mfb",
  5055. "homepage": "https://www.drupal.org/user/12302"
  5056. },
  5057. {
  5058. "name": "mfer",
  5059. "homepage": "https://www.drupal.org/user/25701"
  5060. },
  5061. {
  5062. "name": "mikelutz",
  5063. "homepage": "https://www.drupal.org/user/2972409"
  5064. },
  5065. {
  5066. "name": "nod_",
  5067. "homepage": "https://www.drupal.org/user/598310"
  5068. },
  5069. {
  5070. "name": "phenaproxima",
  5071. "homepage": "https://www.drupal.org/user/205645"
  5072. },
  5073. {
  5074. "name": "rajeshreeputra",
  5075. "homepage": "https://www.drupal.org/user/3418561"
  5076. },
  5077. {
  5078. "name": "robloach",
  5079. "homepage": "https://www.drupal.org/user/61114"
  5080. },
  5081. {
  5082. "name": "sun",
  5083. "homepage": "https://www.drupal.org/user/54136"
  5084. },
  5085. {
  5086. "name": "webchick",
  5087. "homepage": "https://www.drupal.org/user/24967"
  5088. },
  5089. {
  5090. "name": "wim leers",
  5091. "homepage": "https://www.drupal.org/user/99777"
  5092. },
  5093. {
  5094. "name": "zrpnr",
  5095. "homepage": "https://www.drupal.org/user/1448368"
  5096. }
  5097. ],
  5098. "description": "Provides jQuery UI library.",
  5099. "homepage": "https://www.drupal.org/project/jquery_ui",
  5100. "support": {
  5101. "source": "https://git.drupalcode.org/project/jquery_ui"
  5102. }
  5103. },
  5104. {
  5105. "name": "drupal/jquery_ui_datepicker",
  5106. "version": "2.1.1",
  5107. "source": {
  5108. "type": "git",
  5109. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5110. "reference": "2.1.1"
  5111. },
  5112. "dist": {
  5113. "type": "zip",
  5114. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5115. "reference": "2.1.1",
  5116. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5117. },
  5118. "require": {
  5119. "drupal/core": "^9.2 || ^10 || ^11",
  5120. "drupal/jquery_ui": "^1.7"
  5121. },
  5122. "type": "drupal-module",
  5123. "extra": {
  5124. "drupal": {
  5125. "version": "2.1.1",
  5126. "datestamp": "1730932612",
  5127. "security-coverage": {
  5128. "status": "covered",
  5129. "message": "Covered by Drupal's security advisory policy"
  5130. }
  5131. }
  5132. },
  5133. "notification-url": "https://packages.drupal.org/8/downloads",
  5134. "license": [
  5135. "GPL-2.0-or-later"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "bnjmnm",
  5140. "homepage": "https://www.drupal.org/user/2369194"
  5141. },
  5142. {
  5143. "name": "jrockowitz",
  5144. "homepage": "https://www.drupal.org/user/371407"
  5145. },
  5146. {
  5147. "name": "lauriii",
  5148. "homepage": "https://www.drupal.org/user/1078742"
  5149. },
  5150. {
  5151. "name": "nod_",
  5152. "homepage": "https://www.drupal.org/user/598310"
  5153. },
  5154. {
  5155. "name": "phenaproxima",
  5156. "homepage": "https://www.drupal.org/user/205645"
  5157. },
  5158. {
  5159. "name": "zrpnr",
  5160. "homepage": "https://www.drupal.org/user/1448368"
  5161. }
  5162. ],
  5163. "description": "Provides jQuery UI Datepicker library.",
  5164. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5165. "support": {
  5166. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5167. }
  5168. },
  5169. {
  5170. "name": "drupal/jquery_ui_draggable",
  5171. "version": "2.1.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5175. "reference": "2.1.0"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5180. "reference": "2.1.0",
  5181. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5182. },
  5183. "require": {
  5184. "drupal/core": "^9.2 || ^10 || ^11",
  5185. "drupal/jquery_ui": "^1.7"
  5186. },
  5187. "type": "drupal-module",
  5188. "extra": {
  5189. "drupal": {
  5190. "version": "2.1.0",
  5191. "datestamp": "1717015492",
  5192. "security-coverage": {
  5193. "status": "covered",
  5194. "message": "Covered by Drupal's security advisory policy"
  5195. }
  5196. }
  5197. },
  5198. "notification-url": "https://packages.drupal.org/8/downloads",
  5199. "license": [
  5200. "GPL-2.0-or-later"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "bnjmnm",
  5205. "homepage": "https://www.drupal.org/user/2369194"
  5206. },
  5207. {
  5208. "name": "lauriii",
  5209. "homepage": "https://www.drupal.org/user/1078742"
  5210. },
  5211. {
  5212. "name": "zrpnr",
  5213. "homepage": "https://www.drupal.org/user/1448368"
  5214. }
  5215. ],
  5216. "description": "Provides jQuery UI Draggable library.",
  5217. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5218. "support": {
  5219. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5220. }
  5221. },
  5222. {
  5223. "name": "drupal/jquery_ui_droppable",
  5224. "version": "2.1.0",
  5225. "source": {
  5226. "type": "git",
  5227. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5228. "reference": "2.1.0"
  5229. },
  5230. "dist": {
  5231. "type": "zip",
  5232. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5233. "reference": "2.1.0",
  5234. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5235. },
  5236. "require": {
  5237. "drupal/core": "^9.2 || ^10 || ^11",
  5238. "drupal/jquery_ui": "^1.7",
  5239. "drupal/jquery_ui_draggable": "^2.1"
  5240. },
  5241. "type": "drupal-module",
  5242. "extra": {
  5243. "drupal": {
  5244. "version": "2.1.0",
  5245. "datestamp": "1717031391",
  5246. "security-coverage": {
  5247. "status": "covered",
  5248. "message": "Covered by Drupal's security advisory policy"
  5249. }
  5250. }
  5251. },
  5252. "notification-url": "https://packages.drupal.org/8/downloads",
  5253. "license": [
  5254. "GPL-2.0-or-later"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "bnjmnm",
  5259. "homepage": "https://www.drupal.org/user/2369194"
  5260. },
  5261. {
  5262. "name": "lauriii",
  5263. "homepage": "https://www.drupal.org/user/1078742"
  5264. },
  5265. {
  5266. "name": "zrpnr",
  5267. "homepage": "https://www.drupal.org/user/1448368"
  5268. }
  5269. ],
  5270. "description": "Provides jQuery UI Droppable library.",
  5271. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5272. "support": {
  5273. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5274. }
  5275. },
  5276. {
  5277. "name": "drupal/jquery_ui_slider",
  5278. "version": "2.1.0",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5282. "reference": "2.1.0"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5287. "reference": "2.1.0",
  5288. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5289. },
  5290. "require": {
  5291. "drupal/core": "^9.2 || ^10 || ^11",
  5292. "drupal/jquery_ui": "^1.7"
  5293. },
  5294. "type": "drupal-module",
  5295. "extra": {
  5296. "drupal": {
  5297. "version": "2.1.0",
  5298. "datestamp": "1717031321",
  5299. "security-coverage": {
  5300. "status": "covered",
  5301. "message": "Covered by Drupal's security advisory policy"
  5302. }
  5303. }
  5304. },
  5305. "notification-url": "https://packages.drupal.org/8/downloads",
  5306. "license": [
  5307. "GPL-2.0-or-later"
  5308. ],
  5309. "authors": [
  5310. {
  5311. "name": "bnjmnm",
  5312. "homepage": "https://www.drupal.org/user/2369194"
  5313. },
  5314. {
  5315. "name": "lauriii",
  5316. "homepage": "https://www.drupal.org/user/1078742"
  5317. },
  5318. {
  5319. "name": "zrpnr",
  5320. "homepage": "https://www.drupal.org/user/1448368"
  5321. }
  5322. ],
  5323. "description": "Provides jQuery UI Slider library.",
  5324. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5325. "support": {
  5326. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5327. }
  5328. },
  5329. {
  5330. "name": "drupal/jquery_ui_touch_punch",
  5331. "version": "1.1.1",
  5332. "source": {
  5333. "type": "git",
  5334. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5335. "reference": "1.1.1"
  5336. },
  5337. "dist": {
  5338. "type": "zip",
  5339. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5340. "reference": "1.1.1",
  5341. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5342. },
  5343. "require": {
  5344. "drupal/core": "^9.2 || ^10 || ^11",
  5345. "drupal/jquery_ui": "^1.0",
  5346. "politsin/jquery-ui-touch-punch": "^1.0"
  5347. },
  5348. "type": "drupal-module",
  5349. "extra": {
  5350. "drupal": {
  5351. "version": "1.1.1",
  5352. "datestamp": "1717663479",
  5353. "security-coverage": {
  5354. "status": "covered",
  5355. "message": "Covered by Drupal's security advisory policy"
  5356. }
  5357. }
  5358. },
  5359. "notification-url": "https://packages.drupal.org/8/downloads",
  5360. "license": [
  5361. "GPL-2.0-or-later"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Naveen Valecha",
  5366. "homepage": "https://drupal.org/u/naveenvalecha",
  5367. "role": "Maintainer"
  5368. },
  5369. {
  5370. "name": "naveenvalecha",
  5371. "homepage": "https://www.drupal.org/user/2665733"
  5372. }
  5373. ],
  5374. "description": "Provides jQuery UI Touch Punch library.",
  5375. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5376. "keywords": [
  5377. "Drupal",
  5378. "jquery_ui_touch_punch"
  5379. ],
  5380. "support": {
  5381. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5382. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5383. }
  5384. },
  5385. {
  5386. "name": "drupal/js_cookie",
  5387. "version": "1.0.1",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5391. "reference": "1.0.1"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5396. "reference": "1.0.1",
  5397. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5398. },
  5399. "require": {
  5400. "drupal/core": "^9 || ^10 || ^11"
  5401. },
  5402. "type": "drupal-module",
  5403. "extra": {
  5404. "drupal": {
  5405. "version": "1.0.1",
  5406. "datestamp": "1693951097",
  5407. "security-coverage": {
  5408. "status": "covered",
  5409. "message": "Covered by Drupal's security advisory policy"
  5410. }
  5411. }
  5412. },
  5413. "notification-url": "https://packages.drupal.org/8/downloads",
  5414. "license": [
  5415. "GPL-2.0-or-later"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Dave Reid",
  5420. "homepage": "https://www.drupal.org/user/53892"
  5421. }
  5422. ],
  5423. "description": "Provides the js-cookie library as a dependency.",
  5424. "homepage": "https://www.drupal.org/project/js_cookie",
  5425. "support": {
  5426. "source": "https://git.drupalcode.org/project/js_cookie"
  5427. }
  5428. },
  5429. {
  5430. "name": "drupal/leaflet",
  5431. "version": "10.4.4",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://git.drupalcode.org/project/leaflet.git",
  5435. "reference": "10.4.4"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://ftp.drupal.org/files/projects/leaflet-10.4.4.zip",
  5440. "reference": "10.4.4",
  5441. "shasum": "67a10addddac7e2433e61fcd9b5b5e55191301a8"
  5442. },
  5443. "require": {
  5444. "drupal/core": "^10.3 || ^11",
  5445. "drupal/geofield": "^1.31 || ^10.3"
  5446. },
  5447. "type": "drupal-module",
  5448. "extra": {
  5449. "drupal": {
  5450. "version": "10.4.4",
  5451. "datestamp": "1771869182",
  5452. "security-coverage": {
  5453. "status": "covered",
  5454. "message": "Covered by Drupal's security advisory policy"
  5455. }
  5456. }
  5457. },
  5458. "notification-url": "https://packages.drupal.org/8/downloads",
  5459. "license": [
  5460. "GPL-2.0+"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Italo Mairo",
  5465. "homepage": "https://www.drupal.org/u/itamair",
  5466. "role": "Maintainer"
  5467. },
  5468. {
  5469. "name": "Peter Vanhee (pvhee)",
  5470. "homepage": "https://www.drupal.org/u/pvhee",
  5471. "role": "Maintainer"
  5472. },
  5473. {
  5474. "name": "Rik de Boer (RdeBoer)",
  5475. "homepage": "https://www.drupal.org/u/rdeboer",
  5476. "role": "Maintainer"
  5477. },
  5478. {
  5479. "name": "Gabriel Carleton-Barnes (gcb)",
  5480. "homepage": "https://www.drupal.org/u/gcb",
  5481. "role": "Maintainer"
  5482. },
  5483. {
  5484. "name": "Lev Tsypin (levelos)",
  5485. "homepage": "https://www.drupal.org/u/levelos",
  5486. "role": "Maintainer"
  5487. },
  5488. {
  5489. "name": "Sean Larkin (seanberto)",
  5490. "homepage": "https://www.drupal.org/u/seanberto",
  5491. "role": "Maintainer"
  5492. }
  5493. ],
  5494. "description": "Integration with the Leaflet map scripting library.",
  5495. "homepage": "https://www.drupal.org/project/leaflet",
  5496. "support": {
  5497. "source": "https://git.drupalcode.org/project/leaflet",
  5498. "issues": "https://www.drupal.org/project/issues/leaflet"
  5499. }
  5500. },
  5501. {
  5502. "name": "drupal/leaflet_more_maps",
  5503. "version": "2.2.3",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5507. "reference": "2.2.3"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5512. "reference": "2.2.3",
  5513. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5514. },
  5515. "require": {
  5516. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5517. "drupal/leaflet": "^2.1.0 || ^10.0"
  5518. },
  5519. "require-dev": {
  5520. "drupal/leaflet": "*"
  5521. },
  5522. "type": "drupal-module",
  5523. "extra": {
  5524. "drupal": {
  5525. "version": "2.2.3",
  5526. "datestamp": "1737668201",
  5527. "security-coverage": {
  5528. "status": "covered",
  5529. "message": "Covered by Drupal's security advisory policy"
  5530. }
  5531. },
  5532. "branch-alias": {
  5533. "dev-8.x-1.x": "1.x-dev"
  5534. }
  5535. },
  5536. "notification-url": "https://packages.drupal.org/8/downloads",
  5537. "license": [
  5538. "GPL-2.0-or-later"
  5539. ],
  5540. "authors": [
  5541. {
  5542. "name": "berramou",
  5543. "homepage": "https://www.drupal.org/user/3535998"
  5544. },
  5545. {
  5546. "name": "itamair",
  5547. "homepage": "https://www.drupal.org/user/1179076"
  5548. },
  5549. {
  5550. "name": "japerry",
  5551. "homepage": "https://www.drupal.org/user/45640"
  5552. },
  5553. {
  5554. "name": "rachel_norfolk",
  5555. "homepage": "https://www.drupal.org/user/66273"
  5556. },
  5557. {
  5558. "name": "rdeboer",
  5559. "homepage": "https://www.drupal.org/user/404007"
  5560. }
  5561. ],
  5562. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5563. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5564. "support": {
  5565. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5566. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5567. }
  5568. },
  5569. {
  5570. "name": "drupal/leaflet_more_markers",
  5571. "version": "1.1.3",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5575. "reference": "1.1.3"
  5576. },
  5577. "dist": {
  5578. "type": "zip",
  5579. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5580. "reference": "1.1.3",
  5581. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5582. },
  5583. "require": {
  5584. "drupal/core": "^9.3 || ^10 || ^11",
  5585. "drupal/leaflet": "*",
  5586. "drupal/token": "*"
  5587. },
  5588. "type": "drupal-module",
  5589. "extra": {
  5590. "drupal": {
  5591. "version": "1.1.3",
  5592. "datestamp": "1733213620",
  5593. "security-coverage": {
  5594. "status": "covered",
  5595. "message": "Covered by Drupal's security advisory policy"
  5596. }
  5597. }
  5598. },
  5599. "notification-url": "https://packages.drupal.org/8/downloads",
  5600. "license": [
  5601. "GPL-2.0-or-later"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "itamair",
  5606. "homepage": "https://www.drupal.org/user/1179076"
  5607. },
  5608. {
  5609. "name": "rdeboer",
  5610. "homepage": "https://www.drupal.org/user/404007"
  5611. }
  5612. ],
  5613. "description": "Allows every location to feature its own emoji marker or font icon.",
  5614. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5615. "support": {
  5616. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5617. }
  5618. },
  5619. {
  5620. "name": "drupal/link_attributes",
  5621. "version": "2.1.2",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5625. "reference": "2.1.2"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.2.zip",
  5630. "reference": "2.1.2",
  5631. "shasum": "be747ac683568252d6d580acf5929c7ddc02c7e8"
  5632. },
  5633. "require": {
  5634. "drupal/core": "^9 || ^10 || ^11",
  5635. "php": ">=8.0"
  5636. },
  5637. "require-dev": {
  5638. "drupal/linkit": "~6 || ~7"
  5639. },
  5640. "type": "drupal-module",
  5641. "extra": {
  5642. "drupal": {
  5643. "version": "2.1.2",
  5644. "datestamp": "1763068313",
  5645. "security-coverage": {
  5646. "status": "covered",
  5647. "message": "Covered by Drupal's security advisory policy"
  5648. }
  5649. }
  5650. },
  5651. "notification-url": "https://packages.drupal.org/8/downloads",
  5652. "license": [
  5653. "GPL-2.0-or-later"
  5654. ],
  5655. "authors": [
  5656. {
  5657. "name": "larowlan",
  5658. "homepage": "https://www.drupal.org/user/395439"
  5659. }
  5660. ],
  5661. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5662. "homepage": "https://www.drupal.org/project/link_attributes",
  5663. "keywords": [
  5664. "Drupal"
  5665. ],
  5666. "support": {
  5667. "source": "https://git.drupalcode.org/project/link_attributes",
  5668. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5669. }
  5670. },
  5671. {
  5672. "name": "drupal/linked_field",
  5673. "version": "1.7.0",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://git.drupalcode.org/project/linked_field.git",
  5677. "reference": "8.x-1.7"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5682. "reference": "8.x-1.7",
  5683. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5684. },
  5685. "require": {
  5686. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5687. },
  5688. "type": "drupal-module",
  5689. "extra": {
  5690. "drupal": {
  5691. "version": "8.x-1.7",
  5692. "datestamp": "1748842765",
  5693. "security-coverage": {
  5694. "status": "covered",
  5695. "message": "Covered by Drupal's security advisory policy"
  5696. }
  5697. }
  5698. },
  5699. "notification-url": "https://packages.drupal.org/8/downloads",
  5700. "license": [
  5701. "GPL-2.0-or-later"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "jcnventura",
  5706. "homepage": "https://www.drupal.org/user/122464"
  5707. },
  5708. {
  5709. "name": "yannickoo",
  5710. "homepage": "https://www.drupal.org/user/531118"
  5711. }
  5712. ],
  5713. "description": "Adds the functionality to link fields to a specific destination.",
  5714. "homepage": "https://www.drupal.org/project/linked_field",
  5715. "support": {
  5716. "source": "https://git.drupalcode.org/project/linked_field"
  5717. }
  5718. },
  5719. {
  5720. "name": "drupal/linkit",
  5721. "version": "7.0.13",
  5722. "source": {
  5723. "type": "git",
  5724. "url": "https://git.drupalcode.org/project/linkit.git",
  5725. "reference": "7.0.13"
  5726. },
  5727. "dist": {
  5728. "type": "zip",
  5729. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.13.zip",
  5730. "reference": "7.0.13",
  5731. "shasum": "918d001248b4a394eb1c4e097e7d243959280489"
  5732. },
  5733. "require": {
  5734. "drupal/core": "^10.1 || ^11"
  5735. },
  5736. "type": "drupal-module",
  5737. "extra": {
  5738. "drupal": {
  5739. "version": "7.0.13",
  5740. "datestamp": "1773055628",
  5741. "security-coverage": {
  5742. "status": "covered",
  5743. "message": "Covered by Drupal's security advisory policy"
  5744. }
  5745. }
  5746. },
  5747. "notification-url": "https://packages.drupal.org/8/downloads",
  5748. "license": [
  5749. "GPL-2.0-or-later"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "Emil Stjerneman",
  5754. "homepage": "https://stjerneman.com",
  5755. "email": "emil@stjerneman.com",
  5756. "role": "Maintainer"
  5757. },
  5758. {
  5759. "name": "johnwebdev",
  5760. "homepage": "https://www.drupal.org/user/3331569"
  5761. },
  5762. {
  5763. "name": "mark_fullmer",
  5764. "homepage": "https://www.drupal.org/user/2612816"
  5765. }
  5766. ],
  5767. "description": "Linkit - Enriched linking experience",
  5768. "homepage": "http://drupal.org/project/linkit",
  5769. "support": {
  5770. "source": "http://cgit.drupalcode.org/linkit",
  5771. "issues": "http://drupal.org/project/linkit"
  5772. }
  5773. },
  5774. {
  5775. "name": "drupal/mailsystem",
  5776. "version": "4.5.0",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5780. "reference": "8.x-4.5"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5785. "reference": "8.x-4.5",
  5786. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5787. },
  5788. "require": {
  5789. "drupal/core": "^9 || ^10.1 || ^11"
  5790. },
  5791. "type": "drupal-module",
  5792. "extra": {
  5793. "drupal": {
  5794. "version": "8.x-4.5",
  5795. "datestamp": "1723379369",
  5796. "security-coverage": {
  5797. "status": "covered",
  5798. "message": "Covered by Drupal's security advisory policy"
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0-or-later"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "berdir",
  5809. "homepage": "https://www.drupal.org/user/214652"
  5810. },
  5811. {
  5812. "name": "emartoni",
  5813. "homepage": "https://www.drupal.org/user/3225331"
  5814. },
  5815. {
  5816. "name": "joseph.olstad",
  5817. "homepage": "https://www.drupal.org/user/1321830"
  5818. },
  5819. {
  5820. "name": "les lim",
  5821. "homepage": "https://www.drupal.org/user/84263"
  5822. },
  5823. {
  5824. "name": "manuel garcia",
  5825. "homepage": "https://www.drupal.org/user/213194"
  5826. },
  5827. {
  5828. "name": "miro_dietiker",
  5829. "homepage": "https://www.drupal.org/user/227761"
  5830. },
  5831. {
  5832. "name": "Nafes",
  5833. "homepage": "https://www.drupal.org/user/2489926"
  5834. },
  5835. {
  5836. "name": "pillarsdotnet",
  5837. "homepage": "https://www.drupal.org/user/36148"
  5838. },
  5839. {
  5840. "name": "renatog",
  5841. "homepage": "https://www.drupal.org/user/3326031"
  5842. },
  5843. {
  5844. "name": "tr",
  5845. "homepage": "https://www.drupal.org/user/202830"
  5846. }
  5847. ],
  5848. "description": "Mail System",
  5849. "homepage": "https://www.drupal.org/project/mailsystem",
  5850. "support": {
  5851. "source": "https://git.drupalcode.org/project/mailsystem"
  5852. }
  5853. },
  5854. {
  5855. "name": "drupal/manage_display",
  5856. "version": "3.0.1",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://git.drupalcode.org/project/manage_display.git",
  5860. "reference": "3.0.1"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5865. "reference": "3.0.1",
  5866. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5867. },
  5868. "require": {
  5869. "drupal/core": "^9.4 || ^10 || ^11"
  5870. },
  5871. "type": "drupal-module",
  5872. "extra": {
  5873. "drupal": {
  5874. "version": "3.0.1",
  5875. "datestamp": "1714834549",
  5876. "security-coverage": {
  5877. "status": "covered",
  5878. "message": "Covered by Drupal's security advisory policy"
  5879. }
  5880. }
  5881. },
  5882. "notification-url": "https://packages.drupal.org/8/downloads",
  5883. "license": [
  5884. "GPL-2.0-or-later"
  5885. ],
  5886. "authors": [
  5887. {
  5888. "name": "Adam Shepherd (AdamPS)",
  5889. "homepage": "https://www.drupal.org/u/adamps",
  5890. "role": "Maintainer"
  5891. },
  5892. {
  5893. "name": "Viktor Holovachek (AstonVictor)",
  5894. "homepage": "https://www.drupal.org/u/astonvictor",
  5895. "role": "Maintainer"
  5896. }
  5897. ],
  5898. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  5899. "homepage": "https://www.drupal.org/project/manage_display",
  5900. "keywords": [
  5901. "Drupal"
  5902. ],
  5903. "support": {
  5904. "source": "https://git.drupalcode.org/project/manage_display",
  5905. "issues": "https://www.drupal.org/project/issues/manage_display"
  5906. }
  5907. },
  5908. {
  5909. "name": "drupal/matomo",
  5910. "version": "1.26.0",
  5911. "source": {
  5912. "type": "git",
  5913. "url": "https://git.drupalcode.org/project/matomo.git",
  5914. "reference": "8.x-1.26"
  5915. },
  5916. "dist": {
  5917. "type": "zip",
  5918. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.26.zip",
  5919. "reference": "8.x-1.26",
  5920. "shasum": "b47514b6772012545d097240a28844b8f33867d5"
  5921. },
  5922. "require": {
  5923. "drupal/core": "^10.3 || ^11"
  5924. },
  5925. "conflict": {
  5926. "drupal/csp": "<1.12"
  5927. },
  5928. "require-dev": {
  5929. "drupal/csp": "^1.12",
  5930. "drupal/facets": "^3.0",
  5931. "drupal/php": "^1.1",
  5932. "drupal/search_api": "^1.40",
  5933. "drupal/token": "^1.9"
  5934. },
  5935. "type": "drupal-module",
  5936. "extra": {
  5937. "drupal": {
  5938. "version": "8.x-1.26",
  5939. "datestamp": "1766442490",
  5940. "security-coverage": {
  5941. "status": "covered",
  5942. "message": "Covered by Drupal's security advisory policy"
  5943. }
  5944. }
  5945. },
  5946. "notification-url": "https://packages.drupal.org/8/downloads",
  5947. "license": [
  5948. "GPL-2.0-or-later"
  5949. ],
  5950. "authors": [
  5951. {
  5952. "name": "c-logemann",
  5953. "homepage": "https://www.drupal.org/user/218368"
  5954. },
  5955. {
  5956. "name": "grimreaper",
  5957. "homepage": "https://www.drupal.org/user/2388214"
  5958. },
  5959. {
  5960. "name": "shelane",
  5961. "homepage": "https://www.drupal.org/user/2674989"
  5962. }
  5963. ],
  5964. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5965. "homepage": "https://www.drupal.org/project/matomo",
  5966. "support": {
  5967. "source": "https://git.drupalcode.org/project/matomo"
  5968. }
  5969. },
  5970. {
  5971. "name": "drupal/maxlength",
  5972. "version": "3.1.3",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://git.drupalcode.org/project/maxlength.git",
  5976. "reference": "3.1.3"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://ftp.drupal.org/files/projects/maxlength-3.1.3.zip",
  5981. "reference": "3.1.3",
  5982. "shasum": "7f063d0a449eda6bc499a718a09d1091907ef054"
  5983. },
  5984. "require": {
  5985. "drupal/core": "^10 || ^11"
  5986. },
  5987. "type": "drupal-module",
  5988. "extra": {
  5989. "drupal": {
  5990. "version": "3.1.3",
  5991. "datestamp": "1756373060",
  5992. "security-coverage": {
  5993. "status": "covered",
  5994. "message": "Covered by Drupal's security advisory policy"
  5995. }
  5996. }
  5997. },
  5998. "notification-url": "https://packages.drupal.org/8/downloads",
  5999. "license": [
  6000. "GPL-2.0-or-later"
  6001. ],
  6002. "authors": [
  6003. {
  6004. "name": "Marius Scurtescu (mariuss)",
  6005. "homepage": "https://www.drupal.org/u/mariuss",
  6006. "role": "Maintainer"
  6007. },
  6008. {
  6009. "name": "Clayton Dewey (cedewey)",
  6010. "homepage": "https://www.drupal.org/u/cedewey",
  6011. "role": "Maintainer"
  6012. },
  6013. {
  6014. "name": "Daniel Wehner (dawehner)",
  6015. "homepage": "https://www.drupal.org/u/dawehner",
  6016. "role": "Maintainer"
  6017. },
  6018. {
  6019. "name": "Paulino Michelazzo (pmichelazzo)",
  6020. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6021. "role": "Maintainer"
  6022. },
  6023. {
  6024. "name": "Jeff Hipp (hipp2bsquare)",
  6025. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6026. "role": "Maintainer"
  6027. },
  6028. {
  6029. "name": "Steven DuBois (srdtwc)",
  6030. "homepage": "https://www.drupal.org/u/srdtwc",
  6031. "role": "Maintainer"
  6032. },
  6033. {
  6034. "name": "Adam Nagy (joevagyok)",
  6035. "homepage": "https://www.drupal.org/u/joevagyok",
  6036. "role": "Maintainer"
  6037. }
  6038. ],
  6039. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6040. "homepage": "https://www.drupal.org/project/maxlength",
  6041. "support": {
  6042. "source": "https://git.drupalcode.org/project/maxlength",
  6043. "issues": "https://www.drupal.org/project/issues/maxlength"
  6044. }
  6045. },
  6046. {
  6047. "name": "drupal/menu_admin_per_menu",
  6048. "version": "1.7.0",
  6049. "source": {
  6050. "type": "git",
  6051. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6052. "reference": "8.x-1.7"
  6053. },
  6054. "dist": {
  6055. "type": "zip",
  6056. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6057. "reference": "8.x-1.7",
  6058. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6059. },
  6060. "require": {
  6061. "drupal/core": "^10.2 || ^11.0 || ^12"
  6062. },
  6063. "type": "drupal-module",
  6064. "extra": {
  6065. "drupal": {
  6066. "version": "8.x-1.7",
  6067. "datestamp": "1750246188",
  6068. "security-coverage": {
  6069. "status": "covered",
  6070. "message": "Covered by Drupal's security advisory policy"
  6071. }
  6072. }
  6073. },
  6074. "notification-url": "https://packages.drupal.org/8/downloads",
  6075. "license": [
  6076. "GPL-2.0-or-later"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "anrikun",
  6081. "homepage": "https://www.drupal.org/user/410199"
  6082. },
  6083. {
  6084. "name": "jeroent",
  6085. "homepage": "https://www.drupal.org/user/2228934"
  6086. },
  6087. {
  6088. "name": "jonas139",
  6089. "homepage": "https://www.drupal.org/user/2873401"
  6090. },
  6091. {
  6092. "name": "mkdok",
  6093. "homepage": "https://www.drupal.org/user/3308753"
  6094. }
  6095. ],
  6096. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6097. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6098. "keywords": [
  6099. "Drupal"
  6100. ],
  6101. "support": {
  6102. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6103. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6104. }
  6105. },
  6106. {
  6107. "name": "drupal/menu_block",
  6108. "version": "1.14.0",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://git.drupalcode.org/project/menu_block.git",
  6112. "reference": "8.x-1.14"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6117. "reference": "8.x-1.14",
  6118. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6119. },
  6120. "require": {
  6121. "drupal/core": "^10.1 || ^11"
  6122. },
  6123. "type": "drupal-module",
  6124. "extra": {
  6125. "drupal": {
  6126. "version": "8.x-1.14",
  6127. "datestamp": "1740624449",
  6128. "security-coverage": {
  6129. "status": "covered",
  6130. "message": "Covered by Drupal's security advisory policy"
  6131. }
  6132. }
  6133. },
  6134. "notification-url": "https://packages.drupal.org/8/downloads",
  6135. "license": [
  6136. "GPL-2.0-or-later"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "dave reid",
  6141. "homepage": "https://www.drupal.org/user/53892"
  6142. },
  6143. {
  6144. "name": "joelpittet",
  6145. "homepage": "https://www.drupal.org/user/160302"
  6146. },
  6147. {
  6148. "name": "johnalbin",
  6149. "homepage": "https://www.drupal.org/user/32095"
  6150. },
  6151. {
  6152. "name": "kim.pepper",
  6153. "homepage": "https://www.drupal.org/user/370574"
  6154. },
  6155. {
  6156. "name": "renatog",
  6157. "homepage": "https://www.drupal.org/user/3326031"
  6158. },
  6159. {
  6160. "name": "rrrob",
  6161. "homepage": "https://www.drupal.org/user/273533"
  6162. }
  6163. ],
  6164. "description": "Provides configurable blocks of menu links.",
  6165. "homepage": "https://www.drupal.org/project/menu_block",
  6166. "support": {
  6167. "source": "https://git.drupalcode.org/project/menu_block"
  6168. }
  6169. },
  6170. {
  6171. "name": "drupal/page_manager",
  6172. "version": "4.0.0-rc3",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://git.drupalcode.org/project/page_manager.git",
  6176. "reference": "8.x-4.0-rc3"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6181. "reference": "8.x-4.0-rc3",
  6182. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6183. },
  6184. "require": {
  6185. "drupal/core": "^9.5 || ^10 || ^11",
  6186. "drupal/ctools": "^3.15 || ^4.1"
  6187. },
  6188. "type": "drupal-module",
  6189. "extra": {
  6190. "drupal": {
  6191. "version": "8.x-4.0-rc3",
  6192. "datestamp": "1721976404",
  6193. "security-coverage": {
  6194. "status": "not-covered",
  6195. "message": "RC releases are not covered by Drupal security advisories."
  6196. }
  6197. },
  6198. "branch-alias": {
  6199. "dev-8.x-4.x": "4.x-dev"
  6200. }
  6201. },
  6202. "notification-url": "https://packages.drupal.org/8/downloads",
  6203. "license": [
  6204. "GPL-2.0-or-later"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Tim Plunkett",
  6209. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6210. "role": "Maintainer"
  6211. },
  6212. {
  6213. "name": "EclipseGc",
  6214. "homepage": "https://www.drupal.org/user/61203"
  6215. },
  6216. {
  6217. "name": "japerry",
  6218. "homepage": "https://www.drupal.org/user/45640"
  6219. },
  6220. {
  6221. "name": "joelpittet",
  6222. "homepage": "https://www.drupal.org/user/160302"
  6223. },
  6224. {
  6225. "name": "manuel.adan",
  6226. "homepage": "https://www.drupal.org/user/516420"
  6227. },
  6228. {
  6229. "name": "phenaproxima",
  6230. "homepage": "https://www.drupal.org/user/205645"
  6231. }
  6232. ],
  6233. "description": "Provides a way to place blocks on a custom page.",
  6234. "homepage": "https://www.drupal.org/project/page_manager",
  6235. "support": {
  6236. "source": "https://git.drupal.org/project/page_manager.git",
  6237. "issues": "https://www.drupal.org/project/issues/page_manager",
  6238. "irc": "irc://irc.freenode.org/drupal-contribute"
  6239. }
  6240. },
  6241. {
  6242. "name": "drupal/panels",
  6243. "version": "4.9.0",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://git.drupalcode.org/project/panels.git",
  6247. "reference": "8.x-4.9"
  6248. },
  6249. "dist": {
  6250. "type": "zip",
  6251. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6252. "reference": "8.x-4.9",
  6253. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6254. },
  6255. "require": {
  6256. "drupal/core": "^9.5 || ^10 || ^11",
  6257. "drupal/ctools": "^3.15 || ^4.1",
  6258. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6259. },
  6260. "require-dev": {
  6261. "drupal/jquery_ui_droppable": "*",
  6262. "drupal/page_manager": "^4"
  6263. },
  6264. "type": "drupal-module",
  6265. "extra": {
  6266. "drupal": {
  6267. "version": "8.x-4.9",
  6268. "datestamp": "1744218203",
  6269. "security-coverage": {
  6270. "status": "covered",
  6271. "message": "Covered by Drupal's security advisory policy"
  6272. }
  6273. },
  6274. "branch-alias": {
  6275. "dev-8.x-4.x": "4.x-dev"
  6276. }
  6277. },
  6278. "notification-url": "https://packages.drupal.org/8/downloads",
  6279. "license": [
  6280. "GPL-2.0+"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Jakob Perry",
  6285. "homepage": "https://www.drupal.org/u/japerry"
  6286. },
  6287. {
  6288. "name": "Samuel Mortenson",
  6289. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6290. },
  6291. {
  6292. "name": "See other contributors",
  6293. "homepage": "https://www.drupal.org/node/74958/committers"
  6294. },
  6295. {
  6296. "name": "joelpittet",
  6297. "homepage": "https://www.drupal.org/user/160302"
  6298. },
  6299. {
  6300. "name": "Letharion",
  6301. "homepage": "https://www.drupal.org/user/373603"
  6302. },
  6303. {
  6304. "name": "merlinofchaos",
  6305. "homepage": "https://www.drupal.org/user/26979"
  6306. },
  6307. {
  6308. "name": "neclimdul",
  6309. "homepage": "https://www.drupal.org/user/48673"
  6310. },
  6311. {
  6312. "name": "phenaproxima",
  6313. "homepage": "https://www.drupal.org/user/205645"
  6314. },
  6315. {
  6316. "name": "samuel.mortenson",
  6317. "homepage": "https://www.drupal.org/user/2582268"
  6318. }
  6319. ],
  6320. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6321. "homepage": "https://www.drupal.org/project/panels",
  6322. "support": {
  6323. "source": "https://git.drupalcode.org/project/panels",
  6324. "issues": "https://www.drupal.org/project/issues/panels",
  6325. "irc": "irc://irc.freenode.org/drupal-scotch"
  6326. }
  6327. },
  6328. {
  6329. "name": "drupal/paragraphs",
  6330. "version": "1.20.0",
  6331. "source": {
  6332. "type": "git",
  6333. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6334. "reference": "8.x-1.20"
  6335. },
  6336. "dist": {
  6337. "type": "zip",
  6338. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.20.zip",
  6339. "reference": "8.x-1.20",
  6340. "shasum": "68051cc8c025aa3f62fd44a219d158361928a4ad"
  6341. },
  6342. "require": {
  6343. "drupal/core": "^10.3 || ^11",
  6344. "drupal/entity_reference_revisions": "~1.3"
  6345. },
  6346. "require-dev": {
  6347. "drupal/block_field": "1.x-dev",
  6348. "drupal/diff": "1.x-dev",
  6349. "drupal/entity_browser": "2.x-dev",
  6350. "drupal/entity_usage": "2.x-dev",
  6351. "drupal/feeds": "^3",
  6352. "drupal/field_group": "3.x-dev",
  6353. "drupal/inline_entity_form": "3.x-dev",
  6354. "drupal/paragraphs-paragraphs_library": "*",
  6355. "drupal/replicate": "1.x-dev",
  6356. "drupal/search_api": "^1",
  6357. "drupal/search_api_db": "*"
  6358. },
  6359. "suggest": {
  6360. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6361. },
  6362. "type": "drupal-module",
  6363. "extra": {
  6364. "drupal": {
  6365. "version": "8.x-1.20",
  6366. "datestamp": "1767269542",
  6367. "security-coverage": {
  6368. "status": "covered",
  6369. "message": "Covered by Drupal's security advisory policy"
  6370. }
  6371. }
  6372. },
  6373. "notification-url": "https://packages.drupal.org/8/downloads",
  6374. "license": [
  6375. "GPL-2.0-or-later"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "berdir",
  6380. "homepage": "https://www.drupal.org/user/214652"
  6381. },
  6382. {
  6383. "name": "frans",
  6384. "homepage": "https://www.drupal.org/user/514222"
  6385. },
  6386. {
  6387. "name": "jeroen.b",
  6388. "homepage": "https://www.drupal.org/user/1853532"
  6389. },
  6390. {
  6391. "name": "jstoller",
  6392. "homepage": "https://www.drupal.org/user/99012"
  6393. },
  6394. {
  6395. "name": "miro_dietiker",
  6396. "homepage": "https://www.drupal.org/user/227761"
  6397. },
  6398. {
  6399. "name": "primsi",
  6400. "homepage": "https://www.drupal.org/user/282629"
  6401. }
  6402. ],
  6403. "description": "Enables the creation of Paragraphs entities.",
  6404. "homepage": "https://www.drupal.org/project/paragraphs",
  6405. "support": {
  6406. "source": "https://git.drupalcode.org/project/paragraphs"
  6407. }
  6408. },
  6409. {
  6410. "name": "drupal/pathauto",
  6411. "version": "1.14.0",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://git.drupalcode.org/project/pathauto.git",
  6415. "reference": "8.x-1.14"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.14.zip",
  6420. "reference": "8.x-1.14",
  6421. "shasum": "07f0d2efcf0bfb450e2ab69a43921fa39dc5f25b"
  6422. },
  6423. "require": {
  6424. "drupal/core": "^10 || ^11",
  6425. "drupal/ctools": "*",
  6426. "drupal/token": "*"
  6427. },
  6428. "conflict": {
  6429. "drush/drush": "<12.5.1"
  6430. },
  6431. "require-dev": {
  6432. "drupal/forum": "*"
  6433. },
  6434. "suggest": {
  6435. "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."
  6436. },
  6437. "type": "drupal-module",
  6438. "extra": {
  6439. "drupal": {
  6440. "version": "8.x-1.14",
  6441. "datestamp": "1759838097",
  6442. "security-coverage": {
  6443. "status": "covered",
  6444. "message": "Covered by Drupal's security advisory policy"
  6445. }
  6446. }
  6447. },
  6448. "notification-url": "https://packages.drupal.org/8/downloads",
  6449. "license": [
  6450. "GPL-2.0-or-later"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "acbramley",
  6455. "homepage": "https://www.drupal.org/user/1036766"
  6456. },
  6457. {
  6458. "name": "berdir",
  6459. "homepage": "https://www.drupal.org/user/214652"
  6460. },
  6461. {
  6462. "name": "dave reid",
  6463. "homepage": "https://www.drupal.org/user/53892"
  6464. },
  6465. {
  6466. "name": "Freso",
  6467. "homepage": "https://www.drupal.org/user/27504"
  6468. },
  6469. {
  6470. "name": "greggles",
  6471. "homepage": "https://www.drupal.org/user/36762"
  6472. },
  6473. {
  6474. "name": "mably",
  6475. "homepage": "https://www.drupal.org/user/3375160"
  6476. }
  6477. ],
  6478. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6479. "homepage": "https://www.drupal.org/project/pathauto",
  6480. "support": {
  6481. "source": "https://cgit.drupalcode.org/pathauto",
  6482. "issues": "https://www.drupal.org/project/issues/pathauto",
  6483. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6484. }
  6485. },
  6486. {
  6487. "name": "drupal/pathologic",
  6488. "version": "2.0.0-alpha3",
  6489. "source": {
  6490. "type": "git",
  6491. "url": "https://git.drupalcode.org/project/pathologic.git",
  6492. "reference": "2.0.0-alpha3"
  6493. },
  6494. "dist": {
  6495. "type": "zip",
  6496. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6497. "reference": "2.0.0-alpha3",
  6498. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6499. },
  6500. "require": {
  6501. "drupal/core": "^9 || ^10 || ^11"
  6502. },
  6503. "type": "drupal-module",
  6504. "extra": {
  6505. "drupal": {
  6506. "version": "2.0.0-alpha3",
  6507. "datestamp": "1733441073",
  6508. "security-coverage": {
  6509. "status": "not-covered",
  6510. "message": "Alpha releases are not covered by Drupal security advisories."
  6511. }
  6512. }
  6513. },
  6514. "notification-url": "https://packages.drupal.org/8/downloads",
  6515. "license": [
  6516. "GPL-2.0+"
  6517. ],
  6518. "authors": [
  6519. {
  6520. "name": "berdir",
  6521. "homepage": "https://www.drupal.org/user/214652"
  6522. },
  6523. {
  6524. "name": "dww",
  6525. "homepage": "https://www.drupal.org/user/46549"
  6526. },
  6527. {
  6528. "name": "Garrett Albright",
  6529. "homepage": "https://www.drupal.org/user/191212"
  6530. },
  6531. {
  6532. "name": "mark_fullmer",
  6533. "homepage": "https://www.drupal.org/user/2612816"
  6534. }
  6535. ],
  6536. "description": "Helps avoid broken links and incorrect paths in content.",
  6537. "homepage": "https://www.drupal.org/project/pathologic",
  6538. "support": {
  6539. "source": "https://git.drupalcode.org/project/pathologic"
  6540. }
  6541. },
  6542. {
  6543. "name": "drupal/persistent_login",
  6544. "version": "2.2.4",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6548. "reference": "2.2.4"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://ftp.drupal.org/files/projects/persistent_login-2.2.4.zip",
  6553. "reference": "2.2.4",
  6554. "shasum": "7048ecf440938f0245f87bfb8c21f61292fce12d"
  6555. },
  6556. "require": {
  6557. "drupal/core": "^10 || ^11"
  6558. },
  6559. "type": "drupal-module",
  6560. "extra": {
  6561. "drupal": {
  6562. "version": "2.2.4",
  6563. "datestamp": "1728082564",
  6564. "security-coverage": {
  6565. "status": "covered",
  6566. "message": "Covered by Drupal's security advisory policy"
  6567. }
  6568. }
  6569. },
  6570. "notification-url": "https://packages.drupal.org/8/downloads",
  6571. "license": [
  6572. "GPL-2.0-or-later"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "gapple",
  6577. "homepage": "https://www.drupal.org/user/490940"
  6578. }
  6579. ],
  6580. "description": "Provides a \"Remember Me\" feature on the login form.",
  6581. "homepage": "https://www.drupal.org/project/persistent_login",
  6582. "keywords": [
  6583. "Drupal"
  6584. ],
  6585. "support": {
  6586. "source": "https://git.drupalcode.org/project/persistent_login",
  6587. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6588. }
  6589. },
  6590. {
  6591. "name": "drupal/redirect",
  6592. "version": "1.12.0",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://git.drupalcode.org/project/redirect.git",
  6596. "reference": "8.x-1.12"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.12.zip",
  6601. "reference": "8.x-1.12",
  6602. "shasum": "1cdee11356a25b9f9a10329aec0eeb293e0023de"
  6603. },
  6604. "require": {
  6605. "drupal/core": "^10 || ^11"
  6606. },
  6607. "type": "drupal-module",
  6608. "extra": {
  6609. "drupal": {
  6610. "version": "8.x-1.12",
  6611. "datestamp": "1756419163",
  6612. "security-coverage": {
  6613. "status": "covered",
  6614. "message": "Covered by Drupal's security advisory policy"
  6615. }
  6616. }
  6617. },
  6618. "notification-url": "https://packages.drupal.org/8/downloads",
  6619. "license": [
  6620. "GPL-2.0-or-later"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "berdir",
  6625. "homepage": "https://www.drupal.org/user/214652"
  6626. },
  6627. {
  6628. "name": "dave reid",
  6629. "homepage": "https://www.drupal.org/user/53892"
  6630. },
  6631. {
  6632. "name": "kristen pol",
  6633. "homepage": "https://www.drupal.org/user/8389"
  6634. },
  6635. {
  6636. "name": "pifagor",
  6637. "homepage": "https://www.drupal.org/user/2375692"
  6638. }
  6639. ],
  6640. "description": "Allows users to redirect from old URLs to new URLs.",
  6641. "homepage": "https://www.drupal.org/project/redirect",
  6642. "support": {
  6643. "source": "https://git.drupalcode.org/project/redirect"
  6644. }
  6645. },
  6646. {
  6647. "name": "drupal/redis",
  6648. "version": "1.11.0",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://git.drupalcode.org/project/redis.git",
  6652. "reference": "8.x-1.11"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.11.zip",
  6657. "reference": "8.x-1.11",
  6658. "shasum": "4a32e50b85523fd09500b6c6398cf18504bdc652"
  6659. },
  6660. "require": {
  6661. "drupal/core": "^9.3 || ^10 || ^11"
  6662. },
  6663. "suggest": {
  6664. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6665. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6666. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6667. },
  6668. "type": "drupal-module",
  6669. "extra": {
  6670. "drupal": {
  6671. "version": "8.x-1.11",
  6672. "datestamp": "1762688846",
  6673. "security-coverage": {
  6674. "status": "covered",
  6675. "message": "Covered by Drupal's security advisory policy"
  6676. }
  6677. }
  6678. },
  6679. "autoload": {
  6680. "psr-4": {
  6681. "Drupal\\redis\\": "src"
  6682. }
  6683. },
  6684. "notification-url": "https://packages.drupal.org/8/downloads",
  6685. "license": [
  6686. "GPL-2.0-or-later"
  6687. ],
  6688. "authors": [
  6689. {
  6690. "name": "berdir",
  6691. "homepage": "https://www.drupal.org/user/214652"
  6692. },
  6693. {
  6694. "name": "greg.1.anderson",
  6695. "homepage": "https://www.drupal.org/user/438598"
  6696. },
  6697. {
  6698. "name": "kporras07",
  6699. "homepage": "https://www.drupal.org/user/1349780"
  6700. },
  6701. {
  6702. "name": "pounard",
  6703. "homepage": "https://www.drupal.org/user/240164"
  6704. }
  6705. ],
  6706. "description": "Integration of Drupal with the Redis key-value store.",
  6707. "homepage": "https://www.drupal.org/project/redis",
  6708. "support": {
  6709. "source": "https://git.drupalcode.org/project/redis"
  6710. }
  6711. },
  6712. {
  6713. "name": "drupal/role_delegation",
  6714. "version": "1.6.0",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6718. "reference": "8.x-1.6"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.6.zip",
  6723. "reference": "8.x-1.6",
  6724. "shasum": "792971461a3b86cb8f6937d0eecd3745899bb7bf"
  6725. },
  6726. "require": {
  6727. "drupal/core": "^10.3 || ^11"
  6728. },
  6729. "type": "drupal-module",
  6730. "extra": {
  6731. "drupal": {
  6732. "version": "8.x-1.6",
  6733. "datestamp": "1769768673",
  6734. "security-coverage": {
  6735. "status": "covered",
  6736. "message": "Covered by Drupal's security advisory policy"
  6737. }
  6738. }
  6739. },
  6740. "notification-url": "https://packages.drupal.org/8/downloads",
  6741. "license": [
  6742. "GPL-2.0-or-later"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Jeroen Tubex",
  6747. "homepage": "https://www.drupal.org/u/jeroent",
  6748. "role": "Maintainer"
  6749. },
  6750. {
  6751. "name": "benjy",
  6752. "homepage": "https://www.drupal.org/user/1852732"
  6753. },
  6754. {
  6755. "name": "dieterholvoet",
  6756. "homepage": "https://www.drupal.org/user/3567222"
  6757. },
  6758. {
  6759. "name": "jeroent",
  6760. "homepage": "https://www.drupal.org/user/2228934"
  6761. }
  6762. ],
  6763. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6764. "homepage": "http://drupal.org/project/role_delegation",
  6765. "support": {
  6766. "source": "https://git.drupalcode.org/project/role_delegation",
  6767. "issues": "http://drupal.org/project/role_delegation"
  6768. }
  6769. },
  6770. {
  6771. "name": "drupal/search_api",
  6772. "version": "1.40.0",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://git.drupalcode.org/project/search_api.git",
  6776. "reference": "8.x-1.40"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.40.zip",
  6781. "reference": "8.x-1.40",
  6782. "shasum": "64ac71887786da63ced27a43e37342ea3b765a88"
  6783. },
  6784. "require": {
  6785. "drupal/core": "^10.3 || ^11"
  6786. },
  6787. "conflict": {
  6788. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6789. },
  6790. "require-dev": {
  6791. "drupal/config_readonly": "1.x-dev",
  6792. "drupal/language_fallback_fix": "1.x-dev",
  6793. "drupal/search_api_autocomplete": "1.x-dev",
  6794. "drupal/search_api_db": "*"
  6795. },
  6796. "suggest": {
  6797. "drupal/facets": "Adds the ability to create faceted searches.",
  6798. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6799. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6800. },
  6801. "type": "drupal-module",
  6802. "extra": {
  6803. "drupal": {
  6804. "version": "8.x-1.40",
  6805. "datestamp": "1762031191",
  6806. "security-coverage": {
  6807. "status": "covered",
  6808. "message": "Covered by Drupal's security advisory policy"
  6809. }
  6810. },
  6811. "branch-alias": {
  6812. "dev-8.x-1.x": "1.x-dev"
  6813. }
  6814. },
  6815. "notification-url": "https://packages.drupal.org/8/downloads",
  6816. "license": [
  6817. "GPL-2.0-or-later"
  6818. ],
  6819. "authors": [
  6820. {
  6821. "name": "Thomas Seidl",
  6822. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6823. },
  6824. {
  6825. "name": "Nick Veenhof",
  6826. "homepage": "https://www.drupal.org/u/nick_vh"
  6827. },
  6828. {
  6829. "name": "See other contributors",
  6830. "homepage": "https://www.drupal.org/node/790418/committers"
  6831. }
  6832. ],
  6833. "description": "Provides a generic framework for modules offering search capabilities.",
  6834. "homepage": "https://www.drupal.org/project/search_api",
  6835. "support": {
  6836. "source": "https://git.drupalcode.org/project/search_api",
  6837. "issues": "https://www.drupal.org/project/issues/search_api",
  6838. "irc": "irc://irc.freenode.org/drupal-search-api"
  6839. }
  6840. },
  6841. {
  6842. "name": "drupal/search_api_db",
  6843. "version": "1.40.0",
  6844. "require": {
  6845. "drupal/core": "^10.2 || ^11",
  6846. "drupal/search_api": "*"
  6847. },
  6848. "type": "metapackage",
  6849. "extra": {
  6850. "drupal": {
  6851. "version": "8.x-1.40",
  6852. "datestamp": "1762031191",
  6853. "security-coverage": {
  6854. "status": "covered",
  6855. "message": "Covered by Drupal's security advisory policy"
  6856. }
  6857. }
  6858. },
  6859. "notification-url": "https://packages.drupal.org/8/downloads",
  6860. "license": [
  6861. "GPL-2.0-or-later"
  6862. ],
  6863. "authors": [
  6864. {
  6865. "name": "borisson_",
  6866. "homepage": "https://www.drupal.org/user/2393360"
  6867. },
  6868. {
  6869. "name": "drunken monkey",
  6870. "homepage": "https://www.drupal.org/user/205582"
  6871. }
  6872. ],
  6873. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6874. "homepage": "https://www.drupal.org/project/search_api",
  6875. "support": {
  6876. "source": "https://git.drupalcode.org/project/search_api"
  6877. }
  6878. },
  6879. {
  6880. "name": "drupal/seven",
  6881. "version": "1.0.0",
  6882. "source": {
  6883. "type": "git",
  6884. "url": "https://git.drupalcode.org/project/seven.git",
  6885. "reference": "1.0.0"
  6886. },
  6887. "dist": {
  6888. "type": "zip",
  6889. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6890. "reference": "1.0.0",
  6891. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6892. },
  6893. "require": {
  6894. "drupal/core": "^9 || ^10"
  6895. },
  6896. "type": "drupal-theme",
  6897. "extra": {
  6898. "drupal": {
  6899. "version": "1.0.0",
  6900. "datestamp": "1758908691",
  6901. "security-coverage": {
  6902. "status": "covered",
  6903. "message": "Covered by Drupal's security advisory policy"
  6904. }
  6905. }
  6906. },
  6907. "notification-url": "https://packages.drupal.org/8/downloads",
  6908. "license": [
  6909. "GPL-2.0-or-later"
  6910. ],
  6911. "authors": [
  6912. {
  6913. "name": "avpaderno",
  6914. "homepage": "https://www.drupal.org/user/55077"
  6915. },
  6916. {
  6917. "name": "bnjmnm",
  6918. "homepage": "https://www.drupal.org/user/2369194"
  6919. },
  6920. {
  6921. "name": "krakenbite",
  6922. "homepage": "https://www.drupal.org/user/3805933"
  6923. },
  6924. {
  6925. "name": "lauriii",
  6926. "homepage": "https://www.drupal.org/user/1078742"
  6927. },
  6928. {
  6929. "name": "mcrittenden",
  6930. "homepage": "https://www.drupal.org/user/420631"
  6931. },
  6932. {
  6933. "name": "mrfelton",
  6934. "homepage": "https://www.drupal.org/user/305669"
  6935. }
  6936. ],
  6937. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6938. "homepage": "https://www.drupal.org/project/seven",
  6939. "support": {
  6940. "source": "https://git.drupalcode.org/project/seven"
  6941. }
  6942. },
  6943. {
  6944. "name": "drupal/slick",
  6945. "version": "2.11.0",
  6946. "source": {
  6947. "type": "git",
  6948. "url": "https://git.drupalcode.org/project/slick.git",
  6949. "reference": "8.x-2.11"
  6950. },
  6951. "dist": {
  6952. "type": "zip",
  6953. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  6954. "reference": "8.x-2.11",
  6955. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  6956. },
  6957. "require": {
  6958. "drupal/blazy": "^2.17",
  6959. "drupal/core": "^8.8 || ^9 || ^10"
  6960. },
  6961. "type": "drupal-module",
  6962. "extra": {
  6963. "drupal": {
  6964. "version": "8.x-2.11",
  6965. "datestamp": "1712817716",
  6966. "security-coverage": {
  6967. "status": "covered",
  6968. "message": "Covered by Drupal's security advisory policy"
  6969. }
  6970. }
  6971. },
  6972. "notification-url": "https://packages.drupal.org/8/downloads",
  6973. "license": [
  6974. "GPL-2.0-or-later"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Contributors",
  6979. "homepage": "https://www.drupal.org/node/2232779/committers",
  6980. "role": "Contributors"
  6981. },
  6982. {
  6983. "name": "shadcn",
  6984. "homepage": "https://www.drupal.org/user/571032"
  6985. },
  6986. {
  6987. "name": "thalles",
  6988. "homepage": "https://www.drupal.org/user/3589086"
  6989. }
  6990. ],
  6991. "description": "Slick carousel, the last carousel you'll ever need.",
  6992. "homepage": "https://drupal.org/project/slick",
  6993. "keywords": [
  6994. "Drupal",
  6995. "carousel",
  6996. "slideshow"
  6997. ],
  6998. "support": {
  6999. "source": "https://git.drupalcode.org/project/slick",
  7000. "issues": "https://drupal.org/project/issues/slick"
  7001. }
  7002. },
  7003. {
  7004. "name": "drupal/smart_trim",
  7005. "version": "2.3.1",
  7006. "source": {
  7007. "type": "git",
  7008. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7009. "reference": "2.3.1"
  7010. },
  7011. "dist": {
  7012. "type": "zip",
  7013. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.3.1.zip",
  7014. "reference": "2.3.1",
  7015. "shasum": "2838a00cf9c1af4daa3cbf5088db0e5c2ba68bd7"
  7016. },
  7017. "require": {
  7018. "drupal/core": "^10.1 || ^11",
  7019. "drupal/token": "^1.17",
  7020. "php": ">=8.1"
  7021. },
  7022. "require-dev": {
  7023. "drupal/token_filter": "^2.1 || ^2.2"
  7024. },
  7025. "type": "drupal-module",
  7026. "extra": {
  7027. "drupal": {
  7028. "version": "2.3.1",
  7029. "datestamp": "1768161512",
  7030. "security-coverage": {
  7031. "status": "covered",
  7032. "message": "Covered by Drupal's security advisory policy"
  7033. }
  7034. }
  7035. },
  7036. "notification-url": "https://packages.drupal.org/8/downloads",
  7037. "license": [
  7038. "GPL-2.0-or-later"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Mark Casias (markie)",
  7043. "homepage": "https://www.drupal.org/u/markie",
  7044. "role": "Maintainer"
  7045. },
  7046. {
  7047. "name": "AmyJune Hineline (volkswagenchick)",
  7048. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7049. "role": "Maintainer"
  7050. },
  7051. {
  7052. "name": "Michael Anello (ultimike)",
  7053. "homepage": "https://www.drupal.org/u/ultimike",
  7054. "role": "Maintainer"
  7055. }
  7056. ],
  7057. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7058. "homepage": "https://drupal.org/project/smart_trim",
  7059. "support": {
  7060. "source": "https://git.drupalcode.org/project/smart_trim",
  7061. "issues": "https://drupal.org/project/issues/smart_trim"
  7062. }
  7063. },
  7064. {
  7065. "name": "drupal/smtp",
  7066. "version": "1.4.0",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://git.drupalcode.org/project/smtp.git",
  7070. "reference": "8.x-1.4"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7075. "reference": "8.x-1.4",
  7076. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7077. },
  7078. "require": {
  7079. "drupal/core": "^9.5 || ^10 || ^11",
  7080. "phpmailer/phpmailer": "^6.1.7"
  7081. },
  7082. "suggest": {
  7083. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7084. },
  7085. "type": "drupal-module",
  7086. "extra": {
  7087. "drupal": {
  7088. "version": "8.x-1.4",
  7089. "datestamp": "1722032780",
  7090. "security-coverage": {
  7091. "status": "covered",
  7092. "message": "Covered by Drupal's security advisory policy"
  7093. }
  7094. },
  7095. "branch-alias": {
  7096. "dev-8.x-1.x": "1.x-dev"
  7097. }
  7098. },
  7099. "notification-url": "https://packages.drupal.org/8/downloads",
  7100. "license": [
  7101. "GPL-2.0-or-later"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "japerry",
  7106. "homepage": "https://www.drupal.org/user/45640"
  7107. },
  7108. {
  7109. "name": "joseph.olstad",
  7110. "homepage": "https://www.drupal.org/user/1321830"
  7111. },
  7112. {
  7113. "name": "LukeLast",
  7114. "homepage": "https://www.drupal.org/user/30151"
  7115. },
  7116. {
  7117. "name": "oadaeh",
  7118. "homepage": "https://www.drupal.org/user/4649"
  7119. },
  7120. {
  7121. "name": "sadashiv",
  7122. "homepage": "https://www.drupal.org/user/1773304"
  7123. },
  7124. {
  7125. "name": "wundo",
  7126. "homepage": "https://www.drupal.org/user/25523"
  7127. },
  7128. {
  7129. "name": "yettyn",
  7130. "homepage": "https://www.drupal.org/user/93281"
  7131. }
  7132. ],
  7133. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7134. "homepage": "https://www.drupal.org/project/smtp",
  7135. "support": {
  7136. "source": "https://git.drupalcode.org/project/smtp",
  7137. "issues": "https://www.drupal.org/project/issues/smtp"
  7138. }
  7139. },
  7140. {
  7141. "name": "drupal/structure_sync",
  7142. "version": "2.0.8",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7146. "reference": "2.0.8"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7151. "reference": "2.0.8",
  7152. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7153. },
  7154. "require": {
  7155. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7156. "php": ">=7.1"
  7157. },
  7158. "require-dev": {
  7159. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7160. },
  7161. "type": "drupal-module",
  7162. "extra": {
  7163. "drupal": {
  7164. "version": "2.0.8",
  7165. "datestamp": "1728580642",
  7166. "security-coverage": {
  7167. "status": "covered",
  7168. "message": "Covered by Drupal's security advisory policy"
  7169. }
  7170. },
  7171. "drush": {
  7172. "services": {
  7173. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7174. }
  7175. }
  7176. },
  7177. "notification-url": "https://packages.drupal.org/8/downloads",
  7178. "license": [
  7179. "GPL-2.0-or-later"
  7180. ],
  7181. "authors": [
  7182. {
  7183. "name": "colan",
  7184. "homepage": "https://www.drupal.org/user/58704"
  7185. },
  7186. {
  7187. "name": "fidovdbos",
  7188. "homepage": "https://www.drupal.org/user/1494332"
  7189. },
  7190. {
  7191. "name": "joachim",
  7192. "homepage": "https://www.drupal.org/user/107701"
  7193. },
  7194. {
  7195. "name": "louis-cuny",
  7196. "homepage": "https://www.drupal.org/user/3606332"
  7197. },
  7198. {
  7199. "name": "mparker17",
  7200. "homepage": "https://www.drupal.org/user/536298"
  7201. },
  7202. {
  7203. "name": "spiderman",
  7204. "homepage": "https://www.drupal.org/user/1631"
  7205. },
  7206. {
  7207. "name": "timKruijsen",
  7208. "homepage": "https://www.drupal.org/user/3513437"
  7209. },
  7210. {
  7211. "name": "vinlaurens",
  7212. "homepage": "https://www.drupal.org/user/2945689"
  7213. }
  7214. ],
  7215. "description": "Tool for syncing structural data that is stored as content.",
  7216. "homepage": "https://www.drupal.org/project/structure_sync",
  7217. "support": {
  7218. "source": "https://git.drupalcode.org/project/structure_sync"
  7219. }
  7220. },
  7221. {
  7222. "name": "drupal/synonyms",
  7223. "version": "2.1.4",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://git.drupalcode.org/project/synonyms.git",
  7227. "reference": "2.1.4"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7232. "reference": "2.1.4",
  7233. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7234. },
  7235. "require": {
  7236. "drupal/core": "^9 || ^10 || ^11"
  7237. },
  7238. "require-dev": {
  7239. "drupal/synonyms_list_field": "*"
  7240. },
  7241. "type": "drupal-module",
  7242. "extra": {
  7243. "drupal": {
  7244. "version": "2.1.4",
  7245. "datestamp": "1723069842",
  7246. "security-coverage": {
  7247. "status": "covered",
  7248. "message": "Covered by Drupal's security advisory policy"
  7249. }
  7250. }
  7251. },
  7252. "notification-url": "https://packages.drupal.org/8/downloads",
  7253. "license": [
  7254. "GPL-2.0-or-later"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Bojan Zivanovic",
  7259. "homepage": "https://www.drupal.org/u/bojanz",
  7260. "role": "Author and D5, D6 and D7 versions developer."
  7261. },
  7262. {
  7263. "name": "Alex Trosenko",
  7264. "homepage": "https://www.drupal.org/u/bucefal91",
  7265. "role": "D7 and D8 versions developer."
  7266. },
  7267. {
  7268. "name": "Duro Arezina",
  7269. "homepage": "https://www.drupal.org/u/devad",
  7270. "role": "D8+ versions maintenance"
  7271. },
  7272. {
  7273. "name": "See other contributors",
  7274. "homepage": "https://www.drupal.org/node/148775/committers"
  7275. }
  7276. ],
  7277. "description": "Provides synonyms feature for all entities.",
  7278. "homepage": "https://www.drupal.org/project/synonyms",
  7279. "support": {
  7280. "source": "https://git.drupalcode.org/project/synonyms",
  7281. "issues": "https://www.drupal.org/project/issues/synonyms"
  7282. }
  7283. },
  7284. {
  7285. "name": "drupal/token",
  7286. "version": "1.17.0",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://git.drupalcode.org/project/token.git",
  7290. "reference": "8.x-1.17"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.17.zip",
  7295. "reference": "8.x-1.17",
  7296. "shasum": "21d11adf0be16f1aa95b6348b4ceadbe9a625824"
  7297. },
  7298. "require": {
  7299. "drupal/core": "^10.3 || ^11"
  7300. },
  7301. "require-dev": {
  7302. "drupal/book": "^1 || ^2"
  7303. },
  7304. "type": "drupal-module",
  7305. "extra": {
  7306. "drupal": {
  7307. "version": "8.x-1.17",
  7308. "datestamp": "1767942434",
  7309. "security-coverage": {
  7310. "status": "covered",
  7311. "message": "Covered by Drupal's security advisory policy"
  7312. }
  7313. },
  7314. "drush": {
  7315. "services": {
  7316. "drush.services.yml": ">=9"
  7317. }
  7318. }
  7319. },
  7320. "notification-url": "https://packages.drupal.org/8/downloads",
  7321. "license": [
  7322. "GPL-2.0-or-later"
  7323. ],
  7324. "authors": [
  7325. {
  7326. "name": "berdir",
  7327. "homepage": "https://www.drupal.org/user/214652"
  7328. },
  7329. {
  7330. "name": "dave reid",
  7331. "homepage": "https://www.drupal.org/user/53892"
  7332. },
  7333. {
  7334. "name": "eaton",
  7335. "homepage": "https://www.drupal.org/user/16496"
  7336. },
  7337. {
  7338. "name": "fago",
  7339. "homepage": "https://www.drupal.org/user/16747"
  7340. },
  7341. {
  7342. "name": "greggles",
  7343. "homepage": "https://www.drupal.org/user/36762"
  7344. },
  7345. {
  7346. "name": "mikeryan",
  7347. "homepage": "https://www.drupal.org/user/4420"
  7348. }
  7349. ],
  7350. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7351. "homepage": "https://www.drupal.org/project/token",
  7352. "support": {
  7353. "source": "https://git.drupalcode.org/project/token"
  7354. }
  7355. },
  7356. {
  7357. "name": "drupal/translation_views",
  7358. "version": "1.0.0-alpha11",
  7359. "source": {
  7360. "type": "git",
  7361. "url": "https://git.drupalcode.org/project/translation_views.git",
  7362. "reference": "8.x-1.0-alpha11"
  7363. },
  7364. "dist": {
  7365. "type": "zip",
  7366. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7367. "reference": "8.x-1.0-alpha11",
  7368. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7369. },
  7370. "require": {
  7371. "drupal/core": "^8.8 || ^9 || ^10"
  7372. },
  7373. "require-dev": {
  7374. "drupal/translators_content": "^1.0@alpha"
  7375. },
  7376. "type": "drupal-module",
  7377. "extra": {
  7378. "drupal": {
  7379. "version": "8.x-1.0-alpha11",
  7380. "datestamp": "1679660668",
  7381. "security-coverage": {
  7382. "status": "not-covered",
  7383. "message": "Alpha releases are not covered by Drupal security advisories."
  7384. }
  7385. }
  7386. },
  7387. "notification-url": "https://packages.drupal.org/8/downloads",
  7388. "license": [
  7389. "GPL-2.0-or-later"
  7390. ],
  7391. "authors": [
  7392. {
  7393. "name": "matsbla",
  7394. "homepage": "https://www.drupal.org/user/2325394"
  7395. },
  7396. {
  7397. "name": "vlad.dancer",
  7398. "homepage": "https://www.drupal.org/user/903844"
  7399. }
  7400. ],
  7401. "description": "Create customized lists and queries of translations from your database.",
  7402. "homepage": "https://www.drupal.org/project/translation_views",
  7403. "support": {
  7404. "source": "https://git.drupalcode.org/project/translation_views"
  7405. }
  7406. },
  7407. {
  7408. "name": "drupal/ultimate_cron",
  7409. "version": "2.0.0-beta1",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7413. "reference": "8.x-2.0-beta1"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7418. "reference": "8.x-2.0-beta1",
  7419. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7420. },
  7421. "require": {
  7422. "drupal/core": "^9.3 || ^10.1 || ^11"
  7423. },
  7424. "type": "drupal-module",
  7425. "extra": {
  7426. "drupal": {
  7427. "version": "8.x-2.0-beta1",
  7428. "datestamp": "1732830342",
  7429. "security-coverage": {
  7430. "status": "not-covered",
  7431. "message": "Beta releases are not covered by Drupal security advisories."
  7432. }
  7433. },
  7434. "drush": {
  7435. "services": {
  7436. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7437. }
  7438. }
  7439. },
  7440. "notification-url": "https://packages.drupal.org/8/downloads",
  7441. "license": [
  7442. "GPL-2.0+"
  7443. ],
  7444. "authors": [
  7445. {
  7446. "name": "arnested",
  7447. "homepage": "https://www.drupal.org/user/245635"
  7448. },
  7449. {
  7450. "name": "berdir",
  7451. "homepage": "https://www.drupal.org/user/214652"
  7452. },
  7453. {
  7454. "name": "gielfeldt",
  7455. "homepage": "https://www.drupal.org/user/366993"
  7456. },
  7457. {
  7458. "name": "miro_dietiker",
  7459. "homepage": "https://www.drupal.org/user/227761"
  7460. },
  7461. {
  7462. "name": "primsi",
  7463. "homepage": "https://www.drupal.org/user/282629"
  7464. }
  7465. ],
  7466. "description": "Ultimate cron",
  7467. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7468. "support": {
  7469. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7470. }
  7471. },
  7472. {
  7473. "name": "drupal/upgrade_status",
  7474. "version": "4.3.9",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7478. "reference": "4.3.9"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.9.zip",
  7483. "reference": "4.3.9",
  7484. "shasum": "bef9e5e08a3b6ecc6a5c380107e624fb4b5f03ef"
  7485. },
  7486. "require": {
  7487. "dekor/php-array-table": "^2.0",
  7488. "drupal/core": "^9 || ^10 || ^11",
  7489. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7490. "nikic/php-parser": "^4.0.0|^5.0.0",
  7491. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7492. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7493. "webflo/drupal-finder": "^1.2"
  7494. },
  7495. "require-dev": {
  7496. "drush/drush": "^11|^12|^13"
  7497. },
  7498. "type": "drupal-module",
  7499. "extra": {
  7500. "drupal": {
  7501. "version": "4.3.9",
  7502. "datestamp": "1771841606",
  7503. "security-coverage": {
  7504. "status": "covered",
  7505. "message": "Covered by Drupal's security advisory policy"
  7506. }
  7507. },
  7508. "drush": {
  7509. "services": {
  7510. "drush.services.yml": "^9 || ^10"
  7511. }
  7512. }
  7513. },
  7514. "notification-url": "https://packages.drupal.org/8/downloads",
  7515. "license": [
  7516. "GPL-2.0-or-later"
  7517. ],
  7518. "authors": [
  7519. {
  7520. "name": "gábor hojtsy",
  7521. "homepage": "https://www.drupal.org/user/4166"
  7522. }
  7523. ],
  7524. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7525. "homepage": "http://drupal.org/project/upgrade_status",
  7526. "support": {
  7527. "source": "https://git.drupalcode.org/project/upgrade_status"
  7528. }
  7529. },
  7530. {
  7531. "name": "drupal/video_embed_dailymotion",
  7532. "version": "2.0.0",
  7533. "source": {
  7534. "type": "git",
  7535. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7536. "reference": "2.0.0"
  7537. },
  7538. "dist": {
  7539. "type": "zip",
  7540. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7541. "reference": "2.0.0",
  7542. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7543. },
  7544. "require": {
  7545. "drupal/core": "^9 || ^10",
  7546. "drupal/video_embed_field": "*"
  7547. },
  7548. "type": "drupal-module",
  7549. "extra": {
  7550. "drupal": {
  7551. "version": "2.0.0",
  7552. "datestamp": "1699434830",
  7553. "security-coverage": {
  7554. "status": "covered",
  7555. "message": "Covered by Drupal's security advisory policy"
  7556. }
  7557. }
  7558. },
  7559. "notification-url": "https://packages.drupal.org/8/downloads",
  7560. "license": [
  7561. "GPL-2.0-or-later"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "flocondetoile",
  7566. "homepage": "https://www.drupal.org/user/2006064"
  7567. },
  7568. {
  7569. "name": "mohs3n71",
  7570. "homepage": "https://www.drupal.org/user/2295854"
  7571. },
  7572. {
  7573. "name": "Sam152",
  7574. "homepage": "https://www.drupal.org/user/1485048"
  7575. }
  7576. ],
  7577. "description": "A video_embed_field integration with Dailymotion.",
  7578. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7579. "support": {
  7580. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7581. }
  7582. },
  7583. {
  7584. "name": "drupal/video_embed_field",
  7585. "version": "2.7.0",
  7586. "source": {
  7587. "type": "git",
  7588. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7589. "reference": "8.x-2.7"
  7590. },
  7591. "dist": {
  7592. "type": "zip",
  7593. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.7.zip",
  7594. "reference": "8.x-2.7",
  7595. "shasum": "a978da90614f9df1eab127b40877fd2390cb34ab"
  7596. },
  7597. "require": {
  7598. "drupal/core": "^9.2 || ^10"
  7599. },
  7600. "require-dev": {
  7601. "drupal/ckeditor": "^1",
  7602. "drupal/colorbox": "^2",
  7603. "drupal/video_embed_media": "*"
  7604. },
  7605. "type": "drupal-module",
  7606. "extra": {
  7607. "drupal": {
  7608. "version": "8.x-2.7",
  7609. "datestamp": "1765896945",
  7610. "security-coverage": {
  7611. "status": "covered",
  7612. "message": "Covered by Drupal's security advisory policy"
  7613. }
  7614. }
  7615. },
  7616. "notification-url": "https://packages.drupal.org/8/downloads",
  7617. "license": [
  7618. "GPL-2.0-or-later"
  7619. ],
  7620. "authors": [
  7621. {
  7622. "name": "abhinesh",
  7623. "homepage": "https://www.drupal.org/user/3645979"
  7624. },
  7625. {
  7626. "name": "jec006",
  7627. "homepage": "https://www.drupal.org/user/855980"
  7628. },
  7629. {
  7630. "name": "mably",
  7631. "homepage": "https://www.drupal.org/user/3375160"
  7632. },
  7633. {
  7634. "name": "plopesc",
  7635. "homepage": "https://www.drupal.org/user/282415"
  7636. },
  7637. {
  7638. "name": "sam152",
  7639. "homepage": "https://www.drupal.org/user/1485048"
  7640. }
  7641. ],
  7642. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7643. "homepage": "https://www.drupal.org/project/video_embed_field",
  7644. "support": {
  7645. "source": "https://git.drupalcode.org/project/video_embed_field"
  7646. }
  7647. },
  7648. {
  7649. "name": "drupal/views_bulk_edit",
  7650. "version": "3.0.1",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7654. "reference": "3.0.1"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.1.zip",
  7659. "reference": "3.0.1",
  7660. "shasum": "8105257937e3a39e3814a526fcbe996b4c90fe5d"
  7661. },
  7662. "require": {
  7663. "drupal/core": "^9.4 || ^10 || ^11",
  7664. "php": ">=8.1"
  7665. },
  7666. "require-dev": {
  7667. "drupal/action": "^0.2",
  7668. "drupal/views_bulk_operations": "~4.2.4"
  7669. },
  7670. "suggest": {
  7671. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7672. },
  7673. "type": "drupal-module",
  7674. "extra": {
  7675. "drupal": {
  7676. "version": "3.0.1",
  7677. "datestamp": "1769429619",
  7678. "security-coverage": {
  7679. "status": "covered",
  7680. "message": "Covered by Drupal's security advisory policy"
  7681. }
  7682. }
  7683. },
  7684. "notification-url": "https://packages.drupal.org/8/downloads",
  7685. "license": [
  7686. "GPL-2.0+"
  7687. ],
  7688. "authors": [
  7689. {
  7690. "name": "Marcin Grabias",
  7691. "homepage": "https://www.drupal.org/u/graber"
  7692. },
  7693. {
  7694. "name": "benjy",
  7695. "homepage": "https://www.drupal.org/user/1852732"
  7696. },
  7697. {
  7698. "name": "graber",
  7699. "homepage": "https://www.drupal.org/user/1599440"
  7700. },
  7701. {
  7702. "name": "grevil",
  7703. "homepage": "https://www.drupal.org/user/3668491"
  7704. },
  7705. {
  7706. "name": "joseph.olstad",
  7707. "homepage": "https://www.drupal.org/user/1321830"
  7708. }
  7709. ],
  7710. "description": "Allows bulk edition of entity field values.",
  7711. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7712. "support": {
  7713. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7714. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7715. }
  7716. },
  7717. {
  7718. "name": "drupal/views_bulk_operations",
  7719. "version": "4.4.4",
  7720. "source": {
  7721. "type": "git",
  7722. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7723. "reference": "4.4.4"
  7724. },
  7725. "dist": {
  7726. "type": "zip",
  7727. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.4.4.zip",
  7728. "reference": "4.4.4",
  7729. "shasum": "bd8e9c1af14526cd67be91390696b0e0d614ca7e"
  7730. },
  7731. "require": {
  7732. "drupal/core": "^10.3 || ^11"
  7733. },
  7734. "conflict": {
  7735. "drush/drush": "<12.5.1"
  7736. },
  7737. "require-dev": {
  7738. "drupal/coder": "^8.3.16",
  7739. "drush/drush": "^12 || ^13",
  7740. "phpstan/phpstan-deprecation-rules": "^2",
  7741. "phpstan/phpstan-strict-rules": "^2"
  7742. },
  7743. "suggest": {
  7744. "drush/drush": "^12 || ^13"
  7745. },
  7746. "type": "drupal-module",
  7747. "extra": {
  7748. "drupal": {
  7749. "version": "4.4.4",
  7750. "datestamp": "1761317826",
  7751. "security-coverage": {
  7752. "status": "covered",
  7753. "message": "Covered by Drupal's security advisory policy"
  7754. }
  7755. }
  7756. },
  7757. "notification-url": "https://packages.drupal.org/8/downloads",
  7758. "license": [
  7759. "GPL-2.0-or-later"
  7760. ],
  7761. "authors": [
  7762. {
  7763. "name": "Marcin Grabias",
  7764. "homepage": "https://www.drupal.org/u/graber"
  7765. },
  7766. {
  7767. "name": "graber",
  7768. "homepage": "https://www.drupal.org/user/1599440"
  7769. },
  7770. {
  7771. "name": "joelpittet",
  7772. "homepage": "https://www.drupal.org/user/160302"
  7773. }
  7774. ],
  7775. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7776. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7777. "support": {
  7778. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7779. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7780. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7781. }
  7782. },
  7783. {
  7784. "name": "drupal/views_conditional",
  7785. "version": "1.10.0",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7789. "reference": "8.x-1.10"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7794. "reference": "8.x-1.10",
  7795. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7796. },
  7797. "require": {
  7798. "drupal/core": "^9 || ^10 || ^11"
  7799. },
  7800. "type": "drupal-module",
  7801. "extra": {
  7802. "drupal": {
  7803. "version": "8.x-1.10",
  7804. "datestamp": "1727901408",
  7805. "security-coverage": {
  7806. "status": "covered",
  7807. "message": "Covered by Drupal's security advisory policy"
  7808. }
  7809. }
  7810. },
  7811. "notification-url": "https://packages.drupal.org/8/downloads",
  7812. "license": [
  7813. "GPL-2.0-or-later"
  7814. ],
  7815. "authors": [
  7816. {
  7817. "name": "anand.toshniwal93",
  7818. "homepage": "https://www.drupal.org/user/3345088"
  7819. },
  7820. {
  7821. "name": "joelpittet",
  7822. "homepage": "https://www.drupal.org/user/160302"
  7823. },
  7824. {
  7825. "name": "MChittenden",
  7826. "homepage": "https://www.drupal.org/user/2288348"
  7827. },
  7828. {
  7829. "name": "shelane",
  7830. "homepage": "https://www.drupal.org/user/2674989"
  7831. }
  7832. ],
  7833. "description": "Allows conditional views output.",
  7834. "homepage": "https://www.drupal.org/project/views_conditional",
  7835. "support": {
  7836. "source": "https://git.drupalcode.org/project/views_conditional"
  7837. }
  7838. },
  7839. {
  7840. "name": "drupal/views_ef_fieldset",
  7841. "version": "1.10.0",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7845. "reference": "8.x-1.10"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7850. "reference": "8.x-1.10",
  7851. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7852. },
  7853. "require": {
  7854. "drupal/core": "^10 || ^11"
  7855. },
  7856. "type": "drupal-module",
  7857. "extra": {
  7858. "drupal": {
  7859. "version": "8.x-1.10",
  7860. "datestamp": "1731071552",
  7861. "security-coverage": {
  7862. "status": "covered",
  7863. "message": "Covered by Drupal's security advisory policy"
  7864. }
  7865. }
  7866. },
  7867. "notification-url": "https://packages.drupal.org/8/downloads",
  7868. "license": [
  7869. "GPL-2.0-or-later"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "ciss",
  7874. "homepage": "https://www.drupal.org/user/1632364"
  7875. },
  7876. {
  7877. "name": "eli-t",
  7878. "homepage": "https://www.drupal.org/user/516878"
  7879. },
  7880. {
  7881. "name": "pol",
  7882. "homepage": "https://www.drupal.org/user/47194"
  7883. }
  7884. ],
  7885. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  7886. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  7887. "support": {
  7888. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7889. }
  7890. },
  7891. {
  7892. "name": "drupal/webform",
  7893. "version": "6.2.9",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://git.drupalcode.org/project/webform.git",
  7897. "reference": "6.2.9"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  7902. "reference": "6.2.9",
  7903. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  7904. },
  7905. "require": {
  7906. "drupal/core": "^10.2",
  7907. "php": ">=8.1"
  7908. },
  7909. "require-dev": {
  7910. "drupal/address": "1.x-dev",
  7911. "drupal/bootstrap": "3.x-dev",
  7912. "drupal/captcha": "^1 || ^2",
  7913. "drupal/chosen": "3.0.x-dev",
  7914. "drupal/ckeditor": "1.0.x-dev",
  7915. "drupal/clientside_validation": "^3 || ^4",
  7916. "drupal/clientside_validation_jquery": "*",
  7917. "drupal/devel": "5.x-dev",
  7918. "drupal/entity": "1.x-dev",
  7919. "drupal/entity_print": "2.x-dev",
  7920. "drupal/group": "1.x-dev",
  7921. "drupal/hal": "1 - 2",
  7922. "drupal/jquery_ui": "1.x-dev",
  7923. "drupal/jquery_ui_button": "2.x-dev",
  7924. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7925. "drupal/jquery_ui_datepicker": "2.x-dev",
  7926. "drupal/mailsystem": "4.x-dev",
  7927. "drupal/metatag": "1.x-dev",
  7928. "drupal/paragraphs": "1.x-dev",
  7929. "drupal/select2": "1.x-dev",
  7930. "drupal/smtp": "1.x-dev",
  7931. "drupal/styleguide": "^1 || ^2",
  7932. "drupal/telephone_validation": "2.x-dev",
  7933. "drupal/token": "1.x-dev",
  7934. "drupal/variationcache": "1.x-dev",
  7935. "drupal/webform_access": "*",
  7936. "drupal/webform_attachment": "*",
  7937. "drupal/webform_clientside_validation": "*",
  7938. "drupal/webform_devel": "*",
  7939. "drupal/webform_entity_print": "*",
  7940. "drupal/webform_node": "*",
  7941. "drupal/webform_options_limit": "*",
  7942. "drupal/webform_scheduled_email": "*",
  7943. "drupal/webform_share": "*",
  7944. "drupal/webform_ui": "*"
  7945. },
  7946. "suggest": {
  7947. "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
  7948. "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
  7949. },
  7950. "type": "drupal-module",
  7951. "extra": {
  7952. "drupal": {
  7953. "version": "6.2.9",
  7954. "datestamp": "1733851063",
  7955. "security-coverage": {
  7956. "status": "covered",
  7957. "message": "Covered by Drupal's security advisory policy"
  7958. }
  7959. },
  7960. "drush": {
  7961. "services": {
  7962. "drush.services.yml": ">=9"
  7963. }
  7964. }
  7965. },
  7966. "notification-url": "https://packages.drupal.org/8/downloads",
  7967. "license": [
  7968. "GPL-2.0-or-later"
  7969. ],
  7970. "authors": [
  7971. {
  7972. "name": "Jacob Rockowitz (jrockowitz)",
  7973. "homepage": "https://www.drupal.org/u/jrockowitz",
  7974. "role": "Maintainer"
  7975. },
  7976. {
  7977. "name": "Contributors",
  7978. "homepage": "https://www.drupal.org/node/7404/committers",
  7979. "role": "Contributor"
  7980. },
  7981. {
  7982. "name": "liam morland",
  7983. "homepage": "https://www.drupal.org/user/493050"
  7984. },
  7985. {
  7986. "name": "mandclu",
  7987. "homepage": "https://www.drupal.org/user/52136"
  7988. },
  7989. {
  7990. "name": "quicksketch",
  7991. "homepage": "https://www.drupal.org/user/35821"
  7992. }
  7993. ],
  7994. "description": "Enables the creation of webforms and questionnaires.",
  7995. "homepage": "https://drupal.org/project/webform",
  7996. "support": {
  7997. "source": "https://git.drupalcode.org/project/webform",
  7998. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7999. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8000. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8001. }
  8002. },
  8003. {
  8004. "name": "drush/drush",
  8005. "version": "13.7.1",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/drush-ops/drush.git",
  8009. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/drush-ops/drush/zipball/4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8014. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  8019. "composer-runtime-api": "^2.2",
  8020. "composer/semver": "^1.4 || ^3",
  8021. "consolidation/annotated-command": "^4.10.2",
  8022. "consolidation/config": "^2.1.2 || ^3.1.1",
  8023. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8024. "consolidation/output-formatters": "^4.6.1",
  8025. "consolidation/robo": "^4.0.6 || ^5.1.0",
  8026. "consolidation/site-alias": "^4.1.1",
  8027. "consolidation/site-process": "^5.4.2",
  8028. "dflydev/dot-access-data": "^3.0.2",
  8029. "ext-dom": "*",
  8030. "grasmash/yaml-cli": "^3.2",
  8031. "guzzlehttp/guzzle": "^7.0",
  8032. "laravel/prompts": "^0.3.5",
  8033. "league/container": "^4.2",
  8034. "php": ">=8.3",
  8035. "psy/psysh": "~0.12",
  8036. "symfony/event-dispatcher": "^6 || ^7",
  8037. "symfony/filesystem": "^6.1 || ^7",
  8038. "symfony/finder": "^6 || ^7",
  8039. "symfony/var-dumper": "^6.0 || ^7",
  8040. "symfony/yaml": "^6.0 || ^7"
  8041. },
  8042. "conflict": {
  8043. "drupal/core": "< 10.4",
  8044. "drupal/migrate_run": "*",
  8045. "drupal/migrate_tools": "<= 5"
  8046. },
  8047. "require-dev": {
  8048. "composer/installers": "^2",
  8049. "cweagans/composer-patches": "~1.7.3",
  8050. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  8051. "drupal/semver_example": "2.3.0",
  8052. "jetbrains/phpstorm-attributes": "^1.0",
  8053. "mglaman/phpstan-drupal": "^2",
  8054. "phpunit/phpunit": "^9 || ^10 || ^11",
  8055. "rector/rector": "^2",
  8056. "squizlabs/php_codesniffer": "^3.7"
  8057. },
  8058. "bin": [
  8059. "drush",
  8060. "drush.php"
  8061. ],
  8062. "type": "library",
  8063. "extra": {
  8064. "patches-file": "composer.patches.json",
  8065. "installer-paths": {
  8066. "sut/core": [
  8067. "type:drupal-core"
  8068. ],
  8069. "sut/libraries/{$name}": [
  8070. "type:drupal-library"
  8071. ],
  8072. "sut/themes/unish/{$name}": [
  8073. "drupal/empty_theme"
  8074. ],
  8075. "sut/drush/contrib/{$name}": [
  8076. "type:drupal-drush"
  8077. ],
  8078. "sut/modules/unish/{$name}": [
  8079. "drupal/devel"
  8080. ],
  8081. "sut/themes/contrib/{$name}": [
  8082. "type:drupal-theme"
  8083. ],
  8084. "sut/modules/contrib/{$name}": [
  8085. "type:drupal-module"
  8086. ],
  8087. "sut/profiles/contrib/{$name}": [
  8088. "type:drupal-profile"
  8089. ]
  8090. }
  8091. },
  8092. "autoload": {
  8093. "psr-4": {
  8094. "Drush\\": "src/"
  8095. }
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "GPL-2.0-or-later"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Moshe Weitzman",
  8104. "email": "weitzman@tejasa.com"
  8105. },
  8106. {
  8107. "name": "Owen Barton",
  8108. "email": "drupal@owenbarton.com"
  8109. },
  8110. {
  8111. "name": "Greg Anderson",
  8112. "email": "greg.1.anderson@greenknowe.org"
  8113. },
  8114. {
  8115. "name": "Jonathan Araña Cruz",
  8116. "email": "jonhattan@faita.net"
  8117. },
  8118. {
  8119. "name": "Jonathan Hedstrom",
  8120. "email": "jhedstrom@gmail.com"
  8121. },
  8122. {
  8123. "name": "Christopher Gervais",
  8124. "email": "chris@ergonlogic.com"
  8125. },
  8126. {
  8127. "name": "Dave Reid",
  8128. "email": "dave@davereid.net"
  8129. },
  8130. {
  8131. "name": "Damian Lee",
  8132. "email": "damiankloip@googlemail.com"
  8133. }
  8134. ],
  8135. "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.",
  8136. "homepage": "http://www.drush.org",
  8137. "support": {
  8138. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8139. "issues": "https://github.com/drush-ops/drush/issues",
  8140. "security": "https://github.com/drush-ops/drush/security/advisories",
  8141. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8142. "source": "https://github.com/drush-ops/drush/tree/13.7.1"
  8143. },
  8144. "funding": [
  8145. {
  8146. "url": "https://github.com/weitzman",
  8147. "type": "github"
  8148. }
  8149. ],
  8150. "time": "2026-01-28T22:21:17+00:00"
  8151. },
  8152. {
  8153. "name": "egulias/email-validator",
  8154. "version": "4.0.4",
  8155. "source": {
  8156. "type": "git",
  8157. "url": "https://github.com/egulias/EmailValidator.git",
  8158. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8159. },
  8160. "dist": {
  8161. "type": "zip",
  8162. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8163. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8164. "shasum": ""
  8165. },
  8166. "require": {
  8167. "doctrine/lexer": "^2.0 || ^3.0",
  8168. "php": ">=8.1",
  8169. "symfony/polyfill-intl-idn": "^1.26"
  8170. },
  8171. "require-dev": {
  8172. "phpunit/phpunit": "^10.2",
  8173. "vimeo/psalm": "^5.12"
  8174. },
  8175. "suggest": {
  8176. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8177. },
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-master": "4.0.x-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "psr-4": {
  8186. "Egulias\\EmailValidator\\": "src"
  8187. }
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "MIT"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Eduardo Gulias Davis"
  8196. }
  8197. ],
  8198. "description": "A library for validating emails against several RFCs",
  8199. "homepage": "https://github.com/egulias/EmailValidator",
  8200. "keywords": [
  8201. "email",
  8202. "emailvalidation",
  8203. "emailvalidator",
  8204. "validation",
  8205. "validator"
  8206. ],
  8207. "support": {
  8208. "issues": "https://github.com/egulias/EmailValidator/issues",
  8209. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8210. },
  8211. "funding": [
  8212. {
  8213. "url": "https://github.com/egulias",
  8214. "type": "github"
  8215. }
  8216. ],
  8217. "time": "2025-03-06T22:45:56+00:00"
  8218. },
  8219. {
  8220. "name": "geocoder-php/common-http",
  8221. "version": "4.7.0",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/geocoder-php/php-common-http.git",
  8225. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8230. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8231. "shasum": ""
  8232. },
  8233. "require": {
  8234. "php": "^8.0",
  8235. "php-http/discovery": "^1.17",
  8236. "psr/http-client-implementation": "^1.0",
  8237. "psr/http-factory-implementation": "^1.0",
  8238. "willdurand/geocoder": "^4.0|^5.0"
  8239. },
  8240. "require-dev": {
  8241. "nyholm/psr7": "^1.0",
  8242. "php-http/message": "^1.0",
  8243. "php-http/mock-client": "^1.0",
  8244. "phpunit/phpunit": "^9.5",
  8245. "symfony/stopwatch": "~2.5 || ~5.0"
  8246. },
  8247. "type": "library",
  8248. "extra": {
  8249. "branch-alias": {
  8250. "dev-master": "4.0-dev"
  8251. }
  8252. },
  8253. "autoload": {
  8254. "psr-4": {
  8255. "Geocoder\\Http\\": ""
  8256. },
  8257. "exclude-from-classmap": [
  8258. "/Tests/"
  8259. ]
  8260. },
  8261. "notification-url": "https://packagist.org/downloads/",
  8262. "license": [
  8263. "MIT"
  8264. ],
  8265. "authors": [
  8266. {
  8267. "name": "Tobias Nyholm",
  8268. "email": "tobias.nyholm@gmail.com"
  8269. }
  8270. ],
  8271. "description": "Common files for HTTP based Geocoders",
  8272. "homepage": "http://geocoder-php.org",
  8273. "keywords": [
  8274. "http geocoder"
  8275. ],
  8276. "support": {
  8277. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8278. },
  8279. "time": "2025-04-15T12:38:11+00:00"
  8280. },
  8281. {
  8282. "name": "geocoder-php/mapquest-provider",
  8283. "version": "4.4.0",
  8284. "source": {
  8285. "type": "git",
  8286. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8287. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8288. },
  8289. "dist": {
  8290. "type": "zip",
  8291. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8292. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8293. "shasum": ""
  8294. },
  8295. "require": {
  8296. "geocoder-php/common-http": "^4.6",
  8297. "php": "^8.0",
  8298. "willdurand/geocoder": "^4.0|^5.0"
  8299. },
  8300. "provide": {
  8301. "geocoder-php/provider-implementation": "1.0"
  8302. },
  8303. "require-dev": {
  8304. "geocoder-php/provider-integration-tests": "^1.6.3",
  8305. "php-http/message": "^1.0",
  8306. "phpunit/phpunit": "^9.5"
  8307. },
  8308. "type": "library",
  8309. "extra": {
  8310. "branch-alias": {
  8311. "dev-master": "4.0-dev"
  8312. }
  8313. },
  8314. "autoload": {
  8315. "psr-4": {
  8316. "Geocoder\\Provider\\MapQuest\\": ""
  8317. },
  8318. "exclude-from-classmap": [
  8319. "/Tests/"
  8320. ]
  8321. },
  8322. "notification-url": "https://packagist.org/downloads/",
  8323. "license": [
  8324. "MIT"
  8325. ],
  8326. "authors": [
  8327. {
  8328. "name": "William Durand",
  8329. "email": "william.durand1@gmail.com"
  8330. }
  8331. ],
  8332. "description": "Geocoder MapQuest adapter",
  8333. "homepage": "http://geocoder-php.org/Geocoder/",
  8334. "support": {
  8335. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8336. },
  8337. "time": "2025-04-15T13:24:32+00:00"
  8338. },
  8339. {
  8340. "name": "grasmash/expander",
  8341. "version": "3.0.1",
  8342. "source": {
  8343. "type": "git",
  8344. "url": "https://github.com/grasmash/expander.git",
  8345. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8346. },
  8347. "dist": {
  8348. "type": "zip",
  8349. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8350. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8351. "shasum": ""
  8352. },
  8353. "require": {
  8354. "dflydev/dot-access-data": "^3.0.0",
  8355. "php": ">=8.0",
  8356. "psr/log": "^2 | ^3"
  8357. },
  8358. "require-dev": {
  8359. "greg-1-anderson/composer-test-scenarios": "^1",
  8360. "php-coveralls/php-coveralls": "^2.5",
  8361. "phpunit/phpunit": "^9",
  8362. "squizlabs/php_codesniffer": "^3.3"
  8363. },
  8364. "type": "library",
  8365. "extra": {
  8366. "branch-alias": {
  8367. "dev-master": "1.x-dev"
  8368. }
  8369. },
  8370. "autoload": {
  8371. "psr-4": {
  8372. "Grasmash\\Expander\\": "src/"
  8373. }
  8374. },
  8375. "notification-url": "https://packagist.org/downloads/",
  8376. "license": [
  8377. "MIT"
  8378. ],
  8379. "authors": [
  8380. {
  8381. "name": "Matthew Grasmick"
  8382. }
  8383. ],
  8384. "description": "Expands internal property references in PHP arrays file.",
  8385. "support": {
  8386. "issues": "https://github.com/grasmash/expander/issues",
  8387. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8388. },
  8389. "time": "2024-11-25T23:28:05+00:00"
  8390. },
  8391. {
  8392. "name": "grasmash/yaml-cli",
  8393. "version": "3.2.1",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/grasmash/yaml-cli.git",
  8397. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8402. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8403. "shasum": ""
  8404. },
  8405. "require": {
  8406. "dflydev/dot-access-data": "^3",
  8407. "php": ">=8.0",
  8408. "symfony/console": "^6 || ^7",
  8409. "symfony/filesystem": "^6 || ^7",
  8410. "symfony/yaml": "^6 || ^7"
  8411. },
  8412. "require-dev": {
  8413. "php-coveralls/php-coveralls": "^2",
  8414. "phpunit/phpunit": "^9",
  8415. "squizlabs/php_codesniffer": "^3.0"
  8416. },
  8417. "bin": [
  8418. "bin/yaml-cli"
  8419. ],
  8420. "type": "library",
  8421. "extra": {
  8422. "branch-alias": {
  8423. "dev-master": "3.x-dev"
  8424. }
  8425. },
  8426. "autoload": {
  8427. "psr-4": {
  8428. "Grasmash\\YamlCli\\": "src/"
  8429. }
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "Matthew Grasmick"
  8438. }
  8439. ],
  8440. "description": "A command line tool for reading and manipulating yaml files.",
  8441. "support": {
  8442. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8443. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8444. },
  8445. "time": "2024-04-23T02:10:57+00:00"
  8446. },
  8447. {
  8448. "name": "guzzlehttp/guzzle",
  8449. "version": "7.10.0",
  8450. "source": {
  8451. "type": "git",
  8452. "url": "https://github.com/guzzle/guzzle.git",
  8453. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  8454. },
  8455. "dist": {
  8456. "type": "zip",
  8457. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8458. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8459. "shasum": ""
  8460. },
  8461. "require": {
  8462. "ext-json": "*",
  8463. "guzzlehttp/promises": "^2.3",
  8464. "guzzlehttp/psr7": "^2.8",
  8465. "php": "^7.2.5 || ^8.0",
  8466. "psr/http-client": "^1.0",
  8467. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8468. },
  8469. "provide": {
  8470. "psr/http-client-implementation": "1.0"
  8471. },
  8472. "require-dev": {
  8473. "bamarni/composer-bin-plugin": "^1.8.2",
  8474. "ext-curl": "*",
  8475. "guzzle/client-integration-tests": "3.0.2",
  8476. "php-http/message-factory": "^1.1",
  8477. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8478. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8479. },
  8480. "suggest": {
  8481. "ext-curl": "Required for CURL handler support",
  8482. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8483. "psr/log": "Required for using the Log middleware"
  8484. },
  8485. "type": "library",
  8486. "extra": {
  8487. "bamarni-bin": {
  8488. "bin-links": true,
  8489. "forward-command": false
  8490. }
  8491. },
  8492. "autoload": {
  8493. "files": [
  8494. "src/functions_include.php"
  8495. ],
  8496. "psr-4": {
  8497. "GuzzleHttp\\": "src/"
  8498. }
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "authors": [
  8505. {
  8506. "name": "Graham Campbell",
  8507. "email": "hello@gjcampbell.co.uk",
  8508. "homepage": "https://github.com/GrahamCampbell"
  8509. },
  8510. {
  8511. "name": "Michael Dowling",
  8512. "email": "mtdowling@gmail.com",
  8513. "homepage": "https://github.com/mtdowling"
  8514. },
  8515. {
  8516. "name": "Jeremy Lindblom",
  8517. "email": "jeremeamia@gmail.com",
  8518. "homepage": "https://github.com/jeremeamia"
  8519. },
  8520. {
  8521. "name": "George Mponos",
  8522. "email": "gmponos@gmail.com",
  8523. "homepage": "https://github.com/gmponos"
  8524. },
  8525. {
  8526. "name": "Tobias Nyholm",
  8527. "email": "tobias.nyholm@gmail.com",
  8528. "homepage": "https://github.com/Nyholm"
  8529. },
  8530. {
  8531. "name": "Márk Sági-Kazár",
  8532. "email": "mark.sagikazar@gmail.com",
  8533. "homepage": "https://github.com/sagikazarmark"
  8534. },
  8535. {
  8536. "name": "Tobias Schultze",
  8537. "email": "webmaster@tubo-world.de",
  8538. "homepage": "https://github.com/Tobion"
  8539. }
  8540. ],
  8541. "description": "Guzzle is a PHP HTTP client library",
  8542. "keywords": [
  8543. "client",
  8544. "curl",
  8545. "framework",
  8546. "http",
  8547. "http client",
  8548. "psr-18",
  8549. "psr-7",
  8550. "rest",
  8551. "web service"
  8552. ],
  8553. "support": {
  8554. "issues": "https://github.com/guzzle/guzzle/issues",
  8555. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  8556. },
  8557. "funding": [
  8558. {
  8559. "url": "https://github.com/GrahamCampbell",
  8560. "type": "github"
  8561. },
  8562. {
  8563. "url": "https://github.com/Nyholm",
  8564. "type": "github"
  8565. },
  8566. {
  8567. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8568. "type": "tidelift"
  8569. }
  8570. ],
  8571. "time": "2025-08-23T22:36:01+00:00"
  8572. },
  8573. {
  8574. "name": "guzzlehttp/promises",
  8575. "version": "2.3.0",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/guzzle/promises.git",
  8579. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  8584. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "php": "^7.2.5 || ^8.0"
  8589. },
  8590. "require-dev": {
  8591. "bamarni/composer-bin-plugin": "^1.8.2",
  8592. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8593. },
  8594. "type": "library",
  8595. "extra": {
  8596. "bamarni-bin": {
  8597. "bin-links": true,
  8598. "forward-command": false
  8599. }
  8600. },
  8601. "autoload": {
  8602. "psr-4": {
  8603. "GuzzleHttp\\Promise\\": "src/"
  8604. }
  8605. },
  8606. "notification-url": "https://packagist.org/downloads/",
  8607. "license": [
  8608. "MIT"
  8609. ],
  8610. "authors": [
  8611. {
  8612. "name": "Graham Campbell",
  8613. "email": "hello@gjcampbell.co.uk",
  8614. "homepage": "https://github.com/GrahamCampbell"
  8615. },
  8616. {
  8617. "name": "Michael Dowling",
  8618. "email": "mtdowling@gmail.com",
  8619. "homepage": "https://github.com/mtdowling"
  8620. },
  8621. {
  8622. "name": "Tobias Nyholm",
  8623. "email": "tobias.nyholm@gmail.com",
  8624. "homepage": "https://github.com/Nyholm"
  8625. },
  8626. {
  8627. "name": "Tobias Schultze",
  8628. "email": "webmaster@tubo-world.de",
  8629. "homepage": "https://github.com/Tobion"
  8630. }
  8631. ],
  8632. "description": "Guzzle promises library",
  8633. "keywords": [
  8634. "promise"
  8635. ],
  8636. "support": {
  8637. "issues": "https://github.com/guzzle/promises/issues",
  8638. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  8639. },
  8640. "funding": [
  8641. {
  8642. "url": "https://github.com/GrahamCampbell",
  8643. "type": "github"
  8644. },
  8645. {
  8646. "url": "https://github.com/Nyholm",
  8647. "type": "github"
  8648. },
  8649. {
  8650. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8651. "type": "tidelift"
  8652. }
  8653. ],
  8654. "time": "2025-08-22T14:34:08+00:00"
  8655. },
  8656. {
  8657. "name": "guzzlehttp/psr7",
  8658. "version": "2.8.1",
  8659. "source": {
  8660. "type": "git",
  8661. "url": "https://github.com/guzzle/psr7.git",
  8662. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9"
  8663. },
  8664. "dist": {
  8665. "type": "zip",
  8666. "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9",
  8667. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9",
  8668. "shasum": ""
  8669. },
  8670. "require": {
  8671. "php": "^7.2.5 || ^8.0",
  8672. "psr/http-factory": "^1.0",
  8673. "psr/http-message": "^1.1 || ^2.0",
  8674. "ralouphie/getallheaders": "^3.0"
  8675. },
  8676. "provide": {
  8677. "psr/http-factory-implementation": "1.0",
  8678. "psr/http-message-implementation": "1.0"
  8679. },
  8680. "require-dev": {
  8681. "bamarni/composer-bin-plugin": "^1.8.2",
  8682. "http-interop/http-factory-tests": "0.9.0",
  8683. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8684. },
  8685. "suggest": {
  8686. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "bamarni-bin": {
  8691. "bin-links": true,
  8692. "forward-command": false
  8693. }
  8694. },
  8695. "autoload": {
  8696. "psr-4": {
  8697. "GuzzleHttp\\Psr7\\": "src/"
  8698. }
  8699. },
  8700. "notification-url": "https://packagist.org/downloads/",
  8701. "license": [
  8702. "MIT"
  8703. ],
  8704. "authors": [
  8705. {
  8706. "name": "Graham Campbell",
  8707. "email": "hello@gjcampbell.co.uk",
  8708. "homepage": "https://github.com/GrahamCampbell"
  8709. },
  8710. {
  8711. "name": "Michael Dowling",
  8712. "email": "mtdowling@gmail.com",
  8713. "homepage": "https://github.com/mtdowling"
  8714. },
  8715. {
  8716. "name": "George Mponos",
  8717. "email": "gmponos@gmail.com",
  8718. "homepage": "https://github.com/gmponos"
  8719. },
  8720. {
  8721. "name": "Tobias Nyholm",
  8722. "email": "tobias.nyholm@gmail.com",
  8723. "homepage": "https://github.com/Nyholm"
  8724. },
  8725. {
  8726. "name": "Márk Sági-Kazár",
  8727. "email": "mark.sagikazar@gmail.com",
  8728. "homepage": "https://github.com/sagikazarmark"
  8729. },
  8730. {
  8731. "name": "Tobias Schultze",
  8732. "email": "webmaster@tubo-world.de",
  8733. "homepage": "https://github.com/Tobion"
  8734. },
  8735. {
  8736. "name": "Márk Sági-Kazár",
  8737. "email": "mark.sagikazar@gmail.com",
  8738. "homepage": "https://sagikazarmark.hu"
  8739. }
  8740. ],
  8741. "description": "PSR-7 message implementation that also provides common utility methods",
  8742. "keywords": [
  8743. "http",
  8744. "message",
  8745. "psr-7",
  8746. "request",
  8747. "response",
  8748. "stream",
  8749. "uri",
  8750. "url"
  8751. ],
  8752. "support": {
  8753. "issues": "https://github.com/guzzle/psr7/issues",
  8754. "source": "https://github.com/guzzle/psr7/tree/2.8.1"
  8755. },
  8756. "funding": [
  8757. {
  8758. "url": "https://github.com/GrahamCampbell",
  8759. "type": "github"
  8760. },
  8761. {
  8762. "url": "https://github.com/Nyholm",
  8763. "type": "github"
  8764. },
  8765. {
  8766. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8767. "type": "tidelift"
  8768. }
  8769. ],
  8770. "time": "2026-03-10T09:55:26+00:00"
  8771. },
  8772. {
  8773. "name": "itamair/geophp",
  8774. "version": "1.10",
  8775. "source": {
  8776. "type": "git",
  8777. "url": "https://github.com/itamair/geoPHP.git",
  8778. "reference": "7403410f7252e4d0ce128a705ba8b40613195e16"
  8779. },
  8780. "dist": {
  8781. "type": "zip",
  8782. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/7403410f7252e4d0ce128a705ba8b40613195e16",
  8783. "reference": "7403410f7252e4d0ce128a705ba8b40613195e16",
  8784. "shasum": ""
  8785. },
  8786. "require-dev": {
  8787. "phpunit/phpunit": "4.1.* || 9.5.*"
  8788. },
  8789. "type": "library",
  8790. "autoload": {
  8791. "classmap": [
  8792. "geoPHP.inc"
  8793. ]
  8794. },
  8795. "notification-url": "https://packagist.org/downloads/",
  8796. "license": [
  8797. "GPL-2.0+"
  8798. ],
  8799. "authors": [
  8800. {
  8801. "name": "Italo Mairo",
  8802. "homepage": "https://www.linkedin.com/in/italomairo/",
  8803. "role": "Maintanier of this Library Repo"
  8804. },
  8805. {
  8806. "name": "Patrick Hayes",
  8807. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8808. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8809. }
  8810. ],
  8811. "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.",
  8812. "homepage": "https://github.com/itamair/geoPHP",
  8813. "support": {
  8814. "issues": "https://github.com/itamair/geoPHP/issues",
  8815. "source": "https://github.com/itamair/geoPHP/tree/1.10"
  8816. },
  8817. "time": "2026-03-09T17:22:59+00:00"
  8818. },
  8819. {
  8820. "name": "kint-php/kint",
  8821. "version": "3.3",
  8822. "source": {
  8823. "type": "git",
  8824. "url": "https://github.com/kint-php/kint.git",
  8825. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8826. },
  8827. "dist": {
  8828. "type": "zip",
  8829. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8830. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8831. "shasum": ""
  8832. },
  8833. "require": {
  8834. "php": ">=5.3.6"
  8835. },
  8836. "require-dev": {
  8837. "friendsofphp/php-cs-fixer": "^2.0",
  8838. "phpunit/phpunit": "^4.0",
  8839. "seld/phar-utils": "^1.0",
  8840. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8841. "vimeo/psalm": "^3.0"
  8842. },
  8843. "suggest": {
  8844. "ext-ctype": "Simple data type tests",
  8845. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8846. "ext-mbstring": "Provides string encoding detection",
  8847. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8848. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8849. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8850. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8851. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8852. },
  8853. "type": "library",
  8854. "autoload": {
  8855. "files": [
  8856. "init.php"
  8857. ],
  8858. "psr-4": {
  8859. "Kint\\": "src/"
  8860. }
  8861. },
  8862. "notification-url": "https://packagist.org/downloads/",
  8863. "license": [
  8864. "MIT"
  8865. ],
  8866. "authors": [
  8867. {
  8868. "name": "Jonathan Vollebregt",
  8869. "homepage": "https://github.com/jnvsor"
  8870. },
  8871. {
  8872. "name": "Rokas Šleinius",
  8873. "homepage": "https://github.com/raveren"
  8874. },
  8875. {
  8876. "name": "Contributors",
  8877. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8878. }
  8879. ],
  8880. "description": "Kint - debugging tool for PHP developers",
  8881. "homepage": "https://kint-php.github.io/kint/",
  8882. "keywords": [
  8883. "debug",
  8884. "kint",
  8885. "php"
  8886. ],
  8887. "support": {
  8888. "issues": "https://github.com/kint-php/kint/issues",
  8889. "source": "https://github.com/kint-php/kint/tree/master"
  8890. },
  8891. "time": "2019-10-17T18:05:24+00:00"
  8892. },
  8893. {
  8894. "name": "laravel/prompts",
  8895. "version": "v0.3.13",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/laravel/prompts.git",
  8899. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d",
  8904. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "composer-runtime-api": "^2.2",
  8909. "ext-mbstring": "*",
  8910. "php": "^8.1",
  8911. "symfony/console": "^6.2|^7.0|^8.0"
  8912. },
  8913. "conflict": {
  8914. "illuminate/console": ">=10.17.0 <10.25.0",
  8915. "laravel/framework": ">=10.17.0 <10.25.0"
  8916. },
  8917. "require-dev": {
  8918. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  8919. "mockery/mockery": "^1.5",
  8920. "pestphp/pest": "^2.3|^3.4|^4.0",
  8921. "phpstan/phpstan": "^1.12.28",
  8922. "phpstan/phpstan-mockery": "^1.1.3"
  8923. },
  8924. "suggest": {
  8925. "ext-pcntl": "Required for the spinner to be animated."
  8926. },
  8927. "type": "library",
  8928. "extra": {
  8929. "branch-alias": {
  8930. "dev-main": "0.3.x-dev"
  8931. }
  8932. },
  8933. "autoload": {
  8934. "files": [
  8935. "src/helpers.php"
  8936. ],
  8937. "psr-4": {
  8938. "Laravel\\Prompts\\": "src/"
  8939. }
  8940. },
  8941. "notification-url": "https://packagist.org/downloads/",
  8942. "license": [
  8943. "MIT"
  8944. ],
  8945. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  8946. "support": {
  8947. "issues": "https://github.com/laravel/prompts/issues",
  8948. "source": "https://github.com/laravel/prompts/tree/v0.3.13"
  8949. },
  8950. "time": "2026-02-06T12:17:10+00:00"
  8951. },
  8952. {
  8953. "name": "league/container",
  8954. "version": "4.2.5",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/thephpleague/container.git",
  8958. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8963. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "php": "^7.2 || ^8.0",
  8968. "psr/container": "^1.1 || ^2.0"
  8969. },
  8970. "provide": {
  8971. "psr/container-implementation": "^1.0"
  8972. },
  8973. "replace": {
  8974. "orno/di": "~2.0"
  8975. },
  8976. "require-dev": {
  8977. "nette/php-generator": "^3.4",
  8978. "nikic/php-parser": "^4.10",
  8979. "phpstan/phpstan": "^0.12.47",
  8980. "phpunit/phpunit": "^8.5.17",
  8981. "roave/security-advisories": "dev-latest",
  8982. "scrutinizer/ocular": "^1.8",
  8983. "squizlabs/php_codesniffer": "^3.6"
  8984. },
  8985. "type": "library",
  8986. "extra": {
  8987. "branch-alias": {
  8988. "dev-1.x": "1.x-dev",
  8989. "dev-2.x": "2.x-dev",
  8990. "dev-3.x": "3.x-dev",
  8991. "dev-4.x": "4.x-dev",
  8992. "dev-master": "4.x-dev"
  8993. }
  8994. },
  8995. "autoload": {
  8996. "psr-4": {
  8997. "League\\Container\\": "src"
  8998. }
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Phil Bennett",
  9007. "email": "mail@philbennett.co.uk",
  9008. "role": "Developer"
  9009. }
  9010. ],
  9011. "description": "A fast and intuitive dependency injection container.",
  9012. "homepage": "https://github.com/thephpleague/container",
  9013. "keywords": [
  9014. "container",
  9015. "dependency",
  9016. "di",
  9017. "injection",
  9018. "league",
  9019. "provider",
  9020. "service"
  9021. ],
  9022. "support": {
  9023. "issues": "https://github.com/thephpleague/container/issues",
  9024. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9025. },
  9026. "funding": [
  9027. {
  9028. "url": "https://github.com/philipobenito",
  9029. "type": "github"
  9030. }
  9031. ],
  9032. "time": "2025-05-20T12:55:37+00:00"
  9033. },
  9034. {
  9035. "name": "masterminds/html5",
  9036. "version": "2.10.0",
  9037. "source": {
  9038. "type": "git",
  9039. "url": "https://github.com/Masterminds/html5-php.git",
  9040. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  9041. },
  9042. "dist": {
  9043. "type": "zip",
  9044. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  9045. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  9046. "shasum": ""
  9047. },
  9048. "require": {
  9049. "ext-dom": "*",
  9050. "php": ">=5.3.0"
  9051. },
  9052. "require-dev": {
  9053. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-master": "2.7-dev"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "psr-4": {
  9063. "Masterminds\\": "src"
  9064. }
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "MIT"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Matt Butcher",
  9073. "email": "technosophos@gmail.com"
  9074. },
  9075. {
  9076. "name": "Matt Farina",
  9077. "email": "matt@mattfarina.com"
  9078. },
  9079. {
  9080. "name": "Asmir Mustafic",
  9081. "email": "goetas@gmail.com"
  9082. }
  9083. ],
  9084. "description": "An HTML5 parser and serializer.",
  9085. "homepage": "http://masterminds.github.io/html5-php",
  9086. "keywords": [
  9087. "HTML5",
  9088. "dom",
  9089. "html",
  9090. "parser",
  9091. "querypath",
  9092. "serializer",
  9093. "xml"
  9094. ],
  9095. "support": {
  9096. "issues": "https://github.com/Masterminds/html5-php/issues",
  9097. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  9098. },
  9099. "time": "2025-07-25T09:04:22+00:00"
  9100. },
  9101. {
  9102. "name": "mck89/peast",
  9103. "version": "v1.17.4",
  9104. "source": {
  9105. "type": "git",
  9106. "url": "https://github.com/mck89/peast.git",
  9107. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d"
  9108. },
  9109. "dist": {
  9110. "type": "zip",
  9111. "url": "https://api.github.com/repos/mck89/peast/zipball/c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9112. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9113. "shasum": ""
  9114. },
  9115. "require": {
  9116. "ext-mbstring": "*",
  9117. "php": ">=5.4.0"
  9118. },
  9119. "require-dev": {
  9120. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "1.17.4-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "psr-4": {
  9130. "Peast\\": "lib/Peast/"
  9131. }
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Marco Marchiò",
  9140. "email": "marco.mm89@gmail.com"
  9141. }
  9142. ],
  9143. "description": "Peast is PHP library that generates AST for JavaScript code",
  9144. "support": {
  9145. "issues": "https://github.com/mck89/peast/issues",
  9146. "source": "https://github.com/mck89/peast/tree/v1.17.4"
  9147. },
  9148. "time": "2025-10-10T12:53:17+00:00"
  9149. },
  9150. {
  9151. "name": "mglaman/phpstan-drupal",
  9152. "version": "2.0.11",
  9153. "source": {
  9154. "type": "git",
  9155. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9156. "reference": "4e1caa0940cfc0837e1890b489a7d95c629e2b92"
  9157. },
  9158. "dist": {
  9159. "type": "zip",
  9160. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/4e1caa0940cfc0837e1890b489a7d95c629e2b92",
  9161. "reference": "4e1caa0940cfc0837e1890b489a7d95c629e2b92",
  9162. "shasum": ""
  9163. },
  9164. "require": {
  9165. "php": "^8.1",
  9166. "phpstan/phpstan": "^2.1",
  9167. "phpstan/phpstan-deprecation-rules": "^2.0",
  9168. "symfony/finder": "^6.2 || ^7.0 || ^8.0",
  9169. "symfony/yaml": "^6.2 || ^7.0 || ^8.0",
  9170. "webflo/drupal-finder": "^1.3.1"
  9171. },
  9172. "require-dev": {
  9173. "behat/mink": "^1.10",
  9174. "composer/installers": "^1.9 || ^2",
  9175. "drupal/core-recommended": "^11",
  9176. "drush/drush": "^11 || ^12 || ^13",
  9177. "phpstan/extension-installer": "^1.4.3",
  9178. "phpstan/phpstan-strict-rules": "^2.0",
  9179. "phpunit/phpunit": "^9 || ^10 || ^11",
  9180. "slevomat/coding-standard": "^8.6",
  9181. "squizlabs/php_codesniffer": "^3.7",
  9182. "symfony/phpunit-bridge": "^6.2 || ^7.0 || ^8.0"
  9183. },
  9184. "suggest": {
  9185. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9186. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9187. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9188. },
  9189. "type": "phpstan-extension",
  9190. "extra": {
  9191. "phpstan": {
  9192. "includes": [
  9193. "extension.neon",
  9194. "rules.neon"
  9195. ]
  9196. },
  9197. "installer-paths": {
  9198. "tests/fixtures/drupal/core": [
  9199. "type:drupal-core"
  9200. ],
  9201. "tests/fixtures/drupal/libraries/{$name}": [
  9202. "type:drupal-library"
  9203. ],
  9204. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9205. "type:drupal-theme"
  9206. ],
  9207. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9208. "type:drupal-module"
  9209. ],
  9210. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9211. "type:drupal-profile"
  9212. ]
  9213. }
  9214. },
  9215. "autoload": {
  9216. "psr-4": {
  9217. "mglaman\\PHPStanDrupal\\": "src/"
  9218. }
  9219. },
  9220. "notification-url": "https://packagist.org/downloads/",
  9221. "license": [
  9222. "MIT"
  9223. ],
  9224. "authors": [
  9225. {
  9226. "name": "Matt Glaman",
  9227. "email": "nmd.matt@gmail.com"
  9228. }
  9229. ],
  9230. "description": "Drupal extension and rules for PHPStan",
  9231. "support": {
  9232. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9233. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.11"
  9234. },
  9235. "funding": [
  9236. {
  9237. "url": "https://github.com/mglaman",
  9238. "type": "github"
  9239. },
  9240. {
  9241. "url": "https://opencollective.com/phpstan-drupal",
  9242. "type": "open_collective"
  9243. },
  9244. {
  9245. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9246. "type": "tidelift"
  9247. }
  9248. ],
  9249. "time": "2026-02-25T16:38:53+00:00"
  9250. },
  9251. {
  9252. "name": "nikic/php-parser",
  9253. "version": "v5.7.0",
  9254. "source": {
  9255. "type": "git",
  9256. "url": "https://github.com/nikic/PHP-Parser.git",
  9257. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  9258. },
  9259. "dist": {
  9260. "type": "zip",
  9261. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9262. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9263. "shasum": ""
  9264. },
  9265. "require": {
  9266. "ext-ctype": "*",
  9267. "ext-json": "*",
  9268. "ext-tokenizer": "*",
  9269. "php": ">=7.4"
  9270. },
  9271. "require-dev": {
  9272. "ircmaxell/php-yacc": "^0.0.7",
  9273. "phpunit/phpunit": "^9.0"
  9274. },
  9275. "bin": [
  9276. "bin/php-parse"
  9277. ],
  9278. "type": "library",
  9279. "extra": {
  9280. "branch-alias": {
  9281. "dev-master": "5.x-dev"
  9282. }
  9283. },
  9284. "autoload": {
  9285. "psr-4": {
  9286. "PhpParser\\": "lib/PhpParser"
  9287. }
  9288. },
  9289. "notification-url": "https://packagist.org/downloads/",
  9290. "license": [
  9291. "BSD-3-Clause"
  9292. ],
  9293. "authors": [
  9294. {
  9295. "name": "Nikita Popov"
  9296. }
  9297. ],
  9298. "description": "A PHP parser written in PHP",
  9299. "keywords": [
  9300. "parser",
  9301. "php"
  9302. ],
  9303. "support": {
  9304. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9305. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  9306. },
  9307. "time": "2025-12-06T11:56:16+00:00"
  9308. },
  9309. {
  9310. "name": "pear/archive_tar",
  9311. "version": "1.6.0",
  9312. "source": {
  9313. "type": "git",
  9314. "url": "https://github.com/pear/Archive_Tar.git",
  9315. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  9316. },
  9317. "dist": {
  9318. "type": "zip",
  9319. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9320. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9321. "shasum": ""
  9322. },
  9323. "require": {
  9324. "pear/pear-core-minimal": "^1.10.0alpha2",
  9325. "php": ">=5.4.0"
  9326. },
  9327. "require-dev": {
  9328. "phpunit/phpunit": "*"
  9329. },
  9330. "suggest": {
  9331. "ext-bz2": "Bz2 compression support.",
  9332. "ext-xz": "Lzma2 compression support.",
  9333. "ext-zlib": "Gzip compression support."
  9334. },
  9335. "type": "library",
  9336. "extra": {
  9337. "branch-alias": {
  9338. "dev-master": "1.4.x-dev"
  9339. }
  9340. },
  9341. "autoload": {
  9342. "psr-0": {
  9343. "Archive_Tar": ""
  9344. }
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "include-path": [
  9348. "./"
  9349. ],
  9350. "license": [
  9351. "BSD-2-Clause"
  9352. ],
  9353. "authors": [
  9354. {
  9355. "name": "Vincent Blavet",
  9356. "email": "vincent@phpconcept.net"
  9357. },
  9358. {
  9359. "name": "Greg Beaver",
  9360. "email": "greg@chiaraquartet.net"
  9361. },
  9362. {
  9363. "name": "Michiel Rook",
  9364. "email": "mrook@php.net"
  9365. }
  9366. ],
  9367. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9368. "homepage": "https://github.com/pear/Archive_Tar",
  9369. "keywords": [
  9370. "archive",
  9371. "tar"
  9372. ],
  9373. "support": {
  9374. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9375. "source": "https://github.com/pear/Archive_Tar"
  9376. },
  9377. "time": "2025-07-19T14:49:16+00:00"
  9378. },
  9379. {
  9380. "name": "pear/console_getopt",
  9381. "version": "v1.4.3",
  9382. "source": {
  9383. "type": "git",
  9384. "url": "https://github.com/pear/Console_Getopt.git",
  9385. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9386. },
  9387. "dist": {
  9388. "type": "zip",
  9389. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9390. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9391. "shasum": ""
  9392. },
  9393. "type": "library",
  9394. "autoload": {
  9395. "psr-0": {
  9396. "Console": "./"
  9397. }
  9398. },
  9399. "notification-url": "https://packagist.org/downloads/",
  9400. "include-path": [
  9401. "./"
  9402. ],
  9403. "license": [
  9404. "BSD-2-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Andrei Zmievski",
  9409. "email": "andrei@php.net",
  9410. "role": "Lead"
  9411. },
  9412. {
  9413. "name": "Stig Bakken",
  9414. "email": "stig@php.net",
  9415. "role": "Developer"
  9416. },
  9417. {
  9418. "name": "Greg Beaver",
  9419. "email": "cellog@php.net",
  9420. "role": "Helper"
  9421. }
  9422. ],
  9423. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9424. "support": {
  9425. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9426. "source": "https://github.com/pear/Console_Getopt"
  9427. },
  9428. "abandoned": true,
  9429. "time": "2019-11-20T18:27:48+00:00"
  9430. },
  9431. {
  9432. "name": "pear/pear-core-minimal",
  9433. "version": "v1.10.18",
  9434. "source": {
  9435. "type": "git",
  9436. "url": "https://github.com/pear/pear-core-minimal.git",
  9437. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  9438. },
  9439. "dist": {
  9440. "type": "zip",
  9441. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9442. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9443. "shasum": ""
  9444. },
  9445. "require": {
  9446. "pear/console_getopt": "~1.4",
  9447. "pear/pear_exception": "~1.0",
  9448. "php": ">=5.4"
  9449. },
  9450. "replace": {
  9451. "rsky/pear-core-min": "self.version"
  9452. },
  9453. "type": "library",
  9454. "autoload": {
  9455. "classmap": [
  9456. "src/"
  9457. ]
  9458. },
  9459. "notification-url": "https://packagist.org/downloads/",
  9460. "include-path": [
  9461. "src/"
  9462. ],
  9463. "license": [
  9464. "BSD-3-Clause"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Christian Weiske",
  9469. "email": "cweiske@php.net",
  9470. "role": "Lead"
  9471. }
  9472. ],
  9473. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9474. "support": {
  9475. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9476. "source": "https://github.com/pear/pear-core-minimal"
  9477. },
  9478. "time": "2025-12-14T20:37:07+00:00"
  9479. },
  9480. {
  9481. "name": "pear/pear_exception",
  9482. "version": "v1.0.2",
  9483. "source": {
  9484. "type": "git",
  9485. "url": "https://github.com/pear/PEAR_Exception.git",
  9486. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9487. },
  9488. "dist": {
  9489. "type": "zip",
  9490. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9491. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9492. "shasum": ""
  9493. },
  9494. "require": {
  9495. "php": ">=5.2.0"
  9496. },
  9497. "require-dev": {
  9498. "phpunit/phpunit": "<9"
  9499. },
  9500. "type": "class",
  9501. "extra": {
  9502. "branch-alias": {
  9503. "dev-master": "1.0.x-dev"
  9504. }
  9505. },
  9506. "autoload": {
  9507. "classmap": [
  9508. "PEAR/"
  9509. ]
  9510. },
  9511. "notification-url": "https://packagist.org/downloads/",
  9512. "include-path": [
  9513. "."
  9514. ],
  9515. "license": [
  9516. "BSD-2-Clause"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Helgi Thormar",
  9521. "email": "dufuz@php.net"
  9522. },
  9523. {
  9524. "name": "Greg Beaver",
  9525. "email": "cellog@php.net"
  9526. }
  9527. ],
  9528. "description": "The PEAR Exception base class.",
  9529. "homepage": "https://github.com/pear/PEAR_Exception",
  9530. "keywords": [
  9531. "exception"
  9532. ],
  9533. "support": {
  9534. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9535. "source": "https://github.com/pear/PEAR_Exception"
  9536. },
  9537. "time": "2021-03-21T15:43:46+00:00"
  9538. },
  9539. {
  9540. "name": "phootwork/collection",
  9541. "version": "v3.2.3",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/phootwork/collection.git",
  9545. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9550. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "phootwork/lang": "^3.0",
  9555. "php": ">=8.0"
  9556. },
  9557. "type": "library",
  9558. "autoload": {
  9559. "psr-4": {
  9560. "phootwork\\collection\\": ""
  9561. }
  9562. },
  9563. "notification-url": "https://packagist.org/downloads/",
  9564. "license": [
  9565. "MIT"
  9566. ],
  9567. "authors": [
  9568. {
  9569. "name": "Thomas Gossmann",
  9570. "homepage": "http://gos.si"
  9571. }
  9572. ],
  9573. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9574. "homepage": "https://phootwork.github.io/collection/",
  9575. "keywords": [
  9576. "Array object",
  9577. "Text object",
  9578. "collection",
  9579. "collections",
  9580. "json",
  9581. "list",
  9582. "map",
  9583. "queue",
  9584. "set",
  9585. "stack",
  9586. "xml"
  9587. ],
  9588. "support": {
  9589. "issues": "https://github.com/phootwork/phootwork/issues",
  9590. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9591. },
  9592. "time": "2022-08-27T12:51:24+00:00"
  9593. },
  9594. {
  9595. "name": "phootwork/lang",
  9596. "version": "v3.2.3",
  9597. "source": {
  9598. "type": "git",
  9599. "url": "https://github.com/phootwork/lang.git",
  9600. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9601. },
  9602. "dist": {
  9603. "type": "zip",
  9604. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9605. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9606. "shasum": ""
  9607. },
  9608. "require": {
  9609. "php": ">=8.0",
  9610. "symfony/polyfill-mbstring": "^1.12",
  9611. "symfony/polyfill-php81": "^1.22"
  9612. },
  9613. "type": "library",
  9614. "autoload": {
  9615. "psr-4": {
  9616. "phootwork\\lang\\": ""
  9617. }
  9618. },
  9619. "notification-url": "https://packagist.org/downloads/",
  9620. "license": [
  9621. "MIT"
  9622. ],
  9623. "authors": [
  9624. {
  9625. "name": "Thomas Gossmann",
  9626. "homepage": "http://gos.si"
  9627. }
  9628. ],
  9629. "description": "Missing PHP language constructs",
  9630. "homepage": "https://phootwork.github.io/lang/",
  9631. "keywords": [
  9632. "array",
  9633. "comparator",
  9634. "comparison",
  9635. "string"
  9636. ],
  9637. "support": {
  9638. "issues": "https://github.com/phootwork/phootwork/issues",
  9639. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9640. },
  9641. "time": "2024-10-03T13:43:19+00:00"
  9642. },
  9643. {
  9644. "name": "php-http/discovery",
  9645. "version": "1.20.0",
  9646. "source": {
  9647. "type": "git",
  9648. "url": "https://github.com/php-http/discovery.git",
  9649. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9650. },
  9651. "dist": {
  9652. "type": "zip",
  9653. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9654. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9655. "shasum": ""
  9656. },
  9657. "require": {
  9658. "composer-plugin-api": "^1.0|^2.0",
  9659. "php": "^7.1 || ^8.0"
  9660. },
  9661. "conflict": {
  9662. "nyholm/psr7": "<1.0",
  9663. "zendframework/zend-diactoros": "*"
  9664. },
  9665. "provide": {
  9666. "php-http/async-client-implementation": "*",
  9667. "php-http/client-implementation": "*",
  9668. "psr/http-client-implementation": "*",
  9669. "psr/http-factory-implementation": "*",
  9670. "psr/http-message-implementation": "*"
  9671. },
  9672. "require-dev": {
  9673. "composer/composer": "^1.0.2|^2.0",
  9674. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9675. "php-http/httplug": "^1.0 || ^2.0",
  9676. "php-http/message-factory": "^1.0",
  9677. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9678. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9679. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9680. },
  9681. "type": "composer-plugin",
  9682. "extra": {
  9683. "class": "Http\\Discovery\\Composer\\Plugin",
  9684. "plugin-optional": true
  9685. },
  9686. "autoload": {
  9687. "psr-4": {
  9688. "Http\\Discovery\\": "src/"
  9689. },
  9690. "exclude-from-classmap": [
  9691. "src/Composer/Plugin.php"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "MIT"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Márk Sági-Kazár",
  9701. "email": "mark.sagikazar@gmail.com"
  9702. }
  9703. ],
  9704. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9705. "homepage": "http://php-http.org",
  9706. "keywords": [
  9707. "adapter",
  9708. "client",
  9709. "discovery",
  9710. "factory",
  9711. "http",
  9712. "message",
  9713. "psr17",
  9714. "psr7"
  9715. ],
  9716. "support": {
  9717. "issues": "https://github.com/php-http/discovery/issues",
  9718. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9719. },
  9720. "time": "2024-10-02T11:20:13+00:00"
  9721. },
  9722. {
  9723. "name": "php-http/guzzle7-adapter",
  9724. "version": "1.1.0",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9728. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9733. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9734. "shasum": ""
  9735. },
  9736. "require": {
  9737. "guzzlehttp/guzzle": "^7.0",
  9738. "php": "^7.3 | ^8.0",
  9739. "php-http/httplug": "^2.0",
  9740. "psr/http-client": "^1.0"
  9741. },
  9742. "provide": {
  9743. "php-http/async-client-implementation": "1.0",
  9744. "php-http/client-implementation": "1.0",
  9745. "psr/http-client-implementation": "1.0"
  9746. },
  9747. "require-dev": {
  9748. "php-http/client-integration-tests": "^3.0",
  9749. "php-http/message-factory": "^1.1",
  9750. "phpspec/prophecy-phpunit": "^2.0",
  9751. "phpunit/phpunit": "^8.0|^9.3"
  9752. },
  9753. "type": "library",
  9754. "autoload": {
  9755. "psr-4": {
  9756. "Http\\Adapter\\Guzzle7\\": "src/"
  9757. }
  9758. },
  9759. "notification-url": "https://packagist.org/downloads/",
  9760. "license": [
  9761. "MIT"
  9762. ],
  9763. "authors": [
  9764. {
  9765. "name": "Tobias Nyholm",
  9766. "email": "tobias.nyholm@gmail.com"
  9767. }
  9768. ],
  9769. "description": "Guzzle 7 HTTP Adapter",
  9770. "homepage": "http://httplug.io",
  9771. "keywords": [
  9772. "Guzzle",
  9773. "http"
  9774. ],
  9775. "support": {
  9776. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9777. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9778. },
  9779. "time": "2024-11-26T11:14:36+00:00"
  9780. },
  9781. {
  9782. "name": "php-http/httplug",
  9783. "version": "2.4.1",
  9784. "source": {
  9785. "type": "git",
  9786. "url": "https://github.com/php-http/httplug.git",
  9787. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9788. },
  9789. "dist": {
  9790. "type": "zip",
  9791. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9792. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9793. "shasum": ""
  9794. },
  9795. "require": {
  9796. "php": "^7.1 || ^8.0",
  9797. "php-http/promise": "^1.1",
  9798. "psr/http-client": "^1.0",
  9799. "psr/http-message": "^1.0 || ^2.0"
  9800. },
  9801. "require-dev": {
  9802. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9803. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9804. },
  9805. "type": "library",
  9806. "autoload": {
  9807. "psr-4": {
  9808. "Http\\Client\\": "src/"
  9809. }
  9810. },
  9811. "notification-url": "https://packagist.org/downloads/",
  9812. "license": [
  9813. "MIT"
  9814. ],
  9815. "authors": [
  9816. {
  9817. "name": "Eric GELOEN",
  9818. "email": "geloen.eric@gmail.com"
  9819. },
  9820. {
  9821. "name": "Márk Sági-Kazár",
  9822. "email": "mark.sagikazar@gmail.com",
  9823. "homepage": "https://sagikazarmark.hu"
  9824. }
  9825. ],
  9826. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9827. "homepage": "http://httplug.io",
  9828. "keywords": [
  9829. "client",
  9830. "http"
  9831. ],
  9832. "support": {
  9833. "issues": "https://github.com/php-http/httplug/issues",
  9834. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9835. },
  9836. "time": "2024-09-23T11:39:58+00:00"
  9837. },
  9838. {
  9839. "name": "php-http/message",
  9840. "version": "1.16.2",
  9841. "source": {
  9842. "type": "git",
  9843. "url": "https://github.com/php-http/message.git",
  9844. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9845. },
  9846. "dist": {
  9847. "type": "zip",
  9848. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9849. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9850. "shasum": ""
  9851. },
  9852. "require": {
  9853. "clue/stream-filter": "^1.5",
  9854. "php": "^7.2 || ^8.0",
  9855. "psr/http-message": "^1.1 || ^2.0"
  9856. },
  9857. "provide": {
  9858. "php-http/message-factory-implementation": "1.0"
  9859. },
  9860. "require-dev": {
  9861. "ergebnis/composer-normalize": "^2.6",
  9862. "ext-zlib": "*",
  9863. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9864. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9865. "php-http/message-factory": "^1.0.2",
  9866. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9867. "slim/slim": "^3.0"
  9868. },
  9869. "suggest": {
  9870. "ext-zlib": "Used with compressor/decompressor streams",
  9871. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9872. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9873. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9874. },
  9875. "type": "library",
  9876. "autoload": {
  9877. "files": [
  9878. "src/filters.php"
  9879. ],
  9880. "psr-4": {
  9881. "Http\\Message\\": "src/"
  9882. }
  9883. },
  9884. "notification-url": "https://packagist.org/downloads/",
  9885. "license": [
  9886. "MIT"
  9887. ],
  9888. "authors": [
  9889. {
  9890. "name": "Márk Sági-Kazár",
  9891. "email": "mark.sagikazar@gmail.com"
  9892. }
  9893. ],
  9894. "description": "HTTP Message related tools",
  9895. "homepage": "http://php-http.org",
  9896. "keywords": [
  9897. "http",
  9898. "message",
  9899. "psr-7"
  9900. ],
  9901. "support": {
  9902. "issues": "https://github.com/php-http/message/issues",
  9903. "source": "https://github.com/php-http/message/tree/1.16.2"
  9904. },
  9905. "time": "2024-10-02T11:34:13+00:00"
  9906. },
  9907. {
  9908. "name": "php-http/promise",
  9909. "version": "1.3.1",
  9910. "source": {
  9911. "type": "git",
  9912. "url": "https://github.com/php-http/promise.git",
  9913. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9914. },
  9915. "dist": {
  9916. "type": "zip",
  9917. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9918. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9919. "shasum": ""
  9920. },
  9921. "require": {
  9922. "php": "^7.1 || ^8.0"
  9923. },
  9924. "require-dev": {
  9925. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9926. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9927. },
  9928. "type": "library",
  9929. "autoload": {
  9930. "psr-4": {
  9931. "Http\\Promise\\": "src/"
  9932. }
  9933. },
  9934. "notification-url": "https://packagist.org/downloads/",
  9935. "license": [
  9936. "MIT"
  9937. ],
  9938. "authors": [
  9939. {
  9940. "name": "Joel Wurtz",
  9941. "email": "joel.wurtz@gmail.com"
  9942. },
  9943. {
  9944. "name": "Márk Sági-Kazár",
  9945. "email": "mark.sagikazar@gmail.com"
  9946. }
  9947. ],
  9948. "description": "Promise used for asynchronous HTTP requests",
  9949. "homepage": "http://httplug.io",
  9950. "keywords": [
  9951. "promise"
  9952. ],
  9953. "support": {
  9954. "issues": "https://github.com/php-http/promise/issues",
  9955. "source": "https://github.com/php-http/promise/tree/1.3.1"
  9956. },
  9957. "time": "2024-03-15T13:55:21+00:00"
  9958. },
  9959. {
  9960. "name": "phpmailer/phpmailer",
  9961. "version": "v6.10.0",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9965. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9970. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "ext-ctype": "*",
  9975. "ext-filter": "*",
  9976. "ext-hash": "*",
  9977. "php": ">=5.5.0"
  9978. },
  9979. "require-dev": {
  9980. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9981. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9982. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9983. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9984. "phpcompatibility/php-compatibility": "^9.3.5",
  9985. "roave/security-advisories": "dev-latest",
  9986. "squizlabs/php_codesniffer": "^3.7.2",
  9987. "yoast/phpunit-polyfills": "^1.0.4"
  9988. },
  9989. "suggest": {
  9990. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  9991. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9992. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9993. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9994. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9995. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9996. "psr/log": "For optional PSR-3 debug logging",
  9997. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9998. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9999. },
  10000. "type": "library",
  10001. "autoload": {
  10002. "psr-4": {
  10003. "PHPMailer\\PHPMailer\\": "src/"
  10004. }
  10005. },
  10006. "notification-url": "https://packagist.org/downloads/",
  10007. "license": [
  10008. "LGPL-2.1-only"
  10009. ],
  10010. "authors": [
  10011. {
  10012. "name": "Marcus Bointon",
  10013. "email": "phpmailer@synchromedia.co.uk"
  10014. },
  10015. {
  10016. "name": "Jim Jagielski",
  10017. "email": "jimjag@gmail.com"
  10018. },
  10019. {
  10020. "name": "Andy Prevost",
  10021. "email": "codeworxtech@users.sourceforge.net"
  10022. },
  10023. {
  10024. "name": "Brent R. Matzelle"
  10025. }
  10026. ],
  10027. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10028. "support": {
  10029. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10030. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10031. },
  10032. "funding": [
  10033. {
  10034. "url": "https://github.com/Synchro",
  10035. "type": "github"
  10036. }
  10037. ],
  10038. "time": "2025-04-24T15:19:31+00:00"
  10039. },
  10040. {
  10041. "name": "phpowermove/docblock",
  10042. "version": "v4.0",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/phpowermove/docblock.git",
  10046. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10051. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10052. "shasum": ""
  10053. },
  10054. "require": {
  10055. "phootwork/collection": "^3.0",
  10056. "phootwork/lang": "^3.0",
  10057. "php": ">=8.0"
  10058. },
  10059. "require-dev": {
  10060. "phootwork/php-cs-fixer-config": "^0.4",
  10061. "phpunit/phpunit": "^9.0",
  10062. "psalm/phar": "^4.3"
  10063. },
  10064. "type": "library",
  10065. "autoload": {
  10066. "psr-4": {
  10067. "phpowermove\\docblock\\": "src/"
  10068. }
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Thomas Gossmann",
  10077. "homepage": "http://gos.si"
  10078. }
  10079. ],
  10080. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10081. "keywords": [
  10082. "docblock",
  10083. "generator",
  10084. "parser"
  10085. ],
  10086. "support": {
  10087. "issues": "https://github.com/phpowermove/docblock/issues",
  10088. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10089. },
  10090. "time": "2021-09-22T16:57:06+00:00"
  10091. },
  10092. {
  10093. "name": "phpstan/phpstan",
  10094. "version": "2.1.40",
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b2c7aeb83a75d8680ea5e7c9b7fca88052b766b",
  10098. "reference": "9b2c7aeb83a75d8680ea5e7c9b7fca88052b766b",
  10099. "shasum": ""
  10100. },
  10101. "require": {
  10102. "php": "^7.4|^8.0"
  10103. },
  10104. "conflict": {
  10105. "phpstan/phpstan-shim": "*"
  10106. },
  10107. "bin": [
  10108. "phpstan",
  10109. "phpstan.phar"
  10110. ],
  10111. "type": "library",
  10112. "autoload": {
  10113. "files": [
  10114. "bootstrap.php"
  10115. ]
  10116. },
  10117. "notification-url": "https://packagist.org/downloads/",
  10118. "license": [
  10119. "MIT"
  10120. ],
  10121. "description": "PHPStan - PHP Static Analysis Tool",
  10122. "keywords": [
  10123. "dev",
  10124. "static analysis"
  10125. ],
  10126. "support": {
  10127. "docs": "https://phpstan.org/user-guide/getting-started",
  10128. "forum": "https://github.com/phpstan/phpstan/discussions",
  10129. "issues": "https://github.com/phpstan/phpstan/issues",
  10130. "security": "https://github.com/phpstan/phpstan/security/policy",
  10131. "source": "https://github.com/phpstan/phpstan-src"
  10132. },
  10133. "funding": [
  10134. {
  10135. "url": "https://github.com/ondrejmirtes",
  10136. "type": "github"
  10137. },
  10138. {
  10139. "url": "https://github.com/phpstan",
  10140. "type": "github"
  10141. }
  10142. ],
  10143. "time": "2026-02-23T15:04:35+00:00"
  10144. },
  10145. {
  10146. "name": "phpstan/phpstan-deprecation-rules",
  10147. "version": "2.0.4",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10151. "reference": "6b5571001a7f04fa0422254c30a0017ec2f2cacc"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/6b5571001a7f04fa0422254c30a0017ec2f2cacc",
  10156. "reference": "6b5571001a7f04fa0422254c30a0017ec2f2cacc",
  10157. "shasum": ""
  10158. },
  10159. "require": {
  10160. "php": "^7.4 || ^8.0",
  10161. "phpstan/phpstan": "^2.1.39"
  10162. },
  10163. "require-dev": {
  10164. "php-parallel-lint/php-parallel-lint": "^1.2",
  10165. "phpstan/phpstan-phpunit": "^2.0",
  10166. "phpunit/phpunit": "^9.6"
  10167. },
  10168. "type": "phpstan-extension",
  10169. "extra": {
  10170. "phpstan": {
  10171. "includes": [
  10172. "rules.neon"
  10173. ]
  10174. }
  10175. },
  10176. "autoload": {
  10177. "psr-4": {
  10178. "PHPStan\\": "src/"
  10179. }
  10180. },
  10181. "notification-url": "https://packagist.org/downloads/",
  10182. "license": [
  10183. "MIT"
  10184. ],
  10185. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10186. "keywords": [
  10187. "static analysis"
  10188. ],
  10189. "support": {
  10190. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10191. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.4"
  10192. },
  10193. "time": "2026-02-09T13:21:14+00:00"
  10194. },
  10195. {
  10196. "name": "politsin/jquery-ui-touch-punch",
  10197. "version": "1.0",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10201. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10206. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10207. "shasum": ""
  10208. },
  10209. "type": "drupal-library",
  10210. "notification-url": "https://packagist.org/downloads/",
  10211. "license": [
  10212. "MIT"
  10213. ],
  10214. "authors": [
  10215. {
  10216. "name": "Dave Furfero",
  10217. "email": "furf@furf.com"
  10218. }
  10219. ],
  10220. "description": "Extension to jQuery UI for mobile touch event support.",
  10221. "homepage": "http://touchpunch.furf.com/",
  10222. "keywords": [
  10223. "gestures",
  10224. "mobile",
  10225. "touch"
  10226. ],
  10227. "support": {
  10228. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10229. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10230. },
  10231. "time": "2020-12-15T10:26:18+00:00"
  10232. },
  10233. {
  10234. "name": "psr/cache",
  10235. "version": "3.0.0",
  10236. "source": {
  10237. "type": "git",
  10238. "url": "https://github.com/php-fig/cache.git",
  10239. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10240. },
  10241. "dist": {
  10242. "type": "zip",
  10243. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10244. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10245. "shasum": ""
  10246. },
  10247. "require": {
  10248. "php": ">=8.0.0"
  10249. },
  10250. "type": "library",
  10251. "extra": {
  10252. "branch-alias": {
  10253. "dev-master": "1.0.x-dev"
  10254. }
  10255. },
  10256. "autoload": {
  10257. "psr-4": {
  10258. "Psr\\Cache\\": "src/"
  10259. }
  10260. },
  10261. "notification-url": "https://packagist.org/downloads/",
  10262. "license": [
  10263. "MIT"
  10264. ],
  10265. "authors": [
  10266. {
  10267. "name": "PHP-FIG",
  10268. "homepage": "https://www.php-fig.org/"
  10269. }
  10270. ],
  10271. "description": "Common interface for caching libraries",
  10272. "keywords": [
  10273. "cache",
  10274. "psr",
  10275. "psr-6"
  10276. ],
  10277. "support": {
  10278. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10279. },
  10280. "time": "2021-02-03T23:26:27+00:00"
  10281. },
  10282. {
  10283. "name": "psr/container",
  10284. "version": "2.0.2",
  10285. "source": {
  10286. "type": "git",
  10287. "url": "https://github.com/php-fig/container.git",
  10288. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10289. },
  10290. "dist": {
  10291. "type": "zip",
  10292. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10293. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10294. "shasum": ""
  10295. },
  10296. "require": {
  10297. "php": ">=7.4.0"
  10298. },
  10299. "type": "library",
  10300. "extra": {
  10301. "branch-alias": {
  10302. "dev-master": "2.0.x-dev"
  10303. }
  10304. },
  10305. "autoload": {
  10306. "psr-4": {
  10307. "Psr\\Container\\": "src/"
  10308. }
  10309. },
  10310. "notification-url": "https://packagist.org/downloads/",
  10311. "license": [
  10312. "MIT"
  10313. ],
  10314. "authors": [
  10315. {
  10316. "name": "PHP-FIG",
  10317. "homepage": "https://www.php-fig.org/"
  10318. }
  10319. ],
  10320. "description": "Common Container Interface (PHP FIG PSR-11)",
  10321. "homepage": "https://github.com/php-fig/container",
  10322. "keywords": [
  10323. "PSR-11",
  10324. "container",
  10325. "container-interface",
  10326. "container-interop",
  10327. "psr"
  10328. ],
  10329. "support": {
  10330. "issues": "https://github.com/php-fig/container/issues",
  10331. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10332. },
  10333. "time": "2021-11-05T16:47:00+00:00"
  10334. },
  10335. {
  10336. "name": "psr/event-dispatcher",
  10337. "version": "1.0.0",
  10338. "source": {
  10339. "type": "git",
  10340. "url": "https://github.com/php-fig/event-dispatcher.git",
  10341. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10342. },
  10343. "dist": {
  10344. "type": "zip",
  10345. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10346. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10347. "shasum": ""
  10348. },
  10349. "require": {
  10350. "php": ">=7.2.0"
  10351. },
  10352. "type": "library",
  10353. "extra": {
  10354. "branch-alias": {
  10355. "dev-master": "1.0.x-dev"
  10356. }
  10357. },
  10358. "autoload": {
  10359. "psr-4": {
  10360. "Psr\\EventDispatcher\\": "src/"
  10361. }
  10362. },
  10363. "notification-url": "https://packagist.org/downloads/",
  10364. "license": [
  10365. "MIT"
  10366. ],
  10367. "authors": [
  10368. {
  10369. "name": "PHP-FIG",
  10370. "homepage": "http://www.php-fig.org/"
  10371. }
  10372. ],
  10373. "description": "Standard interfaces for event handling.",
  10374. "keywords": [
  10375. "events",
  10376. "psr",
  10377. "psr-14"
  10378. ],
  10379. "support": {
  10380. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10381. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10382. },
  10383. "time": "2019-01-08T18:20:26+00:00"
  10384. },
  10385. {
  10386. "name": "psr/http-client",
  10387. "version": "1.0.3",
  10388. "source": {
  10389. "type": "git",
  10390. "url": "https://github.com/php-fig/http-client.git",
  10391. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10392. },
  10393. "dist": {
  10394. "type": "zip",
  10395. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10396. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10397. "shasum": ""
  10398. },
  10399. "require": {
  10400. "php": "^7.0 || ^8.0",
  10401. "psr/http-message": "^1.0 || ^2.0"
  10402. },
  10403. "type": "library",
  10404. "extra": {
  10405. "branch-alias": {
  10406. "dev-master": "1.0.x-dev"
  10407. }
  10408. },
  10409. "autoload": {
  10410. "psr-4": {
  10411. "Psr\\Http\\Client\\": "src/"
  10412. }
  10413. },
  10414. "notification-url": "https://packagist.org/downloads/",
  10415. "license": [
  10416. "MIT"
  10417. ],
  10418. "authors": [
  10419. {
  10420. "name": "PHP-FIG",
  10421. "homepage": "https://www.php-fig.org/"
  10422. }
  10423. ],
  10424. "description": "Common interface for HTTP clients",
  10425. "homepage": "https://github.com/php-fig/http-client",
  10426. "keywords": [
  10427. "http",
  10428. "http-client",
  10429. "psr",
  10430. "psr-18"
  10431. ],
  10432. "support": {
  10433. "source": "https://github.com/php-fig/http-client"
  10434. },
  10435. "time": "2023-09-23T14:17:50+00:00"
  10436. },
  10437. {
  10438. "name": "psr/http-factory",
  10439. "version": "1.1.0",
  10440. "source": {
  10441. "type": "git",
  10442. "url": "https://github.com/php-fig/http-factory.git",
  10443. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10444. },
  10445. "dist": {
  10446. "type": "zip",
  10447. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10448. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10449. "shasum": ""
  10450. },
  10451. "require": {
  10452. "php": ">=7.1",
  10453. "psr/http-message": "^1.0 || ^2.0"
  10454. },
  10455. "type": "library",
  10456. "extra": {
  10457. "branch-alias": {
  10458. "dev-master": "1.0.x-dev"
  10459. }
  10460. },
  10461. "autoload": {
  10462. "psr-4": {
  10463. "Psr\\Http\\Message\\": "src/"
  10464. }
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "MIT"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "PHP-FIG",
  10473. "homepage": "https://www.php-fig.org/"
  10474. }
  10475. ],
  10476. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10477. "keywords": [
  10478. "factory",
  10479. "http",
  10480. "message",
  10481. "psr",
  10482. "psr-17",
  10483. "psr-7",
  10484. "request",
  10485. "response"
  10486. ],
  10487. "support": {
  10488. "source": "https://github.com/php-fig/http-factory"
  10489. },
  10490. "time": "2024-04-15T12:06:14+00:00"
  10491. },
  10492. {
  10493. "name": "psr/http-message",
  10494. "version": "2.0",
  10495. "source": {
  10496. "type": "git",
  10497. "url": "https://github.com/php-fig/http-message.git",
  10498. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10499. },
  10500. "dist": {
  10501. "type": "zip",
  10502. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10503. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10504. "shasum": ""
  10505. },
  10506. "require": {
  10507. "php": "^7.2 || ^8.0"
  10508. },
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-master": "2.0.x-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "psr-4": {
  10517. "Psr\\Http\\Message\\": "src/"
  10518. }
  10519. },
  10520. "notification-url": "https://packagist.org/downloads/",
  10521. "license": [
  10522. "MIT"
  10523. ],
  10524. "authors": [
  10525. {
  10526. "name": "PHP-FIG",
  10527. "homepage": "https://www.php-fig.org/"
  10528. }
  10529. ],
  10530. "description": "Common interface for HTTP messages",
  10531. "homepage": "https://github.com/php-fig/http-message",
  10532. "keywords": [
  10533. "http",
  10534. "http-message",
  10535. "psr",
  10536. "psr-7",
  10537. "request",
  10538. "response"
  10539. ],
  10540. "support": {
  10541. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10542. },
  10543. "time": "2023-04-04T09:54:51+00:00"
  10544. },
  10545. {
  10546. "name": "psr/log",
  10547. "version": "3.0.2",
  10548. "source": {
  10549. "type": "git",
  10550. "url": "https://github.com/php-fig/log.git",
  10551. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10552. },
  10553. "dist": {
  10554. "type": "zip",
  10555. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10556. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10557. "shasum": ""
  10558. },
  10559. "require": {
  10560. "php": ">=8.0.0"
  10561. },
  10562. "type": "library",
  10563. "extra": {
  10564. "branch-alias": {
  10565. "dev-master": "3.x-dev"
  10566. }
  10567. },
  10568. "autoload": {
  10569. "psr-4": {
  10570. "Psr\\Log\\": "src"
  10571. }
  10572. },
  10573. "notification-url": "https://packagist.org/downloads/",
  10574. "license": [
  10575. "MIT"
  10576. ],
  10577. "authors": [
  10578. {
  10579. "name": "PHP-FIG",
  10580. "homepage": "https://www.php-fig.org/"
  10581. }
  10582. ],
  10583. "description": "Common interface for logging libraries",
  10584. "homepage": "https://github.com/php-fig/log",
  10585. "keywords": [
  10586. "log",
  10587. "psr",
  10588. "psr-3"
  10589. ],
  10590. "support": {
  10591. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10592. },
  10593. "time": "2024-09-11T13:17:53+00:00"
  10594. },
  10595. {
  10596. "name": "psy/psysh",
  10597. "version": "v0.12.21",
  10598. "source": {
  10599. "type": "git",
  10600. "url": "https://github.com/bobthecow/psysh.git",
  10601. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97"
  10602. },
  10603. "dist": {
  10604. "type": "zip",
  10605. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10606. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10607. "shasum": ""
  10608. },
  10609. "require": {
  10610. "ext-json": "*",
  10611. "ext-tokenizer": "*",
  10612. "nikic/php-parser": "^5.0 || ^4.0",
  10613. "php": "^8.0 || ^7.4",
  10614. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10615. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10616. },
  10617. "conflict": {
  10618. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10619. },
  10620. "require-dev": {
  10621. "bamarni/composer-bin-plugin": "^1.2",
  10622. "composer/class-map-generator": "^1.6"
  10623. },
  10624. "suggest": {
  10625. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  10626. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10627. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10628. },
  10629. "bin": [
  10630. "bin/psysh"
  10631. ],
  10632. "type": "library",
  10633. "extra": {
  10634. "bamarni-bin": {
  10635. "bin-links": false,
  10636. "forward-command": false
  10637. },
  10638. "branch-alias": {
  10639. "dev-main": "0.12.x-dev"
  10640. }
  10641. },
  10642. "autoload": {
  10643. "files": [
  10644. "src/functions.php"
  10645. ],
  10646. "psr-4": {
  10647. "Psy\\": "src/"
  10648. }
  10649. },
  10650. "notification-url": "https://packagist.org/downloads/",
  10651. "license": [
  10652. "MIT"
  10653. ],
  10654. "authors": [
  10655. {
  10656. "name": "Justin Hileman",
  10657. "email": "justin@justinhileman.info"
  10658. }
  10659. ],
  10660. "description": "An interactive shell for modern PHP.",
  10661. "homepage": "https://psysh.org",
  10662. "keywords": [
  10663. "REPL",
  10664. "console",
  10665. "interactive",
  10666. "shell"
  10667. ],
  10668. "support": {
  10669. "issues": "https://github.com/bobthecow/psysh/issues",
  10670. "source": "https://github.com/bobthecow/psysh/tree/v0.12.21"
  10671. },
  10672. "time": "2026-03-06T21:21:28+00:00"
  10673. },
  10674. {
  10675. "name": "ralouphie/getallheaders",
  10676. "version": "3.0.3",
  10677. "source": {
  10678. "type": "git",
  10679. "url": "https://github.com/ralouphie/getallheaders.git",
  10680. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10681. },
  10682. "dist": {
  10683. "type": "zip",
  10684. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10685. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10686. "shasum": ""
  10687. },
  10688. "require": {
  10689. "php": ">=5.6"
  10690. },
  10691. "require-dev": {
  10692. "php-coveralls/php-coveralls": "^2.1",
  10693. "phpunit/phpunit": "^5 || ^6.5"
  10694. },
  10695. "type": "library",
  10696. "autoload": {
  10697. "files": [
  10698. "src/getallheaders.php"
  10699. ]
  10700. },
  10701. "notification-url": "https://packagist.org/downloads/",
  10702. "license": [
  10703. "MIT"
  10704. ],
  10705. "authors": [
  10706. {
  10707. "name": "Ralph Khattar",
  10708. "email": "ralph.khattar@gmail.com"
  10709. }
  10710. ],
  10711. "description": "A polyfill for getallheaders.",
  10712. "support": {
  10713. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10714. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10715. },
  10716. "time": "2019-03-08T08:55:37+00:00"
  10717. },
  10718. {
  10719. "name": "sebastian/diff",
  10720. "version": "4.0.6",
  10721. "source": {
  10722. "type": "git",
  10723. "url": "https://github.com/sebastianbergmann/diff.git",
  10724. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10725. },
  10726. "dist": {
  10727. "type": "zip",
  10728. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10729. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10730. "shasum": ""
  10731. },
  10732. "require": {
  10733. "php": ">=7.3"
  10734. },
  10735. "require-dev": {
  10736. "phpunit/phpunit": "^9.3",
  10737. "symfony/process": "^4.2 || ^5"
  10738. },
  10739. "type": "library",
  10740. "extra": {
  10741. "branch-alias": {
  10742. "dev-master": "4.0-dev"
  10743. }
  10744. },
  10745. "autoload": {
  10746. "classmap": [
  10747. "src/"
  10748. ]
  10749. },
  10750. "notification-url": "https://packagist.org/downloads/",
  10751. "license": [
  10752. "BSD-3-Clause"
  10753. ],
  10754. "authors": [
  10755. {
  10756. "name": "Sebastian Bergmann",
  10757. "email": "sebastian@phpunit.de"
  10758. },
  10759. {
  10760. "name": "Kore Nordmann",
  10761. "email": "mail@kore-nordmann.de"
  10762. }
  10763. ],
  10764. "description": "Diff implementation",
  10765. "homepage": "https://github.com/sebastianbergmann/diff",
  10766. "keywords": [
  10767. "diff",
  10768. "udiff",
  10769. "unidiff",
  10770. "unified diff"
  10771. ],
  10772. "support": {
  10773. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10774. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10775. },
  10776. "funding": [
  10777. {
  10778. "url": "https://github.com/sebastianbergmann",
  10779. "type": "github"
  10780. }
  10781. ],
  10782. "time": "2024-03-02T06:30:58+00:00"
  10783. },
  10784. {
  10785. "name": "symfony/console",
  10786. "version": "v6.4.35",
  10787. "source": {
  10788. "type": "git",
  10789. "url": "https://github.com/symfony/console.git",
  10790. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  10791. },
  10792. "dist": {
  10793. "type": "zip",
  10794. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  10795. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  10796. "shasum": ""
  10797. },
  10798. "require": {
  10799. "php": ">=8.1",
  10800. "symfony/deprecation-contracts": "^2.5|^3",
  10801. "symfony/polyfill-mbstring": "~1.0",
  10802. "symfony/service-contracts": "^2.5|^3",
  10803. "symfony/string": "^5.4|^6.0|^7.0"
  10804. },
  10805. "conflict": {
  10806. "symfony/dependency-injection": "<5.4",
  10807. "symfony/dotenv": "<5.4",
  10808. "symfony/event-dispatcher": "<5.4",
  10809. "symfony/lock": "<5.4",
  10810. "symfony/process": "<5.4"
  10811. },
  10812. "provide": {
  10813. "psr/log-implementation": "1.0|2.0|3.0"
  10814. },
  10815. "require-dev": {
  10816. "psr/log": "^1|^2|^3",
  10817. "symfony/config": "^5.4|^6.0|^7.0",
  10818. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10819. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10820. "symfony/http-foundation": "^6.4|^7.0",
  10821. "symfony/http-kernel": "^6.4|^7.0",
  10822. "symfony/lock": "^5.4|^6.0|^7.0",
  10823. "symfony/messenger": "^5.4|^6.0|^7.0",
  10824. "symfony/process": "^5.4|^6.0|^7.0",
  10825. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10826. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10827. },
  10828. "type": "library",
  10829. "autoload": {
  10830. "psr-4": {
  10831. "Symfony\\Component\\Console\\": ""
  10832. },
  10833. "exclude-from-classmap": [
  10834. "/Tests/"
  10835. ]
  10836. },
  10837. "notification-url": "https://packagist.org/downloads/",
  10838. "license": [
  10839. "MIT"
  10840. ],
  10841. "authors": [
  10842. {
  10843. "name": "Fabien Potencier",
  10844. "email": "fabien@symfony.com"
  10845. },
  10846. {
  10847. "name": "Symfony Community",
  10848. "homepage": "https://symfony.com/contributors"
  10849. }
  10850. ],
  10851. "description": "Eases the creation of beautiful and testable command line interfaces",
  10852. "homepage": "https://symfony.com",
  10853. "keywords": [
  10854. "cli",
  10855. "command-line",
  10856. "console",
  10857. "terminal"
  10858. ],
  10859. "support": {
  10860. "source": "https://github.com/symfony/console/tree/v6.4.35"
  10861. },
  10862. "funding": [
  10863. {
  10864. "url": "https://symfony.com/sponsor",
  10865. "type": "custom"
  10866. },
  10867. {
  10868. "url": "https://github.com/fabpot",
  10869. "type": "github"
  10870. },
  10871. {
  10872. "url": "https://github.com/nicolas-grekas",
  10873. "type": "github"
  10874. },
  10875. {
  10876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10877. "type": "tidelift"
  10878. }
  10879. ],
  10880. "time": "2026-03-06T13:31:08+00:00"
  10881. },
  10882. {
  10883. "name": "symfony/dependency-injection",
  10884. "version": "v6.4.35",
  10885. "source": {
  10886. "type": "git",
  10887. "url": "https://github.com/symfony/dependency-injection.git",
  10888. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  10889. },
  10890. "dist": {
  10891. "type": "zip",
  10892. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  10893. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  10894. "shasum": ""
  10895. },
  10896. "require": {
  10897. "php": ">=8.1",
  10898. "psr/container": "^1.1|^2.0",
  10899. "symfony/deprecation-contracts": "^2.5|^3",
  10900. "symfony/service-contracts": "^2.5|^3.0",
  10901. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10902. },
  10903. "conflict": {
  10904. "ext-psr": "<1.1|>=2",
  10905. "symfony/config": "<6.1",
  10906. "symfony/finder": "<5.4",
  10907. "symfony/proxy-manager-bridge": "<6.3",
  10908. "symfony/yaml": "<5.4"
  10909. },
  10910. "provide": {
  10911. "psr/container-implementation": "1.1|2.0",
  10912. "symfony/service-implementation": "1.1|2.0|3.0"
  10913. },
  10914. "require-dev": {
  10915. "symfony/config": "^6.1|^7.0",
  10916. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10917. "symfony/yaml": "^5.4|^6.0|^7.0"
  10918. },
  10919. "type": "library",
  10920. "autoload": {
  10921. "psr-4": {
  10922. "Symfony\\Component\\DependencyInjection\\": ""
  10923. },
  10924. "exclude-from-classmap": [
  10925. "/Tests/"
  10926. ]
  10927. },
  10928. "notification-url": "https://packagist.org/downloads/",
  10929. "license": [
  10930. "MIT"
  10931. ],
  10932. "authors": [
  10933. {
  10934. "name": "Fabien Potencier",
  10935. "email": "fabien@symfony.com"
  10936. },
  10937. {
  10938. "name": "Symfony Community",
  10939. "homepage": "https://symfony.com/contributors"
  10940. }
  10941. ],
  10942. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10943. "homepage": "https://symfony.com",
  10944. "support": {
  10945. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  10946. },
  10947. "funding": [
  10948. {
  10949. "url": "https://symfony.com/sponsor",
  10950. "type": "custom"
  10951. },
  10952. {
  10953. "url": "https://github.com/fabpot",
  10954. "type": "github"
  10955. },
  10956. {
  10957. "url": "https://github.com/nicolas-grekas",
  10958. "type": "github"
  10959. },
  10960. {
  10961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10962. "type": "tidelift"
  10963. }
  10964. ],
  10965. "time": "2026-02-26T12:16:01+00:00"
  10966. },
  10967. {
  10968. "name": "symfony/deprecation-contracts",
  10969. "version": "v3.6.0",
  10970. "source": {
  10971. "type": "git",
  10972. "url": "https://github.com/symfony/deprecation-contracts.git",
  10973. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  10974. },
  10975. "dist": {
  10976. "type": "zip",
  10977. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10978. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10979. "shasum": ""
  10980. },
  10981. "require": {
  10982. "php": ">=8.1"
  10983. },
  10984. "type": "library",
  10985. "extra": {
  10986. "thanks": {
  10987. "url": "https://github.com/symfony/contracts",
  10988. "name": "symfony/contracts"
  10989. },
  10990. "branch-alias": {
  10991. "dev-main": "3.6-dev"
  10992. }
  10993. },
  10994. "autoload": {
  10995. "files": [
  10996. "function.php"
  10997. ]
  10998. },
  10999. "notification-url": "https://packagist.org/downloads/",
  11000. "license": [
  11001. "MIT"
  11002. ],
  11003. "authors": [
  11004. {
  11005. "name": "Nicolas Grekas",
  11006. "email": "p@tchwork.com"
  11007. },
  11008. {
  11009. "name": "Symfony Community",
  11010. "homepage": "https://symfony.com/contributors"
  11011. }
  11012. ],
  11013. "description": "A generic function and convention to trigger deprecation notices",
  11014. "homepage": "https://symfony.com",
  11015. "support": {
  11016. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  11017. },
  11018. "funding": [
  11019. {
  11020. "url": "https://symfony.com/sponsor",
  11021. "type": "custom"
  11022. },
  11023. {
  11024. "url": "https://github.com/fabpot",
  11025. "type": "github"
  11026. },
  11027. {
  11028. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11029. "type": "tidelift"
  11030. }
  11031. ],
  11032. "time": "2024-09-25T14:21:43+00:00"
  11033. },
  11034. {
  11035. "name": "symfony/error-handler",
  11036. "version": "v6.4.32",
  11037. "source": {
  11038. "type": "git",
  11039. "url": "https://github.com/symfony/error-handler.git",
  11040. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  11041. },
  11042. "dist": {
  11043. "type": "zip",
  11044. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11045. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11046. "shasum": ""
  11047. },
  11048. "require": {
  11049. "php": ">=8.1",
  11050. "psr/log": "^1|^2|^3",
  11051. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11052. },
  11053. "conflict": {
  11054. "symfony/deprecation-contracts": "<2.5",
  11055. "symfony/http-kernel": "<6.4"
  11056. },
  11057. "require-dev": {
  11058. "symfony/deprecation-contracts": "^2.5|^3",
  11059. "symfony/http-kernel": "^6.4|^7.0",
  11060. "symfony/serializer": "^5.4|^6.0|^7.0"
  11061. },
  11062. "bin": [
  11063. "Resources/bin/patch-type-declarations"
  11064. ],
  11065. "type": "library",
  11066. "autoload": {
  11067. "psr-4": {
  11068. "Symfony\\Component\\ErrorHandler\\": ""
  11069. },
  11070. "exclude-from-classmap": [
  11071. "/Tests/"
  11072. ]
  11073. },
  11074. "notification-url": "https://packagist.org/downloads/",
  11075. "license": [
  11076. "MIT"
  11077. ],
  11078. "authors": [
  11079. {
  11080. "name": "Fabien Potencier",
  11081. "email": "fabien@symfony.com"
  11082. },
  11083. {
  11084. "name": "Symfony Community",
  11085. "homepage": "https://symfony.com/contributors"
  11086. }
  11087. ],
  11088. "description": "Provides tools to manage errors and ease debugging PHP code",
  11089. "homepage": "https://symfony.com",
  11090. "support": {
  11091. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  11092. },
  11093. "funding": [
  11094. {
  11095. "url": "https://symfony.com/sponsor",
  11096. "type": "custom"
  11097. },
  11098. {
  11099. "url": "https://github.com/fabpot",
  11100. "type": "github"
  11101. },
  11102. {
  11103. "url": "https://github.com/nicolas-grekas",
  11104. "type": "github"
  11105. },
  11106. {
  11107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11108. "type": "tidelift"
  11109. }
  11110. ],
  11111. "time": "2026-01-19T19:28:19+00:00"
  11112. },
  11113. {
  11114. "name": "symfony/event-dispatcher",
  11115. "version": "v6.4.32",
  11116. "source": {
  11117. "type": "git",
  11118. "url": "https://github.com/symfony/event-dispatcher.git",
  11119. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  11120. },
  11121. "dist": {
  11122. "type": "zip",
  11123. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  11124. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  11125. "shasum": ""
  11126. },
  11127. "require": {
  11128. "php": ">=8.1",
  11129. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11130. },
  11131. "conflict": {
  11132. "symfony/dependency-injection": "<5.4",
  11133. "symfony/service-contracts": "<2.5"
  11134. },
  11135. "provide": {
  11136. "psr/event-dispatcher-implementation": "1.0",
  11137. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11138. },
  11139. "require-dev": {
  11140. "psr/log": "^1|^2|^3",
  11141. "symfony/config": "^5.4|^6.0|^7.0",
  11142. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11143. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11144. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11145. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11146. "symfony/service-contracts": "^2.5|^3",
  11147. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11148. },
  11149. "type": "library",
  11150. "autoload": {
  11151. "psr-4": {
  11152. "Symfony\\Component\\EventDispatcher\\": ""
  11153. },
  11154. "exclude-from-classmap": [
  11155. "/Tests/"
  11156. ]
  11157. },
  11158. "notification-url": "https://packagist.org/downloads/",
  11159. "license": [
  11160. "MIT"
  11161. ],
  11162. "authors": [
  11163. {
  11164. "name": "Fabien Potencier",
  11165. "email": "fabien@symfony.com"
  11166. },
  11167. {
  11168. "name": "Symfony Community",
  11169. "homepage": "https://symfony.com/contributors"
  11170. }
  11171. ],
  11172. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11173. "homepage": "https://symfony.com",
  11174. "support": {
  11175. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  11176. },
  11177. "funding": [
  11178. {
  11179. "url": "https://symfony.com/sponsor",
  11180. "type": "custom"
  11181. },
  11182. {
  11183. "url": "https://github.com/fabpot",
  11184. "type": "github"
  11185. },
  11186. {
  11187. "url": "https://github.com/nicolas-grekas",
  11188. "type": "github"
  11189. },
  11190. {
  11191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11192. "type": "tidelift"
  11193. }
  11194. ],
  11195. "time": "2026-01-05T11:13:48+00:00"
  11196. },
  11197. {
  11198. "name": "symfony/event-dispatcher-contracts",
  11199. "version": "v3.6.0",
  11200. "source": {
  11201. "type": "git",
  11202. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11203. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  11204. },
  11205. "dist": {
  11206. "type": "zip",
  11207. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  11208. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  11209. "shasum": ""
  11210. },
  11211. "require": {
  11212. "php": ">=8.1",
  11213. "psr/event-dispatcher": "^1"
  11214. },
  11215. "type": "library",
  11216. "extra": {
  11217. "thanks": {
  11218. "url": "https://github.com/symfony/contracts",
  11219. "name": "symfony/contracts"
  11220. },
  11221. "branch-alias": {
  11222. "dev-main": "3.6-dev"
  11223. }
  11224. },
  11225. "autoload": {
  11226. "psr-4": {
  11227. "Symfony\\Contracts\\EventDispatcher\\": ""
  11228. }
  11229. },
  11230. "notification-url": "https://packagist.org/downloads/",
  11231. "license": [
  11232. "MIT"
  11233. ],
  11234. "authors": [
  11235. {
  11236. "name": "Nicolas Grekas",
  11237. "email": "p@tchwork.com"
  11238. },
  11239. {
  11240. "name": "Symfony Community",
  11241. "homepage": "https://symfony.com/contributors"
  11242. }
  11243. ],
  11244. "description": "Generic abstractions related to dispatching event",
  11245. "homepage": "https://symfony.com",
  11246. "keywords": [
  11247. "abstractions",
  11248. "contracts",
  11249. "decoupling",
  11250. "interfaces",
  11251. "interoperability",
  11252. "standards"
  11253. ],
  11254. "support": {
  11255. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  11256. },
  11257. "funding": [
  11258. {
  11259. "url": "https://symfony.com/sponsor",
  11260. "type": "custom"
  11261. },
  11262. {
  11263. "url": "https://github.com/fabpot",
  11264. "type": "github"
  11265. },
  11266. {
  11267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11268. "type": "tidelift"
  11269. }
  11270. ],
  11271. "time": "2024-09-25T14:21:43+00:00"
  11272. },
  11273. {
  11274. "name": "symfony/filesystem",
  11275. "version": "v6.4.34",
  11276. "source": {
  11277. "type": "git",
  11278. "url": "https://github.com/symfony/filesystem.git",
  11279. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  11280. },
  11281. "dist": {
  11282. "type": "zip",
  11283. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11284. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11285. "shasum": ""
  11286. },
  11287. "require": {
  11288. "php": ">=8.1",
  11289. "symfony/polyfill-ctype": "~1.8",
  11290. "symfony/polyfill-mbstring": "~1.8"
  11291. },
  11292. "require-dev": {
  11293. "symfony/process": "^5.4|^6.4|^7.0"
  11294. },
  11295. "type": "library",
  11296. "autoload": {
  11297. "psr-4": {
  11298. "Symfony\\Component\\Filesystem\\": ""
  11299. },
  11300. "exclude-from-classmap": [
  11301. "/Tests/"
  11302. ]
  11303. },
  11304. "notification-url": "https://packagist.org/downloads/",
  11305. "license": [
  11306. "MIT"
  11307. ],
  11308. "authors": [
  11309. {
  11310. "name": "Fabien Potencier",
  11311. "email": "fabien@symfony.com"
  11312. },
  11313. {
  11314. "name": "Symfony Community",
  11315. "homepage": "https://symfony.com/contributors"
  11316. }
  11317. ],
  11318. "description": "Provides basic utilities for the filesystem",
  11319. "homepage": "https://symfony.com",
  11320. "support": {
  11321. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  11322. },
  11323. "funding": [
  11324. {
  11325. "url": "https://symfony.com/sponsor",
  11326. "type": "custom"
  11327. },
  11328. {
  11329. "url": "https://github.com/fabpot",
  11330. "type": "github"
  11331. },
  11332. {
  11333. "url": "https://github.com/nicolas-grekas",
  11334. "type": "github"
  11335. },
  11336. {
  11337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11338. "type": "tidelift"
  11339. }
  11340. ],
  11341. "time": "2026-02-24T17:51:06+00:00"
  11342. },
  11343. {
  11344. "name": "symfony/finder",
  11345. "version": "v6.4.34",
  11346. "source": {
  11347. "type": "git",
  11348. "url": "https://github.com/symfony/finder.git",
  11349. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  11350. },
  11351. "dist": {
  11352. "type": "zip",
  11353. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  11354. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  11355. "shasum": ""
  11356. },
  11357. "require": {
  11358. "php": ">=8.1"
  11359. },
  11360. "require-dev": {
  11361. "symfony/filesystem": "^6.0|^7.0"
  11362. },
  11363. "type": "library",
  11364. "autoload": {
  11365. "psr-4": {
  11366. "Symfony\\Component\\Finder\\": ""
  11367. },
  11368. "exclude-from-classmap": [
  11369. "/Tests/"
  11370. ]
  11371. },
  11372. "notification-url": "https://packagist.org/downloads/",
  11373. "license": [
  11374. "MIT"
  11375. ],
  11376. "authors": [
  11377. {
  11378. "name": "Fabien Potencier",
  11379. "email": "fabien@symfony.com"
  11380. },
  11381. {
  11382. "name": "Symfony Community",
  11383. "homepage": "https://symfony.com/contributors"
  11384. }
  11385. ],
  11386. "description": "Finds files and directories via an intuitive fluent interface",
  11387. "homepage": "https://symfony.com",
  11388. "support": {
  11389. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  11390. },
  11391. "funding": [
  11392. {
  11393. "url": "https://symfony.com/sponsor",
  11394. "type": "custom"
  11395. },
  11396. {
  11397. "url": "https://github.com/fabpot",
  11398. "type": "github"
  11399. },
  11400. {
  11401. "url": "https://github.com/nicolas-grekas",
  11402. "type": "github"
  11403. },
  11404. {
  11405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11406. "type": "tidelift"
  11407. }
  11408. ],
  11409. "time": "2026-01-28T15:16:37+00:00"
  11410. },
  11411. {
  11412. "name": "symfony/http-foundation",
  11413. "version": "v6.4.35",
  11414. "source": {
  11415. "type": "git",
  11416. "url": "https://github.com/symfony/http-foundation.git",
  11417. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  11418. },
  11419. "dist": {
  11420. "type": "zip",
  11421. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11422. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11423. "shasum": ""
  11424. },
  11425. "require": {
  11426. "php": ">=8.1",
  11427. "symfony/deprecation-contracts": "^2.5|^3",
  11428. "symfony/polyfill-mbstring": "~1.1",
  11429. "symfony/polyfill-php83": "^1.27"
  11430. },
  11431. "conflict": {
  11432. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11433. },
  11434. "require-dev": {
  11435. "doctrine/dbal": "^2.13.1|^3|^4",
  11436. "predis/predis": "^1.1|^2.0",
  11437. "symfony/cache": "^6.4.12|^7.1.5",
  11438. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11439. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11440. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11441. "symfony/mime": "^5.4|^6.0|^7.0",
  11442. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11443. },
  11444. "type": "library",
  11445. "autoload": {
  11446. "psr-4": {
  11447. "Symfony\\Component\\HttpFoundation\\": ""
  11448. },
  11449. "exclude-from-classmap": [
  11450. "/Tests/"
  11451. ]
  11452. },
  11453. "notification-url": "https://packagist.org/downloads/",
  11454. "license": [
  11455. "MIT"
  11456. ],
  11457. "authors": [
  11458. {
  11459. "name": "Fabien Potencier",
  11460. "email": "fabien@symfony.com"
  11461. },
  11462. {
  11463. "name": "Symfony Community",
  11464. "homepage": "https://symfony.com/contributors"
  11465. }
  11466. ],
  11467. "description": "Defines an object-oriented layer for the HTTP specification",
  11468. "homepage": "https://symfony.com",
  11469. "support": {
  11470. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  11471. },
  11472. "funding": [
  11473. {
  11474. "url": "https://symfony.com/sponsor",
  11475. "type": "custom"
  11476. },
  11477. {
  11478. "url": "https://github.com/fabpot",
  11479. "type": "github"
  11480. },
  11481. {
  11482. "url": "https://github.com/nicolas-grekas",
  11483. "type": "github"
  11484. },
  11485. {
  11486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11487. "type": "tidelift"
  11488. }
  11489. ],
  11490. "time": "2026-03-06T11:15:58+00:00"
  11491. },
  11492. {
  11493. "name": "symfony/http-kernel",
  11494. "version": "v6.4.35",
  11495. "source": {
  11496. "type": "git",
  11497. "url": "https://github.com/symfony/http-kernel.git",
  11498. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  11499. },
  11500. "dist": {
  11501. "type": "zip",
  11502. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  11503. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  11504. "shasum": ""
  11505. },
  11506. "require": {
  11507. "php": ">=8.1",
  11508. "psr/log": "^1|^2|^3",
  11509. "symfony/deprecation-contracts": "^2.5|^3",
  11510. "symfony/error-handler": "^6.4|^7.0",
  11511. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11512. "symfony/http-foundation": "^6.4|^7.0",
  11513. "symfony/polyfill-ctype": "^1.8"
  11514. },
  11515. "conflict": {
  11516. "symfony/browser-kit": "<5.4",
  11517. "symfony/cache": "<5.4",
  11518. "symfony/config": "<6.1",
  11519. "symfony/console": "<5.4",
  11520. "symfony/dependency-injection": "<6.4",
  11521. "symfony/doctrine-bridge": "<5.4",
  11522. "symfony/form": "<5.4",
  11523. "symfony/http-client": "<5.4",
  11524. "symfony/http-client-contracts": "<2.5",
  11525. "symfony/mailer": "<5.4",
  11526. "symfony/messenger": "<5.4",
  11527. "symfony/translation": "<5.4",
  11528. "symfony/translation-contracts": "<2.5",
  11529. "symfony/twig-bridge": "<5.4",
  11530. "symfony/validator": "<6.4",
  11531. "symfony/var-dumper": "<6.3",
  11532. "twig/twig": "<2.13"
  11533. },
  11534. "provide": {
  11535. "psr/log-implementation": "1.0|2.0|3.0"
  11536. },
  11537. "require-dev": {
  11538. "psr/cache": "^1.0|^2.0|^3.0",
  11539. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11540. "symfony/clock": "^6.2|^7.0",
  11541. "symfony/config": "^6.1|^7.0",
  11542. "symfony/console": "^5.4|^6.0|^7.0",
  11543. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11544. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  11545. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11546. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11547. "symfony/finder": "^5.4|^6.0|^7.0",
  11548. "symfony/http-client-contracts": "^2.5|^3",
  11549. "symfony/process": "^5.4|^6.0|^7.0",
  11550. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11551. "symfony/routing": "^5.4|^6.0|^7.0",
  11552. "symfony/serializer": "^6.4.4|^7.0.4",
  11553. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11554. "symfony/translation": "^5.4|^6.0|^7.0",
  11555. "symfony/translation-contracts": "^2.5|^3",
  11556. "symfony/uid": "^5.4|^6.0|^7.0",
  11557. "symfony/validator": "^6.4|^7.0",
  11558. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11559. "symfony/var-exporter": "^6.2|^7.0",
  11560. "twig/twig": "^2.13|^3.0.4"
  11561. },
  11562. "type": "library",
  11563. "autoload": {
  11564. "psr-4": {
  11565. "Symfony\\Component\\HttpKernel\\": ""
  11566. },
  11567. "exclude-from-classmap": [
  11568. "/Tests/"
  11569. ]
  11570. },
  11571. "notification-url": "https://packagist.org/downloads/",
  11572. "license": [
  11573. "MIT"
  11574. ],
  11575. "authors": [
  11576. {
  11577. "name": "Fabien Potencier",
  11578. "email": "fabien@symfony.com"
  11579. },
  11580. {
  11581. "name": "Symfony Community",
  11582. "homepage": "https://symfony.com/contributors"
  11583. }
  11584. ],
  11585. "description": "Provides a structured process for converting a Request into a Response",
  11586. "homepage": "https://symfony.com",
  11587. "support": {
  11588. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  11589. },
  11590. "funding": [
  11591. {
  11592. "url": "https://symfony.com/sponsor",
  11593. "type": "custom"
  11594. },
  11595. {
  11596. "url": "https://github.com/fabpot",
  11597. "type": "github"
  11598. },
  11599. {
  11600. "url": "https://github.com/nicolas-grekas",
  11601. "type": "github"
  11602. },
  11603. {
  11604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11605. "type": "tidelift"
  11606. }
  11607. ],
  11608. "time": "2026-03-06T16:28:07+00:00"
  11609. },
  11610. {
  11611. "name": "symfony/mailer",
  11612. "version": "v6.4.34",
  11613. "source": {
  11614. "type": "git",
  11615. "url": "https://github.com/symfony/mailer.git",
  11616. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  11617. },
  11618. "dist": {
  11619. "type": "zip",
  11620. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  11621. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  11622. "shasum": ""
  11623. },
  11624. "require": {
  11625. "egulias/email-validator": "^2.1.10|^3|^4",
  11626. "php": ">=8.1",
  11627. "psr/event-dispatcher": "^1",
  11628. "psr/log": "^1|^2|^3",
  11629. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11630. "symfony/mime": "^6.2|^7.0",
  11631. "symfony/service-contracts": "^2.5|^3"
  11632. },
  11633. "conflict": {
  11634. "symfony/http-client-contracts": "<2.5",
  11635. "symfony/http-kernel": "<5.4",
  11636. "symfony/messenger": "<6.2",
  11637. "symfony/mime": "<6.2",
  11638. "symfony/twig-bridge": "<6.2.1"
  11639. },
  11640. "require-dev": {
  11641. "symfony/console": "^5.4|^6.0|^7.0",
  11642. "symfony/http-client": "^5.4|^6.0|^7.0",
  11643. "symfony/messenger": "^6.2|^7.0",
  11644. "symfony/twig-bridge": "^6.2|^7.0"
  11645. },
  11646. "type": "library",
  11647. "autoload": {
  11648. "psr-4": {
  11649. "Symfony\\Component\\Mailer\\": ""
  11650. },
  11651. "exclude-from-classmap": [
  11652. "/Tests/"
  11653. ]
  11654. },
  11655. "notification-url": "https://packagist.org/downloads/",
  11656. "license": [
  11657. "MIT"
  11658. ],
  11659. "authors": [
  11660. {
  11661. "name": "Fabien Potencier",
  11662. "email": "fabien@symfony.com"
  11663. },
  11664. {
  11665. "name": "Symfony Community",
  11666. "homepage": "https://symfony.com/contributors"
  11667. }
  11668. ],
  11669. "description": "Helps sending emails",
  11670. "homepage": "https://symfony.com",
  11671. "support": {
  11672. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  11673. },
  11674. "funding": [
  11675. {
  11676. "url": "https://symfony.com/sponsor",
  11677. "type": "custom"
  11678. },
  11679. {
  11680. "url": "https://github.com/fabpot",
  11681. "type": "github"
  11682. },
  11683. {
  11684. "url": "https://github.com/nicolas-grekas",
  11685. "type": "github"
  11686. },
  11687. {
  11688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11689. "type": "tidelift"
  11690. }
  11691. ],
  11692. "time": "2026-02-24T09:34:36+00:00"
  11693. },
  11694. {
  11695. "name": "symfony/mime",
  11696. "version": "v6.4.35",
  11697. "source": {
  11698. "type": "git",
  11699. "url": "https://github.com/symfony/mime.git",
  11700. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  11701. },
  11702. "dist": {
  11703. "type": "zip",
  11704. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11705. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11706. "shasum": ""
  11707. },
  11708. "require": {
  11709. "php": ">=8.1",
  11710. "symfony/deprecation-contracts": "^2.5|^3",
  11711. "symfony/polyfill-intl-idn": "^1.10",
  11712. "symfony/polyfill-mbstring": "^1.0"
  11713. },
  11714. "conflict": {
  11715. "egulias/email-validator": "~3.0.0",
  11716. "phpdocumentor/reflection-docblock": "<3.2.2",
  11717. "phpdocumentor/type-resolver": "<1.4.0",
  11718. "symfony/mailer": "<5.4",
  11719. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11720. },
  11721. "require-dev": {
  11722. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11723. "league/html-to-markdown": "^5.0",
  11724. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11725. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11726. "symfony/process": "^5.4|^6.4|^7.0",
  11727. "symfony/property-access": "^5.4|^6.0|^7.0",
  11728. "symfony/property-info": "^5.4|^6.0|^7.0",
  11729. "symfony/serializer": "^6.4.3|^7.0.3"
  11730. },
  11731. "type": "library",
  11732. "autoload": {
  11733. "psr-4": {
  11734. "Symfony\\Component\\Mime\\": ""
  11735. },
  11736. "exclude-from-classmap": [
  11737. "/Tests/"
  11738. ]
  11739. },
  11740. "notification-url": "https://packagist.org/downloads/",
  11741. "license": [
  11742. "MIT"
  11743. ],
  11744. "authors": [
  11745. {
  11746. "name": "Fabien Potencier",
  11747. "email": "fabien@symfony.com"
  11748. },
  11749. {
  11750. "name": "Symfony Community",
  11751. "homepage": "https://symfony.com/contributors"
  11752. }
  11753. ],
  11754. "description": "Allows manipulating MIME messages",
  11755. "homepage": "https://symfony.com",
  11756. "keywords": [
  11757. "mime",
  11758. "mime-type"
  11759. ],
  11760. "support": {
  11761. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  11762. },
  11763. "funding": [
  11764. {
  11765. "url": "https://symfony.com/sponsor",
  11766. "type": "custom"
  11767. },
  11768. {
  11769. "url": "https://github.com/fabpot",
  11770. "type": "github"
  11771. },
  11772. {
  11773. "url": "https://github.com/nicolas-grekas",
  11774. "type": "github"
  11775. },
  11776. {
  11777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11778. "type": "tidelift"
  11779. }
  11780. ],
  11781. "time": "2026-03-05T11:25:28+00:00"
  11782. },
  11783. {
  11784. "name": "symfony/polyfill-ctype",
  11785. "version": "v1.33.0",
  11786. "source": {
  11787. "type": "git",
  11788. "url": "https://github.com/symfony/polyfill-ctype.git",
  11789. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11790. },
  11791. "dist": {
  11792. "type": "zip",
  11793. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11794. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11795. "shasum": ""
  11796. },
  11797. "require": {
  11798. "php": ">=7.2"
  11799. },
  11800. "provide": {
  11801. "ext-ctype": "*"
  11802. },
  11803. "suggest": {
  11804. "ext-ctype": "For best performance"
  11805. },
  11806. "type": "library",
  11807. "extra": {
  11808. "thanks": {
  11809. "url": "https://github.com/symfony/polyfill",
  11810. "name": "symfony/polyfill"
  11811. }
  11812. },
  11813. "autoload": {
  11814. "files": [
  11815. "bootstrap.php"
  11816. ],
  11817. "psr-4": {
  11818. "Symfony\\Polyfill\\Ctype\\": ""
  11819. }
  11820. },
  11821. "notification-url": "https://packagist.org/downloads/",
  11822. "license": [
  11823. "MIT"
  11824. ],
  11825. "authors": [
  11826. {
  11827. "name": "Gert de Pagter",
  11828. "email": "BackEndTea@gmail.com"
  11829. },
  11830. {
  11831. "name": "Symfony Community",
  11832. "homepage": "https://symfony.com/contributors"
  11833. }
  11834. ],
  11835. "description": "Symfony polyfill for ctype functions",
  11836. "homepage": "https://symfony.com",
  11837. "keywords": [
  11838. "compatibility",
  11839. "ctype",
  11840. "polyfill",
  11841. "portable"
  11842. ],
  11843. "support": {
  11844. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  11845. },
  11846. "funding": [
  11847. {
  11848. "url": "https://symfony.com/sponsor",
  11849. "type": "custom"
  11850. },
  11851. {
  11852. "url": "https://github.com/fabpot",
  11853. "type": "github"
  11854. },
  11855. {
  11856. "url": "https://github.com/nicolas-grekas",
  11857. "type": "github"
  11858. },
  11859. {
  11860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11861. "type": "tidelift"
  11862. }
  11863. ],
  11864. "time": "2024-09-09T11:45:10+00:00"
  11865. },
  11866. {
  11867. "name": "symfony/polyfill-iconv",
  11868. "version": "v1.33.0",
  11869. "source": {
  11870. "type": "git",
  11871. "url": "https://github.com/symfony/polyfill-iconv.git",
  11872. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  11873. },
  11874. "dist": {
  11875. "type": "zip",
  11876. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11877. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11878. "shasum": ""
  11879. },
  11880. "require": {
  11881. "php": ">=7.2"
  11882. },
  11883. "provide": {
  11884. "ext-iconv": "*"
  11885. },
  11886. "suggest": {
  11887. "ext-iconv": "For best performance"
  11888. },
  11889. "type": "library",
  11890. "extra": {
  11891. "thanks": {
  11892. "url": "https://github.com/symfony/polyfill",
  11893. "name": "symfony/polyfill"
  11894. }
  11895. },
  11896. "autoload": {
  11897. "files": [
  11898. "bootstrap.php"
  11899. ],
  11900. "psr-4": {
  11901. "Symfony\\Polyfill\\Iconv\\": ""
  11902. }
  11903. },
  11904. "notification-url": "https://packagist.org/downloads/",
  11905. "license": [
  11906. "MIT"
  11907. ],
  11908. "authors": [
  11909. {
  11910. "name": "Nicolas Grekas",
  11911. "email": "p@tchwork.com"
  11912. },
  11913. {
  11914. "name": "Symfony Community",
  11915. "homepage": "https://symfony.com/contributors"
  11916. }
  11917. ],
  11918. "description": "Symfony polyfill for the Iconv extension",
  11919. "homepage": "https://symfony.com",
  11920. "keywords": [
  11921. "compatibility",
  11922. "iconv",
  11923. "polyfill",
  11924. "portable",
  11925. "shim"
  11926. ],
  11927. "support": {
  11928. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  11929. },
  11930. "funding": [
  11931. {
  11932. "url": "https://symfony.com/sponsor",
  11933. "type": "custom"
  11934. },
  11935. {
  11936. "url": "https://github.com/fabpot",
  11937. "type": "github"
  11938. },
  11939. {
  11940. "url": "https://github.com/nicolas-grekas",
  11941. "type": "github"
  11942. },
  11943. {
  11944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11945. "type": "tidelift"
  11946. }
  11947. ],
  11948. "time": "2024-09-17T14:58:18+00:00"
  11949. },
  11950. {
  11951. "name": "symfony/polyfill-intl-grapheme",
  11952. "version": "v1.33.0",
  11953. "source": {
  11954. "type": "git",
  11955. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11956. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  11957. },
  11958. "dist": {
  11959. "type": "zip",
  11960. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11961. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11962. "shasum": ""
  11963. },
  11964. "require": {
  11965. "php": ">=7.2"
  11966. },
  11967. "suggest": {
  11968. "ext-intl": "For best performance"
  11969. },
  11970. "type": "library",
  11971. "extra": {
  11972. "thanks": {
  11973. "url": "https://github.com/symfony/polyfill",
  11974. "name": "symfony/polyfill"
  11975. }
  11976. },
  11977. "autoload": {
  11978. "files": [
  11979. "bootstrap.php"
  11980. ],
  11981. "psr-4": {
  11982. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11983. }
  11984. },
  11985. "notification-url": "https://packagist.org/downloads/",
  11986. "license": [
  11987. "MIT"
  11988. ],
  11989. "authors": [
  11990. {
  11991. "name": "Nicolas Grekas",
  11992. "email": "p@tchwork.com"
  11993. },
  11994. {
  11995. "name": "Symfony Community",
  11996. "homepage": "https://symfony.com/contributors"
  11997. }
  11998. ],
  11999. "description": "Symfony polyfill for intl's grapheme_* functions",
  12000. "homepage": "https://symfony.com",
  12001. "keywords": [
  12002. "compatibility",
  12003. "grapheme",
  12004. "intl",
  12005. "polyfill",
  12006. "portable",
  12007. "shim"
  12008. ],
  12009. "support": {
  12010. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  12011. },
  12012. "funding": [
  12013. {
  12014. "url": "https://symfony.com/sponsor",
  12015. "type": "custom"
  12016. },
  12017. {
  12018. "url": "https://github.com/fabpot",
  12019. "type": "github"
  12020. },
  12021. {
  12022. "url": "https://github.com/nicolas-grekas",
  12023. "type": "github"
  12024. },
  12025. {
  12026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12027. "type": "tidelift"
  12028. }
  12029. ],
  12030. "time": "2025-06-27T09:58:17+00:00"
  12031. },
  12032. {
  12033. "name": "symfony/polyfill-intl-idn",
  12034. "version": "v1.33.0",
  12035. "source": {
  12036. "type": "git",
  12037. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12038. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  12039. },
  12040. "dist": {
  12041. "type": "zip",
  12042. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12043. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12044. "shasum": ""
  12045. },
  12046. "require": {
  12047. "php": ">=7.2",
  12048. "symfony/polyfill-intl-normalizer": "^1.10"
  12049. },
  12050. "suggest": {
  12051. "ext-intl": "For best performance"
  12052. },
  12053. "type": "library",
  12054. "extra": {
  12055. "thanks": {
  12056. "url": "https://github.com/symfony/polyfill",
  12057. "name": "symfony/polyfill"
  12058. }
  12059. },
  12060. "autoload": {
  12061. "files": [
  12062. "bootstrap.php"
  12063. ],
  12064. "psr-4": {
  12065. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12066. }
  12067. },
  12068. "notification-url": "https://packagist.org/downloads/",
  12069. "license": [
  12070. "MIT"
  12071. ],
  12072. "authors": [
  12073. {
  12074. "name": "Laurent Bassin",
  12075. "email": "laurent@bassin.info"
  12076. },
  12077. {
  12078. "name": "Trevor Rowbotham",
  12079. "email": "trevor.rowbotham@pm.me"
  12080. },
  12081. {
  12082. "name": "Symfony Community",
  12083. "homepage": "https://symfony.com/contributors"
  12084. }
  12085. ],
  12086. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12087. "homepage": "https://symfony.com",
  12088. "keywords": [
  12089. "compatibility",
  12090. "idn",
  12091. "intl",
  12092. "polyfill",
  12093. "portable",
  12094. "shim"
  12095. ],
  12096. "support": {
  12097. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  12098. },
  12099. "funding": [
  12100. {
  12101. "url": "https://symfony.com/sponsor",
  12102. "type": "custom"
  12103. },
  12104. {
  12105. "url": "https://github.com/fabpot",
  12106. "type": "github"
  12107. },
  12108. {
  12109. "url": "https://github.com/nicolas-grekas",
  12110. "type": "github"
  12111. },
  12112. {
  12113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12114. "type": "tidelift"
  12115. }
  12116. ],
  12117. "time": "2024-09-10T14:38:51+00:00"
  12118. },
  12119. {
  12120. "name": "symfony/polyfill-intl-normalizer",
  12121. "version": "v1.33.0",
  12122. "source": {
  12123. "type": "git",
  12124. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12125. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12126. },
  12127. "dist": {
  12128. "type": "zip",
  12129. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12130. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12131. "shasum": ""
  12132. },
  12133. "require": {
  12134. "php": ">=7.2"
  12135. },
  12136. "suggest": {
  12137. "ext-intl": "For best performance"
  12138. },
  12139. "type": "library",
  12140. "extra": {
  12141. "thanks": {
  12142. "url": "https://github.com/symfony/polyfill",
  12143. "name": "symfony/polyfill"
  12144. }
  12145. },
  12146. "autoload": {
  12147. "files": [
  12148. "bootstrap.php"
  12149. ],
  12150. "psr-4": {
  12151. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12152. },
  12153. "classmap": [
  12154. "Resources/stubs"
  12155. ]
  12156. },
  12157. "notification-url": "https://packagist.org/downloads/",
  12158. "license": [
  12159. "MIT"
  12160. ],
  12161. "authors": [
  12162. {
  12163. "name": "Nicolas Grekas",
  12164. "email": "p@tchwork.com"
  12165. },
  12166. {
  12167. "name": "Symfony Community",
  12168. "homepage": "https://symfony.com/contributors"
  12169. }
  12170. ],
  12171. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12172. "homepage": "https://symfony.com",
  12173. "keywords": [
  12174. "compatibility",
  12175. "intl",
  12176. "normalizer",
  12177. "polyfill",
  12178. "portable",
  12179. "shim"
  12180. ],
  12181. "support": {
  12182. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  12183. },
  12184. "funding": [
  12185. {
  12186. "url": "https://symfony.com/sponsor",
  12187. "type": "custom"
  12188. },
  12189. {
  12190. "url": "https://github.com/fabpot",
  12191. "type": "github"
  12192. },
  12193. {
  12194. "url": "https://github.com/nicolas-grekas",
  12195. "type": "github"
  12196. },
  12197. {
  12198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12199. "type": "tidelift"
  12200. }
  12201. ],
  12202. "time": "2024-09-09T11:45:10+00:00"
  12203. },
  12204. {
  12205. "name": "symfony/polyfill-mbstring",
  12206. "version": "v1.33.0",
  12207. "source": {
  12208. "type": "git",
  12209. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12210. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  12211. },
  12212. "dist": {
  12213. "type": "zip",
  12214. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12215. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12216. "shasum": ""
  12217. },
  12218. "require": {
  12219. "ext-iconv": "*",
  12220. "php": ">=7.2"
  12221. },
  12222. "provide": {
  12223. "ext-mbstring": "*"
  12224. },
  12225. "suggest": {
  12226. "ext-mbstring": "For best performance"
  12227. },
  12228. "type": "library",
  12229. "extra": {
  12230. "thanks": {
  12231. "url": "https://github.com/symfony/polyfill",
  12232. "name": "symfony/polyfill"
  12233. }
  12234. },
  12235. "autoload": {
  12236. "files": [
  12237. "bootstrap.php"
  12238. ],
  12239. "psr-4": {
  12240. "Symfony\\Polyfill\\Mbstring\\": ""
  12241. }
  12242. },
  12243. "notification-url": "https://packagist.org/downloads/",
  12244. "license": [
  12245. "MIT"
  12246. ],
  12247. "authors": [
  12248. {
  12249. "name": "Nicolas Grekas",
  12250. "email": "p@tchwork.com"
  12251. },
  12252. {
  12253. "name": "Symfony Community",
  12254. "homepage": "https://symfony.com/contributors"
  12255. }
  12256. ],
  12257. "description": "Symfony polyfill for the Mbstring extension",
  12258. "homepage": "https://symfony.com",
  12259. "keywords": [
  12260. "compatibility",
  12261. "mbstring",
  12262. "polyfill",
  12263. "portable",
  12264. "shim"
  12265. ],
  12266. "support": {
  12267. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  12268. },
  12269. "funding": [
  12270. {
  12271. "url": "https://symfony.com/sponsor",
  12272. "type": "custom"
  12273. },
  12274. {
  12275. "url": "https://github.com/fabpot",
  12276. "type": "github"
  12277. },
  12278. {
  12279. "url": "https://github.com/nicolas-grekas",
  12280. "type": "github"
  12281. },
  12282. {
  12283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12284. "type": "tidelift"
  12285. }
  12286. ],
  12287. "time": "2024-12-23T08:48:59+00:00"
  12288. },
  12289. {
  12290. "name": "symfony/polyfill-php81",
  12291. "version": "v1.33.0",
  12292. "source": {
  12293. "type": "git",
  12294. "url": "https://github.com/symfony/polyfill-php81.git",
  12295. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12296. },
  12297. "dist": {
  12298. "type": "zip",
  12299. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12300. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12301. "shasum": ""
  12302. },
  12303. "require": {
  12304. "php": ">=7.2"
  12305. },
  12306. "type": "library",
  12307. "extra": {
  12308. "thanks": {
  12309. "url": "https://github.com/symfony/polyfill",
  12310. "name": "symfony/polyfill"
  12311. }
  12312. },
  12313. "autoload": {
  12314. "files": [
  12315. "bootstrap.php"
  12316. ],
  12317. "psr-4": {
  12318. "Symfony\\Polyfill\\Php81\\": ""
  12319. },
  12320. "classmap": [
  12321. "Resources/stubs"
  12322. ]
  12323. },
  12324. "notification-url": "https://packagist.org/downloads/",
  12325. "license": [
  12326. "MIT"
  12327. ],
  12328. "authors": [
  12329. {
  12330. "name": "Nicolas Grekas",
  12331. "email": "p@tchwork.com"
  12332. },
  12333. {
  12334. "name": "Symfony Community",
  12335. "homepage": "https://symfony.com/contributors"
  12336. }
  12337. ],
  12338. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12339. "homepage": "https://symfony.com",
  12340. "keywords": [
  12341. "compatibility",
  12342. "polyfill",
  12343. "portable",
  12344. "shim"
  12345. ],
  12346. "support": {
  12347. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12348. },
  12349. "funding": [
  12350. {
  12351. "url": "https://symfony.com/sponsor",
  12352. "type": "custom"
  12353. },
  12354. {
  12355. "url": "https://github.com/fabpot",
  12356. "type": "github"
  12357. },
  12358. {
  12359. "url": "https://github.com/nicolas-grekas",
  12360. "type": "github"
  12361. },
  12362. {
  12363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12364. "type": "tidelift"
  12365. }
  12366. ],
  12367. "time": "2024-09-09T11:45:10+00:00"
  12368. },
  12369. {
  12370. "name": "symfony/polyfill-php83",
  12371. "version": "v1.33.0",
  12372. "source": {
  12373. "type": "git",
  12374. "url": "https://github.com/symfony/polyfill-php83.git",
  12375. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  12376. },
  12377. "dist": {
  12378. "type": "zip",
  12379. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12380. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12381. "shasum": ""
  12382. },
  12383. "require": {
  12384. "php": ">=7.2"
  12385. },
  12386. "type": "library",
  12387. "extra": {
  12388. "thanks": {
  12389. "url": "https://github.com/symfony/polyfill",
  12390. "name": "symfony/polyfill"
  12391. }
  12392. },
  12393. "autoload": {
  12394. "files": [
  12395. "bootstrap.php"
  12396. ],
  12397. "psr-4": {
  12398. "Symfony\\Polyfill\\Php83\\": ""
  12399. },
  12400. "classmap": [
  12401. "Resources/stubs"
  12402. ]
  12403. },
  12404. "notification-url": "https://packagist.org/downloads/",
  12405. "license": [
  12406. "MIT"
  12407. ],
  12408. "authors": [
  12409. {
  12410. "name": "Nicolas Grekas",
  12411. "email": "p@tchwork.com"
  12412. },
  12413. {
  12414. "name": "Symfony Community",
  12415. "homepage": "https://symfony.com/contributors"
  12416. }
  12417. ],
  12418. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12419. "homepage": "https://symfony.com",
  12420. "keywords": [
  12421. "compatibility",
  12422. "polyfill",
  12423. "portable",
  12424. "shim"
  12425. ],
  12426. "support": {
  12427. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  12428. },
  12429. "funding": [
  12430. {
  12431. "url": "https://symfony.com/sponsor",
  12432. "type": "custom"
  12433. },
  12434. {
  12435. "url": "https://github.com/fabpot",
  12436. "type": "github"
  12437. },
  12438. {
  12439. "url": "https://github.com/nicolas-grekas",
  12440. "type": "github"
  12441. },
  12442. {
  12443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12444. "type": "tidelift"
  12445. }
  12446. ],
  12447. "time": "2025-07-08T02:45:35+00:00"
  12448. },
  12449. {
  12450. "name": "symfony/polyfill-php84",
  12451. "version": "v1.33.0",
  12452. "source": {
  12453. "type": "git",
  12454. "url": "https://github.com/symfony/polyfill-php84.git",
  12455. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12456. },
  12457. "dist": {
  12458. "type": "zip",
  12459. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12460. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12461. "shasum": ""
  12462. },
  12463. "require": {
  12464. "php": ">=7.2"
  12465. },
  12466. "type": "library",
  12467. "extra": {
  12468. "thanks": {
  12469. "url": "https://github.com/symfony/polyfill",
  12470. "name": "symfony/polyfill"
  12471. }
  12472. },
  12473. "autoload": {
  12474. "files": [
  12475. "bootstrap.php"
  12476. ],
  12477. "psr-4": {
  12478. "Symfony\\Polyfill\\Php84\\": ""
  12479. },
  12480. "classmap": [
  12481. "Resources/stubs"
  12482. ]
  12483. },
  12484. "notification-url": "https://packagist.org/downloads/",
  12485. "license": [
  12486. "MIT"
  12487. ],
  12488. "authors": [
  12489. {
  12490. "name": "Nicolas Grekas",
  12491. "email": "p@tchwork.com"
  12492. },
  12493. {
  12494. "name": "Symfony Community",
  12495. "homepage": "https://symfony.com/contributors"
  12496. }
  12497. ],
  12498. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12499. "homepage": "https://symfony.com",
  12500. "keywords": [
  12501. "compatibility",
  12502. "polyfill",
  12503. "portable",
  12504. "shim"
  12505. ],
  12506. "support": {
  12507. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12508. },
  12509. "funding": [
  12510. {
  12511. "url": "https://symfony.com/sponsor",
  12512. "type": "custom"
  12513. },
  12514. {
  12515. "url": "https://github.com/fabpot",
  12516. "type": "github"
  12517. },
  12518. {
  12519. "url": "https://github.com/nicolas-grekas",
  12520. "type": "github"
  12521. },
  12522. {
  12523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12524. "type": "tidelift"
  12525. }
  12526. ],
  12527. "time": "2025-06-24T13:30:11+00:00"
  12528. },
  12529. {
  12530. "name": "symfony/process",
  12531. "version": "v6.4.33",
  12532. "source": {
  12533. "type": "git",
  12534. "url": "https://github.com/symfony/process.git",
  12535. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  12536. },
  12537. "dist": {
  12538. "type": "zip",
  12539. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  12540. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  12541. "shasum": ""
  12542. },
  12543. "require": {
  12544. "php": ">=8.1"
  12545. },
  12546. "type": "library",
  12547. "autoload": {
  12548. "psr-4": {
  12549. "Symfony\\Component\\Process\\": ""
  12550. },
  12551. "exclude-from-classmap": [
  12552. "/Tests/"
  12553. ]
  12554. },
  12555. "notification-url": "https://packagist.org/downloads/",
  12556. "license": [
  12557. "MIT"
  12558. ],
  12559. "authors": [
  12560. {
  12561. "name": "Fabien Potencier",
  12562. "email": "fabien@symfony.com"
  12563. },
  12564. {
  12565. "name": "Symfony Community",
  12566. "homepage": "https://symfony.com/contributors"
  12567. }
  12568. ],
  12569. "description": "Executes commands in sub-processes",
  12570. "homepage": "https://symfony.com",
  12571. "support": {
  12572. "source": "https://github.com/symfony/process/tree/v6.4.33"
  12573. },
  12574. "funding": [
  12575. {
  12576. "url": "https://symfony.com/sponsor",
  12577. "type": "custom"
  12578. },
  12579. {
  12580. "url": "https://github.com/fabpot",
  12581. "type": "github"
  12582. },
  12583. {
  12584. "url": "https://github.com/nicolas-grekas",
  12585. "type": "github"
  12586. },
  12587. {
  12588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12589. "type": "tidelift"
  12590. }
  12591. ],
  12592. "time": "2026-01-23T16:02:12+00:00"
  12593. },
  12594. {
  12595. "name": "symfony/psr-http-message-bridge",
  12596. "version": "v6.4.32",
  12597. "source": {
  12598. "type": "git",
  12599. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12600. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  12601. },
  12602. "dist": {
  12603. "type": "zip",
  12604. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  12605. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  12606. "shasum": ""
  12607. },
  12608. "require": {
  12609. "php": ">=8.1",
  12610. "psr/http-message": "^1.0|^2.0",
  12611. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12612. },
  12613. "conflict": {
  12614. "php-http/discovery": "<1.15",
  12615. "symfony/http-kernel": "<6.2"
  12616. },
  12617. "require-dev": {
  12618. "nyholm/psr7": "^1.1",
  12619. "php-http/discovery": "^1.15",
  12620. "psr/log": "^1.1.4|^2|^3",
  12621. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12622. "symfony/config": "^5.4|^6.0|^7.0",
  12623. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12624. "symfony/framework-bundle": "^6.2|^7.0",
  12625. "symfony/http-kernel": "^6.2|^7.0"
  12626. },
  12627. "type": "symfony-bridge",
  12628. "autoload": {
  12629. "psr-4": {
  12630. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12631. },
  12632. "exclude-from-classmap": [
  12633. "/Tests/"
  12634. ]
  12635. },
  12636. "notification-url": "https://packagist.org/downloads/",
  12637. "license": [
  12638. "MIT"
  12639. ],
  12640. "authors": [
  12641. {
  12642. "name": "Fabien Potencier",
  12643. "email": "fabien@symfony.com"
  12644. },
  12645. {
  12646. "name": "Symfony Community",
  12647. "homepage": "https://symfony.com/contributors"
  12648. }
  12649. ],
  12650. "description": "PSR HTTP message bridge",
  12651. "homepage": "https://symfony.com",
  12652. "keywords": [
  12653. "http",
  12654. "http-message",
  12655. "psr-17",
  12656. "psr-7"
  12657. ],
  12658. "support": {
  12659. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  12660. },
  12661. "funding": [
  12662. {
  12663. "url": "https://symfony.com/sponsor",
  12664. "type": "custom"
  12665. },
  12666. {
  12667. "url": "https://github.com/fabpot",
  12668. "type": "github"
  12669. },
  12670. {
  12671. "url": "https://github.com/nicolas-grekas",
  12672. "type": "github"
  12673. },
  12674. {
  12675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12676. "type": "tidelift"
  12677. }
  12678. ],
  12679. "time": "2026-01-02T11:59:06+00:00"
  12680. },
  12681. {
  12682. "name": "symfony/routing",
  12683. "version": "v6.4.34",
  12684. "source": {
  12685. "type": "git",
  12686. "url": "https://github.com/symfony/routing.git",
  12687. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  12688. },
  12689. "dist": {
  12690. "type": "zip",
  12691. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12692. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12693. "shasum": ""
  12694. },
  12695. "require": {
  12696. "php": ">=8.1",
  12697. "symfony/deprecation-contracts": "^2.5|^3"
  12698. },
  12699. "conflict": {
  12700. "doctrine/annotations": "<1.12",
  12701. "symfony/config": "<6.2",
  12702. "symfony/dependency-injection": "<5.4",
  12703. "symfony/yaml": "<5.4"
  12704. },
  12705. "require-dev": {
  12706. "doctrine/annotations": "^1.12|^2",
  12707. "psr/log": "^1|^2|^3",
  12708. "symfony/config": "^6.2|^7.0",
  12709. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12710. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12711. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12712. "symfony/yaml": "^5.4|^6.0|^7.0"
  12713. },
  12714. "type": "library",
  12715. "autoload": {
  12716. "psr-4": {
  12717. "Symfony\\Component\\Routing\\": ""
  12718. },
  12719. "exclude-from-classmap": [
  12720. "/Tests/"
  12721. ]
  12722. },
  12723. "notification-url": "https://packagist.org/downloads/",
  12724. "license": [
  12725. "MIT"
  12726. ],
  12727. "authors": [
  12728. {
  12729. "name": "Fabien Potencier",
  12730. "email": "fabien@symfony.com"
  12731. },
  12732. {
  12733. "name": "Symfony Community",
  12734. "homepage": "https://symfony.com/contributors"
  12735. }
  12736. ],
  12737. "description": "Maps an HTTP request to a set of configuration variables",
  12738. "homepage": "https://symfony.com",
  12739. "keywords": [
  12740. "router",
  12741. "routing",
  12742. "uri",
  12743. "url"
  12744. ],
  12745. "support": {
  12746. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  12747. },
  12748. "funding": [
  12749. {
  12750. "url": "https://symfony.com/sponsor",
  12751. "type": "custom"
  12752. },
  12753. {
  12754. "url": "https://github.com/fabpot",
  12755. "type": "github"
  12756. },
  12757. {
  12758. "url": "https://github.com/nicolas-grekas",
  12759. "type": "github"
  12760. },
  12761. {
  12762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12763. "type": "tidelift"
  12764. }
  12765. ],
  12766. "time": "2026-02-24T17:34:50+00:00"
  12767. },
  12768. {
  12769. "name": "symfony/serializer",
  12770. "version": "v6.4.35",
  12771. "source": {
  12772. "type": "git",
  12773. "url": "https://github.com/symfony/serializer.git",
  12774. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  12775. },
  12776. "dist": {
  12777. "type": "zip",
  12778. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  12779. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  12780. "shasum": ""
  12781. },
  12782. "require": {
  12783. "php": ">=8.1",
  12784. "symfony/deprecation-contracts": "^2.5|^3",
  12785. "symfony/polyfill-ctype": "~1.8"
  12786. },
  12787. "conflict": {
  12788. "doctrine/annotations": "<1.12",
  12789. "phpdocumentor/reflection-docblock": "<3.2.2",
  12790. "phpdocumentor/type-resolver": "<1.4.0",
  12791. "symfony/dependency-injection": "<5.4",
  12792. "symfony/property-access": "<5.4",
  12793. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12794. "symfony/uid": "<5.4",
  12795. "symfony/validator": "<6.4",
  12796. "symfony/yaml": "<5.4"
  12797. },
  12798. "require-dev": {
  12799. "doctrine/annotations": "^1.12|^2",
  12800. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12801. "seld/jsonlint": "^1.10",
  12802. "symfony/cache": "^5.4|^6.0|^7.0",
  12803. "symfony/config": "^5.4|^6.0|^7.0",
  12804. "symfony/console": "^5.4|^6.0|^7.0",
  12805. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12806. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12807. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12808. "symfony/form": "^5.4|^6.0|^7.0",
  12809. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12810. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12811. "symfony/messenger": "^5.4|^6.0|^7.0",
  12812. "symfony/mime": "^5.4|^6.0|^7.0",
  12813. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12814. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12815. "symfony/translation-contracts": "^2.5|^3",
  12816. "symfony/uid": "^5.4|^6.0|^7.0",
  12817. "symfony/validator": "^6.4|^7.0",
  12818. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12819. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12820. "symfony/yaml": "^5.4|^6.0|^7.0"
  12821. },
  12822. "type": "library",
  12823. "autoload": {
  12824. "psr-4": {
  12825. "Symfony\\Component\\Serializer\\": ""
  12826. },
  12827. "exclude-from-classmap": [
  12828. "/Tests/"
  12829. ]
  12830. },
  12831. "notification-url": "https://packagist.org/downloads/",
  12832. "license": [
  12833. "MIT"
  12834. ],
  12835. "authors": [
  12836. {
  12837. "name": "Fabien Potencier",
  12838. "email": "fabien@symfony.com"
  12839. },
  12840. {
  12841. "name": "Symfony Community",
  12842. "homepage": "https://symfony.com/contributors"
  12843. }
  12844. ],
  12845. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12846. "homepage": "https://symfony.com",
  12847. "support": {
  12848. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  12849. },
  12850. "funding": [
  12851. {
  12852. "url": "https://symfony.com/sponsor",
  12853. "type": "custom"
  12854. },
  12855. {
  12856. "url": "https://github.com/fabpot",
  12857. "type": "github"
  12858. },
  12859. {
  12860. "url": "https://github.com/nicolas-grekas",
  12861. "type": "github"
  12862. },
  12863. {
  12864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12865. "type": "tidelift"
  12866. }
  12867. ],
  12868. "time": "2026-03-06T11:03:24+00:00"
  12869. },
  12870. {
  12871. "name": "symfony/service-contracts",
  12872. "version": "v3.6.1",
  12873. "source": {
  12874. "type": "git",
  12875. "url": "https://github.com/symfony/service-contracts.git",
  12876. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  12877. },
  12878. "dist": {
  12879. "type": "zip",
  12880. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  12881. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  12882. "shasum": ""
  12883. },
  12884. "require": {
  12885. "php": ">=8.1",
  12886. "psr/container": "^1.1|^2.0",
  12887. "symfony/deprecation-contracts": "^2.5|^3"
  12888. },
  12889. "conflict": {
  12890. "ext-psr": "<1.1|>=2"
  12891. },
  12892. "type": "library",
  12893. "extra": {
  12894. "thanks": {
  12895. "url": "https://github.com/symfony/contracts",
  12896. "name": "symfony/contracts"
  12897. },
  12898. "branch-alias": {
  12899. "dev-main": "3.6-dev"
  12900. }
  12901. },
  12902. "autoload": {
  12903. "psr-4": {
  12904. "Symfony\\Contracts\\Service\\": ""
  12905. },
  12906. "exclude-from-classmap": [
  12907. "/Test/"
  12908. ]
  12909. },
  12910. "notification-url": "https://packagist.org/downloads/",
  12911. "license": [
  12912. "MIT"
  12913. ],
  12914. "authors": [
  12915. {
  12916. "name": "Nicolas Grekas",
  12917. "email": "p@tchwork.com"
  12918. },
  12919. {
  12920. "name": "Symfony Community",
  12921. "homepage": "https://symfony.com/contributors"
  12922. }
  12923. ],
  12924. "description": "Generic abstractions related to writing services",
  12925. "homepage": "https://symfony.com",
  12926. "keywords": [
  12927. "abstractions",
  12928. "contracts",
  12929. "decoupling",
  12930. "interfaces",
  12931. "interoperability",
  12932. "standards"
  12933. ],
  12934. "support": {
  12935. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  12936. },
  12937. "funding": [
  12938. {
  12939. "url": "https://symfony.com/sponsor",
  12940. "type": "custom"
  12941. },
  12942. {
  12943. "url": "https://github.com/fabpot",
  12944. "type": "github"
  12945. },
  12946. {
  12947. "url": "https://github.com/nicolas-grekas",
  12948. "type": "github"
  12949. },
  12950. {
  12951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12952. "type": "tidelift"
  12953. }
  12954. ],
  12955. "time": "2025-07-15T11:30:57+00:00"
  12956. },
  12957. {
  12958. "name": "symfony/string",
  12959. "version": "v6.4.34",
  12960. "source": {
  12961. "type": "git",
  12962. "url": "https://github.com/symfony/string.git",
  12963. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  12964. },
  12965. "dist": {
  12966. "type": "zip",
  12967. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12968. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12969. "shasum": ""
  12970. },
  12971. "require": {
  12972. "php": ">=8.1",
  12973. "symfony/polyfill-ctype": "~1.8",
  12974. "symfony/polyfill-intl-grapheme": "~1.0",
  12975. "symfony/polyfill-intl-normalizer": "~1.0",
  12976. "symfony/polyfill-mbstring": "~1.0"
  12977. },
  12978. "conflict": {
  12979. "symfony/translation-contracts": "<2.5"
  12980. },
  12981. "require-dev": {
  12982. "symfony/http-client": "^5.4|^6.0|^7.0",
  12983. "symfony/intl": "^6.2|^7.0",
  12984. "symfony/translation-contracts": "^2.5|^3.0",
  12985. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12986. },
  12987. "type": "library",
  12988. "autoload": {
  12989. "files": [
  12990. "Resources/functions.php"
  12991. ],
  12992. "psr-4": {
  12993. "Symfony\\Component\\String\\": ""
  12994. },
  12995. "exclude-from-classmap": [
  12996. "/Tests/"
  12997. ]
  12998. },
  12999. "notification-url": "https://packagist.org/downloads/",
  13000. "license": [
  13001. "MIT"
  13002. ],
  13003. "authors": [
  13004. {
  13005. "name": "Nicolas Grekas",
  13006. "email": "p@tchwork.com"
  13007. },
  13008. {
  13009. "name": "Symfony Community",
  13010. "homepage": "https://symfony.com/contributors"
  13011. }
  13012. ],
  13013. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  13014. "homepage": "https://symfony.com",
  13015. "keywords": [
  13016. "grapheme",
  13017. "i18n",
  13018. "string",
  13019. "unicode",
  13020. "utf-8",
  13021. "utf8"
  13022. ],
  13023. "support": {
  13024. "source": "https://github.com/symfony/string/tree/v6.4.34"
  13025. },
  13026. "funding": [
  13027. {
  13028. "url": "https://symfony.com/sponsor",
  13029. "type": "custom"
  13030. },
  13031. {
  13032. "url": "https://github.com/fabpot",
  13033. "type": "github"
  13034. },
  13035. {
  13036. "url": "https://github.com/nicolas-grekas",
  13037. "type": "github"
  13038. },
  13039. {
  13040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13041. "type": "tidelift"
  13042. }
  13043. ],
  13044. "time": "2026-02-08T20:44:54+00:00"
  13045. },
  13046. {
  13047. "name": "symfony/translation-contracts",
  13048. "version": "v3.6.1",
  13049. "source": {
  13050. "type": "git",
  13051. "url": "https://github.com/symfony/translation-contracts.git",
  13052. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  13053. },
  13054. "dist": {
  13055. "type": "zip",
  13056. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  13057. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  13058. "shasum": ""
  13059. },
  13060. "require": {
  13061. "php": ">=8.1"
  13062. },
  13063. "type": "library",
  13064. "extra": {
  13065. "thanks": {
  13066. "url": "https://github.com/symfony/contracts",
  13067. "name": "symfony/contracts"
  13068. },
  13069. "branch-alias": {
  13070. "dev-main": "3.6-dev"
  13071. }
  13072. },
  13073. "autoload": {
  13074. "psr-4": {
  13075. "Symfony\\Contracts\\Translation\\": ""
  13076. },
  13077. "exclude-from-classmap": [
  13078. "/Test/"
  13079. ]
  13080. },
  13081. "notification-url": "https://packagist.org/downloads/",
  13082. "license": [
  13083. "MIT"
  13084. ],
  13085. "authors": [
  13086. {
  13087. "name": "Nicolas Grekas",
  13088. "email": "p@tchwork.com"
  13089. },
  13090. {
  13091. "name": "Symfony Community",
  13092. "homepage": "https://symfony.com/contributors"
  13093. }
  13094. ],
  13095. "description": "Generic abstractions related to translation",
  13096. "homepage": "https://symfony.com",
  13097. "keywords": [
  13098. "abstractions",
  13099. "contracts",
  13100. "decoupling",
  13101. "interfaces",
  13102. "interoperability",
  13103. "standards"
  13104. ],
  13105. "support": {
  13106. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  13107. },
  13108. "funding": [
  13109. {
  13110. "url": "https://symfony.com/sponsor",
  13111. "type": "custom"
  13112. },
  13113. {
  13114. "url": "https://github.com/fabpot",
  13115. "type": "github"
  13116. },
  13117. {
  13118. "url": "https://github.com/nicolas-grekas",
  13119. "type": "github"
  13120. },
  13121. {
  13122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13123. "type": "tidelift"
  13124. }
  13125. ],
  13126. "time": "2025-07-15T13:41:35+00:00"
  13127. },
  13128. {
  13129. "name": "symfony/validator",
  13130. "version": "v6.4.35",
  13131. "source": {
  13132. "type": "git",
  13133. "url": "https://github.com/symfony/validator.git",
  13134. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  13135. },
  13136. "dist": {
  13137. "type": "zip",
  13138. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13139. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13140. "shasum": ""
  13141. },
  13142. "require": {
  13143. "php": ">=8.1",
  13144. "symfony/deprecation-contracts": "^2.5|^3",
  13145. "symfony/polyfill-ctype": "~1.8",
  13146. "symfony/polyfill-mbstring": "~1.0",
  13147. "symfony/polyfill-php83": "^1.27",
  13148. "symfony/translation-contracts": "^2.5|^3"
  13149. },
  13150. "conflict": {
  13151. "doctrine/annotations": "<1.13",
  13152. "doctrine/lexer": "<1.1",
  13153. "symfony/dependency-injection": "<5.4",
  13154. "symfony/expression-language": "<5.4",
  13155. "symfony/http-kernel": "<5.4",
  13156. "symfony/intl": "<5.4",
  13157. "symfony/property-info": "<5.4",
  13158. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13159. "symfony/yaml": "<5.4"
  13160. },
  13161. "require-dev": {
  13162. "doctrine/annotations": "^1.13|^2",
  13163. "egulias/email-validator": "^2.1.10|^3|^4",
  13164. "symfony/cache": "^5.4|^6.0|^7.0",
  13165. "symfony/config": "^5.4|^6.0|^7.0",
  13166. "symfony/console": "^5.4|^6.0|^7.0",
  13167. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13168. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13169. "symfony/finder": "^5.4|^6.0|^7.0",
  13170. "symfony/http-client": "^5.4|^6.0|^7.0",
  13171. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13172. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13173. "symfony/intl": "^5.4|^6.0|^7.0",
  13174. "symfony/mime": "^5.4|^6.0|^7.0",
  13175. "symfony/property-access": "^5.4|^6.0|^7.0",
  13176. "symfony/property-info": "^5.4|^6.0|^7.0",
  13177. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13178. "symfony/yaml": "^5.4|^6.0|^7.0"
  13179. },
  13180. "type": "library",
  13181. "autoload": {
  13182. "psr-4": {
  13183. "Symfony\\Component\\Validator\\": ""
  13184. },
  13185. "exclude-from-classmap": [
  13186. "/Tests/",
  13187. "/Resources/bin/"
  13188. ]
  13189. },
  13190. "notification-url": "https://packagist.org/downloads/",
  13191. "license": [
  13192. "MIT"
  13193. ],
  13194. "authors": [
  13195. {
  13196. "name": "Fabien Potencier",
  13197. "email": "fabien@symfony.com"
  13198. },
  13199. {
  13200. "name": "Symfony Community",
  13201. "homepage": "https://symfony.com/contributors"
  13202. }
  13203. ],
  13204. "description": "Provides tools to validate values",
  13205. "homepage": "https://symfony.com",
  13206. "support": {
  13207. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  13208. },
  13209. "funding": [
  13210. {
  13211. "url": "https://symfony.com/sponsor",
  13212. "type": "custom"
  13213. },
  13214. {
  13215. "url": "https://github.com/fabpot",
  13216. "type": "github"
  13217. },
  13218. {
  13219. "url": "https://github.com/nicolas-grekas",
  13220. "type": "github"
  13221. },
  13222. {
  13223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13224. "type": "tidelift"
  13225. }
  13226. ],
  13227. "time": "2026-03-02T17:53:19+00:00"
  13228. },
  13229. {
  13230. "name": "symfony/var-dumper",
  13231. "version": "v6.4.32",
  13232. "source": {
  13233. "type": "git",
  13234. "url": "https://github.com/symfony/var-dumper.git",
  13235. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  13236. },
  13237. "dist": {
  13238. "type": "zip",
  13239. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  13240. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  13241. "shasum": ""
  13242. },
  13243. "require": {
  13244. "php": ">=8.1",
  13245. "symfony/deprecation-contracts": "^2.5|^3",
  13246. "symfony/polyfill-mbstring": "~1.0"
  13247. },
  13248. "conflict": {
  13249. "symfony/console": "<5.4"
  13250. },
  13251. "require-dev": {
  13252. "symfony/console": "^5.4|^6.0|^7.0",
  13253. "symfony/error-handler": "^6.3|^7.0",
  13254. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13255. "symfony/process": "^5.4|^6.0|^7.0",
  13256. "symfony/uid": "^5.4|^6.0|^7.0",
  13257. "twig/twig": "^2.13|^3.0.4"
  13258. },
  13259. "bin": [
  13260. "Resources/bin/var-dump-server"
  13261. ],
  13262. "type": "library",
  13263. "autoload": {
  13264. "files": [
  13265. "Resources/functions/dump.php"
  13266. ],
  13267. "psr-4": {
  13268. "Symfony\\Component\\VarDumper\\": ""
  13269. },
  13270. "exclude-from-classmap": [
  13271. "/Tests/"
  13272. ]
  13273. },
  13274. "notification-url": "https://packagist.org/downloads/",
  13275. "license": [
  13276. "MIT"
  13277. ],
  13278. "authors": [
  13279. {
  13280. "name": "Nicolas Grekas",
  13281. "email": "p@tchwork.com"
  13282. },
  13283. {
  13284. "name": "Symfony Community",
  13285. "homepage": "https://symfony.com/contributors"
  13286. }
  13287. ],
  13288. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13289. "homepage": "https://symfony.com",
  13290. "keywords": [
  13291. "debug",
  13292. "dump"
  13293. ],
  13294. "support": {
  13295. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  13296. },
  13297. "funding": [
  13298. {
  13299. "url": "https://symfony.com/sponsor",
  13300. "type": "custom"
  13301. },
  13302. {
  13303. "url": "https://github.com/fabpot",
  13304. "type": "github"
  13305. },
  13306. {
  13307. "url": "https://github.com/nicolas-grekas",
  13308. "type": "github"
  13309. },
  13310. {
  13311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13312. "type": "tidelift"
  13313. }
  13314. ],
  13315. "time": "2026-01-01T13:34:06+00:00"
  13316. },
  13317. {
  13318. "name": "symfony/var-exporter",
  13319. "version": "v6.4.26",
  13320. "source": {
  13321. "type": "git",
  13322. "url": "https://github.com/symfony/var-exporter.git",
  13323. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13324. },
  13325. "dist": {
  13326. "type": "zip",
  13327. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13328. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13329. "shasum": ""
  13330. },
  13331. "require": {
  13332. "php": ">=8.1",
  13333. "symfony/deprecation-contracts": "^2.5|^3"
  13334. },
  13335. "require-dev": {
  13336. "symfony/property-access": "^6.4|^7.0",
  13337. "symfony/serializer": "^6.4|^7.0",
  13338. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13339. },
  13340. "type": "library",
  13341. "autoload": {
  13342. "psr-4": {
  13343. "Symfony\\Component\\VarExporter\\": ""
  13344. },
  13345. "exclude-from-classmap": [
  13346. "/Tests/"
  13347. ]
  13348. },
  13349. "notification-url": "https://packagist.org/downloads/",
  13350. "license": [
  13351. "MIT"
  13352. ],
  13353. "authors": [
  13354. {
  13355. "name": "Nicolas Grekas",
  13356. "email": "p@tchwork.com"
  13357. },
  13358. {
  13359. "name": "Symfony Community",
  13360. "homepage": "https://symfony.com/contributors"
  13361. }
  13362. ],
  13363. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13364. "homepage": "https://symfony.com",
  13365. "keywords": [
  13366. "clone",
  13367. "construct",
  13368. "export",
  13369. "hydrate",
  13370. "instantiate",
  13371. "lazy-loading",
  13372. "proxy",
  13373. "serialize"
  13374. ],
  13375. "support": {
  13376. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13377. },
  13378. "funding": [
  13379. {
  13380. "url": "https://symfony.com/sponsor",
  13381. "type": "custom"
  13382. },
  13383. {
  13384. "url": "https://github.com/fabpot",
  13385. "type": "github"
  13386. },
  13387. {
  13388. "url": "https://github.com/nicolas-grekas",
  13389. "type": "github"
  13390. },
  13391. {
  13392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13393. "type": "tidelift"
  13394. }
  13395. ],
  13396. "time": "2025-09-11T09:57:09+00:00"
  13397. },
  13398. {
  13399. "name": "symfony/yaml",
  13400. "version": "v6.4.34",
  13401. "source": {
  13402. "type": "git",
  13403. "url": "https://github.com/symfony/yaml.git",
  13404. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  13405. },
  13406. "dist": {
  13407. "type": "zip",
  13408. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13409. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13410. "shasum": ""
  13411. },
  13412. "require": {
  13413. "php": ">=8.1",
  13414. "symfony/deprecation-contracts": "^2.5|^3",
  13415. "symfony/polyfill-ctype": "^1.8"
  13416. },
  13417. "conflict": {
  13418. "symfony/console": "<5.4"
  13419. },
  13420. "require-dev": {
  13421. "symfony/console": "^5.4|^6.0|^7.0"
  13422. },
  13423. "bin": [
  13424. "Resources/bin/yaml-lint"
  13425. ],
  13426. "type": "library",
  13427. "autoload": {
  13428. "psr-4": {
  13429. "Symfony\\Component\\Yaml\\": ""
  13430. },
  13431. "exclude-from-classmap": [
  13432. "/Tests/"
  13433. ]
  13434. },
  13435. "notification-url": "https://packagist.org/downloads/",
  13436. "license": [
  13437. "MIT"
  13438. ],
  13439. "authors": [
  13440. {
  13441. "name": "Fabien Potencier",
  13442. "email": "fabien@symfony.com"
  13443. },
  13444. {
  13445. "name": "Symfony Community",
  13446. "homepage": "https://symfony.com/contributors"
  13447. }
  13448. ],
  13449. "description": "Loads and dumps YAML files",
  13450. "homepage": "https://symfony.com",
  13451. "support": {
  13452. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  13453. },
  13454. "funding": [
  13455. {
  13456. "url": "https://symfony.com/sponsor",
  13457. "type": "custom"
  13458. },
  13459. {
  13460. "url": "https://github.com/fabpot",
  13461. "type": "github"
  13462. },
  13463. {
  13464. "url": "https://github.com/nicolas-grekas",
  13465. "type": "github"
  13466. },
  13467. {
  13468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13469. "type": "tidelift"
  13470. }
  13471. ],
  13472. "time": "2026-02-06T18:32:11+00:00"
  13473. },
  13474. {
  13475. "name": "twig/twig",
  13476. "version": "v3.22.2",
  13477. "source": {
  13478. "type": "git",
  13479. "url": "https://github.com/twigphp/Twig.git",
  13480. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  13481. },
  13482. "dist": {
  13483. "type": "zip",
  13484. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13485. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13486. "shasum": ""
  13487. },
  13488. "require": {
  13489. "php": ">=8.1.0",
  13490. "symfony/deprecation-contracts": "^2.5|^3",
  13491. "symfony/polyfill-ctype": "^1.8",
  13492. "symfony/polyfill-mbstring": "^1.3"
  13493. },
  13494. "require-dev": {
  13495. "phpstan/phpstan": "^2.0",
  13496. "psr/container": "^1.0|^2.0",
  13497. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13498. },
  13499. "type": "library",
  13500. "autoload": {
  13501. "files": [
  13502. "src/Resources/core.php",
  13503. "src/Resources/debug.php",
  13504. "src/Resources/escaper.php",
  13505. "src/Resources/string_loader.php"
  13506. ],
  13507. "psr-4": {
  13508. "Twig\\": "src/"
  13509. }
  13510. },
  13511. "notification-url": "https://packagist.org/downloads/",
  13512. "license": [
  13513. "BSD-3-Clause"
  13514. ],
  13515. "authors": [
  13516. {
  13517. "name": "Fabien Potencier",
  13518. "email": "fabien@symfony.com",
  13519. "homepage": "http://fabien.potencier.org",
  13520. "role": "Lead Developer"
  13521. },
  13522. {
  13523. "name": "Twig Team",
  13524. "role": "Contributors"
  13525. },
  13526. {
  13527. "name": "Armin Ronacher",
  13528. "email": "armin.ronacher@active-4.com",
  13529. "role": "Project Founder"
  13530. }
  13531. ],
  13532. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13533. "homepage": "https://twig.symfony.com",
  13534. "keywords": [
  13535. "templating"
  13536. ],
  13537. "support": {
  13538. "issues": "https://github.com/twigphp/Twig/issues",
  13539. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  13540. },
  13541. "funding": [
  13542. {
  13543. "url": "https://github.com/fabpot",
  13544. "type": "github"
  13545. },
  13546. {
  13547. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13548. "type": "tidelift"
  13549. }
  13550. ],
  13551. "time": "2025-12-14T11:28:47+00:00"
  13552. },
  13553. {
  13554. "name": "webflo/drupal-finder",
  13555. "version": "1.3.1",
  13556. "source": {
  13557. "type": "git",
  13558. "url": "https://github.com/webflo/drupal-finder.git",
  13559. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13560. },
  13561. "dist": {
  13562. "type": "zip",
  13563. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13564. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13565. "shasum": ""
  13566. },
  13567. "require": {
  13568. "composer-runtime-api": "^2.2",
  13569. "php": ">=8.1"
  13570. },
  13571. "require-dev": {
  13572. "mikey179/vfsstream": "^1.6",
  13573. "phpunit/phpunit": "^10.4",
  13574. "symfony/process": "^6.4"
  13575. },
  13576. "type": "library",
  13577. "autoload": {
  13578. "psr-4": {
  13579. "DrupalFinder\\": "src/"
  13580. }
  13581. },
  13582. "notification-url": "https://packagist.org/downloads/",
  13583. "license": [
  13584. "GPL-2.0-or-later"
  13585. ],
  13586. "authors": [
  13587. {
  13588. "name": "Florian Weber",
  13589. "email": "florian@webflo.org"
  13590. }
  13591. ],
  13592. "description": "Helper class to locate a Drupal installation.",
  13593. "support": {
  13594. "issues": "https://github.com/webflo/drupal-finder/issues",
  13595. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13596. },
  13597. "time": "2024-06-28T13:45:36+00:00"
  13598. },
  13599. {
  13600. "name": "wikimedia/composer-merge-plugin",
  13601. "version": "v2.1.0",
  13602. "source": {
  13603. "type": "git",
  13604. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13605. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13606. },
  13607. "dist": {
  13608. "type": "zip",
  13609. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13610. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13611. "shasum": ""
  13612. },
  13613. "require": {
  13614. "composer-plugin-api": "^1.1||^2.0",
  13615. "php": ">=7.2.0"
  13616. },
  13617. "require-dev": {
  13618. "composer/composer": "^1.1||^2.0",
  13619. "ext-json": "*",
  13620. "mediawiki/mediawiki-phan-config": "0.11.1",
  13621. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13622. "phpspec/prophecy": "~1.15.0",
  13623. "phpunit/phpunit": "^8.5||^9.0",
  13624. "squizlabs/php_codesniffer": "~3.7.1"
  13625. },
  13626. "type": "composer-plugin",
  13627. "extra": {
  13628. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13629. "branch-alias": {
  13630. "dev-master": "2.x-dev"
  13631. }
  13632. },
  13633. "autoload": {
  13634. "psr-4": {
  13635. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13636. }
  13637. },
  13638. "notification-url": "https://packagist.org/downloads/",
  13639. "license": [
  13640. "MIT"
  13641. ],
  13642. "authors": [
  13643. {
  13644. "name": "Bryan Davis",
  13645. "email": "bd808@wikimedia.org"
  13646. }
  13647. ],
  13648. "description": "Composer plugin to merge multiple composer.json files",
  13649. "support": {
  13650. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13651. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13652. },
  13653. "time": "2023-04-15T19:07:00+00:00"
  13654. },
  13655. {
  13656. "name": "willdurand/geocoder",
  13657. "version": "5.0.0",
  13658. "source": {
  13659. "type": "git",
  13660. "url": "https://github.com/geocoder-php/php-common.git",
  13661. "reference": "a749e00819d2929bd0ec40fb79853956332970ba"
  13662. },
  13663. "dist": {
  13664. "type": "zip",
  13665. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/a749e00819d2929bd0ec40fb79853956332970ba",
  13666. "reference": "a749e00819d2929bd0ec40fb79853956332970ba",
  13667. "shasum": ""
  13668. },
  13669. "require": {
  13670. "php": ">=8.2"
  13671. },
  13672. "require-dev": {
  13673. "nyholm/nsa": "^1.1",
  13674. "phpunit/phpunit": "^9.5",
  13675. "symfony/stopwatch": "~2.5 || ~5.0"
  13676. },
  13677. "suggest": {
  13678. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13679. },
  13680. "type": "library",
  13681. "extra": {
  13682. "branch-alias": {
  13683. "dev-master": "5.1-dev"
  13684. }
  13685. },
  13686. "autoload": {
  13687. "psr-4": {
  13688. "Geocoder\\": ""
  13689. },
  13690. "exclude-from-classmap": [
  13691. "/Tests/"
  13692. ]
  13693. },
  13694. "notification-url": "https://packagist.org/downloads/",
  13695. "license": [
  13696. "MIT"
  13697. ],
  13698. "authors": [
  13699. {
  13700. "name": "William Durand",
  13701. "email": "william.durand1@gmail.com"
  13702. }
  13703. ],
  13704. "description": "Common files for PHP Geocoder",
  13705. "homepage": "http://geocoder-php.org",
  13706. "keywords": [
  13707. "abstraction",
  13708. "geocoder",
  13709. "geocoding",
  13710. "geoip"
  13711. ],
  13712. "support": {
  13713. "source": "https://github.com/geocoder-php/php-common/tree/5.0.0"
  13714. },
  13715. "time": "2025-01-01T15:52:42+00:00"
  13716. }
  13717. ],
  13718. "packages-dev": [],
  13719. "aliases": [],
  13720. "minimum-stability": "stable",
  13721. "stability-flags": {
  13722. "drupal/advanced_text_formatter": 5,
  13723. "drupal/computed_token_field": 10,
  13724. "drupal/config_update": 15,
  13725. "drupal/context": 5,
  13726. "drupal/date_range_formatter": 20,
  13727. "drupal/email_registration": 5,
  13728. "drupal/entity_clone": 20,
  13729. "drupal/inline_entity_form": 5,
  13730. "drupal/page_manager": 5,
  13731. "drupal/pathologic": 15,
  13732. "drupal/smtp": 10,
  13733. "drupal/synonyms": 10,
  13734. "drupal/translation_views": 15,
  13735. "drupal/ultimate_cron": 15
  13736. },
  13737. "prefer-stable": true,
  13738. "prefer-lowest": false,
  13739. "platform": {},
  13740. "platform-dev": {},
  13741. "plugin-api-version": "2.9.0"
  13742. }