composer.lock 502 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679
  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": "8d14452f04c549de70ac66ba42e6522d",
  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": "v1.4.2",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  202. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.2 || ^2.0",
  207. "php": ">=7.3"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.10",
  212. "phpunit/phpunit": "^9.5",
  213. "squizlabs/php_codesniffer": "^3.6",
  214. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "1.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/v1.4.2"
  252. },
  253. "time": "2023-02-15T10:11:14+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.3",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/composer/semver.git",
  421. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  426. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  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.3"
  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. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  491. "type": "tidelift"
  492. }
  493. ],
  494. "time": "2024-09-19T14:15:21+00:00"
  495. },
  496. {
  497. "name": "consolidation/annotated-command",
  498. "version": "4.10.2",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/consolidation/annotated-command.git",
  502. "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e550ea4f177f199e0e9451168342bf3f321d92b0",
  507. "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "consolidation/output-formatters": "^4.3.1",
  512. "php": ">=7.1.3",
  513. "psr/log": "^1 || ^2 || ^3",
  514. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  515. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  516. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  517. },
  518. "require-dev": {
  519. "composer-runtime-api": "^2.0",
  520. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  521. "squizlabs/php_codesniffer": "^3",
  522. "yoast/phpunit-polyfills": "^0.2.0"
  523. },
  524. "type": "library",
  525. "extra": {
  526. "branch-alias": {
  527. "dev-main": "4.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "psr-4": {
  532. "Consolidation\\AnnotatedCommand\\": "src"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Greg Anderson",
  542. "email": "greg.1.anderson@greenknowe.org"
  543. }
  544. ],
  545. "description": "Initialize Symfony Console commands from annotated command class methods.",
  546. "support": {
  547. "issues": "https://github.com/consolidation/annotated-command/issues",
  548. "source": "https://github.com/consolidation/annotated-command/tree/4.10.2"
  549. },
  550. "time": "2025-07-16T20:54:09+00:00"
  551. },
  552. {
  553. "name": "consolidation/config",
  554. "version": "2.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/consolidation/config.git",
  558. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  563. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  568. "grasmash/expander": "^2.0.1 || ^3",
  569. "php": ">=7.1.3",
  570. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  571. },
  572. "require-dev": {
  573. "ext-json": "*",
  574. "phpunit/phpunit": ">=7.5.20",
  575. "squizlabs/php_codesniffer": "^3",
  576. "symfony/console": "^4 || ^5 || ^6",
  577. "symfony/yaml": "^4 || ^5 || ^6",
  578. "yoast/phpunit-polyfills": "^1"
  579. },
  580. "suggest": {
  581. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  582. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  583. },
  584. "type": "library",
  585. "extra": {
  586. "branch-alias": {
  587. "dev-main": "2.x-dev"
  588. }
  589. },
  590. "autoload": {
  591. "psr-4": {
  592. "Consolidation\\Config\\": "src"
  593. }
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Greg Anderson",
  602. "email": "greg.1.anderson@greenknowe.org"
  603. }
  604. ],
  605. "description": "Provide configuration services for a commandline tool.",
  606. "support": {
  607. "issues": "https://github.com/consolidation/config/issues",
  608. "source": "https://github.com/consolidation/config/tree/2.1.2"
  609. },
  610. "time": "2022-10-06T17:48:03+00:00"
  611. },
  612. {
  613. "name": "consolidation/filter-via-dot-access-data",
  614. "version": "2.0.2",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  618. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  623. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  624. "shasum": ""
  625. },
  626. "require": {
  627. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  628. "php": ">=7.1.3"
  629. },
  630. "require-dev": {
  631. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  632. "squizlabs/php_codesniffer": "^3",
  633. "yoast/phpunit-polyfills": "^0.2.0"
  634. },
  635. "type": "library",
  636. "extra": {
  637. "branch-alias": {
  638. "dev-main": "2.x-dev"
  639. }
  640. },
  641. "autoload": {
  642. "psr-4": {
  643. "Consolidation\\Filter\\": "src"
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Greg Anderson",
  653. "email": "greg.1.anderson@greenknowe.org"
  654. }
  655. ],
  656. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  657. "support": {
  658. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  659. },
  660. "time": "2021-12-30T03:56:08+00:00"
  661. },
  662. {
  663. "name": "consolidation/log",
  664. "version": "3.1.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/log.git",
  668. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
  673. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": ">=8.0.0",
  678. "psr/log": "^3",
  679. "symfony/console": "^5 || ^6 || ^7"
  680. },
  681. "require-dev": {
  682. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  683. "squizlabs/php_codesniffer": "^3",
  684. "yoast/phpunit-polyfills": "^0.2.0"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "platform": {
  689. "php": "8.2.17"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Consolidation\\Log\\": "src"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Greg Anderson",
  704. "email": "greg.1.anderson@greenknowe.org"
  705. }
  706. ],
  707. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  708. "support": {
  709. "issues": "https://github.com/consolidation/log/issues",
  710. "source": "https://github.com/consolidation/log/tree/3.1.0"
  711. },
  712. "time": "2024-04-04T23:50:25+00:00"
  713. },
  714. {
  715. "name": "consolidation/output-formatters",
  716. "version": "4.6.0",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/consolidation/output-formatters.git",
  720. "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5fd5656718d7068a02d046f418a7ba873d5abbfe",
  725. "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  730. "php": ">=7.1.3",
  731. "symfony/console": "^4 || ^5 || ^6 || ^7",
  732. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  733. },
  734. "require-dev": {
  735. "php-coveralls/php-coveralls": "^2.4.2",
  736. "phpunit/phpunit": "^7 || ^8 || ^9",
  737. "squizlabs/php_codesniffer": "^3",
  738. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  739. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  740. "yoast/phpunit-polyfills": "^1"
  741. },
  742. "suggest": {
  743. "symfony/var-dumper": "For using the var_dump formatter"
  744. },
  745. "type": "library",
  746. "autoload": {
  747. "psr-4": {
  748. "Consolidation\\OutputFormatters\\": "src"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Greg Anderson",
  758. "email": "greg.1.anderson@greenknowe.org"
  759. }
  760. ],
  761. "description": "Format text by applying transformations provided by plug-in formatters.",
  762. "support": {
  763. "issues": "https://github.com/consolidation/output-formatters/issues",
  764. "source": "https://github.com/consolidation/output-formatters/tree/4.6.0"
  765. },
  766. "time": "2024-10-18T14:02:48+00:00"
  767. },
  768. {
  769. "name": "consolidation/robo",
  770. "version": "4.0.6",
  771. "source": {
  772. "type": "git",
  773. "url": "https://github.com/consolidation/robo.git",
  774. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  775. },
  776. "dist": {
  777. "type": "zip",
  778. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  779. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  780. "shasum": ""
  781. },
  782. "require": {
  783. "consolidation/annotated-command": "^4.8.1",
  784. "consolidation/config": "^2.0.1",
  785. "consolidation/log": "^2.0.2 || ^3",
  786. "consolidation/output-formatters": "^4.1.2",
  787. "consolidation/self-update": "^2.0",
  788. "league/container": "^3.3.1 || ^4.0",
  789. "php": ">=8.0",
  790. "phpowermove/docblock": "^4.0",
  791. "symfony/console": "^6",
  792. "symfony/event-dispatcher": "^6",
  793. "symfony/filesystem": "^6",
  794. "symfony/finder": "^6",
  795. "symfony/process": "^6",
  796. "symfony/yaml": "^6"
  797. },
  798. "conflict": {
  799. "codegyre/robo": "*"
  800. },
  801. "require-dev": {
  802. "natxet/cssmin": "3.0.4",
  803. "patchwork/jsqueeze": "^2",
  804. "pear/archive_tar": "^1.4.4",
  805. "phpunit/phpunit": "^7.5.20 || ^8",
  806. "squizlabs/php_codesniffer": "^3.6",
  807. "yoast/phpunit-polyfills": "^0.2.0"
  808. },
  809. "suggest": {
  810. "natxet/cssmin": "For minifying CSS files in taskMinify",
  811. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  812. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  813. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  814. },
  815. "bin": [
  816. "robo"
  817. ],
  818. "type": "library",
  819. "autoload": {
  820. "psr-4": {
  821. "Robo\\": "src"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "Davert",
  831. "email": "davert.php@resend.cc"
  832. }
  833. ],
  834. "description": "Modern task runner",
  835. "support": {
  836. "issues": "https://github.com/consolidation/robo/issues",
  837. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  838. },
  839. "time": "2023-04-30T21:49:04+00:00"
  840. },
  841. {
  842. "name": "consolidation/self-update",
  843. "version": "2.2.0",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/consolidation/self-update.git",
  847. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  852. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "composer/semver": "^3.2",
  857. "php": ">=5.5.0",
  858. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  859. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  860. },
  861. "bin": [
  862. "scripts/release"
  863. ],
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-main": "2.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "SelfUpdate\\": "src"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Alexander Menk",
  882. "email": "menk@mestrona.net"
  883. },
  884. {
  885. "name": "Greg Anderson",
  886. "email": "greg.1.anderson@greenknowe.org"
  887. }
  888. ],
  889. "description": "Provides a self:update command for Symfony Console applications.",
  890. "support": {
  891. "issues": "https://github.com/consolidation/self-update/issues",
  892. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  893. },
  894. "time": "2023-03-18T01:37:41+00:00"
  895. },
  896. {
  897. "name": "consolidation/site-alias",
  898. "version": "4.1.1",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/consolidation/site-alias.git",
  902. "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40",
  907. "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "consolidation/config": "^1.2.1 || ^2 || ^3",
  912. "php": ">=7.4",
  913. "symfony/filesystem": "^5.4 || ^6 || ^7",
  914. "symfony/finder": "^5 || ^6 || ^7"
  915. },
  916. "require-dev": {
  917. "php-coveralls/php-coveralls": "^2.4.2",
  918. "phpunit/phpunit": ">=7",
  919. "squizlabs/php_codesniffer": "^3",
  920. "symfony/var-dumper": "^4",
  921. "yoast/phpunit-polyfills": "^0.2.0"
  922. },
  923. "type": "library",
  924. "extra": {
  925. "branch-alias": {
  926. "dev-main": "4.x-dev"
  927. }
  928. },
  929. "autoload": {
  930. "psr-4": {
  931. "Consolidation\\SiteAlias\\": "src"
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "MIT"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Greg Anderson",
  941. "email": "greg.1.anderson@greenknowe.org"
  942. },
  943. {
  944. "name": "Moshe Weitzman",
  945. "email": "weitzman@tejasa.com"
  946. }
  947. ],
  948. "description": "Manage alias records for local and remote sites.",
  949. "support": {
  950. "issues": "https://github.com/consolidation/site-alias/issues",
  951. "source": "https://github.com/consolidation/site-alias/tree/4.1.1"
  952. },
  953. "time": "2024-12-13T19:05:11+00:00"
  954. },
  955. {
  956. "name": "consolidation/site-process",
  957. "version": "5.4.2",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/site-process.git",
  961. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  966. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "consolidation/config": "^2 || ^3",
  971. "consolidation/site-alias": "^3 || ^4",
  972. "php": ">=8.0.14",
  973. "symfony/console": "^5.4 || ^6 || ^7",
  974. "symfony/process": "^6 || ^7"
  975. },
  976. "require-dev": {
  977. "phpunit/phpunit": "^9",
  978. "squizlabs/php_codesniffer": "^3"
  979. },
  980. "type": "library",
  981. "extra": {
  982. "branch-alias": {
  983. "dev-main": "5.x-dev"
  984. }
  985. },
  986. "autoload": {
  987. "psr-4": {
  988. "Consolidation\\SiteProcess\\": "src"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "MIT"
  994. ],
  995. "authors": [
  996. {
  997. "name": "Greg Anderson",
  998. "email": "greg.1.anderson@greenknowe.org"
  999. },
  1000. {
  1001. "name": "Moshe Weitzman",
  1002. "email": "weitzman@tejasa.com"
  1003. }
  1004. ],
  1005. "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.",
  1006. "support": {
  1007. "issues": "https://github.com/consolidation/site-process/issues",
  1008. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  1009. },
  1010. "time": "2024-12-13T19:25:56+00:00"
  1011. },
  1012. {
  1013. "name": "cweagans/composer-patches",
  1014. "version": "1.7.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/cweagans/composer-patches.git",
  1018. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1023. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "composer-plugin-api": "^1.0 || ^2.0",
  1028. "php": ">=5.3.0"
  1029. },
  1030. "require-dev": {
  1031. "composer/composer": "~1.0 || ~2.0",
  1032. "phpunit/phpunit": "~4.6"
  1033. },
  1034. "type": "composer-plugin",
  1035. "extra": {
  1036. "class": "cweagans\\Composer\\Patches"
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "cweagans\\Composer\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "BSD-3-Clause"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Cameron Eagans",
  1050. "email": "me@cweagans.net"
  1051. }
  1052. ],
  1053. "description": "Provides a way to patch Composer packages.",
  1054. "support": {
  1055. "issues": "https://github.com/cweagans/composer-patches/issues",
  1056. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1057. },
  1058. "time": "2022-12-20T22:53:13+00:00"
  1059. },
  1060. {
  1061. "name": "d3/d3",
  1062. "version": "v3.5.17",
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1066. },
  1067. "type": "drupal-library"
  1068. },
  1069. {
  1070. "name": "davedevelopment/stiphle",
  1071. "version": "0.9.4",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/davedevelopment/stiphle.git",
  1075. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1080. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "php": "^5.6.0|^7.0|^8.0"
  1085. },
  1086. "require-dev": {
  1087. "doctrine/cache": "^1.0",
  1088. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1089. "predis/predis": "^1.1",
  1090. "zendframework/zend-cache": "^2.8"
  1091. },
  1092. "suggest": {
  1093. "doctrine/cache": "~1.0",
  1094. "predis/predis": "~1.1",
  1095. "zendframework/zend-cache": "^2.8"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-0": {
  1100. "Stiphle": "src/"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Dave Marshall",
  1110. "email": "dave.marshall@atstsolutions.co.uk",
  1111. "homepage": "http://davedevelopment.co.uk"
  1112. }
  1113. ],
  1114. "description": "Simple rate limiting/throttling for php",
  1115. "homepage": "http://github.com/davedevelopment/stiphle",
  1116. "keywords": [
  1117. "rate limit",
  1118. "rate limiting",
  1119. "throttle",
  1120. "throttling"
  1121. ],
  1122. "support": {
  1123. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1124. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1125. },
  1126. "time": "2022-11-25T16:30:20+00:00"
  1127. },
  1128. {
  1129. "name": "dekor/php-array-table",
  1130. "version": "2.0",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/deniskoronets/php-array-table.git",
  1134. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1139. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "ext-mbstring": "*",
  1144. "php": ">=5.6.0"
  1145. },
  1146. "require-dev": {
  1147. "phpunit/phpunit": "^10"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "dekor\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "BSD-3-Clause"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Denis Koronets",
  1162. "email": "deniskoronets@woo.zp.ua",
  1163. "homepage": "https://woo.zp.ua/"
  1164. }
  1165. ],
  1166. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1167. "keywords": [
  1168. "library",
  1169. "php"
  1170. ],
  1171. "support": {
  1172. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1173. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1174. },
  1175. "time": "2023-02-10T10:13:42+00:00"
  1176. },
  1177. {
  1178. "name": "dflydev/dot-access-data",
  1179. "version": "v3.0.3",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1183. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1188. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "php": "^7.1 || ^8.0"
  1193. },
  1194. "require-dev": {
  1195. "phpstan/phpstan": "^0.12.42",
  1196. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1197. "scrutinizer/ocular": "1.6.0",
  1198. "squizlabs/php_codesniffer": "^3.5",
  1199. "vimeo/psalm": "^4.0.0"
  1200. },
  1201. "type": "library",
  1202. "extra": {
  1203. "branch-alias": {
  1204. "dev-main": "3.x-dev"
  1205. }
  1206. },
  1207. "autoload": {
  1208. "psr-4": {
  1209. "Dflydev\\DotAccessData\\": "src/"
  1210. }
  1211. },
  1212. "notification-url": "https://packagist.org/downloads/",
  1213. "license": [
  1214. "MIT"
  1215. ],
  1216. "authors": [
  1217. {
  1218. "name": "Dragonfly Development Inc.",
  1219. "email": "info@dflydev.com",
  1220. "homepage": "http://dflydev.com"
  1221. },
  1222. {
  1223. "name": "Beau Simensen",
  1224. "email": "beau@dflydev.com",
  1225. "homepage": "http://beausimensen.com"
  1226. },
  1227. {
  1228. "name": "Carlos Frutos",
  1229. "email": "carlos@kiwing.it",
  1230. "homepage": "https://github.com/cfrutos"
  1231. },
  1232. {
  1233. "name": "Colin O'Dell",
  1234. "email": "colinodell@gmail.com",
  1235. "homepage": "https://www.colinodell.com"
  1236. }
  1237. ],
  1238. "description": "Given a deep data structure, access data by dot notation.",
  1239. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1240. "keywords": [
  1241. "access",
  1242. "data",
  1243. "dot",
  1244. "notation"
  1245. ],
  1246. "support": {
  1247. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1248. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1249. },
  1250. "time": "2024-07-08T12:26:09+00:00"
  1251. },
  1252. {
  1253. "name": "doctrine/annotations",
  1254. "version": "1.14.4",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/doctrine/annotations.git",
  1258. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1263. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1264. "shasum": ""
  1265. },
  1266. "require": {
  1267. "doctrine/lexer": "^1 || ^2",
  1268. "ext-tokenizer": "*",
  1269. "php": "^7.1 || ^8.0",
  1270. "psr/cache": "^1 || ^2 || ^3"
  1271. },
  1272. "require-dev": {
  1273. "doctrine/cache": "^1.11 || ^2.0",
  1274. "doctrine/coding-standard": "^9 || ^12",
  1275. "phpstan/phpstan": "~1.4.10 || ^1.10.28",
  1276. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1277. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
  1278. "vimeo/psalm": "^4.30 || ^5.14"
  1279. },
  1280. "suggest": {
  1281. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1282. },
  1283. "type": "library",
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Guilherme Blanco",
  1296. "email": "guilhermeblanco@gmail.com"
  1297. },
  1298. {
  1299. "name": "Roman Borschel",
  1300. "email": "roman@code-factory.org"
  1301. },
  1302. {
  1303. "name": "Benjamin Eberlei",
  1304. "email": "kontakt@beberlei.de"
  1305. },
  1306. {
  1307. "name": "Jonathan Wage",
  1308. "email": "jonwage@gmail.com"
  1309. },
  1310. {
  1311. "name": "Johannes Schmitt",
  1312. "email": "schmittjoh@gmail.com"
  1313. }
  1314. ],
  1315. "description": "Docblock Annotations Parser",
  1316. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1317. "keywords": [
  1318. "annotations",
  1319. "docblock",
  1320. "parser"
  1321. ],
  1322. "support": {
  1323. "issues": "https://github.com/doctrine/annotations/issues",
  1324. "source": "https://github.com/doctrine/annotations/tree/1.14.4"
  1325. },
  1326. "time": "2024-09-05T10:15:52+00:00"
  1327. },
  1328. {
  1329. "name": "doctrine/collections",
  1330. "version": "2.3.0",
  1331. "source": {
  1332. "type": "git",
  1333. "url": "https://github.com/doctrine/collections.git",
  1334. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  1335. },
  1336. "dist": {
  1337. "type": "zip",
  1338. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  1339. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  1340. "shasum": ""
  1341. },
  1342. "require": {
  1343. "doctrine/deprecations": "^1",
  1344. "php": "^8.1",
  1345. "symfony/polyfill-php84": "^1.30"
  1346. },
  1347. "require-dev": {
  1348. "doctrine/coding-standard": "^12",
  1349. "ext-json": "*",
  1350. "phpstan/phpstan": "^1.8",
  1351. "phpstan/phpstan-phpunit": "^1.0",
  1352. "phpunit/phpunit": "^10.5"
  1353. },
  1354. "type": "library",
  1355. "autoload": {
  1356. "psr-4": {
  1357. "Doctrine\\Common\\Collections\\": "src"
  1358. }
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "authors": [
  1365. {
  1366. "name": "Guilherme Blanco",
  1367. "email": "guilhermeblanco@gmail.com"
  1368. },
  1369. {
  1370. "name": "Roman Borschel",
  1371. "email": "roman@code-factory.org"
  1372. },
  1373. {
  1374. "name": "Benjamin Eberlei",
  1375. "email": "kontakt@beberlei.de"
  1376. },
  1377. {
  1378. "name": "Jonathan Wage",
  1379. "email": "jonwage@gmail.com"
  1380. },
  1381. {
  1382. "name": "Johannes Schmitt",
  1383. "email": "schmittjoh@gmail.com"
  1384. }
  1385. ],
  1386. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1387. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1388. "keywords": [
  1389. "array",
  1390. "collections",
  1391. "iterators",
  1392. "php"
  1393. ],
  1394. "support": {
  1395. "issues": "https://github.com/doctrine/collections/issues",
  1396. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  1397. },
  1398. "funding": [
  1399. {
  1400. "url": "https://www.doctrine-project.org/sponsorship.html",
  1401. "type": "custom"
  1402. },
  1403. {
  1404. "url": "https://www.patreon.com/phpdoctrine",
  1405. "type": "patreon"
  1406. },
  1407. {
  1408. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1409. "type": "tidelift"
  1410. }
  1411. ],
  1412. "time": "2025-03-22T10:17:19+00:00"
  1413. },
  1414. {
  1415. "name": "doctrine/common",
  1416. "version": "3.5.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/doctrine/common.git",
  1420. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1425. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1430. "php": "^7.1 || ^8.0"
  1431. },
  1432. "require-dev": {
  1433. "doctrine/coding-standard": "^9.0 || ^10.0",
  1434. "doctrine/collections": "^1",
  1435. "phpstan/phpstan": "^1.4.1",
  1436. "phpstan/phpstan-phpunit": "^1",
  1437. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1438. "squizlabs/php_codesniffer": "^3.0",
  1439. "symfony/phpunit-bridge": "^6.1",
  1440. "vimeo/psalm": "^4.4"
  1441. },
  1442. "type": "library",
  1443. "autoload": {
  1444. "psr-4": {
  1445. "Doctrine\\Common\\": "src"
  1446. }
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "MIT"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Guilherme Blanco",
  1455. "email": "guilhermeblanco@gmail.com"
  1456. },
  1457. {
  1458. "name": "Roman Borschel",
  1459. "email": "roman@code-factory.org"
  1460. },
  1461. {
  1462. "name": "Benjamin Eberlei",
  1463. "email": "kontakt@beberlei.de"
  1464. },
  1465. {
  1466. "name": "Jonathan Wage",
  1467. "email": "jonwage@gmail.com"
  1468. },
  1469. {
  1470. "name": "Johannes Schmitt",
  1471. "email": "schmittjoh@gmail.com"
  1472. },
  1473. {
  1474. "name": "Marco Pivetta",
  1475. "email": "ocramius@gmail.com"
  1476. }
  1477. ],
  1478. "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.",
  1479. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1480. "keywords": [
  1481. "common",
  1482. "doctrine",
  1483. "php"
  1484. ],
  1485. "support": {
  1486. "issues": "https://github.com/doctrine/common/issues",
  1487. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1488. },
  1489. "funding": [
  1490. {
  1491. "url": "https://www.doctrine-project.org/sponsorship.html",
  1492. "type": "custom"
  1493. },
  1494. {
  1495. "url": "https://www.patreon.com/phpdoctrine",
  1496. "type": "patreon"
  1497. },
  1498. {
  1499. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1500. "type": "tidelift"
  1501. }
  1502. ],
  1503. "time": "2025-01-01T22:12:03+00:00"
  1504. },
  1505. {
  1506. "name": "doctrine/deprecations",
  1507. "version": "1.1.5",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/doctrine/deprecations.git",
  1511. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1516. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "php": "^7.1 || ^8.0"
  1521. },
  1522. "conflict": {
  1523. "phpunit/phpunit": "<=7.5 || >=13"
  1524. },
  1525. "require-dev": {
  1526. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1527. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1528. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1529. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1530. "psr/log": "^1 || ^2 || ^3"
  1531. },
  1532. "suggest": {
  1533. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1534. },
  1535. "type": "library",
  1536. "autoload": {
  1537. "psr-4": {
  1538. "Doctrine\\Deprecations\\": "src"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "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.",
  1546. "homepage": "https://www.doctrine-project.org/",
  1547. "support": {
  1548. "issues": "https://github.com/doctrine/deprecations/issues",
  1549. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1550. },
  1551. "time": "2025-04-07T20:06:18+00:00"
  1552. },
  1553. {
  1554. "name": "doctrine/event-manager",
  1555. "version": "2.0.1",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/doctrine/event-manager.git",
  1559. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1564. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": "^8.1"
  1569. },
  1570. "conflict": {
  1571. "doctrine/common": "<2.9"
  1572. },
  1573. "require-dev": {
  1574. "doctrine/coding-standard": "^12",
  1575. "phpstan/phpstan": "^1.8.8",
  1576. "phpunit/phpunit": "^10.5",
  1577. "vimeo/psalm": "^5.24"
  1578. },
  1579. "type": "library",
  1580. "autoload": {
  1581. "psr-4": {
  1582. "Doctrine\\Common\\": "src"
  1583. }
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Guilherme Blanco",
  1592. "email": "guilhermeblanco@gmail.com"
  1593. },
  1594. {
  1595. "name": "Roman Borschel",
  1596. "email": "roman@code-factory.org"
  1597. },
  1598. {
  1599. "name": "Benjamin Eberlei",
  1600. "email": "kontakt@beberlei.de"
  1601. },
  1602. {
  1603. "name": "Jonathan Wage",
  1604. "email": "jonwage@gmail.com"
  1605. },
  1606. {
  1607. "name": "Johannes Schmitt",
  1608. "email": "schmittjoh@gmail.com"
  1609. },
  1610. {
  1611. "name": "Marco Pivetta",
  1612. "email": "ocramius@gmail.com"
  1613. }
  1614. ],
  1615. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1616. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1617. "keywords": [
  1618. "event",
  1619. "event dispatcher",
  1620. "event manager",
  1621. "event system",
  1622. "events"
  1623. ],
  1624. "support": {
  1625. "issues": "https://github.com/doctrine/event-manager/issues",
  1626. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1627. },
  1628. "funding": [
  1629. {
  1630. "url": "https://www.doctrine-project.org/sponsorship.html",
  1631. "type": "custom"
  1632. },
  1633. {
  1634. "url": "https://www.patreon.com/phpdoctrine",
  1635. "type": "patreon"
  1636. },
  1637. {
  1638. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1639. "type": "tidelift"
  1640. }
  1641. ],
  1642. "time": "2024-05-22T20:47:39+00:00"
  1643. },
  1644. {
  1645. "name": "doctrine/lexer",
  1646. "version": "2.1.1",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/doctrine/lexer.git",
  1650. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1655. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "doctrine/deprecations": "^1.0",
  1660. "php": "^7.1 || ^8.0"
  1661. },
  1662. "require-dev": {
  1663. "doctrine/coding-standard": "^9 || ^12",
  1664. "phpstan/phpstan": "^1.3",
  1665. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1666. "psalm/plugin-phpunit": "^0.18.3",
  1667. "vimeo/psalm": "^4.11 || ^5.21"
  1668. },
  1669. "type": "library",
  1670. "autoload": {
  1671. "psr-4": {
  1672. "Doctrine\\Common\\Lexer\\": "src"
  1673. }
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Guilherme Blanco",
  1682. "email": "guilhermeblanco@gmail.com"
  1683. },
  1684. {
  1685. "name": "Roman Borschel",
  1686. "email": "roman@code-factory.org"
  1687. },
  1688. {
  1689. "name": "Johannes Schmitt",
  1690. "email": "schmittjoh@gmail.com"
  1691. }
  1692. ],
  1693. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1694. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1695. "keywords": [
  1696. "annotations",
  1697. "docblock",
  1698. "lexer",
  1699. "parser",
  1700. "php"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/doctrine/lexer/issues",
  1704. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1705. },
  1706. "funding": [
  1707. {
  1708. "url": "https://www.doctrine-project.org/sponsorship.html",
  1709. "type": "custom"
  1710. },
  1711. {
  1712. "url": "https://www.patreon.com/phpdoctrine",
  1713. "type": "patreon"
  1714. },
  1715. {
  1716. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1717. "type": "tidelift"
  1718. }
  1719. ],
  1720. "time": "2024-02-05T11:35:39+00:00"
  1721. },
  1722. {
  1723. "name": "doctrine/persistence",
  1724. "version": "4.0.0",
  1725. "source": {
  1726. "type": "git",
  1727. "url": "https://github.com/doctrine/persistence.git",
  1728. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1729. },
  1730. "dist": {
  1731. "type": "zip",
  1732. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1733. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1734. "shasum": ""
  1735. },
  1736. "require": {
  1737. "doctrine/event-manager": "^1 || ^2",
  1738. "php": "^8.1",
  1739. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1740. },
  1741. "conflict": {
  1742. "doctrine/common": "<2.10"
  1743. },
  1744. "require-dev": {
  1745. "doctrine/coding-standard": "^12",
  1746. "phpstan/phpstan": "1.12.7",
  1747. "phpstan/phpstan-phpunit": "^1",
  1748. "phpstan/phpstan-strict-rules": "^1.1",
  1749. "phpunit/phpunit": "^9.6",
  1750. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1751. },
  1752. "type": "library",
  1753. "autoload": {
  1754. "psr-4": {
  1755. "Doctrine\\Persistence\\": "src/Persistence"
  1756. }
  1757. },
  1758. "notification-url": "https://packagist.org/downloads/",
  1759. "license": [
  1760. "MIT"
  1761. ],
  1762. "authors": [
  1763. {
  1764. "name": "Guilherme Blanco",
  1765. "email": "guilhermeblanco@gmail.com"
  1766. },
  1767. {
  1768. "name": "Roman Borschel",
  1769. "email": "roman@code-factory.org"
  1770. },
  1771. {
  1772. "name": "Benjamin Eberlei",
  1773. "email": "kontakt@beberlei.de"
  1774. },
  1775. {
  1776. "name": "Jonathan Wage",
  1777. "email": "jonwage@gmail.com"
  1778. },
  1779. {
  1780. "name": "Johannes Schmitt",
  1781. "email": "schmittjoh@gmail.com"
  1782. },
  1783. {
  1784. "name": "Marco Pivetta",
  1785. "email": "ocramius@gmail.com"
  1786. }
  1787. ],
  1788. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1789. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1790. "keywords": [
  1791. "mapper",
  1792. "object",
  1793. "odm",
  1794. "orm",
  1795. "persistence"
  1796. ],
  1797. "support": {
  1798. "issues": "https://github.com/doctrine/persistence/issues",
  1799. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1800. },
  1801. "funding": [
  1802. {
  1803. "url": "https://www.doctrine-project.org/sponsorship.html",
  1804. "type": "custom"
  1805. },
  1806. {
  1807. "url": "https://www.patreon.com/phpdoctrine",
  1808. "type": "patreon"
  1809. },
  1810. {
  1811. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1812. "type": "tidelift"
  1813. }
  1814. ],
  1815. "time": "2024-11-01T21:49:07+00:00"
  1816. },
  1817. {
  1818. "name": "drupal/address",
  1819. "version": "1.12.0",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://git.drupalcode.org/project/address.git",
  1823. "reference": "8.x-1.12"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1828. "reference": "8.x-1.12",
  1829. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1830. },
  1831. "require": {
  1832. "commerceguys/addressing": "^1.4.2",
  1833. "drupal/core": "^9.2 || ^10",
  1834. "php": "^7.3 || ^8.0"
  1835. },
  1836. "require-dev": {
  1837. "drupal/token": "^1.0"
  1838. },
  1839. "type": "drupal-module",
  1840. "extra": {
  1841. "drupal": {
  1842. "version": "8.x-1.12",
  1843. "datestamp": "1684710176",
  1844. "security-coverage": {
  1845. "status": "covered",
  1846. "message": "Covered by Drupal's security advisory policy"
  1847. }
  1848. }
  1849. },
  1850. "notification-url": "https://packages.drupal.org/8/downloads",
  1851. "license": [
  1852. "GPL-2.0-or-later"
  1853. ],
  1854. "authors": [
  1855. {
  1856. "name": "bojanz",
  1857. "homepage": "https://www.drupal.org/user/86106"
  1858. },
  1859. {
  1860. "name": "centarro",
  1861. "homepage": "https://www.drupal.org/user/3661446"
  1862. },
  1863. {
  1864. "name": "dww",
  1865. "homepage": "https://www.drupal.org/user/46549"
  1866. },
  1867. {
  1868. "name": "jsacksick",
  1869. "homepage": "https://www.drupal.org/user/972218"
  1870. },
  1871. {
  1872. "name": "rszrama",
  1873. "homepage": "https://www.drupal.org/user/49344"
  1874. }
  1875. ],
  1876. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1877. "homepage": "http://drupal.org/project/address",
  1878. "support": {
  1879. "source": "https://git.drupalcode.org/project/address"
  1880. }
  1881. },
  1882. {
  1883. "name": "drupal/admin_toolbar",
  1884. "version": "3.6.1",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1888. "reference": "3.6.1"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip",
  1893. "reference": "3.6.1",
  1894. "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0"
  1895. },
  1896. "require": {
  1897. "drupal/core": "^9.5 || ^10 || ^11"
  1898. },
  1899. "require-dev": {
  1900. "drupal/admin_toolbar_tools": "*"
  1901. },
  1902. "type": "drupal-module",
  1903. "extra": {
  1904. "drupal": {
  1905. "version": "3.6.1",
  1906. "datestamp": "1749079734",
  1907. "security-coverage": {
  1908. "status": "covered",
  1909. "message": "Covered by Drupal's security advisory policy"
  1910. }
  1911. }
  1912. },
  1913. "notification-url": "https://packages.drupal.org/8/downloads",
  1914. "license": [
  1915. "GPL-2.0-or-later"
  1916. ],
  1917. "authors": [
  1918. {
  1919. "name": "Wilfrid Roze (eme)",
  1920. "homepage": "https://www.drupal.org/u/eme",
  1921. "role": "Maintainer"
  1922. },
  1923. {
  1924. "name": "Romain Jarraud (romainj)",
  1925. "homepage": "https://www.drupal.org/u/romainj",
  1926. "role": "Maintainer"
  1927. },
  1928. {
  1929. "name": "Adrian Cid Almaguer (adriancid)",
  1930. "homepage": "https://www.drupal.org/u/adriancid",
  1931. "email": "adriancid@gmail.com",
  1932. "role": "Maintainer"
  1933. },
  1934. {
  1935. "name": "Mohamed Anis Taktak (matio89)",
  1936. "homepage": "https://www.drupal.org/u/matio89",
  1937. "role": "Maintainer"
  1938. },
  1939. {
  1940. "name": "fethi.krout",
  1941. "homepage": "https://www.drupal.org/user/3206765"
  1942. },
  1943. {
  1944. "name": "japerry",
  1945. "homepage": "https://www.drupal.org/user/45640"
  1946. },
  1947. {
  1948. "name": "matio89",
  1949. "homepage": "https://www.drupal.org/user/2320090"
  1950. },
  1951. {
  1952. "name": "musa.thomas",
  1953. "homepage": "https://www.drupal.org/user/1213824"
  1954. },
  1955. {
  1956. "name": "romainj",
  1957. "homepage": "https://www.drupal.org/user/370706"
  1958. }
  1959. ],
  1960. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1961. "homepage": "http://drupal.org/project/admin_toolbar",
  1962. "keywords": [
  1963. "Drupal",
  1964. "Toolbar"
  1965. ],
  1966. "support": {
  1967. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1968. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1969. }
  1970. },
  1971. {
  1972. "name": "drupal/adminimal_theme",
  1973. "version": "1.7.0",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1977. "reference": "8.x-1.7"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1982. "reference": "8.x-1.7",
  1983. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1984. },
  1985. "require": {
  1986. "drupal/core": "^9.3 || ^10",
  1987. "drupal/seven": "~1.0"
  1988. },
  1989. "type": "drupal-theme",
  1990. "extra": {
  1991. "drupal": {
  1992. "version": "8.x-1.7",
  1993. "datestamp": "1691504486",
  1994. "security-coverage": {
  1995. "status": "covered",
  1996. "message": "Covered by Drupal's security advisory policy"
  1997. }
  1998. }
  1999. },
  2000. "notification-url": "https://packages.drupal.org/8/downloads",
  2001. "license": [
  2002. "GPL-2.0+"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "ANDiTKO",
  2007. "homepage": "https://www.drupal.org/user/1428124"
  2008. },
  2009. {
  2010. "name": "andrey.troeglazov",
  2011. "homepage": "https://www.drupal.org/user/3145389"
  2012. },
  2013. {
  2014. "name": "realityloop",
  2015. "homepage": "https://www.drupal.org/user/139189"
  2016. },
  2017. {
  2018. "name": "rjjakes",
  2019. "homepage": "https://www.drupal.org/user/3457245"
  2020. }
  2021. ],
  2022. "description": "Drupal administration theme with modern minimalist design.",
  2023. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2024. "support": {
  2025. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2026. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2027. }
  2028. },
  2029. {
  2030. "name": "drupal/administerusersbyrole",
  2031. "version": "3.5.0",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  2035. "reference": "8.x-3.5"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.5.zip",
  2040. "reference": "8.x-3.5",
  2041. "shasum": "4595bd1db4592c2eb506b3b1c1b26683f22b73b4"
  2042. },
  2043. "require": {
  2044. "drupal/core": "^10 || ^11"
  2045. },
  2046. "type": "drupal-module",
  2047. "extra": {
  2048. "drupal": {
  2049. "version": "8.x-3.5",
  2050. "datestamp": "1732275602",
  2051. "security-coverage": {
  2052. "status": "covered",
  2053. "message": "Covered by Drupal's security advisory policy"
  2054. }
  2055. }
  2056. },
  2057. "notification-url": "https://packages.drupal.org/8/downloads",
  2058. "license": [
  2059. "GPL-2.0-or-later"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "adamps",
  2064. "homepage": "https://www.drupal.org/user/2650563"
  2065. },
  2066. {
  2067. "name": "mrfelton",
  2068. "homepage": "https://www.drupal.org/user/305669"
  2069. },
  2070. {
  2071. "name": "smokris",
  2072. "homepage": "https://www.drupal.org/user/161913"
  2073. }
  2074. ],
  2075. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  2076. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  2077. "support": {
  2078. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2079. }
  2080. },
  2081. {
  2082. "name": "drupal/advanced_text_formatter",
  2083. "version": "3.0.0-rc2",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2087. "reference": "3.0.0-rc2"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  2092. "reference": "3.0.0-rc2",
  2093. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8 || ^9 || ^10 || ^11"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "drupal": {
  2101. "version": "3.0.0-rc2",
  2102. "datestamp": "1727826727",
  2103. "security-coverage": {
  2104. "status": "not-covered",
  2105. "message": "RC releases are not covered by Drupal security advisories."
  2106. }
  2107. }
  2108. },
  2109. "notification-url": "https://packages.drupal.org/8/downloads",
  2110. "license": [
  2111. "GPL-2.0-or-later"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "azovsky",
  2116. "homepage": "https://www.drupal.org/user/330533"
  2117. },
  2118. {
  2119. "name": "knectar",
  2120. "homepage": "https://www.drupal.org/user/1184414"
  2121. },
  2122. {
  2123. "name": "realityloop",
  2124. "homepage": "https://www.drupal.org/user/139189"
  2125. },
  2126. {
  2127. "name": "thmnhat",
  2128. "homepage": "https://www.drupal.org/user/998946"
  2129. }
  2130. ],
  2131. "description": "Formatter of textfield, text area and text format.",
  2132. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2133. "support": {
  2134. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2135. }
  2136. },
  2137. {
  2138. "name": "drupal/audiofield",
  2139. "version": "1.13.0",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://git.drupalcode.org/project/audiofield.git",
  2143. "reference": "8.x-1.13"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2148. "reference": "8.x-1.13",
  2149. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2150. },
  2151. "require": {
  2152. "drupal/core": "^8 || ^9 || ^10"
  2153. },
  2154. "type": "drupal-module",
  2155. "extra": {
  2156. "drupal": {
  2157. "version": "8.x-1.13",
  2158. "datestamp": "1681143245",
  2159. "security-coverage": {
  2160. "status": "covered",
  2161. "message": "Covered by Drupal's security advisory policy"
  2162. }
  2163. },
  2164. "drush": {
  2165. "services": {
  2166. "drush.services.yml": "^9"
  2167. }
  2168. }
  2169. },
  2170. "notification-url": "https://packages.drupal.org/8/downloads",
  2171. "license": [
  2172. "GPL-2.0-or-later"
  2173. ],
  2174. "authors": [
  2175. {
  2176. "name": "Daniel Moberly",
  2177. "homepage": "https://www.drupal.org/u/danielmoberly",
  2178. "role": "Maintainer"
  2179. },
  2180. {
  2181. "name": "tamerzg",
  2182. "homepage": "https://www.drupal.org/user/464564"
  2183. }
  2184. ],
  2185. "description": "AudioField Module",
  2186. "homepage": "https://www.drupal.org/project/audiofield",
  2187. "support": {
  2188. "source": "https://git.drupalcode.org/project/audiofield",
  2189. "issues": "https://www.drupal.org/project/issues/audiofield"
  2190. }
  2191. },
  2192. {
  2193. "name": "drupal/autocomplete_deluxe",
  2194. "version": "2.1.2",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2198. "reference": "2.1.2"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2203. "reference": "2.1.2",
  2204. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2205. },
  2206. "require": {
  2207. "drupal/core": "^10.3 || ^11"
  2208. },
  2209. "type": "drupal-module",
  2210. "extra": {
  2211. "drupal": {
  2212. "version": "2.1.2",
  2213. "datestamp": "1742303934",
  2214. "security-coverage": {
  2215. "status": "covered",
  2216. "message": "Covered by Drupal's security advisory policy"
  2217. }
  2218. }
  2219. },
  2220. "notification-url": "https://packages.drupal.org/8/downloads",
  2221. "license": [
  2222. "GPL-2.0-or-later"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Vardot",
  2227. "homepage": "https://www.drupal.org/vardot",
  2228. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2229. },
  2230. {
  2231. "name": "Mediacurrent",
  2232. "homepage": "https://www.drupal.org/mediacurrent",
  2233. "role": "Supporting organization"
  2234. },
  2235. {
  2236. "name": "mohammed j. razem",
  2237. "homepage": "https://www.drupal.org/user/255384"
  2238. },
  2239. {
  2240. "name": "mpriscella",
  2241. "homepage": "https://www.drupal.org/user/2354820"
  2242. },
  2243. {
  2244. "name": "rajab natshah",
  2245. "homepage": "https://www.drupal.org/user/1414312"
  2246. },
  2247. {
  2248. "name": "sepgil",
  2249. "homepage": "https://www.drupal.org/user/512828"
  2250. }
  2251. ],
  2252. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2253. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2254. "support": {
  2255. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2256. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2257. }
  2258. },
  2259. {
  2260. "name": "drupal/autologout",
  2261. "version": "1.6.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://git.drupalcode.org/project/autologout.git",
  2265. "reference": "8.x-1.6"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2270. "reference": "8.x-1.6",
  2271. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2272. },
  2273. "require": {
  2274. "drupal/core": "^9.2 || ^10 || ^11",
  2275. "drupal/js_cookie": "^1.0"
  2276. },
  2277. "type": "drupal-module",
  2278. "extra": {
  2279. "drupal": {
  2280. "version": "8.x-1.6",
  2281. "datestamp": "1732235148",
  2282. "security-coverage": {
  2283. "status": "covered",
  2284. "message": "Covered by Drupal's security advisory policy"
  2285. }
  2286. }
  2287. },
  2288. "notification-url": "https://packages.drupal.org/8/downloads",
  2289. "license": [
  2290. "GPL-2.0-or-later"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "ajits",
  2295. "homepage": "https://www.drupal.org/user/981944"
  2296. },
  2297. {
  2298. "name": "AjK",
  2299. "homepage": "https://www.drupal.org/user/39030"
  2300. },
  2301. {
  2302. "name": "boshtian",
  2303. "homepage": "https://www.drupal.org/user/1773456"
  2304. },
  2305. {
  2306. "name": "dandrews",
  2307. "homepage": "https://www.drupal.org/user/2014490"
  2308. },
  2309. {
  2310. "name": "darksnow",
  2311. "homepage": "https://www.drupal.org/user/391915"
  2312. },
  2313. {
  2314. "name": "japerry",
  2315. "homepage": "https://www.drupal.org/user/45640"
  2316. },
  2317. {
  2318. "name": "johnennew",
  2319. "homepage": "https://www.drupal.org/user/1150042"
  2320. },
  2321. {
  2322. "name": "jrglasgow",
  2323. "homepage": "https://www.drupal.org/user/36590"
  2324. },
  2325. {
  2326. "name": "kmasood",
  2327. "homepage": "https://www.drupal.org/user/1262860"
  2328. },
  2329. {
  2330. "name": "levelos",
  2331. "homepage": "https://www.drupal.org/user/54135"
  2332. },
  2333. {
  2334. "name": "prabeen.giri",
  2335. "homepage": "https://www.drupal.org/user/913078"
  2336. },
  2337. {
  2338. "name": "scott_earnest",
  2339. "homepage": "https://www.drupal.org/user/416158"
  2340. },
  2341. {
  2342. "name": "str8",
  2343. "homepage": "https://www.drupal.org/user/2865063"
  2344. },
  2345. {
  2346. "name": "the_g_bomb",
  2347. "homepage": "https://www.drupal.org/user/492012"
  2348. }
  2349. ],
  2350. "description": "Adds automated timed logout.",
  2351. "homepage": "http://drupal.org/project/autologout",
  2352. "support": {
  2353. "source": "https://git.drupalcode.org/project/autologout",
  2354. "issues": "https://www.drupal.org/project/issues/autologout"
  2355. }
  2356. },
  2357. {
  2358. "name": "drupal/better_exposed_filters",
  2359. "version": "6.0.6",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2363. "reference": "6.0.6"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2368. "reference": "6.0.6",
  2369. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2370. },
  2371. "require": {
  2372. "drupal/core": "^9 || ^10",
  2373. "drupal/jquery_ui": "*",
  2374. "drupal/jquery_ui_datepicker": "*",
  2375. "drupal/jquery_ui_slider": "*",
  2376. "drupal/jquery_ui_touch_punch": "*"
  2377. },
  2378. "type": "drupal-module",
  2379. "extra": {
  2380. "drupal": {
  2381. "version": "6.0.6",
  2382. "datestamp": "1716397541",
  2383. "security-coverage": {
  2384. "status": "covered",
  2385. "message": "Covered by Drupal's security advisory policy"
  2386. }
  2387. }
  2388. },
  2389. "notification-url": "https://packages.drupal.org/8/downloads",
  2390. "license": [
  2391. "GPL-2.0-or-later"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Mike Keran",
  2396. "homepage": "https://www.drupal.org/u/mikeker"
  2397. },
  2398. {
  2399. "name": "Martin Keereman",
  2400. "homepage": "https://www.drupal.org/u/etroid"
  2401. },
  2402. {
  2403. "name": "Neslee Canil Pinto",
  2404. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2405. },
  2406. {
  2407. "name": "mikeker",
  2408. "homepage": "https://www.drupal.org/user/192273"
  2409. },
  2410. {
  2411. "name": "neslee canil pinto",
  2412. "homepage": "https://www.drupal.org/user/3580850"
  2413. },
  2414. {
  2415. "name": "podarok",
  2416. "homepage": "https://www.drupal.org/user/116002"
  2417. },
  2418. {
  2419. "name": "rlhawk",
  2420. "homepage": "https://www.drupal.org/user/352283"
  2421. },
  2422. {
  2423. "name": "smustgrave",
  2424. "homepage": "https://www.drupal.org/user/3252890"
  2425. }
  2426. ],
  2427. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2428. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2429. "support": {
  2430. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2431. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2432. }
  2433. },
  2434. {
  2435. "name": "drupal/betterlogin",
  2436. "version": "2.0.2",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2440. "reference": "2.0.2"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.2.zip",
  2445. "reference": "2.0.2",
  2446. "shasum": "1c05fdea10862ff86c809c84d9eba95b6b52f90a"
  2447. },
  2448. "require": {
  2449. "drupal/core": "^9.0 || ^10.0"
  2450. },
  2451. "type": "drupal-module",
  2452. "extra": {
  2453. "drupal": {
  2454. "version": "2.0.2",
  2455. "datestamp": "1709573077",
  2456. "security-coverage": {
  2457. "status": "covered",
  2458. "message": "Covered by Drupal's security advisory policy"
  2459. }
  2460. }
  2461. },
  2462. "notification-url": "https://packages.drupal.org/8/downloads",
  2463. "license": [
  2464. "GPL-2.0-or-later"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "theamoeba",
  2469. "homepage": "https://www.drupal.org/user/251700"
  2470. },
  2471. {
  2472. "name": "yogeshmpawar",
  2473. "homepage": "https://www.drupal.org/user/2922907"
  2474. }
  2475. ],
  2476. "description": "Make the login screens better :)",
  2477. "homepage": "https://www.drupal.org/project/betterlogin",
  2478. "support": {
  2479. "source": "https://git.drupalcode.org/project/betterlogin"
  2480. }
  2481. },
  2482. {
  2483. "name": "drupal/blazy",
  2484. "version": "2.27.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://git.drupalcode.org/project/blazy.git",
  2488. "reference": "8.x-2.27"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2493. "reference": "8.x-2.27",
  2494. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2495. },
  2496. "require": {
  2497. "drupal/core": "^8.8 || ^9 || ^10"
  2498. },
  2499. "conflict": {
  2500. "drupal/csp": "<1.12"
  2501. },
  2502. "type": "drupal-module",
  2503. "extra": {
  2504. "drupal": {
  2505. "version": "8.x-2.27",
  2506. "datestamp": "1715944090",
  2507. "security-coverage": {
  2508. "status": "covered",
  2509. "message": "Covered by Drupal's security advisory policy"
  2510. }
  2511. }
  2512. },
  2513. "notification-url": "https://packages.drupal.org/8/downloads",
  2514. "license": [
  2515. "GPL-2.0-or-later"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Gaus Surahman",
  2520. "homepage": "https://www.drupal.org/u/gausarts",
  2521. "role": "Maintainer"
  2522. },
  2523. {
  2524. "name": "Contributors",
  2525. "homepage": "https://www.drupal.org/node/2663268/committers",
  2526. "role": "Contributor"
  2527. },
  2528. {
  2529. "name": "geek-merlin",
  2530. "homepage": "https://www.drupal.org/user/229048"
  2531. },
  2532. {
  2533. "name": "sun",
  2534. "homepage": "https://www.drupal.org/user/54136"
  2535. }
  2536. ],
  2537. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2538. "homepage": "https://drupal.org/project/blazy",
  2539. "keywords": [
  2540. "Drupal",
  2541. "bLazy",
  2542. "lazyload"
  2543. ],
  2544. "support": {
  2545. "source": "https://git.drupalcode.org/project/blazy",
  2546. "issues": "https://drupal.org/project/issues/blazy"
  2547. }
  2548. },
  2549. {
  2550. "name": "drupal/block_class",
  2551. "version": "4.0.1",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://git.drupalcode.org/project/block_class.git",
  2555. "reference": "4.0.1"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip",
  2560. "reference": "4.0.1",
  2561. "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb"
  2562. },
  2563. "require": {
  2564. "drupal/core": "^9 || ^10 || ^11"
  2565. },
  2566. "type": "drupal-module",
  2567. "extra": {
  2568. "drupal": {
  2569. "version": "4.0.1",
  2570. "datestamp": "1745427425",
  2571. "security-coverage": {
  2572. "status": "covered",
  2573. "message": "Covered by Drupal's security advisory policy"
  2574. }
  2575. }
  2576. },
  2577. "notification-url": "https://packages.drupal.org/8/downloads",
  2578. "license": [
  2579. "GPL-2.0-or-later"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Todd Nienkerk",
  2584. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2585. "role": "Maintainer"
  2586. },
  2587. {
  2588. "name": "Renato Gonçalves (RenatoG)",
  2589. "homepage": "https://www.drupal.org/u/RenatoG",
  2590. "role": "Maintainer"
  2591. },
  2592. {
  2593. "name": "Neslee Canil Pinto",
  2594. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2595. "role": "Maintainer"
  2596. },
  2597. {
  2598. "name": "Aaron Stanush",
  2599. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2600. "role": "Maintainer"
  2601. },
  2602. {
  2603. "name": "David Suissa (DYdave)",
  2604. "homepage": "https://www.drupal.org/u/DYdave",
  2605. "role": "Maintainer"
  2606. },
  2607. {
  2608. "name": "Four Kitchens",
  2609. "homepage": "https://www.drupal.org/user/358502",
  2610. "role": "Maintainer"
  2611. },
  2612. {
  2613. "name": "berenddeboer",
  2614. "homepage": "https://www.drupal.org/u/berenddeboer",
  2615. "role": "Maintainer"
  2616. },
  2617. {
  2618. "name": "elliotttf",
  2619. "homepage": "https://www.drupal.org/u/elliotttf",
  2620. "role": "Maintainer"
  2621. },
  2622. {
  2623. "name": "Michal Minecki (mirzu)",
  2624. "homepage": "https://www.drupal.org/u/mirzu",
  2625. "role": "Maintainer"
  2626. },
  2627. {
  2628. "name": "Patrick Coffey (pcoffey)",
  2629. "homepage": "https://www.drupal.org/u/pcoffey",
  2630. "role": "Maintainer"
  2631. },
  2632. {
  2633. "name": "Taylor Smith (tsmith512)",
  2634. "homepage": "https://www.drupal.org/u/tsmith512",
  2635. "role": "Maintainer"
  2636. }
  2637. ],
  2638. "description": "Allows assigning classes to Blocks.",
  2639. "homepage": "https://www.drupal.org/project/block_class",
  2640. "keywords": [
  2641. "Drupal"
  2642. ],
  2643. "support": {
  2644. "source": "https://git.drupalcode.org/project/block_class",
  2645. "issues": "https://www.drupal.org/project/issues/block_class",
  2646. "irc": "irc://irc.freenode.org/drupal-contribute"
  2647. }
  2648. },
  2649. {
  2650. "name": "drupal/computed_field",
  2651. "version": "3.0.0",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://git.drupalcode.org/project/computed_field.git",
  2655. "reference": "3.0.0"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2660. "reference": "3.0.0",
  2661. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2662. },
  2663. "require": {
  2664. "drupal/core": "^8 || ^9 || ^10"
  2665. },
  2666. "type": "drupal-module",
  2667. "extra": {
  2668. "drupal": {
  2669. "version": "3.0.0",
  2670. "datestamp": "1705775905",
  2671. "security-coverage": {
  2672. "status": "covered",
  2673. "message": "Covered by Drupal's security advisory policy"
  2674. }
  2675. }
  2676. },
  2677. "notification-url": "https://packages.drupal.org/8/downloads",
  2678. "license": [
  2679. "GPL-2.0-or-later"
  2680. ],
  2681. "authors": [
  2682. {
  2683. "name": "agileware",
  2684. "homepage": "https://www.drupal.org/user/89106"
  2685. },
  2686. {
  2687. "name": "colan",
  2688. "homepage": "https://www.drupal.org/user/58704"
  2689. },
  2690. {
  2691. "name": "dealancer",
  2692. "homepage": "https://www.drupal.org/user/243418"
  2693. },
  2694. {
  2695. "name": "joachim",
  2696. "homepage": "https://www.drupal.org/user/107701"
  2697. },
  2698. {
  2699. "name": "markus_petrux",
  2700. "homepage": "https://www.drupal.org/user/39593"
  2701. },
  2702. {
  2703. "name": "Moonshine",
  2704. "homepage": "https://www.drupal.org/user/133705"
  2705. },
  2706. {
  2707. "name": "nickcaballero",
  2708. "homepage": "https://www.drupal.org/user/588336"
  2709. },
  2710. {
  2711. "name": "Pedro Lozano",
  2712. "homepage": "https://www.drupal.org/user/123766"
  2713. },
  2714. {
  2715. "name": "ram4nd",
  2716. "homepage": "https://www.drupal.org/user/601534"
  2717. }
  2718. ],
  2719. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2720. "homepage": "https://www.drupal.org/project/computed_field",
  2721. "support": {
  2722. "source": "https://git.drupalcode.org/project/computed_field"
  2723. }
  2724. },
  2725. {
  2726. "name": "drupal/computed_token_field",
  2727. "version": "1.0.0-beta1",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2731. "reference": "1.0.0-beta1"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2736. "reference": "1.0.0-beta1",
  2737. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2738. },
  2739. "require": {
  2740. "drupal/computed_field": "^3.0",
  2741. "drupal/core": "^8 || ^9 || ^10"
  2742. },
  2743. "require-dev": {
  2744. "drupal/eck": "*",
  2745. "drupal/field_permissions": "*",
  2746. "drupal/hide_revision_field": "*",
  2747. "drupal/inline_entity_form": "*"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "1.0.0-beta1",
  2753. "datestamp": "1741812647",
  2754. "security-coverage": {
  2755. "status": "not-covered",
  2756. "message": "Beta releases are not covered by Drupal security advisories."
  2757. }
  2758. }
  2759. },
  2760. "notification-url": "https://packages.drupal.org/8/downloads",
  2761. "license": [
  2762. "GPLv2 or later"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Derek Laventure",
  2767. "homepage": "https://www.drupal.org/user/3082389",
  2768. "email": "derek@consensus.enterprises"
  2769. },
  2770. {
  2771. "name": "colan",
  2772. "homepage": "https://www.drupal.org/user/58704"
  2773. },
  2774. {
  2775. "name": "ergonlogic",
  2776. "homepage": "https://www.drupal.org/user/368613"
  2777. },
  2778. {
  2779. "name": "spiderman",
  2780. "homepage": "https://www.drupal.org/user/1631"
  2781. }
  2782. ],
  2783. "description": "Computed field that accepts a token to calculate its value.",
  2784. "homepage": "https://www.drupal.org/project/computed_token_field",
  2785. "support": {
  2786. "source": "https://git.drupalcode.org/project/computed_token_field"
  2787. }
  2788. },
  2789. {
  2790. "name": "drupal/config_devel",
  2791. "version": "1.10.0",
  2792. "source": {
  2793. "type": "git",
  2794. "url": "https://git.drupalcode.org/project/config_devel.git",
  2795. "reference": "8.x-1.10"
  2796. },
  2797. "dist": {
  2798. "type": "zip",
  2799. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2800. "reference": "8.x-1.10",
  2801. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2802. },
  2803. "require": {
  2804. "drupal/core": "^9.3 || ^10 || ^11"
  2805. },
  2806. "type": "drupal-module",
  2807. "extra": {
  2808. "drupal": {
  2809. "version": "8.x-1.10",
  2810. "datestamp": "1727184343",
  2811. "security-coverage": {
  2812. "status": "covered",
  2813. "message": "Covered by Drupal's security advisory policy"
  2814. }
  2815. }
  2816. },
  2817. "notification-url": "https://packages.drupal.org/8/downloads",
  2818. "license": [
  2819. "GPL-2.0+"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "alexpott",
  2824. "homepage": "https://www.drupal.org/user/157725"
  2825. },
  2826. {
  2827. "name": "benjy",
  2828. "homepage": "https://www.drupal.org/user/1852732"
  2829. },
  2830. {
  2831. "name": "chx",
  2832. "homepage": "https://www.drupal.org/user/9446"
  2833. },
  2834. {
  2835. "name": "joachim",
  2836. "homepage": "https://www.drupal.org/user/107701"
  2837. },
  2838. {
  2839. "name": "vijaycs85",
  2840. "homepage": "https://www.drupal.org/user/93488"
  2841. }
  2842. ],
  2843. "description": "Helps developers work with configuration.",
  2844. "homepage": "https://www.drupal.org/project/config_devel",
  2845. "support": {
  2846. "source": "https://git.drupalcode.org/project/config_devel"
  2847. }
  2848. },
  2849. {
  2850. "name": "drupal/config_enforce",
  2851. "version": "1.0.7",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2855. "reference": "1.0.7"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2860. "reference": "1.0.7",
  2861. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2862. },
  2863. "require": {
  2864. "drupal/core": "^8 || ^9 || ^10",
  2865. "php": "^7.4 || ^8"
  2866. },
  2867. "suggest": {
  2868. "drush/drush": "Allows for running enforce commands via the CLI"
  2869. },
  2870. "type": "drupal-module",
  2871. "extra": {
  2872. "drupal": {
  2873. "version": "1.0.7",
  2874. "datestamp": "1723136457",
  2875. "security-coverage": {
  2876. "status": "covered",
  2877. "message": "Covered by Drupal's security advisory policy"
  2878. }
  2879. },
  2880. "drush": {
  2881. "services": {
  2882. "drush.services.yml": "^11"
  2883. }
  2884. }
  2885. },
  2886. "notification-url": "https://packages.drupal.org/8/downloads",
  2887. "license": [
  2888. "GPLv3 or later"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "Christopher Gervais",
  2893. "homepage": "https://www.drupal.org/user/1131532",
  2894. "email": "chris@ergonlogic.com"
  2895. },
  2896. {
  2897. "name": "Dan Friedman",
  2898. "homepage": "https://www.drupal.org/user/58704",
  2899. "email": "dan@consensus.enterprises"
  2900. },
  2901. {
  2902. "name": "Derek Laventure",
  2903. "homepage": "https://www.drupal.org/user/368613",
  2904. "email": "derek@consensus.enterprises"
  2905. },
  2906. {
  2907. "name": "Matei Stanca",
  2908. "homepage": "https://ambientimpact.com"
  2909. },
  2910. {
  2911. "name": "M Parker",
  2912. "homepage": "https://www.drupal.org/u/mparker17"
  2913. },
  2914. {
  2915. "name": "Serena Zhu",
  2916. "homepage": "https://www.drupal.org/u/szhu"
  2917. },
  2918. {
  2919. "name": "spiderman",
  2920. "homepage": "https://www.drupal.org/user/1631"
  2921. },
  2922. {
  2923. "name": "szhu",
  2924. "homepage": "https://www.drupal.org/user/3525295"
  2925. }
  2926. ],
  2927. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2928. "homepage": "https://www.drupal.org/project/config_enforce",
  2929. "support": {
  2930. "source": "https://git.drupalcode.org/project/config_enforce"
  2931. }
  2932. },
  2933. {
  2934. "name": "drupal/config_filter",
  2935. "version": "2.7.0",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://git.drupalcode.org/project/config_filter.git",
  2939. "reference": "8.x-2.7"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2944. "reference": "8.x-2.7",
  2945. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2946. },
  2947. "require": {
  2948. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2949. },
  2950. "conflict": {
  2951. "drush/drush": "<10"
  2952. },
  2953. "suggest": {
  2954. "drupal/config_split": "Split site configuration for different environments."
  2955. },
  2956. "type": "drupal-module",
  2957. "extra": {
  2958. "drupal": {
  2959. "version": "8.x-2.7",
  2960. "datestamp": "1727472458",
  2961. "security-coverage": {
  2962. "status": "covered",
  2963. "message": "Covered by Drupal's security advisory policy"
  2964. }
  2965. }
  2966. },
  2967. "notification-url": "https://packages.drupal.org/8/downloads",
  2968. "license": [
  2969. "GPL-2.0-or-later"
  2970. ],
  2971. "authors": [
  2972. {
  2973. "name": "Fabian Bircher",
  2974. "homepage": "https://www.drupal.org/u/bircher",
  2975. "email": "opensource@fabianbircher.com",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "Nuvole Web",
  2980. "homepage": "http://nuvole.org",
  2981. "email": "info@nuvole.org",
  2982. "role": "Maintainer"
  2983. },
  2984. {
  2985. "name": "pescetti",
  2986. "homepage": "https://www.drupal.org/user/436244"
  2987. }
  2988. ],
  2989. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2990. "homepage": "https://www.drupal.org/project/config_filter",
  2991. "keywords": [
  2992. "Drupal",
  2993. "configuration",
  2994. "configuration management"
  2995. ],
  2996. "support": {
  2997. "source": "https://git.drupalcode.org/project/config_filter",
  2998. "issues": "https://www.drupal.org/project/issues/config_filter",
  2999. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3000. }
  3001. },
  3002. {
  3003. "name": "drupal/config_ignore",
  3004. "version": "3.3.0",
  3005. "source": {
  3006. "type": "git",
  3007. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3008. "reference": "8.x-3.3"
  3009. },
  3010. "dist": {
  3011. "type": "zip",
  3012. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  3013. "reference": "8.x-3.3",
  3014. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  3015. },
  3016. "require": {
  3017. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  3018. },
  3019. "require-dev": {
  3020. "drupal/config_filter": "^1.8||^2.2",
  3021. "drush/drush": "^10 || ^11 || ^12"
  3022. },
  3023. "type": "drupal-module",
  3024. "extra": {
  3025. "drupal": {
  3026. "version": "8.x-3.3",
  3027. "datestamp": "1713299496",
  3028. "security-coverage": {
  3029. "status": "covered",
  3030. "message": "Covered by Drupal's security advisory policy"
  3031. }
  3032. }
  3033. },
  3034. "notification-url": "https://packages.drupal.org/8/downloads",
  3035. "license": [
  3036. "GPL-2.0-or-later"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Tommy Lynge Jørgensen",
  3041. "homepage": "https://www.drupal.org/u/tlyngej",
  3042. "email": "tlyngej@gmail.com",
  3043. "role": "Maintainer"
  3044. },
  3045. {
  3046. "name": "Fabian Bircher",
  3047. "homepage": "https://www.drupal.org/u/bircher",
  3048. "role": "Maintainer"
  3049. },
  3050. {
  3051. "name": "tlyngej",
  3052. "homepage": "https://www.drupal.org/user/413139"
  3053. }
  3054. ],
  3055. "description": "Ignore certain configuration during import and export.",
  3056. "homepage": "http://drupal.org/project/config_ignore",
  3057. "support": {
  3058. "source": "https://git.drupalcode.org/project/config_ignore",
  3059. "issues": "http://drupal.org/project/config_ignore"
  3060. }
  3061. },
  3062. {
  3063. "name": "drupal/config_pages",
  3064. "version": "2.17.0",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://git.drupalcode.org/project/config_pages.git",
  3068. "reference": "8.x-2.17"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  3073. "reference": "8.x-2.17",
  3074. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  3075. },
  3076. "require": {
  3077. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  3078. },
  3079. "type": "drupal-module",
  3080. "extra": {
  3081. "drupal": {
  3082. "version": "8.x-2.17",
  3083. "datestamp": "1736029180",
  3084. "security-coverage": {
  3085. "status": "covered",
  3086. "message": "Covered by Drupal's security advisory policy"
  3087. }
  3088. },
  3089. "drush": {
  3090. "services": {
  3091. "drush.services.yml": "^9"
  3092. }
  3093. }
  3094. },
  3095. "notification-url": "https://packages.drupal.org/8/downloads",
  3096. "license": [
  3097. "GPL-2.0-or-later"
  3098. ],
  3099. "authors": [
  3100. {
  3101. "name": "m.krestnicov",
  3102. "homepage": "https://www.drupal.org/user/3193903"
  3103. },
  3104. {
  3105. "name": "qwaygon",
  3106. "homepage": "https://www.drupal.org/user/636624"
  3107. },
  3108. {
  3109. "name": "shumer",
  3110. "homepage": "https://www.drupal.org/user/2297432"
  3111. }
  3112. ],
  3113. "description": "ConfigPages module",
  3114. "homepage": "http://drupal.org/project/config_pages",
  3115. "keywords": [
  3116. "Drupal"
  3117. ],
  3118. "support": {
  3119. "source": "http://cgit.drupalcode.org/config_pages",
  3120. "issues": "http://drupal.org/project/issues/config_pages"
  3121. }
  3122. },
  3123. {
  3124. "name": "drupal/config_update",
  3125. "version": "2.0.0-alpha4",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://git.drupalcode.org/project/config_update.git",
  3129. "reference": "2.0.0-alpha4"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3134. "reference": "2.0.0-alpha4",
  3135. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3136. },
  3137. "require": {
  3138. "drupal/core": "^9.4 || ^10 || ^11"
  3139. },
  3140. "type": "drupal-module",
  3141. "extra": {
  3142. "drupal": {
  3143. "version": "2.0.0-alpha4",
  3144. "datestamp": "1724596931",
  3145. "security-coverage": {
  3146. "status": "not-covered",
  3147. "message": "Alpha releases are not covered by Drupal security advisories."
  3148. }
  3149. }
  3150. },
  3151. "notification-url": "https://packages.drupal.org/8/downloads",
  3152. "license": [
  3153. "GPL-2.0-or-later"
  3154. ],
  3155. "authors": [
  3156. {
  3157. "name": "codebymikey",
  3158. "homepage": "https://www.drupal.org/user/3573206"
  3159. },
  3160. {
  3161. "name": "pasqualle",
  3162. "homepage": "https://www.drupal.org/user/80733"
  3163. },
  3164. {
  3165. "name": "vishalkhode",
  3166. "homepage": "https://www.drupal.org/user/2439156"
  3167. }
  3168. ],
  3169. "description": "Provides basic revert and update functionality for other modules.",
  3170. "homepage": "https://www.drupal.org/project/config_update",
  3171. "support": {
  3172. "source": "https://git.drupalcode.org/project/config_update"
  3173. }
  3174. },
  3175. {
  3176. "name": "drupal/content_lock",
  3177. "version": "2.4.0",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://git.drupalcode.org/project/content_lock.git",
  3181. "reference": "8.x-2.4"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3186. "reference": "8.x-2.4",
  3187. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3188. },
  3189. "require": {
  3190. "drupal/core": "^9.0 || ^10.0"
  3191. },
  3192. "type": "drupal-module",
  3193. "extra": {
  3194. "drupal": {
  3195. "version": "8.x-2.4",
  3196. "datestamp": "1715783058",
  3197. "security-coverage": {
  3198. "status": "covered",
  3199. "message": "Covered by Drupal's security advisory policy"
  3200. }
  3201. }
  3202. },
  3203. "notification-url": "https://packages.drupal.org/8/downloads",
  3204. "license": [
  3205. "GPL-2.0-or-later"
  3206. ],
  3207. "authors": [
  3208. {
  3209. "name": "alexpott",
  3210. "homepage": "https://www.drupal.org/user/157725"
  3211. },
  3212. {
  3213. "name": "astonvictor",
  3214. "homepage": "https://www.drupal.org/user/3466615"
  3215. },
  3216. {
  3217. "name": "chr.fritsch",
  3218. "homepage": "https://www.drupal.org/user/2103716"
  3219. },
  3220. {
  3221. "name": "daniel.bosen",
  3222. "homepage": "https://www.drupal.org/user/404865"
  3223. },
  3224. {
  3225. "name": "ergonlogic",
  3226. "homepage": "https://www.drupal.org/user/368613"
  3227. },
  3228. {
  3229. "name": "mfb",
  3230. "homepage": "https://www.drupal.org/user/12302"
  3231. },
  3232. {
  3233. "name": "volkerk",
  3234. "homepage": "https://www.drupal.org/user/57527"
  3235. }
  3236. ],
  3237. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3238. "homepage": "https://www.drupal.org/project/content_lock",
  3239. "support": {
  3240. "source": "https://git.drupalcode.org/project/content_lock"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/context",
  3245. "version": "5.0.0-rc2",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupalcode.org/project/context.git",
  3249. "reference": "5.0.0-rc2"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3254. "reference": "5.0.0-rc2",
  3255. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3256. },
  3257. "require": {
  3258. "drupal/core": "^9.3 || ^10 || ^11"
  3259. },
  3260. "type": "drupal-module",
  3261. "extra": {
  3262. "drupal": {
  3263. "version": "5.0.0-rc2",
  3264. "datestamp": "1741253306",
  3265. "security-coverage": {
  3266. "status": "not-covered",
  3267. "message": "RC releases are not covered by Drupal security advisories."
  3268. }
  3269. }
  3270. },
  3271. "notification-url": "https://packages.drupal.org/8/downloads",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "Christoffer Palm",
  3278. "homepage": "http://www.oddhill.se/",
  3279. "email": "christoffer.palm@oddhill.se",
  3280. "role": "Developer"
  3281. },
  3282. {
  3283. "name": "boshtian",
  3284. "homepage": "https://www.drupal.org/user/1773456"
  3285. },
  3286. {
  3287. "name": "colan",
  3288. "homepage": "https://www.drupal.org/user/58704"
  3289. },
  3290. {
  3291. "name": "emanaton",
  3292. "homepage": "https://www.drupal.org/user/120853"
  3293. },
  3294. {
  3295. "name": "febbraro",
  3296. "homepage": "https://www.drupal.org/user/43670"
  3297. },
  3298. {
  3299. "name": "fizk",
  3300. "homepage": "https://www.drupal.org/user/473174"
  3301. },
  3302. {
  3303. "name": "hass",
  3304. "homepage": "https://www.drupal.org/user/85918"
  3305. },
  3306. {
  3307. "name": "hefox",
  3308. "homepage": "https://www.drupal.org/user/426416"
  3309. },
  3310. {
  3311. "name": "jmiccolis",
  3312. "homepage": "https://www.drupal.org/user/31731"
  3313. },
  3314. {
  3315. "name": "kristen pol",
  3316. "homepage": "https://www.drupal.org/user/8389"
  3317. },
  3318. {
  3319. "name": "mandclu",
  3320. "homepage": "https://www.drupal.org/user/52136"
  3321. },
  3322. {
  3323. "name": "nedjo",
  3324. "homepage": "https://www.drupal.org/user/4481"
  3325. },
  3326. {
  3327. "name": "NormySan",
  3328. "homepage": "https://www.drupal.org/user/112352"
  3329. },
  3330. {
  3331. "name": "patricksettle",
  3332. "homepage": "https://www.drupal.org/user/26618"
  3333. },
  3334. {
  3335. "name": "paulocs",
  3336. "homepage": "https://www.drupal.org/user/3640109"
  3337. },
  3338. {
  3339. "name": "steven jones",
  3340. "homepage": "https://www.drupal.org/user/99644"
  3341. },
  3342. {
  3343. "name": "tekante",
  3344. "homepage": "https://www.drupal.org/user/640024"
  3345. },
  3346. {
  3347. "name": "yhahn",
  3348. "homepage": "https://www.drupal.org/user/264833"
  3349. }
  3350. ],
  3351. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3352. "homepage": "https://github.com/oddhill/context",
  3353. "keywords": [
  3354. "Drupal",
  3355. "block",
  3356. "conditions",
  3357. "context",
  3358. "visibility"
  3359. ],
  3360. "support": {
  3361. "source": "https://github.com/oddhill/context",
  3362. "issues": "https://github.com/oddhill/context/issues",
  3363. "docs": "https://github.com/oddhill/context"
  3364. }
  3365. },
  3366. {
  3367. "name": "drupal/core",
  3368. "version": "10.5.1",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/drupal/core.git",
  3372. "reference": "551442fec1db69cf6eedb1601a348d8a6268060f"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/drupal/core/zipball/551442fec1db69cf6eedb1601a348d8a6268060f",
  3377. "reference": "551442fec1db69cf6eedb1601a348d8a6268060f",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "asm89/stack-cors": "^2.3",
  3382. "composer-runtime-api": "^2.1",
  3383. "composer/semver": "^3.3",
  3384. "doctrine/annotations": "^1.14",
  3385. "egulias/email-validator": "^3.2.1|^4.0",
  3386. "ext-date": "*",
  3387. "ext-dom": "*",
  3388. "ext-filter": "*",
  3389. "ext-gd": "*",
  3390. "ext-hash": "*",
  3391. "ext-json": "*",
  3392. "ext-pcre": "*",
  3393. "ext-pdo": "*",
  3394. "ext-session": "*",
  3395. "ext-simplexml": "*",
  3396. "ext-spl": "*",
  3397. "ext-tokenizer": "*",
  3398. "ext-xml": "*",
  3399. "guzzlehttp/guzzle": "^7.5",
  3400. "guzzlehttp/psr7": "^2.4.5",
  3401. "masterminds/html5": "^2.7",
  3402. "mck89/peast": "^1.14",
  3403. "pear/archive_tar": "^1.4.14",
  3404. "php": ">=8.1.0",
  3405. "psr/log": "^3.0",
  3406. "sebastian/diff": "^4",
  3407. "symfony/console": "^6.4",
  3408. "symfony/dependency-injection": "^6.4",
  3409. "symfony/event-dispatcher": "^6.4",
  3410. "symfony/filesystem": "^6.4",
  3411. "symfony/finder": "^6.4",
  3412. "symfony/http-foundation": "^6.4",
  3413. "symfony/http-kernel": "^6.4",
  3414. "symfony/mailer": "^6.4",
  3415. "symfony/mime": "^6.4",
  3416. "symfony/polyfill-iconv": "^1.26",
  3417. "symfony/process": "^6.4",
  3418. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3419. "symfony/routing": "^6.4",
  3420. "symfony/serializer": "^6.4",
  3421. "symfony/validator": "^6.4",
  3422. "symfony/yaml": "^6.4",
  3423. "twig/twig": "^3.15.0"
  3424. },
  3425. "conflict": {
  3426. "drush/drush": "<12.4.3"
  3427. },
  3428. "replace": {
  3429. "drupal/core-annotation": "self.version",
  3430. "drupal/core-assertion": "self.version",
  3431. "drupal/core-class-finder": "self.version",
  3432. "drupal/core-datetime": "self.version",
  3433. "drupal/core-dependency-injection": "self.version",
  3434. "drupal/core-diff": "self.version",
  3435. "drupal/core-discovery": "self.version",
  3436. "drupal/core-event-dispatcher": "self.version",
  3437. "drupal/core-file-cache": "self.version",
  3438. "drupal/core-file-security": "self.version",
  3439. "drupal/core-filesystem": "self.version",
  3440. "drupal/core-front-matter": "self.version",
  3441. "drupal/core-gettext": "self.version",
  3442. "drupal/core-graph": "self.version",
  3443. "drupal/core-http-foundation": "self.version",
  3444. "drupal/core-php-storage": "self.version",
  3445. "drupal/core-plugin": "self.version",
  3446. "drupal/core-proxy-builder": "self.version",
  3447. "drupal/core-render": "self.version",
  3448. "drupal/core-serialization": "self.version",
  3449. "drupal/core-transliteration": "self.version",
  3450. "drupal/core-utility": "self.version",
  3451. "drupal/core-uuid": "self.version",
  3452. "drupal/core-version": "self.version"
  3453. },
  3454. "suggest": {
  3455. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3456. },
  3457. "type": "drupal-core",
  3458. "extra": {
  3459. "drupal-scaffold": {
  3460. "file-mapping": {
  3461. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3462. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3463. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3464. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3465. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3466. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3467. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3468. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3469. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3470. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3471. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3472. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3473. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3474. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3475. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3476. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3477. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3478. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3479. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3480. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3481. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3482. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3483. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3484. }
  3485. }
  3486. },
  3487. "autoload": {
  3488. "files": [
  3489. "includes/bootstrap.inc"
  3490. ],
  3491. "psr-4": {
  3492. "Drupal\\Core\\": "lib/Drupal/Core",
  3493. "Drupal\\Component\\": "lib/Drupal/Component"
  3494. },
  3495. "classmap": [
  3496. "lib/Drupal.php",
  3497. "lib/Drupal/Component/DependencyInjection/Container.php",
  3498. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3499. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3500. "lib/Drupal/Component/Utility/Timer.php",
  3501. "lib/Drupal/Component/Utility/Unicode.php",
  3502. "lib/Drupal/Core/Cache/Cache.php",
  3503. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3504. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3505. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3506. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3507. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3508. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3509. "lib/Drupal/Core/Database/Connection.php",
  3510. "lib/Drupal/Core/Database/Database.php",
  3511. "lib/Drupal/Core/Database/StatementInterface.php",
  3512. "lib/Drupal/Core/DependencyInjection/Container.php",
  3513. "lib/Drupal/Core/DrupalKernel.php",
  3514. "lib/Drupal/Core/DrupalKernelInterface.php",
  3515. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3516. "lib/Drupal/Core/Site/Settings.php",
  3517. "lib/Drupal/Component/Datetime/Time.php"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "GPL-2.0-or-later"
  3523. ],
  3524. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3525. "support": {
  3526. "source": "https://github.com/drupal/core/tree/10.5.1"
  3527. },
  3528. "time": "2025-06-26T14:05:15+00:00"
  3529. },
  3530. {
  3531. "name": "drupal/core-composer-scaffold",
  3532. "version": "10.5.1",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3536. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3541. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "composer-plugin-api": "^2",
  3546. "php": ">=7.3.0"
  3547. },
  3548. "conflict": {
  3549. "drupal-composer/drupal-scaffold": "*"
  3550. },
  3551. "require-dev": {
  3552. "composer/composer": "^1.8@stable"
  3553. },
  3554. "type": "composer-plugin",
  3555. "extra": {
  3556. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3557. "branch-alias": {
  3558. "dev-master": "1.0.x-dev"
  3559. }
  3560. },
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3564. }
  3565. },
  3566. "notification-url": "https://packagist.org/downloads/",
  3567. "license": [
  3568. "GPL-2.0-or-later"
  3569. ],
  3570. "description": "A flexible Composer project scaffold builder.",
  3571. "homepage": "https://www.drupal.org/project/drupal",
  3572. "keywords": [
  3573. "drupal"
  3574. ],
  3575. "support": {
  3576. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.5.1"
  3577. },
  3578. "time": "2024-08-22T14:31:30+00:00"
  3579. },
  3580. {
  3581. "name": "drupal/core-project-message",
  3582. "version": "10.5.1",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/drupal/core-project-message.git",
  3586. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3591. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "composer-plugin-api": "^2",
  3596. "php": ">=7.3.0"
  3597. },
  3598. "type": "composer-plugin",
  3599. "extra": {
  3600. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3601. },
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3605. }
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "GPL-2.0-or-later"
  3610. ],
  3611. "description": "Adds a message after Composer installation.",
  3612. "homepage": "https://www.drupal.org/project/drupal",
  3613. "keywords": [
  3614. "drupal"
  3615. ],
  3616. "support": {
  3617. "source": "https://github.com/drupal/core-project-message/tree/11.1.8"
  3618. },
  3619. "time": "2023-07-24T07:55:25+00:00"
  3620. },
  3621. {
  3622. "name": "drupal/core-recommended",
  3623. "version": "10.5.1",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/drupal/core-recommended.git",
  3627. "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/60b76ba11c2ae9088283a1e6963b929ca976f4fc",
  3632. "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "asm89/stack-cors": "~v2.3.0",
  3637. "composer/semver": "~3.4.3",
  3638. "doctrine/annotations": "~1.14.4",
  3639. "doctrine/deprecations": "~1.1.5",
  3640. "doctrine/lexer": "~2.1.1",
  3641. "drupal/core": "10.5.1",
  3642. "egulias/email-validator": "~4.0.4",
  3643. "guzzlehttp/guzzle": "~7.9.3",
  3644. "guzzlehttp/promises": "~2.2.0",
  3645. "guzzlehttp/psr7": "~2.7.1",
  3646. "masterminds/html5": "~2.9.0",
  3647. "mck89/peast": "~v1.17.0",
  3648. "pear/archive_tar": "~1.5.0",
  3649. "pear/console_getopt": "~v1.4.3",
  3650. "pear/pear-core-minimal": "~v1.10.16",
  3651. "pear/pear_exception": "~v1.0.2",
  3652. "psr/cache": "~3.0.0",
  3653. "psr/container": "~2.0.2",
  3654. "psr/event-dispatcher": "~1.0.0",
  3655. "psr/http-client": "~1.0.3",
  3656. "psr/http-factory": "~1.1.0",
  3657. "psr/log": "~3.0.2",
  3658. "ralouphie/getallheaders": "~3.0.3",
  3659. "sebastian/diff": "~4.0.6",
  3660. "symfony/console": "~v6.4.21",
  3661. "symfony/dependency-injection": "~v6.4.20",
  3662. "symfony/deprecation-contracts": "~v3.5.1",
  3663. "symfony/error-handler": "~v6.4.20",
  3664. "symfony/event-dispatcher": "~v6.4.13",
  3665. "symfony/event-dispatcher-contracts": "~v3.5.1",
  3666. "symfony/filesystem": "~v6.4.13",
  3667. "symfony/finder": "~v6.4.17",
  3668. "symfony/http-foundation": "~v6.4.21",
  3669. "symfony/http-kernel": "~v6.4.21",
  3670. "symfony/mailer": "~v6.4.21",
  3671. "symfony/mime": "~v6.4.21",
  3672. "symfony/polyfill-ctype": "~v1.31.0",
  3673. "symfony/polyfill-iconv": "~v1.31.0",
  3674. "symfony/polyfill-intl-grapheme": "~v1.31.0",
  3675. "symfony/polyfill-intl-idn": "~v1.31.0",
  3676. "symfony/polyfill-intl-normalizer": "~v1.31.0",
  3677. "symfony/polyfill-mbstring": "~v1.31.0",
  3678. "symfony/polyfill-php83": "~v1.31.0",
  3679. "symfony/process": "~v6.4.20",
  3680. "symfony/psr-http-message-bridge": "~v6.4.13",
  3681. "symfony/routing": "~v6.4.18",
  3682. "symfony/serializer": "~v6.4.21",
  3683. "symfony/service-contracts": "~v3.5.1",
  3684. "symfony/string": "~v6.4.21",
  3685. "symfony/translation-contracts": "~v3.5.1",
  3686. "symfony/validator": "~v6.4.21",
  3687. "symfony/var-dumper": "~v6.4.21",
  3688. "symfony/var-exporter": "~v6.4.21",
  3689. "symfony/yaml": "~v6.4.21",
  3690. "twig/twig": "~v3.20.0"
  3691. },
  3692. "conflict": {
  3693. "webflo/drupal-core-strict": "*"
  3694. },
  3695. "type": "metapackage",
  3696. "notification-url": "https://packagist.org/downloads/",
  3697. "license": [
  3698. "GPL-2.0-or-later"
  3699. ],
  3700. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3701. "support": {
  3702. "source": "https://github.com/drupal/core-recommended/tree/10.5.1"
  3703. },
  3704. "time": "2025-06-26T14:05:15+00:00"
  3705. },
  3706. {
  3707. "name": "drupal/ctools",
  3708. "version": "4.1.0",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://git.drupalcode.org/project/ctools.git",
  3712. "reference": "4.1.0"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3717. "reference": "4.1.0",
  3718. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3719. },
  3720. "require": {
  3721. "drupal/core": "^9.5 || ^10 || ^11"
  3722. },
  3723. "type": "drupal-module",
  3724. "extra": {
  3725. "drupal": {
  3726. "version": "4.1.0",
  3727. "datestamp": "1718144949",
  3728. "security-coverage": {
  3729. "status": "covered",
  3730. "message": "Covered by Drupal's security advisory policy"
  3731. }
  3732. },
  3733. "branch-alias": {
  3734. "dev-8.x-3.x": "3.x-dev"
  3735. }
  3736. },
  3737. "notification-url": "https://packages.drupal.org/8/downloads",
  3738. "license": [
  3739. "GPL-2.0-or-later"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Kris Vanderwater (EclipseGc)",
  3744. "homepage": "https://www.drupal.org/u/eclipsegc",
  3745. "role": "Maintainer"
  3746. },
  3747. {
  3748. "name": "Jakob Perry (japerry)",
  3749. "homepage": "https://www.drupal.org/u/japerry",
  3750. "role": "Maintainer"
  3751. },
  3752. {
  3753. "name": "Tim Plunkett (tim.plunkett)",
  3754. "homepage": "https://www.drupal.org/u/timplunkett",
  3755. "role": "Maintainer"
  3756. },
  3757. {
  3758. "name": "James Gilliland (neclimdul)",
  3759. "homepage": "https://www.drupal.org/u/neclimdul",
  3760. "role": "Maintainer"
  3761. },
  3762. {
  3763. "name": "Daniel Wehner (dawehner)",
  3764. "homepage": "https://www.drupal.org/u/dawehner",
  3765. "role": "Maintainer"
  3766. },
  3767. {
  3768. "name": "joelpittet",
  3769. "homepage": "https://www.drupal.org/user/160302"
  3770. },
  3771. {
  3772. "name": "merlinofchaos",
  3773. "homepage": "https://www.drupal.org/user/26979"
  3774. },
  3775. {
  3776. "name": "neclimdul",
  3777. "homepage": "https://www.drupal.org/user/48673"
  3778. },
  3779. {
  3780. "name": "sdboyer",
  3781. "homepage": "https://www.drupal.org/user/146719"
  3782. },
  3783. {
  3784. "name": "sun",
  3785. "homepage": "https://www.drupal.org/user/54136"
  3786. },
  3787. {
  3788. "name": "tim.plunkett",
  3789. "homepage": "https://www.drupal.org/user/241634"
  3790. }
  3791. ],
  3792. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3793. "homepage": "https://www.drupal.org/project/ctools",
  3794. "support": {
  3795. "source": "https://git.drupalcode.org/project/ctools",
  3796. "issues": "https://www.drupal.org/project/issues/ctools"
  3797. }
  3798. },
  3799. {
  3800. "name": "drupal/date_range_formatter",
  3801. "version": "dev-9.0.x",
  3802. "source": {
  3803. "type": "git",
  3804. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3805. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3806. },
  3807. "require": {
  3808. "drupal/core": "^8 || ^9 || ^10"
  3809. },
  3810. "type": "drupal-module",
  3811. "extra": {
  3812. "branch-alias": {
  3813. "dev-9.0.x": "9.0.x-dev"
  3814. },
  3815. "drupal": {
  3816. "version": "9.0.x-dev",
  3817. "datestamp": "1718887202",
  3818. "security-coverage": {
  3819. "status": "not-covered",
  3820. "message": "Dev releases are not covered by Drupal security advisories."
  3821. }
  3822. }
  3823. },
  3824. "notification-url": "https://packages.drupal.org/8/downloads",
  3825. "license": [
  3826. "GPL-2.0-or-later"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "maximpodorov",
  3831. "homepage": "https://www.drupal.org/user/515310"
  3832. },
  3833. {
  3834. "name": "sudishth",
  3835. "homepage": "https://www.drupal.org/user/1440562"
  3836. }
  3837. ],
  3838. "description": "Formats date ranges.",
  3839. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3840. "support": {
  3841. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3842. }
  3843. },
  3844. {
  3845. "name": "drupal/devel",
  3846. "version": "5.4.0",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://git.drupalcode.org/project/devel.git",
  3850. "reference": "5.4.0"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://ftp.drupal.org/files/projects/devel-5.4.0.zip",
  3855. "reference": "5.4.0",
  3856. "shasum": "fc14fe1c396dbff661f9d13e6e3171d9ab781a46"
  3857. },
  3858. "require": {
  3859. "doctrine/common": "^2.7 || ^3.4",
  3860. "drupal/core": "^10.3 || ^11 || ^12",
  3861. "php": ">=8.1",
  3862. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3863. },
  3864. "conflict": {
  3865. "drupal/core": "<10.3",
  3866. "drush/drush": "<12.5.1"
  3867. },
  3868. "require-dev": {
  3869. "drupal/navigation_extra_tools": "1.0.x-dev",
  3870. "drush/drush": "^13",
  3871. "firephp/firephp-core": "^0.5.3"
  3872. },
  3873. "suggest": {
  3874. "drupal/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3875. },
  3876. "type": "drupal-module",
  3877. "extra": {
  3878. "drupal": {
  3879. "version": "5.4.0",
  3880. "datestamp": "1752755621",
  3881. "security-coverage": {
  3882. "status": "covered",
  3883. "message": "Covered by Drupal's security advisory policy"
  3884. }
  3885. }
  3886. },
  3887. "notification-url": "https://packages.drupal.org/8/downloads",
  3888. "license": [
  3889. "GPL-2.0-or-later"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "moshe weitzman",
  3894. "homepage": "https://www.drupal.org/user/23"
  3895. }
  3896. ],
  3897. "description": "Various blocks, pages, and functions for developers.",
  3898. "homepage": "https://www.drupal.org/project/devel",
  3899. "support": {
  3900. "source": "https://gitlab.com/drupalspoons/devel",
  3901. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3902. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3903. }
  3904. },
  3905. {
  3906. "name": "drupal/devel_kint_extras",
  3907. "version": "1.1.4",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3911. "reference": "1.1.4"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3916. "reference": "1.1.4",
  3917. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3918. },
  3919. "require": {
  3920. "drupal/core": "^9 || ^10 || ^11",
  3921. "drupal/devel": "^4.0 || ^5.0",
  3922. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3923. },
  3924. "type": "drupal-module",
  3925. "extra": {
  3926. "drupal": {
  3927. "version": "1.1.4",
  3928. "datestamp": "1740995042",
  3929. "security-coverage": {
  3930. "status": "covered",
  3931. "message": "Covered by Drupal's security advisory policy"
  3932. }
  3933. }
  3934. },
  3935. "notification-url": "https://packages.drupal.org/8/downloads",
  3936. "license": [
  3937. "GPL-2.0-or-later"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "Jan Chojnacki",
  3942. "homepage": "https://www.drupal.org/u/janchojnacki"
  3943. },
  3944. {
  3945. "name": "Other contributors",
  3946. "homepage": "https://www.drupal.org/node/3164492/committers"
  3947. }
  3948. ],
  3949. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3950. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3951. "support": {
  3952. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3953. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3954. "chat": "irc://irc.freenode.org/drupal-contribute"
  3955. }
  3956. },
  3957. {
  3958. "name": "drupal/email_registration",
  3959. "version": "1.4.0",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://git.drupalcode.org/project/email_registration.git",
  3963. "reference": "8.x-1.4"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3968. "reference": "8.x-1.4",
  3969. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3970. },
  3971. "require": {
  3972. "drupal/core": "^9.1 || ^10"
  3973. },
  3974. "conflict": {
  3975. "drupal/commerce": "<2.12"
  3976. },
  3977. "require-dev": {
  3978. "drupal/commerce": "^2.0",
  3979. "drupal/token": "*"
  3980. },
  3981. "type": "drupal-module",
  3982. "extra": {
  3983. "drupal": {
  3984. "version": "8.x-1.4",
  3985. "datestamp": "1700548925",
  3986. "security-coverage": {
  3987. "status": "covered",
  3988. "message": "Covered by Drupal's security advisory policy"
  3989. }
  3990. }
  3991. },
  3992. "notification-url": "https://packages.drupal.org/8/downloads",
  3993. "license": [
  3994. "GPL-2.0-or-later"
  3995. ],
  3996. "authors": [
  3997. {
  3998. "name": "Greg Knaddison (greggles)",
  3999. "homepage": "https://www.drupal.org/u/greggles",
  4000. "role": "Maintainer"
  4001. },
  4002. {
  4003. "name": "Andrey Postnikov (andypost)",
  4004. "homepage": "https://www.drupal.org/u/andypost",
  4005. "role": "Maintainer"
  4006. },
  4007. {
  4008. "name": "Chris Herberte",
  4009. "homepage": "https://www.drupal.org/u/chris-herberte",
  4010. "role": "Maintainer"
  4011. },
  4012. {
  4013. "name": "Moshe Weitzman (moshe weitzman)",
  4014. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4015. "role": "Maintainer"
  4016. },
  4017. {
  4018. "name": "grevil",
  4019. "homepage": "https://www.drupal.org/user/3668491"
  4020. },
  4021. {
  4022. "name": "moshe weitzman",
  4023. "homepage": "https://www.drupal.org/user/23"
  4024. }
  4025. ],
  4026. "description": "Allows users to register with an email address as their username.",
  4027. "homepage": "https://www.drupal.org/project/email_registration",
  4028. "support": {
  4029. "source": "https://git.drupalcode.org/project/email_registration",
  4030. "issues": "http://drupal.org/project/issues/email_registration"
  4031. }
  4032. },
  4033. {
  4034. "name": "drupal/embed",
  4035. "version": "1.10.0",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://git.drupalcode.org/project/embed.git",
  4039. "reference": "8.x-1.10"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  4044. "reference": "8.x-1.10",
  4045. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  4046. },
  4047. "require": {
  4048. "drupal/core": "^10.2 || ^11"
  4049. },
  4050. "require-dev": {
  4051. "drupal/ckeditor": "^1.0"
  4052. },
  4053. "type": "drupal-module",
  4054. "extra": {
  4055. "drupal": {
  4056. "version": "8.x-1.10",
  4057. "datestamp": "1737663032",
  4058. "security-coverage": {
  4059. "status": "covered",
  4060. "message": "Covered by Drupal's security advisory policy"
  4061. }
  4062. }
  4063. },
  4064. "notification-url": "https://packages.drupal.org/8/downloads",
  4065. "license": [
  4066. "GPL-2.0-or-later"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "cs_shadow",
  4071. "homepage": "https://www.drupal.org/user/2828287"
  4072. },
  4073. {
  4074. "name": "dave reid",
  4075. "homepage": "https://www.drupal.org/user/53892"
  4076. },
  4077. {
  4078. "name": "devin carlson",
  4079. "homepage": "https://www.drupal.org/user/290182"
  4080. },
  4081. {
  4082. "name": "Drupal Media Team",
  4083. "homepage": "https://www.drupal.org/user/3260690"
  4084. },
  4085. {
  4086. "name": "phenaproxima",
  4087. "homepage": "https://www.drupal.org/user/205645"
  4088. },
  4089. {
  4090. "name": "slashrsm",
  4091. "homepage": "https://www.drupal.org/user/744628"
  4092. }
  4093. ],
  4094. "description": "Provides a framework for different types of embeds in text editors.",
  4095. "homepage": "https://www.drupal.org/project/embed",
  4096. "support": {
  4097. "source": "https://git.drupalcode.org/project/embed"
  4098. }
  4099. },
  4100. {
  4101. "name": "drupal/entity_browser",
  4102. "version": "2.13.0",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4106. "reference": "8.x-2.13"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.13.zip",
  4111. "reference": "8.x-2.13",
  4112. "shasum": "9c31caed2602a5cb582cb4f1e1feaac44cbbc21b"
  4113. },
  4114. "require": {
  4115. "drupal/core": "^10.2 || ^11"
  4116. },
  4117. "conflict": {
  4118. "drupal/media_entity": "1.*"
  4119. },
  4120. "require-dev": {
  4121. "drupal/embed": "^1.0",
  4122. "drupal/entity_embed": "^1.0",
  4123. "drupal/entity_reference_revisions": "^1.0",
  4124. "drupal/entityqueue": "^1.0",
  4125. "drupal/inline_entity_form": "^1 || ^3",
  4126. "drupal/paragraphs": "^1.0",
  4127. "drupal/search_api": "^1.0",
  4128. "drupal/token": "^1.0"
  4129. },
  4130. "type": "drupal-module",
  4131. "extra": {
  4132. "drupal": {
  4133. "version": "8.x-2.13",
  4134. "datestamp": "1739701403",
  4135. "security-coverage": {
  4136. "status": "covered",
  4137. "message": "Covered by Drupal's security advisory policy"
  4138. }
  4139. }
  4140. },
  4141. "notification-url": "https://packages.drupal.org/8/downloads",
  4142. "license": [
  4143. "GPL-2.0+"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "Janez Urevc",
  4148. "homepage": "https://github.com/slashrsm",
  4149. "role": "Maintainer"
  4150. },
  4151. {
  4152. "name": "Primoz Hmeljak",
  4153. "homepage": "https://github.com/primsi",
  4154. "role": "Maintainer"
  4155. },
  4156. {
  4157. "name": "See other contributors",
  4158. "homepage": "https://www.drupal.org/node/1943336/committers",
  4159. "role": "contributor"
  4160. },
  4161. {
  4162. "name": "Drupal Media Team",
  4163. "homepage": "https://www.drupal.org/user/3260690"
  4164. },
  4165. {
  4166. "name": "marcingy",
  4167. "homepage": "https://www.drupal.org/user/77320"
  4168. },
  4169. {
  4170. "name": "oknate",
  4171. "homepage": "https://www.drupal.org/user/471638"
  4172. },
  4173. {
  4174. "name": "primsi",
  4175. "homepage": "https://www.drupal.org/user/282629"
  4176. },
  4177. {
  4178. "name": "samuel.mortenson",
  4179. "homepage": "https://www.drupal.org/user/2582268"
  4180. },
  4181. {
  4182. "name": "slashrsm",
  4183. "homepage": "https://www.drupal.org/user/744628"
  4184. }
  4185. ],
  4186. "description": "Entity browsing and selecting component.",
  4187. "homepage": "https://drupal.org/project/entity_browser",
  4188. "support": {
  4189. "source": "https://git.drupalcode.org/project/entity_browser",
  4190. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4191. "irc": "irc://irc.freenode.org/drupal-contribute"
  4192. }
  4193. },
  4194. {
  4195. "name": "drupal/entity_browser_enhanced",
  4196. "version": "2.0.1",
  4197. "source": {
  4198. "type": "git",
  4199. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4200. "reference": "2.0.1"
  4201. },
  4202. "dist": {
  4203. "type": "zip",
  4204. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4205. "reference": "2.0.1",
  4206. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4207. },
  4208. "require": {
  4209. "drupal/core": "^10 || ^11",
  4210. "drupal/entity_browser": "~2.0"
  4211. },
  4212. "type": "drupal-module",
  4213. "extra": {
  4214. "drupal": {
  4215. "version": "2.0.1",
  4216. "datestamp": "1719827338",
  4217. "security-coverage": {
  4218. "status": "covered",
  4219. "message": "Covered by Drupal's security advisory policy"
  4220. }
  4221. }
  4222. },
  4223. "notification-url": "https://packages.drupal.org/8/downloads",
  4224. "license": [
  4225. "GPL-2.0-or-later"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Vardot",
  4230. "homepage": "https://www.drupal.org/vardot",
  4231. "role": "Maintainer"
  4232. },
  4233. {
  4234. "name": "rajab natshah",
  4235. "homepage": "https://www.drupal.org/user/1414312"
  4236. }
  4237. ],
  4238. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4239. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4240. "support": {
  4241. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4242. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4243. }
  4244. },
  4245. {
  4246. "name": "drupal/entity_clone",
  4247. "version": "dev-2.x",
  4248. "source": {
  4249. "type": "git",
  4250. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4251. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4252. },
  4253. "require": {
  4254. "drupal/core": "^9 || ^10 || ^11"
  4255. },
  4256. "require-dev": {
  4257. "drupal/entity_browser": "2.x-dev",
  4258. "drupal/entity_usage": "2.x-dev",
  4259. "drupal/paragraphs": "^1.0",
  4260. "drupal/search_api": "^1.0"
  4261. },
  4262. "type": "drupal-module",
  4263. "extra": {
  4264. "branch-alias": {
  4265. "dev-2.x": "2.x-dev"
  4266. },
  4267. "drupal": {
  4268. "version": "2.1.0-beta1+3-dev",
  4269. "datestamp": "1748869926",
  4270. "security-coverage": {
  4271. "status": "not-covered",
  4272. "message": "Dev releases are not covered by Drupal security advisories."
  4273. }
  4274. }
  4275. },
  4276. "notification-url": "https://packages.drupal.org/8/downloads",
  4277. "license": [
  4278. "GPL-2.0-or-later"
  4279. ],
  4280. "authors": [
  4281. {
  4282. "name": "colan",
  4283. "homepage": "https://www.drupal.org/user/58704"
  4284. },
  4285. {
  4286. "name": "joevagyok",
  4287. "homepage": "https://www.drupal.org/user/2876343"
  4288. },
  4289. {
  4290. "name": "nickdickinsonwilde",
  4291. "homepage": "https://www.drupal.org/user/3094661"
  4292. },
  4293. {
  4294. "name": "rajeshreeputra",
  4295. "homepage": "https://www.drupal.org/user/3418561"
  4296. },
  4297. {
  4298. "name": "upchuk",
  4299. "homepage": "https://www.drupal.org/user/1885838"
  4300. },
  4301. {
  4302. "name": "vpeltot",
  4303. "homepage": "https://www.drupal.org/user/1361586"
  4304. }
  4305. ],
  4306. "description": "Add a clone action for all entities.",
  4307. "homepage": "https://drupal.org/project/entity_clone",
  4308. "support": {
  4309. "source": "https://git.drupalcode.org/project/entity_clone"
  4310. }
  4311. },
  4312. {
  4313. "name": "drupal/entity_reference_revisions",
  4314. "version": "1.12.0",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4318. "reference": "8.x-1.12"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
  4323. "reference": "8.x-1.12",
  4324. "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
  4325. },
  4326. "require": {
  4327. "drupal/core": "^9 || ^10 || ^11"
  4328. },
  4329. "require-dev": {
  4330. "drupal/diff": "^1 || ^2"
  4331. },
  4332. "type": "drupal-module",
  4333. "extra": {
  4334. "drupal": {
  4335. "version": "8.x-1.12",
  4336. "datestamp": "1722804497",
  4337. "security-coverage": {
  4338. "status": "covered",
  4339. "message": "Covered by Drupal's security advisory policy"
  4340. }
  4341. },
  4342. "drush": {
  4343. "services": {
  4344. "drush.services.yml": "^9 || ^10 || ^11"
  4345. }
  4346. }
  4347. },
  4348. "notification-url": "https://packages.drupal.org/8/downloads",
  4349. "license": [
  4350. "GPL-2.0-or-later"
  4351. ],
  4352. "authors": [
  4353. {
  4354. "name": "berdir",
  4355. "homepage": "https://www.drupal.org/user/214652"
  4356. },
  4357. {
  4358. "name": "Frans",
  4359. "homepage": "https://www.drupal.org/user/514222"
  4360. },
  4361. {
  4362. "name": "jeroen.b",
  4363. "homepage": "https://www.drupal.org/user/1853532"
  4364. },
  4365. {
  4366. "name": "miro_dietiker",
  4367. "homepage": "https://www.drupal.org/user/227761"
  4368. }
  4369. ],
  4370. "description": "Entity Reference Revisions",
  4371. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4372. "support": {
  4373. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4374. }
  4375. },
  4376. {
  4377. "name": "drupal/entity_type_clone",
  4378. "version": "4.0.3",
  4379. "source": {
  4380. "type": "git",
  4381. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4382. "reference": "4.0.3"
  4383. },
  4384. "dist": {
  4385. "type": "zip",
  4386. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.3.zip",
  4387. "reference": "4.0.3",
  4388. "shasum": "684e81fcaa034bfb7a4ffdc3e81c040701fbd8b7"
  4389. },
  4390. "require": {
  4391. "drupal/core": "^8 || ^9 || ^10"
  4392. },
  4393. "type": "drupal-module",
  4394. "extra": {
  4395. "drupal": {
  4396. "version": "4.0.3",
  4397. "datestamp": "1693947342",
  4398. "security-coverage": {
  4399. "status": "covered",
  4400. "message": "Covered by Drupal's security advisory policy"
  4401. }
  4402. }
  4403. },
  4404. "notification-url": "https://packages.drupal.org/8/downloads",
  4405. "license": [
  4406. "GPL-2.0-or-later"
  4407. ],
  4408. "authors": [
  4409. {
  4410. "name": "ajay_reddy",
  4411. "homepage": "https://www.drupal.org/user/3261994"
  4412. },
  4413. {
  4414. "name": "vuil",
  4415. "homepage": "https://www.drupal.org/user/3568458"
  4416. }
  4417. ],
  4418. "description": "This module provide option to clone entity types and role.",
  4419. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4420. "support": {
  4421. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4422. }
  4423. },
  4424. {
  4425. "name": "drupal/extlink",
  4426. "version": "2.0.4",
  4427. "source": {
  4428. "type": "git",
  4429. "url": "https://git.drupalcode.org/project/extlink.git",
  4430. "reference": "2.0.4"
  4431. },
  4432. "dist": {
  4433. "type": "zip",
  4434. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.4.zip",
  4435. "reference": "2.0.4",
  4436. "shasum": "0331ef3457d3a1701f01e04f8256bdd823ea3512"
  4437. },
  4438. "require": {
  4439. "drupal/core": "^10 || ^11"
  4440. },
  4441. "type": "drupal-module",
  4442. "extra": {
  4443. "drupal": {
  4444. "version": "2.0.4",
  4445. "datestamp": "1732565828",
  4446. "security-coverage": {
  4447. "status": "covered",
  4448. "message": "Covered by Drupal's security advisory policy"
  4449. }
  4450. }
  4451. },
  4452. "notification-url": "https://packages.drupal.org/8/downloads",
  4453. "license": [
  4454. "GPL-2.0-or-later"
  4455. ],
  4456. "authors": [
  4457. {
  4458. "name": "Nate Lampton",
  4459. "homepage": "https://www.drupal.org/u/quicksketch",
  4460. "role": "Maintainer"
  4461. },
  4462. {
  4463. "name": "Lachlan Ennis",
  4464. "homepage": "https://www.drupal.org/u/elachlan",
  4465. "role": "Maintainer"
  4466. },
  4467. {
  4468. "name": "Neslee Canil Pinto",
  4469. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4470. "role": "Maintainer"
  4471. },
  4472. {
  4473. "name": "quicksketch",
  4474. "homepage": "https://www.drupal.org/user/35821"
  4475. },
  4476. {
  4477. "name": "smustgrave",
  4478. "homepage": "https://www.drupal.org/user/3252890"
  4479. }
  4480. ],
  4481. "description": "Modify behavior and appearance of external links.",
  4482. "homepage": "https://www.drupal.org/project/extlink",
  4483. "keywords": [
  4484. "Drupal",
  4485. "External Links"
  4486. ],
  4487. "support": {
  4488. "source": "https://git.drupalcode.org/project/extlink",
  4489. "issues": "https://www.drupal.org/project/issues/extlink"
  4490. }
  4491. },
  4492. {
  4493. "name": "drupal/field_group",
  4494. "version": "3.6.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://git.drupalcode.org/project/field_group.git",
  4498. "reference": "8.x-3.6"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4503. "reference": "8.x-3.6",
  4504. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4505. },
  4506. "require": {
  4507. "drupal/core": "^9.2 || ^10 || ^11"
  4508. },
  4509. "require-dev": {
  4510. "drupal/jquery_ui_accordion": "*"
  4511. },
  4512. "type": "drupal-module",
  4513. "extra": {
  4514. "drupal": {
  4515. "version": "8.x-3.6",
  4516. "datestamp": "1722672510",
  4517. "security-coverage": {
  4518. "status": "covered",
  4519. "message": "Covered by Drupal's security advisory policy"
  4520. }
  4521. }
  4522. },
  4523. "notification-url": "https://packages.drupal.org/8/downloads",
  4524. "license": [
  4525. "GPL-2.0-or-later"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "anybody",
  4530. "homepage": "https://www.drupal.org/user/291091"
  4531. },
  4532. {
  4533. "name": "grevil",
  4534. "homepage": "https://www.drupal.org/user/3668491"
  4535. },
  4536. {
  4537. "name": "hydra",
  4538. "homepage": "https://www.drupal.org/user/647364"
  4539. },
  4540. {
  4541. "name": "joevagyok",
  4542. "homepage": "https://www.drupal.org/user/2876343"
  4543. },
  4544. {
  4545. "name": "jyve",
  4546. "homepage": "https://www.drupal.org/user/591438"
  4547. },
  4548. {
  4549. "name": "nils.destoop",
  4550. "homepage": "https://www.drupal.org/user/361625"
  4551. },
  4552. {
  4553. "name": "Stalski",
  4554. "homepage": "https://www.drupal.org/user/322618"
  4555. },
  4556. {
  4557. "name": "swentel",
  4558. "homepage": "https://www.drupal.org/user/107403"
  4559. }
  4560. ],
  4561. "description": "Provides the field_group module.",
  4562. "homepage": "https://www.drupal.org/project/field_group",
  4563. "support": {
  4564. "source": "https://git.drupalcode.org/project/field_group",
  4565. "issues": "https://www.drupal.org/project/issues/field_group"
  4566. }
  4567. },
  4568. {
  4569. "name": "drupal/filter_perms",
  4570. "version": "2.0.2",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4574. "reference": "2.0.2"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4579. "reference": "2.0.2",
  4580. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4581. },
  4582. "require": {
  4583. "drupal/core": "^10.3 || ^11 || ^12"
  4584. },
  4585. "type": "drupal-module",
  4586. "extra": {
  4587. "drupal": {
  4588. "version": "2.0.2",
  4589. "datestamp": "1745993059",
  4590. "security-coverage": {
  4591. "status": "covered",
  4592. "message": "Covered by Drupal's security advisory policy"
  4593. }
  4594. }
  4595. },
  4596. "notification-url": "https://packages.drupal.org/8/downloads",
  4597. "license": [
  4598. "GPL-2.0+"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "cyu",
  4603. "homepage": "https://www.drupal.org/user/202205"
  4604. },
  4605. {
  4606. "name": "deekayen",
  4607. "homepage": "https://www.drupal.org/user/972"
  4608. },
  4609. {
  4610. "name": "ivavictoria",
  4611. "homepage": "https://www.drupal.org/user/3061533"
  4612. },
  4613. {
  4614. "name": "justcaldwell",
  4615. "homepage": "https://www.drupal.org/user/290069"
  4616. },
  4617. {
  4618. "name": "mgbellaire",
  4619. "homepage": "https://www.drupal.org/user/1831932"
  4620. },
  4621. {
  4622. "name": "scott_euser",
  4623. "homepage": "https://www.drupal.org/user/3267594"
  4624. },
  4625. {
  4626. "name": "willzyx",
  4627. "homepage": "https://www.drupal.org/user/1043862"
  4628. }
  4629. ],
  4630. "description": "Provides role and module filters to simplify the user permissions page.",
  4631. "homepage": "https://www.drupal.org/project/filter_perms",
  4632. "support": {
  4633. "source": "http://cgit.drupalcode.org/filter_perms",
  4634. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4635. }
  4636. },
  4637. {
  4638. "name": "drupal/formatter_suite",
  4639. "version": "2.1.0",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4643. "reference": "2.1.0"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.1.0.zip",
  4648. "reference": "2.1.0",
  4649. "shasum": "699e14a27dfecfaa4abd3f923102f3256603aa28"
  4650. },
  4651. "require": {
  4652. "drupal/core": "^9 || ^10"
  4653. },
  4654. "type": "drupal-module",
  4655. "extra": {
  4656. "drupal": {
  4657. "version": "2.1.0",
  4658. "datestamp": "1742410413",
  4659. "security-coverage": {
  4660. "status": "covered",
  4661. "message": "Covered by Drupal's security advisory policy"
  4662. }
  4663. }
  4664. },
  4665. "notification-url": "https://packages.drupal.org/8/downloads",
  4666. "license": [
  4667. "GPL-2.0-or-later"
  4668. ],
  4669. "authors": [
  4670. {
  4671. "name": "cyoun",
  4672. "homepage": "https://www.drupal.org/user/3819850"
  4673. },
  4674. {
  4675. "name": "toamit",
  4676. "homepage": "https://www.drupal.org/user/2820523"
  4677. }
  4678. ],
  4679. "description": "Field formaters to present numbers, text, links, etc.",
  4680. "homepage": "https://www.drupal.org/project/formatter_suite",
  4681. "keywords": [
  4682. "Drupal",
  4683. "Format"
  4684. ],
  4685. "support": {
  4686. "source": "http://cgit.drupalcode.org/formatter_suite",
  4687. "issues": "http://drupal.org/project/issues/formatter_suite"
  4688. }
  4689. },
  4690. {
  4691. "name": "drupal/geocoder",
  4692. "version": "4.29.0",
  4693. "source": {
  4694. "type": "git",
  4695. "url": "https://git.drupalcode.org/project/geocoder.git",
  4696. "reference": "8.x-4.29"
  4697. },
  4698. "dist": {
  4699. "type": "zip",
  4700. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.29.zip",
  4701. "reference": "8.x-4.29",
  4702. "shasum": "f874ecd2a743df517e27cdc6a1332e0fe0e97b53"
  4703. },
  4704. "require": {
  4705. "davedevelopment/stiphle": "^0.9.2",
  4706. "drupal/core": "^9.5 || ^10 || ^11",
  4707. "php": ">=7.3.0",
  4708. "php-http/guzzle7-adapter": "^1.0",
  4709. "php-http/message": "^1.6",
  4710. "willdurand/geocoder": "^4.0|^5.0"
  4711. },
  4712. "require-dev": {
  4713. "drupal/address": "^1.11 || ^2.0",
  4714. "drupal/geocoder_field": "*",
  4715. "drupal/geofield": "^1.52",
  4716. "geo6/geocoder-php-addok-provider": "^1.0",
  4717. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4718. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4719. "geo6/geocoder-php-spw-provider": "^1.0",
  4720. "geocoder-php/arcgis-online-provider": "^4.0",
  4721. "geocoder-php/azure-maps-provider": "^1.2",
  4722. "geocoder-php/bing-maps-provider": "^4.0",
  4723. "geocoder-php/free-geoip-provider": "^4.1",
  4724. "geocoder-php/geo-plugin-provider": "^4.0",
  4725. "geocoder-php/geonames-provider": "^4.1",
  4726. "geocoder-php/google-maps-provider": "^4.2",
  4727. "geocoder-php/graphhopper-provider": "^0.5.0",
  4728. "geocoder-php/host-ip-provider": "^4.0",
  4729. "geocoder-php/ip-info-db-provider": "^4.0",
  4730. "geocoder-php/locationiq-provider": "^1.5",
  4731. "geocoder-php/mapbox-provider": "^1.0",
  4732. "geocoder-php/mapquest-provider": "^4.0",
  4733. "geocoder-php/maptiler-provider": "^1.0",
  4734. "geocoder-php/maxmind-provider": "^4.1",
  4735. "geocoder-php/nominatim-provider": "^5.0",
  4736. "geocoder-php/open-cage-provider": "^4.0",
  4737. "geocoder-php/openrouteservice-provider": "^1.0",
  4738. "geocoder-php/pelias-provider": "^1.1",
  4739. "geocoder-php/photon-provider": "^0.6",
  4740. "geocoder-php/tomtom-provider": "^4.0",
  4741. "geocoder-php/yandex-provider": "^4.0",
  4742. "systonic/ban-france-provider": "^1.0"
  4743. },
  4744. "type": "drupal-module",
  4745. "extra": {
  4746. "drupal": {
  4747. "version": "8.x-4.29",
  4748. "datestamp": "1749505480",
  4749. "security-coverage": {
  4750. "status": "covered",
  4751. "message": "Covered by Drupal's security advisory policy"
  4752. }
  4753. }
  4754. },
  4755. "notification-url": "https://packages.drupal.org/8/downloads",
  4756. "license": [
  4757. "GPL-2.0-or-later"
  4758. ],
  4759. "authors": [
  4760. {
  4761. "name": "Pol Dellaiera (@drupol)",
  4762. "homepage": "https://www.drupal.org/u/pol",
  4763. "role": "Maintainer"
  4764. },
  4765. {
  4766. "name": "Italo Mairo (@itamair)",
  4767. "homepage": "https://www.drupal.org/u/itamair",
  4768. "role": "Co-maintainer"
  4769. },
  4770. {
  4771. "name": "michaelfavia",
  4772. "homepage": "https://www.drupal.org/user/49137"
  4773. },
  4774. {
  4775. "name": "poker10",
  4776. "homepage": "https://www.drupal.org/user/272316"
  4777. }
  4778. ],
  4779. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4780. "homepage": "https://drupal.org/project/geocoder",
  4781. "support": {
  4782. "source": "https://git.drupalcode.org/project/geocoder",
  4783. "issues": "https://drupal.org/project/issues/geocoder",
  4784. "irc": "irc://irc.freenode.org/drupal-geo"
  4785. }
  4786. },
  4787. {
  4788. "name": "drupal/geofield",
  4789. "version": "1.64.0",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://git.drupalcode.org/project/geofield.git",
  4793. "reference": "8.x-1.64"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.64.zip",
  4798. "reference": "8.x-1.64",
  4799. "shasum": "300f8cf8bf4d0cf2660c5a7e81d56146d947b772"
  4800. },
  4801. "require": {
  4802. "drupal/core": "^9 || ^10 || ^11",
  4803. "itamair/geophp": "^1.6"
  4804. },
  4805. "require-dev": {
  4806. "drupal/diff": "^1.3",
  4807. "drupal/feeds": "^3.0@beta"
  4808. },
  4809. "type": "drupal-module",
  4810. "extra": {
  4811. "drupal": {
  4812. "version": "8.x-1.64",
  4813. "datestamp": "1736675456",
  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+"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Italo Mairo",
  4827. "homepage": "https://www.drupal.org/u/itamair",
  4828. "role": "Drupal 8+ Maintainer"
  4829. },
  4830. {
  4831. "name": "Brandon Morrison",
  4832. "homepage": "https://www.drupal.org/u/brandonian",
  4833. "role": "Drupal 7 Maintainer"
  4834. },
  4835. {
  4836. "name": "Pablo López",
  4837. "homepage": "https://www.drupal.org/u/plopesc",
  4838. "role": "Drupal 7 Maintainer"
  4839. }
  4840. ],
  4841. "description": "Stores geographic and location data (points, lines, and polygons).",
  4842. "homepage": "https://www.drupal.org/project/geofield",
  4843. "support": {
  4844. "source": "https://git.drupalcode.org/project/geofield",
  4845. "issues": "https://www.drupal.org/project/issues/geofield",
  4846. "irc": "irc://irc.freenode.org/drupal-contribute"
  4847. }
  4848. },
  4849. {
  4850. "name": "drupal/honeypot",
  4851. "version": "2.2.2",
  4852. "source": {
  4853. "type": "git",
  4854. "url": "https://git.drupalcode.org/project/honeypot.git",
  4855. "reference": "2.2.2"
  4856. },
  4857. "dist": {
  4858. "type": "zip",
  4859. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4860. "reference": "2.2.2",
  4861. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4862. },
  4863. "require": {
  4864. "drupal/core": "^10.3 || ^11"
  4865. },
  4866. "require-dev": {
  4867. "drupal/rules": "^4.0",
  4868. "drupal/webform": "^6.2"
  4869. },
  4870. "type": "drupal-module",
  4871. "extra": {
  4872. "drupal": {
  4873. "version": "2.2.2",
  4874. "datestamp": "1739854442",
  4875. "security-coverage": {
  4876. "status": "covered",
  4877. "message": "Covered by Drupal's security advisory policy"
  4878. }
  4879. }
  4880. },
  4881. "notification-url": "https://packages.drupal.org/8/downloads",
  4882. "license": [
  4883. "GPL-2.0-or-later"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Jeff Geerling",
  4888. "homepage": "https://www.drupal.org/user/389011",
  4889. "email": "geerlingguy@mac.com"
  4890. },
  4891. {
  4892. "name": "manuel garcia",
  4893. "homepage": "https://www.drupal.org/user/213194"
  4894. },
  4895. {
  4896. "name": "tr",
  4897. "homepage": "https://www.drupal.org/user/202830"
  4898. },
  4899. {
  4900. "name": "vijaycs85",
  4901. "homepage": "https://www.drupal.org/user/93488"
  4902. }
  4903. ],
  4904. "description": "Mitigates spam form submissions using the honeypot method.",
  4905. "homepage": "https://www.drupal.org/project/honeypot",
  4906. "keywords": [
  4907. "deterrent",
  4908. "form",
  4909. "honeypot",
  4910. "honeytrap",
  4911. "php",
  4912. "spam"
  4913. ],
  4914. "support": {
  4915. "source": "https://git.drupalcode.org/project/honeypot",
  4916. "issues": "https://www.drupal.org/project/issues/honeypot"
  4917. }
  4918. },
  4919. {
  4920. "name": "drupal/image_delta_formatter",
  4921. "version": "1.3.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4925. "reference": "8.x-1.3"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4930. "reference": "8.x-1.3",
  4931. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4932. },
  4933. "require": {
  4934. "drupal/core": "^10 || ^11"
  4935. },
  4936. "type": "drupal-module",
  4937. "extra": {
  4938. "drupal": {
  4939. "version": "8.x-1.3",
  4940. "datestamp": "1738516937",
  4941. "security-coverage": {
  4942. "status": "covered",
  4943. "message": "Covered by Drupal's security advisory policy"
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "bojanz",
  4954. "homepage": "https://www.drupal.org/user/86106"
  4955. },
  4956. {
  4957. "name": "fgm",
  4958. "homepage": "https://www.drupal.org/user/27985"
  4959. },
  4960. {
  4961. "name": "jsacksick",
  4962. "homepage": "https://www.drupal.org/user/972218"
  4963. }
  4964. ],
  4965. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4966. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4967. "support": {
  4968. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4969. }
  4970. },
  4971. {
  4972. "name": "drupal/image_field_caption",
  4973. "version": "2.0.2",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4977. "reference": "2.0.2"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://ftp.drupal.org/files/projects/image_field_caption-2.0.2.zip",
  4982. "reference": "2.0.2",
  4983. "shasum": "9b1f7d780adb66755626b925a80fe2b855f4975d"
  4984. },
  4985. "require": {
  4986. "drupal/core": "^9 || ^10"
  4987. },
  4988. "type": "drupal-module",
  4989. "extra": {
  4990. "drupal": {
  4991. "version": "2.0.2",
  4992. "datestamp": "1738422190",
  4993. "security-coverage": {
  4994. "status": "covered",
  4995. "message": "Covered by Drupal's security advisory policy"
  4996. }
  4997. }
  4998. },
  4999. "notification-url": "https://packages.drupal.org/8/downloads",
  5000. "license": [
  5001. "GPL-2.0+"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "awm",
  5006. "homepage": "https://www.drupal.org/user/1059398"
  5007. },
  5008. {
  5009. "name": "foxy-vikvik",
  5010. "homepage": "https://www.drupal.org/user/3706169"
  5011. },
  5012. {
  5013. "name": "hanoii",
  5014. "homepage": "https://www.drupal.org/user/23157"
  5015. },
  5016. {
  5017. "name": "ironsizide",
  5018. "homepage": "https://www.drupal.org/user/787980"
  5019. },
  5020. {
  5021. "name": "istryker",
  5022. "homepage": "https://www.drupal.org/user/303676"
  5023. },
  5024. {
  5025. "name": "robloach",
  5026. "homepage": "https://www.drupal.org/user/61114"
  5027. },
  5028. {
  5029. "name": "tyler.frankenstein",
  5030. "homepage": "https://www.drupal.org/user/150680"
  5031. }
  5032. ],
  5033. "description": "Add caption to image field.",
  5034. "homepage": "https://www.drupal.org/project/image_field_caption",
  5035. "support": {
  5036. "source": "https://git.drupalcode.org/project/image_field_caption",
  5037. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  5038. }
  5039. },
  5040. {
  5041. "name": "drupal/inline_entity_form",
  5042. "version": "1.0.0-rc17",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5046. "reference": "8.x-1.0-rc17"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  5051. "reference": "8.x-1.0-rc17",
  5052. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  5053. },
  5054. "require": {
  5055. "drupal/core": "^8.8 || ^9 || ^10",
  5056. "php": ">=7.1"
  5057. },
  5058. "require-dev": {
  5059. "drupal/entity_reference_revisions": "^1.0"
  5060. },
  5061. "type": "drupal-module",
  5062. "extra": {
  5063. "drupal": {
  5064. "version": "8.x-1.0-rc17",
  5065. "datestamp": "1703020130",
  5066. "security-coverage": {
  5067. "status": "not-covered",
  5068. "message": "RC releases are not covered by Drupal security advisories."
  5069. }
  5070. }
  5071. },
  5072. "notification-url": "https://packages.drupal.org/8/downloads",
  5073. "license": [
  5074. "GPL-2.0-or-later"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "bojanz",
  5079. "homepage": "https://www.drupal.org/user/86106"
  5080. },
  5081. {
  5082. "name": "centarro",
  5083. "homepage": "https://www.drupal.org/user/3661446"
  5084. },
  5085. {
  5086. "name": "dawehner",
  5087. "homepage": "https://www.drupal.org/user/99340"
  5088. },
  5089. {
  5090. "name": "dww",
  5091. "homepage": "https://www.drupal.org/user/46549"
  5092. },
  5093. {
  5094. "name": "geek-merlin",
  5095. "homepage": "https://www.drupal.org/user/229048"
  5096. },
  5097. {
  5098. "name": "joachim",
  5099. "homepage": "https://www.drupal.org/user/107701"
  5100. },
  5101. {
  5102. "name": "jsacksick",
  5103. "homepage": "https://www.drupal.org/user/972218"
  5104. },
  5105. {
  5106. "name": "oknate",
  5107. "homepage": "https://www.drupal.org/user/471638"
  5108. },
  5109. {
  5110. "name": "ram4nd",
  5111. "homepage": "https://www.drupal.org/user/601534"
  5112. },
  5113. {
  5114. "name": "rszrama",
  5115. "homepage": "https://www.drupal.org/user/49344"
  5116. },
  5117. {
  5118. "name": "slashrsm",
  5119. "homepage": "https://www.drupal.org/user/744628"
  5120. },
  5121. {
  5122. "name": "webflo",
  5123. "homepage": "https://www.drupal.org/user/254778"
  5124. }
  5125. ],
  5126. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5127. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5128. "support": {
  5129. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5130. }
  5131. },
  5132. {
  5133. "name": "drupal/jquery_ui",
  5134. "version": "1.7.0",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5138. "reference": "8.x-1.7"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  5143. "reference": "8.x-1.7",
  5144. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  5145. },
  5146. "require": {
  5147. "drupal/core": "^9.2 || ^10 || ^11"
  5148. },
  5149. "type": "drupal-module",
  5150. "extra": {
  5151. "drupal": {
  5152. "version": "8.x-1.7",
  5153. "datestamp": "1717002098",
  5154. "security-coverage": {
  5155. "status": "covered",
  5156. "message": "Covered by Drupal's security advisory policy"
  5157. }
  5158. }
  5159. },
  5160. "notification-url": "https://packages.drupal.org/8/downloads",
  5161. "license": [
  5162. "GPL-2.0-or-later"
  5163. ],
  5164. "authors": [
  5165. {
  5166. "name": "bnjmnm",
  5167. "homepage": "https://www.drupal.org/user/2369194"
  5168. },
  5169. {
  5170. "name": "jjeff",
  5171. "homepage": "https://www.drupal.org/user/17190"
  5172. },
  5173. {
  5174. "name": "lauriii",
  5175. "homepage": "https://www.drupal.org/user/1078742"
  5176. },
  5177. {
  5178. "name": "litwol",
  5179. "homepage": "https://www.drupal.org/user/78134"
  5180. },
  5181. {
  5182. "name": "mfb",
  5183. "homepage": "https://www.drupal.org/user/12302"
  5184. },
  5185. {
  5186. "name": "mfer",
  5187. "homepage": "https://www.drupal.org/user/25701"
  5188. },
  5189. {
  5190. "name": "mikelutz",
  5191. "homepage": "https://www.drupal.org/user/2972409"
  5192. },
  5193. {
  5194. "name": "nod_",
  5195. "homepage": "https://www.drupal.org/user/598310"
  5196. },
  5197. {
  5198. "name": "phenaproxima",
  5199. "homepage": "https://www.drupal.org/user/205645"
  5200. },
  5201. {
  5202. "name": "RobLoach",
  5203. "homepage": "https://www.drupal.org/user/61114"
  5204. },
  5205. {
  5206. "name": "sun",
  5207. "homepage": "https://www.drupal.org/user/54136"
  5208. },
  5209. {
  5210. "name": "webchick",
  5211. "homepage": "https://www.drupal.org/user/24967"
  5212. },
  5213. {
  5214. "name": "Wim Leers",
  5215. "homepage": "https://www.drupal.org/user/99777"
  5216. },
  5217. {
  5218. "name": "zrpnr",
  5219. "homepage": "https://www.drupal.org/user/1448368"
  5220. }
  5221. ],
  5222. "description": "Provides jQuery UI library.",
  5223. "homepage": "https://www.drupal.org/project/jquery_ui",
  5224. "support": {
  5225. "source": "https://git.drupalcode.org/project/jquery_ui"
  5226. }
  5227. },
  5228. {
  5229. "name": "drupal/jquery_ui_datepicker",
  5230. "version": "2.1.1",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5234. "reference": "2.1.1"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5239. "reference": "2.1.1",
  5240. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5241. },
  5242. "require": {
  5243. "drupal/core": "^9.2 || ^10 || ^11",
  5244. "drupal/jquery_ui": "^1.7"
  5245. },
  5246. "type": "drupal-module",
  5247. "extra": {
  5248. "drupal": {
  5249. "version": "2.1.1",
  5250. "datestamp": "1730932612",
  5251. "security-coverage": {
  5252. "status": "covered",
  5253. "message": "Covered by Drupal's security advisory policy"
  5254. }
  5255. }
  5256. },
  5257. "notification-url": "https://packages.drupal.org/8/downloads",
  5258. "license": [
  5259. "GPL-2.0-or-later"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "bnjmnm",
  5264. "homepage": "https://www.drupal.org/user/2369194"
  5265. },
  5266. {
  5267. "name": "jrockowitz",
  5268. "homepage": "https://www.drupal.org/user/371407"
  5269. },
  5270. {
  5271. "name": "lauriii",
  5272. "homepage": "https://www.drupal.org/user/1078742"
  5273. },
  5274. {
  5275. "name": "nod_",
  5276. "homepage": "https://www.drupal.org/user/598310"
  5277. },
  5278. {
  5279. "name": "phenaproxima",
  5280. "homepage": "https://www.drupal.org/user/205645"
  5281. },
  5282. {
  5283. "name": "zrpnr",
  5284. "homepage": "https://www.drupal.org/user/1448368"
  5285. }
  5286. ],
  5287. "description": "Provides jQuery UI Datepicker library.",
  5288. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5289. "support": {
  5290. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5291. }
  5292. },
  5293. {
  5294. "name": "drupal/jquery_ui_draggable",
  5295. "version": "2.1.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5299. "reference": "2.1.0"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5304. "reference": "2.1.0",
  5305. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5306. },
  5307. "require": {
  5308. "drupal/core": "^9.2 || ^10 || ^11",
  5309. "drupal/jquery_ui": "^1.7"
  5310. },
  5311. "type": "drupal-module",
  5312. "extra": {
  5313. "drupal": {
  5314. "version": "2.1.0",
  5315. "datestamp": "1717015492",
  5316. "security-coverage": {
  5317. "status": "covered",
  5318. "message": "Covered by Drupal's security advisory policy"
  5319. }
  5320. }
  5321. },
  5322. "notification-url": "https://packages.drupal.org/8/downloads",
  5323. "license": [
  5324. "GPL-2.0-or-later"
  5325. ],
  5326. "authors": [
  5327. {
  5328. "name": "bnjmnm",
  5329. "homepage": "https://www.drupal.org/user/2369194"
  5330. },
  5331. {
  5332. "name": "lauriii",
  5333. "homepage": "https://www.drupal.org/user/1078742"
  5334. },
  5335. {
  5336. "name": "zrpnr",
  5337. "homepage": "https://www.drupal.org/user/1448368"
  5338. }
  5339. ],
  5340. "description": "Provides jQuery UI Draggable library.",
  5341. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5342. "support": {
  5343. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5344. }
  5345. },
  5346. {
  5347. "name": "drupal/jquery_ui_droppable",
  5348. "version": "2.1.0",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5352. "reference": "2.1.0"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5357. "reference": "2.1.0",
  5358. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5359. },
  5360. "require": {
  5361. "drupal/core": "^9.2 || ^10 || ^11",
  5362. "drupal/jquery_ui": "^1.7",
  5363. "drupal/jquery_ui_draggable": "^2.1"
  5364. },
  5365. "type": "drupal-module",
  5366. "extra": {
  5367. "drupal": {
  5368. "version": "2.1.0",
  5369. "datestamp": "1717031391",
  5370. "security-coverage": {
  5371. "status": "covered",
  5372. "message": "Covered by Drupal's security advisory policy"
  5373. }
  5374. }
  5375. },
  5376. "notification-url": "https://packages.drupal.org/8/downloads",
  5377. "license": [
  5378. "GPL-2.0-or-later"
  5379. ],
  5380. "authors": [
  5381. {
  5382. "name": "bnjmnm",
  5383. "homepage": "https://www.drupal.org/user/2369194"
  5384. },
  5385. {
  5386. "name": "lauriii",
  5387. "homepage": "https://www.drupal.org/user/1078742"
  5388. },
  5389. {
  5390. "name": "zrpnr",
  5391. "homepage": "https://www.drupal.org/user/1448368"
  5392. }
  5393. ],
  5394. "description": "Provides jQuery UI Droppable library.",
  5395. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5396. "support": {
  5397. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5398. }
  5399. },
  5400. {
  5401. "name": "drupal/jquery_ui_slider",
  5402. "version": "2.1.0",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5406. "reference": "2.1.0"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5411. "reference": "2.1.0",
  5412. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5413. },
  5414. "require": {
  5415. "drupal/core": "^9.2 || ^10 || ^11",
  5416. "drupal/jquery_ui": "^1.7"
  5417. },
  5418. "type": "drupal-module",
  5419. "extra": {
  5420. "drupal": {
  5421. "version": "2.1.0",
  5422. "datestamp": "1717031321",
  5423. "security-coverage": {
  5424. "status": "covered",
  5425. "message": "Covered by Drupal's security advisory policy"
  5426. }
  5427. }
  5428. },
  5429. "notification-url": "https://packages.drupal.org/8/downloads",
  5430. "license": [
  5431. "GPL-2.0-or-later"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "bnjmnm",
  5436. "homepage": "https://www.drupal.org/user/2369194"
  5437. },
  5438. {
  5439. "name": "lauriii",
  5440. "homepage": "https://www.drupal.org/user/1078742"
  5441. },
  5442. {
  5443. "name": "zrpnr",
  5444. "homepage": "https://www.drupal.org/user/1448368"
  5445. }
  5446. ],
  5447. "description": "Provides jQuery UI Slider library.",
  5448. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5449. "support": {
  5450. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5451. }
  5452. },
  5453. {
  5454. "name": "drupal/jquery_ui_touch_punch",
  5455. "version": "1.1.1",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5459. "reference": "1.1.1"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5464. "reference": "1.1.1",
  5465. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5466. },
  5467. "require": {
  5468. "drupal/core": "^9.2 || ^10 || ^11",
  5469. "drupal/jquery_ui": "^1.0",
  5470. "politsin/jquery-ui-touch-punch": "^1.0"
  5471. },
  5472. "type": "drupal-module",
  5473. "extra": {
  5474. "drupal": {
  5475. "version": "1.1.1",
  5476. "datestamp": "1717663479",
  5477. "security-coverage": {
  5478. "status": "covered",
  5479. "message": "Covered by Drupal's security advisory policy"
  5480. }
  5481. }
  5482. },
  5483. "notification-url": "https://packages.drupal.org/8/downloads",
  5484. "license": [
  5485. "GPL-2.0-or-later"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Naveen Valecha",
  5490. "homepage": "https://drupal.org/u/naveenvalecha",
  5491. "role": "Maintainer"
  5492. },
  5493. {
  5494. "name": "naveenvalecha",
  5495. "homepage": "https://www.drupal.org/user/2665733"
  5496. }
  5497. ],
  5498. "description": "Provides jQuery UI Touch Punch library.",
  5499. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5500. "keywords": [
  5501. "Drupal",
  5502. "jquery_ui_touch_punch"
  5503. ],
  5504. "support": {
  5505. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5506. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5507. }
  5508. },
  5509. {
  5510. "name": "drupal/js_cookie",
  5511. "version": "1.0.1",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5515. "reference": "1.0.1"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5520. "reference": "1.0.1",
  5521. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5522. },
  5523. "require": {
  5524. "drupal/core": "^9 || ^10 || ^11"
  5525. },
  5526. "type": "drupal-module",
  5527. "extra": {
  5528. "drupal": {
  5529. "version": "1.0.1",
  5530. "datestamp": "1693951097",
  5531. "security-coverage": {
  5532. "status": "covered",
  5533. "message": "Covered by Drupal's security advisory policy"
  5534. }
  5535. }
  5536. },
  5537. "notification-url": "https://packages.drupal.org/8/downloads",
  5538. "license": [
  5539. "GPL-2.0-or-later"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Dave Reid",
  5544. "homepage": "https://www.drupal.org/user/53892"
  5545. }
  5546. ],
  5547. "description": "Provides the js-cookie library as a dependency.",
  5548. "homepage": "https://www.drupal.org/project/js_cookie",
  5549. "support": {
  5550. "source": "https://git.drupalcode.org/project/js_cookie"
  5551. }
  5552. },
  5553. {
  5554. "name": "drupal/leaflet",
  5555. "version": "10.3.5",
  5556. "source": {
  5557. "type": "git",
  5558. "url": "https://git.drupalcode.org/project/leaflet.git",
  5559. "reference": "10.3.5"
  5560. },
  5561. "dist": {
  5562. "type": "zip",
  5563. "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.5.zip",
  5564. "reference": "10.3.5",
  5565. "shasum": "9707462243b2f344e5d85341084d33fdd296ef7b"
  5566. },
  5567. "require": {
  5568. "drupal/core": "^9.3 || ^10 || ^11",
  5569. "drupal/geofield": "^1.31"
  5570. },
  5571. "type": "drupal-module",
  5572. "extra": {
  5573. "drupal": {
  5574. "version": "10.3.5",
  5575. "datestamp": "1751834089",
  5576. "security-coverage": {
  5577. "status": "covered",
  5578. "message": "Covered by Drupal's security advisory policy"
  5579. }
  5580. }
  5581. },
  5582. "notification-url": "https://packages.drupal.org/8/downloads",
  5583. "license": [
  5584. "GPL-2.0+"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Italo Mairo",
  5589. "homepage": "https://www.drupal.org/u/itamair",
  5590. "role": "Maintainer"
  5591. },
  5592. {
  5593. "name": "Peter Vanhee (pvhee)",
  5594. "homepage": "https://www.drupal.org/u/pvhee",
  5595. "role": "Maintainer"
  5596. },
  5597. {
  5598. "name": "Rik de Boer (RdeBoer)",
  5599. "homepage": "https://www.drupal.org/u/rdeboer",
  5600. "role": "Maintainer"
  5601. },
  5602. {
  5603. "name": "Gabriel Carleton-Barnes (gcb)",
  5604. "homepage": "https://www.drupal.org/u/gcb",
  5605. "role": "Maintainer"
  5606. },
  5607. {
  5608. "name": "Lev Tsypin (levelos)",
  5609. "homepage": "https://www.drupal.org/u/levelos",
  5610. "role": "Maintainer"
  5611. },
  5612. {
  5613. "name": "Sean Larkin (seanberto)",
  5614. "homepage": "https://www.drupal.org/u/seanberto",
  5615. "role": "Maintainer"
  5616. }
  5617. ],
  5618. "description": "Integration with the Leaflet map scripting library.",
  5619. "homepage": "https://www.drupal.org/project/leaflet",
  5620. "support": {
  5621. "source": "https://git.drupalcode.org/project/leaflet",
  5622. "issues": "https://www.drupal.org/project/issues/leaflet"
  5623. }
  5624. },
  5625. {
  5626. "name": "drupal/leaflet_more_maps",
  5627. "version": "2.2.3",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5631. "reference": "2.2.3"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5636. "reference": "2.2.3",
  5637. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5638. },
  5639. "require": {
  5640. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5641. "drupal/leaflet": "^2.1.0 || ^10.0"
  5642. },
  5643. "require-dev": {
  5644. "drupal/leaflet": "*"
  5645. },
  5646. "type": "drupal-module",
  5647. "extra": {
  5648. "drupal": {
  5649. "version": "2.2.3",
  5650. "datestamp": "1737668201",
  5651. "security-coverage": {
  5652. "status": "covered",
  5653. "message": "Covered by Drupal's security advisory policy"
  5654. }
  5655. },
  5656. "branch-alias": {
  5657. "dev-8.x-1.x": "1.x-dev"
  5658. }
  5659. },
  5660. "notification-url": "https://packages.drupal.org/8/downloads",
  5661. "license": [
  5662. "GPL-2.0-or-later"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "berramou",
  5667. "homepage": "https://www.drupal.org/user/3535998"
  5668. },
  5669. {
  5670. "name": "itamair",
  5671. "homepage": "https://www.drupal.org/user/1179076"
  5672. },
  5673. {
  5674. "name": "japerry",
  5675. "homepage": "https://www.drupal.org/user/45640"
  5676. },
  5677. {
  5678. "name": "rachel_norfolk",
  5679. "homepage": "https://www.drupal.org/user/66273"
  5680. },
  5681. {
  5682. "name": "rdeboer",
  5683. "homepage": "https://www.drupal.org/user/404007"
  5684. }
  5685. ],
  5686. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5687. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5688. "support": {
  5689. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5690. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5691. }
  5692. },
  5693. {
  5694. "name": "drupal/leaflet_more_markers",
  5695. "version": "1.1.3",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5699. "reference": "1.1.3"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5704. "reference": "1.1.3",
  5705. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5706. },
  5707. "require": {
  5708. "drupal/core": "^9.3 || ^10 || ^11",
  5709. "drupal/leaflet": "*",
  5710. "drupal/token": "*"
  5711. },
  5712. "type": "drupal-module",
  5713. "extra": {
  5714. "drupal": {
  5715. "version": "1.1.3",
  5716. "datestamp": "1733213620",
  5717. "security-coverage": {
  5718. "status": "covered",
  5719. "message": "Covered by Drupal's security advisory policy"
  5720. }
  5721. }
  5722. },
  5723. "notification-url": "https://packages.drupal.org/8/downloads",
  5724. "license": [
  5725. "GPL-2.0-or-later"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "itamair",
  5730. "homepage": "https://www.drupal.org/user/1179076"
  5731. },
  5732. {
  5733. "name": "rdeboer",
  5734. "homepage": "https://www.drupal.org/user/404007"
  5735. }
  5736. ],
  5737. "description": "Allows every location to feature its own emoji marker or font icon.",
  5738. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5739. "support": {
  5740. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5741. }
  5742. },
  5743. {
  5744. "name": "drupal/link_attributes",
  5745. "version": "2.1.1",
  5746. "source": {
  5747. "type": "git",
  5748. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5749. "reference": "2.1.1"
  5750. },
  5751. "dist": {
  5752. "type": "zip",
  5753. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.1.zip",
  5754. "reference": "2.1.1",
  5755. "shasum": "fc71571fc41adeda6b39ccefd3c8e21955c0d96f"
  5756. },
  5757. "require": {
  5758. "drupal/core": "^9 || ^10 || ^11",
  5759. "php": ">=8.0"
  5760. },
  5761. "require-dev": {
  5762. "drupal/linkit": "~6 || ~7"
  5763. },
  5764. "type": "drupal-module",
  5765. "extra": {
  5766. "drupal": {
  5767. "version": "2.1.1",
  5768. "datestamp": "1721366572",
  5769. "security-coverage": {
  5770. "status": "covered",
  5771. "message": "Covered by Drupal's security advisory policy"
  5772. }
  5773. }
  5774. },
  5775. "notification-url": "https://packages.drupal.org/8/downloads",
  5776. "license": [
  5777. "GPL-2.0-or-later"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "larowlan",
  5782. "homepage": "https://www.drupal.org/user/395439"
  5783. }
  5784. ],
  5785. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5786. "homepage": "https://www.drupal.org/project/link_attributes",
  5787. "keywords": [
  5788. "Drupal"
  5789. ],
  5790. "support": {
  5791. "source": "https://git.drupalcode.org/project/link_attributes",
  5792. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5793. }
  5794. },
  5795. {
  5796. "name": "drupal/linked_field",
  5797. "version": "1.7.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://git.drupalcode.org/project/linked_field.git",
  5801. "reference": "8.x-1.7"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5806. "reference": "8.x-1.7",
  5807. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5808. },
  5809. "require": {
  5810. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5811. },
  5812. "type": "drupal-module",
  5813. "extra": {
  5814. "drupal": {
  5815. "version": "8.x-1.7",
  5816. "datestamp": "1748842765",
  5817. "security-coverage": {
  5818. "status": "covered",
  5819. "message": "Covered by Drupal's security advisory policy"
  5820. }
  5821. }
  5822. },
  5823. "notification-url": "https://packages.drupal.org/8/downloads",
  5824. "license": [
  5825. "GPL-2.0-or-later"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "jcnventura",
  5830. "homepage": "https://www.drupal.org/user/122464"
  5831. },
  5832. {
  5833. "name": "yannickoo",
  5834. "homepage": "https://www.drupal.org/user/531118"
  5835. }
  5836. ],
  5837. "description": "Adds the functionality to link fields to a specific destination.",
  5838. "homepage": "https://www.drupal.org/project/linked_field",
  5839. "support": {
  5840. "source": "https://git.drupalcode.org/project/linked_field"
  5841. }
  5842. },
  5843. {
  5844. "name": "drupal/linkit",
  5845. "version": "7.0.7",
  5846. "source": {
  5847. "type": "git",
  5848. "url": "https://git.drupalcode.org/project/linkit.git",
  5849. "reference": "7.0.7"
  5850. },
  5851. "dist": {
  5852. "type": "zip",
  5853. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip",
  5854. "reference": "7.0.7",
  5855. "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e"
  5856. },
  5857. "require": {
  5858. "drupal/core": "^10.1 || ^11"
  5859. },
  5860. "require-dev": {
  5861. "drupal/ckeditor": "*",
  5862. "drupal/imce": "*"
  5863. },
  5864. "type": "drupal-module",
  5865. "extra": {
  5866. "drupal": {
  5867. "version": "7.0.7",
  5868. "datestamp": "1753116879",
  5869. "security-coverage": {
  5870. "status": "covered",
  5871. "message": "Covered by Drupal's security advisory policy"
  5872. }
  5873. }
  5874. },
  5875. "notification-url": "https://packages.drupal.org/8/downloads",
  5876. "license": [
  5877. "GPL-2.0-or-later"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Emil Stjerneman",
  5882. "homepage": "https://stjerneman.com",
  5883. "email": "emil@stjerneman.com",
  5884. "role": "Maintainer"
  5885. },
  5886. {
  5887. "name": "johnwebdev",
  5888. "homepage": "https://www.drupal.org/user/3331569"
  5889. },
  5890. {
  5891. "name": "mark_fullmer",
  5892. "homepage": "https://www.drupal.org/user/2612816"
  5893. }
  5894. ],
  5895. "description": "Linkit - Enriched linking experience",
  5896. "homepage": "http://drupal.org/project/linkit",
  5897. "support": {
  5898. "source": "http://cgit.drupalcode.org/linkit",
  5899. "issues": "http://drupal.org/project/linkit"
  5900. }
  5901. },
  5902. {
  5903. "name": "drupal/mailsystem",
  5904. "version": "4.5.0",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5908. "reference": "8.x-4.5"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5913. "reference": "8.x-4.5",
  5914. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5915. },
  5916. "require": {
  5917. "drupal/core": "^9 || ^10.1 || ^11"
  5918. },
  5919. "type": "drupal-module",
  5920. "extra": {
  5921. "drupal": {
  5922. "version": "8.x-4.5",
  5923. "datestamp": "1723379369",
  5924. "security-coverage": {
  5925. "status": "covered",
  5926. "message": "Covered by Drupal's security advisory policy"
  5927. }
  5928. }
  5929. },
  5930. "notification-url": "https://packages.drupal.org/8/downloads",
  5931. "license": [
  5932. "GPL-2.0-or-later"
  5933. ],
  5934. "authors": [
  5935. {
  5936. "name": "berdir",
  5937. "homepage": "https://www.drupal.org/user/214652"
  5938. },
  5939. {
  5940. "name": "emartoni",
  5941. "homepage": "https://www.drupal.org/user/3225331"
  5942. },
  5943. {
  5944. "name": "joseph.olstad",
  5945. "homepage": "https://www.drupal.org/user/1321830"
  5946. },
  5947. {
  5948. "name": "les lim",
  5949. "homepage": "https://www.drupal.org/user/84263"
  5950. },
  5951. {
  5952. "name": "manuel garcia",
  5953. "homepage": "https://www.drupal.org/user/213194"
  5954. },
  5955. {
  5956. "name": "miro_dietiker",
  5957. "homepage": "https://www.drupal.org/user/227761"
  5958. },
  5959. {
  5960. "name": "Nafes",
  5961. "homepage": "https://www.drupal.org/user/2489926"
  5962. },
  5963. {
  5964. "name": "pillarsdotnet",
  5965. "homepage": "https://www.drupal.org/user/36148"
  5966. },
  5967. {
  5968. "name": "renatog",
  5969. "homepage": "https://www.drupal.org/user/3326031"
  5970. },
  5971. {
  5972. "name": "tr",
  5973. "homepage": "https://www.drupal.org/user/202830"
  5974. }
  5975. ],
  5976. "description": "Mail System",
  5977. "homepage": "https://www.drupal.org/project/mailsystem",
  5978. "support": {
  5979. "source": "https://git.drupalcode.org/project/mailsystem"
  5980. }
  5981. },
  5982. {
  5983. "name": "drupal/manage_display",
  5984. "version": "3.0.1",
  5985. "source": {
  5986. "type": "git",
  5987. "url": "https://git.drupalcode.org/project/manage_display.git",
  5988. "reference": "3.0.1"
  5989. },
  5990. "dist": {
  5991. "type": "zip",
  5992. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5993. "reference": "3.0.1",
  5994. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5995. },
  5996. "require": {
  5997. "drupal/core": "^9.4 || ^10 || ^11"
  5998. },
  5999. "type": "drupal-module",
  6000. "extra": {
  6001. "drupal": {
  6002. "version": "3.0.1",
  6003. "datestamp": "1714834549",
  6004. "security-coverage": {
  6005. "status": "covered",
  6006. "message": "Covered by Drupal's security advisory policy"
  6007. }
  6008. }
  6009. },
  6010. "notification-url": "https://packages.drupal.org/8/downloads",
  6011. "license": [
  6012. "GPL-2.0-or-later"
  6013. ],
  6014. "authors": [
  6015. {
  6016. "name": "Adam Shepherd (AdamPS)",
  6017. "homepage": "https://www.drupal.org/u/adamps",
  6018. "role": "Maintainer"
  6019. },
  6020. {
  6021. "name": "Viktor Holovachek (AstonVictor)",
  6022. "homepage": "https://www.drupal.org/u/astonvictor",
  6023. "role": "Maintainer"
  6024. }
  6025. ],
  6026. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  6027. "homepage": "https://www.drupal.org/project/manage_display",
  6028. "keywords": [
  6029. "Drupal"
  6030. ],
  6031. "support": {
  6032. "source": "https://git.drupalcode.org/project/manage_display",
  6033. "issues": "https://www.drupal.org/project/issues/manage_display"
  6034. }
  6035. },
  6036. {
  6037. "name": "drupal/matomo",
  6038. "version": "1.25.0",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://git.drupalcode.org/project/matomo.git",
  6042. "reference": "8.x-1.25"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.25.zip",
  6047. "reference": "8.x-1.25",
  6048. "shasum": "5e65764f4499061fa33cb5c46afcc26a85b8725e"
  6049. },
  6050. "require": {
  6051. "drupal/core": "^9.0 || ^10"
  6052. },
  6053. "conflict": {
  6054. "drupal/csp": "<1.12"
  6055. },
  6056. "require-dev": {
  6057. "drupal/csp": "~1.12",
  6058. "drupal/php": "~1.1",
  6059. "drupal/token": "~1.9"
  6060. },
  6061. "type": "drupal-module",
  6062. "extra": {
  6063. "drupal": {
  6064. "version": "8.x-1.25",
  6065. "datestamp": "1738948462",
  6066. "security-coverage": {
  6067. "status": "covered",
  6068. "message": "Covered by Drupal's security advisory policy"
  6069. }
  6070. }
  6071. },
  6072. "notification-url": "https://packages.drupal.org/8/downloads",
  6073. "license": [
  6074. "GPL-2.0-or-later"
  6075. ],
  6076. "authors": [
  6077. {
  6078. "name": "c-logemann",
  6079. "homepage": "https://www.drupal.org/user/218368"
  6080. },
  6081. {
  6082. "name": "grimreaper",
  6083. "homepage": "https://www.drupal.org/user/2388214"
  6084. },
  6085. {
  6086. "name": "hass",
  6087. "homepage": "https://www.drupal.org/user/85918"
  6088. },
  6089. {
  6090. "name": "shelane",
  6091. "homepage": "https://www.drupal.org/user/2674989"
  6092. }
  6093. ],
  6094. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  6095. "homepage": "https://www.drupal.org/project/matomo",
  6096. "support": {
  6097. "source": "https://git.drupalcode.org/project/matomo"
  6098. }
  6099. },
  6100. {
  6101. "name": "drupal/maxlength",
  6102. "version": "2.1.4",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://git.drupalcode.org/project/maxlength.git",
  6106. "reference": "2.1.4"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.4.zip",
  6111. "reference": "2.1.4",
  6112. "shasum": "a7ffb649b24901da4b586add16385555d1dd7bd5"
  6113. },
  6114. "require": {
  6115. "drupal/core": "^9.5 || ^10"
  6116. },
  6117. "type": "drupal-module",
  6118. "extra": {
  6119. "drupal": {
  6120. "version": "2.1.4",
  6121. "datestamp": "1738341582",
  6122. "security-coverage": {
  6123. "status": "covered",
  6124. "message": "Covered by Drupal's security advisory policy"
  6125. }
  6126. }
  6127. },
  6128. "notification-url": "https://packages.drupal.org/8/downloads",
  6129. "license": [
  6130. "GPL-2.0-or-later"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "Marius Scurtescu (mariuss)",
  6135. "homepage": "https://www.drupal.org/u/mariuss",
  6136. "role": "Maintainer"
  6137. },
  6138. {
  6139. "name": "Clayton Dewey (cedewey)",
  6140. "homepage": "https://www.drupal.org/u/cedewey",
  6141. "role": "Maintainer"
  6142. },
  6143. {
  6144. "name": "Daniel Wehner (dawehner)",
  6145. "homepage": "https://www.drupal.org/u/dawehner",
  6146. "role": "Maintainer"
  6147. },
  6148. {
  6149. "name": "Paulino Michelazzo (pmichelazzo)",
  6150. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6151. "role": "Maintainer"
  6152. },
  6153. {
  6154. "name": "Jeff Hipp (hipp2bsquare)",
  6155. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6156. "role": "Maintainer"
  6157. },
  6158. {
  6159. "name": "Steven DuBois (srdtwc)",
  6160. "homepage": "https://www.drupal.org/u/srdtwc",
  6161. "role": "Maintainer"
  6162. },
  6163. {
  6164. "name": "srdtwc",
  6165. "homepage": "https://www.drupal.org/user/3422763"
  6166. }
  6167. ],
  6168. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6169. "homepage": "https://www.drupal.org/project/maxlength",
  6170. "support": {
  6171. "source": "https://git.drupalcode.org/project/maxlength",
  6172. "issues": "https://www.drupal.org/project/issues/maxlength"
  6173. }
  6174. },
  6175. {
  6176. "name": "drupal/menu_admin_per_menu",
  6177. "version": "1.7.0",
  6178. "source": {
  6179. "type": "git",
  6180. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6181. "reference": "8.x-1.7"
  6182. },
  6183. "dist": {
  6184. "type": "zip",
  6185. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6186. "reference": "8.x-1.7",
  6187. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6188. },
  6189. "require": {
  6190. "drupal/core": "^10.2 || ^11.0 || ^12"
  6191. },
  6192. "type": "drupal-module",
  6193. "extra": {
  6194. "drupal": {
  6195. "version": "8.x-1.7",
  6196. "datestamp": "1750246188",
  6197. "security-coverage": {
  6198. "status": "covered",
  6199. "message": "Covered by Drupal's security advisory policy"
  6200. }
  6201. }
  6202. },
  6203. "notification-url": "https://packages.drupal.org/8/downloads",
  6204. "license": [
  6205. "GPL-2.0-or-later"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "anrikun",
  6210. "homepage": "https://www.drupal.org/user/410199"
  6211. },
  6212. {
  6213. "name": "jeroent",
  6214. "homepage": "https://www.drupal.org/user/2228934"
  6215. },
  6216. {
  6217. "name": "jonas139",
  6218. "homepage": "https://www.drupal.org/user/2873401"
  6219. },
  6220. {
  6221. "name": "mkdok",
  6222. "homepage": "https://www.drupal.org/user/3308753"
  6223. }
  6224. ],
  6225. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6226. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6227. "keywords": [
  6228. "Drupal"
  6229. ],
  6230. "support": {
  6231. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6232. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6233. }
  6234. },
  6235. {
  6236. "name": "drupal/menu_block",
  6237. "version": "1.14.0",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://git.drupalcode.org/project/menu_block.git",
  6241. "reference": "8.x-1.14"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6246. "reference": "8.x-1.14",
  6247. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6248. },
  6249. "require": {
  6250. "drupal/core": "^10.1 || ^11"
  6251. },
  6252. "type": "drupal-module",
  6253. "extra": {
  6254. "drupal": {
  6255. "version": "8.x-1.14",
  6256. "datestamp": "1740624449",
  6257. "security-coverage": {
  6258. "status": "covered",
  6259. "message": "Covered by Drupal's security advisory policy"
  6260. }
  6261. }
  6262. },
  6263. "notification-url": "https://packages.drupal.org/8/downloads",
  6264. "license": [
  6265. "GPL-2.0-or-later"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "dave reid",
  6270. "homepage": "https://www.drupal.org/user/53892"
  6271. },
  6272. {
  6273. "name": "joelpittet",
  6274. "homepage": "https://www.drupal.org/user/160302"
  6275. },
  6276. {
  6277. "name": "johnalbin",
  6278. "homepage": "https://www.drupal.org/user/32095"
  6279. },
  6280. {
  6281. "name": "kim.pepper",
  6282. "homepage": "https://www.drupal.org/user/370574"
  6283. },
  6284. {
  6285. "name": "renatog",
  6286. "homepage": "https://www.drupal.org/user/3326031"
  6287. },
  6288. {
  6289. "name": "rrrob",
  6290. "homepage": "https://www.drupal.org/user/273533"
  6291. }
  6292. ],
  6293. "description": "Provides configurable blocks of menu links.",
  6294. "homepage": "https://www.drupal.org/project/menu_block",
  6295. "support": {
  6296. "source": "https://git.drupalcode.org/project/menu_block"
  6297. }
  6298. },
  6299. {
  6300. "name": "drupal/page_manager",
  6301. "version": "4.0.0-rc3",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://git.drupalcode.org/project/page_manager.git",
  6305. "reference": "8.x-4.0-rc3"
  6306. },
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6310. "reference": "8.x-4.0-rc3",
  6311. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6312. },
  6313. "require": {
  6314. "drupal/core": "^9.5 || ^10 || ^11",
  6315. "drupal/ctools": "^3.15 || ^4.1"
  6316. },
  6317. "type": "drupal-module",
  6318. "extra": {
  6319. "drupal": {
  6320. "version": "8.x-4.0-rc3",
  6321. "datestamp": "1721976404",
  6322. "security-coverage": {
  6323. "status": "not-covered",
  6324. "message": "RC releases are not covered by Drupal security advisories."
  6325. }
  6326. },
  6327. "branch-alias": {
  6328. "dev-8.x-4.x": "4.x-dev"
  6329. }
  6330. },
  6331. "notification-url": "https://packages.drupal.org/8/downloads",
  6332. "license": [
  6333. "GPL-2.0-or-later"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Tim Plunkett",
  6338. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6339. "role": "Maintainer"
  6340. },
  6341. {
  6342. "name": "EclipseGc",
  6343. "homepage": "https://www.drupal.org/user/61203"
  6344. },
  6345. {
  6346. "name": "japerry",
  6347. "homepage": "https://www.drupal.org/user/45640"
  6348. },
  6349. {
  6350. "name": "joelpittet",
  6351. "homepage": "https://www.drupal.org/user/160302"
  6352. },
  6353. {
  6354. "name": "manuel.adan",
  6355. "homepage": "https://www.drupal.org/user/516420"
  6356. },
  6357. {
  6358. "name": "phenaproxima",
  6359. "homepage": "https://www.drupal.org/user/205645"
  6360. }
  6361. ],
  6362. "description": "Provides a way to place blocks on a custom page.",
  6363. "homepage": "https://www.drupal.org/project/page_manager",
  6364. "support": {
  6365. "source": "https://git.drupal.org/project/page_manager.git",
  6366. "issues": "https://www.drupal.org/project/issues/page_manager",
  6367. "irc": "irc://irc.freenode.org/drupal-contribute"
  6368. }
  6369. },
  6370. {
  6371. "name": "drupal/panels",
  6372. "version": "4.9.0",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://git.drupalcode.org/project/panels.git",
  6376. "reference": "8.x-4.9"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6381. "reference": "8.x-4.9",
  6382. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6383. },
  6384. "require": {
  6385. "drupal/core": "^9.5 || ^10 || ^11",
  6386. "drupal/ctools": "^3.15 || ^4.1",
  6387. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6388. },
  6389. "require-dev": {
  6390. "drupal/jquery_ui_droppable": "*",
  6391. "drupal/page_manager": "^4"
  6392. },
  6393. "type": "drupal-module",
  6394. "extra": {
  6395. "drupal": {
  6396. "version": "8.x-4.9",
  6397. "datestamp": "1744218203",
  6398. "security-coverage": {
  6399. "status": "covered",
  6400. "message": "Covered by Drupal's security advisory policy"
  6401. }
  6402. },
  6403. "branch-alias": {
  6404. "dev-8.x-4.x": "4.x-dev"
  6405. }
  6406. },
  6407. "notification-url": "https://packages.drupal.org/8/downloads",
  6408. "license": [
  6409. "GPL-2.0+"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Jakob Perry",
  6414. "homepage": "https://www.drupal.org/u/japerry"
  6415. },
  6416. {
  6417. "name": "Samuel Mortenson",
  6418. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6419. },
  6420. {
  6421. "name": "See other contributors",
  6422. "homepage": "https://www.drupal.org/node/74958/committers"
  6423. },
  6424. {
  6425. "name": "joelpittet",
  6426. "homepage": "https://www.drupal.org/user/160302"
  6427. },
  6428. {
  6429. "name": "Letharion",
  6430. "homepage": "https://www.drupal.org/user/373603"
  6431. },
  6432. {
  6433. "name": "merlinofchaos",
  6434. "homepage": "https://www.drupal.org/user/26979"
  6435. },
  6436. {
  6437. "name": "neclimdul",
  6438. "homepage": "https://www.drupal.org/user/48673"
  6439. },
  6440. {
  6441. "name": "phenaproxima",
  6442. "homepage": "https://www.drupal.org/user/205645"
  6443. },
  6444. {
  6445. "name": "samuel.mortenson",
  6446. "homepage": "https://www.drupal.org/user/2582268"
  6447. }
  6448. ],
  6449. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6450. "homepage": "https://www.drupal.org/project/panels",
  6451. "support": {
  6452. "source": "https://git.drupalcode.org/project/panels",
  6453. "issues": "https://www.drupal.org/project/issues/panels",
  6454. "irc": "irc://irc.freenode.org/drupal-scotch"
  6455. }
  6456. },
  6457. {
  6458. "name": "drupal/paragraphs",
  6459. "version": "1.19.0",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6463. "reference": "8.x-1.19"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6468. "reference": "8.x-1.19",
  6469. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6470. },
  6471. "require": {
  6472. "drupal/core": "^10.2 || ^11",
  6473. "drupal/entity_reference_revisions": "~1.3"
  6474. },
  6475. "require-dev": {
  6476. "drupal/block_field": "1.x-dev",
  6477. "drupal/diff": "1.x-dev",
  6478. "drupal/entity_browser": "2.x-dev",
  6479. "drupal/entity_usage": "2.x-dev",
  6480. "drupal/feeds": "^3",
  6481. "drupal/field_group": "3.x-dev",
  6482. "drupal/inline_entity_form": "3.x-dev",
  6483. "drupal/paragraphs-paragraphs_library": "*",
  6484. "drupal/replicate": "1.x-dev",
  6485. "drupal/search_api": "^1",
  6486. "drupal/search_api_db": "*"
  6487. },
  6488. "suggest": {
  6489. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6490. },
  6491. "type": "drupal-module",
  6492. "extra": {
  6493. "drupal": {
  6494. "version": "8.x-1.19",
  6495. "datestamp": "1740907076",
  6496. "security-coverage": {
  6497. "status": "covered",
  6498. "message": "Covered by Drupal's security advisory policy"
  6499. }
  6500. }
  6501. },
  6502. "notification-url": "https://packages.drupal.org/8/downloads",
  6503. "license": [
  6504. "GPL-2.0-or-later"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "berdir",
  6509. "homepage": "https://www.drupal.org/user/214652"
  6510. },
  6511. {
  6512. "name": "frans",
  6513. "homepage": "https://www.drupal.org/user/514222"
  6514. },
  6515. {
  6516. "name": "jeroen.b",
  6517. "homepage": "https://www.drupal.org/user/1853532"
  6518. },
  6519. {
  6520. "name": "jstoller",
  6521. "homepage": "https://www.drupal.org/user/99012"
  6522. },
  6523. {
  6524. "name": "miro_dietiker",
  6525. "homepage": "https://www.drupal.org/user/227761"
  6526. },
  6527. {
  6528. "name": "primsi",
  6529. "homepage": "https://www.drupal.org/user/282629"
  6530. }
  6531. ],
  6532. "description": "Enables the creation of Paragraphs entities.",
  6533. "homepage": "https://www.drupal.org/project/paragraphs",
  6534. "support": {
  6535. "source": "https://git.drupalcode.org/project/paragraphs"
  6536. }
  6537. },
  6538. {
  6539. "name": "drupal/pathauto",
  6540. "version": "1.13.0",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://git.drupalcode.org/project/pathauto.git",
  6544. "reference": "8.x-1.13"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  6549. "reference": "8.x-1.13",
  6550. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  6551. },
  6552. "require": {
  6553. "drupal/core": "^9.4 || ^10 || ^11",
  6554. "drupal/ctools": "*",
  6555. "drupal/token": "*"
  6556. },
  6557. "require-dev": {
  6558. "drupal/forum": "*"
  6559. },
  6560. "suggest": {
  6561. "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."
  6562. },
  6563. "type": "drupal-module",
  6564. "extra": {
  6565. "drupal": {
  6566. "version": "8.x-1.13",
  6567. "datestamp": "1739552840",
  6568. "security-coverage": {
  6569. "status": "covered",
  6570. "message": "Covered by Drupal's security advisory policy"
  6571. }
  6572. },
  6573. "drush": {
  6574. "services": {
  6575. "drush.services.yml": "^9 || ^10"
  6576. }
  6577. }
  6578. },
  6579. "notification-url": "https://packages.drupal.org/8/downloads",
  6580. "license": [
  6581. "GPL-2.0-or-later"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "berdir",
  6586. "homepage": "https://www.drupal.org/user/214652"
  6587. },
  6588. {
  6589. "name": "dave reid",
  6590. "homepage": "https://www.drupal.org/user/53892"
  6591. },
  6592. {
  6593. "name": "Freso",
  6594. "homepage": "https://www.drupal.org/user/27504"
  6595. },
  6596. {
  6597. "name": "greggles",
  6598. "homepage": "https://www.drupal.org/user/36762"
  6599. }
  6600. ],
  6601. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6602. "homepage": "https://www.drupal.org/project/pathauto",
  6603. "support": {
  6604. "source": "https://cgit.drupalcode.org/pathauto",
  6605. "issues": "https://www.drupal.org/project/issues/pathauto",
  6606. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6607. }
  6608. },
  6609. {
  6610. "name": "drupal/pathologic",
  6611. "version": "2.0.0-alpha3",
  6612. "source": {
  6613. "type": "git",
  6614. "url": "https://git.drupalcode.org/project/pathologic.git",
  6615. "reference": "2.0.0-alpha3"
  6616. },
  6617. "dist": {
  6618. "type": "zip",
  6619. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6620. "reference": "2.0.0-alpha3",
  6621. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6622. },
  6623. "require": {
  6624. "drupal/core": "^9 || ^10 || ^11"
  6625. },
  6626. "type": "drupal-module",
  6627. "extra": {
  6628. "drupal": {
  6629. "version": "2.0.0-alpha3",
  6630. "datestamp": "1733441073",
  6631. "security-coverage": {
  6632. "status": "not-covered",
  6633. "message": "Alpha releases are not covered by Drupal security advisories."
  6634. }
  6635. }
  6636. },
  6637. "notification-url": "https://packages.drupal.org/8/downloads",
  6638. "license": [
  6639. "GPL-2.0+"
  6640. ],
  6641. "authors": [
  6642. {
  6643. "name": "berdir",
  6644. "homepage": "https://www.drupal.org/user/214652"
  6645. },
  6646. {
  6647. "name": "dww",
  6648. "homepage": "https://www.drupal.org/user/46549"
  6649. },
  6650. {
  6651. "name": "Garrett Albright",
  6652. "homepage": "https://www.drupal.org/user/191212"
  6653. },
  6654. {
  6655. "name": "mark_fullmer",
  6656. "homepage": "https://www.drupal.org/user/2612816"
  6657. }
  6658. ],
  6659. "description": "Helps avoid broken links and incorrect paths in content.",
  6660. "homepage": "https://www.drupal.org/project/pathologic",
  6661. "support": {
  6662. "source": "https://git.drupalcode.org/project/pathologic"
  6663. }
  6664. },
  6665. {
  6666. "name": "drupal/persistent_login",
  6667. "version": "1.10.0",
  6668. "source": {
  6669. "type": "git",
  6670. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6671. "reference": "8.x-1.10"
  6672. },
  6673. "dist": {
  6674. "type": "zip",
  6675. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.10.zip",
  6676. "reference": "8.x-1.10",
  6677. "shasum": "eea0d9cf0cf2ebb6063a3edc244a78ffab0aad53"
  6678. },
  6679. "require": {
  6680. "drupal/core": "^9.2 || ^10"
  6681. },
  6682. "type": "drupal-module",
  6683. "extra": {
  6684. "drupal": {
  6685. "version": "8.x-1.10",
  6686. "datestamp": "1728082629",
  6687. "security-coverage": {
  6688. "status": "covered",
  6689. "message": "Covered by Drupal's security advisory policy"
  6690. }
  6691. }
  6692. },
  6693. "notification-url": "https://packages.drupal.org/8/downloads",
  6694. "license": [
  6695. "GPL-2.0-or-later"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "gapple",
  6700. "homepage": "https://www.drupal.org/user/490940"
  6701. }
  6702. ],
  6703. "description": "Provides a \"Remember Me\" feature on the login form.",
  6704. "homepage": "https://www.drupal.org/project/persistent_login",
  6705. "keywords": [
  6706. "Drupal"
  6707. ],
  6708. "support": {
  6709. "source": "https://git.drupalcode.org/project/persistent_login",
  6710. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6711. }
  6712. },
  6713. {
  6714. "name": "drupal/redirect",
  6715. "version": "1.11.0",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://git.drupalcode.org/project/redirect.git",
  6719. "reference": "8.x-1.11"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
  6724. "reference": "8.x-1.11",
  6725. "shasum": "7df8b3524bbde07d254216039636947a689140ef"
  6726. },
  6727. "require": {
  6728. "drupal/core": "^9.2 || ^10 || ^11"
  6729. },
  6730. "type": "drupal-module",
  6731. "extra": {
  6732. "drupal": {
  6733. "version": "8.x-1.11",
  6734. "datestamp": "1737382886",
  6735. "security-coverage": {
  6736. "status": "covered",
  6737. "message": "Covered by Drupal's security advisory policy"
  6738. }
  6739. }
  6740. },
  6741. "notification-url": "https://packages.drupal.org/8/downloads",
  6742. "license": [
  6743. "GPL-2.0-or-later"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "berdir",
  6748. "homepage": "https://www.drupal.org/user/214652"
  6749. },
  6750. {
  6751. "name": "dave reid",
  6752. "homepage": "https://www.drupal.org/user/53892"
  6753. },
  6754. {
  6755. "name": "kristen pol",
  6756. "homepage": "https://www.drupal.org/user/8389"
  6757. },
  6758. {
  6759. "name": "pifagor",
  6760. "homepage": "https://www.drupal.org/user/2375692"
  6761. }
  6762. ],
  6763. "description": "Allows users to redirect from old URLs to new URLs.",
  6764. "homepage": "https://www.drupal.org/project/redirect",
  6765. "support": {
  6766. "source": "https://git.drupalcode.org/project/redirect"
  6767. }
  6768. },
  6769. {
  6770. "name": "drupal/redis",
  6771. "version": "1.9.0",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://git.drupalcode.org/project/redis.git",
  6775. "reference": "8.x-1.9"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.9.zip",
  6780. "reference": "8.x-1.9",
  6781. "shasum": "77e2e8ddb95be08f3fe9f74182c7ff0476e15674"
  6782. },
  6783. "require": {
  6784. "drupal/core": "^9.3 || ^10 || ^11"
  6785. },
  6786. "suggest": {
  6787. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6788. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6789. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6790. },
  6791. "type": "drupal-module",
  6792. "extra": {
  6793. "drupal": {
  6794. "version": "8.x-1.9",
  6795. "datestamp": "1737932099",
  6796. "security-coverage": {
  6797. "status": "covered",
  6798. "message": "Covered by Drupal's security advisory policy"
  6799. }
  6800. }
  6801. },
  6802. "autoload": {
  6803. "psr-4": {
  6804. "Drupal\\redis\\": "src"
  6805. }
  6806. },
  6807. "notification-url": "https://packages.drupal.org/8/downloads",
  6808. "license": [
  6809. "GPL-2.0-or-later"
  6810. ],
  6811. "authors": [
  6812. {
  6813. "name": "berdir",
  6814. "homepage": "https://www.drupal.org/user/214652"
  6815. },
  6816. {
  6817. "name": "greg.1.anderson",
  6818. "homepage": "https://www.drupal.org/user/438598"
  6819. },
  6820. {
  6821. "name": "kporras07",
  6822. "homepage": "https://www.drupal.org/user/1349780"
  6823. },
  6824. {
  6825. "name": "pounard",
  6826. "homepage": "https://www.drupal.org/user/240164"
  6827. }
  6828. ],
  6829. "description": "Integration of Drupal with the Redis key-value store.",
  6830. "homepage": "https://www.drupal.org/project/redis",
  6831. "support": {
  6832. "source": "https://git.drupalcode.org/project/redis"
  6833. }
  6834. },
  6835. {
  6836. "name": "drupal/role_delegation",
  6837. "version": "1.4.0",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6841. "reference": "8.x-1.4"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip",
  6846. "reference": "8.x-1.4",
  6847. "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa"
  6848. },
  6849. "require": {
  6850. "drupal/core": "^10.3 || ^11"
  6851. },
  6852. "type": "drupal-module",
  6853. "extra": {
  6854. "drupal": {
  6855. "version": "8.x-1.4",
  6856. "datestamp": "1751012870",
  6857. "security-coverage": {
  6858. "status": "covered",
  6859. "message": "Covered by Drupal's security advisory policy"
  6860. }
  6861. }
  6862. },
  6863. "notification-url": "https://packages.drupal.org/8/downloads",
  6864. "license": [
  6865. "GPL-2.0-or-later"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Jeroen Tubex",
  6870. "homepage": "https://www.drupal.org/u/jeroent",
  6871. "role": "Maintainer"
  6872. },
  6873. {
  6874. "name": "benjy",
  6875. "homepage": "https://www.drupal.org/user/1852732"
  6876. },
  6877. {
  6878. "name": "dieterholvoet",
  6879. "homepage": "https://www.drupal.org/user/3567222"
  6880. },
  6881. {
  6882. "name": "jeroent",
  6883. "homepage": "https://www.drupal.org/user/2228934"
  6884. }
  6885. ],
  6886. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6887. "homepage": "http://drupal.org/project/role_delegation",
  6888. "support": {
  6889. "source": "https://git.drupalcode.org/project/role_delegation",
  6890. "issues": "http://drupal.org/project/role_delegation"
  6891. }
  6892. },
  6893. {
  6894. "name": "drupal/search_api",
  6895. "version": "1.38.0",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://git.drupalcode.org/project/search_api.git",
  6899. "reference": "8.x-1.38"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
  6904. "reference": "8.x-1.38",
  6905. "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
  6906. },
  6907. "require": {
  6908. "drupal/core": "^10.2 || ^11"
  6909. },
  6910. "conflict": {
  6911. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6912. },
  6913. "require-dev": {
  6914. "drupal/language_fallback_fix": "@dev",
  6915. "drupal/search_api_autocomplete": "@dev",
  6916. "drupal/search_api_db": "*"
  6917. },
  6918. "suggest": {
  6919. "drupal/facets": "Adds the ability to create faceted searches.",
  6920. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6921. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6922. },
  6923. "type": "drupal-module",
  6924. "extra": {
  6925. "drupal": {
  6926. "version": "8.x-1.38",
  6927. "datestamp": "1740298961",
  6928. "security-coverage": {
  6929. "status": "covered",
  6930. "message": "Covered by Drupal's security advisory policy"
  6931. }
  6932. }
  6933. },
  6934. "notification-url": "https://packages.drupal.org/8/downloads",
  6935. "license": [
  6936. "GPL-2.0-or-later"
  6937. ],
  6938. "authors": [
  6939. {
  6940. "name": "Thomas Seidl",
  6941. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6942. },
  6943. {
  6944. "name": "Nick Veenhof",
  6945. "homepage": "https://www.drupal.org/u/nick_vh"
  6946. },
  6947. {
  6948. "name": "See other contributors",
  6949. "homepage": "https://www.drupal.org/node/790418/committers"
  6950. }
  6951. ],
  6952. "description": "Provides a generic framework for modules offering search capabilities.",
  6953. "homepage": "https://www.drupal.org/project/search_api",
  6954. "support": {
  6955. "source": "https://git.drupalcode.org/project/search_api",
  6956. "issues": "https://www.drupal.org/project/issues/search_api",
  6957. "irc": "irc://irc.freenode.org/drupal-search-api"
  6958. }
  6959. },
  6960. {
  6961. "name": "drupal/search_api_db",
  6962. "version": "1.38.0",
  6963. "require": {
  6964. "drupal/core": "^10.2 || ^11",
  6965. "drupal/search_api": "*"
  6966. },
  6967. "type": "metapackage",
  6968. "extra": {
  6969. "drupal": {
  6970. "version": "8.x-1.38",
  6971. "datestamp": "1740298961",
  6972. "security-coverage": {
  6973. "status": "covered",
  6974. "message": "Covered by Drupal's security advisory policy"
  6975. }
  6976. }
  6977. },
  6978. "notification-url": "https://packages.drupal.org/8/downloads",
  6979. "license": [
  6980. "GPL-2.0-or-later"
  6981. ],
  6982. "authors": [
  6983. {
  6984. "name": "borisson_",
  6985. "homepage": "https://www.drupal.org/user/2393360"
  6986. },
  6987. {
  6988. "name": "drunken monkey",
  6989. "homepage": "https://www.drupal.org/user/205582"
  6990. },
  6991. {
  6992. "name": "nick_vh",
  6993. "homepage": "https://www.drupal.org/user/122682"
  6994. }
  6995. ],
  6996. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6997. "homepage": "https://www.drupal.org/project/search_api",
  6998. "support": {
  6999. "source": "https://git.drupalcode.org/project/search_api"
  7000. }
  7001. },
  7002. {
  7003. "name": "drupal/seven",
  7004. "version": "1.0.0",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://git.drupalcode.org/project/seven.git",
  7008. "reference": "1.0.0"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  7013. "reference": "1.0.0",
  7014. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  7015. },
  7016. "require": {
  7017. "drupal/core": "^9 || ^10"
  7018. },
  7019. "type": "drupal-theme",
  7020. "extra": {
  7021. "drupal": {
  7022. "version": "1.0.0",
  7023. "datestamp": "1683652106",
  7024. "security-coverage": {
  7025. "status": "covered",
  7026. "message": "Covered by Drupal's security advisory policy"
  7027. }
  7028. }
  7029. },
  7030. "notification-url": "https://packages.drupal.org/8/downloads",
  7031. "license": [
  7032. "GPL-2.0-or-later"
  7033. ],
  7034. "authors": [
  7035. {
  7036. "name": "avpaderno",
  7037. "homepage": "https://www.drupal.org/user/55077"
  7038. },
  7039. {
  7040. "name": "bnjmnm",
  7041. "homepage": "https://www.drupal.org/user/2369194"
  7042. },
  7043. {
  7044. "name": "krakenbite",
  7045. "homepage": "https://www.drupal.org/user/3805933"
  7046. },
  7047. {
  7048. "name": "lauriii",
  7049. "homepage": "https://www.drupal.org/user/1078742"
  7050. },
  7051. {
  7052. "name": "mcrittenden",
  7053. "homepage": "https://www.drupal.org/user/420631"
  7054. },
  7055. {
  7056. "name": "mrfelton",
  7057. "homepage": "https://www.drupal.org/user/305669"
  7058. }
  7059. ],
  7060. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  7061. "homepage": "https://www.drupal.org/project/seven",
  7062. "support": {
  7063. "source": "https://git.drupalcode.org/project/seven"
  7064. }
  7065. },
  7066. {
  7067. "name": "drupal/slick",
  7068. "version": "2.11.0",
  7069. "source": {
  7070. "type": "git",
  7071. "url": "https://git.drupalcode.org/project/slick.git",
  7072. "reference": "8.x-2.11"
  7073. },
  7074. "dist": {
  7075. "type": "zip",
  7076. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  7077. "reference": "8.x-2.11",
  7078. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  7079. },
  7080. "require": {
  7081. "drupal/blazy": "^2.17",
  7082. "drupal/core": "^8.8 || ^9 || ^10"
  7083. },
  7084. "type": "drupal-module",
  7085. "extra": {
  7086. "drupal": {
  7087. "version": "8.x-2.11",
  7088. "datestamp": "1712817716",
  7089. "security-coverage": {
  7090. "status": "covered",
  7091. "message": "Covered by Drupal's security advisory policy"
  7092. }
  7093. }
  7094. },
  7095. "notification-url": "https://packages.drupal.org/8/downloads",
  7096. "license": [
  7097. "GPL-2.0-or-later"
  7098. ],
  7099. "authors": [
  7100. {
  7101. "name": "Contributors",
  7102. "homepage": "https://www.drupal.org/node/2232779/committers",
  7103. "role": "Contributors"
  7104. },
  7105. {
  7106. "name": "shadcn",
  7107. "homepage": "https://www.drupal.org/user/571032"
  7108. },
  7109. {
  7110. "name": "thalles",
  7111. "homepage": "https://www.drupal.org/user/3589086"
  7112. }
  7113. ],
  7114. "description": "Slick carousel, the last carousel you'll ever need.",
  7115. "homepage": "https://drupal.org/project/slick",
  7116. "keywords": [
  7117. "Drupal",
  7118. "carousel",
  7119. "slideshow"
  7120. ],
  7121. "support": {
  7122. "source": "https://git.drupalcode.org/project/slick",
  7123. "issues": "https://drupal.org/project/issues/slick"
  7124. }
  7125. },
  7126. {
  7127. "name": "drupal/smart_trim",
  7128. "version": "2.2.0",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7132. "reference": "2.2.0"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.2.0.zip",
  7137. "reference": "2.2.0",
  7138. "shasum": "564737cf0895e1b8a38af575ab7ca23f55335d9a"
  7139. },
  7140. "require": {
  7141. "drupal/core": "^9.5 || ^10 || ^11",
  7142. "drupal/token": "^1.0",
  7143. "php": ">=8.1"
  7144. },
  7145. "require-dev": {
  7146. "drupal/token_filter": "^2.1 || ^2.2"
  7147. },
  7148. "type": "drupal-module",
  7149. "extra": {
  7150. "drupal": {
  7151. "version": "2.2.0",
  7152. "datestamp": "1723847275",
  7153. "security-coverage": {
  7154. "status": "covered",
  7155. "message": "Covered by Drupal's security advisory policy"
  7156. }
  7157. }
  7158. },
  7159. "notification-url": "https://packages.drupal.org/8/downloads",
  7160. "license": [
  7161. "GPL-2.0-or-later"
  7162. ],
  7163. "authors": [
  7164. {
  7165. "name": "Mark Casias (markie)",
  7166. "homepage": "https://www.drupal.org/u/markie",
  7167. "role": "Maintainer"
  7168. },
  7169. {
  7170. "name": "AmyJune Hineline (volkswagenchick)",
  7171. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7172. "role": "Maintainer"
  7173. },
  7174. {
  7175. "name": "Michael Anello (ultimike)",
  7176. "homepage": "https://www.drupal.org/u/ultimike",
  7177. "role": "Maintainer"
  7178. }
  7179. ],
  7180. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7181. "homepage": "https://drupal.org/project/smart_trim",
  7182. "support": {
  7183. "source": "https://git.drupalcode.org/project/smart_trim",
  7184. "issues": "https://drupal.org/project/issues/smart_trim"
  7185. }
  7186. },
  7187. {
  7188. "name": "drupal/smtp",
  7189. "version": "1.4.0",
  7190. "source": {
  7191. "type": "git",
  7192. "url": "https://git.drupalcode.org/project/smtp.git",
  7193. "reference": "8.x-1.4"
  7194. },
  7195. "dist": {
  7196. "type": "zip",
  7197. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7198. "reference": "8.x-1.4",
  7199. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7200. },
  7201. "require": {
  7202. "drupal/core": "^9.5 || ^10 || ^11",
  7203. "phpmailer/phpmailer": "^6.1.7"
  7204. },
  7205. "suggest": {
  7206. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7207. },
  7208. "type": "drupal-module",
  7209. "extra": {
  7210. "drupal": {
  7211. "version": "8.x-1.4",
  7212. "datestamp": "1722032780",
  7213. "security-coverage": {
  7214. "status": "covered",
  7215. "message": "Covered by Drupal's security advisory policy"
  7216. }
  7217. },
  7218. "branch-alias": {
  7219. "dev-8.x-1.x": "1.x-dev"
  7220. }
  7221. },
  7222. "notification-url": "https://packages.drupal.org/8/downloads",
  7223. "license": [
  7224. "GPL-2.0-or-later"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "japerry",
  7229. "homepage": "https://www.drupal.org/user/45640"
  7230. },
  7231. {
  7232. "name": "joseph.olstad",
  7233. "homepage": "https://www.drupal.org/user/1321830"
  7234. },
  7235. {
  7236. "name": "LukeLast",
  7237. "homepage": "https://www.drupal.org/user/30151"
  7238. },
  7239. {
  7240. "name": "oadaeh",
  7241. "homepage": "https://www.drupal.org/user/4649"
  7242. },
  7243. {
  7244. "name": "sadashiv",
  7245. "homepage": "https://www.drupal.org/user/1773304"
  7246. },
  7247. {
  7248. "name": "wundo",
  7249. "homepage": "https://www.drupal.org/user/25523"
  7250. },
  7251. {
  7252. "name": "yettyn",
  7253. "homepage": "https://www.drupal.org/user/93281"
  7254. }
  7255. ],
  7256. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7257. "homepage": "https://www.drupal.org/project/smtp",
  7258. "support": {
  7259. "source": "https://git.drupalcode.org/project/smtp",
  7260. "issues": "https://www.drupal.org/project/issues/smtp"
  7261. }
  7262. },
  7263. {
  7264. "name": "drupal/structure_sync",
  7265. "version": "2.0.8",
  7266. "source": {
  7267. "type": "git",
  7268. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7269. "reference": "2.0.8"
  7270. },
  7271. "dist": {
  7272. "type": "zip",
  7273. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7274. "reference": "2.0.8",
  7275. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7276. },
  7277. "require": {
  7278. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7279. "php": ">=7.1"
  7280. },
  7281. "require-dev": {
  7282. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7283. },
  7284. "type": "drupal-module",
  7285. "extra": {
  7286. "drupal": {
  7287. "version": "2.0.8",
  7288. "datestamp": "1728580642",
  7289. "security-coverage": {
  7290. "status": "covered",
  7291. "message": "Covered by Drupal's security advisory policy"
  7292. }
  7293. },
  7294. "drush": {
  7295. "services": {
  7296. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7297. }
  7298. }
  7299. },
  7300. "notification-url": "https://packages.drupal.org/8/downloads",
  7301. "license": [
  7302. "GPL-2.0-or-later"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "colan",
  7307. "homepage": "https://www.drupal.org/user/58704"
  7308. },
  7309. {
  7310. "name": "fidovdbos",
  7311. "homepage": "https://www.drupal.org/user/1494332"
  7312. },
  7313. {
  7314. "name": "joachim",
  7315. "homepage": "https://www.drupal.org/user/107701"
  7316. },
  7317. {
  7318. "name": "louis-cuny",
  7319. "homepage": "https://www.drupal.org/user/3606332"
  7320. },
  7321. {
  7322. "name": "mparker17",
  7323. "homepage": "https://www.drupal.org/user/536298"
  7324. },
  7325. {
  7326. "name": "spiderman",
  7327. "homepage": "https://www.drupal.org/user/1631"
  7328. },
  7329. {
  7330. "name": "timKruijsen",
  7331. "homepage": "https://www.drupal.org/user/3513437"
  7332. },
  7333. {
  7334. "name": "vinlaurens",
  7335. "homepage": "https://www.drupal.org/user/2945689"
  7336. }
  7337. ],
  7338. "description": "Tool for syncing structural data that is stored as content.",
  7339. "homepage": "https://www.drupal.org/project/structure_sync",
  7340. "support": {
  7341. "source": "https://git.drupalcode.org/project/structure_sync"
  7342. }
  7343. },
  7344. {
  7345. "name": "drupal/synonyms",
  7346. "version": "2.1.4",
  7347. "source": {
  7348. "type": "git",
  7349. "url": "https://git.drupalcode.org/project/synonyms.git",
  7350. "reference": "2.1.4"
  7351. },
  7352. "dist": {
  7353. "type": "zip",
  7354. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7355. "reference": "2.1.4",
  7356. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7357. },
  7358. "require": {
  7359. "drupal/core": "^9 || ^10 || ^11"
  7360. },
  7361. "require-dev": {
  7362. "drupal/synonyms_list_field": "*"
  7363. },
  7364. "type": "drupal-module",
  7365. "extra": {
  7366. "drupal": {
  7367. "version": "2.1.4",
  7368. "datestamp": "1723069842",
  7369. "security-coverage": {
  7370. "status": "covered",
  7371. "message": "Covered by Drupal's security advisory policy"
  7372. }
  7373. }
  7374. },
  7375. "notification-url": "https://packages.drupal.org/8/downloads",
  7376. "license": [
  7377. "GPL-2.0-or-later"
  7378. ],
  7379. "authors": [
  7380. {
  7381. "name": "Bojan Zivanovic",
  7382. "homepage": "https://www.drupal.org/u/bojanz",
  7383. "role": "Author and D5, D6 and D7 versions developer."
  7384. },
  7385. {
  7386. "name": "Alex Trosenko",
  7387. "homepage": "https://www.drupal.org/u/bucefal91",
  7388. "role": "D7 and D8 versions developer."
  7389. },
  7390. {
  7391. "name": "Duro Arezina",
  7392. "homepage": "https://www.drupal.org/u/devad",
  7393. "role": "D8+ versions maintenance"
  7394. },
  7395. {
  7396. "name": "See other contributors",
  7397. "homepage": "https://www.drupal.org/node/148775/committers"
  7398. }
  7399. ],
  7400. "description": "Provides synonyms feature for all entities.",
  7401. "homepage": "https://www.drupal.org/project/synonyms",
  7402. "support": {
  7403. "source": "https://git.drupalcode.org/project/synonyms",
  7404. "issues": "https://www.drupal.org/project/issues/synonyms"
  7405. }
  7406. },
  7407. {
  7408. "name": "drupal/token",
  7409. "version": "1.15.0",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://git.drupalcode.org/project/token.git",
  7413. "reference": "8.x-1.15"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  7418. "reference": "8.x-1.15",
  7419. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  7420. },
  7421. "require": {
  7422. "drupal/core": "^9.2 || ^10 || ^11"
  7423. },
  7424. "require-dev": {
  7425. "drupal/book": "*"
  7426. },
  7427. "type": "drupal-module",
  7428. "extra": {
  7429. "drupal": {
  7430. "version": "8.x-1.15",
  7431. "datestamp": "1722206211",
  7432. "security-coverage": {
  7433. "status": "covered",
  7434. "message": "Covered by Drupal's security advisory policy"
  7435. }
  7436. },
  7437. "drush": {
  7438. "services": {
  7439. "drush.services.yml": ">=9"
  7440. }
  7441. }
  7442. },
  7443. "notification-url": "https://packages.drupal.org/8/downloads",
  7444. "license": [
  7445. "GPL-2.0-or-later"
  7446. ],
  7447. "authors": [
  7448. {
  7449. "name": "berdir",
  7450. "homepage": "https://www.drupal.org/user/214652"
  7451. },
  7452. {
  7453. "name": "dave reid",
  7454. "homepage": "https://www.drupal.org/user/53892"
  7455. },
  7456. {
  7457. "name": "eaton",
  7458. "homepage": "https://www.drupal.org/user/16496"
  7459. },
  7460. {
  7461. "name": "fago",
  7462. "homepage": "https://www.drupal.org/user/16747"
  7463. },
  7464. {
  7465. "name": "greggles",
  7466. "homepage": "https://www.drupal.org/user/36762"
  7467. },
  7468. {
  7469. "name": "mikeryan",
  7470. "homepage": "https://www.drupal.org/user/4420"
  7471. }
  7472. ],
  7473. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7474. "homepage": "https://www.drupal.org/project/token",
  7475. "support": {
  7476. "source": "https://git.drupalcode.org/project/token"
  7477. }
  7478. },
  7479. {
  7480. "name": "drupal/translation_views",
  7481. "version": "1.0.0-alpha11",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://git.drupalcode.org/project/translation_views.git",
  7485. "reference": "8.x-1.0-alpha11"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7490. "reference": "8.x-1.0-alpha11",
  7491. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7492. },
  7493. "require": {
  7494. "drupal/core": "^8.8 || ^9 || ^10"
  7495. },
  7496. "require-dev": {
  7497. "drupal/translators_content": "^1.0@alpha"
  7498. },
  7499. "type": "drupal-module",
  7500. "extra": {
  7501. "drupal": {
  7502. "version": "8.x-1.0-alpha11",
  7503. "datestamp": "1679660668",
  7504. "security-coverage": {
  7505. "status": "not-covered",
  7506. "message": "Alpha releases are not covered by Drupal security advisories."
  7507. }
  7508. }
  7509. },
  7510. "notification-url": "https://packages.drupal.org/8/downloads",
  7511. "license": [
  7512. "GPL-2.0-or-later"
  7513. ],
  7514. "authors": [
  7515. {
  7516. "name": "matsbla",
  7517. "homepage": "https://www.drupal.org/user/2325394"
  7518. },
  7519. {
  7520. "name": "vlad.dancer",
  7521. "homepage": "https://www.drupal.org/user/903844"
  7522. }
  7523. ],
  7524. "description": "Create customized lists and queries of translations from your database.",
  7525. "homepage": "https://www.drupal.org/project/translation_views",
  7526. "support": {
  7527. "source": "https://git.drupalcode.org/project/translation_views"
  7528. }
  7529. },
  7530. {
  7531. "name": "drupal/ultimate_cron",
  7532. "version": "2.0.0-beta1",
  7533. "source": {
  7534. "type": "git",
  7535. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7536. "reference": "8.x-2.0-beta1"
  7537. },
  7538. "dist": {
  7539. "type": "zip",
  7540. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7541. "reference": "8.x-2.0-beta1",
  7542. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7543. },
  7544. "require": {
  7545. "drupal/core": "^9.3 || ^10.1 || ^11"
  7546. },
  7547. "type": "drupal-module",
  7548. "extra": {
  7549. "drupal": {
  7550. "version": "8.x-2.0-beta1",
  7551. "datestamp": "1732830342",
  7552. "security-coverage": {
  7553. "status": "not-covered",
  7554. "message": "Beta releases are not covered by Drupal security advisories."
  7555. }
  7556. },
  7557. "drush": {
  7558. "services": {
  7559. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7560. }
  7561. }
  7562. },
  7563. "notification-url": "https://packages.drupal.org/8/downloads",
  7564. "license": [
  7565. "GPL-2.0+"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "arnested",
  7570. "homepage": "https://www.drupal.org/user/245635"
  7571. },
  7572. {
  7573. "name": "berdir",
  7574. "homepage": "https://www.drupal.org/user/214652"
  7575. },
  7576. {
  7577. "name": "gielfeldt",
  7578. "homepage": "https://www.drupal.org/user/366993"
  7579. },
  7580. {
  7581. "name": "miro_dietiker",
  7582. "homepage": "https://www.drupal.org/user/227761"
  7583. },
  7584. {
  7585. "name": "primsi",
  7586. "homepage": "https://www.drupal.org/user/282629"
  7587. }
  7588. ],
  7589. "description": "Ultimate cron",
  7590. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7591. "support": {
  7592. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7593. }
  7594. },
  7595. {
  7596. "name": "drupal/upgrade_status",
  7597. "version": "4.3.8",
  7598. "source": {
  7599. "type": "git",
  7600. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7601. "reference": "4.3.8"
  7602. },
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  7606. "reference": "4.3.8",
  7607. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  7608. },
  7609. "require": {
  7610. "dekor/php-array-table": "^2.0",
  7611. "drupal/core": "^9 || ^10 || ^11",
  7612. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7613. "nikic/php-parser": "^4.0.0|^5.0.0",
  7614. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7615. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7616. "webflo/drupal-finder": "^1.2"
  7617. },
  7618. "require-dev": {
  7619. "drush/drush": "^11|^12|^13"
  7620. },
  7621. "type": "drupal-module",
  7622. "extra": {
  7623. "drupal": {
  7624. "version": "4.3.8",
  7625. "datestamp": "1751485112",
  7626. "security-coverage": {
  7627. "status": "covered",
  7628. "message": "Covered by Drupal's security advisory policy"
  7629. }
  7630. },
  7631. "drush": {
  7632. "services": {
  7633. "drush.services.yml": "^9 || ^10"
  7634. }
  7635. }
  7636. },
  7637. "notification-url": "https://packages.drupal.org/8/downloads",
  7638. "license": [
  7639. "GPL-2.0-or-later"
  7640. ],
  7641. "authors": [
  7642. {
  7643. "name": "gábor hojtsy",
  7644. "homepage": "https://www.drupal.org/user/4166"
  7645. }
  7646. ],
  7647. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7648. "homepage": "http://drupal.org/project/upgrade_status",
  7649. "support": {
  7650. "source": "https://git.drupalcode.org/project/upgrade_status"
  7651. }
  7652. },
  7653. {
  7654. "name": "drupal/video_embed_dailymotion",
  7655. "version": "2.0.0",
  7656. "source": {
  7657. "type": "git",
  7658. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7659. "reference": "2.0.0"
  7660. },
  7661. "dist": {
  7662. "type": "zip",
  7663. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7664. "reference": "2.0.0",
  7665. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7666. },
  7667. "require": {
  7668. "drupal/core": "^9 || ^10",
  7669. "drupal/video_embed_field": "*"
  7670. },
  7671. "type": "drupal-module",
  7672. "extra": {
  7673. "drupal": {
  7674. "version": "2.0.0",
  7675. "datestamp": "1699434830",
  7676. "security-coverage": {
  7677. "status": "covered",
  7678. "message": "Covered by Drupal's security advisory policy"
  7679. }
  7680. }
  7681. },
  7682. "notification-url": "https://packages.drupal.org/8/downloads",
  7683. "license": [
  7684. "GPL-2.0-or-later"
  7685. ],
  7686. "authors": [
  7687. {
  7688. "name": "flocondetoile",
  7689. "homepage": "https://www.drupal.org/user/2006064"
  7690. },
  7691. {
  7692. "name": "mohs3n71",
  7693. "homepage": "https://www.drupal.org/user/2295854"
  7694. },
  7695. {
  7696. "name": "Sam152",
  7697. "homepage": "https://www.drupal.org/user/1485048"
  7698. }
  7699. ],
  7700. "description": "A video_embed_field integration with Dailymotion.",
  7701. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7702. "support": {
  7703. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7704. }
  7705. },
  7706. {
  7707. "name": "drupal/video_embed_field",
  7708. "version": "2.5.0",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7712. "reference": "8.x-2.5"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7717. "reference": "8.x-2.5",
  7718. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7719. },
  7720. "require": {
  7721. "drupal/core": "^9.2 || ^10"
  7722. },
  7723. "require-dev": {
  7724. "drupal/ckeditor": "^1",
  7725. "drupal/colorbox": "^2",
  7726. "drupal/video_embed_media": "*"
  7727. },
  7728. "type": "drupal-module",
  7729. "extra": {
  7730. "drupal": {
  7731. "version": "8.x-2.5",
  7732. "datestamp": "1671413311",
  7733. "security-coverage": {
  7734. "status": "covered",
  7735. "message": "Covered by Drupal's security advisory policy"
  7736. }
  7737. }
  7738. },
  7739. "notification-url": "https://packages.drupal.org/8/downloads",
  7740. "license": [
  7741. "GPL-2.0-or-later"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "abhinesh",
  7746. "homepage": "https://www.drupal.org/user/3645979"
  7747. },
  7748. {
  7749. "name": "jec006",
  7750. "homepage": "https://www.drupal.org/user/855980"
  7751. },
  7752. {
  7753. "name": "mably",
  7754. "homepage": "https://www.drupal.org/user/3375160"
  7755. },
  7756. {
  7757. "name": "plopesc",
  7758. "homepage": "https://www.drupal.org/user/282415"
  7759. },
  7760. {
  7761. "name": "sam152",
  7762. "homepage": "https://www.drupal.org/user/1485048"
  7763. }
  7764. ],
  7765. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7766. "homepage": "https://www.drupal.org/project/video_embed_field",
  7767. "support": {
  7768. "source": "https://git.drupalcode.org/project/video_embed_field"
  7769. }
  7770. },
  7771. {
  7772. "name": "drupal/views_bulk_edit",
  7773. "version": "3.0.0",
  7774. "source": {
  7775. "type": "git",
  7776. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7777. "reference": "3.0.0"
  7778. },
  7779. "dist": {
  7780. "type": "zip",
  7781. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  7782. "reference": "3.0.0",
  7783. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  7784. },
  7785. "require": {
  7786. "drupal/core": "^9.4 || ^10 || ^11",
  7787. "php": ">=8.1"
  7788. },
  7789. "require-dev": {
  7790. "drupal/views_bulk_operations": "~4.2.4"
  7791. },
  7792. "suggest": {
  7793. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7794. },
  7795. "type": "drupal-module",
  7796. "extra": {
  7797. "drupal": {
  7798. "version": "3.0.0",
  7799. "datestamp": "1725358398",
  7800. "security-coverage": {
  7801. "status": "covered",
  7802. "message": "Covered by Drupal's security advisory policy"
  7803. }
  7804. }
  7805. },
  7806. "notification-url": "https://packages.drupal.org/8/downloads",
  7807. "license": [
  7808. "GPL-2.0+"
  7809. ],
  7810. "authors": [
  7811. {
  7812. "name": "Marcin Grabias",
  7813. "homepage": "https://www.drupal.org/u/graber"
  7814. },
  7815. {
  7816. "name": "benjy",
  7817. "homepage": "https://www.drupal.org/user/1852732"
  7818. },
  7819. {
  7820. "name": "graber",
  7821. "homepage": "https://www.drupal.org/user/1599440"
  7822. },
  7823. {
  7824. "name": "grevil",
  7825. "homepage": "https://www.drupal.org/user/3668491"
  7826. },
  7827. {
  7828. "name": "joseph.olstad",
  7829. "homepage": "https://www.drupal.org/user/1321830"
  7830. }
  7831. ],
  7832. "description": "Allows bulk edition of entity field values.",
  7833. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7834. "support": {
  7835. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7836. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7837. }
  7838. },
  7839. {
  7840. "name": "drupal/views_bulk_operations",
  7841. "version": "4.3.4",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7845. "reference": "4.3.4"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  7850. "reference": "4.3.4",
  7851. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  7852. },
  7853. "require": {
  7854. "drupal/core": "^10.3 || ^11"
  7855. },
  7856. "conflict": {
  7857. "drush/drush": "<12.5.1"
  7858. },
  7859. "require-dev": {
  7860. "drush/drush": "^12 || ^13"
  7861. },
  7862. "suggest": {
  7863. "drush/drush": "^12 || ^13"
  7864. },
  7865. "type": "drupal-module",
  7866. "extra": {
  7867. "drupal": {
  7868. "version": "4.3.4",
  7869. "datestamp": "1741604495",
  7870. "security-coverage": {
  7871. "status": "covered",
  7872. "message": "Covered by Drupal's security advisory policy"
  7873. }
  7874. }
  7875. },
  7876. "notification-url": "https://packages.drupal.org/8/downloads",
  7877. "license": [
  7878. "GPL-2.0-or-later"
  7879. ],
  7880. "authors": [
  7881. {
  7882. "name": "Marcin Grabias",
  7883. "homepage": "https://www.drupal.org/u/graber"
  7884. },
  7885. {
  7886. "name": "graber",
  7887. "homepage": "https://www.drupal.org/user/1599440"
  7888. },
  7889. {
  7890. "name": "joelpittet",
  7891. "homepage": "https://www.drupal.org/user/160302"
  7892. }
  7893. ],
  7894. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7895. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7896. "support": {
  7897. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7898. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7899. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7900. }
  7901. },
  7902. {
  7903. "name": "drupal/views_conditional",
  7904. "version": "1.10.0",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7908. "reference": "8.x-1.10"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7913. "reference": "8.x-1.10",
  7914. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7915. },
  7916. "require": {
  7917. "drupal/core": "^9 || ^10 || ^11"
  7918. },
  7919. "type": "drupal-module",
  7920. "extra": {
  7921. "drupal": {
  7922. "version": "8.x-1.10",
  7923. "datestamp": "1727901408",
  7924. "security-coverage": {
  7925. "status": "covered",
  7926. "message": "Covered by Drupal's security advisory policy"
  7927. }
  7928. }
  7929. },
  7930. "notification-url": "https://packages.drupal.org/8/downloads",
  7931. "license": [
  7932. "GPL-2.0-or-later"
  7933. ],
  7934. "authors": [
  7935. {
  7936. "name": "anand.toshniwal93",
  7937. "homepage": "https://www.drupal.org/user/3345088"
  7938. },
  7939. {
  7940. "name": "joelpittet",
  7941. "homepage": "https://www.drupal.org/user/160302"
  7942. },
  7943. {
  7944. "name": "MChittenden",
  7945. "homepage": "https://www.drupal.org/user/2288348"
  7946. },
  7947. {
  7948. "name": "shelane",
  7949. "homepage": "https://www.drupal.org/user/2674989"
  7950. }
  7951. ],
  7952. "description": "Allows conditional views output.",
  7953. "homepage": "https://www.drupal.org/project/views_conditional",
  7954. "support": {
  7955. "source": "https://git.drupalcode.org/project/views_conditional"
  7956. }
  7957. },
  7958. {
  7959. "name": "drupal/views_ef_fieldset",
  7960. "version": "1.10.0",
  7961. "source": {
  7962. "type": "git",
  7963. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7964. "reference": "8.x-1.10"
  7965. },
  7966. "dist": {
  7967. "type": "zip",
  7968. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7969. "reference": "8.x-1.10",
  7970. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7971. },
  7972. "require": {
  7973. "drupal/core": "^10 || ^11"
  7974. },
  7975. "type": "drupal-module",
  7976. "extra": {
  7977. "drupal": {
  7978. "version": "8.x-1.10",
  7979. "datestamp": "1731071552",
  7980. "security-coverage": {
  7981. "status": "covered",
  7982. "message": "Covered by Drupal's security advisory policy"
  7983. }
  7984. }
  7985. },
  7986. "notification-url": "https://packages.drupal.org/8/downloads",
  7987. "license": [
  7988. "GPL-2.0-or-later"
  7989. ],
  7990. "authors": [
  7991. {
  7992. "name": "ciss",
  7993. "homepage": "https://www.drupal.org/user/1632364"
  7994. },
  7995. {
  7996. "name": "eli-t",
  7997. "homepage": "https://www.drupal.org/user/516878"
  7998. },
  7999. {
  8000. "name": "pol",
  8001. "homepage": "https://www.drupal.org/user/47194"
  8002. }
  8003. ],
  8004. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  8005. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  8006. "support": {
  8007. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8008. }
  8009. },
  8010. {
  8011. "name": "drupal/webform",
  8012. "version": "6.2.9",
  8013. "source": {
  8014. "type": "git",
  8015. "url": "https://git.drupalcode.org/project/webform.git",
  8016. "reference": "6.2.9"
  8017. },
  8018. "dist": {
  8019. "type": "zip",
  8020. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  8021. "reference": "6.2.9",
  8022. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  8023. },
  8024. "require": {
  8025. "drupal/core": "^10.2",
  8026. "php": ">=8.1"
  8027. },
  8028. "require-dev": {
  8029. "drupal/address": "1.x-dev",
  8030. "drupal/bootstrap": "3.x-dev",
  8031. "drupal/captcha": "^1 || ^2",
  8032. "drupal/chosen": "3.0.x-dev",
  8033. "drupal/ckeditor": "1.0.x-dev",
  8034. "drupal/clientside_validation": "^3 || ^4",
  8035. "drupal/clientside_validation_jquery": "*",
  8036. "drupal/devel": "5.x-dev",
  8037. "drupal/entity": "1.x-dev",
  8038. "drupal/entity_print": "2.x-dev",
  8039. "drupal/group": "1.x-dev",
  8040. "drupal/hal": "1 - 2",
  8041. "drupal/jquery_ui": "1.x-dev",
  8042. "drupal/jquery_ui_button": "2.x-dev",
  8043. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  8044. "drupal/jquery_ui_datepicker": "2.x-dev",
  8045. "drupal/mailsystem": "4.x-dev",
  8046. "drupal/metatag": "1.x-dev",
  8047. "drupal/paragraphs": "1.x-dev",
  8048. "drupal/select2": "1.x-dev",
  8049. "drupal/smtp": "1.x-dev",
  8050. "drupal/styleguide": "^1 || ^2",
  8051. "drupal/telephone_validation": "2.x-dev",
  8052. "drupal/token": "1.x-dev",
  8053. "drupal/variationcache": "1.x-dev",
  8054. "drupal/webform_access": "*",
  8055. "drupal/webform_attachment": "*",
  8056. "drupal/webform_clientside_validation": "*",
  8057. "drupal/webform_devel": "*",
  8058. "drupal/webform_entity_print": "*",
  8059. "drupal/webform_node": "*",
  8060. "drupal/webform_options_limit": "*",
  8061. "drupal/webform_scheduled_email": "*",
  8062. "drupal/webform_share": "*",
  8063. "drupal/webform_ui": "*"
  8064. },
  8065. "suggest": {
  8066. "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.",
  8067. "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."
  8068. },
  8069. "type": "drupal-module",
  8070. "extra": {
  8071. "drupal": {
  8072. "version": "6.2.9",
  8073. "datestamp": "1733851063",
  8074. "security-coverage": {
  8075. "status": "covered",
  8076. "message": "Covered by Drupal's security advisory policy"
  8077. }
  8078. },
  8079. "drush": {
  8080. "services": {
  8081. "drush.services.yml": ">=9"
  8082. }
  8083. }
  8084. },
  8085. "notification-url": "https://packages.drupal.org/8/downloads",
  8086. "license": [
  8087. "GPL-2.0-or-later"
  8088. ],
  8089. "authors": [
  8090. {
  8091. "name": "Jacob Rockowitz (jrockowitz)",
  8092. "homepage": "https://www.drupal.org/u/jrockowitz",
  8093. "role": "Maintainer"
  8094. },
  8095. {
  8096. "name": "Contributors",
  8097. "homepage": "https://www.drupal.org/node/7404/committers",
  8098. "role": "Contributor"
  8099. },
  8100. {
  8101. "name": "liam morland",
  8102. "homepage": "https://www.drupal.org/user/493050"
  8103. },
  8104. {
  8105. "name": "mandclu",
  8106. "homepage": "https://www.drupal.org/user/52136"
  8107. },
  8108. {
  8109. "name": "quicksketch",
  8110. "homepage": "https://www.drupal.org/user/35821"
  8111. }
  8112. ],
  8113. "description": "Enables the creation of webforms and questionnaires.",
  8114. "homepage": "https://drupal.org/project/webform",
  8115. "support": {
  8116. "source": "https://git.drupalcode.org/project/webform",
  8117. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8118. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8119. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8120. }
  8121. },
  8122. {
  8123. "name": "drush/drush",
  8124. "version": "12.5.3",
  8125. "source": {
  8126. "type": "git",
  8127. "url": "https://github.com/drush-ops/drush.git",
  8128. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  8129. },
  8130. "dist": {
  8131. "type": "zip",
  8132. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8133. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8134. "shasum": ""
  8135. },
  8136. "require": {
  8137. "chi-teck/drupal-code-generator": "^3.0",
  8138. "composer-runtime-api": "^2.2",
  8139. "composer/semver": "^1.4 || ^3",
  8140. "consolidation/annotated-command": "^4.9.2",
  8141. "consolidation/config": "^2.1.2",
  8142. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8143. "consolidation/output-formatters": "^4.3.2",
  8144. "consolidation/robo": "^4.0.6",
  8145. "consolidation/site-alias": "^4",
  8146. "consolidation/site-process": "^5.2.0",
  8147. "ext-dom": "*",
  8148. "grasmash/yaml-cli": "^3.1",
  8149. "guzzlehttp/guzzle": "^7.0",
  8150. "league/container": "^4",
  8151. "php": ">=8.1",
  8152. "psy/psysh": "~0.11",
  8153. "symfony/event-dispatcher": "^6",
  8154. "symfony/filesystem": "^6.1",
  8155. "symfony/finder": "^6",
  8156. "symfony/var-dumper": "^6.0",
  8157. "symfony/yaml": "^6.0",
  8158. "webflo/drupal-finder": "^1.2"
  8159. },
  8160. "conflict": {
  8161. "drupal/core": "< 10.0",
  8162. "drupal/migrate_run": "*",
  8163. "drupal/migrate_tools": "<= 5"
  8164. },
  8165. "require-dev": {
  8166. "composer/installers": "^2",
  8167. "cweagans/composer-patches": "~1.0",
  8168. "drupal/core-recommended": "^10",
  8169. "drupal/semver_example": "2.3.0",
  8170. "phpunit/phpunit": "^9",
  8171. "rector/rector": "^0.12",
  8172. "squizlabs/php_codesniffer": "^3.7"
  8173. },
  8174. "bin": [
  8175. "drush"
  8176. ],
  8177. "type": "library",
  8178. "extra": {
  8179. "installer-paths": {
  8180. "sut/core": [
  8181. "type:drupal-core"
  8182. ],
  8183. "sut/libraries/{$name}": [
  8184. "type:drupal-library"
  8185. ],
  8186. "sut/themes/unish/{$name}": [
  8187. "drupal/empty_theme"
  8188. ],
  8189. "sut/drush/contrib/{$name}": [
  8190. "type:drupal-drush"
  8191. ],
  8192. "sut/modules/unish/{$name}": [
  8193. "drupal/devel"
  8194. ],
  8195. "sut/themes/contrib/{$name}": [
  8196. "type:drupal-theme"
  8197. ],
  8198. "sut/modules/contrib/{$name}": [
  8199. "type:drupal-module"
  8200. ],
  8201. "sut/profiles/contrib/{$name}": [
  8202. "type:drupal-profile"
  8203. ]
  8204. }
  8205. },
  8206. "autoload": {
  8207. "psr-4": {
  8208. "Drush\\": "src/"
  8209. }
  8210. },
  8211. "notification-url": "https://packagist.org/downloads/",
  8212. "license": [
  8213. "GPL-2.0-or-later"
  8214. ],
  8215. "authors": [
  8216. {
  8217. "name": "Moshe Weitzman",
  8218. "email": "weitzman@tejasa.com"
  8219. },
  8220. {
  8221. "name": "Owen Barton",
  8222. "email": "drupal@owenbarton.com"
  8223. },
  8224. {
  8225. "name": "Greg Anderson",
  8226. "email": "greg.1.anderson@greenknowe.org"
  8227. },
  8228. {
  8229. "name": "Jonathan Araña Cruz",
  8230. "email": "jonhattan@faita.net"
  8231. },
  8232. {
  8233. "name": "Jonathan Hedstrom",
  8234. "email": "jhedstrom@gmail.com"
  8235. },
  8236. {
  8237. "name": "Christopher Gervais",
  8238. "email": "chris@ergonlogic.com"
  8239. },
  8240. {
  8241. "name": "Dave Reid",
  8242. "email": "dave@davereid.net"
  8243. },
  8244. {
  8245. "name": "Damian Lee",
  8246. "email": "damiankloip@googlemail.com"
  8247. }
  8248. ],
  8249. "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.",
  8250. "homepage": "http://www.drush.org",
  8251. "support": {
  8252. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8253. "issues": "https://github.com/drush-ops/drush/issues",
  8254. "security": "https://github.com/drush-ops/drush/security/advisories",
  8255. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8256. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  8257. },
  8258. "funding": [
  8259. {
  8260. "url": "https://github.com/weitzman",
  8261. "type": "github"
  8262. }
  8263. ],
  8264. "time": "2024-08-02T11:57:29+00:00"
  8265. },
  8266. {
  8267. "name": "egulias/email-validator",
  8268. "version": "4.0.4",
  8269. "source": {
  8270. "type": "git",
  8271. "url": "https://github.com/egulias/EmailValidator.git",
  8272. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8273. },
  8274. "dist": {
  8275. "type": "zip",
  8276. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8277. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8278. "shasum": ""
  8279. },
  8280. "require": {
  8281. "doctrine/lexer": "^2.0 || ^3.0",
  8282. "php": ">=8.1",
  8283. "symfony/polyfill-intl-idn": "^1.26"
  8284. },
  8285. "require-dev": {
  8286. "phpunit/phpunit": "^10.2",
  8287. "vimeo/psalm": "^5.12"
  8288. },
  8289. "suggest": {
  8290. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8291. },
  8292. "type": "library",
  8293. "extra": {
  8294. "branch-alias": {
  8295. "dev-master": "4.0.x-dev"
  8296. }
  8297. },
  8298. "autoload": {
  8299. "psr-4": {
  8300. "Egulias\\EmailValidator\\": "src"
  8301. }
  8302. },
  8303. "notification-url": "https://packagist.org/downloads/",
  8304. "license": [
  8305. "MIT"
  8306. ],
  8307. "authors": [
  8308. {
  8309. "name": "Eduardo Gulias Davis"
  8310. }
  8311. ],
  8312. "description": "A library for validating emails against several RFCs",
  8313. "homepage": "https://github.com/egulias/EmailValidator",
  8314. "keywords": [
  8315. "email",
  8316. "emailvalidation",
  8317. "emailvalidator",
  8318. "validation",
  8319. "validator"
  8320. ],
  8321. "support": {
  8322. "issues": "https://github.com/egulias/EmailValidator/issues",
  8323. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8324. },
  8325. "funding": [
  8326. {
  8327. "url": "https://github.com/egulias",
  8328. "type": "github"
  8329. }
  8330. ],
  8331. "time": "2025-03-06T22:45:56+00:00"
  8332. },
  8333. {
  8334. "name": "geocoder-php/common-http",
  8335. "version": "4.7.0",
  8336. "source": {
  8337. "type": "git",
  8338. "url": "https://github.com/geocoder-php/php-common-http.git",
  8339. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8340. },
  8341. "dist": {
  8342. "type": "zip",
  8343. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8344. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8345. "shasum": ""
  8346. },
  8347. "require": {
  8348. "php": "^8.0",
  8349. "php-http/discovery": "^1.17",
  8350. "psr/http-client-implementation": "^1.0",
  8351. "psr/http-factory-implementation": "^1.0",
  8352. "willdurand/geocoder": "^4.0|^5.0"
  8353. },
  8354. "require-dev": {
  8355. "nyholm/psr7": "^1.0",
  8356. "php-http/message": "^1.0",
  8357. "php-http/mock-client": "^1.0",
  8358. "phpunit/phpunit": "^9.5",
  8359. "symfony/stopwatch": "~2.5 || ~5.0"
  8360. },
  8361. "type": "library",
  8362. "extra": {
  8363. "branch-alias": {
  8364. "dev-master": "4.0-dev"
  8365. }
  8366. },
  8367. "autoload": {
  8368. "psr-4": {
  8369. "Geocoder\\Http\\": ""
  8370. },
  8371. "exclude-from-classmap": [
  8372. "/Tests/"
  8373. ]
  8374. },
  8375. "notification-url": "https://packagist.org/downloads/",
  8376. "license": [
  8377. "MIT"
  8378. ],
  8379. "authors": [
  8380. {
  8381. "name": "Tobias Nyholm",
  8382. "email": "tobias.nyholm@gmail.com"
  8383. }
  8384. ],
  8385. "description": "Common files for HTTP based Geocoders",
  8386. "homepage": "http://geocoder-php.org",
  8387. "keywords": [
  8388. "http geocoder"
  8389. ],
  8390. "support": {
  8391. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8392. },
  8393. "time": "2025-04-15T12:38:11+00:00"
  8394. },
  8395. {
  8396. "name": "geocoder-php/mapquest-provider",
  8397. "version": "4.4.0",
  8398. "source": {
  8399. "type": "git",
  8400. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8401. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8402. },
  8403. "dist": {
  8404. "type": "zip",
  8405. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8406. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8407. "shasum": ""
  8408. },
  8409. "require": {
  8410. "geocoder-php/common-http": "^4.6",
  8411. "php": "^8.0",
  8412. "willdurand/geocoder": "^4.0|^5.0"
  8413. },
  8414. "provide": {
  8415. "geocoder-php/provider-implementation": "1.0"
  8416. },
  8417. "require-dev": {
  8418. "geocoder-php/provider-integration-tests": "^1.6.3",
  8419. "php-http/message": "^1.0",
  8420. "phpunit/phpunit": "^9.5"
  8421. },
  8422. "type": "library",
  8423. "extra": {
  8424. "branch-alias": {
  8425. "dev-master": "4.0-dev"
  8426. }
  8427. },
  8428. "autoload": {
  8429. "psr-4": {
  8430. "Geocoder\\Provider\\MapQuest\\": ""
  8431. },
  8432. "exclude-from-classmap": [
  8433. "/Tests/"
  8434. ]
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "William Durand",
  8443. "email": "william.durand1@gmail.com"
  8444. }
  8445. ],
  8446. "description": "Geocoder MapQuest adapter",
  8447. "homepage": "http://geocoder-php.org/Geocoder/",
  8448. "support": {
  8449. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8450. },
  8451. "time": "2025-04-15T13:24:32+00:00"
  8452. },
  8453. {
  8454. "name": "grasmash/expander",
  8455. "version": "3.0.1",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/grasmash/expander.git",
  8459. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8464. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8465. "shasum": ""
  8466. },
  8467. "require": {
  8468. "dflydev/dot-access-data": "^3.0.0",
  8469. "php": ">=8.0",
  8470. "psr/log": "^2 | ^3"
  8471. },
  8472. "require-dev": {
  8473. "greg-1-anderson/composer-test-scenarios": "^1",
  8474. "php-coveralls/php-coveralls": "^2.5",
  8475. "phpunit/phpunit": "^9",
  8476. "squizlabs/php_codesniffer": "^3.3"
  8477. },
  8478. "type": "library",
  8479. "extra": {
  8480. "branch-alias": {
  8481. "dev-master": "1.x-dev"
  8482. }
  8483. },
  8484. "autoload": {
  8485. "psr-4": {
  8486. "Grasmash\\Expander\\": "src/"
  8487. }
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Matthew Grasmick"
  8496. }
  8497. ],
  8498. "description": "Expands internal property references in PHP arrays file.",
  8499. "support": {
  8500. "issues": "https://github.com/grasmash/expander/issues",
  8501. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8502. },
  8503. "time": "2024-11-25T23:28:05+00:00"
  8504. },
  8505. {
  8506. "name": "grasmash/yaml-cli",
  8507. "version": "3.2.1",
  8508. "source": {
  8509. "type": "git",
  8510. "url": "https://github.com/grasmash/yaml-cli.git",
  8511. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8512. },
  8513. "dist": {
  8514. "type": "zip",
  8515. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8516. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8517. "shasum": ""
  8518. },
  8519. "require": {
  8520. "dflydev/dot-access-data": "^3",
  8521. "php": ">=8.0",
  8522. "symfony/console": "^6 || ^7",
  8523. "symfony/filesystem": "^6 || ^7",
  8524. "symfony/yaml": "^6 || ^7"
  8525. },
  8526. "require-dev": {
  8527. "php-coveralls/php-coveralls": "^2",
  8528. "phpunit/phpunit": "^9",
  8529. "squizlabs/php_codesniffer": "^3.0"
  8530. },
  8531. "bin": [
  8532. "bin/yaml-cli"
  8533. ],
  8534. "type": "library",
  8535. "extra": {
  8536. "branch-alias": {
  8537. "dev-master": "3.x-dev"
  8538. }
  8539. },
  8540. "autoload": {
  8541. "psr-4": {
  8542. "Grasmash\\YamlCli\\": "src/"
  8543. }
  8544. },
  8545. "notification-url": "https://packagist.org/downloads/",
  8546. "license": [
  8547. "MIT"
  8548. ],
  8549. "authors": [
  8550. {
  8551. "name": "Matthew Grasmick"
  8552. }
  8553. ],
  8554. "description": "A command line tool for reading and manipulating yaml files.",
  8555. "support": {
  8556. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8557. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8558. },
  8559. "time": "2024-04-23T02:10:57+00:00"
  8560. },
  8561. {
  8562. "name": "guzzlehttp/guzzle",
  8563. "version": "7.9.3",
  8564. "source": {
  8565. "type": "git",
  8566. "url": "https://github.com/guzzle/guzzle.git",
  8567. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  8568. },
  8569. "dist": {
  8570. "type": "zip",
  8571. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8572. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8573. "shasum": ""
  8574. },
  8575. "require": {
  8576. "ext-json": "*",
  8577. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  8578. "guzzlehttp/psr7": "^2.7.0",
  8579. "php": "^7.2.5 || ^8.0",
  8580. "psr/http-client": "^1.0",
  8581. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8582. },
  8583. "provide": {
  8584. "psr/http-client-implementation": "1.0"
  8585. },
  8586. "require-dev": {
  8587. "bamarni/composer-bin-plugin": "^1.8.2",
  8588. "ext-curl": "*",
  8589. "guzzle/client-integration-tests": "3.0.2",
  8590. "php-http/message-factory": "^1.1",
  8591. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8592. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8593. },
  8594. "suggest": {
  8595. "ext-curl": "Required for CURL handler support",
  8596. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8597. "psr/log": "Required for using the Log middleware"
  8598. },
  8599. "type": "library",
  8600. "extra": {
  8601. "bamarni-bin": {
  8602. "bin-links": true,
  8603. "forward-command": false
  8604. }
  8605. },
  8606. "autoload": {
  8607. "files": [
  8608. "src/functions_include.php"
  8609. ],
  8610. "psr-4": {
  8611. "GuzzleHttp\\": "src/"
  8612. }
  8613. },
  8614. "notification-url": "https://packagist.org/downloads/",
  8615. "license": [
  8616. "MIT"
  8617. ],
  8618. "authors": [
  8619. {
  8620. "name": "Graham Campbell",
  8621. "email": "hello@gjcampbell.co.uk",
  8622. "homepage": "https://github.com/GrahamCampbell"
  8623. },
  8624. {
  8625. "name": "Michael Dowling",
  8626. "email": "mtdowling@gmail.com",
  8627. "homepage": "https://github.com/mtdowling"
  8628. },
  8629. {
  8630. "name": "Jeremy Lindblom",
  8631. "email": "jeremeamia@gmail.com",
  8632. "homepage": "https://github.com/jeremeamia"
  8633. },
  8634. {
  8635. "name": "George Mponos",
  8636. "email": "gmponos@gmail.com",
  8637. "homepage": "https://github.com/gmponos"
  8638. },
  8639. {
  8640. "name": "Tobias Nyholm",
  8641. "email": "tobias.nyholm@gmail.com",
  8642. "homepage": "https://github.com/Nyholm"
  8643. },
  8644. {
  8645. "name": "Márk Sági-Kazár",
  8646. "email": "mark.sagikazar@gmail.com",
  8647. "homepage": "https://github.com/sagikazarmark"
  8648. },
  8649. {
  8650. "name": "Tobias Schultze",
  8651. "email": "webmaster@tubo-world.de",
  8652. "homepage": "https://github.com/Tobion"
  8653. }
  8654. ],
  8655. "description": "Guzzle is a PHP HTTP client library",
  8656. "keywords": [
  8657. "client",
  8658. "curl",
  8659. "framework",
  8660. "http",
  8661. "http client",
  8662. "psr-18",
  8663. "psr-7",
  8664. "rest",
  8665. "web service"
  8666. ],
  8667. "support": {
  8668. "issues": "https://github.com/guzzle/guzzle/issues",
  8669. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  8670. },
  8671. "funding": [
  8672. {
  8673. "url": "https://github.com/GrahamCampbell",
  8674. "type": "github"
  8675. },
  8676. {
  8677. "url": "https://github.com/Nyholm",
  8678. "type": "github"
  8679. },
  8680. {
  8681. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8682. "type": "tidelift"
  8683. }
  8684. ],
  8685. "time": "2025-03-27T13:37:11+00:00"
  8686. },
  8687. {
  8688. "name": "guzzlehttp/promises",
  8689. "version": "2.2.0",
  8690. "source": {
  8691. "type": "git",
  8692. "url": "https://github.com/guzzle/promises.git",
  8693. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  8694. },
  8695. "dist": {
  8696. "type": "zip",
  8697. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  8698. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  8699. "shasum": ""
  8700. },
  8701. "require": {
  8702. "php": "^7.2.5 || ^8.0"
  8703. },
  8704. "require-dev": {
  8705. "bamarni/composer-bin-plugin": "^1.8.2",
  8706. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  8707. },
  8708. "type": "library",
  8709. "extra": {
  8710. "bamarni-bin": {
  8711. "bin-links": true,
  8712. "forward-command": false
  8713. }
  8714. },
  8715. "autoload": {
  8716. "psr-4": {
  8717. "GuzzleHttp\\Promise\\": "src/"
  8718. }
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "MIT"
  8723. ],
  8724. "authors": [
  8725. {
  8726. "name": "Graham Campbell",
  8727. "email": "hello@gjcampbell.co.uk",
  8728. "homepage": "https://github.com/GrahamCampbell"
  8729. },
  8730. {
  8731. "name": "Michael Dowling",
  8732. "email": "mtdowling@gmail.com",
  8733. "homepage": "https://github.com/mtdowling"
  8734. },
  8735. {
  8736. "name": "Tobias Nyholm",
  8737. "email": "tobias.nyholm@gmail.com",
  8738. "homepage": "https://github.com/Nyholm"
  8739. },
  8740. {
  8741. "name": "Tobias Schultze",
  8742. "email": "webmaster@tubo-world.de",
  8743. "homepage": "https://github.com/Tobion"
  8744. }
  8745. ],
  8746. "description": "Guzzle promises library",
  8747. "keywords": [
  8748. "promise"
  8749. ],
  8750. "support": {
  8751. "issues": "https://github.com/guzzle/promises/issues",
  8752. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  8753. },
  8754. "funding": [
  8755. {
  8756. "url": "https://github.com/GrahamCampbell",
  8757. "type": "github"
  8758. },
  8759. {
  8760. "url": "https://github.com/Nyholm",
  8761. "type": "github"
  8762. },
  8763. {
  8764. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8765. "type": "tidelift"
  8766. }
  8767. ],
  8768. "time": "2025-03-27T13:27:01+00:00"
  8769. },
  8770. {
  8771. "name": "guzzlehttp/psr7",
  8772. "version": "2.7.1",
  8773. "source": {
  8774. "type": "git",
  8775. "url": "https://github.com/guzzle/psr7.git",
  8776. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  8777. },
  8778. "dist": {
  8779. "type": "zip",
  8780. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  8781. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  8782. "shasum": ""
  8783. },
  8784. "require": {
  8785. "php": "^7.2.5 || ^8.0",
  8786. "psr/http-factory": "^1.0",
  8787. "psr/http-message": "^1.1 || ^2.0",
  8788. "ralouphie/getallheaders": "^3.0"
  8789. },
  8790. "provide": {
  8791. "psr/http-factory-implementation": "1.0",
  8792. "psr/http-message-implementation": "1.0"
  8793. },
  8794. "require-dev": {
  8795. "bamarni/composer-bin-plugin": "^1.8.2",
  8796. "http-interop/http-factory-tests": "0.9.0",
  8797. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  8798. },
  8799. "suggest": {
  8800. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8801. },
  8802. "type": "library",
  8803. "extra": {
  8804. "bamarni-bin": {
  8805. "bin-links": true,
  8806. "forward-command": false
  8807. }
  8808. },
  8809. "autoload": {
  8810. "psr-4": {
  8811. "GuzzleHttp\\Psr7\\": "src/"
  8812. }
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "MIT"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Graham Campbell",
  8821. "email": "hello@gjcampbell.co.uk",
  8822. "homepage": "https://github.com/GrahamCampbell"
  8823. },
  8824. {
  8825. "name": "Michael Dowling",
  8826. "email": "mtdowling@gmail.com",
  8827. "homepage": "https://github.com/mtdowling"
  8828. },
  8829. {
  8830. "name": "George Mponos",
  8831. "email": "gmponos@gmail.com",
  8832. "homepage": "https://github.com/gmponos"
  8833. },
  8834. {
  8835. "name": "Tobias Nyholm",
  8836. "email": "tobias.nyholm@gmail.com",
  8837. "homepage": "https://github.com/Nyholm"
  8838. },
  8839. {
  8840. "name": "Márk Sági-Kazár",
  8841. "email": "mark.sagikazar@gmail.com",
  8842. "homepage": "https://github.com/sagikazarmark"
  8843. },
  8844. {
  8845. "name": "Tobias Schultze",
  8846. "email": "webmaster@tubo-world.de",
  8847. "homepage": "https://github.com/Tobion"
  8848. },
  8849. {
  8850. "name": "Márk Sági-Kazár",
  8851. "email": "mark.sagikazar@gmail.com",
  8852. "homepage": "https://sagikazarmark.hu"
  8853. }
  8854. ],
  8855. "description": "PSR-7 message implementation that also provides common utility methods",
  8856. "keywords": [
  8857. "http",
  8858. "message",
  8859. "psr-7",
  8860. "request",
  8861. "response",
  8862. "stream",
  8863. "uri",
  8864. "url"
  8865. ],
  8866. "support": {
  8867. "issues": "https://github.com/guzzle/psr7/issues",
  8868. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  8869. },
  8870. "funding": [
  8871. {
  8872. "url": "https://github.com/GrahamCampbell",
  8873. "type": "github"
  8874. },
  8875. {
  8876. "url": "https://github.com/Nyholm",
  8877. "type": "github"
  8878. },
  8879. {
  8880. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8881. "type": "tidelift"
  8882. }
  8883. ],
  8884. "time": "2025-03-27T12:30:47+00:00"
  8885. },
  8886. {
  8887. "name": "itamair/geophp",
  8888. "version": "1.7",
  8889. "source": {
  8890. "type": "git",
  8891. "url": "https://github.com/itamair/geoPHP.git",
  8892. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956"
  8893. },
  8894. "dist": {
  8895. "type": "zip",
  8896. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8897. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8898. "shasum": ""
  8899. },
  8900. "require-dev": {
  8901. "phpunit/phpunit": "4.1.* || 9.5.*"
  8902. },
  8903. "type": "library",
  8904. "autoload": {
  8905. "classmap": [
  8906. "geoPHP.inc"
  8907. ]
  8908. },
  8909. "notification-url": "https://packagist.org/downloads/",
  8910. "license": [
  8911. "GPL-2.0+"
  8912. ],
  8913. "authors": [
  8914. {
  8915. "name": "Italo Mairo",
  8916. "homepage": "https://www.linkedin.com/in/italomairo/",
  8917. "role": "Maintanier of this Library Repo"
  8918. },
  8919. {
  8920. "name": "Patrick Hayes",
  8921. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8922. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8923. }
  8924. ],
  8925. "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.",
  8926. "homepage": "https://github.com/itamair/geoPHP",
  8927. "support": {
  8928. "source": "https://github.com/itamair/geoPHP/tree/1.7"
  8929. },
  8930. "time": "2025-05-31T05:12:53+00:00"
  8931. },
  8932. {
  8933. "name": "kint-php/kint",
  8934. "version": "3.3",
  8935. "source": {
  8936. "type": "git",
  8937. "url": "https://github.com/kint-php/kint.git",
  8938. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8939. },
  8940. "dist": {
  8941. "type": "zip",
  8942. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8943. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8944. "shasum": ""
  8945. },
  8946. "require": {
  8947. "php": ">=5.3.6"
  8948. },
  8949. "require-dev": {
  8950. "friendsofphp/php-cs-fixer": "^2.0",
  8951. "phpunit/phpunit": "^4.0",
  8952. "seld/phar-utils": "^1.0",
  8953. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8954. "vimeo/psalm": "^3.0"
  8955. },
  8956. "suggest": {
  8957. "ext-ctype": "Simple data type tests",
  8958. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8959. "ext-mbstring": "Provides string encoding detection",
  8960. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8961. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8962. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8963. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8964. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8965. },
  8966. "type": "library",
  8967. "autoload": {
  8968. "files": [
  8969. "init.php"
  8970. ],
  8971. "psr-4": {
  8972. "Kint\\": "src/"
  8973. }
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "MIT"
  8978. ],
  8979. "authors": [
  8980. {
  8981. "name": "Jonathan Vollebregt",
  8982. "homepage": "https://github.com/jnvsor"
  8983. },
  8984. {
  8985. "name": "Rokas Šleinius",
  8986. "homepage": "https://github.com/raveren"
  8987. },
  8988. {
  8989. "name": "Contributors",
  8990. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8991. }
  8992. ],
  8993. "description": "Kint - debugging tool for PHP developers",
  8994. "homepage": "https://kint-php.github.io/kint/",
  8995. "keywords": [
  8996. "debug",
  8997. "kint",
  8998. "php"
  8999. ],
  9000. "support": {
  9001. "issues": "https://github.com/kint-php/kint/issues",
  9002. "source": "https://github.com/kint-php/kint/tree/master"
  9003. },
  9004. "time": "2019-10-17T18:05:24+00:00"
  9005. },
  9006. {
  9007. "name": "league/container",
  9008. "version": "4.2.5",
  9009. "source": {
  9010. "type": "git",
  9011. "url": "https://github.com/thephpleague/container.git",
  9012. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  9013. },
  9014. "dist": {
  9015. "type": "zip",
  9016. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9017. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9018. "shasum": ""
  9019. },
  9020. "require": {
  9021. "php": "^7.2 || ^8.0",
  9022. "psr/container": "^1.1 || ^2.0"
  9023. },
  9024. "provide": {
  9025. "psr/container-implementation": "^1.0"
  9026. },
  9027. "replace": {
  9028. "orno/di": "~2.0"
  9029. },
  9030. "require-dev": {
  9031. "nette/php-generator": "^3.4",
  9032. "nikic/php-parser": "^4.10",
  9033. "phpstan/phpstan": "^0.12.47",
  9034. "phpunit/phpunit": "^8.5.17",
  9035. "roave/security-advisories": "dev-latest",
  9036. "scrutinizer/ocular": "^1.8",
  9037. "squizlabs/php_codesniffer": "^3.6"
  9038. },
  9039. "type": "library",
  9040. "extra": {
  9041. "branch-alias": {
  9042. "dev-1.x": "1.x-dev",
  9043. "dev-2.x": "2.x-dev",
  9044. "dev-3.x": "3.x-dev",
  9045. "dev-4.x": "4.x-dev",
  9046. "dev-master": "4.x-dev"
  9047. }
  9048. },
  9049. "autoload": {
  9050. "psr-4": {
  9051. "League\\Container\\": "src"
  9052. }
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "MIT"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Phil Bennett",
  9061. "email": "mail@philbennett.co.uk",
  9062. "role": "Developer"
  9063. }
  9064. ],
  9065. "description": "A fast and intuitive dependency injection container.",
  9066. "homepage": "https://github.com/thephpleague/container",
  9067. "keywords": [
  9068. "container",
  9069. "dependency",
  9070. "di",
  9071. "injection",
  9072. "league",
  9073. "provider",
  9074. "service"
  9075. ],
  9076. "support": {
  9077. "issues": "https://github.com/thephpleague/container/issues",
  9078. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9079. },
  9080. "funding": [
  9081. {
  9082. "url": "https://github.com/philipobenito",
  9083. "type": "github"
  9084. }
  9085. ],
  9086. "time": "2025-05-20T12:55:37+00:00"
  9087. },
  9088. {
  9089. "name": "masterminds/html5",
  9090. "version": "2.9.0",
  9091. "source": {
  9092. "type": "git",
  9093. "url": "https://github.com/Masterminds/html5-php.git",
  9094. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9095. },
  9096. "dist": {
  9097. "type": "zip",
  9098. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9099. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9100. "shasum": ""
  9101. },
  9102. "require": {
  9103. "ext-dom": "*",
  9104. "php": ">=5.3.0"
  9105. },
  9106. "require-dev": {
  9107. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9108. },
  9109. "type": "library",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-master": "2.7-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "psr-4": {
  9117. "Masterminds\\": "src"
  9118. }
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "MIT"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Matt Butcher",
  9127. "email": "technosophos@gmail.com"
  9128. },
  9129. {
  9130. "name": "Matt Farina",
  9131. "email": "matt@mattfarina.com"
  9132. },
  9133. {
  9134. "name": "Asmir Mustafic",
  9135. "email": "goetas@gmail.com"
  9136. }
  9137. ],
  9138. "description": "An HTML5 parser and serializer.",
  9139. "homepage": "http://masterminds.github.io/html5-php",
  9140. "keywords": [
  9141. "HTML5",
  9142. "dom",
  9143. "html",
  9144. "parser",
  9145. "querypath",
  9146. "serializer",
  9147. "xml"
  9148. ],
  9149. "support": {
  9150. "issues": "https://github.com/Masterminds/html5-php/issues",
  9151. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9152. },
  9153. "time": "2024-03-31T07:05:07+00:00"
  9154. },
  9155. {
  9156. "name": "mck89/peast",
  9157. "version": "v1.17.2",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/mck89/peast.git",
  9161. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea",
  9166. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "ext-mbstring": "*",
  9171. "php": ">=5.4.0"
  9172. },
  9173. "require-dev": {
  9174. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9175. },
  9176. "type": "library",
  9177. "extra": {
  9178. "branch-alias": {
  9179. "dev-master": "1.17.2-dev"
  9180. }
  9181. },
  9182. "autoload": {
  9183. "psr-4": {
  9184. "Peast\\": "lib/Peast/"
  9185. }
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "BSD-3-Clause"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Marco Marchiò",
  9194. "email": "marco.mm89@gmail.com"
  9195. }
  9196. ],
  9197. "description": "Peast is PHP library that generates AST for JavaScript code",
  9198. "support": {
  9199. "issues": "https://github.com/mck89/peast/issues",
  9200. "source": "https://github.com/mck89/peast/tree/v1.17.2"
  9201. },
  9202. "time": "2025-07-01T09:30:45+00:00"
  9203. },
  9204. {
  9205. "name": "mglaman/phpstan-drupal",
  9206. "version": "2.0.7",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9210. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e",
  9215. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "php": "^8.1",
  9220. "phpstan/phpstan": "^2.1",
  9221. "phpstan/phpstan-deprecation-rules": "^2.0",
  9222. "symfony/finder": "^6.2 || ^7.0",
  9223. "symfony/yaml": "^6.2 || ^7.0",
  9224. "webflo/drupal-finder": "^1.3.1"
  9225. },
  9226. "require-dev": {
  9227. "behat/mink": "^1.10",
  9228. "composer/installers": "^1.9",
  9229. "drupal/core-recommended": "^10",
  9230. "drush/drush": "^11 || ^12 || ^13",
  9231. "phpstan/extension-installer": "^1.4.3",
  9232. "phpstan/phpstan-strict-rules": "^2.0",
  9233. "phpunit/phpunit": "^9 || ^10 || ^11",
  9234. "slevomat/coding-standard": "^8.6",
  9235. "squizlabs/php_codesniffer": "^3.7",
  9236. "symfony/phpunit-bridge": "^6.2 || ^7.0"
  9237. },
  9238. "suggest": {
  9239. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9240. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9241. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9242. },
  9243. "type": "phpstan-extension",
  9244. "extra": {
  9245. "phpstan": {
  9246. "includes": [
  9247. "extension.neon",
  9248. "rules.neon"
  9249. ]
  9250. },
  9251. "installer-paths": {
  9252. "tests/fixtures/drupal/core": [
  9253. "type:drupal-core"
  9254. ],
  9255. "tests/fixtures/drupal/libraries/{$name}": [
  9256. "type:drupal-library"
  9257. ],
  9258. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9259. "type:drupal-theme"
  9260. ],
  9261. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9262. "type:drupal-module"
  9263. ],
  9264. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9265. "type:drupal-profile"
  9266. ]
  9267. }
  9268. },
  9269. "autoload": {
  9270. "psr-4": {
  9271. "mglaman\\PHPStanDrupal\\": "src/"
  9272. }
  9273. },
  9274. "notification-url": "https://packagist.org/downloads/",
  9275. "license": [
  9276. "MIT"
  9277. ],
  9278. "authors": [
  9279. {
  9280. "name": "Matt Glaman",
  9281. "email": "nmd.matt@gmail.com"
  9282. }
  9283. ],
  9284. "description": "Drupal extension and rules for PHPStan",
  9285. "support": {
  9286. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9287. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.7"
  9288. },
  9289. "funding": [
  9290. {
  9291. "url": "https://github.com/mglaman",
  9292. "type": "github"
  9293. },
  9294. {
  9295. "url": "https://opencollective.com/phpstan-drupal",
  9296. "type": "open_collective"
  9297. },
  9298. {
  9299. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9300. "type": "tidelift"
  9301. }
  9302. ],
  9303. "time": "2025-05-22T18:06:14+00:00"
  9304. },
  9305. {
  9306. "name": "nikic/php-parser",
  9307. "version": "v5.5.0",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/nikic/PHP-Parser.git",
  9311. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  9316. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "ext-ctype": "*",
  9321. "ext-json": "*",
  9322. "ext-tokenizer": "*",
  9323. "php": ">=7.4"
  9324. },
  9325. "require-dev": {
  9326. "ircmaxell/php-yacc": "^0.0.7",
  9327. "phpunit/phpunit": "^9.0"
  9328. },
  9329. "bin": [
  9330. "bin/php-parse"
  9331. ],
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "5.0-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "PhpParser\\": "lib/PhpParser"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Nikita Popov"
  9350. }
  9351. ],
  9352. "description": "A PHP parser written in PHP",
  9353. "keywords": [
  9354. "parser",
  9355. "php"
  9356. ],
  9357. "support": {
  9358. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9359. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  9360. },
  9361. "time": "2025-05-31T08:24:38+00:00"
  9362. },
  9363. {
  9364. "name": "pear/archive_tar",
  9365. "version": "1.5.0",
  9366. "source": {
  9367. "type": "git",
  9368. "url": "https://github.com/pear/Archive_Tar.git",
  9369. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  9370. },
  9371. "dist": {
  9372. "type": "zip",
  9373. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  9374. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  9375. "shasum": ""
  9376. },
  9377. "require": {
  9378. "pear/pear-core-minimal": "^1.10.0alpha2",
  9379. "php": ">=5.2.0"
  9380. },
  9381. "require-dev": {
  9382. "phpunit/phpunit": "*"
  9383. },
  9384. "suggest": {
  9385. "ext-bz2": "Bz2 compression support.",
  9386. "ext-xz": "Lzma2 compression support.",
  9387. "ext-zlib": "Gzip compression support."
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "branch-alias": {
  9392. "dev-master": "1.4.x-dev"
  9393. }
  9394. },
  9395. "autoload": {
  9396. "psr-0": {
  9397. "Archive_Tar": ""
  9398. }
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "include-path": [
  9402. "./"
  9403. ],
  9404. "license": [
  9405. "BSD-2-Clause"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Vincent Blavet",
  9410. "email": "vincent@phpconcept.net"
  9411. },
  9412. {
  9413. "name": "Greg Beaver",
  9414. "email": "greg@chiaraquartet.net"
  9415. },
  9416. {
  9417. "name": "Michiel Rook",
  9418. "email": "mrook@php.net"
  9419. }
  9420. ],
  9421. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9422. "homepage": "https://github.com/pear/Archive_Tar",
  9423. "keywords": [
  9424. "archive",
  9425. "tar"
  9426. ],
  9427. "support": {
  9428. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9429. "source": "https://github.com/pear/Archive_Tar"
  9430. },
  9431. "time": "2024-03-16T16:21:40+00:00"
  9432. },
  9433. {
  9434. "name": "pear/console_getopt",
  9435. "version": "v1.4.3",
  9436. "source": {
  9437. "type": "git",
  9438. "url": "https://github.com/pear/Console_Getopt.git",
  9439. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9440. },
  9441. "dist": {
  9442. "type": "zip",
  9443. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9444. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9445. "shasum": ""
  9446. },
  9447. "type": "library",
  9448. "autoload": {
  9449. "psr-0": {
  9450. "Console": "./"
  9451. }
  9452. },
  9453. "notification-url": "https://packagist.org/downloads/",
  9454. "include-path": [
  9455. "./"
  9456. ],
  9457. "license": [
  9458. "BSD-2-Clause"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Andrei Zmievski",
  9463. "email": "andrei@php.net",
  9464. "role": "Lead"
  9465. },
  9466. {
  9467. "name": "Stig Bakken",
  9468. "email": "stig@php.net",
  9469. "role": "Developer"
  9470. },
  9471. {
  9472. "name": "Greg Beaver",
  9473. "email": "cellog@php.net",
  9474. "role": "Helper"
  9475. }
  9476. ],
  9477. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9478. "support": {
  9479. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9480. "source": "https://github.com/pear/Console_Getopt"
  9481. },
  9482. "time": "2019-11-20T18:27:48+00:00"
  9483. },
  9484. {
  9485. "name": "pear/pear-core-minimal",
  9486. "version": "v1.10.16",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/pear/pear-core-minimal.git",
  9490. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9495. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "pear/console_getopt": "~1.4",
  9500. "pear/pear_exception": "~1.0",
  9501. "php": ">=5.4"
  9502. },
  9503. "replace": {
  9504. "rsky/pear-core-min": "self.version"
  9505. },
  9506. "type": "library",
  9507. "autoload": {
  9508. "classmap": [
  9509. "src/"
  9510. ]
  9511. },
  9512. "notification-url": "https://packagist.org/downloads/",
  9513. "include-path": [
  9514. "src/"
  9515. ],
  9516. "license": [
  9517. "BSD-3-Clause"
  9518. ],
  9519. "authors": [
  9520. {
  9521. "name": "Christian Weiske",
  9522. "email": "cweiske@php.net",
  9523. "role": "Lead"
  9524. }
  9525. ],
  9526. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9527. "support": {
  9528. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9529. "source": "https://github.com/pear/pear-core-minimal"
  9530. },
  9531. "time": "2024-11-24T22:27:58+00:00"
  9532. },
  9533. {
  9534. "name": "pear/pear_exception",
  9535. "version": "v1.0.2",
  9536. "source": {
  9537. "type": "git",
  9538. "url": "https://github.com/pear/PEAR_Exception.git",
  9539. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9540. },
  9541. "dist": {
  9542. "type": "zip",
  9543. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9544. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9545. "shasum": ""
  9546. },
  9547. "require": {
  9548. "php": ">=5.2.0"
  9549. },
  9550. "require-dev": {
  9551. "phpunit/phpunit": "<9"
  9552. },
  9553. "type": "class",
  9554. "extra": {
  9555. "branch-alias": {
  9556. "dev-master": "1.0.x-dev"
  9557. }
  9558. },
  9559. "autoload": {
  9560. "classmap": [
  9561. "PEAR/"
  9562. ]
  9563. },
  9564. "notification-url": "https://packagist.org/downloads/",
  9565. "include-path": [
  9566. "."
  9567. ],
  9568. "license": [
  9569. "BSD-2-Clause"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Helgi Thormar",
  9574. "email": "dufuz@php.net"
  9575. },
  9576. {
  9577. "name": "Greg Beaver",
  9578. "email": "cellog@php.net"
  9579. }
  9580. ],
  9581. "description": "The PEAR Exception base class.",
  9582. "homepage": "https://github.com/pear/PEAR_Exception",
  9583. "keywords": [
  9584. "exception"
  9585. ],
  9586. "support": {
  9587. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9588. "source": "https://github.com/pear/PEAR_Exception"
  9589. },
  9590. "time": "2021-03-21T15:43:46+00:00"
  9591. },
  9592. {
  9593. "name": "phootwork/collection",
  9594. "version": "v3.2.3",
  9595. "source": {
  9596. "type": "git",
  9597. "url": "https://github.com/phootwork/collection.git",
  9598. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9599. },
  9600. "dist": {
  9601. "type": "zip",
  9602. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9603. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9604. "shasum": ""
  9605. },
  9606. "require": {
  9607. "phootwork/lang": "^3.0",
  9608. "php": ">=8.0"
  9609. },
  9610. "type": "library",
  9611. "autoload": {
  9612. "psr-4": {
  9613. "phootwork\\collection\\": ""
  9614. }
  9615. },
  9616. "notification-url": "https://packagist.org/downloads/",
  9617. "license": [
  9618. "MIT"
  9619. ],
  9620. "authors": [
  9621. {
  9622. "name": "Thomas Gossmann",
  9623. "homepage": "http://gos.si"
  9624. }
  9625. ],
  9626. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9627. "homepage": "https://phootwork.github.io/collection/",
  9628. "keywords": [
  9629. "Array object",
  9630. "Text object",
  9631. "collection",
  9632. "collections",
  9633. "json",
  9634. "list",
  9635. "map",
  9636. "queue",
  9637. "set",
  9638. "stack",
  9639. "xml"
  9640. ],
  9641. "support": {
  9642. "issues": "https://github.com/phootwork/phootwork/issues",
  9643. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9644. },
  9645. "time": "2022-08-27T12:51:24+00:00"
  9646. },
  9647. {
  9648. "name": "phootwork/lang",
  9649. "version": "v3.2.3",
  9650. "source": {
  9651. "type": "git",
  9652. "url": "https://github.com/phootwork/lang.git",
  9653. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9654. },
  9655. "dist": {
  9656. "type": "zip",
  9657. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9658. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9659. "shasum": ""
  9660. },
  9661. "require": {
  9662. "php": ">=8.0",
  9663. "symfony/polyfill-mbstring": "^1.12",
  9664. "symfony/polyfill-php81": "^1.22"
  9665. },
  9666. "type": "library",
  9667. "autoload": {
  9668. "psr-4": {
  9669. "phootwork\\lang\\": ""
  9670. }
  9671. },
  9672. "notification-url": "https://packagist.org/downloads/",
  9673. "license": [
  9674. "MIT"
  9675. ],
  9676. "authors": [
  9677. {
  9678. "name": "Thomas Gossmann",
  9679. "homepage": "http://gos.si"
  9680. }
  9681. ],
  9682. "description": "Missing PHP language constructs",
  9683. "homepage": "https://phootwork.github.io/lang/",
  9684. "keywords": [
  9685. "array",
  9686. "comparator",
  9687. "comparison",
  9688. "string"
  9689. ],
  9690. "support": {
  9691. "issues": "https://github.com/phootwork/phootwork/issues",
  9692. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9693. },
  9694. "time": "2024-10-03T13:43:19+00:00"
  9695. },
  9696. {
  9697. "name": "php-http/discovery",
  9698. "version": "1.20.0",
  9699. "source": {
  9700. "type": "git",
  9701. "url": "https://github.com/php-http/discovery.git",
  9702. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9703. },
  9704. "dist": {
  9705. "type": "zip",
  9706. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9707. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9708. "shasum": ""
  9709. },
  9710. "require": {
  9711. "composer-plugin-api": "^1.0|^2.0",
  9712. "php": "^7.1 || ^8.0"
  9713. },
  9714. "conflict": {
  9715. "nyholm/psr7": "<1.0",
  9716. "zendframework/zend-diactoros": "*"
  9717. },
  9718. "provide": {
  9719. "php-http/async-client-implementation": "*",
  9720. "php-http/client-implementation": "*",
  9721. "psr/http-client-implementation": "*",
  9722. "psr/http-factory-implementation": "*",
  9723. "psr/http-message-implementation": "*"
  9724. },
  9725. "require-dev": {
  9726. "composer/composer": "^1.0.2|^2.0",
  9727. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9728. "php-http/httplug": "^1.0 || ^2.0",
  9729. "php-http/message-factory": "^1.0",
  9730. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9731. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9732. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9733. },
  9734. "type": "composer-plugin",
  9735. "extra": {
  9736. "class": "Http\\Discovery\\Composer\\Plugin",
  9737. "plugin-optional": true
  9738. },
  9739. "autoload": {
  9740. "psr-4": {
  9741. "Http\\Discovery\\": "src/"
  9742. },
  9743. "exclude-from-classmap": [
  9744. "src/Composer/Plugin.php"
  9745. ]
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "MIT"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Márk Sági-Kazár",
  9754. "email": "mark.sagikazar@gmail.com"
  9755. }
  9756. ],
  9757. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9758. "homepage": "http://php-http.org",
  9759. "keywords": [
  9760. "adapter",
  9761. "client",
  9762. "discovery",
  9763. "factory",
  9764. "http",
  9765. "message",
  9766. "psr17",
  9767. "psr7"
  9768. ],
  9769. "support": {
  9770. "issues": "https://github.com/php-http/discovery/issues",
  9771. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9772. },
  9773. "time": "2024-10-02T11:20:13+00:00"
  9774. },
  9775. {
  9776. "name": "php-http/guzzle7-adapter",
  9777. "version": "1.1.0",
  9778. "source": {
  9779. "type": "git",
  9780. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9781. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9782. },
  9783. "dist": {
  9784. "type": "zip",
  9785. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9786. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9787. "shasum": ""
  9788. },
  9789. "require": {
  9790. "guzzlehttp/guzzle": "^7.0",
  9791. "php": "^7.3 | ^8.0",
  9792. "php-http/httplug": "^2.0",
  9793. "psr/http-client": "^1.0"
  9794. },
  9795. "provide": {
  9796. "php-http/async-client-implementation": "1.0",
  9797. "php-http/client-implementation": "1.0",
  9798. "psr/http-client-implementation": "1.0"
  9799. },
  9800. "require-dev": {
  9801. "php-http/client-integration-tests": "^3.0",
  9802. "php-http/message-factory": "^1.1",
  9803. "phpspec/prophecy-phpunit": "^2.0",
  9804. "phpunit/phpunit": "^8.0|^9.3"
  9805. },
  9806. "type": "library",
  9807. "autoload": {
  9808. "psr-4": {
  9809. "Http\\Adapter\\Guzzle7\\": "src/"
  9810. }
  9811. },
  9812. "notification-url": "https://packagist.org/downloads/",
  9813. "license": [
  9814. "MIT"
  9815. ],
  9816. "authors": [
  9817. {
  9818. "name": "Tobias Nyholm",
  9819. "email": "tobias.nyholm@gmail.com"
  9820. }
  9821. ],
  9822. "description": "Guzzle 7 HTTP Adapter",
  9823. "homepage": "http://httplug.io",
  9824. "keywords": [
  9825. "Guzzle",
  9826. "http"
  9827. ],
  9828. "support": {
  9829. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9830. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9831. },
  9832. "time": "2024-11-26T11:14:36+00:00"
  9833. },
  9834. {
  9835. "name": "php-http/httplug",
  9836. "version": "2.4.1",
  9837. "source": {
  9838. "type": "git",
  9839. "url": "https://github.com/php-http/httplug.git",
  9840. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9841. },
  9842. "dist": {
  9843. "type": "zip",
  9844. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9845. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9846. "shasum": ""
  9847. },
  9848. "require": {
  9849. "php": "^7.1 || ^8.0",
  9850. "php-http/promise": "^1.1",
  9851. "psr/http-client": "^1.0",
  9852. "psr/http-message": "^1.0 || ^2.0"
  9853. },
  9854. "require-dev": {
  9855. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9856. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9857. },
  9858. "type": "library",
  9859. "autoload": {
  9860. "psr-4": {
  9861. "Http\\Client\\": "src/"
  9862. }
  9863. },
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "MIT"
  9867. ],
  9868. "authors": [
  9869. {
  9870. "name": "Eric GELOEN",
  9871. "email": "geloen.eric@gmail.com"
  9872. },
  9873. {
  9874. "name": "Márk Sági-Kazár",
  9875. "email": "mark.sagikazar@gmail.com",
  9876. "homepage": "https://sagikazarmark.hu"
  9877. }
  9878. ],
  9879. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9880. "homepage": "http://httplug.io",
  9881. "keywords": [
  9882. "client",
  9883. "http"
  9884. ],
  9885. "support": {
  9886. "issues": "https://github.com/php-http/httplug/issues",
  9887. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9888. },
  9889. "time": "2024-09-23T11:39:58+00:00"
  9890. },
  9891. {
  9892. "name": "php-http/message",
  9893. "version": "1.16.2",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/php-http/message.git",
  9897. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9902. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9903. "shasum": ""
  9904. },
  9905. "require": {
  9906. "clue/stream-filter": "^1.5",
  9907. "php": "^7.2 || ^8.0",
  9908. "psr/http-message": "^1.1 || ^2.0"
  9909. },
  9910. "provide": {
  9911. "php-http/message-factory-implementation": "1.0"
  9912. },
  9913. "require-dev": {
  9914. "ergebnis/composer-normalize": "^2.6",
  9915. "ext-zlib": "*",
  9916. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9917. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9918. "php-http/message-factory": "^1.0.2",
  9919. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9920. "slim/slim": "^3.0"
  9921. },
  9922. "suggest": {
  9923. "ext-zlib": "Used with compressor/decompressor streams",
  9924. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9925. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9926. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9927. },
  9928. "type": "library",
  9929. "autoload": {
  9930. "files": [
  9931. "src/filters.php"
  9932. ],
  9933. "psr-4": {
  9934. "Http\\Message\\": "src/"
  9935. }
  9936. },
  9937. "notification-url": "https://packagist.org/downloads/",
  9938. "license": [
  9939. "MIT"
  9940. ],
  9941. "authors": [
  9942. {
  9943. "name": "Márk Sági-Kazár",
  9944. "email": "mark.sagikazar@gmail.com"
  9945. }
  9946. ],
  9947. "description": "HTTP Message related tools",
  9948. "homepage": "http://php-http.org",
  9949. "keywords": [
  9950. "http",
  9951. "message",
  9952. "psr-7"
  9953. ],
  9954. "support": {
  9955. "issues": "https://github.com/php-http/message/issues",
  9956. "source": "https://github.com/php-http/message/tree/1.16.2"
  9957. },
  9958. "time": "2024-10-02T11:34:13+00:00"
  9959. },
  9960. {
  9961. "name": "php-http/promise",
  9962. "version": "1.3.1",
  9963. "source": {
  9964. "type": "git",
  9965. "url": "https://github.com/php-http/promise.git",
  9966. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9967. },
  9968. "dist": {
  9969. "type": "zip",
  9970. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9971. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9972. "shasum": ""
  9973. },
  9974. "require": {
  9975. "php": "^7.1 || ^8.0"
  9976. },
  9977. "require-dev": {
  9978. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9979. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9980. },
  9981. "type": "library",
  9982. "autoload": {
  9983. "psr-4": {
  9984. "Http\\Promise\\": "src/"
  9985. }
  9986. },
  9987. "notification-url": "https://packagist.org/downloads/",
  9988. "license": [
  9989. "MIT"
  9990. ],
  9991. "authors": [
  9992. {
  9993. "name": "Joel Wurtz",
  9994. "email": "joel.wurtz@gmail.com"
  9995. },
  9996. {
  9997. "name": "Márk Sági-Kazár",
  9998. "email": "mark.sagikazar@gmail.com"
  9999. }
  10000. ],
  10001. "description": "Promise used for asynchronous HTTP requests",
  10002. "homepage": "http://httplug.io",
  10003. "keywords": [
  10004. "promise"
  10005. ],
  10006. "support": {
  10007. "issues": "https://github.com/php-http/promise/issues",
  10008. "source": "https://github.com/php-http/promise/tree/1.3.1"
  10009. },
  10010. "time": "2024-03-15T13:55:21+00:00"
  10011. },
  10012. {
  10013. "name": "phpmailer/phpmailer",
  10014. "version": "v6.10.0",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/PHPMailer/PHPMailer.git",
  10018. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  10023. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "ext-ctype": "*",
  10028. "ext-filter": "*",
  10029. "ext-hash": "*",
  10030. "php": ">=5.5.0"
  10031. },
  10032. "require-dev": {
  10033. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  10034. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  10035. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  10036. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  10037. "phpcompatibility/php-compatibility": "^9.3.5",
  10038. "roave/security-advisories": "dev-latest",
  10039. "squizlabs/php_codesniffer": "^3.7.2",
  10040. "yoast/phpunit-polyfills": "^1.0.4"
  10041. },
  10042. "suggest": {
  10043. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  10044. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10045. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  10046. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  10047. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10048. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10049. "psr/log": "For optional PSR-3 debug logging",
  10050. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  10051. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  10052. },
  10053. "type": "library",
  10054. "autoload": {
  10055. "psr-4": {
  10056. "PHPMailer\\PHPMailer\\": "src/"
  10057. }
  10058. },
  10059. "notification-url": "https://packagist.org/downloads/",
  10060. "license": [
  10061. "LGPL-2.1-only"
  10062. ],
  10063. "authors": [
  10064. {
  10065. "name": "Marcus Bointon",
  10066. "email": "phpmailer@synchromedia.co.uk"
  10067. },
  10068. {
  10069. "name": "Jim Jagielski",
  10070. "email": "jimjag@gmail.com"
  10071. },
  10072. {
  10073. "name": "Andy Prevost",
  10074. "email": "codeworxtech@users.sourceforge.net"
  10075. },
  10076. {
  10077. "name": "Brent R. Matzelle"
  10078. }
  10079. ],
  10080. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10081. "support": {
  10082. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10083. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10084. },
  10085. "funding": [
  10086. {
  10087. "url": "https://github.com/Synchro",
  10088. "type": "github"
  10089. }
  10090. ],
  10091. "time": "2025-04-24T15:19:31+00:00"
  10092. },
  10093. {
  10094. "name": "phpowermove/docblock",
  10095. "version": "v4.0",
  10096. "source": {
  10097. "type": "git",
  10098. "url": "https://github.com/phpowermove/docblock.git",
  10099. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10100. },
  10101. "dist": {
  10102. "type": "zip",
  10103. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10104. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10105. "shasum": ""
  10106. },
  10107. "require": {
  10108. "phootwork/collection": "^3.0",
  10109. "phootwork/lang": "^3.0",
  10110. "php": ">=8.0"
  10111. },
  10112. "require-dev": {
  10113. "phootwork/php-cs-fixer-config": "^0.4",
  10114. "phpunit/phpunit": "^9.0",
  10115. "psalm/phar": "^4.3"
  10116. },
  10117. "type": "library",
  10118. "autoload": {
  10119. "psr-4": {
  10120. "phpowermove\\docblock\\": "src/"
  10121. }
  10122. },
  10123. "notification-url": "https://packagist.org/downloads/",
  10124. "license": [
  10125. "MIT"
  10126. ],
  10127. "authors": [
  10128. {
  10129. "name": "Thomas Gossmann",
  10130. "homepage": "http://gos.si"
  10131. }
  10132. ],
  10133. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10134. "keywords": [
  10135. "docblock",
  10136. "generator",
  10137. "parser"
  10138. ],
  10139. "support": {
  10140. "issues": "https://github.com/phpowermove/docblock/issues",
  10141. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10142. },
  10143. "time": "2021-09-22T16:57:06+00:00"
  10144. },
  10145. {
  10146. "name": "phpstan/phpstan",
  10147. "version": "2.1.19",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/phpstan/phpstan.git",
  10151. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf",
  10156. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf",
  10157. "shasum": ""
  10158. },
  10159. "require": {
  10160. "php": "^7.4|^8.0"
  10161. },
  10162. "conflict": {
  10163. "phpstan/phpstan-shim": "*"
  10164. },
  10165. "bin": [
  10166. "phpstan",
  10167. "phpstan.phar"
  10168. ],
  10169. "type": "library",
  10170. "autoload": {
  10171. "files": [
  10172. "bootstrap.php"
  10173. ]
  10174. },
  10175. "notification-url": "https://packagist.org/downloads/",
  10176. "license": [
  10177. "MIT"
  10178. ],
  10179. "description": "PHPStan - PHP Static Analysis Tool",
  10180. "keywords": [
  10181. "dev",
  10182. "static analysis"
  10183. ],
  10184. "support": {
  10185. "docs": "https://phpstan.org/user-guide/getting-started",
  10186. "forum": "https://github.com/phpstan/phpstan/discussions",
  10187. "issues": "https://github.com/phpstan/phpstan/issues",
  10188. "security": "https://github.com/phpstan/phpstan/security/policy",
  10189. "source": "https://github.com/phpstan/phpstan-src"
  10190. },
  10191. "funding": [
  10192. {
  10193. "url": "https://github.com/ondrejmirtes",
  10194. "type": "github"
  10195. },
  10196. {
  10197. "url": "https://github.com/phpstan",
  10198. "type": "github"
  10199. }
  10200. ],
  10201. "time": "2025-07-21T19:58:24+00:00"
  10202. },
  10203. {
  10204. "name": "phpstan/phpstan-deprecation-rules",
  10205. "version": "2.0.3",
  10206. "source": {
  10207. "type": "git",
  10208. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10209. "reference": "468e02c9176891cc901143da118f09dc9505fc2f"
  10210. },
  10211. "dist": {
  10212. "type": "zip",
  10213. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f",
  10214. "reference": "468e02c9176891cc901143da118f09dc9505fc2f",
  10215. "shasum": ""
  10216. },
  10217. "require": {
  10218. "php": "^7.4 || ^8.0",
  10219. "phpstan/phpstan": "^2.1.15"
  10220. },
  10221. "require-dev": {
  10222. "php-parallel-lint/php-parallel-lint": "^1.2",
  10223. "phpstan/phpstan-phpunit": "^2.0",
  10224. "phpunit/phpunit": "^9.6"
  10225. },
  10226. "type": "phpstan-extension",
  10227. "extra": {
  10228. "phpstan": {
  10229. "includes": [
  10230. "rules.neon"
  10231. ]
  10232. }
  10233. },
  10234. "autoload": {
  10235. "psr-4": {
  10236. "PHPStan\\": "src/"
  10237. }
  10238. },
  10239. "notification-url": "https://packagist.org/downloads/",
  10240. "license": [
  10241. "MIT"
  10242. ],
  10243. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10244. "support": {
  10245. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10246. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3"
  10247. },
  10248. "time": "2025-05-14T10:56:57+00:00"
  10249. },
  10250. {
  10251. "name": "politsin/jquery-ui-touch-punch",
  10252. "version": "1.0",
  10253. "source": {
  10254. "type": "git",
  10255. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10256. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10257. },
  10258. "dist": {
  10259. "type": "zip",
  10260. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10261. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10262. "shasum": ""
  10263. },
  10264. "type": "drupal-library",
  10265. "notification-url": "https://packagist.org/downloads/",
  10266. "license": [
  10267. "MIT"
  10268. ],
  10269. "authors": [
  10270. {
  10271. "name": "Dave Furfero",
  10272. "email": "furf@furf.com"
  10273. }
  10274. ],
  10275. "description": "Extension to jQuery UI for mobile touch event support.",
  10276. "homepage": "http://touchpunch.furf.com/",
  10277. "keywords": [
  10278. "gestures",
  10279. "mobile",
  10280. "touch"
  10281. ],
  10282. "support": {
  10283. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10284. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10285. },
  10286. "time": "2020-12-15T10:26:18+00:00"
  10287. },
  10288. {
  10289. "name": "psr/cache",
  10290. "version": "3.0.0",
  10291. "source": {
  10292. "type": "git",
  10293. "url": "https://github.com/php-fig/cache.git",
  10294. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10295. },
  10296. "dist": {
  10297. "type": "zip",
  10298. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10299. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10300. "shasum": ""
  10301. },
  10302. "require": {
  10303. "php": ">=8.0.0"
  10304. },
  10305. "type": "library",
  10306. "extra": {
  10307. "branch-alias": {
  10308. "dev-master": "1.0.x-dev"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "psr-4": {
  10313. "Psr\\Cache\\": "src/"
  10314. }
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "MIT"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "PHP-FIG",
  10323. "homepage": "https://www.php-fig.org/"
  10324. }
  10325. ],
  10326. "description": "Common interface for caching libraries",
  10327. "keywords": [
  10328. "cache",
  10329. "psr",
  10330. "psr-6"
  10331. ],
  10332. "support": {
  10333. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10334. },
  10335. "time": "2021-02-03T23:26:27+00:00"
  10336. },
  10337. {
  10338. "name": "psr/container",
  10339. "version": "2.0.2",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/php-fig/container.git",
  10343. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10348. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10349. "shasum": ""
  10350. },
  10351. "require": {
  10352. "php": ">=7.4.0"
  10353. },
  10354. "type": "library",
  10355. "extra": {
  10356. "branch-alias": {
  10357. "dev-master": "2.0.x-dev"
  10358. }
  10359. },
  10360. "autoload": {
  10361. "psr-4": {
  10362. "Psr\\Container\\": "src/"
  10363. }
  10364. },
  10365. "notification-url": "https://packagist.org/downloads/",
  10366. "license": [
  10367. "MIT"
  10368. ],
  10369. "authors": [
  10370. {
  10371. "name": "PHP-FIG",
  10372. "homepage": "https://www.php-fig.org/"
  10373. }
  10374. ],
  10375. "description": "Common Container Interface (PHP FIG PSR-11)",
  10376. "homepage": "https://github.com/php-fig/container",
  10377. "keywords": [
  10378. "PSR-11",
  10379. "container",
  10380. "container-interface",
  10381. "container-interop",
  10382. "psr"
  10383. ],
  10384. "support": {
  10385. "issues": "https://github.com/php-fig/container/issues",
  10386. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10387. },
  10388. "time": "2021-11-05T16:47:00+00:00"
  10389. },
  10390. {
  10391. "name": "psr/event-dispatcher",
  10392. "version": "1.0.0",
  10393. "source": {
  10394. "type": "git",
  10395. "url": "https://github.com/php-fig/event-dispatcher.git",
  10396. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10397. },
  10398. "dist": {
  10399. "type": "zip",
  10400. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10401. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10402. "shasum": ""
  10403. },
  10404. "require": {
  10405. "php": ">=7.2.0"
  10406. },
  10407. "type": "library",
  10408. "extra": {
  10409. "branch-alias": {
  10410. "dev-master": "1.0.x-dev"
  10411. }
  10412. },
  10413. "autoload": {
  10414. "psr-4": {
  10415. "Psr\\EventDispatcher\\": "src/"
  10416. }
  10417. },
  10418. "notification-url": "https://packagist.org/downloads/",
  10419. "license": [
  10420. "MIT"
  10421. ],
  10422. "authors": [
  10423. {
  10424. "name": "PHP-FIG",
  10425. "homepage": "http://www.php-fig.org/"
  10426. }
  10427. ],
  10428. "description": "Standard interfaces for event handling.",
  10429. "keywords": [
  10430. "events",
  10431. "psr",
  10432. "psr-14"
  10433. ],
  10434. "support": {
  10435. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10436. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10437. },
  10438. "time": "2019-01-08T18:20:26+00:00"
  10439. },
  10440. {
  10441. "name": "psr/http-client",
  10442. "version": "1.0.3",
  10443. "source": {
  10444. "type": "git",
  10445. "url": "https://github.com/php-fig/http-client.git",
  10446. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10447. },
  10448. "dist": {
  10449. "type": "zip",
  10450. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10451. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10452. "shasum": ""
  10453. },
  10454. "require": {
  10455. "php": "^7.0 || ^8.0",
  10456. "psr/http-message": "^1.0 || ^2.0"
  10457. },
  10458. "type": "library",
  10459. "extra": {
  10460. "branch-alias": {
  10461. "dev-master": "1.0.x-dev"
  10462. }
  10463. },
  10464. "autoload": {
  10465. "psr-4": {
  10466. "Psr\\Http\\Client\\": "src/"
  10467. }
  10468. },
  10469. "notification-url": "https://packagist.org/downloads/",
  10470. "license": [
  10471. "MIT"
  10472. ],
  10473. "authors": [
  10474. {
  10475. "name": "PHP-FIG",
  10476. "homepage": "https://www.php-fig.org/"
  10477. }
  10478. ],
  10479. "description": "Common interface for HTTP clients",
  10480. "homepage": "https://github.com/php-fig/http-client",
  10481. "keywords": [
  10482. "http",
  10483. "http-client",
  10484. "psr",
  10485. "psr-18"
  10486. ],
  10487. "support": {
  10488. "source": "https://github.com/php-fig/http-client"
  10489. },
  10490. "time": "2023-09-23T14:17:50+00:00"
  10491. },
  10492. {
  10493. "name": "psr/http-factory",
  10494. "version": "1.1.0",
  10495. "source": {
  10496. "type": "git",
  10497. "url": "https://github.com/php-fig/http-factory.git",
  10498. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10499. },
  10500. "dist": {
  10501. "type": "zip",
  10502. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10503. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10504. "shasum": ""
  10505. },
  10506. "require": {
  10507. "php": ">=7.1",
  10508. "psr/http-message": "^1.0 || ^2.0"
  10509. },
  10510. "type": "library",
  10511. "extra": {
  10512. "branch-alias": {
  10513. "dev-master": "1.0.x-dev"
  10514. }
  10515. },
  10516. "autoload": {
  10517. "psr-4": {
  10518. "Psr\\Http\\Message\\": "src/"
  10519. }
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "MIT"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "PHP-FIG",
  10528. "homepage": "https://www.php-fig.org/"
  10529. }
  10530. ],
  10531. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10532. "keywords": [
  10533. "factory",
  10534. "http",
  10535. "message",
  10536. "psr",
  10537. "psr-17",
  10538. "psr-7",
  10539. "request",
  10540. "response"
  10541. ],
  10542. "support": {
  10543. "source": "https://github.com/php-fig/http-factory"
  10544. },
  10545. "time": "2024-04-15T12:06:14+00:00"
  10546. },
  10547. {
  10548. "name": "psr/http-message",
  10549. "version": "2.0",
  10550. "source": {
  10551. "type": "git",
  10552. "url": "https://github.com/php-fig/http-message.git",
  10553. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10554. },
  10555. "dist": {
  10556. "type": "zip",
  10557. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10558. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10559. "shasum": ""
  10560. },
  10561. "require": {
  10562. "php": "^7.2 || ^8.0"
  10563. },
  10564. "type": "library",
  10565. "extra": {
  10566. "branch-alias": {
  10567. "dev-master": "2.0.x-dev"
  10568. }
  10569. },
  10570. "autoload": {
  10571. "psr-4": {
  10572. "Psr\\Http\\Message\\": "src/"
  10573. }
  10574. },
  10575. "notification-url": "https://packagist.org/downloads/",
  10576. "license": [
  10577. "MIT"
  10578. ],
  10579. "authors": [
  10580. {
  10581. "name": "PHP-FIG",
  10582. "homepage": "https://www.php-fig.org/"
  10583. }
  10584. ],
  10585. "description": "Common interface for HTTP messages",
  10586. "homepage": "https://github.com/php-fig/http-message",
  10587. "keywords": [
  10588. "http",
  10589. "http-message",
  10590. "psr",
  10591. "psr-7",
  10592. "request",
  10593. "response"
  10594. ],
  10595. "support": {
  10596. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10597. },
  10598. "time": "2023-04-04T09:54:51+00:00"
  10599. },
  10600. {
  10601. "name": "psr/log",
  10602. "version": "3.0.2",
  10603. "source": {
  10604. "type": "git",
  10605. "url": "https://github.com/php-fig/log.git",
  10606. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10607. },
  10608. "dist": {
  10609. "type": "zip",
  10610. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10611. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10612. "shasum": ""
  10613. },
  10614. "require": {
  10615. "php": ">=8.0.0"
  10616. },
  10617. "type": "library",
  10618. "extra": {
  10619. "branch-alias": {
  10620. "dev-master": "3.x-dev"
  10621. }
  10622. },
  10623. "autoload": {
  10624. "psr-4": {
  10625. "Psr\\Log\\": "src"
  10626. }
  10627. },
  10628. "notification-url": "https://packagist.org/downloads/",
  10629. "license": [
  10630. "MIT"
  10631. ],
  10632. "authors": [
  10633. {
  10634. "name": "PHP-FIG",
  10635. "homepage": "https://www.php-fig.org/"
  10636. }
  10637. ],
  10638. "description": "Common interface for logging libraries",
  10639. "homepage": "https://github.com/php-fig/log",
  10640. "keywords": [
  10641. "log",
  10642. "psr",
  10643. "psr-3"
  10644. ],
  10645. "support": {
  10646. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10647. },
  10648. "time": "2024-09-11T13:17:53+00:00"
  10649. },
  10650. {
  10651. "name": "psy/psysh",
  10652. "version": "v0.12.9",
  10653. "source": {
  10654. "type": "git",
  10655. "url": "https://github.com/bobthecow/psysh.git",
  10656. "reference": "1b801844becfe648985372cb4b12ad6840245ace"
  10657. },
  10658. "dist": {
  10659. "type": "zip",
  10660. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
  10661. "reference": "1b801844becfe648985372cb4b12ad6840245ace",
  10662. "shasum": ""
  10663. },
  10664. "require": {
  10665. "ext-json": "*",
  10666. "ext-tokenizer": "*",
  10667. "nikic/php-parser": "^5.0 || ^4.0",
  10668. "php": "^8.0 || ^7.4",
  10669. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10670. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10671. },
  10672. "conflict": {
  10673. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10674. },
  10675. "require-dev": {
  10676. "bamarni/composer-bin-plugin": "^1.2"
  10677. },
  10678. "suggest": {
  10679. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10680. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10681. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10682. },
  10683. "bin": [
  10684. "bin/psysh"
  10685. ],
  10686. "type": "library",
  10687. "extra": {
  10688. "bamarni-bin": {
  10689. "bin-links": false,
  10690. "forward-command": false
  10691. },
  10692. "branch-alias": {
  10693. "dev-main": "0.12.x-dev"
  10694. }
  10695. },
  10696. "autoload": {
  10697. "files": [
  10698. "src/functions.php"
  10699. ],
  10700. "psr-4": {
  10701. "Psy\\": "src/"
  10702. }
  10703. },
  10704. "notification-url": "https://packagist.org/downloads/",
  10705. "license": [
  10706. "MIT"
  10707. ],
  10708. "authors": [
  10709. {
  10710. "name": "Justin Hileman",
  10711. "email": "justin@justinhileman.info",
  10712. "homepage": "http://justinhileman.com"
  10713. }
  10714. ],
  10715. "description": "An interactive shell for modern PHP.",
  10716. "homepage": "http://psysh.org",
  10717. "keywords": [
  10718. "REPL",
  10719. "console",
  10720. "interactive",
  10721. "shell"
  10722. ],
  10723. "support": {
  10724. "issues": "https://github.com/bobthecow/psysh/issues",
  10725. "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
  10726. },
  10727. "time": "2025-06-23T02:35:06+00:00"
  10728. },
  10729. {
  10730. "name": "ralouphie/getallheaders",
  10731. "version": "3.0.3",
  10732. "source": {
  10733. "type": "git",
  10734. "url": "https://github.com/ralouphie/getallheaders.git",
  10735. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10736. },
  10737. "dist": {
  10738. "type": "zip",
  10739. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10740. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10741. "shasum": ""
  10742. },
  10743. "require": {
  10744. "php": ">=5.6"
  10745. },
  10746. "require-dev": {
  10747. "php-coveralls/php-coveralls": "^2.1",
  10748. "phpunit/phpunit": "^5 || ^6.5"
  10749. },
  10750. "type": "library",
  10751. "autoload": {
  10752. "files": [
  10753. "src/getallheaders.php"
  10754. ]
  10755. },
  10756. "notification-url": "https://packagist.org/downloads/",
  10757. "license": [
  10758. "MIT"
  10759. ],
  10760. "authors": [
  10761. {
  10762. "name": "Ralph Khattar",
  10763. "email": "ralph.khattar@gmail.com"
  10764. }
  10765. ],
  10766. "description": "A polyfill for getallheaders.",
  10767. "support": {
  10768. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10769. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10770. },
  10771. "time": "2019-03-08T08:55:37+00:00"
  10772. },
  10773. {
  10774. "name": "sebastian/diff",
  10775. "version": "4.0.6",
  10776. "source": {
  10777. "type": "git",
  10778. "url": "https://github.com/sebastianbergmann/diff.git",
  10779. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10780. },
  10781. "dist": {
  10782. "type": "zip",
  10783. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10784. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10785. "shasum": ""
  10786. },
  10787. "require": {
  10788. "php": ">=7.3"
  10789. },
  10790. "require-dev": {
  10791. "phpunit/phpunit": "^9.3",
  10792. "symfony/process": "^4.2 || ^5"
  10793. },
  10794. "type": "library",
  10795. "extra": {
  10796. "branch-alias": {
  10797. "dev-master": "4.0-dev"
  10798. }
  10799. },
  10800. "autoload": {
  10801. "classmap": [
  10802. "src/"
  10803. ]
  10804. },
  10805. "notification-url": "https://packagist.org/downloads/",
  10806. "license": [
  10807. "BSD-3-Clause"
  10808. ],
  10809. "authors": [
  10810. {
  10811. "name": "Sebastian Bergmann",
  10812. "email": "sebastian@phpunit.de"
  10813. },
  10814. {
  10815. "name": "Kore Nordmann",
  10816. "email": "mail@kore-nordmann.de"
  10817. }
  10818. ],
  10819. "description": "Diff implementation",
  10820. "homepage": "https://github.com/sebastianbergmann/diff",
  10821. "keywords": [
  10822. "diff",
  10823. "udiff",
  10824. "unidiff",
  10825. "unified diff"
  10826. ],
  10827. "support": {
  10828. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10829. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10830. },
  10831. "funding": [
  10832. {
  10833. "url": "https://github.com/sebastianbergmann",
  10834. "type": "github"
  10835. }
  10836. ],
  10837. "time": "2024-03-02T06:30:58+00:00"
  10838. },
  10839. {
  10840. "name": "symfony/console",
  10841. "version": "v6.4.23",
  10842. "source": {
  10843. "type": "git",
  10844. "url": "https://github.com/symfony/console.git",
  10845. "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93"
  10846. },
  10847. "dist": {
  10848. "type": "zip",
  10849. "url": "https://api.github.com/repos/symfony/console/zipball/9056771b8eca08d026cd3280deeec3cfd99c4d93",
  10850. "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93",
  10851. "shasum": ""
  10852. },
  10853. "require": {
  10854. "php": ">=8.1",
  10855. "symfony/deprecation-contracts": "^2.5|^3",
  10856. "symfony/polyfill-mbstring": "~1.0",
  10857. "symfony/service-contracts": "^2.5|^3",
  10858. "symfony/string": "^5.4|^6.0|^7.0"
  10859. },
  10860. "conflict": {
  10861. "symfony/dependency-injection": "<5.4",
  10862. "symfony/dotenv": "<5.4",
  10863. "symfony/event-dispatcher": "<5.4",
  10864. "symfony/lock": "<5.4",
  10865. "symfony/process": "<5.4"
  10866. },
  10867. "provide": {
  10868. "psr/log-implementation": "1.0|2.0|3.0"
  10869. },
  10870. "require-dev": {
  10871. "psr/log": "^1|^2|^3",
  10872. "symfony/config": "^5.4|^6.0|^7.0",
  10873. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10874. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10875. "symfony/http-foundation": "^6.4|^7.0",
  10876. "symfony/http-kernel": "^6.4|^7.0",
  10877. "symfony/lock": "^5.4|^6.0|^7.0",
  10878. "symfony/messenger": "^5.4|^6.0|^7.0",
  10879. "symfony/process": "^5.4|^6.0|^7.0",
  10880. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10881. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10882. },
  10883. "type": "library",
  10884. "autoload": {
  10885. "psr-4": {
  10886. "Symfony\\Component\\Console\\": ""
  10887. },
  10888. "exclude-from-classmap": [
  10889. "/Tests/"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "MIT"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Fabien Potencier",
  10899. "email": "fabien@symfony.com"
  10900. },
  10901. {
  10902. "name": "Symfony Community",
  10903. "homepage": "https://symfony.com/contributors"
  10904. }
  10905. ],
  10906. "description": "Eases the creation of beautiful and testable command line interfaces",
  10907. "homepage": "https://symfony.com",
  10908. "keywords": [
  10909. "cli",
  10910. "command-line",
  10911. "console",
  10912. "terminal"
  10913. ],
  10914. "support": {
  10915. "source": "https://github.com/symfony/console/tree/v6.4.23"
  10916. },
  10917. "funding": [
  10918. {
  10919. "url": "https://symfony.com/sponsor",
  10920. "type": "custom"
  10921. },
  10922. {
  10923. "url": "https://github.com/fabpot",
  10924. "type": "github"
  10925. },
  10926. {
  10927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10928. "type": "tidelift"
  10929. }
  10930. ],
  10931. "time": "2025-06-27T19:37:22+00:00"
  10932. },
  10933. {
  10934. "name": "symfony/dependency-injection",
  10935. "version": "v6.4.23",
  10936. "source": {
  10937. "type": "git",
  10938. "url": "https://github.com/symfony/dependency-injection.git",
  10939. "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b"
  10940. },
  10941. "dist": {
  10942. "type": "zip",
  10943. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0d9f24f3de0a83573fce5c9ed025d6306c6e166b",
  10944. "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b",
  10945. "shasum": ""
  10946. },
  10947. "require": {
  10948. "php": ">=8.1",
  10949. "psr/container": "^1.1|^2.0",
  10950. "symfony/deprecation-contracts": "^2.5|^3",
  10951. "symfony/service-contracts": "^2.5|^3.0",
  10952. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10953. },
  10954. "conflict": {
  10955. "ext-psr": "<1.1|>=2",
  10956. "symfony/config": "<6.1",
  10957. "symfony/finder": "<5.4",
  10958. "symfony/proxy-manager-bridge": "<6.3",
  10959. "symfony/yaml": "<5.4"
  10960. },
  10961. "provide": {
  10962. "psr/container-implementation": "1.1|2.0",
  10963. "symfony/service-implementation": "1.1|2.0|3.0"
  10964. },
  10965. "require-dev": {
  10966. "symfony/config": "^6.1|^7.0",
  10967. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10968. "symfony/yaml": "^5.4|^6.0|^7.0"
  10969. },
  10970. "type": "library",
  10971. "autoload": {
  10972. "psr-4": {
  10973. "Symfony\\Component\\DependencyInjection\\": ""
  10974. },
  10975. "exclude-from-classmap": [
  10976. "/Tests/"
  10977. ]
  10978. },
  10979. "notification-url": "https://packagist.org/downloads/",
  10980. "license": [
  10981. "MIT"
  10982. ],
  10983. "authors": [
  10984. {
  10985. "name": "Fabien Potencier",
  10986. "email": "fabien@symfony.com"
  10987. },
  10988. {
  10989. "name": "Symfony Community",
  10990. "homepage": "https://symfony.com/contributors"
  10991. }
  10992. ],
  10993. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10994. "homepage": "https://symfony.com",
  10995. "support": {
  10996. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.23"
  10997. },
  10998. "funding": [
  10999. {
  11000. "url": "https://symfony.com/sponsor",
  11001. "type": "custom"
  11002. },
  11003. {
  11004. "url": "https://github.com/fabpot",
  11005. "type": "github"
  11006. },
  11007. {
  11008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11009. "type": "tidelift"
  11010. }
  11011. ],
  11012. "time": "2025-06-23T06:49:06+00:00"
  11013. },
  11014. {
  11015. "name": "symfony/deprecation-contracts",
  11016. "version": "v3.5.1",
  11017. "source": {
  11018. "type": "git",
  11019. "url": "https://github.com/symfony/deprecation-contracts.git",
  11020. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  11021. },
  11022. "dist": {
  11023. "type": "zip",
  11024. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  11025. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  11026. "shasum": ""
  11027. },
  11028. "require": {
  11029. "php": ">=8.1"
  11030. },
  11031. "type": "library",
  11032. "extra": {
  11033. "thanks": {
  11034. "url": "https://github.com/symfony/contracts",
  11035. "name": "symfony/contracts"
  11036. },
  11037. "branch-alias": {
  11038. "dev-main": "3.5-dev"
  11039. }
  11040. },
  11041. "autoload": {
  11042. "files": [
  11043. "function.php"
  11044. ]
  11045. },
  11046. "notification-url": "https://packagist.org/downloads/",
  11047. "license": [
  11048. "MIT"
  11049. ],
  11050. "authors": [
  11051. {
  11052. "name": "Nicolas Grekas",
  11053. "email": "p@tchwork.com"
  11054. },
  11055. {
  11056. "name": "Symfony Community",
  11057. "homepage": "https://symfony.com/contributors"
  11058. }
  11059. ],
  11060. "description": "A generic function and convention to trigger deprecation notices",
  11061. "homepage": "https://symfony.com",
  11062. "support": {
  11063. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  11064. },
  11065. "funding": [
  11066. {
  11067. "url": "https://symfony.com/sponsor",
  11068. "type": "custom"
  11069. },
  11070. {
  11071. "url": "https://github.com/fabpot",
  11072. "type": "github"
  11073. },
  11074. {
  11075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11076. "type": "tidelift"
  11077. }
  11078. ],
  11079. "time": "2024-09-25T14:20:29+00:00"
  11080. },
  11081. {
  11082. "name": "symfony/error-handler",
  11083. "version": "v6.4.23",
  11084. "source": {
  11085. "type": "git",
  11086. "url": "https://github.com/symfony/error-handler.git",
  11087. "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa"
  11088. },
  11089. "dist": {
  11090. "type": "zip",
  11091. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b088e0b175c30b4e06d8085200fa465b586f44fa",
  11092. "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa",
  11093. "shasum": ""
  11094. },
  11095. "require": {
  11096. "php": ">=8.1",
  11097. "psr/log": "^1|^2|^3",
  11098. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11099. },
  11100. "conflict": {
  11101. "symfony/deprecation-contracts": "<2.5",
  11102. "symfony/http-kernel": "<6.4"
  11103. },
  11104. "require-dev": {
  11105. "symfony/deprecation-contracts": "^2.5|^3",
  11106. "symfony/http-kernel": "^6.4|^7.0",
  11107. "symfony/serializer": "^5.4|^6.0|^7.0"
  11108. },
  11109. "bin": [
  11110. "Resources/bin/patch-type-declarations"
  11111. ],
  11112. "type": "library",
  11113. "autoload": {
  11114. "psr-4": {
  11115. "Symfony\\Component\\ErrorHandler\\": ""
  11116. },
  11117. "exclude-from-classmap": [
  11118. "/Tests/"
  11119. ]
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "Fabien Potencier",
  11128. "email": "fabien@symfony.com"
  11129. },
  11130. {
  11131. "name": "Symfony Community",
  11132. "homepage": "https://symfony.com/contributors"
  11133. }
  11134. ],
  11135. "description": "Provides tools to manage errors and ease debugging PHP code",
  11136. "homepage": "https://symfony.com",
  11137. "support": {
  11138. "source": "https://github.com/symfony/error-handler/tree/v6.4.23"
  11139. },
  11140. "funding": [
  11141. {
  11142. "url": "https://symfony.com/sponsor",
  11143. "type": "custom"
  11144. },
  11145. {
  11146. "url": "https://github.com/fabpot",
  11147. "type": "github"
  11148. },
  11149. {
  11150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11151. "type": "tidelift"
  11152. }
  11153. ],
  11154. "time": "2025-06-13T07:39:48+00:00"
  11155. },
  11156. {
  11157. "name": "symfony/event-dispatcher",
  11158. "version": "v6.4.13",
  11159. "source": {
  11160. "type": "git",
  11161. "url": "https://github.com/symfony/event-dispatcher.git",
  11162. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11163. },
  11164. "dist": {
  11165. "type": "zip",
  11166. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11167. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11168. "shasum": ""
  11169. },
  11170. "require": {
  11171. "php": ">=8.1",
  11172. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11173. },
  11174. "conflict": {
  11175. "symfony/dependency-injection": "<5.4",
  11176. "symfony/service-contracts": "<2.5"
  11177. },
  11178. "provide": {
  11179. "psr/event-dispatcher-implementation": "1.0",
  11180. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11181. },
  11182. "require-dev": {
  11183. "psr/log": "^1|^2|^3",
  11184. "symfony/config": "^5.4|^6.0|^7.0",
  11185. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11186. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11187. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11188. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11189. "symfony/service-contracts": "^2.5|^3",
  11190. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11191. },
  11192. "type": "library",
  11193. "autoload": {
  11194. "psr-4": {
  11195. "Symfony\\Component\\EventDispatcher\\": ""
  11196. },
  11197. "exclude-from-classmap": [
  11198. "/Tests/"
  11199. ]
  11200. },
  11201. "notification-url": "https://packagist.org/downloads/",
  11202. "license": [
  11203. "MIT"
  11204. ],
  11205. "authors": [
  11206. {
  11207. "name": "Fabien Potencier",
  11208. "email": "fabien@symfony.com"
  11209. },
  11210. {
  11211. "name": "Symfony Community",
  11212. "homepage": "https://symfony.com/contributors"
  11213. }
  11214. ],
  11215. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11216. "homepage": "https://symfony.com",
  11217. "support": {
  11218. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11219. },
  11220. "funding": [
  11221. {
  11222. "url": "https://symfony.com/sponsor",
  11223. "type": "custom"
  11224. },
  11225. {
  11226. "url": "https://github.com/fabpot",
  11227. "type": "github"
  11228. },
  11229. {
  11230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11231. "type": "tidelift"
  11232. }
  11233. ],
  11234. "time": "2024-09-25T14:18:03+00:00"
  11235. },
  11236. {
  11237. "name": "symfony/event-dispatcher-contracts",
  11238. "version": "v3.5.1",
  11239. "source": {
  11240. "type": "git",
  11241. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11242. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11243. },
  11244. "dist": {
  11245. "type": "zip",
  11246. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11247. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11248. "shasum": ""
  11249. },
  11250. "require": {
  11251. "php": ">=8.1",
  11252. "psr/event-dispatcher": "^1"
  11253. },
  11254. "type": "library",
  11255. "extra": {
  11256. "thanks": {
  11257. "url": "https://github.com/symfony/contracts",
  11258. "name": "symfony/contracts"
  11259. },
  11260. "branch-alias": {
  11261. "dev-main": "3.5-dev"
  11262. }
  11263. },
  11264. "autoload": {
  11265. "psr-4": {
  11266. "Symfony\\Contracts\\EventDispatcher\\": ""
  11267. }
  11268. },
  11269. "notification-url": "https://packagist.org/downloads/",
  11270. "license": [
  11271. "MIT"
  11272. ],
  11273. "authors": [
  11274. {
  11275. "name": "Nicolas Grekas",
  11276. "email": "p@tchwork.com"
  11277. },
  11278. {
  11279. "name": "Symfony Community",
  11280. "homepage": "https://symfony.com/contributors"
  11281. }
  11282. ],
  11283. "description": "Generic abstractions related to dispatching event",
  11284. "homepage": "https://symfony.com",
  11285. "keywords": [
  11286. "abstractions",
  11287. "contracts",
  11288. "decoupling",
  11289. "interfaces",
  11290. "interoperability",
  11291. "standards"
  11292. ],
  11293. "support": {
  11294. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11295. },
  11296. "funding": [
  11297. {
  11298. "url": "https://symfony.com/sponsor",
  11299. "type": "custom"
  11300. },
  11301. {
  11302. "url": "https://github.com/fabpot",
  11303. "type": "github"
  11304. },
  11305. {
  11306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11307. "type": "tidelift"
  11308. }
  11309. ],
  11310. "time": "2024-09-25T14:20:29+00:00"
  11311. },
  11312. {
  11313. "name": "symfony/filesystem",
  11314. "version": "v6.4.13",
  11315. "source": {
  11316. "type": "git",
  11317. "url": "https://github.com/symfony/filesystem.git",
  11318. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11319. },
  11320. "dist": {
  11321. "type": "zip",
  11322. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11323. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11324. "shasum": ""
  11325. },
  11326. "require": {
  11327. "php": ">=8.1",
  11328. "symfony/polyfill-ctype": "~1.8",
  11329. "symfony/polyfill-mbstring": "~1.8"
  11330. },
  11331. "require-dev": {
  11332. "symfony/process": "^5.4|^6.4|^7.0"
  11333. },
  11334. "type": "library",
  11335. "autoload": {
  11336. "psr-4": {
  11337. "Symfony\\Component\\Filesystem\\": ""
  11338. },
  11339. "exclude-from-classmap": [
  11340. "/Tests/"
  11341. ]
  11342. },
  11343. "notification-url": "https://packagist.org/downloads/",
  11344. "license": [
  11345. "MIT"
  11346. ],
  11347. "authors": [
  11348. {
  11349. "name": "Fabien Potencier",
  11350. "email": "fabien@symfony.com"
  11351. },
  11352. {
  11353. "name": "Symfony Community",
  11354. "homepage": "https://symfony.com/contributors"
  11355. }
  11356. ],
  11357. "description": "Provides basic utilities for the filesystem",
  11358. "homepage": "https://symfony.com",
  11359. "support": {
  11360. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11361. },
  11362. "funding": [
  11363. {
  11364. "url": "https://symfony.com/sponsor",
  11365. "type": "custom"
  11366. },
  11367. {
  11368. "url": "https://github.com/fabpot",
  11369. "type": "github"
  11370. },
  11371. {
  11372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11373. "type": "tidelift"
  11374. }
  11375. ],
  11376. "time": "2024-10-25T15:07:50+00:00"
  11377. },
  11378. {
  11379. "name": "symfony/finder",
  11380. "version": "v6.4.17",
  11381. "source": {
  11382. "type": "git",
  11383. "url": "https://github.com/symfony/finder.git",
  11384. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  11385. },
  11386. "dist": {
  11387. "type": "zip",
  11388. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  11389. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  11390. "shasum": ""
  11391. },
  11392. "require": {
  11393. "php": ">=8.1"
  11394. },
  11395. "require-dev": {
  11396. "symfony/filesystem": "^6.0|^7.0"
  11397. },
  11398. "type": "library",
  11399. "autoload": {
  11400. "psr-4": {
  11401. "Symfony\\Component\\Finder\\": ""
  11402. },
  11403. "exclude-from-classmap": [
  11404. "/Tests/"
  11405. ]
  11406. },
  11407. "notification-url": "https://packagist.org/downloads/",
  11408. "license": [
  11409. "MIT"
  11410. ],
  11411. "authors": [
  11412. {
  11413. "name": "Fabien Potencier",
  11414. "email": "fabien@symfony.com"
  11415. },
  11416. {
  11417. "name": "Symfony Community",
  11418. "homepage": "https://symfony.com/contributors"
  11419. }
  11420. ],
  11421. "description": "Finds files and directories via an intuitive fluent interface",
  11422. "homepage": "https://symfony.com",
  11423. "support": {
  11424. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  11425. },
  11426. "funding": [
  11427. {
  11428. "url": "https://symfony.com/sponsor",
  11429. "type": "custom"
  11430. },
  11431. {
  11432. "url": "https://github.com/fabpot",
  11433. "type": "github"
  11434. },
  11435. {
  11436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11437. "type": "tidelift"
  11438. }
  11439. ],
  11440. "time": "2024-12-29T13:51:37+00:00"
  11441. },
  11442. {
  11443. "name": "symfony/http-foundation",
  11444. "version": "v6.4.23",
  11445. "source": {
  11446. "type": "git",
  11447. "url": "https://github.com/symfony/http-foundation.git",
  11448. "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3"
  11449. },
  11450. "dist": {
  11451. "type": "zip",
  11452. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/452d19f945ee41345fd8a50c18b60783546b7bd3",
  11453. "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3",
  11454. "shasum": ""
  11455. },
  11456. "require": {
  11457. "php": ">=8.1",
  11458. "symfony/deprecation-contracts": "^2.5|^3",
  11459. "symfony/polyfill-mbstring": "~1.1",
  11460. "symfony/polyfill-php83": "^1.27"
  11461. },
  11462. "conflict": {
  11463. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11464. },
  11465. "require-dev": {
  11466. "doctrine/dbal": "^2.13.1|^3|^4",
  11467. "predis/predis": "^1.1|^2.0",
  11468. "symfony/cache": "^6.4.12|^7.1.5",
  11469. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11470. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11471. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11472. "symfony/mime": "^5.4|^6.0|^7.0",
  11473. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11474. },
  11475. "type": "library",
  11476. "autoload": {
  11477. "psr-4": {
  11478. "Symfony\\Component\\HttpFoundation\\": ""
  11479. },
  11480. "exclude-from-classmap": [
  11481. "/Tests/"
  11482. ]
  11483. },
  11484. "notification-url": "https://packagist.org/downloads/",
  11485. "license": [
  11486. "MIT"
  11487. ],
  11488. "authors": [
  11489. {
  11490. "name": "Fabien Potencier",
  11491. "email": "fabien@symfony.com"
  11492. },
  11493. {
  11494. "name": "Symfony Community",
  11495. "homepage": "https://symfony.com/contributors"
  11496. }
  11497. ],
  11498. "description": "Defines an object-oriented layer for the HTTP specification",
  11499. "homepage": "https://symfony.com",
  11500. "support": {
  11501. "source": "https://github.com/symfony/http-foundation/tree/v6.4.23"
  11502. },
  11503. "funding": [
  11504. {
  11505. "url": "https://symfony.com/sponsor",
  11506. "type": "custom"
  11507. },
  11508. {
  11509. "url": "https://github.com/fabpot",
  11510. "type": "github"
  11511. },
  11512. {
  11513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11514. "type": "tidelift"
  11515. }
  11516. ],
  11517. "time": "2025-05-26T09:17:58+00:00"
  11518. },
  11519. {
  11520. "name": "symfony/http-kernel",
  11521. "version": "v6.4.23",
  11522. "source": {
  11523. "type": "git",
  11524. "url": "https://github.com/symfony/http-kernel.git",
  11525. "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a"
  11526. },
  11527. "dist": {
  11528. "type": "zip",
  11529. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2bb2cba685aabd859f22cf6946554e8e7f3c329a",
  11530. "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a",
  11531. "shasum": ""
  11532. },
  11533. "require": {
  11534. "php": ">=8.1",
  11535. "psr/log": "^1|^2|^3",
  11536. "symfony/deprecation-contracts": "^2.5|^3",
  11537. "symfony/error-handler": "^6.4|^7.0",
  11538. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11539. "symfony/http-foundation": "^6.4|^7.0",
  11540. "symfony/polyfill-ctype": "^1.8"
  11541. },
  11542. "conflict": {
  11543. "symfony/browser-kit": "<5.4",
  11544. "symfony/cache": "<5.4",
  11545. "symfony/config": "<6.1",
  11546. "symfony/console": "<5.4",
  11547. "symfony/dependency-injection": "<6.4",
  11548. "symfony/doctrine-bridge": "<5.4",
  11549. "symfony/form": "<5.4",
  11550. "symfony/http-client": "<5.4",
  11551. "symfony/http-client-contracts": "<2.5",
  11552. "symfony/mailer": "<5.4",
  11553. "symfony/messenger": "<5.4",
  11554. "symfony/translation": "<5.4",
  11555. "symfony/translation-contracts": "<2.5",
  11556. "symfony/twig-bridge": "<5.4",
  11557. "symfony/validator": "<6.4",
  11558. "symfony/var-dumper": "<6.3",
  11559. "twig/twig": "<2.13"
  11560. },
  11561. "provide": {
  11562. "psr/log-implementation": "1.0|2.0|3.0"
  11563. },
  11564. "require-dev": {
  11565. "psr/cache": "^1.0|^2.0|^3.0",
  11566. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11567. "symfony/clock": "^6.2|^7.0",
  11568. "symfony/config": "^6.1|^7.0",
  11569. "symfony/console": "^5.4|^6.0|^7.0",
  11570. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11571. "symfony/dependency-injection": "^6.4|^7.0",
  11572. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11573. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11574. "symfony/finder": "^5.4|^6.0|^7.0",
  11575. "symfony/http-client-contracts": "^2.5|^3",
  11576. "symfony/process": "^5.4|^6.0|^7.0",
  11577. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11578. "symfony/routing": "^5.4|^6.0|^7.0",
  11579. "symfony/serializer": "^6.4.4|^7.0.4",
  11580. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11581. "symfony/translation": "^5.4|^6.0|^7.0",
  11582. "symfony/translation-contracts": "^2.5|^3",
  11583. "symfony/uid": "^5.4|^6.0|^7.0",
  11584. "symfony/validator": "^6.4|^7.0",
  11585. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11586. "symfony/var-exporter": "^6.2|^7.0",
  11587. "twig/twig": "^2.13|^3.0.4"
  11588. },
  11589. "type": "library",
  11590. "autoload": {
  11591. "psr-4": {
  11592. "Symfony\\Component\\HttpKernel\\": ""
  11593. },
  11594. "exclude-from-classmap": [
  11595. "/Tests/"
  11596. ]
  11597. },
  11598. "notification-url": "https://packagist.org/downloads/",
  11599. "license": [
  11600. "MIT"
  11601. ],
  11602. "authors": [
  11603. {
  11604. "name": "Fabien Potencier",
  11605. "email": "fabien@symfony.com"
  11606. },
  11607. {
  11608. "name": "Symfony Community",
  11609. "homepage": "https://symfony.com/contributors"
  11610. }
  11611. ],
  11612. "description": "Provides a structured process for converting a Request into a Response",
  11613. "homepage": "https://symfony.com",
  11614. "support": {
  11615. "source": "https://github.com/symfony/http-kernel/tree/v6.4.23"
  11616. },
  11617. "funding": [
  11618. {
  11619. "url": "https://symfony.com/sponsor",
  11620. "type": "custom"
  11621. },
  11622. {
  11623. "url": "https://github.com/fabpot",
  11624. "type": "github"
  11625. },
  11626. {
  11627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11628. "type": "tidelift"
  11629. }
  11630. ],
  11631. "time": "2025-06-28T08:14:51+00:00"
  11632. },
  11633. {
  11634. "name": "symfony/mailer",
  11635. "version": "v6.4.23",
  11636. "source": {
  11637. "type": "git",
  11638. "url": "https://github.com/symfony/mailer.git",
  11639. "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5"
  11640. },
  11641. "dist": {
  11642. "type": "zip",
  11643. "url": "https://api.github.com/repos/symfony/mailer/zipball/a480322ddf8e54de262c9bca31fdcbe26b553de5",
  11644. "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5",
  11645. "shasum": ""
  11646. },
  11647. "require": {
  11648. "egulias/email-validator": "^2.1.10|^3|^4",
  11649. "php": ">=8.1",
  11650. "psr/event-dispatcher": "^1",
  11651. "psr/log": "^1|^2|^3",
  11652. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11653. "symfony/mime": "^6.2|^7.0",
  11654. "symfony/service-contracts": "^2.5|^3"
  11655. },
  11656. "conflict": {
  11657. "symfony/http-client-contracts": "<2.5",
  11658. "symfony/http-kernel": "<5.4",
  11659. "symfony/messenger": "<6.2",
  11660. "symfony/mime": "<6.2",
  11661. "symfony/twig-bridge": "<6.2.1"
  11662. },
  11663. "require-dev": {
  11664. "symfony/console": "^5.4|^6.0|^7.0",
  11665. "symfony/http-client": "^5.4|^6.0|^7.0",
  11666. "symfony/messenger": "^6.2|^7.0",
  11667. "symfony/twig-bridge": "^6.2|^7.0"
  11668. },
  11669. "type": "library",
  11670. "autoload": {
  11671. "psr-4": {
  11672. "Symfony\\Component\\Mailer\\": ""
  11673. },
  11674. "exclude-from-classmap": [
  11675. "/Tests/"
  11676. ]
  11677. },
  11678. "notification-url": "https://packagist.org/downloads/",
  11679. "license": [
  11680. "MIT"
  11681. ],
  11682. "authors": [
  11683. {
  11684. "name": "Fabien Potencier",
  11685. "email": "fabien@symfony.com"
  11686. },
  11687. {
  11688. "name": "Symfony Community",
  11689. "homepage": "https://symfony.com/contributors"
  11690. }
  11691. ],
  11692. "description": "Helps sending emails",
  11693. "homepage": "https://symfony.com",
  11694. "support": {
  11695. "source": "https://github.com/symfony/mailer/tree/v6.4.23"
  11696. },
  11697. "funding": [
  11698. {
  11699. "url": "https://symfony.com/sponsor",
  11700. "type": "custom"
  11701. },
  11702. {
  11703. "url": "https://github.com/fabpot",
  11704. "type": "github"
  11705. },
  11706. {
  11707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11708. "type": "tidelift"
  11709. }
  11710. ],
  11711. "time": "2025-06-26T21:24:02+00:00"
  11712. },
  11713. {
  11714. "name": "symfony/mime",
  11715. "version": "v6.4.21",
  11716. "source": {
  11717. "type": "git",
  11718. "url": "https://github.com/symfony/mime.git",
  11719. "reference": "fec8aa5231f3904754955fad33c2db50594d22d1"
  11720. },
  11721. "dist": {
  11722. "type": "zip",
  11723. "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1",
  11724. "reference": "fec8aa5231f3904754955fad33c2db50594d22d1",
  11725. "shasum": ""
  11726. },
  11727. "require": {
  11728. "php": ">=8.1",
  11729. "symfony/deprecation-contracts": "^2.5|^3",
  11730. "symfony/polyfill-intl-idn": "^1.10",
  11731. "symfony/polyfill-mbstring": "^1.0"
  11732. },
  11733. "conflict": {
  11734. "egulias/email-validator": "~3.0.0",
  11735. "phpdocumentor/reflection-docblock": "<3.2.2",
  11736. "phpdocumentor/type-resolver": "<1.4.0",
  11737. "symfony/mailer": "<5.4",
  11738. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11739. },
  11740. "require-dev": {
  11741. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11742. "league/html-to-markdown": "^5.0",
  11743. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11744. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11745. "symfony/process": "^5.4|^6.4|^7.0",
  11746. "symfony/property-access": "^5.4|^6.0|^7.0",
  11747. "symfony/property-info": "^5.4|^6.0|^7.0",
  11748. "symfony/serializer": "^6.4.3|^7.0.3"
  11749. },
  11750. "type": "library",
  11751. "autoload": {
  11752. "psr-4": {
  11753. "Symfony\\Component\\Mime\\": ""
  11754. },
  11755. "exclude-from-classmap": [
  11756. "/Tests/"
  11757. ]
  11758. },
  11759. "notification-url": "https://packagist.org/downloads/",
  11760. "license": [
  11761. "MIT"
  11762. ],
  11763. "authors": [
  11764. {
  11765. "name": "Fabien Potencier",
  11766. "email": "fabien@symfony.com"
  11767. },
  11768. {
  11769. "name": "Symfony Community",
  11770. "homepage": "https://symfony.com/contributors"
  11771. }
  11772. ],
  11773. "description": "Allows manipulating MIME messages",
  11774. "homepage": "https://symfony.com",
  11775. "keywords": [
  11776. "mime",
  11777. "mime-type"
  11778. ],
  11779. "support": {
  11780. "source": "https://github.com/symfony/mime/tree/v6.4.21"
  11781. },
  11782. "funding": [
  11783. {
  11784. "url": "https://symfony.com/sponsor",
  11785. "type": "custom"
  11786. },
  11787. {
  11788. "url": "https://github.com/fabpot",
  11789. "type": "github"
  11790. },
  11791. {
  11792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11793. "type": "tidelift"
  11794. }
  11795. ],
  11796. "time": "2025-04-27T13:27:38+00:00"
  11797. },
  11798. {
  11799. "name": "symfony/polyfill-ctype",
  11800. "version": "v1.31.0",
  11801. "source": {
  11802. "type": "git",
  11803. "url": "https://github.com/symfony/polyfill-ctype.git",
  11804. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11805. },
  11806. "dist": {
  11807. "type": "zip",
  11808. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11809. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11810. "shasum": ""
  11811. },
  11812. "require": {
  11813. "php": ">=7.2"
  11814. },
  11815. "provide": {
  11816. "ext-ctype": "*"
  11817. },
  11818. "suggest": {
  11819. "ext-ctype": "For best performance"
  11820. },
  11821. "type": "library",
  11822. "extra": {
  11823. "thanks": {
  11824. "url": "https://github.com/symfony/polyfill",
  11825. "name": "symfony/polyfill"
  11826. }
  11827. },
  11828. "autoload": {
  11829. "files": [
  11830. "bootstrap.php"
  11831. ],
  11832. "psr-4": {
  11833. "Symfony\\Polyfill\\Ctype\\": ""
  11834. }
  11835. },
  11836. "notification-url": "https://packagist.org/downloads/",
  11837. "license": [
  11838. "MIT"
  11839. ],
  11840. "authors": [
  11841. {
  11842. "name": "Gert de Pagter",
  11843. "email": "BackEndTea@gmail.com"
  11844. },
  11845. {
  11846. "name": "Symfony Community",
  11847. "homepage": "https://symfony.com/contributors"
  11848. }
  11849. ],
  11850. "description": "Symfony polyfill for ctype functions",
  11851. "homepage": "https://symfony.com",
  11852. "keywords": [
  11853. "compatibility",
  11854. "ctype",
  11855. "polyfill",
  11856. "portable"
  11857. ],
  11858. "support": {
  11859. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  11860. },
  11861. "funding": [
  11862. {
  11863. "url": "https://symfony.com/sponsor",
  11864. "type": "custom"
  11865. },
  11866. {
  11867. "url": "https://github.com/fabpot",
  11868. "type": "github"
  11869. },
  11870. {
  11871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11872. "type": "tidelift"
  11873. }
  11874. ],
  11875. "time": "2024-09-09T11:45:10+00:00"
  11876. },
  11877. {
  11878. "name": "symfony/polyfill-iconv",
  11879. "version": "v1.31.0",
  11880. "source": {
  11881. "type": "git",
  11882. "url": "https://github.com/symfony/polyfill-iconv.git",
  11883. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  11884. },
  11885. "dist": {
  11886. "type": "zip",
  11887. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  11888. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  11889. "shasum": ""
  11890. },
  11891. "require": {
  11892. "php": ">=7.2"
  11893. },
  11894. "provide": {
  11895. "ext-iconv": "*"
  11896. },
  11897. "suggest": {
  11898. "ext-iconv": "For best performance"
  11899. },
  11900. "type": "library",
  11901. "extra": {
  11902. "thanks": {
  11903. "url": "https://github.com/symfony/polyfill",
  11904. "name": "symfony/polyfill"
  11905. }
  11906. },
  11907. "autoload": {
  11908. "files": [
  11909. "bootstrap.php"
  11910. ],
  11911. "psr-4": {
  11912. "Symfony\\Polyfill\\Iconv\\": ""
  11913. }
  11914. },
  11915. "notification-url": "https://packagist.org/downloads/",
  11916. "license": [
  11917. "MIT"
  11918. ],
  11919. "authors": [
  11920. {
  11921. "name": "Nicolas Grekas",
  11922. "email": "p@tchwork.com"
  11923. },
  11924. {
  11925. "name": "Symfony Community",
  11926. "homepage": "https://symfony.com/contributors"
  11927. }
  11928. ],
  11929. "description": "Symfony polyfill for the Iconv extension",
  11930. "homepage": "https://symfony.com",
  11931. "keywords": [
  11932. "compatibility",
  11933. "iconv",
  11934. "polyfill",
  11935. "portable",
  11936. "shim"
  11937. ],
  11938. "support": {
  11939. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  11940. },
  11941. "funding": [
  11942. {
  11943. "url": "https://symfony.com/sponsor",
  11944. "type": "custom"
  11945. },
  11946. {
  11947. "url": "https://github.com/fabpot",
  11948. "type": "github"
  11949. },
  11950. {
  11951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11952. "type": "tidelift"
  11953. }
  11954. ],
  11955. "time": "2024-09-09T11:45:10+00:00"
  11956. },
  11957. {
  11958. "name": "symfony/polyfill-intl-grapheme",
  11959. "version": "v1.31.0",
  11960. "source": {
  11961. "type": "git",
  11962. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11963. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  11964. },
  11965. "dist": {
  11966. "type": "zip",
  11967. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11968. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11969. "shasum": ""
  11970. },
  11971. "require": {
  11972. "php": ">=7.2"
  11973. },
  11974. "suggest": {
  11975. "ext-intl": "For best performance"
  11976. },
  11977. "type": "library",
  11978. "extra": {
  11979. "thanks": {
  11980. "url": "https://github.com/symfony/polyfill",
  11981. "name": "symfony/polyfill"
  11982. }
  11983. },
  11984. "autoload": {
  11985. "files": [
  11986. "bootstrap.php"
  11987. ],
  11988. "psr-4": {
  11989. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11990. }
  11991. },
  11992. "notification-url": "https://packagist.org/downloads/",
  11993. "license": [
  11994. "MIT"
  11995. ],
  11996. "authors": [
  11997. {
  11998. "name": "Nicolas Grekas",
  11999. "email": "p@tchwork.com"
  12000. },
  12001. {
  12002. "name": "Symfony Community",
  12003. "homepage": "https://symfony.com/contributors"
  12004. }
  12005. ],
  12006. "description": "Symfony polyfill for intl's grapheme_* functions",
  12007. "homepage": "https://symfony.com",
  12008. "keywords": [
  12009. "compatibility",
  12010. "grapheme",
  12011. "intl",
  12012. "polyfill",
  12013. "portable",
  12014. "shim"
  12015. ],
  12016. "support": {
  12017. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  12018. },
  12019. "funding": [
  12020. {
  12021. "url": "https://symfony.com/sponsor",
  12022. "type": "custom"
  12023. },
  12024. {
  12025. "url": "https://github.com/fabpot",
  12026. "type": "github"
  12027. },
  12028. {
  12029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12030. "type": "tidelift"
  12031. }
  12032. ],
  12033. "time": "2024-09-09T11:45:10+00:00"
  12034. },
  12035. {
  12036. "name": "symfony/polyfill-intl-idn",
  12037. "version": "v1.31.0",
  12038. "source": {
  12039. "type": "git",
  12040. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12041. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  12042. },
  12043. "dist": {
  12044. "type": "zip",
  12045. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  12046. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  12047. "shasum": ""
  12048. },
  12049. "require": {
  12050. "php": ">=7.2",
  12051. "symfony/polyfill-intl-normalizer": "^1.10"
  12052. },
  12053. "suggest": {
  12054. "ext-intl": "For best performance"
  12055. },
  12056. "type": "library",
  12057. "extra": {
  12058. "thanks": {
  12059. "url": "https://github.com/symfony/polyfill",
  12060. "name": "symfony/polyfill"
  12061. }
  12062. },
  12063. "autoload": {
  12064. "files": [
  12065. "bootstrap.php"
  12066. ],
  12067. "psr-4": {
  12068. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12069. }
  12070. },
  12071. "notification-url": "https://packagist.org/downloads/",
  12072. "license": [
  12073. "MIT"
  12074. ],
  12075. "authors": [
  12076. {
  12077. "name": "Laurent Bassin",
  12078. "email": "laurent@bassin.info"
  12079. },
  12080. {
  12081. "name": "Trevor Rowbotham",
  12082. "email": "trevor.rowbotham@pm.me"
  12083. },
  12084. {
  12085. "name": "Symfony Community",
  12086. "homepage": "https://symfony.com/contributors"
  12087. }
  12088. ],
  12089. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12090. "homepage": "https://symfony.com",
  12091. "keywords": [
  12092. "compatibility",
  12093. "idn",
  12094. "intl",
  12095. "polyfill",
  12096. "portable",
  12097. "shim"
  12098. ],
  12099. "support": {
  12100. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  12101. },
  12102. "funding": [
  12103. {
  12104. "url": "https://symfony.com/sponsor",
  12105. "type": "custom"
  12106. },
  12107. {
  12108. "url": "https://github.com/fabpot",
  12109. "type": "github"
  12110. },
  12111. {
  12112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12113. "type": "tidelift"
  12114. }
  12115. ],
  12116. "time": "2024-09-09T11:45:10+00:00"
  12117. },
  12118. {
  12119. "name": "symfony/polyfill-intl-normalizer",
  12120. "version": "v1.31.0",
  12121. "source": {
  12122. "type": "git",
  12123. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12124. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12125. },
  12126. "dist": {
  12127. "type": "zip",
  12128. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12129. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12130. "shasum": ""
  12131. },
  12132. "require": {
  12133. "php": ">=7.2"
  12134. },
  12135. "suggest": {
  12136. "ext-intl": "For best performance"
  12137. },
  12138. "type": "library",
  12139. "extra": {
  12140. "thanks": {
  12141. "url": "https://github.com/symfony/polyfill",
  12142. "name": "symfony/polyfill"
  12143. }
  12144. },
  12145. "autoload": {
  12146. "files": [
  12147. "bootstrap.php"
  12148. ],
  12149. "psr-4": {
  12150. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12151. },
  12152. "classmap": [
  12153. "Resources/stubs"
  12154. ]
  12155. },
  12156. "notification-url": "https://packagist.org/downloads/",
  12157. "license": [
  12158. "MIT"
  12159. ],
  12160. "authors": [
  12161. {
  12162. "name": "Nicolas Grekas",
  12163. "email": "p@tchwork.com"
  12164. },
  12165. {
  12166. "name": "Symfony Community",
  12167. "homepage": "https://symfony.com/contributors"
  12168. }
  12169. ],
  12170. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12171. "homepage": "https://symfony.com",
  12172. "keywords": [
  12173. "compatibility",
  12174. "intl",
  12175. "normalizer",
  12176. "polyfill",
  12177. "portable",
  12178. "shim"
  12179. ],
  12180. "support": {
  12181. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  12182. },
  12183. "funding": [
  12184. {
  12185. "url": "https://symfony.com/sponsor",
  12186. "type": "custom"
  12187. },
  12188. {
  12189. "url": "https://github.com/fabpot",
  12190. "type": "github"
  12191. },
  12192. {
  12193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12194. "type": "tidelift"
  12195. }
  12196. ],
  12197. "time": "2024-09-09T11:45:10+00:00"
  12198. },
  12199. {
  12200. "name": "symfony/polyfill-mbstring",
  12201. "version": "v1.31.0",
  12202. "source": {
  12203. "type": "git",
  12204. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12205. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  12206. },
  12207. "dist": {
  12208. "type": "zip",
  12209. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12210. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12211. "shasum": ""
  12212. },
  12213. "require": {
  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.31.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://tidelift.com/funding/github/packagist/symfony/symfony",
  12274. "type": "tidelift"
  12275. }
  12276. ],
  12277. "time": "2024-09-09T11:45:10+00:00"
  12278. },
  12279. {
  12280. "name": "symfony/polyfill-php81",
  12281. "version": "v1.32.0",
  12282. "source": {
  12283. "type": "git",
  12284. "url": "https://github.com/symfony/polyfill-php81.git",
  12285. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12286. },
  12287. "dist": {
  12288. "type": "zip",
  12289. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12290. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12291. "shasum": ""
  12292. },
  12293. "require": {
  12294. "php": ">=7.2"
  12295. },
  12296. "type": "library",
  12297. "extra": {
  12298. "thanks": {
  12299. "url": "https://github.com/symfony/polyfill",
  12300. "name": "symfony/polyfill"
  12301. }
  12302. },
  12303. "autoload": {
  12304. "files": [
  12305. "bootstrap.php"
  12306. ],
  12307. "psr-4": {
  12308. "Symfony\\Polyfill\\Php81\\": ""
  12309. },
  12310. "classmap": [
  12311. "Resources/stubs"
  12312. ]
  12313. },
  12314. "notification-url": "https://packagist.org/downloads/",
  12315. "license": [
  12316. "MIT"
  12317. ],
  12318. "authors": [
  12319. {
  12320. "name": "Nicolas Grekas",
  12321. "email": "p@tchwork.com"
  12322. },
  12323. {
  12324. "name": "Symfony Community",
  12325. "homepage": "https://symfony.com/contributors"
  12326. }
  12327. ],
  12328. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12329. "homepage": "https://symfony.com",
  12330. "keywords": [
  12331. "compatibility",
  12332. "polyfill",
  12333. "portable",
  12334. "shim"
  12335. ],
  12336. "support": {
  12337. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  12338. },
  12339. "funding": [
  12340. {
  12341. "url": "https://symfony.com/sponsor",
  12342. "type": "custom"
  12343. },
  12344. {
  12345. "url": "https://github.com/fabpot",
  12346. "type": "github"
  12347. },
  12348. {
  12349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12350. "type": "tidelift"
  12351. }
  12352. ],
  12353. "time": "2024-09-09T11:45:10+00:00"
  12354. },
  12355. {
  12356. "name": "symfony/polyfill-php83",
  12357. "version": "v1.31.0",
  12358. "source": {
  12359. "type": "git",
  12360. "url": "https://github.com/symfony/polyfill-php83.git",
  12361. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  12362. },
  12363. "dist": {
  12364. "type": "zip",
  12365. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  12366. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  12367. "shasum": ""
  12368. },
  12369. "require": {
  12370. "php": ">=7.2"
  12371. },
  12372. "type": "library",
  12373. "extra": {
  12374. "thanks": {
  12375. "url": "https://github.com/symfony/polyfill",
  12376. "name": "symfony/polyfill"
  12377. }
  12378. },
  12379. "autoload": {
  12380. "files": [
  12381. "bootstrap.php"
  12382. ],
  12383. "psr-4": {
  12384. "Symfony\\Polyfill\\Php83\\": ""
  12385. },
  12386. "classmap": [
  12387. "Resources/stubs"
  12388. ]
  12389. },
  12390. "notification-url": "https://packagist.org/downloads/",
  12391. "license": [
  12392. "MIT"
  12393. ],
  12394. "authors": [
  12395. {
  12396. "name": "Nicolas Grekas",
  12397. "email": "p@tchwork.com"
  12398. },
  12399. {
  12400. "name": "Symfony Community",
  12401. "homepage": "https://symfony.com/contributors"
  12402. }
  12403. ],
  12404. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12405. "homepage": "https://symfony.com",
  12406. "keywords": [
  12407. "compatibility",
  12408. "polyfill",
  12409. "portable",
  12410. "shim"
  12411. ],
  12412. "support": {
  12413. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12414. },
  12415. "funding": [
  12416. {
  12417. "url": "https://symfony.com/sponsor",
  12418. "type": "custom"
  12419. },
  12420. {
  12421. "url": "https://github.com/fabpot",
  12422. "type": "github"
  12423. },
  12424. {
  12425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12426. "type": "tidelift"
  12427. }
  12428. ],
  12429. "time": "2024-09-09T11:45:10+00:00"
  12430. },
  12431. {
  12432. "name": "symfony/polyfill-php84",
  12433. "version": "v1.32.0",
  12434. "source": {
  12435. "type": "git",
  12436. "url": "https://github.com/symfony/polyfill-php84.git",
  12437. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  12438. },
  12439. "dist": {
  12440. "type": "zip",
  12441. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  12442. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  12443. "shasum": ""
  12444. },
  12445. "require": {
  12446. "php": ">=7.2"
  12447. },
  12448. "type": "library",
  12449. "extra": {
  12450. "thanks": {
  12451. "url": "https://github.com/symfony/polyfill",
  12452. "name": "symfony/polyfill"
  12453. }
  12454. },
  12455. "autoload": {
  12456. "files": [
  12457. "bootstrap.php"
  12458. ],
  12459. "psr-4": {
  12460. "Symfony\\Polyfill\\Php84\\": ""
  12461. },
  12462. "classmap": [
  12463. "Resources/stubs"
  12464. ]
  12465. },
  12466. "notification-url": "https://packagist.org/downloads/",
  12467. "license": [
  12468. "MIT"
  12469. ],
  12470. "authors": [
  12471. {
  12472. "name": "Nicolas Grekas",
  12473. "email": "p@tchwork.com"
  12474. },
  12475. {
  12476. "name": "Symfony Community",
  12477. "homepage": "https://symfony.com/contributors"
  12478. }
  12479. ],
  12480. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12481. "homepage": "https://symfony.com",
  12482. "keywords": [
  12483. "compatibility",
  12484. "polyfill",
  12485. "portable",
  12486. "shim"
  12487. ],
  12488. "support": {
  12489. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  12490. },
  12491. "funding": [
  12492. {
  12493. "url": "https://symfony.com/sponsor",
  12494. "type": "custom"
  12495. },
  12496. {
  12497. "url": "https://github.com/fabpot",
  12498. "type": "github"
  12499. },
  12500. {
  12501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12502. "type": "tidelift"
  12503. }
  12504. ],
  12505. "time": "2025-02-20T12:04:08+00:00"
  12506. },
  12507. {
  12508. "name": "symfony/process",
  12509. "version": "v6.4.20",
  12510. "source": {
  12511. "type": "git",
  12512. "url": "https://github.com/symfony/process.git",
  12513. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  12514. },
  12515. "dist": {
  12516. "type": "zip",
  12517. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  12518. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  12519. "shasum": ""
  12520. },
  12521. "require": {
  12522. "php": ">=8.1"
  12523. },
  12524. "type": "library",
  12525. "autoload": {
  12526. "psr-4": {
  12527. "Symfony\\Component\\Process\\": ""
  12528. },
  12529. "exclude-from-classmap": [
  12530. "/Tests/"
  12531. ]
  12532. },
  12533. "notification-url": "https://packagist.org/downloads/",
  12534. "license": [
  12535. "MIT"
  12536. ],
  12537. "authors": [
  12538. {
  12539. "name": "Fabien Potencier",
  12540. "email": "fabien@symfony.com"
  12541. },
  12542. {
  12543. "name": "Symfony Community",
  12544. "homepage": "https://symfony.com/contributors"
  12545. }
  12546. ],
  12547. "description": "Executes commands in sub-processes",
  12548. "homepage": "https://symfony.com",
  12549. "support": {
  12550. "source": "https://github.com/symfony/process/tree/v6.4.20"
  12551. },
  12552. "funding": [
  12553. {
  12554. "url": "https://symfony.com/sponsor",
  12555. "type": "custom"
  12556. },
  12557. {
  12558. "url": "https://github.com/fabpot",
  12559. "type": "github"
  12560. },
  12561. {
  12562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12563. "type": "tidelift"
  12564. }
  12565. ],
  12566. "time": "2025-03-10T17:11:00+00:00"
  12567. },
  12568. {
  12569. "name": "symfony/psr-http-message-bridge",
  12570. "version": "v6.4.13",
  12571. "source": {
  12572. "type": "git",
  12573. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12574. "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec"
  12575. },
  12576. "dist": {
  12577. "type": "zip",
  12578. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9cf83326a1074f83a738fc5320945abf7fb7fec",
  12579. "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec",
  12580. "shasum": ""
  12581. },
  12582. "require": {
  12583. "php": ">=8.1",
  12584. "psr/http-message": "^1.0|^2.0",
  12585. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12586. },
  12587. "conflict": {
  12588. "php-http/discovery": "<1.15",
  12589. "symfony/http-kernel": "<6.2"
  12590. },
  12591. "require-dev": {
  12592. "nyholm/psr7": "^1.1",
  12593. "php-http/discovery": "^1.15",
  12594. "psr/log": "^1.1.4|^2|^3",
  12595. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12596. "symfony/config": "^5.4|^6.0|^7.0",
  12597. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12598. "symfony/framework-bundle": "^6.2|^7.0",
  12599. "symfony/http-kernel": "^6.2|^7.0"
  12600. },
  12601. "type": "symfony-bridge",
  12602. "autoload": {
  12603. "psr-4": {
  12604. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12605. },
  12606. "exclude-from-classmap": [
  12607. "/Tests/"
  12608. ]
  12609. },
  12610. "notification-url": "https://packagist.org/downloads/",
  12611. "license": [
  12612. "MIT"
  12613. ],
  12614. "authors": [
  12615. {
  12616. "name": "Fabien Potencier",
  12617. "email": "fabien@symfony.com"
  12618. },
  12619. {
  12620. "name": "Symfony Community",
  12621. "homepage": "https://symfony.com/contributors"
  12622. }
  12623. ],
  12624. "description": "PSR HTTP message bridge",
  12625. "homepage": "https://symfony.com",
  12626. "keywords": [
  12627. "http",
  12628. "http-message",
  12629. "psr-17",
  12630. "psr-7"
  12631. ],
  12632. "support": {
  12633. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.13"
  12634. },
  12635. "funding": [
  12636. {
  12637. "url": "https://symfony.com/sponsor",
  12638. "type": "custom"
  12639. },
  12640. {
  12641. "url": "https://github.com/fabpot",
  12642. "type": "github"
  12643. },
  12644. {
  12645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12646. "type": "tidelift"
  12647. }
  12648. ],
  12649. "time": "2024-09-25T14:18:03+00:00"
  12650. },
  12651. {
  12652. "name": "symfony/routing",
  12653. "version": "v6.4.22",
  12654. "source": {
  12655. "type": "git",
  12656. "url": "https://github.com/symfony/routing.git",
  12657. "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670"
  12658. },
  12659. "dist": {
  12660. "type": "zip",
  12661. "url": "https://api.github.com/repos/symfony/routing/zipball/1f5234e8457164a3a0038a4c0a4ba27876a9c670",
  12662. "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670",
  12663. "shasum": ""
  12664. },
  12665. "require": {
  12666. "php": ">=8.1",
  12667. "symfony/deprecation-contracts": "^2.5|^3"
  12668. },
  12669. "conflict": {
  12670. "doctrine/annotations": "<1.12",
  12671. "symfony/config": "<6.2",
  12672. "symfony/dependency-injection": "<5.4",
  12673. "symfony/yaml": "<5.4"
  12674. },
  12675. "require-dev": {
  12676. "doctrine/annotations": "^1.12|^2",
  12677. "psr/log": "^1|^2|^3",
  12678. "symfony/config": "^6.2|^7.0",
  12679. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12680. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12681. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12682. "symfony/yaml": "^5.4|^6.0|^7.0"
  12683. },
  12684. "type": "library",
  12685. "autoload": {
  12686. "psr-4": {
  12687. "Symfony\\Component\\Routing\\": ""
  12688. },
  12689. "exclude-from-classmap": [
  12690. "/Tests/"
  12691. ]
  12692. },
  12693. "notification-url": "https://packagist.org/downloads/",
  12694. "license": [
  12695. "MIT"
  12696. ],
  12697. "authors": [
  12698. {
  12699. "name": "Fabien Potencier",
  12700. "email": "fabien@symfony.com"
  12701. },
  12702. {
  12703. "name": "Symfony Community",
  12704. "homepage": "https://symfony.com/contributors"
  12705. }
  12706. ],
  12707. "description": "Maps an HTTP request to a set of configuration variables",
  12708. "homepage": "https://symfony.com",
  12709. "keywords": [
  12710. "router",
  12711. "routing",
  12712. "uri",
  12713. "url"
  12714. ],
  12715. "support": {
  12716. "source": "https://github.com/symfony/routing/tree/v6.4.22"
  12717. },
  12718. "funding": [
  12719. {
  12720. "url": "https://symfony.com/sponsor",
  12721. "type": "custom"
  12722. },
  12723. {
  12724. "url": "https://github.com/fabpot",
  12725. "type": "github"
  12726. },
  12727. {
  12728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12729. "type": "tidelift"
  12730. }
  12731. ],
  12732. "time": "2025-04-27T16:08:38+00:00"
  12733. },
  12734. {
  12735. "name": "symfony/serializer",
  12736. "version": "v6.4.23",
  12737. "source": {
  12738. "type": "git",
  12739. "url": "https://github.com/symfony/serializer.git",
  12740. "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06"
  12741. },
  12742. "dist": {
  12743. "type": "zip",
  12744. "url": "https://api.github.com/repos/symfony/serializer/zipball/b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06",
  12745. "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06",
  12746. "shasum": ""
  12747. },
  12748. "require": {
  12749. "php": ">=8.1",
  12750. "symfony/deprecation-contracts": "^2.5|^3",
  12751. "symfony/polyfill-ctype": "~1.8"
  12752. },
  12753. "conflict": {
  12754. "doctrine/annotations": "<1.12",
  12755. "phpdocumentor/reflection-docblock": "<3.2.2",
  12756. "phpdocumentor/type-resolver": "<1.4.0",
  12757. "symfony/dependency-injection": "<5.4",
  12758. "symfony/property-access": "<5.4",
  12759. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12760. "symfony/uid": "<5.4",
  12761. "symfony/validator": "<6.4",
  12762. "symfony/yaml": "<5.4"
  12763. },
  12764. "require-dev": {
  12765. "doctrine/annotations": "^1.12|^2",
  12766. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12767. "seld/jsonlint": "^1.10",
  12768. "symfony/cache": "^5.4|^6.0|^7.0",
  12769. "symfony/config": "^5.4|^6.0|^7.0",
  12770. "symfony/console": "^5.4|^6.0|^7.0",
  12771. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12772. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12773. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12774. "symfony/form": "^5.4|^6.0|^7.0",
  12775. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12776. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12777. "symfony/messenger": "^5.4|^6.0|^7.0",
  12778. "symfony/mime": "^5.4|^6.0|^7.0",
  12779. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12780. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12781. "symfony/translation-contracts": "^2.5|^3",
  12782. "symfony/uid": "^5.4|^6.0|^7.0",
  12783. "symfony/validator": "^6.4|^7.0",
  12784. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12785. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12786. "symfony/yaml": "^5.4|^6.0|^7.0"
  12787. },
  12788. "type": "library",
  12789. "autoload": {
  12790. "psr-4": {
  12791. "Symfony\\Component\\Serializer\\": ""
  12792. },
  12793. "exclude-from-classmap": [
  12794. "/Tests/"
  12795. ]
  12796. },
  12797. "notification-url": "https://packagist.org/downloads/",
  12798. "license": [
  12799. "MIT"
  12800. ],
  12801. "authors": [
  12802. {
  12803. "name": "Fabien Potencier",
  12804. "email": "fabien@symfony.com"
  12805. },
  12806. {
  12807. "name": "Symfony Community",
  12808. "homepage": "https://symfony.com/contributors"
  12809. }
  12810. ],
  12811. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12812. "homepage": "https://symfony.com",
  12813. "support": {
  12814. "source": "https://github.com/symfony/serializer/tree/v6.4.23"
  12815. },
  12816. "funding": [
  12817. {
  12818. "url": "https://symfony.com/sponsor",
  12819. "type": "custom"
  12820. },
  12821. {
  12822. "url": "https://github.com/fabpot",
  12823. "type": "github"
  12824. },
  12825. {
  12826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12827. "type": "tidelift"
  12828. }
  12829. ],
  12830. "time": "2025-06-27T15:34:20+00:00"
  12831. },
  12832. {
  12833. "name": "symfony/service-contracts",
  12834. "version": "v3.5.1",
  12835. "source": {
  12836. "type": "git",
  12837. "url": "https://github.com/symfony/service-contracts.git",
  12838. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  12839. },
  12840. "dist": {
  12841. "type": "zip",
  12842. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12843. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12844. "shasum": ""
  12845. },
  12846. "require": {
  12847. "php": ">=8.1",
  12848. "psr/container": "^1.1|^2.0",
  12849. "symfony/deprecation-contracts": "^2.5|^3"
  12850. },
  12851. "conflict": {
  12852. "ext-psr": "<1.1|>=2"
  12853. },
  12854. "type": "library",
  12855. "extra": {
  12856. "thanks": {
  12857. "url": "https://github.com/symfony/contracts",
  12858. "name": "symfony/contracts"
  12859. },
  12860. "branch-alias": {
  12861. "dev-main": "3.5-dev"
  12862. }
  12863. },
  12864. "autoload": {
  12865. "psr-4": {
  12866. "Symfony\\Contracts\\Service\\": ""
  12867. },
  12868. "exclude-from-classmap": [
  12869. "/Test/"
  12870. ]
  12871. },
  12872. "notification-url": "https://packagist.org/downloads/",
  12873. "license": [
  12874. "MIT"
  12875. ],
  12876. "authors": [
  12877. {
  12878. "name": "Nicolas Grekas",
  12879. "email": "p@tchwork.com"
  12880. },
  12881. {
  12882. "name": "Symfony Community",
  12883. "homepage": "https://symfony.com/contributors"
  12884. }
  12885. ],
  12886. "description": "Generic abstractions related to writing services",
  12887. "homepage": "https://symfony.com",
  12888. "keywords": [
  12889. "abstractions",
  12890. "contracts",
  12891. "decoupling",
  12892. "interfaces",
  12893. "interoperability",
  12894. "standards"
  12895. ],
  12896. "support": {
  12897. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  12898. },
  12899. "funding": [
  12900. {
  12901. "url": "https://symfony.com/sponsor",
  12902. "type": "custom"
  12903. },
  12904. {
  12905. "url": "https://github.com/fabpot",
  12906. "type": "github"
  12907. },
  12908. {
  12909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12910. "type": "tidelift"
  12911. }
  12912. ],
  12913. "time": "2024-09-25T14:20:29+00:00"
  12914. },
  12915. {
  12916. "name": "symfony/string",
  12917. "version": "v6.4.21",
  12918. "source": {
  12919. "type": "git",
  12920. "url": "https://github.com/symfony/string.git",
  12921. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  12922. },
  12923. "dist": {
  12924. "type": "zip",
  12925. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  12926. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  12927. "shasum": ""
  12928. },
  12929. "require": {
  12930. "php": ">=8.1",
  12931. "symfony/polyfill-ctype": "~1.8",
  12932. "symfony/polyfill-intl-grapheme": "~1.0",
  12933. "symfony/polyfill-intl-normalizer": "~1.0",
  12934. "symfony/polyfill-mbstring": "~1.0"
  12935. },
  12936. "conflict": {
  12937. "symfony/translation-contracts": "<2.5"
  12938. },
  12939. "require-dev": {
  12940. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12941. "symfony/http-client": "^5.4|^6.0|^7.0",
  12942. "symfony/intl": "^6.2|^7.0",
  12943. "symfony/translation-contracts": "^2.5|^3.0",
  12944. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12945. },
  12946. "type": "library",
  12947. "autoload": {
  12948. "files": [
  12949. "Resources/functions.php"
  12950. ],
  12951. "psr-4": {
  12952. "Symfony\\Component\\String\\": ""
  12953. },
  12954. "exclude-from-classmap": [
  12955. "/Tests/"
  12956. ]
  12957. },
  12958. "notification-url": "https://packagist.org/downloads/",
  12959. "license": [
  12960. "MIT"
  12961. ],
  12962. "authors": [
  12963. {
  12964. "name": "Nicolas Grekas",
  12965. "email": "p@tchwork.com"
  12966. },
  12967. {
  12968. "name": "Symfony Community",
  12969. "homepage": "https://symfony.com/contributors"
  12970. }
  12971. ],
  12972. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12973. "homepage": "https://symfony.com",
  12974. "keywords": [
  12975. "grapheme",
  12976. "i18n",
  12977. "string",
  12978. "unicode",
  12979. "utf-8",
  12980. "utf8"
  12981. ],
  12982. "support": {
  12983. "source": "https://github.com/symfony/string/tree/v6.4.21"
  12984. },
  12985. "funding": [
  12986. {
  12987. "url": "https://symfony.com/sponsor",
  12988. "type": "custom"
  12989. },
  12990. {
  12991. "url": "https://github.com/fabpot",
  12992. "type": "github"
  12993. },
  12994. {
  12995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12996. "type": "tidelift"
  12997. }
  12998. ],
  12999. "time": "2025-04-18T15:23:29+00:00"
  13000. },
  13001. {
  13002. "name": "symfony/translation-contracts",
  13003. "version": "v3.5.1",
  13004. "source": {
  13005. "type": "git",
  13006. "url": "https://github.com/symfony/translation-contracts.git",
  13007. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  13008. },
  13009. "dist": {
  13010. "type": "zip",
  13011. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  13012. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  13013. "shasum": ""
  13014. },
  13015. "require": {
  13016. "php": ">=8.1"
  13017. },
  13018. "type": "library",
  13019. "extra": {
  13020. "thanks": {
  13021. "url": "https://github.com/symfony/contracts",
  13022. "name": "symfony/contracts"
  13023. },
  13024. "branch-alias": {
  13025. "dev-main": "3.5-dev"
  13026. }
  13027. },
  13028. "autoload": {
  13029. "psr-4": {
  13030. "Symfony\\Contracts\\Translation\\": ""
  13031. },
  13032. "exclude-from-classmap": [
  13033. "/Test/"
  13034. ]
  13035. },
  13036. "notification-url": "https://packagist.org/downloads/",
  13037. "license": [
  13038. "MIT"
  13039. ],
  13040. "authors": [
  13041. {
  13042. "name": "Nicolas Grekas",
  13043. "email": "p@tchwork.com"
  13044. },
  13045. {
  13046. "name": "Symfony Community",
  13047. "homepage": "https://symfony.com/contributors"
  13048. }
  13049. ],
  13050. "description": "Generic abstractions related to translation",
  13051. "homepage": "https://symfony.com",
  13052. "keywords": [
  13053. "abstractions",
  13054. "contracts",
  13055. "decoupling",
  13056. "interfaces",
  13057. "interoperability",
  13058. "standards"
  13059. ],
  13060. "support": {
  13061. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  13062. },
  13063. "funding": [
  13064. {
  13065. "url": "https://symfony.com/sponsor",
  13066. "type": "custom"
  13067. },
  13068. {
  13069. "url": "https://github.com/fabpot",
  13070. "type": "github"
  13071. },
  13072. {
  13073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13074. "type": "tidelift"
  13075. }
  13076. ],
  13077. "time": "2024-09-25T14:20:29+00:00"
  13078. },
  13079. {
  13080. "name": "symfony/validator",
  13081. "version": "v6.4.23",
  13082. "source": {
  13083. "type": "git",
  13084. "url": "https://github.com/symfony/validator.git",
  13085. "reference": "6506760ab57e7cda5bde9cdaed736526162284bc"
  13086. },
  13087. "dist": {
  13088. "type": "zip",
  13089. "url": "https://api.github.com/repos/symfony/validator/zipball/6506760ab57e7cda5bde9cdaed736526162284bc",
  13090. "reference": "6506760ab57e7cda5bde9cdaed736526162284bc",
  13091. "shasum": ""
  13092. },
  13093. "require": {
  13094. "php": ">=8.1",
  13095. "symfony/deprecation-contracts": "^2.5|^3",
  13096. "symfony/polyfill-ctype": "~1.8",
  13097. "symfony/polyfill-mbstring": "~1.0",
  13098. "symfony/polyfill-php83": "^1.27",
  13099. "symfony/translation-contracts": "^2.5|^3"
  13100. },
  13101. "conflict": {
  13102. "doctrine/annotations": "<1.13",
  13103. "doctrine/lexer": "<1.1",
  13104. "symfony/dependency-injection": "<5.4",
  13105. "symfony/expression-language": "<5.4",
  13106. "symfony/http-kernel": "<5.4",
  13107. "symfony/intl": "<5.4",
  13108. "symfony/property-info": "<5.4",
  13109. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13110. "symfony/yaml": "<5.4"
  13111. },
  13112. "require-dev": {
  13113. "doctrine/annotations": "^1.13|^2",
  13114. "egulias/email-validator": "^2.1.10|^3|^4",
  13115. "symfony/cache": "^5.4|^6.0|^7.0",
  13116. "symfony/config": "^5.4|^6.0|^7.0",
  13117. "symfony/console": "^5.4|^6.0|^7.0",
  13118. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13119. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13120. "symfony/finder": "^5.4|^6.0|^7.0",
  13121. "symfony/http-client": "^5.4|^6.0|^7.0",
  13122. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13123. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13124. "symfony/intl": "^5.4|^6.0|^7.0",
  13125. "symfony/mime": "^5.4|^6.0|^7.0",
  13126. "symfony/property-access": "^5.4|^6.0|^7.0",
  13127. "symfony/property-info": "^5.4|^6.0|^7.0",
  13128. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13129. "symfony/yaml": "^5.4|^6.0|^7.0"
  13130. },
  13131. "type": "library",
  13132. "autoload": {
  13133. "psr-4": {
  13134. "Symfony\\Component\\Validator\\": ""
  13135. },
  13136. "exclude-from-classmap": [
  13137. "/Tests/",
  13138. "/Resources/bin/"
  13139. ]
  13140. },
  13141. "notification-url": "https://packagist.org/downloads/",
  13142. "license": [
  13143. "MIT"
  13144. ],
  13145. "authors": [
  13146. {
  13147. "name": "Fabien Potencier",
  13148. "email": "fabien@symfony.com"
  13149. },
  13150. {
  13151. "name": "Symfony Community",
  13152. "homepage": "https://symfony.com/contributors"
  13153. }
  13154. ],
  13155. "description": "Provides tools to validate values",
  13156. "homepage": "https://symfony.com",
  13157. "support": {
  13158. "source": "https://github.com/symfony/validator/tree/v6.4.23"
  13159. },
  13160. "funding": [
  13161. {
  13162. "url": "https://symfony.com/sponsor",
  13163. "type": "custom"
  13164. },
  13165. {
  13166. "url": "https://github.com/fabpot",
  13167. "type": "github"
  13168. },
  13169. {
  13170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13171. "type": "tidelift"
  13172. }
  13173. ],
  13174. "time": "2025-06-26T07:25:45+00:00"
  13175. },
  13176. {
  13177. "name": "symfony/var-dumper",
  13178. "version": "v6.4.23",
  13179. "source": {
  13180. "type": "git",
  13181. "url": "https://github.com/symfony/var-dumper.git",
  13182. "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600"
  13183. },
  13184. "dist": {
  13185. "type": "zip",
  13186. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600",
  13187. "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600",
  13188. "shasum": ""
  13189. },
  13190. "require": {
  13191. "php": ">=8.1",
  13192. "symfony/deprecation-contracts": "^2.5|^3",
  13193. "symfony/polyfill-mbstring": "~1.0"
  13194. },
  13195. "conflict": {
  13196. "symfony/console": "<5.4"
  13197. },
  13198. "require-dev": {
  13199. "ext-iconv": "*",
  13200. "symfony/console": "^5.4|^6.0|^7.0",
  13201. "symfony/error-handler": "^6.3|^7.0",
  13202. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13203. "symfony/process": "^5.4|^6.0|^7.0",
  13204. "symfony/uid": "^5.4|^6.0|^7.0",
  13205. "twig/twig": "^2.13|^3.0.4"
  13206. },
  13207. "bin": [
  13208. "Resources/bin/var-dump-server"
  13209. ],
  13210. "type": "library",
  13211. "autoload": {
  13212. "files": [
  13213. "Resources/functions/dump.php"
  13214. ],
  13215. "psr-4": {
  13216. "Symfony\\Component\\VarDumper\\": ""
  13217. },
  13218. "exclude-from-classmap": [
  13219. "/Tests/"
  13220. ]
  13221. },
  13222. "notification-url": "https://packagist.org/downloads/",
  13223. "license": [
  13224. "MIT"
  13225. ],
  13226. "authors": [
  13227. {
  13228. "name": "Nicolas Grekas",
  13229. "email": "p@tchwork.com"
  13230. },
  13231. {
  13232. "name": "Symfony Community",
  13233. "homepage": "https://symfony.com/contributors"
  13234. }
  13235. ],
  13236. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13237. "homepage": "https://symfony.com",
  13238. "keywords": [
  13239. "debug",
  13240. "dump"
  13241. ],
  13242. "support": {
  13243. "source": "https://github.com/symfony/var-dumper/tree/v6.4.23"
  13244. },
  13245. "funding": [
  13246. {
  13247. "url": "https://symfony.com/sponsor",
  13248. "type": "custom"
  13249. },
  13250. {
  13251. "url": "https://github.com/fabpot",
  13252. "type": "github"
  13253. },
  13254. {
  13255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13256. "type": "tidelift"
  13257. }
  13258. ],
  13259. "time": "2025-06-27T15:05:27+00:00"
  13260. },
  13261. {
  13262. "name": "symfony/var-exporter",
  13263. "version": "v6.4.22",
  13264. "source": {
  13265. "type": "git",
  13266. "url": "https://github.com/symfony/var-exporter.git",
  13267. "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9"
  13268. },
  13269. "dist": {
  13270. "type": "zip",
  13271. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f28cf841f5654955c9f88ceaf4b9dc29571988a9",
  13272. "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9",
  13273. "shasum": ""
  13274. },
  13275. "require": {
  13276. "php": ">=8.1",
  13277. "symfony/deprecation-contracts": "^2.5|^3"
  13278. },
  13279. "require-dev": {
  13280. "symfony/property-access": "^6.4|^7.0",
  13281. "symfony/serializer": "^6.4|^7.0",
  13282. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13283. },
  13284. "type": "library",
  13285. "autoload": {
  13286. "psr-4": {
  13287. "Symfony\\Component\\VarExporter\\": ""
  13288. },
  13289. "exclude-from-classmap": [
  13290. "/Tests/"
  13291. ]
  13292. },
  13293. "notification-url": "https://packagist.org/downloads/",
  13294. "license": [
  13295. "MIT"
  13296. ],
  13297. "authors": [
  13298. {
  13299. "name": "Nicolas Grekas",
  13300. "email": "p@tchwork.com"
  13301. },
  13302. {
  13303. "name": "Symfony Community",
  13304. "homepage": "https://symfony.com/contributors"
  13305. }
  13306. ],
  13307. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13308. "homepage": "https://symfony.com",
  13309. "keywords": [
  13310. "clone",
  13311. "construct",
  13312. "export",
  13313. "hydrate",
  13314. "instantiate",
  13315. "lazy-loading",
  13316. "proxy",
  13317. "serialize"
  13318. ],
  13319. "support": {
  13320. "source": "https://github.com/symfony/var-exporter/tree/v6.4.22"
  13321. },
  13322. "funding": [
  13323. {
  13324. "url": "https://symfony.com/sponsor",
  13325. "type": "custom"
  13326. },
  13327. {
  13328. "url": "https://github.com/fabpot",
  13329. "type": "github"
  13330. },
  13331. {
  13332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13333. "type": "tidelift"
  13334. }
  13335. ],
  13336. "time": "2025-05-14T13:00:13+00:00"
  13337. },
  13338. {
  13339. "name": "symfony/yaml",
  13340. "version": "v6.4.23",
  13341. "source": {
  13342. "type": "git",
  13343. "url": "https://github.com/symfony/yaml.git",
  13344. "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b"
  13345. },
  13346. "dist": {
  13347. "type": "zip",
  13348. "url": "https://api.github.com/repos/symfony/yaml/zipball/93e29e0deb5f1b2e360adfb389a20d25eb81a27b",
  13349. "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b",
  13350. "shasum": ""
  13351. },
  13352. "require": {
  13353. "php": ">=8.1",
  13354. "symfony/deprecation-contracts": "^2.5|^3",
  13355. "symfony/polyfill-ctype": "^1.8"
  13356. },
  13357. "conflict": {
  13358. "symfony/console": "<5.4"
  13359. },
  13360. "require-dev": {
  13361. "symfony/console": "^5.4|^6.0|^7.0"
  13362. },
  13363. "bin": [
  13364. "Resources/bin/yaml-lint"
  13365. ],
  13366. "type": "library",
  13367. "autoload": {
  13368. "psr-4": {
  13369. "Symfony\\Component\\Yaml\\": ""
  13370. },
  13371. "exclude-from-classmap": [
  13372. "/Tests/"
  13373. ]
  13374. },
  13375. "notification-url": "https://packagist.org/downloads/",
  13376. "license": [
  13377. "MIT"
  13378. ],
  13379. "authors": [
  13380. {
  13381. "name": "Fabien Potencier",
  13382. "email": "fabien@symfony.com"
  13383. },
  13384. {
  13385. "name": "Symfony Community",
  13386. "homepage": "https://symfony.com/contributors"
  13387. }
  13388. ],
  13389. "description": "Loads and dumps YAML files",
  13390. "homepage": "https://symfony.com",
  13391. "support": {
  13392. "source": "https://github.com/symfony/yaml/tree/v6.4.23"
  13393. },
  13394. "funding": [
  13395. {
  13396. "url": "https://symfony.com/sponsor",
  13397. "type": "custom"
  13398. },
  13399. {
  13400. "url": "https://github.com/fabpot",
  13401. "type": "github"
  13402. },
  13403. {
  13404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13405. "type": "tidelift"
  13406. }
  13407. ],
  13408. "time": "2025-06-03T06:46:12+00:00"
  13409. },
  13410. {
  13411. "name": "twig/twig",
  13412. "version": "v3.20.0",
  13413. "source": {
  13414. "type": "git",
  13415. "url": "https://github.com/twigphp/Twig.git",
  13416. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  13417. },
  13418. "dist": {
  13419. "type": "zip",
  13420. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  13421. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  13422. "shasum": ""
  13423. },
  13424. "require": {
  13425. "php": ">=8.1.0",
  13426. "symfony/deprecation-contracts": "^2.5|^3",
  13427. "symfony/polyfill-ctype": "^1.8",
  13428. "symfony/polyfill-mbstring": "^1.3"
  13429. },
  13430. "require-dev": {
  13431. "phpstan/phpstan": "^2.0",
  13432. "psr/container": "^1.0|^2.0",
  13433. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13434. },
  13435. "type": "library",
  13436. "autoload": {
  13437. "files": [
  13438. "src/Resources/core.php",
  13439. "src/Resources/debug.php",
  13440. "src/Resources/escaper.php",
  13441. "src/Resources/string_loader.php"
  13442. ],
  13443. "psr-4": {
  13444. "Twig\\": "src/"
  13445. }
  13446. },
  13447. "notification-url": "https://packagist.org/downloads/",
  13448. "license": [
  13449. "BSD-3-Clause"
  13450. ],
  13451. "authors": [
  13452. {
  13453. "name": "Fabien Potencier",
  13454. "email": "fabien@symfony.com",
  13455. "homepage": "http://fabien.potencier.org",
  13456. "role": "Lead Developer"
  13457. },
  13458. {
  13459. "name": "Twig Team",
  13460. "role": "Contributors"
  13461. },
  13462. {
  13463. "name": "Armin Ronacher",
  13464. "email": "armin.ronacher@active-4.com",
  13465. "role": "Project Founder"
  13466. }
  13467. ],
  13468. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13469. "homepage": "https://twig.symfony.com",
  13470. "keywords": [
  13471. "templating"
  13472. ],
  13473. "support": {
  13474. "issues": "https://github.com/twigphp/Twig/issues",
  13475. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  13476. },
  13477. "funding": [
  13478. {
  13479. "url": "https://github.com/fabpot",
  13480. "type": "github"
  13481. },
  13482. {
  13483. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13484. "type": "tidelift"
  13485. }
  13486. ],
  13487. "time": "2025-02-13T08:34:43+00:00"
  13488. },
  13489. {
  13490. "name": "webflo/drupal-finder",
  13491. "version": "1.3.1",
  13492. "source": {
  13493. "type": "git",
  13494. "url": "https://github.com/webflo/drupal-finder.git",
  13495. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13496. },
  13497. "dist": {
  13498. "type": "zip",
  13499. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13500. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13501. "shasum": ""
  13502. },
  13503. "require": {
  13504. "composer-runtime-api": "^2.2",
  13505. "php": ">=8.1"
  13506. },
  13507. "require-dev": {
  13508. "mikey179/vfsstream": "^1.6",
  13509. "phpunit/phpunit": "^10.4",
  13510. "symfony/process": "^6.4"
  13511. },
  13512. "type": "library",
  13513. "autoload": {
  13514. "psr-4": {
  13515. "DrupalFinder\\": "src/"
  13516. }
  13517. },
  13518. "notification-url": "https://packagist.org/downloads/",
  13519. "license": [
  13520. "GPL-2.0-or-later"
  13521. ],
  13522. "authors": [
  13523. {
  13524. "name": "Florian Weber",
  13525. "email": "florian@webflo.org"
  13526. }
  13527. ],
  13528. "description": "Helper class to locate a Drupal installation.",
  13529. "support": {
  13530. "issues": "https://github.com/webflo/drupal-finder/issues",
  13531. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13532. },
  13533. "time": "2024-06-28T13:45:36+00:00"
  13534. },
  13535. {
  13536. "name": "wikimedia/composer-merge-plugin",
  13537. "version": "v2.1.0",
  13538. "source": {
  13539. "type": "git",
  13540. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13541. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13542. },
  13543. "dist": {
  13544. "type": "zip",
  13545. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13546. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13547. "shasum": ""
  13548. },
  13549. "require": {
  13550. "composer-plugin-api": "^1.1||^2.0",
  13551. "php": ">=7.2.0"
  13552. },
  13553. "require-dev": {
  13554. "composer/composer": "^1.1||^2.0",
  13555. "ext-json": "*",
  13556. "mediawiki/mediawiki-phan-config": "0.11.1",
  13557. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13558. "phpspec/prophecy": "~1.15.0",
  13559. "phpunit/phpunit": "^8.5||^9.0",
  13560. "squizlabs/php_codesniffer": "~3.7.1"
  13561. },
  13562. "type": "composer-plugin",
  13563. "extra": {
  13564. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13565. "branch-alias": {
  13566. "dev-master": "2.x-dev"
  13567. }
  13568. },
  13569. "autoload": {
  13570. "psr-4": {
  13571. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13572. }
  13573. },
  13574. "notification-url": "https://packagist.org/downloads/",
  13575. "license": [
  13576. "MIT"
  13577. ],
  13578. "authors": [
  13579. {
  13580. "name": "Bryan Davis",
  13581. "email": "bd808@wikimedia.org"
  13582. }
  13583. ],
  13584. "description": "Composer plugin to merge multiple composer.json files",
  13585. "support": {
  13586. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13587. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13588. },
  13589. "time": "2023-04-15T19:07:00+00:00"
  13590. },
  13591. {
  13592. "name": "willdurand/geocoder",
  13593. "version": "4.6.0",
  13594. "source": {
  13595. "type": "git",
  13596. "url": "https://github.com/geocoder-php/php-common.git",
  13597. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1"
  13598. },
  13599. "dist": {
  13600. "type": "zip",
  13601. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13602. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13603. "shasum": ""
  13604. },
  13605. "require": {
  13606. "php": "^7.4 || ^8.0"
  13607. },
  13608. "require-dev": {
  13609. "nyholm/nsa": "^1.1",
  13610. "phpunit/phpunit": "^9.5",
  13611. "symfony/stopwatch": "~2.5"
  13612. },
  13613. "suggest": {
  13614. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13615. },
  13616. "type": "library",
  13617. "extra": {
  13618. "branch-alias": {
  13619. "dev-master": "4.1-dev"
  13620. }
  13621. },
  13622. "autoload": {
  13623. "psr-4": {
  13624. "Geocoder\\": ""
  13625. },
  13626. "exclude-from-classmap": [
  13627. "/Tests/"
  13628. ]
  13629. },
  13630. "notification-url": "https://packagist.org/downloads/",
  13631. "license": [
  13632. "MIT"
  13633. ],
  13634. "authors": [
  13635. {
  13636. "name": "William Durand",
  13637. "email": "william.durand1@gmail.com"
  13638. }
  13639. ],
  13640. "description": "Common files for PHP Geocoder",
  13641. "homepage": "http://geocoder-php.org",
  13642. "keywords": [
  13643. "abstraction",
  13644. "geocoder",
  13645. "geocoding",
  13646. "geoip"
  13647. ],
  13648. "support": {
  13649. "source": "https://github.com/geocoder-php/php-common/tree/4.6.0"
  13650. },
  13651. "time": "2022-07-30T11:09:43+00:00"
  13652. }
  13653. ],
  13654. "packages-dev": [],
  13655. "aliases": [],
  13656. "minimum-stability": "stable",
  13657. "stability-flags": {
  13658. "drupal/advanced_text_formatter": 5,
  13659. "drupal/computed_token_field": 10,
  13660. "drupal/config_update": 15,
  13661. "drupal/context": 5,
  13662. "drupal/date_range_formatter": 20,
  13663. "drupal/email_registration": 5,
  13664. "drupal/entity_clone": 20,
  13665. "drupal/inline_entity_form": 5,
  13666. "drupal/maxlength": 10,
  13667. "drupal/page_manager": 5,
  13668. "drupal/pathologic": 15,
  13669. "drupal/smtp": 10,
  13670. "drupal/synonyms": 10,
  13671. "drupal/translation_views": 15,
  13672. "drupal/ultimate_cron": 15
  13673. },
  13674. "prefer-stable": true,
  13675. "prefer-lowest": false,
  13676. "platform": {},
  13677. "platform-dev": {},
  13678. "plugin-api-version": "2.6.0"
  13679. }