composer.lock 505 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736
  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.10.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://git.drupalcode.org/project/config_devel.git",
  2661. "reference": "8.x-1.10"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2666. "reference": "8.x-1.10",
  2667. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2668. },
  2669. "require": {
  2670. "drupal/core": "^9.3 || ^10 || ^11"
  2671. },
  2672. "type": "drupal-module",
  2673. "extra": {
  2674. "drupal": {
  2675. "version": "8.x-1.10",
  2676. "datestamp": "1727184343",
  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.17.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://git.drupalcode.org/project/config_pages.git",
  2934. "reference": "8.x-2.17"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  2939. "reference": "8.x-2.17",
  2940. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  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.17",
  2949. "datestamp": "1736029180",
  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.4.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://git.drupalcode.org/project/devel.git",
  3715. "reference": "5.4.0"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://ftp.drupal.org/files/projects/devel-5.4.0.zip",
  3720. "reference": "5.4.0",
  3721. "shasum": "fc14fe1c396dbff661f9d13e6e3171d9ab781a46"
  3722. },
  3723. "require": {
  3724. "doctrine/common": "^2.7 || ^3.4",
  3725. "drupal/core": "^10.3 || ^11 || ^12",
  3726. "php": ">=8.1",
  3727. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3728. },
  3729. "conflict": {
  3730. "drupal/core": "<10.3",
  3731. "drush/drush": "<12.5.1"
  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. "suggest": {
  3739. "drupal/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3740. },
  3741. "type": "drupal-module",
  3742. "extra": {
  3743. "drupal": {
  3744. "version": "5.4.0",
  3745. "datestamp": "1752755621",
  3746. "security-coverage": {
  3747. "status": "covered",
  3748. "message": "Covered by Drupal's security advisory policy"
  3749. }
  3750. }
  3751. },
  3752. "notification-url": "https://packages.drupal.org/8/downloads",
  3753. "license": [
  3754. "GPL-2.0-or-later"
  3755. ],
  3756. "authors": [
  3757. {
  3758. "name": "moshe weitzman",
  3759. "homepage": "https://www.drupal.org/user/23"
  3760. }
  3761. ],
  3762. "description": "Various blocks, pages, and functions for developers.",
  3763. "homepage": "https://www.drupal.org/project/devel",
  3764. "support": {
  3765. "source": "https://gitlab.com/drupalspoons/devel",
  3766. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3767. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3768. }
  3769. },
  3770. {
  3771. "name": "drupal/devel_kint_extras",
  3772. "version": "1.1.4",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3776. "reference": "1.1.4"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3781. "reference": "1.1.4",
  3782. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3783. },
  3784. "require": {
  3785. "drupal/core": "^9 || ^10 || ^11",
  3786. "drupal/devel": "^4.0 || ^5.0",
  3787. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3788. },
  3789. "type": "drupal-module",
  3790. "extra": {
  3791. "drupal": {
  3792. "version": "1.1.4",
  3793. "datestamp": "1740995042",
  3794. "security-coverage": {
  3795. "status": "covered",
  3796. "message": "Covered by Drupal's security advisory policy"
  3797. }
  3798. }
  3799. },
  3800. "notification-url": "https://packages.drupal.org/8/downloads",
  3801. "license": [
  3802. "GPL-2.0-or-later"
  3803. ],
  3804. "authors": [
  3805. {
  3806. "name": "Jan Chojnacki",
  3807. "homepage": "https://www.drupal.org/u/janchojnacki"
  3808. },
  3809. {
  3810. "name": "Other contributors",
  3811. "homepage": "https://www.drupal.org/node/3164492/committers"
  3812. }
  3813. ],
  3814. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3815. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3816. "support": {
  3817. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3818. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3819. "chat": "irc://irc.freenode.org/drupal-contribute"
  3820. }
  3821. },
  3822. {
  3823. "name": "drupal/email_registration",
  3824. "version": "1.4.0",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://git.drupalcode.org/project/email_registration.git",
  3828. "reference": "8.x-1.4"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3833. "reference": "8.x-1.4",
  3834. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3835. },
  3836. "require": {
  3837. "drupal/core": "^9.1 || ^10"
  3838. },
  3839. "conflict": {
  3840. "drupal/commerce": "<2.12"
  3841. },
  3842. "require-dev": {
  3843. "drupal/commerce": "^2.0",
  3844. "drupal/token": "*"
  3845. },
  3846. "type": "drupal-module",
  3847. "extra": {
  3848. "drupal": {
  3849. "version": "8.x-1.4",
  3850. "datestamp": "1700548925",
  3851. "security-coverage": {
  3852. "status": "covered",
  3853. "message": "Covered by Drupal's security advisory policy"
  3854. }
  3855. }
  3856. },
  3857. "notification-url": "https://packages.drupal.org/8/downloads",
  3858. "license": [
  3859. "GPL-2.0-or-later"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "Greg Knaddison (greggles)",
  3864. "homepage": "https://www.drupal.org/u/greggles",
  3865. "role": "Maintainer"
  3866. },
  3867. {
  3868. "name": "Andrey Postnikov (andypost)",
  3869. "homepage": "https://www.drupal.org/u/andypost",
  3870. "role": "Maintainer"
  3871. },
  3872. {
  3873. "name": "Chris Herberte",
  3874. "homepage": "https://www.drupal.org/u/chris-herberte",
  3875. "role": "Maintainer"
  3876. },
  3877. {
  3878. "name": "Moshe Weitzman (moshe weitzman)",
  3879. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3880. "role": "Maintainer"
  3881. },
  3882. {
  3883. "name": "grevil",
  3884. "homepage": "https://www.drupal.org/user/3668491"
  3885. },
  3886. {
  3887. "name": "moshe weitzman",
  3888. "homepage": "https://www.drupal.org/user/23"
  3889. }
  3890. ],
  3891. "description": "Allows users to register with an email address as their username.",
  3892. "homepage": "https://www.drupal.org/project/email_registration",
  3893. "support": {
  3894. "source": "https://git.drupalcode.org/project/email_registration",
  3895. "issues": "http://drupal.org/project/issues/email_registration"
  3896. }
  3897. },
  3898. {
  3899. "name": "drupal/embed",
  3900. "version": "1.10.0",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://git.drupalcode.org/project/embed.git",
  3904. "reference": "8.x-1.10"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  3909. "reference": "8.x-1.10",
  3910. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  3911. },
  3912. "require": {
  3913. "drupal/core": "^10.2 || ^11"
  3914. },
  3915. "require-dev": {
  3916. "drupal/ckeditor": "^1.0"
  3917. },
  3918. "type": "drupal-module",
  3919. "extra": {
  3920. "drupal": {
  3921. "version": "8.x-1.10",
  3922. "datestamp": "1737663032",
  3923. "security-coverage": {
  3924. "status": "covered",
  3925. "message": "Covered by Drupal's security advisory policy"
  3926. }
  3927. }
  3928. },
  3929. "notification-url": "https://packages.drupal.org/8/downloads",
  3930. "license": [
  3931. "GPL-2.0-or-later"
  3932. ],
  3933. "authors": [
  3934. {
  3935. "name": "cs_shadow",
  3936. "homepage": "https://www.drupal.org/user/2828287"
  3937. },
  3938. {
  3939. "name": "dave reid",
  3940. "homepage": "https://www.drupal.org/user/53892"
  3941. },
  3942. {
  3943. "name": "devin carlson",
  3944. "homepage": "https://www.drupal.org/user/290182"
  3945. },
  3946. {
  3947. "name": "Drupal Media Team",
  3948. "homepage": "https://www.drupal.org/user/3260690"
  3949. },
  3950. {
  3951. "name": "phenaproxima",
  3952. "homepage": "https://www.drupal.org/user/205645"
  3953. },
  3954. {
  3955. "name": "slashrsm",
  3956. "homepage": "https://www.drupal.org/user/744628"
  3957. }
  3958. ],
  3959. "description": "Provides a framework for different types of embeds in text editors.",
  3960. "homepage": "https://www.drupal.org/project/embed",
  3961. "support": {
  3962. "source": "https://git.drupalcode.org/project/embed"
  3963. }
  3964. },
  3965. {
  3966. "name": "drupal/entity_browser",
  3967. "version": "2.15.0",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3971. "reference": "8.x-2.15"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.15.zip",
  3976. "reference": "8.x-2.15",
  3977. "shasum": "86265fadf12f8c2eb4bc0dc813589efe8fa180a2"
  3978. },
  3979. "require": {
  3980. "drupal/core": "^10.2 || ^11"
  3981. },
  3982. "conflict": {
  3983. "drupal/media_entity": "1.*"
  3984. },
  3985. "require-dev": {
  3986. "drupal/embed": "^1.0",
  3987. "drupal/entity_embed": "^1.0",
  3988. "drupal/entity_reference_revisions": "^1.0",
  3989. "drupal/entityqueue": "^1.0",
  3990. "drupal/inline_entity_form": "^1 || ^3",
  3991. "drupal/paragraphs": "^1.0",
  3992. "drupal/search_api": "^1.0",
  3993. "drupal/token": "^1.0"
  3994. },
  3995. "type": "drupal-module",
  3996. "extra": {
  3997. "drupal": {
  3998. "version": "8.x-2.15",
  3999. "datestamp": "1756969160",
  4000. "security-coverage": {
  4001. "status": "covered",
  4002. "message": "Covered by Drupal's security advisory policy"
  4003. }
  4004. }
  4005. },
  4006. "notification-url": "https://packages.drupal.org/8/downloads",
  4007. "license": [
  4008. "GPL-2.0+"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Janez Urevc",
  4013. "homepage": "https://github.com/slashrsm",
  4014. "role": "Maintainer"
  4015. },
  4016. {
  4017. "name": "Primoz Hmeljak",
  4018. "homepage": "https://github.com/primsi",
  4019. "role": "Maintainer"
  4020. },
  4021. {
  4022. "name": "See other contributors",
  4023. "homepage": "https://www.drupal.org/node/1943336/committers",
  4024. "role": "contributor"
  4025. },
  4026. {
  4027. "name": "devin carlson",
  4028. "homepage": "https://www.drupal.org/user/290182"
  4029. },
  4030. {
  4031. "name": "Drupal Media Team",
  4032. "homepage": "https://www.drupal.org/user/3260690"
  4033. },
  4034. {
  4035. "name": "grevil",
  4036. "homepage": "https://www.drupal.org/user/3668491"
  4037. },
  4038. {
  4039. "name": "marcingy",
  4040. "homepage": "https://www.drupal.org/user/77320"
  4041. },
  4042. {
  4043. "name": "oknate",
  4044. "homepage": "https://www.drupal.org/user/471638"
  4045. },
  4046. {
  4047. "name": "primsi",
  4048. "homepage": "https://www.drupal.org/user/282629"
  4049. },
  4050. {
  4051. "name": "samuel.mortenson",
  4052. "homepage": "https://www.drupal.org/user/2582268"
  4053. },
  4054. {
  4055. "name": "slashrsm",
  4056. "homepage": "https://www.drupal.org/user/744628"
  4057. }
  4058. ],
  4059. "description": "Entity browsing and selecting component.",
  4060. "homepage": "https://drupal.org/project/entity_browser",
  4061. "support": {
  4062. "source": "https://git.drupalcode.org/project/entity_browser",
  4063. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4064. "irc": "irc://irc.freenode.org/drupal-contribute"
  4065. }
  4066. },
  4067. {
  4068. "name": "drupal/entity_browser_enhanced",
  4069. "version": "2.0.1",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4073. "reference": "2.0.1"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4078. "reference": "2.0.1",
  4079. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4080. },
  4081. "require": {
  4082. "drupal/core": "^10 || ^11",
  4083. "drupal/entity_browser": "~2.0"
  4084. },
  4085. "type": "drupal-module",
  4086. "extra": {
  4087. "drupal": {
  4088. "version": "2.0.1",
  4089. "datestamp": "1719827338",
  4090. "security-coverage": {
  4091. "status": "covered",
  4092. "message": "Covered by Drupal's security advisory policy"
  4093. }
  4094. }
  4095. },
  4096. "notification-url": "https://packages.drupal.org/8/downloads",
  4097. "license": [
  4098. "GPL-2.0-or-later"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Vardot",
  4103. "homepage": "https://www.drupal.org/vardot",
  4104. "role": "Maintainer"
  4105. },
  4106. {
  4107. "name": "rajab natshah",
  4108. "homepage": "https://www.drupal.org/user/1414312"
  4109. }
  4110. ],
  4111. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4112. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4113. "support": {
  4114. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4115. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4116. }
  4117. },
  4118. {
  4119. "name": "drupal/entity_clone",
  4120. "version": "dev-2.x",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4124. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4125. },
  4126. "require": {
  4127. "drupal/core": "^9 || ^10 || ^11"
  4128. },
  4129. "require-dev": {
  4130. "drupal/entity_browser": "2.x-dev",
  4131. "drupal/entity_usage": "2.x-dev",
  4132. "drupal/paragraphs": "^1.0",
  4133. "drupal/search_api": "^1.0"
  4134. },
  4135. "type": "drupal-module",
  4136. "extra": {
  4137. "branch-alias": {
  4138. "dev-2.x": "2.x-dev"
  4139. },
  4140. "drupal": {
  4141. "version": "2.1.0-beta1+3-dev",
  4142. "datestamp": "1748869926",
  4143. "security-coverage": {
  4144. "status": "not-covered",
  4145. "message": "Dev releases are not covered by Drupal security advisories."
  4146. }
  4147. }
  4148. },
  4149. "notification-url": "https://packages.drupal.org/8/downloads",
  4150. "license": [
  4151. "GPL-2.0-or-later"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "colan",
  4156. "homepage": "https://www.drupal.org/user/58704"
  4157. },
  4158. {
  4159. "name": "joevagyok",
  4160. "homepage": "https://www.drupal.org/user/2876343"
  4161. },
  4162. {
  4163. "name": "nickdickinsonwilde",
  4164. "homepage": "https://www.drupal.org/user/3094661"
  4165. },
  4166. {
  4167. "name": "rajeshreeputra",
  4168. "homepage": "https://www.drupal.org/user/3418561"
  4169. },
  4170. {
  4171. "name": "upchuk",
  4172. "homepage": "https://www.drupal.org/user/1885838"
  4173. },
  4174. {
  4175. "name": "vpeltot",
  4176. "homepage": "https://www.drupal.org/user/1361586"
  4177. }
  4178. ],
  4179. "description": "Add a clone action for all entities.",
  4180. "homepage": "https://drupal.org/project/entity_clone",
  4181. "support": {
  4182. "source": "https://git.drupalcode.org/project/entity_clone"
  4183. }
  4184. },
  4185. {
  4186. "name": "drupal/entity_reference_revisions",
  4187. "version": "1.12.0",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4191. "reference": "8.x-1.12"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
  4196. "reference": "8.x-1.12",
  4197. "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
  4198. },
  4199. "require": {
  4200. "drupal/core": "^9 || ^10 || ^11"
  4201. },
  4202. "require-dev": {
  4203. "drupal/diff": "^1 || ^2"
  4204. },
  4205. "type": "drupal-module",
  4206. "extra": {
  4207. "drupal": {
  4208. "version": "8.x-1.12",
  4209. "datestamp": "1722804497",
  4210. "security-coverage": {
  4211. "status": "covered",
  4212. "message": "Covered by Drupal's security advisory policy"
  4213. }
  4214. },
  4215. "drush": {
  4216. "services": {
  4217. "drush.services.yml": "^9 || ^10 || ^11"
  4218. }
  4219. }
  4220. },
  4221. "notification-url": "https://packages.drupal.org/8/downloads",
  4222. "license": [
  4223. "GPL-2.0-or-later"
  4224. ],
  4225. "authors": [
  4226. {
  4227. "name": "berdir",
  4228. "homepage": "https://www.drupal.org/user/214652"
  4229. },
  4230. {
  4231. "name": "Frans",
  4232. "homepage": "https://www.drupal.org/user/514222"
  4233. },
  4234. {
  4235. "name": "jeroen.b",
  4236. "homepage": "https://www.drupal.org/user/1853532"
  4237. },
  4238. {
  4239. "name": "miro_dietiker",
  4240. "homepage": "https://www.drupal.org/user/227761"
  4241. }
  4242. ],
  4243. "description": "Entity Reference Revisions",
  4244. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4245. "support": {
  4246. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4247. }
  4248. },
  4249. {
  4250. "name": "drupal/entity_type_clone",
  4251. "version": "4.0.3",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4255. "reference": "4.0.3"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.3.zip",
  4260. "reference": "4.0.3",
  4261. "shasum": "684e81fcaa034bfb7a4ffdc3e81c040701fbd8b7"
  4262. },
  4263. "require": {
  4264. "drupal/core": "^8 || ^9 || ^10"
  4265. },
  4266. "type": "drupal-module",
  4267. "extra": {
  4268. "drupal": {
  4269. "version": "4.0.3",
  4270. "datestamp": "1693947342",
  4271. "security-coverage": {
  4272. "status": "covered",
  4273. "message": "Covered by Drupal's security advisory policy"
  4274. }
  4275. }
  4276. },
  4277. "notification-url": "https://packages.drupal.org/8/downloads",
  4278. "license": [
  4279. "GPL-2.0-or-later"
  4280. ],
  4281. "authors": [
  4282. {
  4283. "name": "ajay_reddy",
  4284. "homepage": "https://www.drupal.org/user/3261994"
  4285. },
  4286. {
  4287. "name": "vuil",
  4288. "homepage": "https://www.drupal.org/user/3568458"
  4289. }
  4290. ],
  4291. "description": "This module provide option to clone entity types and role.",
  4292. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4293. "support": {
  4294. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4295. }
  4296. },
  4297. {
  4298. "name": "drupal/extlink",
  4299. "version": "2.0.4",
  4300. "source": {
  4301. "type": "git",
  4302. "url": "https://git.drupalcode.org/project/extlink.git",
  4303. "reference": "2.0.4"
  4304. },
  4305. "dist": {
  4306. "type": "zip",
  4307. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.4.zip",
  4308. "reference": "2.0.4",
  4309. "shasum": "0331ef3457d3a1701f01e04f8256bdd823ea3512"
  4310. },
  4311. "require": {
  4312. "drupal/core": "^10 || ^11"
  4313. },
  4314. "type": "drupal-module",
  4315. "extra": {
  4316. "drupal": {
  4317. "version": "2.0.4",
  4318. "datestamp": "1732565828",
  4319. "security-coverage": {
  4320. "status": "covered",
  4321. "message": "Covered by Drupal's security advisory policy"
  4322. }
  4323. }
  4324. },
  4325. "notification-url": "https://packages.drupal.org/8/downloads",
  4326. "license": [
  4327. "GPL-2.0-or-later"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "Nate Lampton",
  4332. "homepage": "https://www.drupal.org/u/quicksketch",
  4333. "role": "Maintainer"
  4334. },
  4335. {
  4336. "name": "Lachlan Ennis",
  4337. "homepage": "https://www.drupal.org/u/elachlan",
  4338. "role": "Maintainer"
  4339. },
  4340. {
  4341. "name": "Neslee Canil Pinto",
  4342. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4343. "role": "Maintainer"
  4344. },
  4345. {
  4346. "name": "quicksketch",
  4347. "homepage": "https://www.drupal.org/user/35821"
  4348. },
  4349. {
  4350. "name": "smustgrave",
  4351. "homepage": "https://www.drupal.org/user/3252890"
  4352. }
  4353. ],
  4354. "description": "Modify behavior and appearance of external links.",
  4355. "homepage": "https://www.drupal.org/project/extlink",
  4356. "keywords": [
  4357. "Drupal",
  4358. "External Links"
  4359. ],
  4360. "support": {
  4361. "source": "https://git.drupalcode.org/project/extlink",
  4362. "issues": "https://www.drupal.org/project/issues/extlink"
  4363. }
  4364. },
  4365. {
  4366. "name": "drupal/field_group",
  4367. "version": "3.6.0",
  4368. "source": {
  4369. "type": "git",
  4370. "url": "https://git.drupalcode.org/project/field_group.git",
  4371. "reference": "8.x-3.6"
  4372. },
  4373. "dist": {
  4374. "type": "zip",
  4375. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4376. "reference": "8.x-3.6",
  4377. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4378. },
  4379. "require": {
  4380. "drupal/core": "^9.2 || ^10 || ^11"
  4381. },
  4382. "require-dev": {
  4383. "drupal/jquery_ui_accordion": "*"
  4384. },
  4385. "type": "drupal-module",
  4386. "extra": {
  4387. "drupal": {
  4388. "version": "8.x-3.6",
  4389. "datestamp": "1722672510",
  4390. "security-coverage": {
  4391. "status": "covered",
  4392. "message": "Covered by Drupal's security advisory policy"
  4393. }
  4394. }
  4395. },
  4396. "notification-url": "https://packages.drupal.org/8/downloads",
  4397. "license": [
  4398. "GPL-2.0-or-later"
  4399. ],
  4400. "authors": [
  4401. {
  4402. "name": "anybody",
  4403. "homepage": "https://www.drupal.org/user/291091"
  4404. },
  4405. {
  4406. "name": "grevil",
  4407. "homepage": "https://www.drupal.org/user/3668491"
  4408. },
  4409. {
  4410. "name": "hydra",
  4411. "homepage": "https://www.drupal.org/user/647364"
  4412. },
  4413. {
  4414. "name": "joevagyok",
  4415. "homepage": "https://www.drupal.org/user/2876343"
  4416. },
  4417. {
  4418. "name": "jyve",
  4419. "homepage": "https://www.drupal.org/user/591438"
  4420. },
  4421. {
  4422. "name": "nils.destoop",
  4423. "homepage": "https://www.drupal.org/user/361625"
  4424. },
  4425. {
  4426. "name": "Stalski",
  4427. "homepage": "https://www.drupal.org/user/322618"
  4428. },
  4429. {
  4430. "name": "swentel",
  4431. "homepage": "https://www.drupal.org/user/107403"
  4432. }
  4433. ],
  4434. "description": "Provides the field_group module.",
  4435. "homepage": "https://www.drupal.org/project/field_group",
  4436. "support": {
  4437. "source": "https://git.drupalcode.org/project/field_group",
  4438. "issues": "https://www.drupal.org/project/issues/field_group"
  4439. }
  4440. },
  4441. {
  4442. "name": "drupal/filter_perms",
  4443. "version": "2.0.2",
  4444. "source": {
  4445. "type": "git",
  4446. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4447. "reference": "2.0.2"
  4448. },
  4449. "dist": {
  4450. "type": "zip",
  4451. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4452. "reference": "2.0.2",
  4453. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4454. },
  4455. "require": {
  4456. "drupal/core": "^10.3 || ^11 || ^12"
  4457. },
  4458. "type": "drupal-module",
  4459. "extra": {
  4460. "drupal": {
  4461. "version": "2.0.2",
  4462. "datestamp": "1745993059",
  4463. "security-coverage": {
  4464. "status": "covered",
  4465. "message": "Covered by Drupal's security advisory policy"
  4466. }
  4467. }
  4468. },
  4469. "notification-url": "https://packages.drupal.org/8/downloads",
  4470. "license": [
  4471. "GPL-2.0+"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "cyu",
  4476. "homepage": "https://www.drupal.org/user/202205"
  4477. },
  4478. {
  4479. "name": "deekayen",
  4480. "homepage": "https://www.drupal.org/user/972"
  4481. },
  4482. {
  4483. "name": "ivavictoria",
  4484. "homepage": "https://www.drupal.org/user/3061533"
  4485. },
  4486. {
  4487. "name": "justcaldwell",
  4488. "homepage": "https://www.drupal.org/user/290069"
  4489. },
  4490. {
  4491. "name": "mgbellaire",
  4492. "homepage": "https://www.drupal.org/user/1831932"
  4493. },
  4494. {
  4495. "name": "scott_euser",
  4496. "homepage": "https://www.drupal.org/user/3267594"
  4497. },
  4498. {
  4499. "name": "willzyx",
  4500. "homepage": "https://www.drupal.org/user/1043862"
  4501. }
  4502. ],
  4503. "description": "Provides role and module filters to simplify the user permissions page.",
  4504. "homepage": "https://www.drupal.org/project/filter_perms",
  4505. "support": {
  4506. "source": "http://cgit.drupalcode.org/filter_perms",
  4507. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4508. }
  4509. },
  4510. {
  4511. "name": "drupal/formatter_suite",
  4512. "version": "2.1.0",
  4513. "source": {
  4514. "type": "git",
  4515. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4516. "reference": "2.1.0"
  4517. },
  4518. "dist": {
  4519. "type": "zip",
  4520. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.1.0.zip",
  4521. "reference": "2.1.0",
  4522. "shasum": "699e14a27dfecfaa4abd3f923102f3256603aa28"
  4523. },
  4524. "require": {
  4525. "drupal/core": "^9 || ^10"
  4526. },
  4527. "type": "drupal-module",
  4528. "extra": {
  4529. "drupal": {
  4530. "version": "2.1.0",
  4531. "datestamp": "1742410413",
  4532. "security-coverage": {
  4533. "status": "covered",
  4534. "message": "Covered by Drupal's security advisory policy"
  4535. }
  4536. }
  4537. },
  4538. "notification-url": "https://packages.drupal.org/8/downloads",
  4539. "license": [
  4540. "GPL-2.0-or-later"
  4541. ],
  4542. "authors": [
  4543. {
  4544. "name": "cyoun",
  4545. "homepage": "https://www.drupal.org/user/3819850"
  4546. },
  4547. {
  4548. "name": "toamit",
  4549. "homepage": "https://www.drupal.org/user/2820523"
  4550. }
  4551. ],
  4552. "description": "Field formaters to present numbers, text, links, etc.",
  4553. "homepage": "https://www.drupal.org/project/formatter_suite",
  4554. "keywords": [
  4555. "Drupal",
  4556. "Format"
  4557. ],
  4558. "support": {
  4559. "source": "http://cgit.drupalcode.org/formatter_suite",
  4560. "issues": "http://drupal.org/project/issues/formatter_suite"
  4561. }
  4562. },
  4563. {
  4564. "name": "drupal/geocoder",
  4565. "version": "4.29.0",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://git.drupalcode.org/project/geocoder.git",
  4569. "reference": "8.x-4.29"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.29.zip",
  4574. "reference": "8.x-4.29",
  4575. "shasum": "f874ecd2a743df517e27cdc6a1332e0fe0e97b53"
  4576. },
  4577. "require": {
  4578. "davedevelopment/stiphle": "^0.9.2",
  4579. "drupal/core": "^9.5 || ^10 || ^11",
  4580. "php": ">=7.3.0",
  4581. "php-http/guzzle7-adapter": "^1.0",
  4582. "php-http/message": "^1.6",
  4583. "willdurand/geocoder": "^4.0|^5.0"
  4584. },
  4585. "require-dev": {
  4586. "drupal/address": "^1.11 || ^2.0",
  4587. "drupal/geocoder_field": "*",
  4588. "drupal/geofield": "^1.52",
  4589. "geo6/geocoder-php-addok-provider": "^1.0",
  4590. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4591. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4592. "geo6/geocoder-php-spw-provider": "^1.0",
  4593. "geocoder-php/arcgis-online-provider": "^4.0",
  4594. "geocoder-php/azure-maps-provider": "^1.2",
  4595. "geocoder-php/bing-maps-provider": "^4.0",
  4596. "geocoder-php/free-geoip-provider": "^4.1",
  4597. "geocoder-php/geo-plugin-provider": "^4.0",
  4598. "geocoder-php/geonames-provider": "^4.1",
  4599. "geocoder-php/google-maps-provider": "^4.2",
  4600. "geocoder-php/graphhopper-provider": "^0.5.0",
  4601. "geocoder-php/host-ip-provider": "^4.0",
  4602. "geocoder-php/ip-info-db-provider": "^4.0",
  4603. "geocoder-php/locationiq-provider": "^1.5",
  4604. "geocoder-php/mapbox-provider": "^1.0",
  4605. "geocoder-php/mapquest-provider": "^4.0",
  4606. "geocoder-php/maptiler-provider": "^1.0",
  4607. "geocoder-php/maxmind-provider": "^4.1",
  4608. "geocoder-php/nominatim-provider": "^5.0",
  4609. "geocoder-php/open-cage-provider": "^4.0",
  4610. "geocoder-php/openrouteservice-provider": "^1.0",
  4611. "geocoder-php/pelias-provider": "^1.1",
  4612. "geocoder-php/photon-provider": "^0.6",
  4613. "geocoder-php/tomtom-provider": "^4.0",
  4614. "geocoder-php/yandex-provider": "^4.0",
  4615. "systonic/ban-france-provider": "^1.0"
  4616. },
  4617. "type": "drupal-module",
  4618. "extra": {
  4619. "drupal": {
  4620. "version": "8.x-4.29",
  4621. "datestamp": "1749505480",
  4622. "security-coverage": {
  4623. "status": "covered",
  4624. "message": "Covered by Drupal's security advisory policy"
  4625. }
  4626. }
  4627. },
  4628. "notification-url": "https://packages.drupal.org/8/downloads",
  4629. "license": [
  4630. "GPL-2.0-or-later"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Pol Dellaiera (@drupol)",
  4635. "homepage": "https://www.drupal.org/u/pol",
  4636. "role": "Maintainer"
  4637. },
  4638. {
  4639. "name": "Italo Mairo (@itamair)",
  4640. "homepage": "https://www.drupal.org/u/itamair",
  4641. "role": "Co-maintainer"
  4642. },
  4643. {
  4644. "name": "michaelfavia",
  4645. "homepage": "https://www.drupal.org/user/49137"
  4646. },
  4647. {
  4648. "name": "poker10",
  4649. "homepage": "https://www.drupal.org/user/272316"
  4650. }
  4651. ],
  4652. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4653. "homepage": "https://drupal.org/project/geocoder",
  4654. "support": {
  4655. "source": "https://git.drupalcode.org/project/geocoder",
  4656. "issues": "https://drupal.org/project/issues/geocoder",
  4657. "irc": "irc://irc.freenode.org/drupal-geo"
  4658. }
  4659. },
  4660. {
  4661. "name": "drupal/geofield",
  4662. "version": "1.64.0",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://git.drupalcode.org/project/geofield.git",
  4666. "reference": "8.x-1.64"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.64.zip",
  4671. "reference": "8.x-1.64",
  4672. "shasum": "300f8cf8bf4d0cf2660c5a7e81d56146d947b772"
  4673. },
  4674. "require": {
  4675. "drupal/core": "^9 || ^10 || ^11",
  4676. "itamair/geophp": "^1.6"
  4677. },
  4678. "require-dev": {
  4679. "drupal/diff": "^1.3",
  4680. "drupal/feeds": "^3.0@beta"
  4681. },
  4682. "type": "drupal-module",
  4683. "extra": {
  4684. "drupal": {
  4685. "version": "8.x-1.64",
  4686. "datestamp": "1736675456",
  4687. "security-coverage": {
  4688. "status": "covered",
  4689. "message": "Covered by Drupal's security advisory policy"
  4690. }
  4691. }
  4692. },
  4693. "notification-url": "https://packages.drupal.org/8/downloads",
  4694. "license": [
  4695. "GPL-2.0+"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "Italo Mairo",
  4700. "homepage": "https://www.drupal.org/u/itamair",
  4701. "role": "Drupal 8+ Maintainer"
  4702. },
  4703. {
  4704. "name": "Brandon Morrison",
  4705. "homepage": "https://www.drupal.org/u/brandonian",
  4706. "role": "Drupal 7 Maintainer"
  4707. },
  4708. {
  4709. "name": "Pablo López",
  4710. "homepage": "https://www.drupal.org/u/plopesc",
  4711. "role": "Drupal 7 Maintainer"
  4712. }
  4713. ],
  4714. "description": "Stores geographic and location data (points, lines, and polygons).",
  4715. "homepage": "https://www.drupal.org/project/geofield",
  4716. "support": {
  4717. "source": "https://git.drupalcode.org/project/geofield",
  4718. "issues": "https://www.drupal.org/project/issues/geofield",
  4719. "irc": "irc://irc.freenode.org/drupal-contribute"
  4720. }
  4721. },
  4722. {
  4723. "name": "drupal/honeypot",
  4724. "version": "2.2.2",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://git.drupalcode.org/project/honeypot.git",
  4728. "reference": "2.2.2"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4733. "reference": "2.2.2",
  4734. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4735. },
  4736. "require": {
  4737. "drupal/core": "^10.3 || ^11"
  4738. },
  4739. "require-dev": {
  4740. "drupal/rules": "^4.0",
  4741. "drupal/webform": "^6.2"
  4742. },
  4743. "type": "drupal-module",
  4744. "extra": {
  4745. "drupal": {
  4746. "version": "2.2.2",
  4747. "datestamp": "1739854442",
  4748. "security-coverage": {
  4749. "status": "covered",
  4750. "message": "Covered by Drupal's security advisory policy"
  4751. }
  4752. }
  4753. },
  4754. "notification-url": "https://packages.drupal.org/8/downloads",
  4755. "license": [
  4756. "GPL-2.0-or-later"
  4757. ],
  4758. "authors": [
  4759. {
  4760. "name": "Jeff Geerling",
  4761. "homepage": "https://www.drupal.org/user/389011",
  4762. "email": "geerlingguy@mac.com"
  4763. },
  4764. {
  4765. "name": "manuel garcia",
  4766. "homepage": "https://www.drupal.org/user/213194"
  4767. },
  4768. {
  4769. "name": "tr",
  4770. "homepage": "https://www.drupal.org/user/202830"
  4771. },
  4772. {
  4773. "name": "vijaycs85",
  4774. "homepage": "https://www.drupal.org/user/93488"
  4775. }
  4776. ],
  4777. "description": "Mitigates spam form submissions using the honeypot method.",
  4778. "homepage": "https://www.drupal.org/project/honeypot",
  4779. "keywords": [
  4780. "deterrent",
  4781. "form",
  4782. "honeypot",
  4783. "honeytrap",
  4784. "php",
  4785. "spam"
  4786. ],
  4787. "support": {
  4788. "source": "https://git.drupalcode.org/project/honeypot",
  4789. "issues": "https://www.drupal.org/project/issues/honeypot"
  4790. }
  4791. },
  4792. {
  4793. "name": "drupal/image_delta_formatter",
  4794. "version": "1.3.0",
  4795. "source": {
  4796. "type": "git",
  4797. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4798. "reference": "8.x-1.3"
  4799. },
  4800. "dist": {
  4801. "type": "zip",
  4802. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4803. "reference": "8.x-1.3",
  4804. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4805. },
  4806. "require": {
  4807. "drupal/core": "^10 || ^11"
  4808. },
  4809. "type": "drupal-module",
  4810. "extra": {
  4811. "drupal": {
  4812. "version": "8.x-1.3",
  4813. "datestamp": "1738516937",
  4814. "security-coverage": {
  4815. "status": "covered",
  4816. "message": "Covered by Drupal's security advisory policy"
  4817. }
  4818. }
  4819. },
  4820. "notification-url": "https://packages.drupal.org/8/downloads",
  4821. "license": [
  4822. "GPL-2.0-or-later"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "bojanz",
  4827. "homepage": "https://www.drupal.org/user/86106"
  4828. },
  4829. {
  4830. "name": "fgm",
  4831. "homepage": "https://www.drupal.org/user/27985"
  4832. },
  4833. {
  4834. "name": "jsacksick",
  4835. "homepage": "https://www.drupal.org/user/972218"
  4836. }
  4837. ],
  4838. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4839. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4840. "support": {
  4841. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4842. }
  4843. },
  4844. {
  4845. "name": "drupal/image_field_caption",
  4846. "version": "3.0.1",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4850. "reference": "3.0.1"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://ftp.drupal.org/files/projects/image_field_caption-3.0.1.zip",
  4855. "reference": "3.0.1",
  4856. "shasum": "e84c3b9534d5824b6a67885187b1c24d4eccaf60"
  4857. },
  4858. "require": {
  4859. "drupal/core": "^10 || ^11"
  4860. },
  4861. "type": "drupal-module",
  4862. "extra": {
  4863. "drupal": {
  4864. "version": "3.0.1",
  4865. "datestamp": "1739400507",
  4866. "security-coverage": {
  4867. "status": "covered",
  4868. "message": "Covered by Drupal's security advisory policy"
  4869. }
  4870. }
  4871. },
  4872. "notification-url": "https://packages.drupal.org/8/downloads",
  4873. "license": [
  4874. "GPL-2.0+"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "awm",
  4879. "homepage": "https://www.drupal.org/user/1059398"
  4880. },
  4881. {
  4882. "name": "foxy-vikvik",
  4883. "homepage": "https://www.drupal.org/user/3706169"
  4884. },
  4885. {
  4886. "name": "hanoii",
  4887. "homepage": "https://www.drupal.org/user/23157"
  4888. },
  4889. {
  4890. "name": "ironsizide",
  4891. "homepage": "https://www.drupal.org/user/787980"
  4892. },
  4893. {
  4894. "name": "istryker",
  4895. "homepage": "https://www.drupal.org/user/303676"
  4896. },
  4897. {
  4898. "name": "robloach",
  4899. "homepage": "https://www.drupal.org/user/61114"
  4900. },
  4901. {
  4902. "name": "tyler.frankenstein",
  4903. "homepage": "https://www.drupal.org/user/150680"
  4904. }
  4905. ],
  4906. "description": "Add caption to image field.",
  4907. "homepage": "https://www.drupal.org/project/image_field_caption",
  4908. "support": {
  4909. "source": "https://git.drupalcode.org/project/image_field_caption",
  4910. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4911. }
  4912. },
  4913. {
  4914. "name": "drupal/inline_entity_form",
  4915. "version": "1.0.0-rc17",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4919. "reference": "8.x-1.0-rc17"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  4924. "reference": "8.x-1.0-rc17",
  4925. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  4926. },
  4927. "require": {
  4928. "drupal/core": "^8.8 || ^9 || ^10",
  4929. "php": ">=7.1"
  4930. },
  4931. "require-dev": {
  4932. "drupal/entity_reference_revisions": "^1.0"
  4933. },
  4934. "type": "drupal-module",
  4935. "extra": {
  4936. "drupal": {
  4937. "version": "8.x-1.0-rc17",
  4938. "datestamp": "1703020130",
  4939. "security-coverage": {
  4940. "status": "not-covered",
  4941. "message": "RC releases are not covered by Drupal security advisories."
  4942. }
  4943. }
  4944. },
  4945. "notification-url": "https://packages.drupal.org/8/downloads",
  4946. "license": [
  4947. "GPL-2.0-or-later"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "bojanz",
  4952. "homepage": "https://www.drupal.org/user/86106"
  4953. },
  4954. {
  4955. "name": "centarro",
  4956. "homepage": "https://www.drupal.org/user/3661446"
  4957. },
  4958. {
  4959. "name": "dawehner",
  4960. "homepage": "https://www.drupal.org/user/99340"
  4961. },
  4962. {
  4963. "name": "dww",
  4964. "homepage": "https://www.drupal.org/user/46549"
  4965. },
  4966. {
  4967. "name": "geek-merlin",
  4968. "homepage": "https://www.drupal.org/user/229048"
  4969. },
  4970. {
  4971. "name": "joachim",
  4972. "homepage": "https://www.drupal.org/user/107701"
  4973. },
  4974. {
  4975. "name": "jsacksick",
  4976. "homepage": "https://www.drupal.org/user/972218"
  4977. },
  4978. {
  4979. "name": "oknate",
  4980. "homepage": "https://www.drupal.org/user/471638"
  4981. },
  4982. {
  4983. "name": "ram4nd",
  4984. "homepage": "https://www.drupal.org/user/601534"
  4985. },
  4986. {
  4987. "name": "rszrama",
  4988. "homepage": "https://www.drupal.org/user/49344"
  4989. },
  4990. {
  4991. "name": "slashrsm",
  4992. "homepage": "https://www.drupal.org/user/744628"
  4993. },
  4994. {
  4995. "name": "webflo",
  4996. "homepage": "https://www.drupal.org/user/254778"
  4997. }
  4998. ],
  4999. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5000. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5001. "support": {
  5002. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5003. }
  5004. },
  5005. {
  5006. "name": "drupal/jquery_ui",
  5007. "version": "1.7.0",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5011. "reference": "8.x-1.7"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  5016. "reference": "8.x-1.7",
  5017. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  5018. },
  5019. "require": {
  5020. "drupal/core": "^9.2 || ^10 || ^11"
  5021. },
  5022. "type": "drupal-module",
  5023. "extra": {
  5024. "drupal": {
  5025. "version": "8.x-1.7",
  5026. "datestamp": "1717002098",
  5027. "security-coverage": {
  5028. "status": "covered",
  5029. "message": "Covered by Drupal's security advisory policy"
  5030. }
  5031. }
  5032. },
  5033. "notification-url": "https://packages.drupal.org/8/downloads",
  5034. "license": [
  5035. "GPL-2.0-or-later"
  5036. ],
  5037. "authors": [
  5038. {
  5039. "name": "bnjmnm",
  5040. "homepage": "https://www.drupal.org/user/2369194"
  5041. },
  5042. {
  5043. "name": "jjeff",
  5044. "homepage": "https://www.drupal.org/user/17190"
  5045. },
  5046. {
  5047. "name": "lauriii",
  5048. "homepage": "https://www.drupal.org/user/1078742"
  5049. },
  5050. {
  5051. "name": "litwol",
  5052. "homepage": "https://www.drupal.org/user/78134"
  5053. },
  5054. {
  5055. "name": "mfb",
  5056. "homepage": "https://www.drupal.org/user/12302"
  5057. },
  5058. {
  5059. "name": "mfer",
  5060. "homepage": "https://www.drupal.org/user/25701"
  5061. },
  5062. {
  5063. "name": "mikelutz",
  5064. "homepage": "https://www.drupal.org/user/2972409"
  5065. },
  5066. {
  5067. "name": "nod_",
  5068. "homepage": "https://www.drupal.org/user/598310"
  5069. },
  5070. {
  5071. "name": "phenaproxima",
  5072. "homepage": "https://www.drupal.org/user/205645"
  5073. },
  5074. {
  5075. "name": "RobLoach",
  5076. "homepage": "https://www.drupal.org/user/61114"
  5077. },
  5078. {
  5079. "name": "sun",
  5080. "homepage": "https://www.drupal.org/user/54136"
  5081. },
  5082. {
  5083. "name": "webchick",
  5084. "homepage": "https://www.drupal.org/user/24967"
  5085. },
  5086. {
  5087. "name": "Wim Leers",
  5088. "homepage": "https://www.drupal.org/user/99777"
  5089. },
  5090. {
  5091. "name": "zrpnr",
  5092. "homepage": "https://www.drupal.org/user/1448368"
  5093. }
  5094. ],
  5095. "description": "Provides jQuery UI library.",
  5096. "homepage": "https://www.drupal.org/project/jquery_ui",
  5097. "support": {
  5098. "source": "https://git.drupalcode.org/project/jquery_ui"
  5099. }
  5100. },
  5101. {
  5102. "name": "drupal/jquery_ui_datepicker",
  5103. "version": "2.1.1",
  5104. "source": {
  5105. "type": "git",
  5106. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5107. "reference": "2.1.1"
  5108. },
  5109. "dist": {
  5110. "type": "zip",
  5111. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5112. "reference": "2.1.1",
  5113. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5114. },
  5115. "require": {
  5116. "drupal/core": "^9.2 || ^10 || ^11",
  5117. "drupal/jquery_ui": "^1.7"
  5118. },
  5119. "type": "drupal-module",
  5120. "extra": {
  5121. "drupal": {
  5122. "version": "2.1.1",
  5123. "datestamp": "1730932612",
  5124. "security-coverage": {
  5125. "status": "covered",
  5126. "message": "Covered by Drupal's security advisory policy"
  5127. }
  5128. }
  5129. },
  5130. "notification-url": "https://packages.drupal.org/8/downloads",
  5131. "license": [
  5132. "GPL-2.0-or-later"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "bnjmnm",
  5137. "homepage": "https://www.drupal.org/user/2369194"
  5138. },
  5139. {
  5140. "name": "jrockowitz",
  5141. "homepage": "https://www.drupal.org/user/371407"
  5142. },
  5143. {
  5144. "name": "lauriii",
  5145. "homepage": "https://www.drupal.org/user/1078742"
  5146. },
  5147. {
  5148. "name": "nod_",
  5149. "homepage": "https://www.drupal.org/user/598310"
  5150. },
  5151. {
  5152. "name": "phenaproxima",
  5153. "homepage": "https://www.drupal.org/user/205645"
  5154. },
  5155. {
  5156. "name": "zrpnr",
  5157. "homepage": "https://www.drupal.org/user/1448368"
  5158. }
  5159. ],
  5160. "description": "Provides jQuery UI Datepicker library.",
  5161. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5162. "support": {
  5163. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5164. }
  5165. },
  5166. {
  5167. "name": "drupal/jquery_ui_draggable",
  5168. "version": "2.1.0",
  5169. "source": {
  5170. "type": "git",
  5171. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5172. "reference": "2.1.0"
  5173. },
  5174. "dist": {
  5175. "type": "zip",
  5176. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5177. "reference": "2.1.0",
  5178. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5179. },
  5180. "require": {
  5181. "drupal/core": "^9.2 || ^10 || ^11",
  5182. "drupal/jquery_ui": "^1.7"
  5183. },
  5184. "type": "drupal-module",
  5185. "extra": {
  5186. "drupal": {
  5187. "version": "2.1.0",
  5188. "datestamp": "1717015492",
  5189. "security-coverage": {
  5190. "status": "covered",
  5191. "message": "Covered by Drupal's security advisory policy"
  5192. }
  5193. }
  5194. },
  5195. "notification-url": "https://packages.drupal.org/8/downloads",
  5196. "license": [
  5197. "GPL-2.0-or-later"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "bnjmnm",
  5202. "homepage": "https://www.drupal.org/user/2369194"
  5203. },
  5204. {
  5205. "name": "lauriii",
  5206. "homepage": "https://www.drupal.org/user/1078742"
  5207. },
  5208. {
  5209. "name": "zrpnr",
  5210. "homepage": "https://www.drupal.org/user/1448368"
  5211. }
  5212. ],
  5213. "description": "Provides jQuery UI Draggable library.",
  5214. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5215. "support": {
  5216. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5217. }
  5218. },
  5219. {
  5220. "name": "drupal/jquery_ui_droppable",
  5221. "version": "2.1.0",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5225. "reference": "2.1.0"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5230. "reference": "2.1.0",
  5231. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5232. },
  5233. "require": {
  5234. "drupal/core": "^9.2 || ^10 || ^11",
  5235. "drupal/jquery_ui": "^1.7",
  5236. "drupal/jquery_ui_draggable": "^2.1"
  5237. },
  5238. "type": "drupal-module",
  5239. "extra": {
  5240. "drupal": {
  5241. "version": "2.1.0",
  5242. "datestamp": "1717031391",
  5243. "security-coverage": {
  5244. "status": "covered",
  5245. "message": "Covered by Drupal's security advisory policy"
  5246. }
  5247. }
  5248. },
  5249. "notification-url": "https://packages.drupal.org/8/downloads",
  5250. "license": [
  5251. "GPL-2.0-or-later"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "bnjmnm",
  5256. "homepage": "https://www.drupal.org/user/2369194"
  5257. },
  5258. {
  5259. "name": "lauriii",
  5260. "homepage": "https://www.drupal.org/user/1078742"
  5261. },
  5262. {
  5263. "name": "zrpnr",
  5264. "homepage": "https://www.drupal.org/user/1448368"
  5265. }
  5266. ],
  5267. "description": "Provides jQuery UI Droppable library.",
  5268. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5269. "support": {
  5270. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5271. }
  5272. },
  5273. {
  5274. "name": "drupal/jquery_ui_slider",
  5275. "version": "2.1.0",
  5276. "source": {
  5277. "type": "git",
  5278. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5279. "reference": "2.1.0"
  5280. },
  5281. "dist": {
  5282. "type": "zip",
  5283. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5284. "reference": "2.1.0",
  5285. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5286. },
  5287. "require": {
  5288. "drupal/core": "^9.2 || ^10 || ^11",
  5289. "drupal/jquery_ui": "^1.7"
  5290. },
  5291. "type": "drupal-module",
  5292. "extra": {
  5293. "drupal": {
  5294. "version": "2.1.0",
  5295. "datestamp": "1717031321",
  5296. "security-coverage": {
  5297. "status": "covered",
  5298. "message": "Covered by Drupal's security advisory policy"
  5299. }
  5300. }
  5301. },
  5302. "notification-url": "https://packages.drupal.org/8/downloads",
  5303. "license": [
  5304. "GPL-2.0-or-later"
  5305. ],
  5306. "authors": [
  5307. {
  5308. "name": "bnjmnm",
  5309. "homepage": "https://www.drupal.org/user/2369194"
  5310. },
  5311. {
  5312. "name": "lauriii",
  5313. "homepage": "https://www.drupal.org/user/1078742"
  5314. },
  5315. {
  5316. "name": "zrpnr",
  5317. "homepage": "https://www.drupal.org/user/1448368"
  5318. }
  5319. ],
  5320. "description": "Provides jQuery UI Slider library.",
  5321. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5322. "support": {
  5323. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5324. }
  5325. },
  5326. {
  5327. "name": "drupal/jquery_ui_touch_punch",
  5328. "version": "1.1.1",
  5329. "source": {
  5330. "type": "git",
  5331. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5332. "reference": "1.1.1"
  5333. },
  5334. "dist": {
  5335. "type": "zip",
  5336. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5337. "reference": "1.1.1",
  5338. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5339. },
  5340. "require": {
  5341. "drupal/core": "^9.2 || ^10 || ^11",
  5342. "drupal/jquery_ui": "^1.0",
  5343. "politsin/jquery-ui-touch-punch": "^1.0"
  5344. },
  5345. "type": "drupal-module",
  5346. "extra": {
  5347. "drupal": {
  5348. "version": "1.1.1",
  5349. "datestamp": "1717663479",
  5350. "security-coverage": {
  5351. "status": "covered",
  5352. "message": "Covered by Drupal's security advisory policy"
  5353. }
  5354. }
  5355. },
  5356. "notification-url": "https://packages.drupal.org/8/downloads",
  5357. "license": [
  5358. "GPL-2.0-or-later"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Naveen Valecha",
  5363. "homepage": "https://drupal.org/u/naveenvalecha",
  5364. "role": "Maintainer"
  5365. },
  5366. {
  5367. "name": "naveenvalecha",
  5368. "homepage": "https://www.drupal.org/user/2665733"
  5369. }
  5370. ],
  5371. "description": "Provides jQuery UI Touch Punch library.",
  5372. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5373. "keywords": [
  5374. "Drupal",
  5375. "jquery_ui_touch_punch"
  5376. ],
  5377. "support": {
  5378. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5379. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5380. }
  5381. },
  5382. {
  5383. "name": "drupal/js_cookie",
  5384. "version": "1.0.1",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5388. "reference": "1.0.1"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5393. "reference": "1.0.1",
  5394. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5395. },
  5396. "require": {
  5397. "drupal/core": "^9 || ^10 || ^11"
  5398. },
  5399. "type": "drupal-module",
  5400. "extra": {
  5401. "drupal": {
  5402. "version": "1.0.1",
  5403. "datestamp": "1693951097",
  5404. "security-coverage": {
  5405. "status": "covered",
  5406. "message": "Covered by Drupal's security advisory policy"
  5407. }
  5408. }
  5409. },
  5410. "notification-url": "https://packages.drupal.org/8/downloads",
  5411. "license": [
  5412. "GPL-2.0-or-later"
  5413. ],
  5414. "authors": [
  5415. {
  5416. "name": "Dave Reid",
  5417. "homepage": "https://www.drupal.org/user/53892"
  5418. }
  5419. ],
  5420. "description": "Provides the js-cookie library as a dependency.",
  5421. "homepage": "https://www.drupal.org/project/js_cookie",
  5422. "support": {
  5423. "source": "https://git.drupalcode.org/project/js_cookie"
  5424. }
  5425. },
  5426. {
  5427. "name": "drupal/leaflet",
  5428. "version": "10.3.5",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://git.drupalcode.org/project/leaflet.git",
  5432. "reference": "10.3.5"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.5.zip",
  5437. "reference": "10.3.5",
  5438. "shasum": "9707462243b2f344e5d85341084d33fdd296ef7b"
  5439. },
  5440. "require": {
  5441. "drupal/core": "^9.3 || ^10 || ^11",
  5442. "drupal/geofield": "^1.31"
  5443. },
  5444. "type": "drupal-module",
  5445. "extra": {
  5446. "drupal": {
  5447. "version": "10.3.5",
  5448. "datestamp": "1751834089",
  5449. "security-coverage": {
  5450. "status": "covered",
  5451. "message": "Covered by Drupal's security advisory policy"
  5452. }
  5453. }
  5454. },
  5455. "notification-url": "https://packages.drupal.org/8/downloads",
  5456. "license": [
  5457. "GPL-2.0+"
  5458. ],
  5459. "authors": [
  5460. {
  5461. "name": "Italo Mairo",
  5462. "homepage": "https://www.drupal.org/u/itamair",
  5463. "role": "Maintainer"
  5464. },
  5465. {
  5466. "name": "Peter Vanhee (pvhee)",
  5467. "homepage": "https://www.drupal.org/u/pvhee",
  5468. "role": "Maintainer"
  5469. },
  5470. {
  5471. "name": "Rik de Boer (RdeBoer)",
  5472. "homepage": "https://www.drupal.org/u/rdeboer",
  5473. "role": "Maintainer"
  5474. },
  5475. {
  5476. "name": "Gabriel Carleton-Barnes (gcb)",
  5477. "homepage": "https://www.drupal.org/u/gcb",
  5478. "role": "Maintainer"
  5479. },
  5480. {
  5481. "name": "Lev Tsypin (levelos)",
  5482. "homepage": "https://www.drupal.org/u/levelos",
  5483. "role": "Maintainer"
  5484. },
  5485. {
  5486. "name": "Sean Larkin (seanberto)",
  5487. "homepage": "https://www.drupal.org/u/seanberto",
  5488. "role": "Maintainer"
  5489. }
  5490. ],
  5491. "description": "Integration with the Leaflet map scripting library.",
  5492. "homepage": "https://www.drupal.org/project/leaflet",
  5493. "support": {
  5494. "source": "https://git.drupalcode.org/project/leaflet",
  5495. "issues": "https://www.drupal.org/project/issues/leaflet"
  5496. }
  5497. },
  5498. {
  5499. "name": "drupal/leaflet_more_maps",
  5500. "version": "2.2.3",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5504. "reference": "2.2.3"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5509. "reference": "2.2.3",
  5510. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5511. },
  5512. "require": {
  5513. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5514. "drupal/leaflet": "^2.1.0 || ^10.0"
  5515. },
  5516. "require-dev": {
  5517. "drupal/leaflet": "*"
  5518. },
  5519. "type": "drupal-module",
  5520. "extra": {
  5521. "drupal": {
  5522. "version": "2.2.3",
  5523. "datestamp": "1737668201",
  5524. "security-coverage": {
  5525. "status": "covered",
  5526. "message": "Covered by Drupal's security advisory policy"
  5527. }
  5528. },
  5529. "branch-alias": {
  5530. "dev-8.x-1.x": "1.x-dev"
  5531. }
  5532. },
  5533. "notification-url": "https://packages.drupal.org/8/downloads",
  5534. "license": [
  5535. "GPL-2.0-or-later"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "berramou",
  5540. "homepage": "https://www.drupal.org/user/3535998"
  5541. },
  5542. {
  5543. "name": "itamair",
  5544. "homepage": "https://www.drupal.org/user/1179076"
  5545. },
  5546. {
  5547. "name": "japerry",
  5548. "homepage": "https://www.drupal.org/user/45640"
  5549. },
  5550. {
  5551. "name": "rachel_norfolk",
  5552. "homepage": "https://www.drupal.org/user/66273"
  5553. },
  5554. {
  5555. "name": "rdeboer",
  5556. "homepage": "https://www.drupal.org/user/404007"
  5557. }
  5558. ],
  5559. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5560. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5561. "support": {
  5562. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5563. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5564. }
  5565. },
  5566. {
  5567. "name": "drupal/leaflet_more_markers",
  5568. "version": "1.1.3",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5572. "reference": "1.1.3"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5577. "reference": "1.1.3",
  5578. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5579. },
  5580. "require": {
  5581. "drupal/core": "^9.3 || ^10 || ^11",
  5582. "drupal/leaflet": "*",
  5583. "drupal/token": "*"
  5584. },
  5585. "type": "drupal-module",
  5586. "extra": {
  5587. "drupal": {
  5588. "version": "1.1.3",
  5589. "datestamp": "1733213620",
  5590. "security-coverage": {
  5591. "status": "covered",
  5592. "message": "Covered by Drupal's security advisory policy"
  5593. }
  5594. }
  5595. },
  5596. "notification-url": "https://packages.drupal.org/8/downloads",
  5597. "license": [
  5598. "GPL-2.0-or-later"
  5599. ],
  5600. "authors": [
  5601. {
  5602. "name": "itamair",
  5603. "homepage": "https://www.drupal.org/user/1179076"
  5604. },
  5605. {
  5606. "name": "rdeboer",
  5607. "homepage": "https://www.drupal.org/user/404007"
  5608. }
  5609. ],
  5610. "description": "Allows every location to feature its own emoji marker or font icon.",
  5611. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5612. "support": {
  5613. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5614. }
  5615. },
  5616. {
  5617. "name": "drupal/link_attributes",
  5618. "version": "2.1.1",
  5619. "source": {
  5620. "type": "git",
  5621. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5622. "reference": "2.1.1"
  5623. },
  5624. "dist": {
  5625. "type": "zip",
  5626. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.1.zip",
  5627. "reference": "2.1.1",
  5628. "shasum": "fc71571fc41adeda6b39ccefd3c8e21955c0d96f"
  5629. },
  5630. "require": {
  5631. "drupal/core": "^9 || ^10 || ^11",
  5632. "php": ">=8.0"
  5633. },
  5634. "require-dev": {
  5635. "drupal/linkit": "~6 || ~7"
  5636. },
  5637. "type": "drupal-module",
  5638. "extra": {
  5639. "drupal": {
  5640. "version": "2.1.1",
  5641. "datestamp": "1721366572",
  5642. "security-coverage": {
  5643. "status": "covered",
  5644. "message": "Covered by Drupal's security advisory policy"
  5645. }
  5646. }
  5647. },
  5648. "notification-url": "https://packages.drupal.org/8/downloads",
  5649. "license": [
  5650. "GPL-2.0-or-later"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "larowlan",
  5655. "homepage": "https://www.drupal.org/user/395439"
  5656. }
  5657. ],
  5658. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5659. "homepage": "https://www.drupal.org/project/link_attributes",
  5660. "keywords": [
  5661. "Drupal"
  5662. ],
  5663. "support": {
  5664. "source": "https://git.drupalcode.org/project/link_attributes",
  5665. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5666. }
  5667. },
  5668. {
  5669. "name": "drupal/linked_field",
  5670. "version": "1.7.0",
  5671. "source": {
  5672. "type": "git",
  5673. "url": "https://git.drupalcode.org/project/linked_field.git",
  5674. "reference": "8.x-1.7"
  5675. },
  5676. "dist": {
  5677. "type": "zip",
  5678. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5679. "reference": "8.x-1.7",
  5680. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5681. },
  5682. "require": {
  5683. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5684. },
  5685. "type": "drupal-module",
  5686. "extra": {
  5687. "drupal": {
  5688. "version": "8.x-1.7",
  5689. "datestamp": "1748842765",
  5690. "security-coverage": {
  5691. "status": "covered",
  5692. "message": "Covered by Drupal's security advisory policy"
  5693. }
  5694. }
  5695. },
  5696. "notification-url": "https://packages.drupal.org/8/downloads",
  5697. "license": [
  5698. "GPL-2.0-or-later"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "jcnventura",
  5703. "homepage": "https://www.drupal.org/user/122464"
  5704. },
  5705. {
  5706. "name": "yannickoo",
  5707. "homepage": "https://www.drupal.org/user/531118"
  5708. }
  5709. ],
  5710. "description": "Adds the functionality to link fields to a specific destination.",
  5711. "homepage": "https://www.drupal.org/project/linked_field",
  5712. "support": {
  5713. "source": "https://git.drupalcode.org/project/linked_field"
  5714. }
  5715. },
  5716. {
  5717. "name": "drupal/linkit",
  5718. "version": "7.0.7",
  5719. "source": {
  5720. "type": "git",
  5721. "url": "https://git.drupalcode.org/project/linkit.git",
  5722. "reference": "7.0.7"
  5723. },
  5724. "dist": {
  5725. "type": "zip",
  5726. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip",
  5727. "reference": "7.0.7",
  5728. "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e"
  5729. },
  5730. "require": {
  5731. "drupal/core": "^10.1 || ^11"
  5732. },
  5733. "require-dev": {
  5734. "drupal/ckeditor": "*",
  5735. "drupal/imce": "*"
  5736. },
  5737. "type": "drupal-module",
  5738. "extra": {
  5739. "drupal": {
  5740. "version": "7.0.7",
  5741. "datestamp": "1753116879",
  5742. "security-coverage": {
  5743. "status": "covered",
  5744. "message": "Covered by Drupal's security advisory policy"
  5745. }
  5746. }
  5747. },
  5748. "notification-url": "https://packages.drupal.org/8/downloads",
  5749. "license": [
  5750. "GPL-2.0-or-later"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Emil Stjerneman",
  5755. "homepage": "https://stjerneman.com",
  5756. "email": "emil@stjerneman.com",
  5757. "role": "Maintainer"
  5758. },
  5759. {
  5760. "name": "johnwebdev",
  5761. "homepage": "https://www.drupal.org/user/3331569"
  5762. },
  5763. {
  5764. "name": "mark_fullmer",
  5765. "homepage": "https://www.drupal.org/user/2612816"
  5766. }
  5767. ],
  5768. "description": "Linkit - Enriched linking experience",
  5769. "homepage": "http://drupal.org/project/linkit",
  5770. "support": {
  5771. "source": "http://cgit.drupalcode.org/linkit",
  5772. "issues": "http://drupal.org/project/linkit"
  5773. }
  5774. },
  5775. {
  5776. "name": "drupal/mailsystem",
  5777. "version": "4.5.0",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5781. "reference": "8.x-4.5"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5786. "reference": "8.x-4.5",
  5787. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5788. },
  5789. "require": {
  5790. "drupal/core": "^9 || ^10.1 || ^11"
  5791. },
  5792. "type": "drupal-module",
  5793. "extra": {
  5794. "drupal": {
  5795. "version": "8.x-4.5",
  5796. "datestamp": "1723379369",
  5797. "security-coverage": {
  5798. "status": "covered",
  5799. "message": "Covered by Drupal's security advisory policy"
  5800. }
  5801. }
  5802. },
  5803. "notification-url": "https://packages.drupal.org/8/downloads",
  5804. "license": [
  5805. "GPL-2.0-or-later"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "berdir",
  5810. "homepage": "https://www.drupal.org/user/214652"
  5811. },
  5812. {
  5813. "name": "emartoni",
  5814. "homepage": "https://www.drupal.org/user/3225331"
  5815. },
  5816. {
  5817. "name": "joseph.olstad",
  5818. "homepage": "https://www.drupal.org/user/1321830"
  5819. },
  5820. {
  5821. "name": "les lim",
  5822. "homepage": "https://www.drupal.org/user/84263"
  5823. },
  5824. {
  5825. "name": "manuel garcia",
  5826. "homepage": "https://www.drupal.org/user/213194"
  5827. },
  5828. {
  5829. "name": "miro_dietiker",
  5830. "homepage": "https://www.drupal.org/user/227761"
  5831. },
  5832. {
  5833. "name": "Nafes",
  5834. "homepage": "https://www.drupal.org/user/2489926"
  5835. },
  5836. {
  5837. "name": "pillarsdotnet",
  5838. "homepage": "https://www.drupal.org/user/36148"
  5839. },
  5840. {
  5841. "name": "renatog",
  5842. "homepage": "https://www.drupal.org/user/3326031"
  5843. },
  5844. {
  5845. "name": "tr",
  5846. "homepage": "https://www.drupal.org/user/202830"
  5847. }
  5848. ],
  5849. "description": "Mail System",
  5850. "homepage": "https://www.drupal.org/project/mailsystem",
  5851. "support": {
  5852. "source": "https://git.drupalcode.org/project/mailsystem"
  5853. }
  5854. },
  5855. {
  5856. "name": "drupal/manage_display",
  5857. "version": "3.0.1",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://git.drupalcode.org/project/manage_display.git",
  5861. "reference": "3.0.1"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5866. "reference": "3.0.1",
  5867. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5868. },
  5869. "require": {
  5870. "drupal/core": "^9.4 || ^10 || ^11"
  5871. },
  5872. "type": "drupal-module",
  5873. "extra": {
  5874. "drupal": {
  5875. "version": "3.0.1",
  5876. "datestamp": "1714834549",
  5877. "security-coverage": {
  5878. "status": "covered",
  5879. "message": "Covered by Drupal's security advisory policy"
  5880. }
  5881. }
  5882. },
  5883. "notification-url": "https://packages.drupal.org/8/downloads",
  5884. "license": [
  5885. "GPL-2.0-or-later"
  5886. ],
  5887. "authors": [
  5888. {
  5889. "name": "Adam Shepherd (AdamPS)",
  5890. "homepage": "https://www.drupal.org/u/adamps",
  5891. "role": "Maintainer"
  5892. },
  5893. {
  5894. "name": "Viktor Holovachek (AstonVictor)",
  5895. "homepage": "https://www.drupal.org/u/astonvictor",
  5896. "role": "Maintainer"
  5897. }
  5898. ],
  5899. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  5900. "homepage": "https://www.drupal.org/project/manage_display",
  5901. "keywords": [
  5902. "Drupal"
  5903. ],
  5904. "support": {
  5905. "source": "https://git.drupalcode.org/project/manage_display",
  5906. "issues": "https://www.drupal.org/project/issues/manage_display"
  5907. }
  5908. },
  5909. {
  5910. "name": "drupal/matomo",
  5911. "version": "1.25.0",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://git.drupalcode.org/project/matomo.git",
  5915. "reference": "8.x-1.25"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.25.zip",
  5920. "reference": "8.x-1.25",
  5921. "shasum": "5e65764f4499061fa33cb5c46afcc26a85b8725e"
  5922. },
  5923. "require": {
  5924. "drupal/core": "^9.0 || ^10"
  5925. },
  5926. "conflict": {
  5927. "drupal/csp": "<1.12"
  5928. },
  5929. "require-dev": {
  5930. "drupal/csp": "~1.12",
  5931. "drupal/php": "~1.1",
  5932. "drupal/token": "~1.9"
  5933. },
  5934. "type": "drupal-module",
  5935. "extra": {
  5936. "drupal": {
  5937. "version": "8.x-1.25",
  5938. "datestamp": "1738948462",
  5939. "security-coverage": {
  5940. "status": "covered",
  5941. "message": "Covered by Drupal's security advisory policy"
  5942. }
  5943. }
  5944. },
  5945. "notification-url": "https://packages.drupal.org/8/downloads",
  5946. "license": [
  5947. "GPL-2.0-or-later"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "c-logemann",
  5952. "homepage": "https://www.drupal.org/user/218368"
  5953. },
  5954. {
  5955. "name": "grimreaper",
  5956. "homepage": "https://www.drupal.org/user/2388214"
  5957. },
  5958. {
  5959. "name": "hass",
  5960. "homepage": "https://www.drupal.org/user/85918"
  5961. },
  5962. {
  5963. "name": "shelane",
  5964. "homepage": "https://www.drupal.org/user/2674989"
  5965. }
  5966. ],
  5967. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5968. "homepage": "https://www.drupal.org/project/matomo",
  5969. "support": {
  5970. "source": "https://git.drupalcode.org/project/matomo"
  5971. }
  5972. },
  5973. {
  5974. "name": "drupal/maxlength",
  5975. "version": "3.1.1",
  5976. "source": {
  5977. "type": "git",
  5978. "url": "https://git.drupalcode.org/project/maxlength.git",
  5979. "reference": "3.1.1"
  5980. },
  5981. "dist": {
  5982. "type": "zip",
  5983. "url": "https://ftp.drupal.org/files/projects/maxlength-3.1.1.zip",
  5984. "reference": "3.1.1",
  5985. "shasum": "85059a5d5107a13c780536aa05972e5e97c1308b"
  5986. },
  5987. "require": {
  5988. "drupal/core": "^10 || ^11"
  5989. },
  5990. "type": "drupal-module",
  5991. "extra": {
  5992. "drupal": {
  5993. "version": "3.1.1",
  5994. "datestamp": "1738341546",
  5995. "security-coverage": {
  5996. "status": "covered",
  5997. "message": "Covered by Drupal's security advisory policy"
  5998. }
  5999. }
  6000. },
  6001. "notification-url": "https://packages.drupal.org/8/downloads",
  6002. "license": [
  6003. "GPL-2.0-or-later"
  6004. ],
  6005. "authors": [
  6006. {
  6007. "name": "Marius Scurtescu (mariuss)",
  6008. "homepage": "https://www.drupal.org/u/mariuss",
  6009. "role": "Maintainer"
  6010. },
  6011. {
  6012. "name": "Clayton Dewey (cedewey)",
  6013. "homepage": "https://www.drupal.org/u/cedewey",
  6014. "role": "Maintainer"
  6015. },
  6016. {
  6017. "name": "Daniel Wehner (dawehner)",
  6018. "homepage": "https://www.drupal.org/u/dawehner",
  6019. "role": "Maintainer"
  6020. },
  6021. {
  6022. "name": "Paulino Michelazzo (pmichelazzo)",
  6023. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6024. "role": "Maintainer"
  6025. },
  6026. {
  6027. "name": "Jeff Hipp (hipp2bsquare)",
  6028. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6029. "role": "Maintainer"
  6030. },
  6031. {
  6032. "name": "Steven DuBois (srdtwc)",
  6033. "homepage": "https://www.drupal.org/u/srdtwc",
  6034. "role": "Maintainer"
  6035. },
  6036. {
  6037. "name": "Adam Nagy (joevagyok)",
  6038. "homepage": "https://www.drupal.org/u/joevagyok",
  6039. "role": "Maintainer"
  6040. }
  6041. ],
  6042. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6043. "homepage": "https://www.drupal.org/project/maxlength",
  6044. "support": {
  6045. "source": "https://git.drupalcode.org/project/maxlength",
  6046. "issues": "https://www.drupal.org/project/issues/maxlength"
  6047. }
  6048. },
  6049. {
  6050. "name": "drupal/menu_admin_per_menu",
  6051. "version": "1.7.0",
  6052. "source": {
  6053. "type": "git",
  6054. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6055. "reference": "8.x-1.7"
  6056. },
  6057. "dist": {
  6058. "type": "zip",
  6059. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6060. "reference": "8.x-1.7",
  6061. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6062. },
  6063. "require": {
  6064. "drupal/core": "^10.2 || ^11.0 || ^12"
  6065. },
  6066. "type": "drupal-module",
  6067. "extra": {
  6068. "drupal": {
  6069. "version": "8.x-1.7",
  6070. "datestamp": "1750246188",
  6071. "security-coverage": {
  6072. "status": "covered",
  6073. "message": "Covered by Drupal's security advisory policy"
  6074. }
  6075. }
  6076. },
  6077. "notification-url": "https://packages.drupal.org/8/downloads",
  6078. "license": [
  6079. "GPL-2.0-or-later"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "anrikun",
  6084. "homepage": "https://www.drupal.org/user/410199"
  6085. },
  6086. {
  6087. "name": "jeroent",
  6088. "homepage": "https://www.drupal.org/user/2228934"
  6089. },
  6090. {
  6091. "name": "jonas139",
  6092. "homepage": "https://www.drupal.org/user/2873401"
  6093. },
  6094. {
  6095. "name": "mkdok",
  6096. "homepage": "https://www.drupal.org/user/3308753"
  6097. }
  6098. ],
  6099. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6100. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6101. "keywords": [
  6102. "Drupal"
  6103. ],
  6104. "support": {
  6105. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6106. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6107. }
  6108. },
  6109. {
  6110. "name": "drupal/menu_block",
  6111. "version": "1.14.0",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://git.drupalcode.org/project/menu_block.git",
  6115. "reference": "8.x-1.14"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6120. "reference": "8.x-1.14",
  6121. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6122. },
  6123. "require": {
  6124. "drupal/core": "^10.1 || ^11"
  6125. },
  6126. "type": "drupal-module",
  6127. "extra": {
  6128. "drupal": {
  6129. "version": "8.x-1.14",
  6130. "datestamp": "1740624449",
  6131. "security-coverage": {
  6132. "status": "covered",
  6133. "message": "Covered by Drupal's security advisory policy"
  6134. }
  6135. }
  6136. },
  6137. "notification-url": "https://packages.drupal.org/8/downloads",
  6138. "license": [
  6139. "GPL-2.0-or-later"
  6140. ],
  6141. "authors": [
  6142. {
  6143. "name": "dave reid",
  6144. "homepage": "https://www.drupal.org/user/53892"
  6145. },
  6146. {
  6147. "name": "joelpittet",
  6148. "homepage": "https://www.drupal.org/user/160302"
  6149. },
  6150. {
  6151. "name": "johnalbin",
  6152. "homepage": "https://www.drupal.org/user/32095"
  6153. },
  6154. {
  6155. "name": "kim.pepper",
  6156. "homepage": "https://www.drupal.org/user/370574"
  6157. },
  6158. {
  6159. "name": "renatog",
  6160. "homepage": "https://www.drupal.org/user/3326031"
  6161. },
  6162. {
  6163. "name": "rrrob",
  6164. "homepage": "https://www.drupal.org/user/273533"
  6165. }
  6166. ],
  6167. "description": "Provides configurable blocks of menu links.",
  6168. "homepage": "https://www.drupal.org/project/menu_block",
  6169. "support": {
  6170. "source": "https://git.drupalcode.org/project/menu_block"
  6171. }
  6172. },
  6173. {
  6174. "name": "drupal/page_manager",
  6175. "version": "4.0.0-rc3",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://git.drupalcode.org/project/page_manager.git",
  6179. "reference": "8.x-4.0-rc3"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6184. "reference": "8.x-4.0-rc3",
  6185. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6186. },
  6187. "require": {
  6188. "drupal/core": "^9.5 || ^10 || ^11",
  6189. "drupal/ctools": "^3.15 || ^4.1"
  6190. },
  6191. "type": "drupal-module",
  6192. "extra": {
  6193. "drupal": {
  6194. "version": "8.x-4.0-rc3",
  6195. "datestamp": "1721976404",
  6196. "security-coverage": {
  6197. "status": "not-covered",
  6198. "message": "RC releases are not covered by Drupal security advisories."
  6199. }
  6200. },
  6201. "branch-alias": {
  6202. "dev-8.x-4.x": "4.x-dev"
  6203. }
  6204. },
  6205. "notification-url": "https://packages.drupal.org/8/downloads",
  6206. "license": [
  6207. "GPL-2.0-or-later"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Tim Plunkett",
  6212. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6213. "role": "Maintainer"
  6214. },
  6215. {
  6216. "name": "EclipseGc",
  6217. "homepage": "https://www.drupal.org/user/61203"
  6218. },
  6219. {
  6220. "name": "japerry",
  6221. "homepage": "https://www.drupal.org/user/45640"
  6222. },
  6223. {
  6224. "name": "joelpittet",
  6225. "homepage": "https://www.drupal.org/user/160302"
  6226. },
  6227. {
  6228. "name": "manuel.adan",
  6229. "homepage": "https://www.drupal.org/user/516420"
  6230. },
  6231. {
  6232. "name": "phenaproxima",
  6233. "homepage": "https://www.drupal.org/user/205645"
  6234. }
  6235. ],
  6236. "description": "Provides a way to place blocks on a custom page.",
  6237. "homepage": "https://www.drupal.org/project/page_manager",
  6238. "support": {
  6239. "source": "https://git.drupal.org/project/page_manager.git",
  6240. "issues": "https://www.drupal.org/project/issues/page_manager",
  6241. "irc": "irc://irc.freenode.org/drupal-contribute"
  6242. }
  6243. },
  6244. {
  6245. "name": "drupal/panels",
  6246. "version": "4.9.0",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://git.drupalcode.org/project/panels.git",
  6250. "reference": "8.x-4.9"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6255. "reference": "8.x-4.9",
  6256. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6257. },
  6258. "require": {
  6259. "drupal/core": "^9.5 || ^10 || ^11",
  6260. "drupal/ctools": "^3.15 || ^4.1",
  6261. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6262. },
  6263. "require-dev": {
  6264. "drupal/jquery_ui_droppable": "*",
  6265. "drupal/page_manager": "^4"
  6266. },
  6267. "type": "drupal-module",
  6268. "extra": {
  6269. "drupal": {
  6270. "version": "8.x-4.9",
  6271. "datestamp": "1744218203",
  6272. "security-coverage": {
  6273. "status": "covered",
  6274. "message": "Covered by Drupal's security advisory policy"
  6275. }
  6276. },
  6277. "branch-alias": {
  6278. "dev-8.x-4.x": "4.x-dev"
  6279. }
  6280. },
  6281. "notification-url": "https://packages.drupal.org/8/downloads",
  6282. "license": [
  6283. "GPL-2.0+"
  6284. ],
  6285. "authors": [
  6286. {
  6287. "name": "Jakob Perry",
  6288. "homepage": "https://www.drupal.org/u/japerry"
  6289. },
  6290. {
  6291. "name": "Samuel Mortenson",
  6292. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6293. },
  6294. {
  6295. "name": "See other contributors",
  6296. "homepage": "https://www.drupal.org/node/74958/committers"
  6297. },
  6298. {
  6299. "name": "joelpittet",
  6300. "homepage": "https://www.drupal.org/user/160302"
  6301. },
  6302. {
  6303. "name": "Letharion",
  6304. "homepage": "https://www.drupal.org/user/373603"
  6305. },
  6306. {
  6307. "name": "merlinofchaos",
  6308. "homepage": "https://www.drupal.org/user/26979"
  6309. },
  6310. {
  6311. "name": "neclimdul",
  6312. "homepage": "https://www.drupal.org/user/48673"
  6313. },
  6314. {
  6315. "name": "phenaproxima",
  6316. "homepage": "https://www.drupal.org/user/205645"
  6317. },
  6318. {
  6319. "name": "samuel.mortenson",
  6320. "homepage": "https://www.drupal.org/user/2582268"
  6321. }
  6322. ],
  6323. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6324. "homepage": "https://www.drupal.org/project/panels",
  6325. "support": {
  6326. "source": "https://git.drupalcode.org/project/panels",
  6327. "issues": "https://www.drupal.org/project/issues/panels",
  6328. "irc": "irc://irc.freenode.org/drupal-scotch"
  6329. }
  6330. },
  6331. {
  6332. "name": "drupal/paragraphs",
  6333. "version": "1.19.0",
  6334. "source": {
  6335. "type": "git",
  6336. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6337. "reference": "8.x-1.19"
  6338. },
  6339. "dist": {
  6340. "type": "zip",
  6341. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6342. "reference": "8.x-1.19",
  6343. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6344. },
  6345. "require": {
  6346. "drupal/core": "^10.2 || ^11",
  6347. "drupal/entity_reference_revisions": "~1.3"
  6348. },
  6349. "require-dev": {
  6350. "drupal/block_field": "1.x-dev",
  6351. "drupal/diff": "1.x-dev",
  6352. "drupal/entity_browser": "2.x-dev",
  6353. "drupal/entity_usage": "2.x-dev",
  6354. "drupal/feeds": "^3",
  6355. "drupal/field_group": "3.x-dev",
  6356. "drupal/inline_entity_form": "3.x-dev",
  6357. "drupal/paragraphs-paragraphs_library": "*",
  6358. "drupal/replicate": "1.x-dev",
  6359. "drupal/search_api": "^1",
  6360. "drupal/search_api_db": "*"
  6361. },
  6362. "suggest": {
  6363. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6364. },
  6365. "type": "drupal-module",
  6366. "extra": {
  6367. "drupal": {
  6368. "version": "8.x-1.19",
  6369. "datestamp": "1740907076",
  6370. "security-coverage": {
  6371. "status": "covered",
  6372. "message": "Covered by Drupal's security advisory policy"
  6373. }
  6374. }
  6375. },
  6376. "notification-url": "https://packages.drupal.org/8/downloads",
  6377. "license": [
  6378. "GPL-2.0-or-later"
  6379. ],
  6380. "authors": [
  6381. {
  6382. "name": "berdir",
  6383. "homepage": "https://www.drupal.org/user/214652"
  6384. },
  6385. {
  6386. "name": "frans",
  6387. "homepage": "https://www.drupal.org/user/514222"
  6388. },
  6389. {
  6390. "name": "jeroen.b",
  6391. "homepage": "https://www.drupal.org/user/1853532"
  6392. },
  6393. {
  6394. "name": "jstoller",
  6395. "homepage": "https://www.drupal.org/user/99012"
  6396. },
  6397. {
  6398. "name": "miro_dietiker",
  6399. "homepage": "https://www.drupal.org/user/227761"
  6400. },
  6401. {
  6402. "name": "primsi",
  6403. "homepage": "https://www.drupal.org/user/282629"
  6404. }
  6405. ],
  6406. "description": "Enables the creation of Paragraphs entities.",
  6407. "homepage": "https://www.drupal.org/project/paragraphs",
  6408. "support": {
  6409. "source": "https://git.drupalcode.org/project/paragraphs"
  6410. }
  6411. },
  6412. {
  6413. "name": "drupal/pathauto",
  6414. "version": "1.13.0",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://git.drupalcode.org/project/pathauto.git",
  6418. "reference": "8.x-1.13"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  6423. "reference": "8.x-1.13",
  6424. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  6425. },
  6426. "require": {
  6427. "drupal/core": "^9.4 || ^10 || ^11",
  6428. "drupal/ctools": "*",
  6429. "drupal/token": "*"
  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.13",
  6441. "datestamp": "1739552840",
  6442. "security-coverage": {
  6443. "status": "covered",
  6444. "message": "Covered by Drupal's security advisory policy"
  6445. }
  6446. },
  6447. "drush": {
  6448. "services": {
  6449. "drush.services.yml": "^9 || ^10"
  6450. }
  6451. }
  6452. },
  6453. "notification-url": "https://packages.drupal.org/8/downloads",
  6454. "license": [
  6455. "GPL-2.0-or-later"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "berdir",
  6460. "homepage": "https://www.drupal.org/user/214652"
  6461. },
  6462. {
  6463. "name": "dave reid",
  6464. "homepage": "https://www.drupal.org/user/53892"
  6465. },
  6466. {
  6467. "name": "Freso",
  6468. "homepage": "https://www.drupal.org/user/27504"
  6469. },
  6470. {
  6471. "name": "greggles",
  6472. "homepage": "https://www.drupal.org/user/36762"
  6473. }
  6474. ],
  6475. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6476. "homepage": "https://www.drupal.org/project/pathauto",
  6477. "support": {
  6478. "source": "https://cgit.drupalcode.org/pathauto",
  6479. "issues": "https://www.drupal.org/project/issues/pathauto",
  6480. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6481. }
  6482. },
  6483. {
  6484. "name": "drupal/pathologic",
  6485. "version": "2.0.0-alpha3",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://git.drupalcode.org/project/pathologic.git",
  6489. "reference": "2.0.0-alpha3"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6494. "reference": "2.0.0-alpha3",
  6495. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6496. },
  6497. "require": {
  6498. "drupal/core": "^9 || ^10 || ^11"
  6499. },
  6500. "type": "drupal-module",
  6501. "extra": {
  6502. "drupal": {
  6503. "version": "2.0.0-alpha3",
  6504. "datestamp": "1733441073",
  6505. "security-coverage": {
  6506. "status": "not-covered",
  6507. "message": "Alpha releases are not covered by Drupal security advisories."
  6508. }
  6509. }
  6510. },
  6511. "notification-url": "https://packages.drupal.org/8/downloads",
  6512. "license": [
  6513. "GPL-2.0+"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "berdir",
  6518. "homepage": "https://www.drupal.org/user/214652"
  6519. },
  6520. {
  6521. "name": "dww",
  6522. "homepage": "https://www.drupal.org/user/46549"
  6523. },
  6524. {
  6525. "name": "Garrett Albright",
  6526. "homepage": "https://www.drupal.org/user/191212"
  6527. },
  6528. {
  6529. "name": "mark_fullmer",
  6530. "homepage": "https://www.drupal.org/user/2612816"
  6531. }
  6532. ],
  6533. "description": "Helps avoid broken links and incorrect paths in content.",
  6534. "homepage": "https://www.drupal.org/project/pathologic",
  6535. "support": {
  6536. "source": "https://git.drupalcode.org/project/pathologic"
  6537. }
  6538. },
  6539. {
  6540. "name": "drupal/persistent_login",
  6541. "version": "2.2.4",
  6542. "source": {
  6543. "type": "git",
  6544. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6545. "reference": "2.2.4"
  6546. },
  6547. "dist": {
  6548. "type": "zip",
  6549. "url": "https://ftp.drupal.org/files/projects/persistent_login-2.2.4.zip",
  6550. "reference": "2.2.4",
  6551. "shasum": "7048ecf440938f0245f87bfb8c21f61292fce12d"
  6552. },
  6553. "require": {
  6554. "drupal/core": "^10 || ^11"
  6555. },
  6556. "type": "drupal-module",
  6557. "extra": {
  6558. "drupal": {
  6559. "version": "2.2.4",
  6560. "datestamp": "1728082564",
  6561. "security-coverage": {
  6562. "status": "covered",
  6563. "message": "Covered by Drupal's security advisory policy"
  6564. }
  6565. }
  6566. },
  6567. "notification-url": "https://packages.drupal.org/8/downloads",
  6568. "license": [
  6569. "GPL-2.0-or-later"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "gapple",
  6574. "homepage": "https://www.drupal.org/user/490940"
  6575. }
  6576. ],
  6577. "description": "Provides a \"Remember Me\" feature on the login form.",
  6578. "homepage": "https://www.drupal.org/project/persistent_login",
  6579. "keywords": [
  6580. "Drupal"
  6581. ],
  6582. "support": {
  6583. "source": "https://git.drupalcode.org/project/persistent_login",
  6584. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6585. }
  6586. },
  6587. {
  6588. "name": "drupal/redirect",
  6589. "version": "1.11.0",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://git.drupalcode.org/project/redirect.git",
  6593. "reference": "8.x-1.11"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
  6598. "reference": "8.x-1.11",
  6599. "shasum": "7df8b3524bbde07d254216039636947a689140ef"
  6600. },
  6601. "require": {
  6602. "drupal/core": "^9.2 || ^10 || ^11"
  6603. },
  6604. "type": "drupal-module",
  6605. "extra": {
  6606. "drupal": {
  6607. "version": "8.x-1.11",
  6608. "datestamp": "1737382886",
  6609. "security-coverage": {
  6610. "status": "covered",
  6611. "message": "Covered by Drupal's security advisory policy"
  6612. }
  6613. }
  6614. },
  6615. "notification-url": "https://packages.drupal.org/8/downloads",
  6616. "license": [
  6617. "GPL-2.0-or-later"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "berdir",
  6622. "homepage": "https://www.drupal.org/user/214652"
  6623. },
  6624. {
  6625. "name": "dave reid",
  6626. "homepage": "https://www.drupal.org/user/53892"
  6627. },
  6628. {
  6629. "name": "kristen pol",
  6630. "homepage": "https://www.drupal.org/user/8389"
  6631. },
  6632. {
  6633. "name": "pifagor",
  6634. "homepage": "https://www.drupal.org/user/2375692"
  6635. }
  6636. ],
  6637. "description": "Allows users to redirect from old URLs to new URLs.",
  6638. "homepage": "https://www.drupal.org/project/redirect",
  6639. "support": {
  6640. "source": "https://git.drupalcode.org/project/redirect"
  6641. }
  6642. },
  6643. {
  6644. "name": "drupal/redis",
  6645. "version": "1.9.0",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://git.drupalcode.org/project/redis.git",
  6649. "reference": "8.x-1.9"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.9.zip",
  6654. "reference": "8.x-1.9",
  6655. "shasum": "77e2e8ddb95be08f3fe9f74182c7ff0476e15674"
  6656. },
  6657. "require": {
  6658. "drupal/core": "^9.3 || ^10 || ^11"
  6659. },
  6660. "suggest": {
  6661. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6662. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6663. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6664. },
  6665. "type": "drupal-module",
  6666. "extra": {
  6667. "drupal": {
  6668. "version": "8.x-1.9",
  6669. "datestamp": "1737932099",
  6670. "security-coverage": {
  6671. "status": "covered",
  6672. "message": "Covered by Drupal's security advisory policy"
  6673. }
  6674. }
  6675. },
  6676. "autoload": {
  6677. "psr-4": {
  6678. "Drupal\\redis\\": "src"
  6679. }
  6680. },
  6681. "notification-url": "https://packages.drupal.org/8/downloads",
  6682. "license": [
  6683. "GPL-2.0-or-later"
  6684. ],
  6685. "authors": [
  6686. {
  6687. "name": "berdir",
  6688. "homepage": "https://www.drupal.org/user/214652"
  6689. },
  6690. {
  6691. "name": "greg.1.anderson",
  6692. "homepage": "https://www.drupal.org/user/438598"
  6693. },
  6694. {
  6695. "name": "kporras07",
  6696. "homepage": "https://www.drupal.org/user/1349780"
  6697. },
  6698. {
  6699. "name": "pounard",
  6700. "homepage": "https://www.drupal.org/user/240164"
  6701. }
  6702. ],
  6703. "description": "Integration of Drupal with the Redis key-value store.",
  6704. "homepage": "https://www.drupal.org/project/redis",
  6705. "support": {
  6706. "source": "https://git.drupalcode.org/project/redis"
  6707. }
  6708. },
  6709. {
  6710. "name": "drupal/role_delegation",
  6711. "version": "1.4.0",
  6712. "source": {
  6713. "type": "git",
  6714. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6715. "reference": "8.x-1.4"
  6716. },
  6717. "dist": {
  6718. "type": "zip",
  6719. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip",
  6720. "reference": "8.x-1.4",
  6721. "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa"
  6722. },
  6723. "require": {
  6724. "drupal/core": "^10.3 || ^11"
  6725. },
  6726. "type": "drupal-module",
  6727. "extra": {
  6728. "drupal": {
  6729. "version": "8.x-1.4",
  6730. "datestamp": "1751012870",
  6731. "security-coverage": {
  6732. "status": "covered",
  6733. "message": "Covered by Drupal's security advisory policy"
  6734. }
  6735. }
  6736. },
  6737. "notification-url": "https://packages.drupal.org/8/downloads",
  6738. "license": [
  6739. "GPL-2.0-or-later"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "Jeroen Tubex",
  6744. "homepage": "https://www.drupal.org/u/jeroent",
  6745. "role": "Maintainer"
  6746. },
  6747. {
  6748. "name": "benjy",
  6749. "homepage": "https://www.drupal.org/user/1852732"
  6750. },
  6751. {
  6752. "name": "dieterholvoet",
  6753. "homepage": "https://www.drupal.org/user/3567222"
  6754. },
  6755. {
  6756. "name": "jeroent",
  6757. "homepage": "https://www.drupal.org/user/2228934"
  6758. }
  6759. ],
  6760. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6761. "homepage": "http://drupal.org/project/role_delegation",
  6762. "support": {
  6763. "source": "https://git.drupalcode.org/project/role_delegation",
  6764. "issues": "http://drupal.org/project/role_delegation"
  6765. }
  6766. },
  6767. {
  6768. "name": "drupal/search_api",
  6769. "version": "1.38.0",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://git.drupalcode.org/project/search_api.git",
  6773. "reference": "8.x-1.38"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
  6778. "reference": "8.x-1.38",
  6779. "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
  6780. },
  6781. "require": {
  6782. "drupal/core": "^10.2 || ^11"
  6783. },
  6784. "conflict": {
  6785. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6786. },
  6787. "require-dev": {
  6788. "drupal/language_fallback_fix": "@dev",
  6789. "drupal/search_api_autocomplete": "@dev",
  6790. "drupal/search_api_db": "*"
  6791. },
  6792. "suggest": {
  6793. "drupal/facets": "Adds the ability to create faceted searches.",
  6794. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6795. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6796. },
  6797. "type": "drupal-module",
  6798. "extra": {
  6799. "drupal": {
  6800. "version": "8.x-1.38",
  6801. "datestamp": "1740298961",
  6802. "security-coverage": {
  6803. "status": "covered",
  6804. "message": "Covered by Drupal's security advisory policy"
  6805. }
  6806. }
  6807. },
  6808. "notification-url": "https://packages.drupal.org/8/downloads",
  6809. "license": [
  6810. "GPL-2.0-or-later"
  6811. ],
  6812. "authors": [
  6813. {
  6814. "name": "Thomas Seidl",
  6815. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6816. },
  6817. {
  6818. "name": "Nick Veenhof",
  6819. "homepage": "https://www.drupal.org/u/nick_vh"
  6820. },
  6821. {
  6822. "name": "See other contributors",
  6823. "homepage": "https://www.drupal.org/node/790418/committers"
  6824. }
  6825. ],
  6826. "description": "Provides a generic framework for modules offering search capabilities.",
  6827. "homepage": "https://www.drupal.org/project/search_api",
  6828. "support": {
  6829. "source": "https://git.drupalcode.org/project/search_api",
  6830. "issues": "https://www.drupal.org/project/issues/search_api",
  6831. "irc": "irc://irc.freenode.org/drupal-search-api"
  6832. }
  6833. },
  6834. {
  6835. "name": "drupal/search_api_db",
  6836. "version": "1.38.0",
  6837. "require": {
  6838. "drupal/core": "^10.2 || ^11",
  6839. "drupal/search_api": "*"
  6840. },
  6841. "type": "metapackage",
  6842. "extra": {
  6843. "drupal": {
  6844. "version": "8.x-1.38",
  6845. "datestamp": "1740298961",
  6846. "security-coverage": {
  6847. "status": "covered",
  6848. "message": "Covered by Drupal's security advisory policy"
  6849. }
  6850. }
  6851. },
  6852. "notification-url": "https://packages.drupal.org/8/downloads",
  6853. "license": [
  6854. "GPL-2.0-or-later"
  6855. ],
  6856. "authors": [
  6857. {
  6858. "name": "borisson_",
  6859. "homepage": "https://www.drupal.org/user/2393360"
  6860. },
  6861. {
  6862. "name": "drunken monkey",
  6863. "homepage": "https://www.drupal.org/user/205582"
  6864. },
  6865. {
  6866. "name": "nick_vh",
  6867. "homepage": "https://www.drupal.org/user/122682"
  6868. }
  6869. ],
  6870. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6871. "homepage": "https://www.drupal.org/project/search_api",
  6872. "support": {
  6873. "source": "https://git.drupalcode.org/project/search_api"
  6874. }
  6875. },
  6876. {
  6877. "name": "drupal/seven",
  6878. "version": "1.0.0",
  6879. "source": {
  6880. "type": "git",
  6881. "url": "https://git.drupalcode.org/project/seven.git",
  6882. "reference": "1.0.0"
  6883. },
  6884. "dist": {
  6885. "type": "zip",
  6886. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6887. "reference": "1.0.0",
  6888. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6889. },
  6890. "require": {
  6891. "drupal/core": "^9 || ^10"
  6892. },
  6893. "type": "drupal-theme",
  6894. "extra": {
  6895. "drupal": {
  6896. "version": "1.0.0",
  6897. "datestamp": "1758908691",
  6898. "security-coverage": {
  6899. "status": "covered",
  6900. "message": "Covered by Drupal's security advisory policy"
  6901. }
  6902. }
  6903. },
  6904. "notification-url": "https://packages.drupal.org/8/downloads",
  6905. "license": [
  6906. "GPL-2.0-or-later"
  6907. ],
  6908. "authors": [
  6909. {
  6910. "name": "avpaderno",
  6911. "homepage": "https://www.drupal.org/user/55077"
  6912. },
  6913. {
  6914. "name": "bnjmnm",
  6915. "homepage": "https://www.drupal.org/user/2369194"
  6916. },
  6917. {
  6918. "name": "krakenbite",
  6919. "homepage": "https://www.drupal.org/user/3805933"
  6920. },
  6921. {
  6922. "name": "lauriii",
  6923. "homepage": "https://www.drupal.org/user/1078742"
  6924. },
  6925. {
  6926. "name": "mcrittenden",
  6927. "homepage": "https://www.drupal.org/user/420631"
  6928. },
  6929. {
  6930. "name": "mrfelton",
  6931. "homepage": "https://www.drupal.org/user/305669"
  6932. }
  6933. ],
  6934. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6935. "homepage": "https://www.drupal.org/project/seven",
  6936. "support": {
  6937. "source": "https://git.drupalcode.org/project/seven"
  6938. }
  6939. },
  6940. {
  6941. "name": "drupal/slick",
  6942. "version": "2.11.0",
  6943. "source": {
  6944. "type": "git",
  6945. "url": "https://git.drupalcode.org/project/slick.git",
  6946. "reference": "8.x-2.11"
  6947. },
  6948. "dist": {
  6949. "type": "zip",
  6950. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  6951. "reference": "8.x-2.11",
  6952. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  6953. },
  6954. "require": {
  6955. "drupal/blazy": "^2.17",
  6956. "drupal/core": "^8.8 || ^9 || ^10"
  6957. },
  6958. "type": "drupal-module",
  6959. "extra": {
  6960. "drupal": {
  6961. "version": "8.x-2.11",
  6962. "datestamp": "1712817716",
  6963. "security-coverage": {
  6964. "status": "covered",
  6965. "message": "Covered by Drupal's security advisory policy"
  6966. }
  6967. }
  6968. },
  6969. "notification-url": "https://packages.drupal.org/8/downloads",
  6970. "license": [
  6971. "GPL-2.0-or-later"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Contributors",
  6976. "homepage": "https://www.drupal.org/node/2232779/committers",
  6977. "role": "Contributors"
  6978. },
  6979. {
  6980. "name": "shadcn",
  6981. "homepage": "https://www.drupal.org/user/571032"
  6982. },
  6983. {
  6984. "name": "thalles",
  6985. "homepage": "https://www.drupal.org/user/3589086"
  6986. }
  6987. ],
  6988. "description": "Slick carousel, the last carousel you'll ever need.",
  6989. "homepage": "https://drupal.org/project/slick",
  6990. "keywords": [
  6991. "Drupal",
  6992. "carousel",
  6993. "slideshow"
  6994. ],
  6995. "support": {
  6996. "source": "https://git.drupalcode.org/project/slick",
  6997. "issues": "https://drupal.org/project/issues/slick"
  6998. }
  6999. },
  7000. {
  7001. "name": "drupal/smart_trim",
  7002. "version": "2.2.0",
  7003. "source": {
  7004. "type": "git",
  7005. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7006. "reference": "2.2.0"
  7007. },
  7008. "dist": {
  7009. "type": "zip",
  7010. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.2.0.zip",
  7011. "reference": "2.2.0",
  7012. "shasum": "564737cf0895e1b8a38af575ab7ca23f55335d9a"
  7013. },
  7014. "require": {
  7015. "drupal/core": "^9.5 || ^10 || ^11",
  7016. "drupal/token": "^1.0",
  7017. "php": ">=8.1"
  7018. },
  7019. "require-dev": {
  7020. "drupal/token_filter": "^2.1 || ^2.2"
  7021. },
  7022. "type": "drupal-module",
  7023. "extra": {
  7024. "drupal": {
  7025. "version": "2.2.0",
  7026. "datestamp": "1723847275",
  7027. "security-coverage": {
  7028. "status": "covered",
  7029. "message": "Covered by Drupal's security advisory policy"
  7030. }
  7031. }
  7032. },
  7033. "notification-url": "https://packages.drupal.org/8/downloads",
  7034. "license": [
  7035. "GPL-2.0-or-later"
  7036. ],
  7037. "authors": [
  7038. {
  7039. "name": "Mark Casias (markie)",
  7040. "homepage": "https://www.drupal.org/u/markie",
  7041. "role": "Maintainer"
  7042. },
  7043. {
  7044. "name": "AmyJune Hineline (volkswagenchick)",
  7045. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7046. "role": "Maintainer"
  7047. },
  7048. {
  7049. "name": "Michael Anello (ultimike)",
  7050. "homepage": "https://www.drupal.org/u/ultimike",
  7051. "role": "Maintainer"
  7052. }
  7053. ],
  7054. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7055. "homepage": "https://drupal.org/project/smart_trim",
  7056. "support": {
  7057. "source": "https://git.drupalcode.org/project/smart_trim",
  7058. "issues": "https://drupal.org/project/issues/smart_trim"
  7059. }
  7060. },
  7061. {
  7062. "name": "drupal/smtp",
  7063. "version": "1.4.0",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://git.drupalcode.org/project/smtp.git",
  7067. "reference": "8.x-1.4"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7072. "reference": "8.x-1.4",
  7073. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7074. },
  7075. "require": {
  7076. "drupal/core": "^9.5 || ^10 || ^11",
  7077. "phpmailer/phpmailer": "^6.1.7"
  7078. },
  7079. "suggest": {
  7080. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7081. },
  7082. "type": "drupal-module",
  7083. "extra": {
  7084. "drupal": {
  7085. "version": "8.x-1.4",
  7086. "datestamp": "1722032780",
  7087. "security-coverage": {
  7088. "status": "covered",
  7089. "message": "Covered by Drupal's security advisory policy"
  7090. }
  7091. },
  7092. "branch-alias": {
  7093. "dev-8.x-1.x": "1.x-dev"
  7094. }
  7095. },
  7096. "notification-url": "https://packages.drupal.org/8/downloads",
  7097. "license": [
  7098. "GPL-2.0-or-later"
  7099. ],
  7100. "authors": [
  7101. {
  7102. "name": "japerry",
  7103. "homepage": "https://www.drupal.org/user/45640"
  7104. },
  7105. {
  7106. "name": "joseph.olstad",
  7107. "homepage": "https://www.drupal.org/user/1321830"
  7108. },
  7109. {
  7110. "name": "LukeLast",
  7111. "homepage": "https://www.drupal.org/user/30151"
  7112. },
  7113. {
  7114. "name": "oadaeh",
  7115. "homepage": "https://www.drupal.org/user/4649"
  7116. },
  7117. {
  7118. "name": "sadashiv",
  7119. "homepage": "https://www.drupal.org/user/1773304"
  7120. },
  7121. {
  7122. "name": "wundo",
  7123. "homepage": "https://www.drupal.org/user/25523"
  7124. },
  7125. {
  7126. "name": "yettyn",
  7127. "homepage": "https://www.drupal.org/user/93281"
  7128. }
  7129. ],
  7130. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7131. "homepage": "https://www.drupal.org/project/smtp",
  7132. "support": {
  7133. "source": "https://git.drupalcode.org/project/smtp",
  7134. "issues": "https://www.drupal.org/project/issues/smtp"
  7135. }
  7136. },
  7137. {
  7138. "name": "drupal/structure_sync",
  7139. "version": "2.0.8",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7143. "reference": "2.0.8"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7148. "reference": "2.0.8",
  7149. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7150. },
  7151. "require": {
  7152. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7153. "php": ">=7.1"
  7154. },
  7155. "require-dev": {
  7156. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7157. },
  7158. "type": "drupal-module",
  7159. "extra": {
  7160. "drupal": {
  7161. "version": "2.0.8",
  7162. "datestamp": "1728580642",
  7163. "security-coverage": {
  7164. "status": "covered",
  7165. "message": "Covered by Drupal's security advisory policy"
  7166. }
  7167. },
  7168. "drush": {
  7169. "services": {
  7170. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7171. }
  7172. }
  7173. },
  7174. "notification-url": "https://packages.drupal.org/8/downloads",
  7175. "license": [
  7176. "GPL-2.0-or-later"
  7177. ],
  7178. "authors": [
  7179. {
  7180. "name": "colan",
  7181. "homepage": "https://www.drupal.org/user/58704"
  7182. },
  7183. {
  7184. "name": "fidovdbos",
  7185. "homepage": "https://www.drupal.org/user/1494332"
  7186. },
  7187. {
  7188. "name": "joachim",
  7189. "homepage": "https://www.drupal.org/user/107701"
  7190. },
  7191. {
  7192. "name": "louis-cuny",
  7193. "homepage": "https://www.drupal.org/user/3606332"
  7194. },
  7195. {
  7196. "name": "mparker17",
  7197. "homepage": "https://www.drupal.org/user/536298"
  7198. },
  7199. {
  7200. "name": "spiderman",
  7201. "homepage": "https://www.drupal.org/user/1631"
  7202. },
  7203. {
  7204. "name": "timKruijsen",
  7205. "homepage": "https://www.drupal.org/user/3513437"
  7206. },
  7207. {
  7208. "name": "vinlaurens",
  7209. "homepage": "https://www.drupal.org/user/2945689"
  7210. }
  7211. ],
  7212. "description": "Tool for syncing structural data that is stored as content.",
  7213. "homepage": "https://www.drupal.org/project/structure_sync",
  7214. "support": {
  7215. "source": "https://git.drupalcode.org/project/structure_sync"
  7216. }
  7217. },
  7218. {
  7219. "name": "drupal/synonyms",
  7220. "version": "2.1.4",
  7221. "source": {
  7222. "type": "git",
  7223. "url": "https://git.drupalcode.org/project/synonyms.git",
  7224. "reference": "2.1.4"
  7225. },
  7226. "dist": {
  7227. "type": "zip",
  7228. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7229. "reference": "2.1.4",
  7230. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7231. },
  7232. "require": {
  7233. "drupal/core": "^9 || ^10 || ^11"
  7234. },
  7235. "require-dev": {
  7236. "drupal/synonyms_list_field": "*"
  7237. },
  7238. "type": "drupal-module",
  7239. "extra": {
  7240. "drupal": {
  7241. "version": "2.1.4",
  7242. "datestamp": "1723069842",
  7243. "security-coverage": {
  7244. "status": "covered",
  7245. "message": "Covered by Drupal's security advisory policy"
  7246. }
  7247. }
  7248. },
  7249. "notification-url": "https://packages.drupal.org/8/downloads",
  7250. "license": [
  7251. "GPL-2.0-or-later"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Bojan Zivanovic",
  7256. "homepage": "https://www.drupal.org/u/bojanz",
  7257. "role": "Author and D5, D6 and D7 versions developer."
  7258. },
  7259. {
  7260. "name": "Alex Trosenko",
  7261. "homepage": "https://www.drupal.org/u/bucefal91",
  7262. "role": "D7 and D8 versions developer."
  7263. },
  7264. {
  7265. "name": "Duro Arezina",
  7266. "homepage": "https://www.drupal.org/u/devad",
  7267. "role": "D8+ versions maintenance"
  7268. },
  7269. {
  7270. "name": "See other contributors",
  7271. "homepage": "https://www.drupal.org/node/148775/committers"
  7272. }
  7273. ],
  7274. "description": "Provides synonyms feature for all entities.",
  7275. "homepage": "https://www.drupal.org/project/synonyms",
  7276. "support": {
  7277. "source": "https://git.drupalcode.org/project/synonyms",
  7278. "issues": "https://www.drupal.org/project/issues/synonyms"
  7279. }
  7280. },
  7281. {
  7282. "name": "drupal/token",
  7283. "version": "1.15.0",
  7284. "source": {
  7285. "type": "git",
  7286. "url": "https://git.drupalcode.org/project/token.git",
  7287. "reference": "8.x-1.15"
  7288. },
  7289. "dist": {
  7290. "type": "zip",
  7291. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  7292. "reference": "8.x-1.15",
  7293. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  7294. },
  7295. "require": {
  7296. "drupal/core": "^9.2 || ^10 || ^11"
  7297. },
  7298. "require-dev": {
  7299. "drupal/book": "*"
  7300. },
  7301. "type": "drupal-module",
  7302. "extra": {
  7303. "drupal": {
  7304. "version": "8.x-1.15",
  7305. "datestamp": "1722206211",
  7306. "security-coverage": {
  7307. "status": "covered",
  7308. "message": "Covered by Drupal's security advisory policy"
  7309. }
  7310. },
  7311. "drush": {
  7312. "services": {
  7313. "drush.services.yml": ">=9"
  7314. }
  7315. }
  7316. },
  7317. "notification-url": "https://packages.drupal.org/8/downloads",
  7318. "license": [
  7319. "GPL-2.0-or-later"
  7320. ],
  7321. "authors": [
  7322. {
  7323. "name": "berdir",
  7324. "homepage": "https://www.drupal.org/user/214652"
  7325. },
  7326. {
  7327. "name": "dave reid",
  7328. "homepage": "https://www.drupal.org/user/53892"
  7329. },
  7330. {
  7331. "name": "eaton",
  7332. "homepage": "https://www.drupal.org/user/16496"
  7333. },
  7334. {
  7335. "name": "fago",
  7336. "homepage": "https://www.drupal.org/user/16747"
  7337. },
  7338. {
  7339. "name": "greggles",
  7340. "homepage": "https://www.drupal.org/user/36762"
  7341. },
  7342. {
  7343. "name": "mikeryan",
  7344. "homepage": "https://www.drupal.org/user/4420"
  7345. }
  7346. ],
  7347. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7348. "homepage": "https://www.drupal.org/project/token",
  7349. "support": {
  7350. "source": "https://git.drupalcode.org/project/token"
  7351. }
  7352. },
  7353. {
  7354. "name": "drupal/translation_views",
  7355. "version": "1.0.0-alpha11",
  7356. "source": {
  7357. "type": "git",
  7358. "url": "https://git.drupalcode.org/project/translation_views.git",
  7359. "reference": "8.x-1.0-alpha11"
  7360. },
  7361. "dist": {
  7362. "type": "zip",
  7363. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7364. "reference": "8.x-1.0-alpha11",
  7365. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7366. },
  7367. "require": {
  7368. "drupal/core": "^8.8 || ^9 || ^10"
  7369. },
  7370. "require-dev": {
  7371. "drupal/translators_content": "^1.0@alpha"
  7372. },
  7373. "type": "drupal-module",
  7374. "extra": {
  7375. "drupal": {
  7376. "version": "8.x-1.0-alpha11",
  7377. "datestamp": "1679660668",
  7378. "security-coverage": {
  7379. "status": "not-covered",
  7380. "message": "Alpha releases are not covered by Drupal security advisories."
  7381. }
  7382. }
  7383. },
  7384. "notification-url": "https://packages.drupal.org/8/downloads",
  7385. "license": [
  7386. "GPL-2.0-or-later"
  7387. ],
  7388. "authors": [
  7389. {
  7390. "name": "matsbla",
  7391. "homepage": "https://www.drupal.org/user/2325394"
  7392. },
  7393. {
  7394. "name": "vlad.dancer",
  7395. "homepage": "https://www.drupal.org/user/903844"
  7396. }
  7397. ],
  7398. "description": "Create customized lists and queries of translations from your database.",
  7399. "homepage": "https://www.drupal.org/project/translation_views",
  7400. "support": {
  7401. "source": "https://git.drupalcode.org/project/translation_views"
  7402. }
  7403. },
  7404. {
  7405. "name": "drupal/ultimate_cron",
  7406. "version": "2.0.0-beta1",
  7407. "source": {
  7408. "type": "git",
  7409. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7410. "reference": "8.x-2.0-beta1"
  7411. },
  7412. "dist": {
  7413. "type": "zip",
  7414. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7415. "reference": "8.x-2.0-beta1",
  7416. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7417. },
  7418. "require": {
  7419. "drupal/core": "^9.3 || ^10.1 || ^11"
  7420. },
  7421. "type": "drupal-module",
  7422. "extra": {
  7423. "drupal": {
  7424. "version": "8.x-2.0-beta1",
  7425. "datestamp": "1732830342",
  7426. "security-coverage": {
  7427. "status": "not-covered",
  7428. "message": "Beta releases are not covered by Drupal security advisories."
  7429. }
  7430. },
  7431. "drush": {
  7432. "services": {
  7433. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7434. }
  7435. }
  7436. },
  7437. "notification-url": "https://packages.drupal.org/8/downloads",
  7438. "license": [
  7439. "GPL-2.0+"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "arnested",
  7444. "homepage": "https://www.drupal.org/user/245635"
  7445. },
  7446. {
  7447. "name": "berdir",
  7448. "homepage": "https://www.drupal.org/user/214652"
  7449. },
  7450. {
  7451. "name": "gielfeldt",
  7452. "homepage": "https://www.drupal.org/user/366993"
  7453. },
  7454. {
  7455. "name": "miro_dietiker",
  7456. "homepage": "https://www.drupal.org/user/227761"
  7457. },
  7458. {
  7459. "name": "primsi",
  7460. "homepage": "https://www.drupal.org/user/282629"
  7461. }
  7462. ],
  7463. "description": "Ultimate cron",
  7464. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7465. "support": {
  7466. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7467. }
  7468. },
  7469. {
  7470. "name": "drupal/upgrade_status",
  7471. "version": "4.3.8",
  7472. "source": {
  7473. "type": "git",
  7474. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7475. "reference": "4.3.8"
  7476. },
  7477. "dist": {
  7478. "type": "zip",
  7479. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  7480. "reference": "4.3.8",
  7481. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  7482. },
  7483. "require": {
  7484. "dekor/php-array-table": "^2.0",
  7485. "drupal/core": "^9 || ^10 || ^11",
  7486. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7487. "nikic/php-parser": "^4.0.0|^5.0.0",
  7488. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7489. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7490. "webflo/drupal-finder": "^1.2"
  7491. },
  7492. "require-dev": {
  7493. "drush/drush": "^11|^12|^13"
  7494. },
  7495. "type": "drupal-module",
  7496. "extra": {
  7497. "drupal": {
  7498. "version": "4.3.8",
  7499. "datestamp": "1751485112",
  7500. "security-coverage": {
  7501. "status": "covered",
  7502. "message": "Covered by Drupal's security advisory policy"
  7503. }
  7504. },
  7505. "drush": {
  7506. "services": {
  7507. "drush.services.yml": "^9 || ^10"
  7508. }
  7509. }
  7510. },
  7511. "notification-url": "https://packages.drupal.org/8/downloads",
  7512. "license": [
  7513. "GPL-2.0-or-later"
  7514. ],
  7515. "authors": [
  7516. {
  7517. "name": "gábor hojtsy",
  7518. "homepage": "https://www.drupal.org/user/4166"
  7519. }
  7520. ],
  7521. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7522. "homepage": "http://drupal.org/project/upgrade_status",
  7523. "support": {
  7524. "source": "https://git.drupalcode.org/project/upgrade_status"
  7525. }
  7526. },
  7527. {
  7528. "name": "drupal/video_embed_dailymotion",
  7529. "version": "2.0.0",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7533. "reference": "2.0.0"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7538. "reference": "2.0.0",
  7539. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7540. },
  7541. "require": {
  7542. "drupal/core": "^9 || ^10",
  7543. "drupal/video_embed_field": "*"
  7544. },
  7545. "type": "drupal-module",
  7546. "extra": {
  7547. "drupal": {
  7548. "version": "2.0.0",
  7549. "datestamp": "1699434830",
  7550. "security-coverage": {
  7551. "status": "covered",
  7552. "message": "Covered by Drupal's security advisory policy"
  7553. }
  7554. }
  7555. },
  7556. "notification-url": "https://packages.drupal.org/8/downloads",
  7557. "license": [
  7558. "GPL-2.0-or-later"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "flocondetoile",
  7563. "homepage": "https://www.drupal.org/user/2006064"
  7564. },
  7565. {
  7566. "name": "mohs3n71",
  7567. "homepage": "https://www.drupal.org/user/2295854"
  7568. },
  7569. {
  7570. "name": "Sam152",
  7571. "homepage": "https://www.drupal.org/user/1485048"
  7572. }
  7573. ],
  7574. "description": "A video_embed_field integration with Dailymotion.",
  7575. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7576. "support": {
  7577. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7578. }
  7579. },
  7580. {
  7581. "name": "drupal/video_embed_field",
  7582. "version": "2.5.0",
  7583. "source": {
  7584. "type": "git",
  7585. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7586. "reference": "8.x-2.5"
  7587. },
  7588. "dist": {
  7589. "type": "zip",
  7590. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7591. "reference": "8.x-2.5",
  7592. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7593. },
  7594. "require": {
  7595. "drupal/core": "^9.2 || ^10"
  7596. },
  7597. "require-dev": {
  7598. "drupal/ckeditor": "^1",
  7599. "drupal/colorbox": "^2",
  7600. "drupal/video_embed_media": "*"
  7601. },
  7602. "type": "drupal-module",
  7603. "extra": {
  7604. "drupal": {
  7605. "version": "8.x-2.5",
  7606. "datestamp": "1671413311",
  7607. "security-coverage": {
  7608. "status": "covered",
  7609. "message": "Covered by Drupal's security advisory policy"
  7610. }
  7611. }
  7612. },
  7613. "notification-url": "https://packages.drupal.org/8/downloads",
  7614. "license": [
  7615. "GPL-2.0-or-later"
  7616. ],
  7617. "authors": [
  7618. {
  7619. "name": "abhinesh",
  7620. "homepage": "https://www.drupal.org/user/3645979"
  7621. },
  7622. {
  7623. "name": "jec006",
  7624. "homepage": "https://www.drupal.org/user/855980"
  7625. },
  7626. {
  7627. "name": "mably",
  7628. "homepage": "https://www.drupal.org/user/3375160"
  7629. },
  7630. {
  7631. "name": "plopesc",
  7632. "homepage": "https://www.drupal.org/user/282415"
  7633. },
  7634. {
  7635. "name": "sam152",
  7636. "homepage": "https://www.drupal.org/user/1485048"
  7637. }
  7638. ],
  7639. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7640. "homepage": "https://www.drupal.org/project/video_embed_field",
  7641. "support": {
  7642. "source": "https://git.drupalcode.org/project/video_embed_field"
  7643. }
  7644. },
  7645. {
  7646. "name": "drupal/views_bulk_edit",
  7647. "version": "3.0.0",
  7648. "source": {
  7649. "type": "git",
  7650. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7651. "reference": "3.0.0"
  7652. },
  7653. "dist": {
  7654. "type": "zip",
  7655. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  7656. "reference": "3.0.0",
  7657. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  7658. },
  7659. "require": {
  7660. "drupal/core": "^9.4 || ^10 || ^11",
  7661. "php": ">=8.1"
  7662. },
  7663. "require-dev": {
  7664. "drupal/views_bulk_operations": "~4.2.4"
  7665. },
  7666. "suggest": {
  7667. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7668. },
  7669. "type": "drupal-module",
  7670. "extra": {
  7671. "drupal": {
  7672. "version": "3.0.0",
  7673. "datestamp": "1725358398",
  7674. "security-coverage": {
  7675. "status": "covered",
  7676. "message": "Covered by Drupal's security advisory policy"
  7677. }
  7678. }
  7679. },
  7680. "notification-url": "https://packages.drupal.org/8/downloads",
  7681. "license": [
  7682. "GPL-2.0+"
  7683. ],
  7684. "authors": [
  7685. {
  7686. "name": "Marcin Grabias",
  7687. "homepage": "https://www.drupal.org/u/graber"
  7688. },
  7689. {
  7690. "name": "benjy",
  7691. "homepage": "https://www.drupal.org/user/1852732"
  7692. },
  7693. {
  7694. "name": "graber",
  7695. "homepage": "https://www.drupal.org/user/1599440"
  7696. },
  7697. {
  7698. "name": "grevil",
  7699. "homepage": "https://www.drupal.org/user/3668491"
  7700. },
  7701. {
  7702. "name": "joseph.olstad",
  7703. "homepage": "https://www.drupal.org/user/1321830"
  7704. }
  7705. ],
  7706. "description": "Allows bulk edition of entity field values.",
  7707. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7708. "support": {
  7709. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7710. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7711. }
  7712. },
  7713. {
  7714. "name": "drupal/views_bulk_operations",
  7715. "version": "4.3.4",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7719. "reference": "4.3.4"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  7724. "reference": "4.3.4",
  7725. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  7726. },
  7727. "require": {
  7728. "drupal/core": "^10.3 || ^11"
  7729. },
  7730. "conflict": {
  7731. "drush/drush": "<12.5.1"
  7732. },
  7733. "require-dev": {
  7734. "drush/drush": "^12 || ^13"
  7735. },
  7736. "suggest": {
  7737. "drush/drush": "^12 || ^13"
  7738. },
  7739. "type": "drupal-module",
  7740. "extra": {
  7741. "drupal": {
  7742. "version": "4.3.4",
  7743. "datestamp": "1741604495",
  7744. "security-coverage": {
  7745. "status": "covered",
  7746. "message": "Covered by Drupal's security advisory policy"
  7747. }
  7748. }
  7749. },
  7750. "notification-url": "https://packages.drupal.org/8/downloads",
  7751. "license": [
  7752. "GPL-2.0-or-later"
  7753. ],
  7754. "authors": [
  7755. {
  7756. "name": "Marcin Grabias",
  7757. "homepage": "https://www.drupal.org/u/graber"
  7758. },
  7759. {
  7760. "name": "graber",
  7761. "homepage": "https://www.drupal.org/user/1599440"
  7762. },
  7763. {
  7764. "name": "joelpittet",
  7765. "homepage": "https://www.drupal.org/user/160302"
  7766. }
  7767. ],
  7768. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7769. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7770. "support": {
  7771. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7772. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7773. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7774. }
  7775. },
  7776. {
  7777. "name": "drupal/views_conditional",
  7778. "version": "1.10.0",
  7779. "source": {
  7780. "type": "git",
  7781. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7782. "reference": "8.x-1.10"
  7783. },
  7784. "dist": {
  7785. "type": "zip",
  7786. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7787. "reference": "8.x-1.10",
  7788. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7789. },
  7790. "require": {
  7791. "drupal/core": "^9 || ^10 || ^11"
  7792. },
  7793. "type": "drupal-module",
  7794. "extra": {
  7795. "drupal": {
  7796. "version": "8.x-1.10",
  7797. "datestamp": "1727901408",
  7798. "security-coverage": {
  7799. "status": "covered",
  7800. "message": "Covered by Drupal's security advisory policy"
  7801. }
  7802. }
  7803. },
  7804. "notification-url": "https://packages.drupal.org/8/downloads",
  7805. "license": [
  7806. "GPL-2.0-or-later"
  7807. ],
  7808. "authors": [
  7809. {
  7810. "name": "anand.toshniwal93",
  7811. "homepage": "https://www.drupal.org/user/3345088"
  7812. },
  7813. {
  7814. "name": "joelpittet",
  7815. "homepage": "https://www.drupal.org/user/160302"
  7816. },
  7817. {
  7818. "name": "MChittenden",
  7819. "homepage": "https://www.drupal.org/user/2288348"
  7820. },
  7821. {
  7822. "name": "shelane",
  7823. "homepage": "https://www.drupal.org/user/2674989"
  7824. }
  7825. ],
  7826. "description": "Allows conditional views output.",
  7827. "homepage": "https://www.drupal.org/project/views_conditional",
  7828. "support": {
  7829. "source": "https://git.drupalcode.org/project/views_conditional"
  7830. }
  7831. },
  7832. {
  7833. "name": "drupal/views_ef_fieldset",
  7834. "version": "1.10.0",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7838. "reference": "8.x-1.10"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7843. "reference": "8.x-1.10",
  7844. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7845. },
  7846. "require": {
  7847. "drupal/core": "^10 || ^11"
  7848. },
  7849. "type": "drupal-module",
  7850. "extra": {
  7851. "drupal": {
  7852. "version": "8.x-1.10",
  7853. "datestamp": "1731071552",
  7854. "security-coverage": {
  7855. "status": "covered",
  7856. "message": "Covered by Drupal's security advisory policy"
  7857. }
  7858. }
  7859. },
  7860. "notification-url": "https://packages.drupal.org/8/downloads",
  7861. "license": [
  7862. "GPL-2.0-or-later"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "ciss",
  7867. "homepage": "https://www.drupal.org/user/1632364"
  7868. },
  7869. {
  7870. "name": "eli-t",
  7871. "homepage": "https://www.drupal.org/user/516878"
  7872. },
  7873. {
  7874. "name": "pol",
  7875. "homepage": "https://www.drupal.org/user/47194"
  7876. }
  7877. ],
  7878. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  7879. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  7880. "support": {
  7881. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7882. }
  7883. },
  7884. {
  7885. "name": "drupal/webform",
  7886. "version": "6.2.9",
  7887. "source": {
  7888. "type": "git",
  7889. "url": "https://git.drupalcode.org/project/webform.git",
  7890. "reference": "6.2.9"
  7891. },
  7892. "dist": {
  7893. "type": "zip",
  7894. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  7895. "reference": "6.2.9",
  7896. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  7897. },
  7898. "require": {
  7899. "drupal/core": "^10.2",
  7900. "php": ">=8.1"
  7901. },
  7902. "require-dev": {
  7903. "drupal/address": "1.x-dev",
  7904. "drupal/bootstrap": "3.x-dev",
  7905. "drupal/captcha": "^1 || ^2",
  7906. "drupal/chosen": "3.0.x-dev",
  7907. "drupal/ckeditor": "1.0.x-dev",
  7908. "drupal/clientside_validation": "^3 || ^4",
  7909. "drupal/clientside_validation_jquery": "*",
  7910. "drupal/devel": "5.x-dev",
  7911. "drupal/entity": "1.x-dev",
  7912. "drupal/entity_print": "2.x-dev",
  7913. "drupal/group": "1.x-dev",
  7914. "drupal/hal": "1 - 2",
  7915. "drupal/jquery_ui": "1.x-dev",
  7916. "drupal/jquery_ui_button": "2.x-dev",
  7917. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7918. "drupal/jquery_ui_datepicker": "2.x-dev",
  7919. "drupal/mailsystem": "4.x-dev",
  7920. "drupal/metatag": "1.x-dev",
  7921. "drupal/paragraphs": "1.x-dev",
  7922. "drupal/select2": "1.x-dev",
  7923. "drupal/smtp": "1.x-dev",
  7924. "drupal/styleguide": "^1 || ^2",
  7925. "drupal/telephone_validation": "2.x-dev",
  7926. "drupal/token": "1.x-dev",
  7927. "drupal/variationcache": "1.x-dev",
  7928. "drupal/webform_access": "*",
  7929. "drupal/webform_attachment": "*",
  7930. "drupal/webform_clientside_validation": "*",
  7931. "drupal/webform_devel": "*",
  7932. "drupal/webform_entity_print": "*",
  7933. "drupal/webform_node": "*",
  7934. "drupal/webform_options_limit": "*",
  7935. "drupal/webform_scheduled_email": "*",
  7936. "drupal/webform_share": "*",
  7937. "drupal/webform_ui": "*"
  7938. },
  7939. "suggest": {
  7940. "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.",
  7941. "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."
  7942. },
  7943. "type": "drupal-module",
  7944. "extra": {
  7945. "drupal": {
  7946. "version": "6.2.9",
  7947. "datestamp": "1733851063",
  7948. "security-coverage": {
  7949. "status": "covered",
  7950. "message": "Covered by Drupal's security advisory policy"
  7951. }
  7952. },
  7953. "drush": {
  7954. "services": {
  7955. "drush.services.yml": ">=9"
  7956. }
  7957. }
  7958. },
  7959. "notification-url": "https://packages.drupal.org/8/downloads",
  7960. "license": [
  7961. "GPL-2.0-or-later"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Jacob Rockowitz (jrockowitz)",
  7966. "homepage": "https://www.drupal.org/u/jrockowitz",
  7967. "role": "Maintainer"
  7968. },
  7969. {
  7970. "name": "Contributors",
  7971. "homepage": "https://www.drupal.org/node/7404/committers",
  7972. "role": "Contributor"
  7973. },
  7974. {
  7975. "name": "liam morland",
  7976. "homepage": "https://www.drupal.org/user/493050"
  7977. },
  7978. {
  7979. "name": "mandclu",
  7980. "homepage": "https://www.drupal.org/user/52136"
  7981. },
  7982. {
  7983. "name": "quicksketch",
  7984. "homepage": "https://www.drupal.org/user/35821"
  7985. }
  7986. ],
  7987. "description": "Enables the creation of webforms and questionnaires.",
  7988. "homepage": "https://drupal.org/project/webform",
  7989. "support": {
  7990. "source": "https://git.drupalcode.org/project/webform",
  7991. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7992. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7993. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  7994. }
  7995. },
  7996. {
  7997. "name": "drush/drush",
  7998. "version": "13.7.1",
  7999. "source": {
  8000. "type": "git",
  8001. "url": "https://github.com/drush-ops/drush.git",
  8002. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc"
  8003. },
  8004. "dist": {
  8005. "type": "zip",
  8006. "url": "https://api.github.com/repos/drush-ops/drush/zipball/4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8007. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8008. "shasum": ""
  8009. },
  8010. "require": {
  8011. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  8012. "composer-runtime-api": "^2.2",
  8013. "composer/semver": "^1.4 || ^3",
  8014. "consolidation/annotated-command": "^4.10.2",
  8015. "consolidation/config": "^2.1.2 || ^3.1.1",
  8016. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8017. "consolidation/output-formatters": "^4.6.1",
  8018. "consolidation/robo": "^4.0.6 || ^5.1.0",
  8019. "consolidation/site-alias": "^4.1.1",
  8020. "consolidation/site-process": "^5.4.2",
  8021. "dflydev/dot-access-data": "^3.0.2",
  8022. "ext-dom": "*",
  8023. "grasmash/yaml-cli": "^3.2",
  8024. "guzzlehttp/guzzle": "^7.0",
  8025. "laravel/prompts": "^0.3.5",
  8026. "league/container": "^4.2",
  8027. "php": ">=8.3",
  8028. "psy/psysh": "~0.12",
  8029. "symfony/event-dispatcher": "^6 || ^7",
  8030. "symfony/filesystem": "^6.1 || ^7",
  8031. "symfony/finder": "^6 || ^7",
  8032. "symfony/var-dumper": "^6.0 || ^7",
  8033. "symfony/yaml": "^6.0 || ^7"
  8034. },
  8035. "conflict": {
  8036. "drupal/core": "< 10.4",
  8037. "drupal/migrate_run": "*",
  8038. "drupal/migrate_tools": "<= 5"
  8039. },
  8040. "require-dev": {
  8041. "composer/installers": "^2",
  8042. "cweagans/composer-patches": "~1.7.3",
  8043. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  8044. "drupal/semver_example": "2.3.0",
  8045. "jetbrains/phpstorm-attributes": "^1.0",
  8046. "mglaman/phpstan-drupal": "^2",
  8047. "phpunit/phpunit": "^9 || ^10 || ^11",
  8048. "rector/rector": "^2",
  8049. "squizlabs/php_codesniffer": "^3.7"
  8050. },
  8051. "bin": [
  8052. "drush",
  8053. "drush.php"
  8054. ],
  8055. "type": "library",
  8056. "extra": {
  8057. "patches-file": "composer.patches.json",
  8058. "installer-paths": {
  8059. "sut/core": [
  8060. "type:drupal-core"
  8061. ],
  8062. "sut/libraries/{$name}": [
  8063. "type:drupal-library"
  8064. ],
  8065. "sut/themes/unish/{$name}": [
  8066. "drupal/empty_theme"
  8067. ],
  8068. "sut/drush/contrib/{$name}": [
  8069. "type:drupal-drush"
  8070. ],
  8071. "sut/modules/unish/{$name}": [
  8072. "drupal/devel"
  8073. ],
  8074. "sut/themes/contrib/{$name}": [
  8075. "type:drupal-theme"
  8076. ],
  8077. "sut/modules/contrib/{$name}": [
  8078. "type:drupal-module"
  8079. ],
  8080. "sut/profiles/contrib/{$name}": [
  8081. "type:drupal-profile"
  8082. ]
  8083. }
  8084. },
  8085. "autoload": {
  8086. "psr-4": {
  8087. "Drush\\": "src/"
  8088. }
  8089. },
  8090. "notification-url": "https://packagist.org/downloads/",
  8091. "license": [
  8092. "GPL-2.0-or-later"
  8093. ],
  8094. "authors": [
  8095. {
  8096. "name": "Moshe Weitzman",
  8097. "email": "weitzman@tejasa.com"
  8098. },
  8099. {
  8100. "name": "Owen Barton",
  8101. "email": "drupal@owenbarton.com"
  8102. },
  8103. {
  8104. "name": "Greg Anderson",
  8105. "email": "greg.1.anderson@greenknowe.org"
  8106. },
  8107. {
  8108. "name": "Jonathan Araña Cruz",
  8109. "email": "jonhattan@faita.net"
  8110. },
  8111. {
  8112. "name": "Jonathan Hedstrom",
  8113. "email": "jhedstrom@gmail.com"
  8114. },
  8115. {
  8116. "name": "Christopher Gervais",
  8117. "email": "chris@ergonlogic.com"
  8118. },
  8119. {
  8120. "name": "Dave Reid",
  8121. "email": "dave@davereid.net"
  8122. },
  8123. {
  8124. "name": "Damian Lee",
  8125. "email": "damiankloip@googlemail.com"
  8126. }
  8127. ],
  8128. "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.",
  8129. "homepage": "http://www.drush.org",
  8130. "support": {
  8131. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8132. "issues": "https://github.com/drush-ops/drush/issues",
  8133. "security": "https://github.com/drush-ops/drush/security/advisories",
  8134. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8135. "source": "https://github.com/drush-ops/drush/tree/13.7.1"
  8136. },
  8137. "funding": [
  8138. {
  8139. "url": "https://github.com/weitzman",
  8140. "type": "github"
  8141. }
  8142. ],
  8143. "time": "2026-01-28T22:21:17+00:00"
  8144. },
  8145. {
  8146. "name": "egulias/email-validator",
  8147. "version": "4.0.4",
  8148. "source": {
  8149. "type": "git",
  8150. "url": "https://github.com/egulias/EmailValidator.git",
  8151. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8152. },
  8153. "dist": {
  8154. "type": "zip",
  8155. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8156. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8157. "shasum": ""
  8158. },
  8159. "require": {
  8160. "doctrine/lexer": "^2.0 || ^3.0",
  8161. "php": ">=8.1",
  8162. "symfony/polyfill-intl-idn": "^1.26"
  8163. },
  8164. "require-dev": {
  8165. "phpunit/phpunit": "^10.2",
  8166. "vimeo/psalm": "^5.12"
  8167. },
  8168. "suggest": {
  8169. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8170. },
  8171. "type": "library",
  8172. "extra": {
  8173. "branch-alias": {
  8174. "dev-master": "4.0.x-dev"
  8175. }
  8176. },
  8177. "autoload": {
  8178. "psr-4": {
  8179. "Egulias\\EmailValidator\\": "src"
  8180. }
  8181. },
  8182. "notification-url": "https://packagist.org/downloads/",
  8183. "license": [
  8184. "MIT"
  8185. ],
  8186. "authors": [
  8187. {
  8188. "name": "Eduardo Gulias Davis"
  8189. }
  8190. ],
  8191. "description": "A library for validating emails against several RFCs",
  8192. "homepage": "https://github.com/egulias/EmailValidator",
  8193. "keywords": [
  8194. "email",
  8195. "emailvalidation",
  8196. "emailvalidator",
  8197. "validation",
  8198. "validator"
  8199. ],
  8200. "support": {
  8201. "issues": "https://github.com/egulias/EmailValidator/issues",
  8202. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8203. },
  8204. "funding": [
  8205. {
  8206. "url": "https://github.com/egulias",
  8207. "type": "github"
  8208. }
  8209. ],
  8210. "time": "2025-03-06T22:45:56+00:00"
  8211. },
  8212. {
  8213. "name": "geocoder-php/common-http",
  8214. "version": "4.7.0",
  8215. "source": {
  8216. "type": "git",
  8217. "url": "https://github.com/geocoder-php/php-common-http.git",
  8218. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8219. },
  8220. "dist": {
  8221. "type": "zip",
  8222. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8223. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8224. "shasum": ""
  8225. },
  8226. "require": {
  8227. "php": "^8.0",
  8228. "php-http/discovery": "^1.17",
  8229. "psr/http-client-implementation": "^1.0",
  8230. "psr/http-factory-implementation": "^1.0",
  8231. "willdurand/geocoder": "^4.0|^5.0"
  8232. },
  8233. "require-dev": {
  8234. "nyholm/psr7": "^1.0",
  8235. "php-http/message": "^1.0",
  8236. "php-http/mock-client": "^1.0",
  8237. "phpunit/phpunit": "^9.5",
  8238. "symfony/stopwatch": "~2.5 || ~5.0"
  8239. },
  8240. "type": "library",
  8241. "extra": {
  8242. "branch-alias": {
  8243. "dev-master": "4.0-dev"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "psr-4": {
  8248. "Geocoder\\Http\\": ""
  8249. },
  8250. "exclude-from-classmap": [
  8251. "/Tests/"
  8252. ]
  8253. },
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "MIT"
  8257. ],
  8258. "authors": [
  8259. {
  8260. "name": "Tobias Nyholm",
  8261. "email": "tobias.nyholm@gmail.com"
  8262. }
  8263. ],
  8264. "description": "Common files for HTTP based Geocoders",
  8265. "homepage": "http://geocoder-php.org",
  8266. "keywords": [
  8267. "http geocoder"
  8268. ],
  8269. "support": {
  8270. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8271. },
  8272. "time": "2025-04-15T12:38:11+00:00"
  8273. },
  8274. {
  8275. "name": "geocoder-php/mapquest-provider",
  8276. "version": "4.4.0",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8280. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8285. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8286. "shasum": ""
  8287. },
  8288. "require": {
  8289. "geocoder-php/common-http": "^4.6",
  8290. "php": "^8.0",
  8291. "willdurand/geocoder": "^4.0|^5.0"
  8292. },
  8293. "provide": {
  8294. "geocoder-php/provider-implementation": "1.0"
  8295. },
  8296. "require-dev": {
  8297. "geocoder-php/provider-integration-tests": "^1.6.3",
  8298. "php-http/message": "^1.0",
  8299. "phpunit/phpunit": "^9.5"
  8300. },
  8301. "type": "library",
  8302. "extra": {
  8303. "branch-alias": {
  8304. "dev-master": "4.0-dev"
  8305. }
  8306. },
  8307. "autoload": {
  8308. "psr-4": {
  8309. "Geocoder\\Provider\\MapQuest\\": ""
  8310. },
  8311. "exclude-from-classmap": [
  8312. "/Tests/"
  8313. ]
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "MIT"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "William Durand",
  8322. "email": "william.durand1@gmail.com"
  8323. }
  8324. ],
  8325. "description": "Geocoder MapQuest adapter",
  8326. "homepage": "http://geocoder-php.org/Geocoder/",
  8327. "support": {
  8328. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8329. },
  8330. "time": "2025-04-15T13:24:32+00:00"
  8331. },
  8332. {
  8333. "name": "grasmash/expander",
  8334. "version": "3.0.1",
  8335. "source": {
  8336. "type": "git",
  8337. "url": "https://github.com/grasmash/expander.git",
  8338. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8339. },
  8340. "dist": {
  8341. "type": "zip",
  8342. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8343. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8344. "shasum": ""
  8345. },
  8346. "require": {
  8347. "dflydev/dot-access-data": "^3.0.0",
  8348. "php": ">=8.0",
  8349. "psr/log": "^2 | ^3"
  8350. },
  8351. "require-dev": {
  8352. "greg-1-anderson/composer-test-scenarios": "^1",
  8353. "php-coveralls/php-coveralls": "^2.5",
  8354. "phpunit/phpunit": "^9",
  8355. "squizlabs/php_codesniffer": "^3.3"
  8356. },
  8357. "type": "library",
  8358. "extra": {
  8359. "branch-alias": {
  8360. "dev-master": "1.x-dev"
  8361. }
  8362. },
  8363. "autoload": {
  8364. "psr-4": {
  8365. "Grasmash\\Expander\\": "src/"
  8366. }
  8367. },
  8368. "notification-url": "https://packagist.org/downloads/",
  8369. "license": [
  8370. "MIT"
  8371. ],
  8372. "authors": [
  8373. {
  8374. "name": "Matthew Grasmick"
  8375. }
  8376. ],
  8377. "description": "Expands internal property references in PHP arrays file.",
  8378. "support": {
  8379. "issues": "https://github.com/grasmash/expander/issues",
  8380. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8381. },
  8382. "time": "2024-11-25T23:28:05+00:00"
  8383. },
  8384. {
  8385. "name": "grasmash/yaml-cli",
  8386. "version": "3.2.1",
  8387. "source": {
  8388. "type": "git",
  8389. "url": "https://github.com/grasmash/yaml-cli.git",
  8390. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8391. },
  8392. "dist": {
  8393. "type": "zip",
  8394. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8395. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8396. "shasum": ""
  8397. },
  8398. "require": {
  8399. "dflydev/dot-access-data": "^3",
  8400. "php": ">=8.0",
  8401. "symfony/console": "^6 || ^7",
  8402. "symfony/filesystem": "^6 || ^7",
  8403. "symfony/yaml": "^6 || ^7"
  8404. },
  8405. "require-dev": {
  8406. "php-coveralls/php-coveralls": "^2",
  8407. "phpunit/phpunit": "^9",
  8408. "squizlabs/php_codesniffer": "^3.0"
  8409. },
  8410. "bin": [
  8411. "bin/yaml-cli"
  8412. ],
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-master": "3.x-dev"
  8417. }
  8418. },
  8419. "autoload": {
  8420. "psr-4": {
  8421. "Grasmash\\YamlCli\\": "src/"
  8422. }
  8423. },
  8424. "notification-url": "https://packagist.org/downloads/",
  8425. "license": [
  8426. "MIT"
  8427. ],
  8428. "authors": [
  8429. {
  8430. "name": "Matthew Grasmick"
  8431. }
  8432. ],
  8433. "description": "A command line tool for reading and manipulating yaml files.",
  8434. "support": {
  8435. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8436. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8437. },
  8438. "time": "2024-04-23T02:10:57+00:00"
  8439. },
  8440. {
  8441. "name": "guzzlehttp/guzzle",
  8442. "version": "7.10.0",
  8443. "source": {
  8444. "type": "git",
  8445. "url": "https://github.com/guzzle/guzzle.git",
  8446. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  8447. },
  8448. "dist": {
  8449. "type": "zip",
  8450. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8451. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8452. "shasum": ""
  8453. },
  8454. "require": {
  8455. "ext-json": "*",
  8456. "guzzlehttp/promises": "^2.3",
  8457. "guzzlehttp/psr7": "^2.8",
  8458. "php": "^7.2.5 || ^8.0",
  8459. "psr/http-client": "^1.0",
  8460. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8461. },
  8462. "provide": {
  8463. "psr/http-client-implementation": "1.0"
  8464. },
  8465. "require-dev": {
  8466. "bamarni/composer-bin-plugin": "^1.8.2",
  8467. "ext-curl": "*",
  8468. "guzzle/client-integration-tests": "3.0.2",
  8469. "php-http/message-factory": "^1.1",
  8470. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8471. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8472. },
  8473. "suggest": {
  8474. "ext-curl": "Required for CURL handler support",
  8475. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8476. "psr/log": "Required for using the Log middleware"
  8477. },
  8478. "type": "library",
  8479. "extra": {
  8480. "bamarni-bin": {
  8481. "bin-links": true,
  8482. "forward-command": false
  8483. }
  8484. },
  8485. "autoload": {
  8486. "files": [
  8487. "src/functions_include.php"
  8488. ],
  8489. "psr-4": {
  8490. "GuzzleHttp\\": "src/"
  8491. }
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Graham Campbell",
  8500. "email": "hello@gjcampbell.co.uk",
  8501. "homepage": "https://github.com/GrahamCampbell"
  8502. },
  8503. {
  8504. "name": "Michael Dowling",
  8505. "email": "mtdowling@gmail.com",
  8506. "homepage": "https://github.com/mtdowling"
  8507. },
  8508. {
  8509. "name": "Jeremy Lindblom",
  8510. "email": "jeremeamia@gmail.com",
  8511. "homepage": "https://github.com/jeremeamia"
  8512. },
  8513. {
  8514. "name": "George Mponos",
  8515. "email": "gmponos@gmail.com",
  8516. "homepage": "https://github.com/gmponos"
  8517. },
  8518. {
  8519. "name": "Tobias Nyholm",
  8520. "email": "tobias.nyholm@gmail.com",
  8521. "homepage": "https://github.com/Nyholm"
  8522. },
  8523. {
  8524. "name": "Márk Sági-Kazár",
  8525. "email": "mark.sagikazar@gmail.com",
  8526. "homepage": "https://github.com/sagikazarmark"
  8527. },
  8528. {
  8529. "name": "Tobias Schultze",
  8530. "email": "webmaster@tubo-world.de",
  8531. "homepage": "https://github.com/Tobion"
  8532. }
  8533. ],
  8534. "description": "Guzzle is a PHP HTTP client library",
  8535. "keywords": [
  8536. "client",
  8537. "curl",
  8538. "framework",
  8539. "http",
  8540. "http client",
  8541. "psr-18",
  8542. "psr-7",
  8543. "rest",
  8544. "web service"
  8545. ],
  8546. "support": {
  8547. "issues": "https://github.com/guzzle/guzzle/issues",
  8548. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  8549. },
  8550. "funding": [
  8551. {
  8552. "url": "https://github.com/GrahamCampbell",
  8553. "type": "github"
  8554. },
  8555. {
  8556. "url": "https://github.com/Nyholm",
  8557. "type": "github"
  8558. },
  8559. {
  8560. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8561. "type": "tidelift"
  8562. }
  8563. ],
  8564. "time": "2025-08-23T22:36:01+00:00"
  8565. },
  8566. {
  8567. "name": "guzzlehttp/promises",
  8568. "version": "2.3.0",
  8569. "source": {
  8570. "type": "git",
  8571. "url": "https://github.com/guzzle/promises.git",
  8572. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  8573. },
  8574. "dist": {
  8575. "type": "zip",
  8576. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  8577. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  8578. "shasum": ""
  8579. },
  8580. "require": {
  8581. "php": "^7.2.5 || ^8.0"
  8582. },
  8583. "require-dev": {
  8584. "bamarni/composer-bin-plugin": "^1.8.2",
  8585. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8586. },
  8587. "type": "library",
  8588. "extra": {
  8589. "bamarni-bin": {
  8590. "bin-links": true,
  8591. "forward-command": false
  8592. }
  8593. },
  8594. "autoload": {
  8595. "psr-4": {
  8596. "GuzzleHttp\\Promise\\": "src/"
  8597. }
  8598. },
  8599. "notification-url": "https://packagist.org/downloads/",
  8600. "license": [
  8601. "MIT"
  8602. ],
  8603. "authors": [
  8604. {
  8605. "name": "Graham Campbell",
  8606. "email": "hello@gjcampbell.co.uk",
  8607. "homepage": "https://github.com/GrahamCampbell"
  8608. },
  8609. {
  8610. "name": "Michael Dowling",
  8611. "email": "mtdowling@gmail.com",
  8612. "homepage": "https://github.com/mtdowling"
  8613. },
  8614. {
  8615. "name": "Tobias Nyholm",
  8616. "email": "tobias.nyholm@gmail.com",
  8617. "homepage": "https://github.com/Nyholm"
  8618. },
  8619. {
  8620. "name": "Tobias Schultze",
  8621. "email": "webmaster@tubo-world.de",
  8622. "homepage": "https://github.com/Tobion"
  8623. }
  8624. ],
  8625. "description": "Guzzle promises library",
  8626. "keywords": [
  8627. "promise"
  8628. ],
  8629. "support": {
  8630. "issues": "https://github.com/guzzle/promises/issues",
  8631. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  8632. },
  8633. "funding": [
  8634. {
  8635. "url": "https://github.com/GrahamCampbell",
  8636. "type": "github"
  8637. },
  8638. {
  8639. "url": "https://github.com/Nyholm",
  8640. "type": "github"
  8641. },
  8642. {
  8643. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8644. "type": "tidelift"
  8645. }
  8646. ],
  8647. "time": "2025-08-22T14:34:08+00:00"
  8648. },
  8649. {
  8650. "name": "guzzlehttp/psr7",
  8651. "version": "2.8.0",
  8652. "source": {
  8653. "type": "git",
  8654. "url": "https://github.com/guzzle/psr7.git",
  8655. "reference": "21dc724a0583619cd1652f673303492272778051"
  8656. },
  8657. "dist": {
  8658. "type": "zip",
  8659. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  8660. "reference": "21dc724a0583619cd1652f673303492272778051",
  8661. "shasum": ""
  8662. },
  8663. "require": {
  8664. "php": "^7.2.5 || ^8.0",
  8665. "psr/http-factory": "^1.0",
  8666. "psr/http-message": "^1.1 || ^2.0",
  8667. "ralouphie/getallheaders": "^3.0"
  8668. },
  8669. "provide": {
  8670. "psr/http-factory-implementation": "1.0",
  8671. "psr/http-message-implementation": "1.0"
  8672. },
  8673. "require-dev": {
  8674. "bamarni/composer-bin-plugin": "^1.8.2",
  8675. "http-interop/http-factory-tests": "0.9.0",
  8676. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8677. },
  8678. "suggest": {
  8679. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8680. },
  8681. "type": "library",
  8682. "extra": {
  8683. "bamarni-bin": {
  8684. "bin-links": true,
  8685. "forward-command": false
  8686. }
  8687. },
  8688. "autoload": {
  8689. "psr-4": {
  8690. "GuzzleHttp\\Psr7\\": "src/"
  8691. }
  8692. },
  8693. "notification-url": "https://packagist.org/downloads/",
  8694. "license": [
  8695. "MIT"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Graham Campbell",
  8700. "email": "hello@gjcampbell.co.uk",
  8701. "homepage": "https://github.com/GrahamCampbell"
  8702. },
  8703. {
  8704. "name": "Michael Dowling",
  8705. "email": "mtdowling@gmail.com",
  8706. "homepage": "https://github.com/mtdowling"
  8707. },
  8708. {
  8709. "name": "George Mponos",
  8710. "email": "gmponos@gmail.com",
  8711. "homepage": "https://github.com/gmponos"
  8712. },
  8713. {
  8714. "name": "Tobias Nyholm",
  8715. "email": "tobias.nyholm@gmail.com",
  8716. "homepage": "https://github.com/Nyholm"
  8717. },
  8718. {
  8719. "name": "Márk Sági-Kazár",
  8720. "email": "mark.sagikazar@gmail.com",
  8721. "homepage": "https://github.com/sagikazarmark"
  8722. },
  8723. {
  8724. "name": "Tobias Schultze",
  8725. "email": "webmaster@tubo-world.de",
  8726. "homepage": "https://github.com/Tobion"
  8727. },
  8728. {
  8729. "name": "Márk Sági-Kazár",
  8730. "email": "mark.sagikazar@gmail.com",
  8731. "homepage": "https://sagikazarmark.hu"
  8732. }
  8733. ],
  8734. "description": "PSR-7 message implementation that also provides common utility methods",
  8735. "keywords": [
  8736. "http",
  8737. "message",
  8738. "psr-7",
  8739. "request",
  8740. "response",
  8741. "stream",
  8742. "uri",
  8743. "url"
  8744. ],
  8745. "support": {
  8746. "issues": "https://github.com/guzzle/psr7/issues",
  8747. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  8748. },
  8749. "funding": [
  8750. {
  8751. "url": "https://github.com/GrahamCampbell",
  8752. "type": "github"
  8753. },
  8754. {
  8755. "url": "https://github.com/Nyholm",
  8756. "type": "github"
  8757. },
  8758. {
  8759. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8760. "type": "tidelift"
  8761. }
  8762. ],
  8763. "time": "2025-08-23T21:21:41+00:00"
  8764. },
  8765. {
  8766. "name": "itamair/geophp",
  8767. "version": "1.7",
  8768. "source": {
  8769. "type": "git",
  8770. "url": "https://github.com/itamair/geoPHP.git",
  8771. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956"
  8772. },
  8773. "dist": {
  8774. "type": "zip",
  8775. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8776. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8777. "shasum": ""
  8778. },
  8779. "require-dev": {
  8780. "phpunit/phpunit": "4.1.* || 9.5.*"
  8781. },
  8782. "type": "library",
  8783. "autoload": {
  8784. "classmap": [
  8785. "geoPHP.inc"
  8786. ]
  8787. },
  8788. "notification-url": "https://packagist.org/downloads/",
  8789. "license": [
  8790. "GPL-2.0+"
  8791. ],
  8792. "authors": [
  8793. {
  8794. "name": "Italo Mairo",
  8795. "homepage": "https://www.linkedin.com/in/italomairo/",
  8796. "role": "Maintanier of this Library Repo"
  8797. },
  8798. {
  8799. "name": "Patrick Hayes",
  8800. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8801. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8802. }
  8803. ],
  8804. "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.",
  8805. "homepage": "https://github.com/itamair/geoPHP",
  8806. "support": {
  8807. "source": "https://github.com/itamair/geoPHP/tree/1.7"
  8808. },
  8809. "time": "2025-05-31T05:12:53+00:00"
  8810. },
  8811. {
  8812. "name": "kint-php/kint",
  8813. "version": "3.3",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/kint-php/kint.git",
  8817. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8822. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8823. "shasum": ""
  8824. },
  8825. "require": {
  8826. "php": ">=5.3.6"
  8827. },
  8828. "require-dev": {
  8829. "friendsofphp/php-cs-fixer": "^2.0",
  8830. "phpunit/phpunit": "^4.0",
  8831. "seld/phar-utils": "^1.0",
  8832. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8833. "vimeo/psalm": "^3.0"
  8834. },
  8835. "suggest": {
  8836. "ext-ctype": "Simple data type tests",
  8837. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8838. "ext-mbstring": "Provides string encoding detection",
  8839. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8840. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8841. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8842. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8843. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8844. },
  8845. "type": "library",
  8846. "autoload": {
  8847. "files": [
  8848. "init.php"
  8849. ],
  8850. "psr-4": {
  8851. "Kint\\": "src/"
  8852. }
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "MIT"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "Jonathan Vollebregt",
  8861. "homepage": "https://github.com/jnvsor"
  8862. },
  8863. {
  8864. "name": "Rokas Šleinius",
  8865. "homepage": "https://github.com/raveren"
  8866. },
  8867. {
  8868. "name": "Contributors",
  8869. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8870. }
  8871. ],
  8872. "description": "Kint - debugging tool for PHP developers",
  8873. "homepage": "https://kint-php.github.io/kint/",
  8874. "keywords": [
  8875. "debug",
  8876. "kint",
  8877. "php"
  8878. ],
  8879. "support": {
  8880. "issues": "https://github.com/kint-php/kint/issues",
  8881. "source": "https://github.com/kint-php/kint/tree/master"
  8882. },
  8883. "time": "2019-10-17T18:05:24+00:00"
  8884. },
  8885. {
  8886. "name": "laravel/prompts",
  8887. "version": "v0.3.13",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/laravel/prompts.git",
  8891. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d",
  8896. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d",
  8897. "shasum": ""
  8898. },
  8899. "require": {
  8900. "composer-runtime-api": "^2.2",
  8901. "ext-mbstring": "*",
  8902. "php": "^8.1",
  8903. "symfony/console": "^6.2|^7.0|^8.0"
  8904. },
  8905. "conflict": {
  8906. "illuminate/console": ">=10.17.0 <10.25.0",
  8907. "laravel/framework": ">=10.17.0 <10.25.0"
  8908. },
  8909. "require-dev": {
  8910. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  8911. "mockery/mockery": "^1.5",
  8912. "pestphp/pest": "^2.3|^3.4|^4.0",
  8913. "phpstan/phpstan": "^1.12.28",
  8914. "phpstan/phpstan-mockery": "^1.1.3"
  8915. },
  8916. "suggest": {
  8917. "ext-pcntl": "Required for the spinner to be animated."
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "branch-alias": {
  8922. "dev-main": "0.3.x-dev"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "files": [
  8927. "src/helpers.php"
  8928. ],
  8929. "psr-4": {
  8930. "Laravel\\Prompts\\": "src/"
  8931. }
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "MIT"
  8936. ],
  8937. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  8938. "support": {
  8939. "issues": "https://github.com/laravel/prompts/issues",
  8940. "source": "https://github.com/laravel/prompts/tree/v0.3.13"
  8941. },
  8942. "time": "2026-02-06T12:17:10+00:00"
  8943. },
  8944. {
  8945. "name": "league/container",
  8946. "version": "4.2.5",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/thephpleague/container.git",
  8950. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8955. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8956. "shasum": ""
  8957. },
  8958. "require": {
  8959. "php": "^7.2 || ^8.0",
  8960. "psr/container": "^1.1 || ^2.0"
  8961. },
  8962. "provide": {
  8963. "psr/container-implementation": "^1.0"
  8964. },
  8965. "replace": {
  8966. "orno/di": "~2.0"
  8967. },
  8968. "require-dev": {
  8969. "nette/php-generator": "^3.4",
  8970. "nikic/php-parser": "^4.10",
  8971. "phpstan/phpstan": "^0.12.47",
  8972. "phpunit/phpunit": "^8.5.17",
  8973. "roave/security-advisories": "dev-latest",
  8974. "scrutinizer/ocular": "^1.8",
  8975. "squizlabs/php_codesniffer": "^3.6"
  8976. },
  8977. "type": "library",
  8978. "extra": {
  8979. "branch-alias": {
  8980. "dev-1.x": "1.x-dev",
  8981. "dev-2.x": "2.x-dev",
  8982. "dev-3.x": "3.x-dev",
  8983. "dev-4.x": "4.x-dev",
  8984. "dev-master": "4.x-dev"
  8985. }
  8986. },
  8987. "autoload": {
  8988. "psr-4": {
  8989. "League\\Container\\": "src"
  8990. }
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "MIT"
  8995. ],
  8996. "authors": [
  8997. {
  8998. "name": "Phil Bennett",
  8999. "email": "mail@philbennett.co.uk",
  9000. "role": "Developer"
  9001. }
  9002. ],
  9003. "description": "A fast and intuitive dependency injection container.",
  9004. "homepage": "https://github.com/thephpleague/container",
  9005. "keywords": [
  9006. "container",
  9007. "dependency",
  9008. "di",
  9009. "injection",
  9010. "league",
  9011. "provider",
  9012. "service"
  9013. ],
  9014. "support": {
  9015. "issues": "https://github.com/thephpleague/container/issues",
  9016. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9017. },
  9018. "funding": [
  9019. {
  9020. "url": "https://github.com/philipobenito",
  9021. "type": "github"
  9022. }
  9023. ],
  9024. "time": "2025-05-20T12:55:37+00:00"
  9025. },
  9026. {
  9027. "name": "masterminds/html5",
  9028. "version": "2.10.0",
  9029. "source": {
  9030. "type": "git",
  9031. "url": "https://github.com/Masterminds/html5-php.git",
  9032. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  9033. },
  9034. "dist": {
  9035. "type": "zip",
  9036. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  9037. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  9038. "shasum": ""
  9039. },
  9040. "require": {
  9041. "ext-dom": "*",
  9042. "php": ">=5.3.0"
  9043. },
  9044. "require-dev": {
  9045. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9046. },
  9047. "type": "library",
  9048. "extra": {
  9049. "branch-alias": {
  9050. "dev-master": "2.7-dev"
  9051. }
  9052. },
  9053. "autoload": {
  9054. "psr-4": {
  9055. "Masterminds\\": "src"
  9056. }
  9057. },
  9058. "notification-url": "https://packagist.org/downloads/",
  9059. "license": [
  9060. "MIT"
  9061. ],
  9062. "authors": [
  9063. {
  9064. "name": "Matt Butcher",
  9065. "email": "technosophos@gmail.com"
  9066. },
  9067. {
  9068. "name": "Matt Farina",
  9069. "email": "matt@mattfarina.com"
  9070. },
  9071. {
  9072. "name": "Asmir Mustafic",
  9073. "email": "goetas@gmail.com"
  9074. }
  9075. ],
  9076. "description": "An HTML5 parser and serializer.",
  9077. "homepage": "http://masterminds.github.io/html5-php",
  9078. "keywords": [
  9079. "HTML5",
  9080. "dom",
  9081. "html",
  9082. "parser",
  9083. "querypath",
  9084. "serializer",
  9085. "xml"
  9086. ],
  9087. "support": {
  9088. "issues": "https://github.com/Masterminds/html5-php/issues",
  9089. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  9090. },
  9091. "time": "2025-07-25T09:04:22+00:00"
  9092. },
  9093. {
  9094. "name": "mck89/peast",
  9095. "version": "v1.17.4",
  9096. "source": {
  9097. "type": "git",
  9098. "url": "https://github.com/mck89/peast.git",
  9099. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d"
  9100. },
  9101. "dist": {
  9102. "type": "zip",
  9103. "url": "https://api.github.com/repos/mck89/peast/zipball/c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9104. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9105. "shasum": ""
  9106. },
  9107. "require": {
  9108. "ext-mbstring": "*",
  9109. "php": ">=5.4.0"
  9110. },
  9111. "require-dev": {
  9112. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9113. },
  9114. "type": "library",
  9115. "extra": {
  9116. "branch-alias": {
  9117. "dev-master": "1.17.4-dev"
  9118. }
  9119. },
  9120. "autoload": {
  9121. "psr-4": {
  9122. "Peast\\": "lib/Peast/"
  9123. }
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "BSD-3-Clause"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Marco Marchiò",
  9132. "email": "marco.mm89@gmail.com"
  9133. }
  9134. ],
  9135. "description": "Peast is PHP library that generates AST for JavaScript code",
  9136. "support": {
  9137. "issues": "https://github.com/mck89/peast/issues",
  9138. "source": "https://github.com/mck89/peast/tree/v1.17.4"
  9139. },
  9140. "time": "2025-10-10T12:53:17+00:00"
  9141. },
  9142. {
  9143. "name": "mglaman/phpstan-drupal",
  9144. "version": "2.0.7",
  9145. "source": {
  9146. "type": "git",
  9147. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9148. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e"
  9149. },
  9150. "dist": {
  9151. "type": "zip",
  9152. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e",
  9153. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e",
  9154. "shasum": ""
  9155. },
  9156. "require": {
  9157. "php": "^8.1",
  9158. "phpstan/phpstan": "^2.1",
  9159. "phpstan/phpstan-deprecation-rules": "^2.0",
  9160. "symfony/finder": "^6.2 || ^7.0",
  9161. "symfony/yaml": "^6.2 || ^7.0",
  9162. "webflo/drupal-finder": "^1.3.1"
  9163. },
  9164. "require-dev": {
  9165. "behat/mink": "^1.10",
  9166. "composer/installers": "^1.9",
  9167. "drupal/core-recommended": "^10",
  9168. "drush/drush": "^11 || ^12 || ^13",
  9169. "phpstan/extension-installer": "^1.4.3",
  9170. "phpstan/phpstan-strict-rules": "^2.0",
  9171. "phpunit/phpunit": "^9 || ^10 || ^11",
  9172. "slevomat/coding-standard": "^8.6",
  9173. "squizlabs/php_codesniffer": "^3.7",
  9174. "symfony/phpunit-bridge": "^6.2 || ^7.0"
  9175. },
  9176. "suggest": {
  9177. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9178. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9179. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9180. },
  9181. "type": "phpstan-extension",
  9182. "extra": {
  9183. "phpstan": {
  9184. "includes": [
  9185. "extension.neon",
  9186. "rules.neon"
  9187. ]
  9188. },
  9189. "installer-paths": {
  9190. "tests/fixtures/drupal/core": [
  9191. "type:drupal-core"
  9192. ],
  9193. "tests/fixtures/drupal/libraries/{$name}": [
  9194. "type:drupal-library"
  9195. ],
  9196. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9197. "type:drupal-theme"
  9198. ],
  9199. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9200. "type:drupal-module"
  9201. ],
  9202. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9203. "type:drupal-profile"
  9204. ]
  9205. }
  9206. },
  9207. "autoload": {
  9208. "psr-4": {
  9209. "mglaman\\PHPStanDrupal\\": "src/"
  9210. }
  9211. },
  9212. "notification-url": "https://packagist.org/downloads/",
  9213. "license": [
  9214. "MIT"
  9215. ],
  9216. "authors": [
  9217. {
  9218. "name": "Matt Glaman",
  9219. "email": "nmd.matt@gmail.com"
  9220. }
  9221. ],
  9222. "description": "Drupal extension and rules for PHPStan",
  9223. "support": {
  9224. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9225. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.7"
  9226. },
  9227. "funding": [
  9228. {
  9229. "url": "https://github.com/mglaman",
  9230. "type": "github"
  9231. },
  9232. {
  9233. "url": "https://opencollective.com/phpstan-drupal",
  9234. "type": "open_collective"
  9235. },
  9236. {
  9237. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9238. "type": "tidelift"
  9239. }
  9240. ],
  9241. "time": "2025-05-22T18:06:14+00:00"
  9242. },
  9243. {
  9244. "name": "nikic/php-parser",
  9245. "version": "v5.7.0",
  9246. "source": {
  9247. "type": "git",
  9248. "url": "https://github.com/nikic/PHP-Parser.git",
  9249. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  9250. },
  9251. "dist": {
  9252. "type": "zip",
  9253. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9254. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9255. "shasum": ""
  9256. },
  9257. "require": {
  9258. "ext-ctype": "*",
  9259. "ext-json": "*",
  9260. "ext-tokenizer": "*",
  9261. "php": ">=7.4"
  9262. },
  9263. "require-dev": {
  9264. "ircmaxell/php-yacc": "^0.0.7",
  9265. "phpunit/phpunit": "^9.0"
  9266. },
  9267. "bin": [
  9268. "bin/php-parse"
  9269. ],
  9270. "type": "library",
  9271. "extra": {
  9272. "branch-alias": {
  9273. "dev-master": "5.x-dev"
  9274. }
  9275. },
  9276. "autoload": {
  9277. "psr-4": {
  9278. "PhpParser\\": "lib/PhpParser"
  9279. }
  9280. },
  9281. "notification-url": "https://packagist.org/downloads/",
  9282. "license": [
  9283. "BSD-3-Clause"
  9284. ],
  9285. "authors": [
  9286. {
  9287. "name": "Nikita Popov"
  9288. }
  9289. ],
  9290. "description": "A PHP parser written in PHP",
  9291. "keywords": [
  9292. "parser",
  9293. "php"
  9294. ],
  9295. "support": {
  9296. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9297. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  9298. },
  9299. "time": "2025-12-06T11:56:16+00:00"
  9300. },
  9301. {
  9302. "name": "pear/archive_tar",
  9303. "version": "1.6.0",
  9304. "source": {
  9305. "type": "git",
  9306. "url": "https://github.com/pear/Archive_Tar.git",
  9307. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  9308. },
  9309. "dist": {
  9310. "type": "zip",
  9311. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9312. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9313. "shasum": ""
  9314. },
  9315. "require": {
  9316. "pear/pear-core-minimal": "^1.10.0alpha2",
  9317. "php": ">=5.4.0"
  9318. },
  9319. "require-dev": {
  9320. "phpunit/phpunit": "*"
  9321. },
  9322. "suggest": {
  9323. "ext-bz2": "Bz2 compression support.",
  9324. "ext-xz": "Lzma2 compression support.",
  9325. "ext-zlib": "Gzip compression support."
  9326. },
  9327. "type": "library",
  9328. "extra": {
  9329. "branch-alias": {
  9330. "dev-master": "1.4.x-dev"
  9331. }
  9332. },
  9333. "autoload": {
  9334. "psr-0": {
  9335. "Archive_Tar": ""
  9336. }
  9337. },
  9338. "notification-url": "https://packagist.org/downloads/",
  9339. "include-path": [
  9340. "./"
  9341. ],
  9342. "license": [
  9343. "BSD-2-Clause"
  9344. ],
  9345. "authors": [
  9346. {
  9347. "name": "Vincent Blavet",
  9348. "email": "vincent@phpconcept.net"
  9349. },
  9350. {
  9351. "name": "Greg Beaver",
  9352. "email": "greg@chiaraquartet.net"
  9353. },
  9354. {
  9355. "name": "Michiel Rook",
  9356. "email": "mrook@php.net"
  9357. }
  9358. ],
  9359. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9360. "homepage": "https://github.com/pear/Archive_Tar",
  9361. "keywords": [
  9362. "archive",
  9363. "tar"
  9364. ],
  9365. "support": {
  9366. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9367. "source": "https://github.com/pear/Archive_Tar"
  9368. },
  9369. "time": "2025-07-19T14:49:16+00:00"
  9370. },
  9371. {
  9372. "name": "pear/console_getopt",
  9373. "version": "v1.4.3",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/pear/Console_Getopt.git",
  9377. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9382. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9383. "shasum": ""
  9384. },
  9385. "type": "library",
  9386. "autoload": {
  9387. "psr-0": {
  9388. "Console": "./"
  9389. }
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "include-path": [
  9393. "./"
  9394. ],
  9395. "license": [
  9396. "BSD-2-Clause"
  9397. ],
  9398. "authors": [
  9399. {
  9400. "name": "Andrei Zmievski",
  9401. "email": "andrei@php.net",
  9402. "role": "Lead"
  9403. },
  9404. {
  9405. "name": "Stig Bakken",
  9406. "email": "stig@php.net",
  9407. "role": "Developer"
  9408. },
  9409. {
  9410. "name": "Greg Beaver",
  9411. "email": "cellog@php.net",
  9412. "role": "Helper"
  9413. }
  9414. ],
  9415. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9416. "support": {
  9417. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9418. "source": "https://github.com/pear/Console_Getopt"
  9419. },
  9420. "abandoned": true,
  9421. "time": "2019-11-20T18:27:48+00:00"
  9422. },
  9423. {
  9424. "name": "pear/pear-core-minimal",
  9425. "version": "v1.10.18",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/pear/pear-core-minimal.git",
  9429. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9434. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "pear/console_getopt": "~1.4",
  9439. "pear/pear_exception": "~1.0",
  9440. "php": ">=5.4"
  9441. },
  9442. "replace": {
  9443. "rsky/pear-core-min": "self.version"
  9444. },
  9445. "type": "library",
  9446. "autoload": {
  9447. "classmap": [
  9448. "src/"
  9449. ]
  9450. },
  9451. "notification-url": "https://packagist.org/downloads/",
  9452. "include-path": [
  9453. "src/"
  9454. ],
  9455. "license": [
  9456. "BSD-3-Clause"
  9457. ],
  9458. "authors": [
  9459. {
  9460. "name": "Christian Weiske",
  9461. "email": "cweiske@php.net",
  9462. "role": "Lead"
  9463. }
  9464. ],
  9465. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9466. "support": {
  9467. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9468. "source": "https://github.com/pear/pear-core-minimal"
  9469. },
  9470. "time": "2025-12-14T20:37:07+00:00"
  9471. },
  9472. {
  9473. "name": "pear/pear_exception",
  9474. "version": "v1.0.2",
  9475. "source": {
  9476. "type": "git",
  9477. "url": "https://github.com/pear/PEAR_Exception.git",
  9478. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9479. },
  9480. "dist": {
  9481. "type": "zip",
  9482. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9483. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9484. "shasum": ""
  9485. },
  9486. "require": {
  9487. "php": ">=5.2.0"
  9488. },
  9489. "require-dev": {
  9490. "phpunit/phpunit": "<9"
  9491. },
  9492. "type": "class",
  9493. "extra": {
  9494. "branch-alias": {
  9495. "dev-master": "1.0.x-dev"
  9496. }
  9497. },
  9498. "autoload": {
  9499. "classmap": [
  9500. "PEAR/"
  9501. ]
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "include-path": [
  9505. "."
  9506. ],
  9507. "license": [
  9508. "BSD-2-Clause"
  9509. ],
  9510. "authors": [
  9511. {
  9512. "name": "Helgi Thormar",
  9513. "email": "dufuz@php.net"
  9514. },
  9515. {
  9516. "name": "Greg Beaver",
  9517. "email": "cellog@php.net"
  9518. }
  9519. ],
  9520. "description": "The PEAR Exception base class.",
  9521. "homepage": "https://github.com/pear/PEAR_Exception",
  9522. "keywords": [
  9523. "exception"
  9524. ],
  9525. "support": {
  9526. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9527. "source": "https://github.com/pear/PEAR_Exception"
  9528. },
  9529. "time": "2021-03-21T15:43:46+00:00"
  9530. },
  9531. {
  9532. "name": "phootwork/collection",
  9533. "version": "v3.2.3",
  9534. "source": {
  9535. "type": "git",
  9536. "url": "https://github.com/phootwork/collection.git",
  9537. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9538. },
  9539. "dist": {
  9540. "type": "zip",
  9541. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9542. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9543. "shasum": ""
  9544. },
  9545. "require": {
  9546. "phootwork/lang": "^3.0",
  9547. "php": ">=8.0"
  9548. },
  9549. "type": "library",
  9550. "autoload": {
  9551. "psr-4": {
  9552. "phootwork\\collection\\": ""
  9553. }
  9554. },
  9555. "notification-url": "https://packagist.org/downloads/",
  9556. "license": [
  9557. "MIT"
  9558. ],
  9559. "authors": [
  9560. {
  9561. "name": "Thomas Gossmann",
  9562. "homepage": "http://gos.si"
  9563. }
  9564. ],
  9565. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9566. "homepage": "https://phootwork.github.io/collection/",
  9567. "keywords": [
  9568. "Array object",
  9569. "Text object",
  9570. "collection",
  9571. "collections",
  9572. "json",
  9573. "list",
  9574. "map",
  9575. "queue",
  9576. "set",
  9577. "stack",
  9578. "xml"
  9579. ],
  9580. "support": {
  9581. "issues": "https://github.com/phootwork/phootwork/issues",
  9582. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9583. },
  9584. "time": "2022-08-27T12:51:24+00:00"
  9585. },
  9586. {
  9587. "name": "phootwork/lang",
  9588. "version": "v3.2.3",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/phootwork/lang.git",
  9592. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9597. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=8.0",
  9602. "symfony/polyfill-mbstring": "^1.12",
  9603. "symfony/polyfill-php81": "^1.22"
  9604. },
  9605. "type": "library",
  9606. "autoload": {
  9607. "psr-4": {
  9608. "phootwork\\lang\\": ""
  9609. }
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "MIT"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Thomas Gossmann",
  9618. "homepage": "http://gos.si"
  9619. }
  9620. ],
  9621. "description": "Missing PHP language constructs",
  9622. "homepage": "https://phootwork.github.io/lang/",
  9623. "keywords": [
  9624. "array",
  9625. "comparator",
  9626. "comparison",
  9627. "string"
  9628. ],
  9629. "support": {
  9630. "issues": "https://github.com/phootwork/phootwork/issues",
  9631. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9632. },
  9633. "time": "2024-10-03T13:43:19+00:00"
  9634. },
  9635. {
  9636. "name": "php-http/discovery",
  9637. "version": "1.20.0",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/php-http/discovery.git",
  9641. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9646. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "composer-plugin-api": "^1.0|^2.0",
  9651. "php": "^7.1 || ^8.0"
  9652. },
  9653. "conflict": {
  9654. "nyholm/psr7": "<1.0",
  9655. "zendframework/zend-diactoros": "*"
  9656. },
  9657. "provide": {
  9658. "php-http/async-client-implementation": "*",
  9659. "php-http/client-implementation": "*",
  9660. "psr/http-client-implementation": "*",
  9661. "psr/http-factory-implementation": "*",
  9662. "psr/http-message-implementation": "*"
  9663. },
  9664. "require-dev": {
  9665. "composer/composer": "^1.0.2|^2.0",
  9666. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9667. "php-http/httplug": "^1.0 || ^2.0",
  9668. "php-http/message-factory": "^1.0",
  9669. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9670. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9671. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9672. },
  9673. "type": "composer-plugin",
  9674. "extra": {
  9675. "class": "Http\\Discovery\\Composer\\Plugin",
  9676. "plugin-optional": true
  9677. },
  9678. "autoload": {
  9679. "psr-4": {
  9680. "Http\\Discovery\\": "src/"
  9681. },
  9682. "exclude-from-classmap": [
  9683. "src/Composer/Plugin.php"
  9684. ]
  9685. },
  9686. "notification-url": "https://packagist.org/downloads/",
  9687. "license": [
  9688. "MIT"
  9689. ],
  9690. "authors": [
  9691. {
  9692. "name": "Márk Sági-Kazár",
  9693. "email": "mark.sagikazar@gmail.com"
  9694. }
  9695. ],
  9696. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9697. "homepage": "http://php-http.org",
  9698. "keywords": [
  9699. "adapter",
  9700. "client",
  9701. "discovery",
  9702. "factory",
  9703. "http",
  9704. "message",
  9705. "psr17",
  9706. "psr7"
  9707. ],
  9708. "support": {
  9709. "issues": "https://github.com/php-http/discovery/issues",
  9710. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9711. },
  9712. "time": "2024-10-02T11:20:13+00:00"
  9713. },
  9714. {
  9715. "name": "php-http/guzzle7-adapter",
  9716. "version": "1.1.0",
  9717. "source": {
  9718. "type": "git",
  9719. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9720. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9721. },
  9722. "dist": {
  9723. "type": "zip",
  9724. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9725. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9726. "shasum": ""
  9727. },
  9728. "require": {
  9729. "guzzlehttp/guzzle": "^7.0",
  9730. "php": "^7.3 | ^8.0",
  9731. "php-http/httplug": "^2.0",
  9732. "psr/http-client": "^1.0"
  9733. },
  9734. "provide": {
  9735. "php-http/async-client-implementation": "1.0",
  9736. "php-http/client-implementation": "1.0",
  9737. "psr/http-client-implementation": "1.0"
  9738. },
  9739. "require-dev": {
  9740. "php-http/client-integration-tests": "^3.0",
  9741. "php-http/message-factory": "^1.1",
  9742. "phpspec/prophecy-phpunit": "^2.0",
  9743. "phpunit/phpunit": "^8.0|^9.3"
  9744. },
  9745. "type": "library",
  9746. "autoload": {
  9747. "psr-4": {
  9748. "Http\\Adapter\\Guzzle7\\": "src/"
  9749. }
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "MIT"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Tobias Nyholm",
  9758. "email": "tobias.nyholm@gmail.com"
  9759. }
  9760. ],
  9761. "description": "Guzzle 7 HTTP Adapter",
  9762. "homepage": "http://httplug.io",
  9763. "keywords": [
  9764. "Guzzle",
  9765. "http"
  9766. ],
  9767. "support": {
  9768. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9769. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9770. },
  9771. "time": "2024-11-26T11:14:36+00:00"
  9772. },
  9773. {
  9774. "name": "php-http/httplug",
  9775. "version": "2.4.1",
  9776. "source": {
  9777. "type": "git",
  9778. "url": "https://github.com/php-http/httplug.git",
  9779. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9780. },
  9781. "dist": {
  9782. "type": "zip",
  9783. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9784. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9785. "shasum": ""
  9786. },
  9787. "require": {
  9788. "php": "^7.1 || ^8.0",
  9789. "php-http/promise": "^1.1",
  9790. "psr/http-client": "^1.0",
  9791. "psr/http-message": "^1.0 || ^2.0"
  9792. },
  9793. "require-dev": {
  9794. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9795. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9796. },
  9797. "type": "library",
  9798. "autoload": {
  9799. "psr-4": {
  9800. "Http\\Client\\": "src/"
  9801. }
  9802. },
  9803. "notification-url": "https://packagist.org/downloads/",
  9804. "license": [
  9805. "MIT"
  9806. ],
  9807. "authors": [
  9808. {
  9809. "name": "Eric GELOEN",
  9810. "email": "geloen.eric@gmail.com"
  9811. },
  9812. {
  9813. "name": "Márk Sági-Kazár",
  9814. "email": "mark.sagikazar@gmail.com",
  9815. "homepage": "https://sagikazarmark.hu"
  9816. }
  9817. ],
  9818. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9819. "homepage": "http://httplug.io",
  9820. "keywords": [
  9821. "client",
  9822. "http"
  9823. ],
  9824. "support": {
  9825. "issues": "https://github.com/php-http/httplug/issues",
  9826. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9827. },
  9828. "time": "2024-09-23T11:39:58+00:00"
  9829. },
  9830. {
  9831. "name": "php-http/message",
  9832. "version": "1.16.2",
  9833. "source": {
  9834. "type": "git",
  9835. "url": "https://github.com/php-http/message.git",
  9836. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9837. },
  9838. "dist": {
  9839. "type": "zip",
  9840. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9841. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9842. "shasum": ""
  9843. },
  9844. "require": {
  9845. "clue/stream-filter": "^1.5",
  9846. "php": "^7.2 || ^8.0",
  9847. "psr/http-message": "^1.1 || ^2.0"
  9848. },
  9849. "provide": {
  9850. "php-http/message-factory-implementation": "1.0"
  9851. },
  9852. "require-dev": {
  9853. "ergebnis/composer-normalize": "^2.6",
  9854. "ext-zlib": "*",
  9855. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9856. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9857. "php-http/message-factory": "^1.0.2",
  9858. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9859. "slim/slim": "^3.0"
  9860. },
  9861. "suggest": {
  9862. "ext-zlib": "Used with compressor/decompressor streams",
  9863. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9864. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9865. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9866. },
  9867. "type": "library",
  9868. "autoload": {
  9869. "files": [
  9870. "src/filters.php"
  9871. ],
  9872. "psr-4": {
  9873. "Http\\Message\\": "src/"
  9874. }
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "MIT"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Márk Sági-Kazár",
  9883. "email": "mark.sagikazar@gmail.com"
  9884. }
  9885. ],
  9886. "description": "HTTP Message related tools",
  9887. "homepage": "http://php-http.org",
  9888. "keywords": [
  9889. "http",
  9890. "message",
  9891. "psr-7"
  9892. ],
  9893. "support": {
  9894. "issues": "https://github.com/php-http/message/issues",
  9895. "source": "https://github.com/php-http/message/tree/1.16.2"
  9896. },
  9897. "time": "2024-10-02T11:34:13+00:00"
  9898. },
  9899. {
  9900. "name": "php-http/promise",
  9901. "version": "1.3.1",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/php-http/promise.git",
  9905. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9910. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9911. "shasum": ""
  9912. },
  9913. "require": {
  9914. "php": "^7.1 || ^8.0"
  9915. },
  9916. "require-dev": {
  9917. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9918. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9919. },
  9920. "type": "library",
  9921. "autoload": {
  9922. "psr-4": {
  9923. "Http\\Promise\\": "src/"
  9924. }
  9925. },
  9926. "notification-url": "https://packagist.org/downloads/",
  9927. "license": [
  9928. "MIT"
  9929. ],
  9930. "authors": [
  9931. {
  9932. "name": "Joel Wurtz",
  9933. "email": "joel.wurtz@gmail.com"
  9934. },
  9935. {
  9936. "name": "Márk Sági-Kazár",
  9937. "email": "mark.sagikazar@gmail.com"
  9938. }
  9939. ],
  9940. "description": "Promise used for asynchronous HTTP requests",
  9941. "homepage": "http://httplug.io",
  9942. "keywords": [
  9943. "promise"
  9944. ],
  9945. "support": {
  9946. "issues": "https://github.com/php-http/promise/issues",
  9947. "source": "https://github.com/php-http/promise/tree/1.3.1"
  9948. },
  9949. "time": "2024-03-15T13:55:21+00:00"
  9950. },
  9951. {
  9952. "name": "phpmailer/phpmailer",
  9953. "version": "v6.10.0",
  9954. "source": {
  9955. "type": "git",
  9956. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9957. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  9958. },
  9959. "dist": {
  9960. "type": "zip",
  9961. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9962. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9963. "shasum": ""
  9964. },
  9965. "require": {
  9966. "ext-ctype": "*",
  9967. "ext-filter": "*",
  9968. "ext-hash": "*",
  9969. "php": ">=5.5.0"
  9970. },
  9971. "require-dev": {
  9972. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9973. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9974. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9975. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9976. "phpcompatibility/php-compatibility": "^9.3.5",
  9977. "roave/security-advisories": "dev-latest",
  9978. "squizlabs/php_codesniffer": "^3.7.2",
  9979. "yoast/phpunit-polyfills": "^1.0.4"
  9980. },
  9981. "suggest": {
  9982. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  9983. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9984. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9985. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9986. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9987. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9988. "psr/log": "For optional PSR-3 debug logging",
  9989. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9990. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9991. },
  9992. "type": "library",
  9993. "autoload": {
  9994. "psr-4": {
  9995. "PHPMailer\\PHPMailer\\": "src/"
  9996. }
  9997. },
  9998. "notification-url": "https://packagist.org/downloads/",
  9999. "license": [
  10000. "LGPL-2.1-only"
  10001. ],
  10002. "authors": [
  10003. {
  10004. "name": "Marcus Bointon",
  10005. "email": "phpmailer@synchromedia.co.uk"
  10006. },
  10007. {
  10008. "name": "Jim Jagielski",
  10009. "email": "jimjag@gmail.com"
  10010. },
  10011. {
  10012. "name": "Andy Prevost",
  10013. "email": "codeworxtech@users.sourceforge.net"
  10014. },
  10015. {
  10016. "name": "Brent R. Matzelle"
  10017. }
  10018. ],
  10019. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10020. "support": {
  10021. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10022. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/Synchro",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2025-04-24T15:19:31+00:00"
  10031. },
  10032. {
  10033. "name": "phpowermove/docblock",
  10034. "version": "v4.0",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/phpowermove/docblock.git",
  10038. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10043. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "phootwork/collection": "^3.0",
  10048. "phootwork/lang": "^3.0",
  10049. "php": ">=8.0"
  10050. },
  10051. "require-dev": {
  10052. "phootwork/php-cs-fixer-config": "^0.4",
  10053. "phpunit/phpunit": "^9.0",
  10054. "psalm/phar": "^4.3"
  10055. },
  10056. "type": "library",
  10057. "autoload": {
  10058. "psr-4": {
  10059. "phpowermove\\docblock\\": "src/"
  10060. }
  10061. },
  10062. "notification-url": "https://packagist.org/downloads/",
  10063. "license": [
  10064. "MIT"
  10065. ],
  10066. "authors": [
  10067. {
  10068. "name": "Thomas Gossmann",
  10069. "homepage": "http://gos.si"
  10070. }
  10071. ],
  10072. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10073. "keywords": [
  10074. "docblock",
  10075. "generator",
  10076. "parser"
  10077. ],
  10078. "support": {
  10079. "issues": "https://github.com/phpowermove/docblock/issues",
  10080. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10081. },
  10082. "time": "2021-09-22T16:57:06+00:00"
  10083. },
  10084. {
  10085. "name": "phpstan/phpstan",
  10086. "version": "2.1.19",
  10087. "source": {
  10088. "type": "git",
  10089. "url": "https://github.com/phpstan/phpstan.git",
  10090. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf"
  10091. },
  10092. "dist": {
  10093. "type": "zip",
  10094. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf",
  10095. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf",
  10096. "shasum": ""
  10097. },
  10098. "require": {
  10099. "php": "^7.4|^8.0"
  10100. },
  10101. "conflict": {
  10102. "phpstan/phpstan-shim": "*"
  10103. },
  10104. "bin": [
  10105. "phpstan",
  10106. "phpstan.phar"
  10107. ],
  10108. "type": "library",
  10109. "autoload": {
  10110. "files": [
  10111. "bootstrap.php"
  10112. ]
  10113. },
  10114. "notification-url": "https://packagist.org/downloads/",
  10115. "license": [
  10116. "MIT"
  10117. ],
  10118. "description": "PHPStan - PHP Static Analysis Tool",
  10119. "keywords": [
  10120. "dev",
  10121. "static analysis"
  10122. ],
  10123. "support": {
  10124. "docs": "https://phpstan.org/user-guide/getting-started",
  10125. "forum": "https://github.com/phpstan/phpstan/discussions",
  10126. "issues": "https://github.com/phpstan/phpstan/issues",
  10127. "security": "https://github.com/phpstan/phpstan/security/policy",
  10128. "source": "https://github.com/phpstan/phpstan-src"
  10129. },
  10130. "funding": [
  10131. {
  10132. "url": "https://github.com/ondrejmirtes",
  10133. "type": "github"
  10134. },
  10135. {
  10136. "url": "https://github.com/phpstan",
  10137. "type": "github"
  10138. }
  10139. ],
  10140. "time": "2025-07-21T19:58:24+00:00"
  10141. },
  10142. {
  10143. "name": "phpstan/phpstan-deprecation-rules",
  10144. "version": "2.0.3",
  10145. "source": {
  10146. "type": "git",
  10147. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10148. "reference": "468e02c9176891cc901143da118f09dc9505fc2f"
  10149. },
  10150. "dist": {
  10151. "type": "zip",
  10152. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f",
  10153. "reference": "468e02c9176891cc901143da118f09dc9505fc2f",
  10154. "shasum": ""
  10155. },
  10156. "require": {
  10157. "php": "^7.4 || ^8.0",
  10158. "phpstan/phpstan": "^2.1.15"
  10159. },
  10160. "require-dev": {
  10161. "php-parallel-lint/php-parallel-lint": "^1.2",
  10162. "phpstan/phpstan-phpunit": "^2.0",
  10163. "phpunit/phpunit": "^9.6"
  10164. },
  10165. "type": "phpstan-extension",
  10166. "extra": {
  10167. "phpstan": {
  10168. "includes": [
  10169. "rules.neon"
  10170. ]
  10171. }
  10172. },
  10173. "autoload": {
  10174. "psr-4": {
  10175. "PHPStan\\": "src/"
  10176. }
  10177. },
  10178. "notification-url": "https://packagist.org/downloads/",
  10179. "license": [
  10180. "MIT"
  10181. ],
  10182. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10183. "support": {
  10184. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10185. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3"
  10186. },
  10187. "time": "2025-05-14T10:56:57+00:00"
  10188. },
  10189. {
  10190. "name": "politsin/jquery-ui-touch-punch",
  10191. "version": "1.0",
  10192. "source": {
  10193. "type": "git",
  10194. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10195. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10196. },
  10197. "dist": {
  10198. "type": "zip",
  10199. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10200. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10201. "shasum": ""
  10202. },
  10203. "type": "drupal-library",
  10204. "notification-url": "https://packagist.org/downloads/",
  10205. "license": [
  10206. "MIT"
  10207. ],
  10208. "authors": [
  10209. {
  10210. "name": "Dave Furfero",
  10211. "email": "furf@furf.com"
  10212. }
  10213. ],
  10214. "description": "Extension to jQuery UI for mobile touch event support.",
  10215. "homepage": "http://touchpunch.furf.com/",
  10216. "keywords": [
  10217. "gestures",
  10218. "mobile",
  10219. "touch"
  10220. ],
  10221. "support": {
  10222. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10223. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10224. },
  10225. "time": "2020-12-15T10:26:18+00:00"
  10226. },
  10227. {
  10228. "name": "psr/cache",
  10229. "version": "3.0.0",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/php-fig/cache.git",
  10233. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10238. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10239. "shasum": ""
  10240. },
  10241. "require": {
  10242. "php": ">=8.0.0"
  10243. },
  10244. "type": "library",
  10245. "extra": {
  10246. "branch-alias": {
  10247. "dev-master": "1.0.x-dev"
  10248. }
  10249. },
  10250. "autoload": {
  10251. "psr-4": {
  10252. "Psr\\Cache\\": "src/"
  10253. }
  10254. },
  10255. "notification-url": "https://packagist.org/downloads/",
  10256. "license": [
  10257. "MIT"
  10258. ],
  10259. "authors": [
  10260. {
  10261. "name": "PHP-FIG",
  10262. "homepage": "https://www.php-fig.org/"
  10263. }
  10264. ],
  10265. "description": "Common interface for caching libraries",
  10266. "keywords": [
  10267. "cache",
  10268. "psr",
  10269. "psr-6"
  10270. ],
  10271. "support": {
  10272. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10273. },
  10274. "time": "2021-02-03T23:26:27+00:00"
  10275. },
  10276. {
  10277. "name": "psr/container",
  10278. "version": "2.0.2",
  10279. "source": {
  10280. "type": "git",
  10281. "url": "https://github.com/php-fig/container.git",
  10282. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10283. },
  10284. "dist": {
  10285. "type": "zip",
  10286. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10287. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10288. "shasum": ""
  10289. },
  10290. "require": {
  10291. "php": ">=7.4.0"
  10292. },
  10293. "type": "library",
  10294. "extra": {
  10295. "branch-alias": {
  10296. "dev-master": "2.0.x-dev"
  10297. }
  10298. },
  10299. "autoload": {
  10300. "psr-4": {
  10301. "Psr\\Container\\": "src/"
  10302. }
  10303. },
  10304. "notification-url": "https://packagist.org/downloads/",
  10305. "license": [
  10306. "MIT"
  10307. ],
  10308. "authors": [
  10309. {
  10310. "name": "PHP-FIG",
  10311. "homepage": "https://www.php-fig.org/"
  10312. }
  10313. ],
  10314. "description": "Common Container Interface (PHP FIG PSR-11)",
  10315. "homepage": "https://github.com/php-fig/container",
  10316. "keywords": [
  10317. "PSR-11",
  10318. "container",
  10319. "container-interface",
  10320. "container-interop",
  10321. "psr"
  10322. ],
  10323. "support": {
  10324. "issues": "https://github.com/php-fig/container/issues",
  10325. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10326. },
  10327. "time": "2021-11-05T16:47:00+00:00"
  10328. },
  10329. {
  10330. "name": "psr/event-dispatcher",
  10331. "version": "1.0.0",
  10332. "source": {
  10333. "type": "git",
  10334. "url": "https://github.com/php-fig/event-dispatcher.git",
  10335. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10336. },
  10337. "dist": {
  10338. "type": "zip",
  10339. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10340. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10341. "shasum": ""
  10342. },
  10343. "require": {
  10344. "php": ">=7.2.0"
  10345. },
  10346. "type": "library",
  10347. "extra": {
  10348. "branch-alias": {
  10349. "dev-master": "1.0.x-dev"
  10350. }
  10351. },
  10352. "autoload": {
  10353. "psr-4": {
  10354. "Psr\\EventDispatcher\\": "src/"
  10355. }
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "MIT"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "PHP-FIG",
  10364. "homepage": "http://www.php-fig.org/"
  10365. }
  10366. ],
  10367. "description": "Standard interfaces for event handling.",
  10368. "keywords": [
  10369. "events",
  10370. "psr",
  10371. "psr-14"
  10372. ],
  10373. "support": {
  10374. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10375. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10376. },
  10377. "time": "2019-01-08T18:20:26+00:00"
  10378. },
  10379. {
  10380. "name": "psr/http-client",
  10381. "version": "1.0.3",
  10382. "source": {
  10383. "type": "git",
  10384. "url": "https://github.com/php-fig/http-client.git",
  10385. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10386. },
  10387. "dist": {
  10388. "type": "zip",
  10389. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10390. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10391. "shasum": ""
  10392. },
  10393. "require": {
  10394. "php": "^7.0 || ^8.0",
  10395. "psr/http-message": "^1.0 || ^2.0"
  10396. },
  10397. "type": "library",
  10398. "extra": {
  10399. "branch-alias": {
  10400. "dev-master": "1.0.x-dev"
  10401. }
  10402. },
  10403. "autoload": {
  10404. "psr-4": {
  10405. "Psr\\Http\\Client\\": "src/"
  10406. }
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "MIT"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "PHP-FIG",
  10415. "homepage": "https://www.php-fig.org/"
  10416. }
  10417. ],
  10418. "description": "Common interface for HTTP clients",
  10419. "homepage": "https://github.com/php-fig/http-client",
  10420. "keywords": [
  10421. "http",
  10422. "http-client",
  10423. "psr",
  10424. "psr-18"
  10425. ],
  10426. "support": {
  10427. "source": "https://github.com/php-fig/http-client"
  10428. },
  10429. "time": "2023-09-23T14:17:50+00:00"
  10430. },
  10431. {
  10432. "name": "psr/http-factory",
  10433. "version": "1.1.0",
  10434. "source": {
  10435. "type": "git",
  10436. "url": "https://github.com/php-fig/http-factory.git",
  10437. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10438. },
  10439. "dist": {
  10440. "type": "zip",
  10441. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10442. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10443. "shasum": ""
  10444. },
  10445. "require": {
  10446. "php": ">=7.1",
  10447. "psr/http-message": "^1.0 || ^2.0"
  10448. },
  10449. "type": "library",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-master": "1.0.x-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Psr\\Http\\Message\\": "src/"
  10458. }
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "MIT"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "PHP-FIG",
  10467. "homepage": "https://www.php-fig.org/"
  10468. }
  10469. ],
  10470. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10471. "keywords": [
  10472. "factory",
  10473. "http",
  10474. "message",
  10475. "psr",
  10476. "psr-17",
  10477. "psr-7",
  10478. "request",
  10479. "response"
  10480. ],
  10481. "support": {
  10482. "source": "https://github.com/php-fig/http-factory"
  10483. },
  10484. "time": "2024-04-15T12:06:14+00:00"
  10485. },
  10486. {
  10487. "name": "psr/http-message",
  10488. "version": "2.0",
  10489. "source": {
  10490. "type": "git",
  10491. "url": "https://github.com/php-fig/http-message.git",
  10492. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10493. },
  10494. "dist": {
  10495. "type": "zip",
  10496. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10497. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10498. "shasum": ""
  10499. },
  10500. "require": {
  10501. "php": "^7.2 || ^8.0"
  10502. },
  10503. "type": "library",
  10504. "extra": {
  10505. "branch-alias": {
  10506. "dev-master": "2.0.x-dev"
  10507. }
  10508. },
  10509. "autoload": {
  10510. "psr-4": {
  10511. "Psr\\Http\\Message\\": "src/"
  10512. }
  10513. },
  10514. "notification-url": "https://packagist.org/downloads/",
  10515. "license": [
  10516. "MIT"
  10517. ],
  10518. "authors": [
  10519. {
  10520. "name": "PHP-FIG",
  10521. "homepage": "https://www.php-fig.org/"
  10522. }
  10523. ],
  10524. "description": "Common interface for HTTP messages",
  10525. "homepage": "https://github.com/php-fig/http-message",
  10526. "keywords": [
  10527. "http",
  10528. "http-message",
  10529. "psr",
  10530. "psr-7",
  10531. "request",
  10532. "response"
  10533. ],
  10534. "support": {
  10535. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10536. },
  10537. "time": "2023-04-04T09:54:51+00:00"
  10538. },
  10539. {
  10540. "name": "psr/log",
  10541. "version": "3.0.2",
  10542. "source": {
  10543. "type": "git",
  10544. "url": "https://github.com/php-fig/log.git",
  10545. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10546. },
  10547. "dist": {
  10548. "type": "zip",
  10549. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10550. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10551. "shasum": ""
  10552. },
  10553. "require": {
  10554. "php": ">=8.0.0"
  10555. },
  10556. "type": "library",
  10557. "extra": {
  10558. "branch-alias": {
  10559. "dev-master": "3.x-dev"
  10560. }
  10561. },
  10562. "autoload": {
  10563. "psr-4": {
  10564. "Psr\\Log\\": "src"
  10565. }
  10566. },
  10567. "notification-url": "https://packagist.org/downloads/",
  10568. "license": [
  10569. "MIT"
  10570. ],
  10571. "authors": [
  10572. {
  10573. "name": "PHP-FIG",
  10574. "homepage": "https://www.php-fig.org/"
  10575. }
  10576. ],
  10577. "description": "Common interface for logging libraries",
  10578. "homepage": "https://github.com/php-fig/log",
  10579. "keywords": [
  10580. "log",
  10581. "psr",
  10582. "psr-3"
  10583. ],
  10584. "support": {
  10585. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10586. },
  10587. "time": "2024-09-11T13:17:53+00:00"
  10588. },
  10589. {
  10590. "name": "psy/psysh",
  10591. "version": "v0.12.21",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/bobthecow/psysh.git",
  10595. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10600. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "ext-json": "*",
  10605. "ext-tokenizer": "*",
  10606. "nikic/php-parser": "^5.0 || ^4.0",
  10607. "php": "^8.0 || ^7.4",
  10608. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10609. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10610. },
  10611. "conflict": {
  10612. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10613. },
  10614. "require-dev": {
  10615. "bamarni/composer-bin-plugin": "^1.2",
  10616. "composer/class-map-generator": "^1.6"
  10617. },
  10618. "suggest": {
  10619. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  10620. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10621. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10622. },
  10623. "bin": [
  10624. "bin/psysh"
  10625. ],
  10626. "type": "library",
  10627. "extra": {
  10628. "bamarni-bin": {
  10629. "bin-links": false,
  10630. "forward-command": false
  10631. },
  10632. "branch-alias": {
  10633. "dev-main": "0.12.x-dev"
  10634. }
  10635. },
  10636. "autoload": {
  10637. "files": [
  10638. "src/functions.php"
  10639. ],
  10640. "psr-4": {
  10641. "Psy\\": "src/"
  10642. }
  10643. },
  10644. "notification-url": "https://packagist.org/downloads/",
  10645. "license": [
  10646. "MIT"
  10647. ],
  10648. "authors": [
  10649. {
  10650. "name": "Justin Hileman",
  10651. "email": "justin@justinhileman.info"
  10652. }
  10653. ],
  10654. "description": "An interactive shell for modern PHP.",
  10655. "homepage": "https://psysh.org",
  10656. "keywords": [
  10657. "REPL",
  10658. "console",
  10659. "interactive",
  10660. "shell"
  10661. ],
  10662. "support": {
  10663. "issues": "https://github.com/bobthecow/psysh/issues",
  10664. "source": "https://github.com/bobthecow/psysh/tree/v0.12.21"
  10665. },
  10666. "time": "2026-03-06T21:21:28+00:00"
  10667. },
  10668. {
  10669. "name": "ralouphie/getallheaders",
  10670. "version": "3.0.3",
  10671. "source": {
  10672. "type": "git",
  10673. "url": "https://github.com/ralouphie/getallheaders.git",
  10674. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10675. },
  10676. "dist": {
  10677. "type": "zip",
  10678. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10679. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10680. "shasum": ""
  10681. },
  10682. "require": {
  10683. "php": ">=5.6"
  10684. },
  10685. "require-dev": {
  10686. "php-coveralls/php-coveralls": "^2.1",
  10687. "phpunit/phpunit": "^5 || ^6.5"
  10688. },
  10689. "type": "library",
  10690. "autoload": {
  10691. "files": [
  10692. "src/getallheaders.php"
  10693. ]
  10694. },
  10695. "notification-url": "https://packagist.org/downloads/",
  10696. "license": [
  10697. "MIT"
  10698. ],
  10699. "authors": [
  10700. {
  10701. "name": "Ralph Khattar",
  10702. "email": "ralph.khattar@gmail.com"
  10703. }
  10704. ],
  10705. "description": "A polyfill for getallheaders.",
  10706. "support": {
  10707. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10708. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10709. },
  10710. "time": "2019-03-08T08:55:37+00:00"
  10711. },
  10712. {
  10713. "name": "sebastian/diff",
  10714. "version": "4.0.6",
  10715. "source": {
  10716. "type": "git",
  10717. "url": "https://github.com/sebastianbergmann/diff.git",
  10718. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10719. },
  10720. "dist": {
  10721. "type": "zip",
  10722. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10723. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10724. "shasum": ""
  10725. },
  10726. "require": {
  10727. "php": ">=7.3"
  10728. },
  10729. "require-dev": {
  10730. "phpunit/phpunit": "^9.3",
  10731. "symfony/process": "^4.2 || ^5"
  10732. },
  10733. "type": "library",
  10734. "extra": {
  10735. "branch-alias": {
  10736. "dev-master": "4.0-dev"
  10737. }
  10738. },
  10739. "autoload": {
  10740. "classmap": [
  10741. "src/"
  10742. ]
  10743. },
  10744. "notification-url": "https://packagist.org/downloads/",
  10745. "license": [
  10746. "BSD-3-Clause"
  10747. ],
  10748. "authors": [
  10749. {
  10750. "name": "Sebastian Bergmann",
  10751. "email": "sebastian@phpunit.de"
  10752. },
  10753. {
  10754. "name": "Kore Nordmann",
  10755. "email": "mail@kore-nordmann.de"
  10756. }
  10757. ],
  10758. "description": "Diff implementation",
  10759. "homepage": "https://github.com/sebastianbergmann/diff",
  10760. "keywords": [
  10761. "diff",
  10762. "udiff",
  10763. "unidiff",
  10764. "unified diff"
  10765. ],
  10766. "support": {
  10767. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10768. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10769. },
  10770. "funding": [
  10771. {
  10772. "url": "https://github.com/sebastianbergmann",
  10773. "type": "github"
  10774. }
  10775. ],
  10776. "time": "2024-03-02T06:30:58+00:00"
  10777. },
  10778. {
  10779. "name": "symfony/console",
  10780. "version": "v6.4.35",
  10781. "source": {
  10782. "type": "git",
  10783. "url": "https://github.com/symfony/console.git",
  10784. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  10785. },
  10786. "dist": {
  10787. "type": "zip",
  10788. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  10789. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  10790. "shasum": ""
  10791. },
  10792. "require": {
  10793. "php": ">=8.1",
  10794. "symfony/deprecation-contracts": "^2.5|^3",
  10795. "symfony/polyfill-mbstring": "~1.0",
  10796. "symfony/service-contracts": "^2.5|^3",
  10797. "symfony/string": "^5.4|^6.0|^7.0"
  10798. },
  10799. "conflict": {
  10800. "symfony/dependency-injection": "<5.4",
  10801. "symfony/dotenv": "<5.4",
  10802. "symfony/event-dispatcher": "<5.4",
  10803. "symfony/lock": "<5.4",
  10804. "symfony/process": "<5.4"
  10805. },
  10806. "provide": {
  10807. "psr/log-implementation": "1.0|2.0|3.0"
  10808. },
  10809. "require-dev": {
  10810. "psr/log": "^1|^2|^3",
  10811. "symfony/config": "^5.4|^6.0|^7.0",
  10812. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10813. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10814. "symfony/http-foundation": "^6.4|^7.0",
  10815. "symfony/http-kernel": "^6.4|^7.0",
  10816. "symfony/lock": "^5.4|^6.0|^7.0",
  10817. "symfony/messenger": "^5.4|^6.0|^7.0",
  10818. "symfony/process": "^5.4|^6.0|^7.0",
  10819. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10820. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10821. },
  10822. "type": "library",
  10823. "autoload": {
  10824. "psr-4": {
  10825. "Symfony\\Component\\Console\\": ""
  10826. },
  10827. "exclude-from-classmap": [
  10828. "/Tests/"
  10829. ]
  10830. },
  10831. "notification-url": "https://packagist.org/downloads/",
  10832. "license": [
  10833. "MIT"
  10834. ],
  10835. "authors": [
  10836. {
  10837. "name": "Fabien Potencier",
  10838. "email": "fabien@symfony.com"
  10839. },
  10840. {
  10841. "name": "Symfony Community",
  10842. "homepage": "https://symfony.com/contributors"
  10843. }
  10844. ],
  10845. "description": "Eases the creation of beautiful and testable command line interfaces",
  10846. "homepage": "https://symfony.com",
  10847. "keywords": [
  10848. "cli",
  10849. "command-line",
  10850. "console",
  10851. "terminal"
  10852. ],
  10853. "support": {
  10854. "source": "https://github.com/symfony/console/tree/v6.4.35"
  10855. },
  10856. "funding": [
  10857. {
  10858. "url": "https://symfony.com/sponsor",
  10859. "type": "custom"
  10860. },
  10861. {
  10862. "url": "https://github.com/fabpot",
  10863. "type": "github"
  10864. },
  10865. {
  10866. "url": "https://github.com/nicolas-grekas",
  10867. "type": "github"
  10868. },
  10869. {
  10870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10871. "type": "tidelift"
  10872. }
  10873. ],
  10874. "time": "2026-03-06T13:31:08+00:00"
  10875. },
  10876. {
  10877. "name": "symfony/dependency-injection",
  10878. "version": "v6.4.35",
  10879. "source": {
  10880. "type": "git",
  10881. "url": "https://github.com/symfony/dependency-injection.git",
  10882. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  10883. },
  10884. "dist": {
  10885. "type": "zip",
  10886. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  10887. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  10888. "shasum": ""
  10889. },
  10890. "require": {
  10891. "php": ">=8.1",
  10892. "psr/container": "^1.1|^2.0",
  10893. "symfony/deprecation-contracts": "^2.5|^3",
  10894. "symfony/service-contracts": "^2.5|^3.0",
  10895. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10896. },
  10897. "conflict": {
  10898. "ext-psr": "<1.1|>=2",
  10899. "symfony/config": "<6.1",
  10900. "symfony/finder": "<5.4",
  10901. "symfony/proxy-manager-bridge": "<6.3",
  10902. "symfony/yaml": "<5.4"
  10903. },
  10904. "provide": {
  10905. "psr/container-implementation": "1.1|2.0",
  10906. "symfony/service-implementation": "1.1|2.0|3.0"
  10907. },
  10908. "require-dev": {
  10909. "symfony/config": "^6.1|^7.0",
  10910. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10911. "symfony/yaml": "^5.4|^6.0|^7.0"
  10912. },
  10913. "type": "library",
  10914. "autoload": {
  10915. "psr-4": {
  10916. "Symfony\\Component\\DependencyInjection\\": ""
  10917. },
  10918. "exclude-from-classmap": [
  10919. "/Tests/"
  10920. ]
  10921. },
  10922. "notification-url": "https://packagist.org/downloads/",
  10923. "license": [
  10924. "MIT"
  10925. ],
  10926. "authors": [
  10927. {
  10928. "name": "Fabien Potencier",
  10929. "email": "fabien@symfony.com"
  10930. },
  10931. {
  10932. "name": "Symfony Community",
  10933. "homepage": "https://symfony.com/contributors"
  10934. }
  10935. ],
  10936. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10937. "homepage": "https://symfony.com",
  10938. "support": {
  10939. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  10940. },
  10941. "funding": [
  10942. {
  10943. "url": "https://symfony.com/sponsor",
  10944. "type": "custom"
  10945. },
  10946. {
  10947. "url": "https://github.com/fabpot",
  10948. "type": "github"
  10949. },
  10950. {
  10951. "url": "https://github.com/nicolas-grekas",
  10952. "type": "github"
  10953. },
  10954. {
  10955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10956. "type": "tidelift"
  10957. }
  10958. ],
  10959. "time": "2026-02-26T12:16:01+00:00"
  10960. },
  10961. {
  10962. "name": "symfony/deprecation-contracts",
  10963. "version": "v3.6.0",
  10964. "source": {
  10965. "type": "git",
  10966. "url": "https://github.com/symfony/deprecation-contracts.git",
  10967. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  10968. },
  10969. "dist": {
  10970. "type": "zip",
  10971. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10972. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10973. "shasum": ""
  10974. },
  10975. "require": {
  10976. "php": ">=8.1"
  10977. },
  10978. "type": "library",
  10979. "extra": {
  10980. "thanks": {
  10981. "url": "https://github.com/symfony/contracts",
  10982. "name": "symfony/contracts"
  10983. },
  10984. "branch-alias": {
  10985. "dev-main": "3.6-dev"
  10986. }
  10987. },
  10988. "autoload": {
  10989. "files": [
  10990. "function.php"
  10991. ]
  10992. },
  10993. "notification-url": "https://packagist.org/downloads/",
  10994. "license": [
  10995. "MIT"
  10996. ],
  10997. "authors": [
  10998. {
  10999. "name": "Nicolas Grekas",
  11000. "email": "p@tchwork.com"
  11001. },
  11002. {
  11003. "name": "Symfony Community",
  11004. "homepage": "https://symfony.com/contributors"
  11005. }
  11006. ],
  11007. "description": "A generic function and convention to trigger deprecation notices",
  11008. "homepage": "https://symfony.com",
  11009. "support": {
  11010. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  11011. },
  11012. "funding": [
  11013. {
  11014. "url": "https://symfony.com/sponsor",
  11015. "type": "custom"
  11016. },
  11017. {
  11018. "url": "https://github.com/fabpot",
  11019. "type": "github"
  11020. },
  11021. {
  11022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11023. "type": "tidelift"
  11024. }
  11025. ],
  11026. "time": "2024-09-25T14:21:43+00:00"
  11027. },
  11028. {
  11029. "name": "symfony/error-handler",
  11030. "version": "v6.4.32",
  11031. "source": {
  11032. "type": "git",
  11033. "url": "https://github.com/symfony/error-handler.git",
  11034. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  11035. },
  11036. "dist": {
  11037. "type": "zip",
  11038. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11039. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11040. "shasum": ""
  11041. },
  11042. "require": {
  11043. "php": ">=8.1",
  11044. "psr/log": "^1|^2|^3",
  11045. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11046. },
  11047. "conflict": {
  11048. "symfony/deprecation-contracts": "<2.5",
  11049. "symfony/http-kernel": "<6.4"
  11050. },
  11051. "require-dev": {
  11052. "symfony/deprecation-contracts": "^2.5|^3",
  11053. "symfony/http-kernel": "^6.4|^7.0",
  11054. "symfony/serializer": "^5.4|^6.0|^7.0"
  11055. },
  11056. "bin": [
  11057. "Resources/bin/patch-type-declarations"
  11058. ],
  11059. "type": "library",
  11060. "autoload": {
  11061. "psr-4": {
  11062. "Symfony\\Component\\ErrorHandler\\": ""
  11063. },
  11064. "exclude-from-classmap": [
  11065. "/Tests/"
  11066. ]
  11067. },
  11068. "notification-url": "https://packagist.org/downloads/",
  11069. "license": [
  11070. "MIT"
  11071. ],
  11072. "authors": [
  11073. {
  11074. "name": "Fabien Potencier",
  11075. "email": "fabien@symfony.com"
  11076. },
  11077. {
  11078. "name": "Symfony Community",
  11079. "homepage": "https://symfony.com/contributors"
  11080. }
  11081. ],
  11082. "description": "Provides tools to manage errors and ease debugging PHP code",
  11083. "homepage": "https://symfony.com",
  11084. "support": {
  11085. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  11086. },
  11087. "funding": [
  11088. {
  11089. "url": "https://symfony.com/sponsor",
  11090. "type": "custom"
  11091. },
  11092. {
  11093. "url": "https://github.com/fabpot",
  11094. "type": "github"
  11095. },
  11096. {
  11097. "url": "https://github.com/nicolas-grekas",
  11098. "type": "github"
  11099. },
  11100. {
  11101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11102. "type": "tidelift"
  11103. }
  11104. ],
  11105. "time": "2026-01-19T19:28:19+00:00"
  11106. },
  11107. {
  11108. "name": "symfony/event-dispatcher",
  11109. "version": "v6.4.32",
  11110. "source": {
  11111. "type": "git",
  11112. "url": "https://github.com/symfony/event-dispatcher.git",
  11113. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  11114. },
  11115. "dist": {
  11116. "type": "zip",
  11117. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  11118. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  11119. "shasum": ""
  11120. },
  11121. "require": {
  11122. "php": ">=8.1",
  11123. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11124. },
  11125. "conflict": {
  11126. "symfony/dependency-injection": "<5.4",
  11127. "symfony/service-contracts": "<2.5"
  11128. },
  11129. "provide": {
  11130. "psr/event-dispatcher-implementation": "1.0",
  11131. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11132. },
  11133. "require-dev": {
  11134. "psr/log": "^1|^2|^3",
  11135. "symfony/config": "^5.4|^6.0|^7.0",
  11136. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11137. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11138. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11139. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11140. "symfony/service-contracts": "^2.5|^3",
  11141. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11142. },
  11143. "type": "library",
  11144. "autoload": {
  11145. "psr-4": {
  11146. "Symfony\\Component\\EventDispatcher\\": ""
  11147. },
  11148. "exclude-from-classmap": [
  11149. "/Tests/"
  11150. ]
  11151. },
  11152. "notification-url": "https://packagist.org/downloads/",
  11153. "license": [
  11154. "MIT"
  11155. ],
  11156. "authors": [
  11157. {
  11158. "name": "Fabien Potencier",
  11159. "email": "fabien@symfony.com"
  11160. },
  11161. {
  11162. "name": "Symfony Community",
  11163. "homepage": "https://symfony.com/contributors"
  11164. }
  11165. ],
  11166. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11167. "homepage": "https://symfony.com",
  11168. "support": {
  11169. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  11170. },
  11171. "funding": [
  11172. {
  11173. "url": "https://symfony.com/sponsor",
  11174. "type": "custom"
  11175. },
  11176. {
  11177. "url": "https://github.com/fabpot",
  11178. "type": "github"
  11179. },
  11180. {
  11181. "url": "https://github.com/nicolas-grekas",
  11182. "type": "github"
  11183. },
  11184. {
  11185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11186. "type": "tidelift"
  11187. }
  11188. ],
  11189. "time": "2026-01-05T11:13:48+00:00"
  11190. },
  11191. {
  11192. "name": "symfony/event-dispatcher-contracts",
  11193. "version": "v3.6.0",
  11194. "source": {
  11195. "type": "git",
  11196. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11197. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  11198. },
  11199. "dist": {
  11200. "type": "zip",
  11201. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  11202. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  11203. "shasum": ""
  11204. },
  11205. "require": {
  11206. "php": ">=8.1",
  11207. "psr/event-dispatcher": "^1"
  11208. },
  11209. "type": "library",
  11210. "extra": {
  11211. "thanks": {
  11212. "url": "https://github.com/symfony/contracts",
  11213. "name": "symfony/contracts"
  11214. },
  11215. "branch-alias": {
  11216. "dev-main": "3.6-dev"
  11217. }
  11218. },
  11219. "autoload": {
  11220. "psr-4": {
  11221. "Symfony\\Contracts\\EventDispatcher\\": ""
  11222. }
  11223. },
  11224. "notification-url": "https://packagist.org/downloads/",
  11225. "license": [
  11226. "MIT"
  11227. ],
  11228. "authors": [
  11229. {
  11230. "name": "Nicolas Grekas",
  11231. "email": "p@tchwork.com"
  11232. },
  11233. {
  11234. "name": "Symfony Community",
  11235. "homepage": "https://symfony.com/contributors"
  11236. }
  11237. ],
  11238. "description": "Generic abstractions related to dispatching event",
  11239. "homepage": "https://symfony.com",
  11240. "keywords": [
  11241. "abstractions",
  11242. "contracts",
  11243. "decoupling",
  11244. "interfaces",
  11245. "interoperability",
  11246. "standards"
  11247. ],
  11248. "support": {
  11249. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  11250. },
  11251. "funding": [
  11252. {
  11253. "url": "https://symfony.com/sponsor",
  11254. "type": "custom"
  11255. },
  11256. {
  11257. "url": "https://github.com/fabpot",
  11258. "type": "github"
  11259. },
  11260. {
  11261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11262. "type": "tidelift"
  11263. }
  11264. ],
  11265. "time": "2024-09-25T14:21:43+00:00"
  11266. },
  11267. {
  11268. "name": "symfony/filesystem",
  11269. "version": "v6.4.34",
  11270. "source": {
  11271. "type": "git",
  11272. "url": "https://github.com/symfony/filesystem.git",
  11273. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  11274. },
  11275. "dist": {
  11276. "type": "zip",
  11277. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11278. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11279. "shasum": ""
  11280. },
  11281. "require": {
  11282. "php": ">=8.1",
  11283. "symfony/polyfill-ctype": "~1.8",
  11284. "symfony/polyfill-mbstring": "~1.8"
  11285. },
  11286. "require-dev": {
  11287. "symfony/process": "^5.4|^6.4|^7.0"
  11288. },
  11289. "type": "library",
  11290. "autoload": {
  11291. "psr-4": {
  11292. "Symfony\\Component\\Filesystem\\": ""
  11293. },
  11294. "exclude-from-classmap": [
  11295. "/Tests/"
  11296. ]
  11297. },
  11298. "notification-url": "https://packagist.org/downloads/",
  11299. "license": [
  11300. "MIT"
  11301. ],
  11302. "authors": [
  11303. {
  11304. "name": "Fabien Potencier",
  11305. "email": "fabien@symfony.com"
  11306. },
  11307. {
  11308. "name": "Symfony Community",
  11309. "homepage": "https://symfony.com/contributors"
  11310. }
  11311. ],
  11312. "description": "Provides basic utilities for the filesystem",
  11313. "homepage": "https://symfony.com",
  11314. "support": {
  11315. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  11316. },
  11317. "funding": [
  11318. {
  11319. "url": "https://symfony.com/sponsor",
  11320. "type": "custom"
  11321. },
  11322. {
  11323. "url": "https://github.com/fabpot",
  11324. "type": "github"
  11325. },
  11326. {
  11327. "url": "https://github.com/nicolas-grekas",
  11328. "type": "github"
  11329. },
  11330. {
  11331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11332. "type": "tidelift"
  11333. }
  11334. ],
  11335. "time": "2026-02-24T17:51:06+00:00"
  11336. },
  11337. {
  11338. "name": "symfony/finder",
  11339. "version": "v6.4.34",
  11340. "source": {
  11341. "type": "git",
  11342. "url": "https://github.com/symfony/finder.git",
  11343. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  11344. },
  11345. "dist": {
  11346. "type": "zip",
  11347. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  11348. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  11349. "shasum": ""
  11350. },
  11351. "require": {
  11352. "php": ">=8.1"
  11353. },
  11354. "require-dev": {
  11355. "symfony/filesystem": "^6.0|^7.0"
  11356. },
  11357. "type": "library",
  11358. "autoload": {
  11359. "psr-4": {
  11360. "Symfony\\Component\\Finder\\": ""
  11361. },
  11362. "exclude-from-classmap": [
  11363. "/Tests/"
  11364. ]
  11365. },
  11366. "notification-url": "https://packagist.org/downloads/",
  11367. "license": [
  11368. "MIT"
  11369. ],
  11370. "authors": [
  11371. {
  11372. "name": "Fabien Potencier",
  11373. "email": "fabien@symfony.com"
  11374. },
  11375. {
  11376. "name": "Symfony Community",
  11377. "homepage": "https://symfony.com/contributors"
  11378. }
  11379. ],
  11380. "description": "Finds files and directories via an intuitive fluent interface",
  11381. "homepage": "https://symfony.com",
  11382. "support": {
  11383. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  11384. },
  11385. "funding": [
  11386. {
  11387. "url": "https://symfony.com/sponsor",
  11388. "type": "custom"
  11389. },
  11390. {
  11391. "url": "https://github.com/fabpot",
  11392. "type": "github"
  11393. },
  11394. {
  11395. "url": "https://github.com/nicolas-grekas",
  11396. "type": "github"
  11397. },
  11398. {
  11399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11400. "type": "tidelift"
  11401. }
  11402. ],
  11403. "time": "2026-01-28T15:16:37+00:00"
  11404. },
  11405. {
  11406. "name": "symfony/http-foundation",
  11407. "version": "v6.4.35",
  11408. "source": {
  11409. "type": "git",
  11410. "url": "https://github.com/symfony/http-foundation.git",
  11411. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  11412. },
  11413. "dist": {
  11414. "type": "zip",
  11415. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11416. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11417. "shasum": ""
  11418. },
  11419. "require": {
  11420. "php": ">=8.1",
  11421. "symfony/deprecation-contracts": "^2.5|^3",
  11422. "symfony/polyfill-mbstring": "~1.1",
  11423. "symfony/polyfill-php83": "^1.27"
  11424. },
  11425. "conflict": {
  11426. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11427. },
  11428. "require-dev": {
  11429. "doctrine/dbal": "^2.13.1|^3|^4",
  11430. "predis/predis": "^1.1|^2.0",
  11431. "symfony/cache": "^6.4.12|^7.1.5",
  11432. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11433. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11434. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11435. "symfony/mime": "^5.4|^6.0|^7.0",
  11436. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11437. },
  11438. "type": "library",
  11439. "autoload": {
  11440. "psr-4": {
  11441. "Symfony\\Component\\HttpFoundation\\": ""
  11442. },
  11443. "exclude-from-classmap": [
  11444. "/Tests/"
  11445. ]
  11446. },
  11447. "notification-url": "https://packagist.org/downloads/",
  11448. "license": [
  11449. "MIT"
  11450. ],
  11451. "authors": [
  11452. {
  11453. "name": "Fabien Potencier",
  11454. "email": "fabien@symfony.com"
  11455. },
  11456. {
  11457. "name": "Symfony Community",
  11458. "homepage": "https://symfony.com/contributors"
  11459. }
  11460. ],
  11461. "description": "Defines an object-oriented layer for the HTTP specification",
  11462. "homepage": "https://symfony.com",
  11463. "support": {
  11464. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  11465. },
  11466. "funding": [
  11467. {
  11468. "url": "https://symfony.com/sponsor",
  11469. "type": "custom"
  11470. },
  11471. {
  11472. "url": "https://github.com/fabpot",
  11473. "type": "github"
  11474. },
  11475. {
  11476. "url": "https://github.com/nicolas-grekas",
  11477. "type": "github"
  11478. },
  11479. {
  11480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11481. "type": "tidelift"
  11482. }
  11483. ],
  11484. "time": "2026-03-06T11:15:58+00:00"
  11485. },
  11486. {
  11487. "name": "symfony/http-kernel",
  11488. "version": "v6.4.35",
  11489. "source": {
  11490. "type": "git",
  11491. "url": "https://github.com/symfony/http-kernel.git",
  11492. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  11493. },
  11494. "dist": {
  11495. "type": "zip",
  11496. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  11497. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  11498. "shasum": ""
  11499. },
  11500. "require": {
  11501. "php": ">=8.1",
  11502. "psr/log": "^1|^2|^3",
  11503. "symfony/deprecation-contracts": "^2.5|^3",
  11504. "symfony/error-handler": "^6.4|^7.0",
  11505. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11506. "symfony/http-foundation": "^6.4|^7.0",
  11507. "symfony/polyfill-ctype": "^1.8"
  11508. },
  11509. "conflict": {
  11510. "symfony/browser-kit": "<5.4",
  11511. "symfony/cache": "<5.4",
  11512. "symfony/config": "<6.1",
  11513. "symfony/console": "<5.4",
  11514. "symfony/dependency-injection": "<6.4",
  11515. "symfony/doctrine-bridge": "<5.4",
  11516. "symfony/form": "<5.4",
  11517. "symfony/http-client": "<5.4",
  11518. "symfony/http-client-contracts": "<2.5",
  11519. "symfony/mailer": "<5.4",
  11520. "symfony/messenger": "<5.4",
  11521. "symfony/translation": "<5.4",
  11522. "symfony/translation-contracts": "<2.5",
  11523. "symfony/twig-bridge": "<5.4",
  11524. "symfony/validator": "<6.4",
  11525. "symfony/var-dumper": "<6.3",
  11526. "twig/twig": "<2.13"
  11527. },
  11528. "provide": {
  11529. "psr/log-implementation": "1.0|2.0|3.0"
  11530. },
  11531. "require-dev": {
  11532. "psr/cache": "^1.0|^2.0|^3.0",
  11533. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11534. "symfony/clock": "^6.2|^7.0",
  11535. "symfony/config": "^6.1|^7.0",
  11536. "symfony/console": "^5.4|^6.0|^7.0",
  11537. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11538. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  11539. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11540. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11541. "symfony/finder": "^5.4|^6.0|^7.0",
  11542. "symfony/http-client-contracts": "^2.5|^3",
  11543. "symfony/process": "^5.4|^6.0|^7.0",
  11544. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11545. "symfony/routing": "^5.4|^6.0|^7.0",
  11546. "symfony/serializer": "^6.4.4|^7.0.4",
  11547. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11548. "symfony/translation": "^5.4|^6.0|^7.0",
  11549. "symfony/translation-contracts": "^2.5|^3",
  11550. "symfony/uid": "^5.4|^6.0|^7.0",
  11551. "symfony/validator": "^6.4|^7.0",
  11552. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11553. "symfony/var-exporter": "^6.2|^7.0",
  11554. "twig/twig": "^2.13|^3.0.4"
  11555. },
  11556. "type": "library",
  11557. "autoload": {
  11558. "psr-4": {
  11559. "Symfony\\Component\\HttpKernel\\": ""
  11560. },
  11561. "exclude-from-classmap": [
  11562. "/Tests/"
  11563. ]
  11564. },
  11565. "notification-url": "https://packagist.org/downloads/",
  11566. "license": [
  11567. "MIT"
  11568. ],
  11569. "authors": [
  11570. {
  11571. "name": "Fabien Potencier",
  11572. "email": "fabien@symfony.com"
  11573. },
  11574. {
  11575. "name": "Symfony Community",
  11576. "homepage": "https://symfony.com/contributors"
  11577. }
  11578. ],
  11579. "description": "Provides a structured process for converting a Request into a Response",
  11580. "homepage": "https://symfony.com",
  11581. "support": {
  11582. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  11583. },
  11584. "funding": [
  11585. {
  11586. "url": "https://symfony.com/sponsor",
  11587. "type": "custom"
  11588. },
  11589. {
  11590. "url": "https://github.com/fabpot",
  11591. "type": "github"
  11592. },
  11593. {
  11594. "url": "https://github.com/nicolas-grekas",
  11595. "type": "github"
  11596. },
  11597. {
  11598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11599. "type": "tidelift"
  11600. }
  11601. ],
  11602. "time": "2026-03-06T16:28:07+00:00"
  11603. },
  11604. {
  11605. "name": "symfony/mailer",
  11606. "version": "v6.4.34",
  11607. "source": {
  11608. "type": "git",
  11609. "url": "https://github.com/symfony/mailer.git",
  11610. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  11611. },
  11612. "dist": {
  11613. "type": "zip",
  11614. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  11615. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  11616. "shasum": ""
  11617. },
  11618. "require": {
  11619. "egulias/email-validator": "^2.1.10|^3|^4",
  11620. "php": ">=8.1",
  11621. "psr/event-dispatcher": "^1",
  11622. "psr/log": "^1|^2|^3",
  11623. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11624. "symfony/mime": "^6.2|^7.0",
  11625. "symfony/service-contracts": "^2.5|^3"
  11626. },
  11627. "conflict": {
  11628. "symfony/http-client-contracts": "<2.5",
  11629. "symfony/http-kernel": "<5.4",
  11630. "symfony/messenger": "<6.2",
  11631. "symfony/mime": "<6.2",
  11632. "symfony/twig-bridge": "<6.2.1"
  11633. },
  11634. "require-dev": {
  11635. "symfony/console": "^5.4|^6.0|^7.0",
  11636. "symfony/http-client": "^5.4|^6.0|^7.0",
  11637. "symfony/messenger": "^6.2|^7.0",
  11638. "symfony/twig-bridge": "^6.2|^7.0"
  11639. },
  11640. "type": "library",
  11641. "autoload": {
  11642. "psr-4": {
  11643. "Symfony\\Component\\Mailer\\": ""
  11644. },
  11645. "exclude-from-classmap": [
  11646. "/Tests/"
  11647. ]
  11648. },
  11649. "notification-url": "https://packagist.org/downloads/",
  11650. "license": [
  11651. "MIT"
  11652. ],
  11653. "authors": [
  11654. {
  11655. "name": "Fabien Potencier",
  11656. "email": "fabien@symfony.com"
  11657. },
  11658. {
  11659. "name": "Symfony Community",
  11660. "homepage": "https://symfony.com/contributors"
  11661. }
  11662. ],
  11663. "description": "Helps sending emails",
  11664. "homepage": "https://symfony.com",
  11665. "support": {
  11666. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  11667. },
  11668. "funding": [
  11669. {
  11670. "url": "https://symfony.com/sponsor",
  11671. "type": "custom"
  11672. },
  11673. {
  11674. "url": "https://github.com/fabpot",
  11675. "type": "github"
  11676. },
  11677. {
  11678. "url": "https://github.com/nicolas-grekas",
  11679. "type": "github"
  11680. },
  11681. {
  11682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11683. "type": "tidelift"
  11684. }
  11685. ],
  11686. "time": "2026-02-24T09:34:36+00:00"
  11687. },
  11688. {
  11689. "name": "symfony/mime",
  11690. "version": "v6.4.35",
  11691. "source": {
  11692. "type": "git",
  11693. "url": "https://github.com/symfony/mime.git",
  11694. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  11695. },
  11696. "dist": {
  11697. "type": "zip",
  11698. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11699. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11700. "shasum": ""
  11701. },
  11702. "require": {
  11703. "php": ">=8.1",
  11704. "symfony/deprecation-contracts": "^2.5|^3",
  11705. "symfony/polyfill-intl-idn": "^1.10",
  11706. "symfony/polyfill-mbstring": "^1.0"
  11707. },
  11708. "conflict": {
  11709. "egulias/email-validator": "~3.0.0",
  11710. "phpdocumentor/reflection-docblock": "<3.2.2",
  11711. "phpdocumentor/type-resolver": "<1.4.0",
  11712. "symfony/mailer": "<5.4",
  11713. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11714. },
  11715. "require-dev": {
  11716. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11717. "league/html-to-markdown": "^5.0",
  11718. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11719. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11720. "symfony/process": "^5.4|^6.4|^7.0",
  11721. "symfony/property-access": "^5.4|^6.0|^7.0",
  11722. "symfony/property-info": "^5.4|^6.0|^7.0",
  11723. "symfony/serializer": "^6.4.3|^7.0.3"
  11724. },
  11725. "type": "library",
  11726. "autoload": {
  11727. "psr-4": {
  11728. "Symfony\\Component\\Mime\\": ""
  11729. },
  11730. "exclude-from-classmap": [
  11731. "/Tests/"
  11732. ]
  11733. },
  11734. "notification-url": "https://packagist.org/downloads/",
  11735. "license": [
  11736. "MIT"
  11737. ],
  11738. "authors": [
  11739. {
  11740. "name": "Fabien Potencier",
  11741. "email": "fabien@symfony.com"
  11742. },
  11743. {
  11744. "name": "Symfony Community",
  11745. "homepage": "https://symfony.com/contributors"
  11746. }
  11747. ],
  11748. "description": "Allows manipulating MIME messages",
  11749. "homepage": "https://symfony.com",
  11750. "keywords": [
  11751. "mime",
  11752. "mime-type"
  11753. ],
  11754. "support": {
  11755. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  11756. },
  11757. "funding": [
  11758. {
  11759. "url": "https://symfony.com/sponsor",
  11760. "type": "custom"
  11761. },
  11762. {
  11763. "url": "https://github.com/fabpot",
  11764. "type": "github"
  11765. },
  11766. {
  11767. "url": "https://github.com/nicolas-grekas",
  11768. "type": "github"
  11769. },
  11770. {
  11771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11772. "type": "tidelift"
  11773. }
  11774. ],
  11775. "time": "2026-03-05T11:25:28+00:00"
  11776. },
  11777. {
  11778. "name": "symfony/polyfill-ctype",
  11779. "version": "v1.33.0",
  11780. "source": {
  11781. "type": "git",
  11782. "url": "https://github.com/symfony/polyfill-ctype.git",
  11783. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11784. },
  11785. "dist": {
  11786. "type": "zip",
  11787. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11788. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11789. "shasum": ""
  11790. },
  11791. "require": {
  11792. "php": ">=7.2"
  11793. },
  11794. "provide": {
  11795. "ext-ctype": "*"
  11796. },
  11797. "suggest": {
  11798. "ext-ctype": "For best performance"
  11799. },
  11800. "type": "library",
  11801. "extra": {
  11802. "thanks": {
  11803. "url": "https://github.com/symfony/polyfill",
  11804. "name": "symfony/polyfill"
  11805. }
  11806. },
  11807. "autoload": {
  11808. "files": [
  11809. "bootstrap.php"
  11810. ],
  11811. "psr-4": {
  11812. "Symfony\\Polyfill\\Ctype\\": ""
  11813. }
  11814. },
  11815. "notification-url": "https://packagist.org/downloads/",
  11816. "license": [
  11817. "MIT"
  11818. ],
  11819. "authors": [
  11820. {
  11821. "name": "Gert de Pagter",
  11822. "email": "BackEndTea@gmail.com"
  11823. },
  11824. {
  11825. "name": "Symfony Community",
  11826. "homepage": "https://symfony.com/contributors"
  11827. }
  11828. ],
  11829. "description": "Symfony polyfill for ctype functions",
  11830. "homepage": "https://symfony.com",
  11831. "keywords": [
  11832. "compatibility",
  11833. "ctype",
  11834. "polyfill",
  11835. "portable"
  11836. ],
  11837. "support": {
  11838. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  11839. },
  11840. "funding": [
  11841. {
  11842. "url": "https://symfony.com/sponsor",
  11843. "type": "custom"
  11844. },
  11845. {
  11846. "url": "https://github.com/fabpot",
  11847. "type": "github"
  11848. },
  11849. {
  11850. "url": "https://github.com/nicolas-grekas",
  11851. "type": "github"
  11852. },
  11853. {
  11854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11855. "type": "tidelift"
  11856. }
  11857. ],
  11858. "time": "2024-09-09T11:45:10+00:00"
  11859. },
  11860. {
  11861. "name": "symfony/polyfill-iconv",
  11862. "version": "v1.33.0",
  11863. "source": {
  11864. "type": "git",
  11865. "url": "https://github.com/symfony/polyfill-iconv.git",
  11866. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  11867. },
  11868. "dist": {
  11869. "type": "zip",
  11870. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11871. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11872. "shasum": ""
  11873. },
  11874. "require": {
  11875. "php": ">=7.2"
  11876. },
  11877. "provide": {
  11878. "ext-iconv": "*"
  11879. },
  11880. "suggest": {
  11881. "ext-iconv": "For best performance"
  11882. },
  11883. "type": "library",
  11884. "extra": {
  11885. "thanks": {
  11886. "url": "https://github.com/symfony/polyfill",
  11887. "name": "symfony/polyfill"
  11888. }
  11889. },
  11890. "autoload": {
  11891. "files": [
  11892. "bootstrap.php"
  11893. ],
  11894. "psr-4": {
  11895. "Symfony\\Polyfill\\Iconv\\": ""
  11896. }
  11897. },
  11898. "notification-url": "https://packagist.org/downloads/",
  11899. "license": [
  11900. "MIT"
  11901. ],
  11902. "authors": [
  11903. {
  11904. "name": "Nicolas Grekas",
  11905. "email": "p@tchwork.com"
  11906. },
  11907. {
  11908. "name": "Symfony Community",
  11909. "homepage": "https://symfony.com/contributors"
  11910. }
  11911. ],
  11912. "description": "Symfony polyfill for the Iconv extension",
  11913. "homepage": "https://symfony.com",
  11914. "keywords": [
  11915. "compatibility",
  11916. "iconv",
  11917. "polyfill",
  11918. "portable",
  11919. "shim"
  11920. ],
  11921. "support": {
  11922. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  11923. },
  11924. "funding": [
  11925. {
  11926. "url": "https://symfony.com/sponsor",
  11927. "type": "custom"
  11928. },
  11929. {
  11930. "url": "https://github.com/fabpot",
  11931. "type": "github"
  11932. },
  11933. {
  11934. "url": "https://github.com/nicolas-grekas",
  11935. "type": "github"
  11936. },
  11937. {
  11938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11939. "type": "tidelift"
  11940. }
  11941. ],
  11942. "time": "2024-09-17T14:58:18+00:00"
  11943. },
  11944. {
  11945. "name": "symfony/polyfill-intl-grapheme",
  11946. "version": "v1.33.0",
  11947. "source": {
  11948. "type": "git",
  11949. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11950. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  11951. },
  11952. "dist": {
  11953. "type": "zip",
  11954. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11955. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11956. "shasum": ""
  11957. },
  11958. "require": {
  11959. "php": ">=7.2"
  11960. },
  11961. "suggest": {
  11962. "ext-intl": "For best performance"
  11963. },
  11964. "type": "library",
  11965. "extra": {
  11966. "thanks": {
  11967. "url": "https://github.com/symfony/polyfill",
  11968. "name": "symfony/polyfill"
  11969. }
  11970. },
  11971. "autoload": {
  11972. "files": [
  11973. "bootstrap.php"
  11974. ],
  11975. "psr-4": {
  11976. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11977. }
  11978. },
  11979. "notification-url": "https://packagist.org/downloads/",
  11980. "license": [
  11981. "MIT"
  11982. ],
  11983. "authors": [
  11984. {
  11985. "name": "Nicolas Grekas",
  11986. "email": "p@tchwork.com"
  11987. },
  11988. {
  11989. "name": "Symfony Community",
  11990. "homepage": "https://symfony.com/contributors"
  11991. }
  11992. ],
  11993. "description": "Symfony polyfill for intl's grapheme_* functions",
  11994. "homepage": "https://symfony.com",
  11995. "keywords": [
  11996. "compatibility",
  11997. "grapheme",
  11998. "intl",
  11999. "polyfill",
  12000. "portable",
  12001. "shim"
  12002. ],
  12003. "support": {
  12004. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  12005. },
  12006. "funding": [
  12007. {
  12008. "url": "https://symfony.com/sponsor",
  12009. "type": "custom"
  12010. },
  12011. {
  12012. "url": "https://github.com/fabpot",
  12013. "type": "github"
  12014. },
  12015. {
  12016. "url": "https://github.com/nicolas-grekas",
  12017. "type": "github"
  12018. },
  12019. {
  12020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12021. "type": "tidelift"
  12022. }
  12023. ],
  12024. "time": "2025-06-27T09:58:17+00:00"
  12025. },
  12026. {
  12027. "name": "symfony/polyfill-intl-idn",
  12028. "version": "v1.33.0",
  12029. "source": {
  12030. "type": "git",
  12031. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12032. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  12033. },
  12034. "dist": {
  12035. "type": "zip",
  12036. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12037. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12038. "shasum": ""
  12039. },
  12040. "require": {
  12041. "php": ">=7.2",
  12042. "symfony/polyfill-intl-normalizer": "^1.10"
  12043. },
  12044. "suggest": {
  12045. "ext-intl": "For best performance"
  12046. },
  12047. "type": "library",
  12048. "extra": {
  12049. "thanks": {
  12050. "url": "https://github.com/symfony/polyfill",
  12051. "name": "symfony/polyfill"
  12052. }
  12053. },
  12054. "autoload": {
  12055. "files": [
  12056. "bootstrap.php"
  12057. ],
  12058. "psr-4": {
  12059. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12060. }
  12061. },
  12062. "notification-url": "https://packagist.org/downloads/",
  12063. "license": [
  12064. "MIT"
  12065. ],
  12066. "authors": [
  12067. {
  12068. "name": "Laurent Bassin",
  12069. "email": "laurent@bassin.info"
  12070. },
  12071. {
  12072. "name": "Trevor Rowbotham",
  12073. "email": "trevor.rowbotham@pm.me"
  12074. },
  12075. {
  12076. "name": "Symfony Community",
  12077. "homepage": "https://symfony.com/contributors"
  12078. }
  12079. ],
  12080. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12081. "homepage": "https://symfony.com",
  12082. "keywords": [
  12083. "compatibility",
  12084. "idn",
  12085. "intl",
  12086. "polyfill",
  12087. "portable",
  12088. "shim"
  12089. ],
  12090. "support": {
  12091. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  12092. },
  12093. "funding": [
  12094. {
  12095. "url": "https://symfony.com/sponsor",
  12096. "type": "custom"
  12097. },
  12098. {
  12099. "url": "https://github.com/fabpot",
  12100. "type": "github"
  12101. },
  12102. {
  12103. "url": "https://github.com/nicolas-grekas",
  12104. "type": "github"
  12105. },
  12106. {
  12107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12108. "type": "tidelift"
  12109. }
  12110. ],
  12111. "time": "2024-09-10T14:38:51+00:00"
  12112. },
  12113. {
  12114. "name": "symfony/polyfill-intl-normalizer",
  12115. "version": "v1.33.0",
  12116. "source": {
  12117. "type": "git",
  12118. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12119. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12120. },
  12121. "dist": {
  12122. "type": "zip",
  12123. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12124. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12125. "shasum": ""
  12126. },
  12127. "require": {
  12128. "php": ">=7.2"
  12129. },
  12130. "suggest": {
  12131. "ext-intl": "For best performance"
  12132. },
  12133. "type": "library",
  12134. "extra": {
  12135. "thanks": {
  12136. "url": "https://github.com/symfony/polyfill",
  12137. "name": "symfony/polyfill"
  12138. }
  12139. },
  12140. "autoload": {
  12141. "files": [
  12142. "bootstrap.php"
  12143. ],
  12144. "psr-4": {
  12145. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12146. },
  12147. "classmap": [
  12148. "Resources/stubs"
  12149. ]
  12150. },
  12151. "notification-url": "https://packagist.org/downloads/",
  12152. "license": [
  12153. "MIT"
  12154. ],
  12155. "authors": [
  12156. {
  12157. "name": "Nicolas Grekas",
  12158. "email": "p@tchwork.com"
  12159. },
  12160. {
  12161. "name": "Symfony Community",
  12162. "homepage": "https://symfony.com/contributors"
  12163. }
  12164. ],
  12165. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12166. "homepage": "https://symfony.com",
  12167. "keywords": [
  12168. "compatibility",
  12169. "intl",
  12170. "normalizer",
  12171. "polyfill",
  12172. "portable",
  12173. "shim"
  12174. ],
  12175. "support": {
  12176. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  12177. },
  12178. "funding": [
  12179. {
  12180. "url": "https://symfony.com/sponsor",
  12181. "type": "custom"
  12182. },
  12183. {
  12184. "url": "https://github.com/fabpot",
  12185. "type": "github"
  12186. },
  12187. {
  12188. "url": "https://github.com/nicolas-grekas",
  12189. "type": "github"
  12190. },
  12191. {
  12192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12193. "type": "tidelift"
  12194. }
  12195. ],
  12196. "time": "2024-09-09T11:45:10+00:00"
  12197. },
  12198. {
  12199. "name": "symfony/polyfill-mbstring",
  12200. "version": "v1.33.0",
  12201. "source": {
  12202. "type": "git",
  12203. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12204. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  12205. },
  12206. "dist": {
  12207. "type": "zip",
  12208. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12209. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12210. "shasum": ""
  12211. },
  12212. "require": {
  12213. "ext-iconv": "*",
  12214. "php": ">=7.2"
  12215. },
  12216. "provide": {
  12217. "ext-mbstring": "*"
  12218. },
  12219. "suggest": {
  12220. "ext-mbstring": "For best performance"
  12221. },
  12222. "type": "library",
  12223. "extra": {
  12224. "thanks": {
  12225. "url": "https://github.com/symfony/polyfill",
  12226. "name": "symfony/polyfill"
  12227. }
  12228. },
  12229. "autoload": {
  12230. "files": [
  12231. "bootstrap.php"
  12232. ],
  12233. "psr-4": {
  12234. "Symfony\\Polyfill\\Mbstring\\": ""
  12235. }
  12236. },
  12237. "notification-url": "https://packagist.org/downloads/",
  12238. "license": [
  12239. "MIT"
  12240. ],
  12241. "authors": [
  12242. {
  12243. "name": "Nicolas Grekas",
  12244. "email": "p@tchwork.com"
  12245. },
  12246. {
  12247. "name": "Symfony Community",
  12248. "homepage": "https://symfony.com/contributors"
  12249. }
  12250. ],
  12251. "description": "Symfony polyfill for the Mbstring extension",
  12252. "homepage": "https://symfony.com",
  12253. "keywords": [
  12254. "compatibility",
  12255. "mbstring",
  12256. "polyfill",
  12257. "portable",
  12258. "shim"
  12259. ],
  12260. "support": {
  12261. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  12262. },
  12263. "funding": [
  12264. {
  12265. "url": "https://symfony.com/sponsor",
  12266. "type": "custom"
  12267. },
  12268. {
  12269. "url": "https://github.com/fabpot",
  12270. "type": "github"
  12271. },
  12272. {
  12273. "url": "https://github.com/nicolas-grekas",
  12274. "type": "github"
  12275. },
  12276. {
  12277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12278. "type": "tidelift"
  12279. }
  12280. ],
  12281. "time": "2024-12-23T08:48:59+00:00"
  12282. },
  12283. {
  12284. "name": "symfony/polyfill-php81",
  12285. "version": "v1.33.0",
  12286. "source": {
  12287. "type": "git",
  12288. "url": "https://github.com/symfony/polyfill-php81.git",
  12289. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12290. },
  12291. "dist": {
  12292. "type": "zip",
  12293. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12294. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12295. "shasum": ""
  12296. },
  12297. "require": {
  12298. "php": ">=7.2"
  12299. },
  12300. "type": "library",
  12301. "extra": {
  12302. "thanks": {
  12303. "url": "https://github.com/symfony/polyfill",
  12304. "name": "symfony/polyfill"
  12305. }
  12306. },
  12307. "autoload": {
  12308. "files": [
  12309. "bootstrap.php"
  12310. ],
  12311. "psr-4": {
  12312. "Symfony\\Polyfill\\Php81\\": ""
  12313. },
  12314. "classmap": [
  12315. "Resources/stubs"
  12316. ]
  12317. },
  12318. "notification-url": "https://packagist.org/downloads/",
  12319. "license": [
  12320. "MIT"
  12321. ],
  12322. "authors": [
  12323. {
  12324. "name": "Nicolas Grekas",
  12325. "email": "p@tchwork.com"
  12326. },
  12327. {
  12328. "name": "Symfony Community",
  12329. "homepage": "https://symfony.com/contributors"
  12330. }
  12331. ],
  12332. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12333. "homepage": "https://symfony.com",
  12334. "keywords": [
  12335. "compatibility",
  12336. "polyfill",
  12337. "portable",
  12338. "shim"
  12339. ],
  12340. "support": {
  12341. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12342. },
  12343. "funding": [
  12344. {
  12345. "url": "https://symfony.com/sponsor",
  12346. "type": "custom"
  12347. },
  12348. {
  12349. "url": "https://github.com/fabpot",
  12350. "type": "github"
  12351. },
  12352. {
  12353. "url": "https://github.com/nicolas-grekas",
  12354. "type": "github"
  12355. },
  12356. {
  12357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12358. "type": "tidelift"
  12359. }
  12360. ],
  12361. "time": "2024-09-09T11:45:10+00:00"
  12362. },
  12363. {
  12364. "name": "symfony/polyfill-php83",
  12365. "version": "v1.33.0",
  12366. "source": {
  12367. "type": "git",
  12368. "url": "https://github.com/symfony/polyfill-php83.git",
  12369. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  12370. },
  12371. "dist": {
  12372. "type": "zip",
  12373. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12374. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12375. "shasum": ""
  12376. },
  12377. "require": {
  12378. "php": ">=7.2"
  12379. },
  12380. "type": "library",
  12381. "extra": {
  12382. "thanks": {
  12383. "url": "https://github.com/symfony/polyfill",
  12384. "name": "symfony/polyfill"
  12385. }
  12386. },
  12387. "autoload": {
  12388. "files": [
  12389. "bootstrap.php"
  12390. ],
  12391. "psr-4": {
  12392. "Symfony\\Polyfill\\Php83\\": ""
  12393. },
  12394. "classmap": [
  12395. "Resources/stubs"
  12396. ]
  12397. },
  12398. "notification-url": "https://packagist.org/downloads/",
  12399. "license": [
  12400. "MIT"
  12401. ],
  12402. "authors": [
  12403. {
  12404. "name": "Nicolas Grekas",
  12405. "email": "p@tchwork.com"
  12406. },
  12407. {
  12408. "name": "Symfony Community",
  12409. "homepage": "https://symfony.com/contributors"
  12410. }
  12411. ],
  12412. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12413. "homepage": "https://symfony.com",
  12414. "keywords": [
  12415. "compatibility",
  12416. "polyfill",
  12417. "portable",
  12418. "shim"
  12419. ],
  12420. "support": {
  12421. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  12422. },
  12423. "funding": [
  12424. {
  12425. "url": "https://symfony.com/sponsor",
  12426. "type": "custom"
  12427. },
  12428. {
  12429. "url": "https://github.com/fabpot",
  12430. "type": "github"
  12431. },
  12432. {
  12433. "url": "https://github.com/nicolas-grekas",
  12434. "type": "github"
  12435. },
  12436. {
  12437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12438. "type": "tidelift"
  12439. }
  12440. ],
  12441. "time": "2025-07-08T02:45:35+00:00"
  12442. },
  12443. {
  12444. "name": "symfony/polyfill-php84",
  12445. "version": "v1.33.0",
  12446. "source": {
  12447. "type": "git",
  12448. "url": "https://github.com/symfony/polyfill-php84.git",
  12449. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12450. },
  12451. "dist": {
  12452. "type": "zip",
  12453. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12454. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12455. "shasum": ""
  12456. },
  12457. "require": {
  12458. "php": ">=7.2"
  12459. },
  12460. "type": "library",
  12461. "extra": {
  12462. "thanks": {
  12463. "url": "https://github.com/symfony/polyfill",
  12464. "name": "symfony/polyfill"
  12465. }
  12466. },
  12467. "autoload": {
  12468. "files": [
  12469. "bootstrap.php"
  12470. ],
  12471. "psr-4": {
  12472. "Symfony\\Polyfill\\Php84\\": ""
  12473. },
  12474. "classmap": [
  12475. "Resources/stubs"
  12476. ]
  12477. },
  12478. "notification-url": "https://packagist.org/downloads/",
  12479. "license": [
  12480. "MIT"
  12481. ],
  12482. "authors": [
  12483. {
  12484. "name": "Nicolas Grekas",
  12485. "email": "p@tchwork.com"
  12486. },
  12487. {
  12488. "name": "Symfony Community",
  12489. "homepage": "https://symfony.com/contributors"
  12490. }
  12491. ],
  12492. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12493. "homepage": "https://symfony.com",
  12494. "keywords": [
  12495. "compatibility",
  12496. "polyfill",
  12497. "portable",
  12498. "shim"
  12499. ],
  12500. "support": {
  12501. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12502. },
  12503. "funding": [
  12504. {
  12505. "url": "https://symfony.com/sponsor",
  12506. "type": "custom"
  12507. },
  12508. {
  12509. "url": "https://github.com/fabpot",
  12510. "type": "github"
  12511. },
  12512. {
  12513. "url": "https://github.com/nicolas-grekas",
  12514. "type": "github"
  12515. },
  12516. {
  12517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12518. "type": "tidelift"
  12519. }
  12520. ],
  12521. "time": "2025-06-24T13:30:11+00:00"
  12522. },
  12523. {
  12524. "name": "symfony/process",
  12525. "version": "v6.4.33",
  12526. "source": {
  12527. "type": "git",
  12528. "url": "https://github.com/symfony/process.git",
  12529. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  12530. },
  12531. "dist": {
  12532. "type": "zip",
  12533. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  12534. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  12535. "shasum": ""
  12536. },
  12537. "require": {
  12538. "php": ">=8.1"
  12539. },
  12540. "type": "library",
  12541. "autoload": {
  12542. "psr-4": {
  12543. "Symfony\\Component\\Process\\": ""
  12544. },
  12545. "exclude-from-classmap": [
  12546. "/Tests/"
  12547. ]
  12548. },
  12549. "notification-url": "https://packagist.org/downloads/",
  12550. "license": [
  12551. "MIT"
  12552. ],
  12553. "authors": [
  12554. {
  12555. "name": "Fabien Potencier",
  12556. "email": "fabien@symfony.com"
  12557. },
  12558. {
  12559. "name": "Symfony Community",
  12560. "homepage": "https://symfony.com/contributors"
  12561. }
  12562. ],
  12563. "description": "Executes commands in sub-processes",
  12564. "homepage": "https://symfony.com",
  12565. "support": {
  12566. "source": "https://github.com/symfony/process/tree/v6.4.33"
  12567. },
  12568. "funding": [
  12569. {
  12570. "url": "https://symfony.com/sponsor",
  12571. "type": "custom"
  12572. },
  12573. {
  12574. "url": "https://github.com/fabpot",
  12575. "type": "github"
  12576. },
  12577. {
  12578. "url": "https://github.com/nicolas-grekas",
  12579. "type": "github"
  12580. },
  12581. {
  12582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12583. "type": "tidelift"
  12584. }
  12585. ],
  12586. "time": "2026-01-23T16:02:12+00:00"
  12587. },
  12588. {
  12589. "name": "symfony/psr-http-message-bridge",
  12590. "version": "v6.4.32",
  12591. "source": {
  12592. "type": "git",
  12593. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12594. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  12595. },
  12596. "dist": {
  12597. "type": "zip",
  12598. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  12599. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  12600. "shasum": ""
  12601. },
  12602. "require": {
  12603. "php": ">=8.1",
  12604. "psr/http-message": "^1.0|^2.0",
  12605. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12606. },
  12607. "conflict": {
  12608. "php-http/discovery": "<1.15",
  12609. "symfony/http-kernel": "<6.2"
  12610. },
  12611. "require-dev": {
  12612. "nyholm/psr7": "^1.1",
  12613. "php-http/discovery": "^1.15",
  12614. "psr/log": "^1.1.4|^2|^3",
  12615. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12616. "symfony/config": "^5.4|^6.0|^7.0",
  12617. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12618. "symfony/framework-bundle": "^6.2|^7.0",
  12619. "symfony/http-kernel": "^6.2|^7.0"
  12620. },
  12621. "type": "symfony-bridge",
  12622. "autoload": {
  12623. "psr-4": {
  12624. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12625. },
  12626. "exclude-from-classmap": [
  12627. "/Tests/"
  12628. ]
  12629. },
  12630. "notification-url": "https://packagist.org/downloads/",
  12631. "license": [
  12632. "MIT"
  12633. ],
  12634. "authors": [
  12635. {
  12636. "name": "Fabien Potencier",
  12637. "email": "fabien@symfony.com"
  12638. },
  12639. {
  12640. "name": "Symfony Community",
  12641. "homepage": "https://symfony.com/contributors"
  12642. }
  12643. ],
  12644. "description": "PSR HTTP message bridge",
  12645. "homepage": "https://symfony.com",
  12646. "keywords": [
  12647. "http",
  12648. "http-message",
  12649. "psr-17",
  12650. "psr-7"
  12651. ],
  12652. "support": {
  12653. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  12654. },
  12655. "funding": [
  12656. {
  12657. "url": "https://symfony.com/sponsor",
  12658. "type": "custom"
  12659. },
  12660. {
  12661. "url": "https://github.com/fabpot",
  12662. "type": "github"
  12663. },
  12664. {
  12665. "url": "https://github.com/nicolas-grekas",
  12666. "type": "github"
  12667. },
  12668. {
  12669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12670. "type": "tidelift"
  12671. }
  12672. ],
  12673. "time": "2026-01-02T11:59:06+00:00"
  12674. },
  12675. {
  12676. "name": "symfony/routing",
  12677. "version": "v6.4.34",
  12678. "source": {
  12679. "type": "git",
  12680. "url": "https://github.com/symfony/routing.git",
  12681. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  12682. },
  12683. "dist": {
  12684. "type": "zip",
  12685. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12686. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12687. "shasum": ""
  12688. },
  12689. "require": {
  12690. "php": ">=8.1",
  12691. "symfony/deprecation-contracts": "^2.5|^3"
  12692. },
  12693. "conflict": {
  12694. "doctrine/annotations": "<1.12",
  12695. "symfony/config": "<6.2",
  12696. "symfony/dependency-injection": "<5.4",
  12697. "symfony/yaml": "<5.4"
  12698. },
  12699. "require-dev": {
  12700. "doctrine/annotations": "^1.12|^2",
  12701. "psr/log": "^1|^2|^3",
  12702. "symfony/config": "^6.2|^7.0",
  12703. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12704. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12705. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12706. "symfony/yaml": "^5.4|^6.0|^7.0"
  12707. },
  12708. "type": "library",
  12709. "autoload": {
  12710. "psr-4": {
  12711. "Symfony\\Component\\Routing\\": ""
  12712. },
  12713. "exclude-from-classmap": [
  12714. "/Tests/"
  12715. ]
  12716. },
  12717. "notification-url": "https://packagist.org/downloads/",
  12718. "license": [
  12719. "MIT"
  12720. ],
  12721. "authors": [
  12722. {
  12723. "name": "Fabien Potencier",
  12724. "email": "fabien@symfony.com"
  12725. },
  12726. {
  12727. "name": "Symfony Community",
  12728. "homepage": "https://symfony.com/contributors"
  12729. }
  12730. ],
  12731. "description": "Maps an HTTP request to a set of configuration variables",
  12732. "homepage": "https://symfony.com",
  12733. "keywords": [
  12734. "router",
  12735. "routing",
  12736. "uri",
  12737. "url"
  12738. ],
  12739. "support": {
  12740. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  12741. },
  12742. "funding": [
  12743. {
  12744. "url": "https://symfony.com/sponsor",
  12745. "type": "custom"
  12746. },
  12747. {
  12748. "url": "https://github.com/fabpot",
  12749. "type": "github"
  12750. },
  12751. {
  12752. "url": "https://github.com/nicolas-grekas",
  12753. "type": "github"
  12754. },
  12755. {
  12756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12757. "type": "tidelift"
  12758. }
  12759. ],
  12760. "time": "2026-02-24T17:34:50+00:00"
  12761. },
  12762. {
  12763. "name": "symfony/serializer",
  12764. "version": "v6.4.35",
  12765. "source": {
  12766. "type": "git",
  12767. "url": "https://github.com/symfony/serializer.git",
  12768. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  12769. },
  12770. "dist": {
  12771. "type": "zip",
  12772. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  12773. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  12774. "shasum": ""
  12775. },
  12776. "require": {
  12777. "php": ">=8.1",
  12778. "symfony/deprecation-contracts": "^2.5|^3",
  12779. "symfony/polyfill-ctype": "~1.8"
  12780. },
  12781. "conflict": {
  12782. "doctrine/annotations": "<1.12",
  12783. "phpdocumentor/reflection-docblock": "<3.2.2",
  12784. "phpdocumentor/type-resolver": "<1.4.0",
  12785. "symfony/dependency-injection": "<5.4",
  12786. "symfony/property-access": "<5.4",
  12787. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12788. "symfony/uid": "<5.4",
  12789. "symfony/validator": "<6.4",
  12790. "symfony/yaml": "<5.4"
  12791. },
  12792. "require-dev": {
  12793. "doctrine/annotations": "^1.12|^2",
  12794. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12795. "seld/jsonlint": "^1.10",
  12796. "symfony/cache": "^5.4|^6.0|^7.0",
  12797. "symfony/config": "^5.4|^6.0|^7.0",
  12798. "symfony/console": "^5.4|^6.0|^7.0",
  12799. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12800. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12801. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12802. "symfony/form": "^5.4|^6.0|^7.0",
  12803. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12804. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12805. "symfony/messenger": "^5.4|^6.0|^7.0",
  12806. "symfony/mime": "^5.4|^6.0|^7.0",
  12807. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12808. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12809. "symfony/translation-contracts": "^2.5|^3",
  12810. "symfony/uid": "^5.4|^6.0|^7.0",
  12811. "symfony/validator": "^6.4|^7.0",
  12812. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12813. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12814. "symfony/yaml": "^5.4|^6.0|^7.0"
  12815. },
  12816. "type": "library",
  12817. "autoload": {
  12818. "psr-4": {
  12819. "Symfony\\Component\\Serializer\\": ""
  12820. },
  12821. "exclude-from-classmap": [
  12822. "/Tests/"
  12823. ]
  12824. },
  12825. "notification-url": "https://packagist.org/downloads/",
  12826. "license": [
  12827. "MIT"
  12828. ],
  12829. "authors": [
  12830. {
  12831. "name": "Fabien Potencier",
  12832. "email": "fabien@symfony.com"
  12833. },
  12834. {
  12835. "name": "Symfony Community",
  12836. "homepage": "https://symfony.com/contributors"
  12837. }
  12838. ],
  12839. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12840. "homepage": "https://symfony.com",
  12841. "support": {
  12842. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  12843. },
  12844. "funding": [
  12845. {
  12846. "url": "https://symfony.com/sponsor",
  12847. "type": "custom"
  12848. },
  12849. {
  12850. "url": "https://github.com/fabpot",
  12851. "type": "github"
  12852. },
  12853. {
  12854. "url": "https://github.com/nicolas-grekas",
  12855. "type": "github"
  12856. },
  12857. {
  12858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12859. "type": "tidelift"
  12860. }
  12861. ],
  12862. "time": "2026-03-06T11:03:24+00:00"
  12863. },
  12864. {
  12865. "name": "symfony/service-contracts",
  12866. "version": "v3.6.1",
  12867. "source": {
  12868. "type": "git",
  12869. "url": "https://github.com/symfony/service-contracts.git",
  12870. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  12871. },
  12872. "dist": {
  12873. "type": "zip",
  12874. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  12875. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  12876. "shasum": ""
  12877. },
  12878. "require": {
  12879. "php": ">=8.1",
  12880. "psr/container": "^1.1|^2.0",
  12881. "symfony/deprecation-contracts": "^2.5|^3"
  12882. },
  12883. "conflict": {
  12884. "ext-psr": "<1.1|>=2"
  12885. },
  12886. "type": "library",
  12887. "extra": {
  12888. "thanks": {
  12889. "url": "https://github.com/symfony/contracts",
  12890. "name": "symfony/contracts"
  12891. },
  12892. "branch-alias": {
  12893. "dev-main": "3.6-dev"
  12894. }
  12895. },
  12896. "autoload": {
  12897. "psr-4": {
  12898. "Symfony\\Contracts\\Service\\": ""
  12899. },
  12900. "exclude-from-classmap": [
  12901. "/Test/"
  12902. ]
  12903. },
  12904. "notification-url": "https://packagist.org/downloads/",
  12905. "license": [
  12906. "MIT"
  12907. ],
  12908. "authors": [
  12909. {
  12910. "name": "Nicolas Grekas",
  12911. "email": "p@tchwork.com"
  12912. },
  12913. {
  12914. "name": "Symfony Community",
  12915. "homepage": "https://symfony.com/contributors"
  12916. }
  12917. ],
  12918. "description": "Generic abstractions related to writing services",
  12919. "homepage": "https://symfony.com",
  12920. "keywords": [
  12921. "abstractions",
  12922. "contracts",
  12923. "decoupling",
  12924. "interfaces",
  12925. "interoperability",
  12926. "standards"
  12927. ],
  12928. "support": {
  12929. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  12930. },
  12931. "funding": [
  12932. {
  12933. "url": "https://symfony.com/sponsor",
  12934. "type": "custom"
  12935. },
  12936. {
  12937. "url": "https://github.com/fabpot",
  12938. "type": "github"
  12939. },
  12940. {
  12941. "url": "https://github.com/nicolas-grekas",
  12942. "type": "github"
  12943. },
  12944. {
  12945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12946. "type": "tidelift"
  12947. }
  12948. ],
  12949. "time": "2025-07-15T11:30:57+00:00"
  12950. },
  12951. {
  12952. "name": "symfony/string",
  12953. "version": "v6.4.34",
  12954. "source": {
  12955. "type": "git",
  12956. "url": "https://github.com/symfony/string.git",
  12957. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  12958. },
  12959. "dist": {
  12960. "type": "zip",
  12961. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12962. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12963. "shasum": ""
  12964. },
  12965. "require": {
  12966. "php": ">=8.1",
  12967. "symfony/polyfill-ctype": "~1.8",
  12968. "symfony/polyfill-intl-grapheme": "~1.0",
  12969. "symfony/polyfill-intl-normalizer": "~1.0",
  12970. "symfony/polyfill-mbstring": "~1.0"
  12971. },
  12972. "conflict": {
  12973. "symfony/translation-contracts": "<2.5"
  12974. },
  12975. "require-dev": {
  12976. "symfony/http-client": "^5.4|^6.0|^7.0",
  12977. "symfony/intl": "^6.2|^7.0",
  12978. "symfony/translation-contracts": "^2.5|^3.0",
  12979. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12980. },
  12981. "type": "library",
  12982. "autoload": {
  12983. "files": [
  12984. "Resources/functions.php"
  12985. ],
  12986. "psr-4": {
  12987. "Symfony\\Component\\String\\": ""
  12988. },
  12989. "exclude-from-classmap": [
  12990. "/Tests/"
  12991. ]
  12992. },
  12993. "notification-url": "https://packagist.org/downloads/",
  12994. "license": [
  12995. "MIT"
  12996. ],
  12997. "authors": [
  12998. {
  12999. "name": "Nicolas Grekas",
  13000. "email": "p@tchwork.com"
  13001. },
  13002. {
  13003. "name": "Symfony Community",
  13004. "homepage": "https://symfony.com/contributors"
  13005. }
  13006. ],
  13007. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  13008. "homepage": "https://symfony.com",
  13009. "keywords": [
  13010. "grapheme",
  13011. "i18n",
  13012. "string",
  13013. "unicode",
  13014. "utf-8",
  13015. "utf8"
  13016. ],
  13017. "support": {
  13018. "source": "https://github.com/symfony/string/tree/v6.4.34"
  13019. },
  13020. "funding": [
  13021. {
  13022. "url": "https://symfony.com/sponsor",
  13023. "type": "custom"
  13024. },
  13025. {
  13026. "url": "https://github.com/fabpot",
  13027. "type": "github"
  13028. },
  13029. {
  13030. "url": "https://github.com/nicolas-grekas",
  13031. "type": "github"
  13032. },
  13033. {
  13034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13035. "type": "tidelift"
  13036. }
  13037. ],
  13038. "time": "2026-02-08T20:44:54+00:00"
  13039. },
  13040. {
  13041. "name": "symfony/translation-contracts",
  13042. "version": "v3.6.1",
  13043. "source": {
  13044. "type": "git",
  13045. "url": "https://github.com/symfony/translation-contracts.git",
  13046. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  13047. },
  13048. "dist": {
  13049. "type": "zip",
  13050. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  13051. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  13052. "shasum": ""
  13053. },
  13054. "require": {
  13055. "php": ">=8.1"
  13056. },
  13057. "type": "library",
  13058. "extra": {
  13059. "thanks": {
  13060. "url": "https://github.com/symfony/contracts",
  13061. "name": "symfony/contracts"
  13062. },
  13063. "branch-alias": {
  13064. "dev-main": "3.6-dev"
  13065. }
  13066. },
  13067. "autoload": {
  13068. "psr-4": {
  13069. "Symfony\\Contracts\\Translation\\": ""
  13070. },
  13071. "exclude-from-classmap": [
  13072. "/Test/"
  13073. ]
  13074. },
  13075. "notification-url": "https://packagist.org/downloads/",
  13076. "license": [
  13077. "MIT"
  13078. ],
  13079. "authors": [
  13080. {
  13081. "name": "Nicolas Grekas",
  13082. "email": "p@tchwork.com"
  13083. },
  13084. {
  13085. "name": "Symfony Community",
  13086. "homepage": "https://symfony.com/contributors"
  13087. }
  13088. ],
  13089. "description": "Generic abstractions related to translation",
  13090. "homepage": "https://symfony.com",
  13091. "keywords": [
  13092. "abstractions",
  13093. "contracts",
  13094. "decoupling",
  13095. "interfaces",
  13096. "interoperability",
  13097. "standards"
  13098. ],
  13099. "support": {
  13100. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  13101. },
  13102. "funding": [
  13103. {
  13104. "url": "https://symfony.com/sponsor",
  13105. "type": "custom"
  13106. },
  13107. {
  13108. "url": "https://github.com/fabpot",
  13109. "type": "github"
  13110. },
  13111. {
  13112. "url": "https://github.com/nicolas-grekas",
  13113. "type": "github"
  13114. },
  13115. {
  13116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13117. "type": "tidelift"
  13118. }
  13119. ],
  13120. "time": "2025-07-15T13:41:35+00:00"
  13121. },
  13122. {
  13123. "name": "symfony/validator",
  13124. "version": "v6.4.35",
  13125. "source": {
  13126. "type": "git",
  13127. "url": "https://github.com/symfony/validator.git",
  13128. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  13129. },
  13130. "dist": {
  13131. "type": "zip",
  13132. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13133. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13134. "shasum": ""
  13135. },
  13136. "require": {
  13137. "php": ">=8.1",
  13138. "symfony/deprecation-contracts": "^2.5|^3",
  13139. "symfony/polyfill-ctype": "~1.8",
  13140. "symfony/polyfill-mbstring": "~1.0",
  13141. "symfony/polyfill-php83": "^1.27",
  13142. "symfony/translation-contracts": "^2.5|^3"
  13143. },
  13144. "conflict": {
  13145. "doctrine/annotations": "<1.13",
  13146. "doctrine/lexer": "<1.1",
  13147. "symfony/dependency-injection": "<5.4",
  13148. "symfony/expression-language": "<5.4",
  13149. "symfony/http-kernel": "<5.4",
  13150. "symfony/intl": "<5.4",
  13151. "symfony/property-info": "<5.4",
  13152. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13153. "symfony/yaml": "<5.4"
  13154. },
  13155. "require-dev": {
  13156. "doctrine/annotations": "^1.13|^2",
  13157. "egulias/email-validator": "^2.1.10|^3|^4",
  13158. "symfony/cache": "^5.4|^6.0|^7.0",
  13159. "symfony/config": "^5.4|^6.0|^7.0",
  13160. "symfony/console": "^5.4|^6.0|^7.0",
  13161. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13162. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13163. "symfony/finder": "^5.4|^6.0|^7.0",
  13164. "symfony/http-client": "^5.4|^6.0|^7.0",
  13165. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13166. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13167. "symfony/intl": "^5.4|^6.0|^7.0",
  13168. "symfony/mime": "^5.4|^6.0|^7.0",
  13169. "symfony/property-access": "^5.4|^6.0|^7.0",
  13170. "symfony/property-info": "^5.4|^6.0|^7.0",
  13171. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13172. "symfony/yaml": "^5.4|^6.0|^7.0"
  13173. },
  13174. "type": "library",
  13175. "autoload": {
  13176. "psr-4": {
  13177. "Symfony\\Component\\Validator\\": ""
  13178. },
  13179. "exclude-from-classmap": [
  13180. "/Tests/",
  13181. "/Resources/bin/"
  13182. ]
  13183. },
  13184. "notification-url": "https://packagist.org/downloads/",
  13185. "license": [
  13186. "MIT"
  13187. ],
  13188. "authors": [
  13189. {
  13190. "name": "Fabien Potencier",
  13191. "email": "fabien@symfony.com"
  13192. },
  13193. {
  13194. "name": "Symfony Community",
  13195. "homepage": "https://symfony.com/contributors"
  13196. }
  13197. ],
  13198. "description": "Provides tools to validate values",
  13199. "homepage": "https://symfony.com",
  13200. "support": {
  13201. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  13202. },
  13203. "funding": [
  13204. {
  13205. "url": "https://symfony.com/sponsor",
  13206. "type": "custom"
  13207. },
  13208. {
  13209. "url": "https://github.com/fabpot",
  13210. "type": "github"
  13211. },
  13212. {
  13213. "url": "https://github.com/nicolas-grekas",
  13214. "type": "github"
  13215. },
  13216. {
  13217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13218. "type": "tidelift"
  13219. }
  13220. ],
  13221. "time": "2026-03-02T17:53:19+00:00"
  13222. },
  13223. {
  13224. "name": "symfony/var-dumper",
  13225. "version": "v6.4.32",
  13226. "source": {
  13227. "type": "git",
  13228. "url": "https://github.com/symfony/var-dumper.git",
  13229. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  13230. },
  13231. "dist": {
  13232. "type": "zip",
  13233. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  13234. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  13235. "shasum": ""
  13236. },
  13237. "require": {
  13238. "php": ">=8.1",
  13239. "symfony/deprecation-contracts": "^2.5|^3",
  13240. "symfony/polyfill-mbstring": "~1.0"
  13241. },
  13242. "conflict": {
  13243. "symfony/console": "<5.4"
  13244. },
  13245. "require-dev": {
  13246. "symfony/console": "^5.4|^6.0|^7.0",
  13247. "symfony/error-handler": "^6.3|^7.0",
  13248. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13249. "symfony/process": "^5.4|^6.0|^7.0",
  13250. "symfony/uid": "^5.4|^6.0|^7.0",
  13251. "twig/twig": "^2.13|^3.0.4"
  13252. },
  13253. "bin": [
  13254. "Resources/bin/var-dump-server"
  13255. ],
  13256. "type": "library",
  13257. "autoload": {
  13258. "files": [
  13259. "Resources/functions/dump.php"
  13260. ],
  13261. "psr-4": {
  13262. "Symfony\\Component\\VarDumper\\": ""
  13263. },
  13264. "exclude-from-classmap": [
  13265. "/Tests/"
  13266. ]
  13267. },
  13268. "notification-url": "https://packagist.org/downloads/",
  13269. "license": [
  13270. "MIT"
  13271. ],
  13272. "authors": [
  13273. {
  13274. "name": "Nicolas Grekas",
  13275. "email": "p@tchwork.com"
  13276. },
  13277. {
  13278. "name": "Symfony Community",
  13279. "homepage": "https://symfony.com/contributors"
  13280. }
  13281. ],
  13282. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13283. "homepage": "https://symfony.com",
  13284. "keywords": [
  13285. "debug",
  13286. "dump"
  13287. ],
  13288. "support": {
  13289. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  13290. },
  13291. "funding": [
  13292. {
  13293. "url": "https://symfony.com/sponsor",
  13294. "type": "custom"
  13295. },
  13296. {
  13297. "url": "https://github.com/fabpot",
  13298. "type": "github"
  13299. },
  13300. {
  13301. "url": "https://github.com/nicolas-grekas",
  13302. "type": "github"
  13303. },
  13304. {
  13305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13306. "type": "tidelift"
  13307. }
  13308. ],
  13309. "time": "2026-01-01T13:34:06+00:00"
  13310. },
  13311. {
  13312. "name": "symfony/var-exporter",
  13313. "version": "v6.4.26",
  13314. "source": {
  13315. "type": "git",
  13316. "url": "https://github.com/symfony/var-exporter.git",
  13317. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13318. },
  13319. "dist": {
  13320. "type": "zip",
  13321. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13322. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13323. "shasum": ""
  13324. },
  13325. "require": {
  13326. "php": ">=8.1",
  13327. "symfony/deprecation-contracts": "^2.5|^3"
  13328. },
  13329. "require-dev": {
  13330. "symfony/property-access": "^6.4|^7.0",
  13331. "symfony/serializer": "^6.4|^7.0",
  13332. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13333. },
  13334. "type": "library",
  13335. "autoload": {
  13336. "psr-4": {
  13337. "Symfony\\Component\\VarExporter\\": ""
  13338. },
  13339. "exclude-from-classmap": [
  13340. "/Tests/"
  13341. ]
  13342. },
  13343. "notification-url": "https://packagist.org/downloads/",
  13344. "license": [
  13345. "MIT"
  13346. ],
  13347. "authors": [
  13348. {
  13349. "name": "Nicolas Grekas",
  13350. "email": "p@tchwork.com"
  13351. },
  13352. {
  13353. "name": "Symfony Community",
  13354. "homepage": "https://symfony.com/contributors"
  13355. }
  13356. ],
  13357. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13358. "homepage": "https://symfony.com",
  13359. "keywords": [
  13360. "clone",
  13361. "construct",
  13362. "export",
  13363. "hydrate",
  13364. "instantiate",
  13365. "lazy-loading",
  13366. "proxy",
  13367. "serialize"
  13368. ],
  13369. "support": {
  13370. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13371. },
  13372. "funding": [
  13373. {
  13374. "url": "https://symfony.com/sponsor",
  13375. "type": "custom"
  13376. },
  13377. {
  13378. "url": "https://github.com/fabpot",
  13379. "type": "github"
  13380. },
  13381. {
  13382. "url": "https://github.com/nicolas-grekas",
  13383. "type": "github"
  13384. },
  13385. {
  13386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13387. "type": "tidelift"
  13388. }
  13389. ],
  13390. "time": "2025-09-11T09:57:09+00:00"
  13391. },
  13392. {
  13393. "name": "symfony/yaml",
  13394. "version": "v6.4.34",
  13395. "source": {
  13396. "type": "git",
  13397. "url": "https://github.com/symfony/yaml.git",
  13398. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  13399. },
  13400. "dist": {
  13401. "type": "zip",
  13402. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13403. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13404. "shasum": ""
  13405. },
  13406. "require": {
  13407. "php": ">=8.1",
  13408. "symfony/deprecation-contracts": "^2.5|^3",
  13409. "symfony/polyfill-ctype": "^1.8"
  13410. },
  13411. "conflict": {
  13412. "symfony/console": "<5.4"
  13413. },
  13414. "require-dev": {
  13415. "symfony/console": "^5.4|^6.0|^7.0"
  13416. },
  13417. "bin": [
  13418. "Resources/bin/yaml-lint"
  13419. ],
  13420. "type": "library",
  13421. "autoload": {
  13422. "psr-4": {
  13423. "Symfony\\Component\\Yaml\\": ""
  13424. },
  13425. "exclude-from-classmap": [
  13426. "/Tests/"
  13427. ]
  13428. },
  13429. "notification-url": "https://packagist.org/downloads/",
  13430. "license": [
  13431. "MIT"
  13432. ],
  13433. "authors": [
  13434. {
  13435. "name": "Fabien Potencier",
  13436. "email": "fabien@symfony.com"
  13437. },
  13438. {
  13439. "name": "Symfony Community",
  13440. "homepage": "https://symfony.com/contributors"
  13441. }
  13442. ],
  13443. "description": "Loads and dumps YAML files",
  13444. "homepage": "https://symfony.com",
  13445. "support": {
  13446. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  13447. },
  13448. "funding": [
  13449. {
  13450. "url": "https://symfony.com/sponsor",
  13451. "type": "custom"
  13452. },
  13453. {
  13454. "url": "https://github.com/fabpot",
  13455. "type": "github"
  13456. },
  13457. {
  13458. "url": "https://github.com/nicolas-grekas",
  13459. "type": "github"
  13460. },
  13461. {
  13462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13463. "type": "tidelift"
  13464. }
  13465. ],
  13466. "time": "2026-02-06T18:32:11+00:00"
  13467. },
  13468. {
  13469. "name": "twig/twig",
  13470. "version": "v3.22.2",
  13471. "source": {
  13472. "type": "git",
  13473. "url": "https://github.com/twigphp/Twig.git",
  13474. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  13475. },
  13476. "dist": {
  13477. "type": "zip",
  13478. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13479. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13480. "shasum": ""
  13481. },
  13482. "require": {
  13483. "php": ">=8.1.0",
  13484. "symfony/deprecation-contracts": "^2.5|^3",
  13485. "symfony/polyfill-ctype": "^1.8",
  13486. "symfony/polyfill-mbstring": "^1.3"
  13487. },
  13488. "require-dev": {
  13489. "phpstan/phpstan": "^2.0",
  13490. "psr/container": "^1.0|^2.0",
  13491. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13492. },
  13493. "type": "library",
  13494. "autoload": {
  13495. "files": [
  13496. "src/Resources/core.php",
  13497. "src/Resources/debug.php",
  13498. "src/Resources/escaper.php",
  13499. "src/Resources/string_loader.php"
  13500. ],
  13501. "psr-4": {
  13502. "Twig\\": "src/"
  13503. }
  13504. },
  13505. "notification-url": "https://packagist.org/downloads/",
  13506. "license": [
  13507. "BSD-3-Clause"
  13508. ],
  13509. "authors": [
  13510. {
  13511. "name": "Fabien Potencier",
  13512. "email": "fabien@symfony.com",
  13513. "homepage": "http://fabien.potencier.org",
  13514. "role": "Lead Developer"
  13515. },
  13516. {
  13517. "name": "Twig Team",
  13518. "role": "Contributors"
  13519. },
  13520. {
  13521. "name": "Armin Ronacher",
  13522. "email": "armin.ronacher@active-4.com",
  13523. "role": "Project Founder"
  13524. }
  13525. ],
  13526. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13527. "homepage": "https://twig.symfony.com",
  13528. "keywords": [
  13529. "templating"
  13530. ],
  13531. "support": {
  13532. "issues": "https://github.com/twigphp/Twig/issues",
  13533. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  13534. },
  13535. "funding": [
  13536. {
  13537. "url": "https://github.com/fabpot",
  13538. "type": "github"
  13539. },
  13540. {
  13541. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13542. "type": "tidelift"
  13543. }
  13544. ],
  13545. "time": "2025-12-14T11:28:47+00:00"
  13546. },
  13547. {
  13548. "name": "webflo/drupal-finder",
  13549. "version": "1.3.1",
  13550. "source": {
  13551. "type": "git",
  13552. "url": "https://github.com/webflo/drupal-finder.git",
  13553. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13554. },
  13555. "dist": {
  13556. "type": "zip",
  13557. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13558. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13559. "shasum": ""
  13560. },
  13561. "require": {
  13562. "composer-runtime-api": "^2.2",
  13563. "php": ">=8.1"
  13564. },
  13565. "require-dev": {
  13566. "mikey179/vfsstream": "^1.6",
  13567. "phpunit/phpunit": "^10.4",
  13568. "symfony/process": "^6.4"
  13569. },
  13570. "type": "library",
  13571. "autoload": {
  13572. "psr-4": {
  13573. "DrupalFinder\\": "src/"
  13574. }
  13575. },
  13576. "notification-url": "https://packagist.org/downloads/",
  13577. "license": [
  13578. "GPL-2.0-or-later"
  13579. ],
  13580. "authors": [
  13581. {
  13582. "name": "Florian Weber",
  13583. "email": "florian@webflo.org"
  13584. }
  13585. ],
  13586. "description": "Helper class to locate a Drupal installation.",
  13587. "support": {
  13588. "issues": "https://github.com/webflo/drupal-finder/issues",
  13589. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13590. },
  13591. "time": "2024-06-28T13:45:36+00:00"
  13592. },
  13593. {
  13594. "name": "wikimedia/composer-merge-plugin",
  13595. "version": "v2.1.0",
  13596. "source": {
  13597. "type": "git",
  13598. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13599. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13600. },
  13601. "dist": {
  13602. "type": "zip",
  13603. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13604. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13605. "shasum": ""
  13606. },
  13607. "require": {
  13608. "composer-plugin-api": "^1.1||^2.0",
  13609. "php": ">=7.2.0"
  13610. },
  13611. "require-dev": {
  13612. "composer/composer": "^1.1||^2.0",
  13613. "ext-json": "*",
  13614. "mediawiki/mediawiki-phan-config": "0.11.1",
  13615. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13616. "phpspec/prophecy": "~1.15.0",
  13617. "phpunit/phpunit": "^8.5||^9.0",
  13618. "squizlabs/php_codesniffer": "~3.7.1"
  13619. },
  13620. "type": "composer-plugin",
  13621. "extra": {
  13622. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13623. "branch-alias": {
  13624. "dev-master": "2.x-dev"
  13625. }
  13626. },
  13627. "autoload": {
  13628. "psr-4": {
  13629. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13630. }
  13631. },
  13632. "notification-url": "https://packagist.org/downloads/",
  13633. "license": [
  13634. "MIT"
  13635. ],
  13636. "authors": [
  13637. {
  13638. "name": "Bryan Davis",
  13639. "email": "bd808@wikimedia.org"
  13640. }
  13641. ],
  13642. "description": "Composer plugin to merge multiple composer.json files",
  13643. "support": {
  13644. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13645. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13646. },
  13647. "time": "2023-04-15T19:07:00+00:00"
  13648. },
  13649. {
  13650. "name": "willdurand/geocoder",
  13651. "version": "4.6.0",
  13652. "source": {
  13653. "type": "git",
  13654. "url": "https://github.com/geocoder-php/php-common.git",
  13655. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1"
  13656. },
  13657. "dist": {
  13658. "type": "zip",
  13659. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13660. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13661. "shasum": ""
  13662. },
  13663. "require": {
  13664. "php": "^7.4 || ^8.0"
  13665. },
  13666. "require-dev": {
  13667. "nyholm/nsa": "^1.1",
  13668. "phpunit/phpunit": "^9.5",
  13669. "symfony/stopwatch": "~2.5"
  13670. },
  13671. "suggest": {
  13672. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13673. },
  13674. "type": "library",
  13675. "extra": {
  13676. "branch-alias": {
  13677. "dev-master": "4.1-dev"
  13678. }
  13679. },
  13680. "autoload": {
  13681. "psr-4": {
  13682. "Geocoder\\": ""
  13683. },
  13684. "exclude-from-classmap": [
  13685. "/Tests/"
  13686. ]
  13687. },
  13688. "notification-url": "https://packagist.org/downloads/",
  13689. "license": [
  13690. "MIT"
  13691. ],
  13692. "authors": [
  13693. {
  13694. "name": "William Durand",
  13695. "email": "william.durand1@gmail.com"
  13696. }
  13697. ],
  13698. "description": "Common files for PHP Geocoder",
  13699. "homepage": "http://geocoder-php.org",
  13700. "keywords": [
  13701. "abstraction",
  13702. "geocoder",
  13703. "geocoding",
  13704. "geoip"
  13705. ],
  13706. "support": {
  13707. "source": "https://github.com/geocoder-php/php-common/tree/4.6.0"
  13708. },
  13709. "time": "2022-07-30T11:09:43+00:00"
  13710. }
  13711. ],
  13712. "packages-dev": [],
  13713. "aliases": [],
  13714. "minimum-stability": "stable",
  13715. "stability-flags": {
  13716. "drupal/advanced_text_formatter": 5,
  13717. "drupal/computed_token_field": 10,
  13718. "drupal/config_update": 15,
  13719. "drupal/context": 5,
  13720. "drupal/date_range_formatter": 20,
  13721. "drupal/email_registration": 5,
  13722. "drupal/entity_clone": 20,
  13723. "drupal/inline_entity_form": 5,
  13724. "drupal/page_manager": 5,
  13725. "drupal/pathologic": 15,
  13726. "drupal/smtp": 10,
  13727. "drupal/synonyms": 10,
  13728. "drupal/translation_views": 15,
  13729. "drupal/ultimate_cron": 15
  13730. },
  13731. "prefer-stable": true,
  13732. "prefer-lowest": false,
  13733. "platform": {},
  13734. "platform-dev": {},
  13735. "plugin-api-version": "2.9.0"
  13736. }