composer.lock 504 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719
  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": "6c1b79c1a147a1eca56f106696a7cf44",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  62. },
  63. "time": "2025-03-13T08:50:04+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "clue/stream-filter",
  127. "version": "v1.7.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/clue/stream-filter.git",
  131. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  136. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3"
  141. },
  142. "require-dev": {
  143. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  144. },
  145. "type": "library",
  146. "autoload": {
  147. "files": [
  148. "src/functions_include.php"
  149. ],
  150. "psr-4": {
  151. "Clue\\StreamFilter\\": "src/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "Christian Lück",
  161. "email": "christian@clue.engineering"
  162. }
  163. ],
  164. "description": "A simple and modern approach to stream filtering in PHP",
  165. "homepage": "https://github.com/clue/stream-filter",
  166. "keywords": [
  167. "bucket brigade",
  168. "callback",
  169. "filter",
  170. "php_user_filter",
  171. "stream",
  172. "stream_filter_append",
  173. "stream_filter_register"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/clue/stream-filter/issues",
  177. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  178. },
  179. "funding": [
  180. {
  181. "url": "https://clue.engineering/support",
  182. "type": "custom"
  183. },
  184. {
  185. "url": "https://github.com/clue",
  186. "type": "github"
  187. }
  188. ],
  189. "time": "2023-12-20T15:40:13+00:00"
  190. },
  191. {
  192. "name": "commerceguys/addressing",
  193. "version": "v2.2.4",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda",
  202. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.6 || ^2.0",
  207. "php": ">=8.0"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.11",
  212. "phpunit/phpunit": "^9.6",
  213. "squizlabs/php_codesniffer": "^3.7",
  214. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "2.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "CommerceGuys\\Addressing\\": "src"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Bojan Zivanovic"
  237. },
  238. {
  239. "name": "Damien Tournoud"
  240. }
  241. ],
  242. "description": "Addressing library powered by CLDR and Google's address data.",
  243. "keywords": [
  244. "address",
  245. "internationalization",
  246. "localization",
  247. "postal"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/commerceguys/addressing/issues",
  251. "source": "https://github.com/commerceguys/addressing/tree/v2.2.4"
  252. },
  253. "time": "2025-01-13T16:03:24+00:00"
  254. },
  255. {
  256. "name": "components/highlightjs",
  257. "version": "9.7.0",
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  261. },
  262. "type": "drupal-library"
  263. },
  264. {
  265. "name": "composer/installers",
  266. "version": "v1.12.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/installers.git",
  270. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  275. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "composer-plugin-api": "^1.0 || ^2.0"
  280. },
  281. "replace": {
  282. "roundcube/plugin-installer": "*",
  283. "shama/baton": "*"
  284. },
  285. "require-dev": {
  286. "composer/composer": "1.6.* || ^2.0",
  287. "composer/semver": "^1 || ^3",
  288. "phpstan/phpstan": "^0.12.55",
  289. "phpstan/phpstan-phpunit": "^0.12.16",
  290. "symfony/phpunit-bridge": "^4.2 || ^5",
  291. "symfony/process": "^2.3"
  292. },
  293. "type": "composer-plugin",
  294. "extra": {
  295. "class": "Composer\\Installers\\Plugin",
  296. "branch-alias": {
  297. "dev-main": "1.x-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Composer\\Installers\\": "src/Composer/Installers"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Kyle Robinson Young",
  312. "email": "kyle@dontkry.com",
  313. "homepage": "https://github.com/shama"
  314. }
  315. ],
  316. "description": "A multi-framework Composer library installer",
  317. "homepage": "https://composer.github.io/installers/",
  318. "keywords": [
  319. "Craft",
  320. "Dolibarr",
  321. "Eliasis",
  322. "Hurad",
  323. "ImageCMS",
  324. "Kanboard",
  325. "Lan Management System",
  326. "MODX Evo",
  327. "MantisBT",
  328. "Mautic",
  329. "Maya",
  330. "OXID",
  331. "Plentymarkets",
  332. "Porto",
  333. "RadPHP",
  334. "SMF",
  335. "Starbug",
  336. "Thelia",
  337. "Whmcs",
  338. "WolfCMS",
  339. "agl",
  340. "aimeos",
  341. "annotatecms",
  342. "attogram",
  343. "bitrix",
  344. "cakephp",
  345. "chef",
  346. "cockpit",
  347. "codeigniter",
  348. "concrete5",
  349. "croogo",
  350. "dokuwiki",
  351. "drupal",
  352. "eZ Platform",
  353. "elgg",
  354. "expressionengine",
  355. "fuelphp",
  356. "grav",
  357. "installer",
  358. "itop",
  359. "joomla",
  360. "known",
  361. "kohana",
  362. "laravel",
  363. "lavalite",
  364. "lithium",
  365. "magento",
  366. "majima",
  367. "mako",
  368. "mediawiki",
  369. "miaoxing",
  370. "modulework",
  371. "modx",
  372. "moodle",
  373. "osclass",
  374. "pantheon",
  375. "phpbb",
  376. "piwik",
  377. "ppi",
  378. "processwire",
  379. "puppet",
  380. "pxcms",
  381. "reindex",
  382. "roundcube",
  383. "shopware",
  384. "silverstripe",
  385. "sydes",
  386. "sylius",
  387. "symfony",
  388. "tastyigniter",
  389. "typo3",
  390. "wordpress",
  391. "yawik",
  392. "zend",
  393. "zikula"
  394. ],
  395. "support": {
  396. "issues": "https://github.com/composer/installers/issues",
  397. "source": "https://github.com/composer/installers/tree/v1.12.0"
  398. },
  399. "funding": [
  400. {
  401. "url": "https://packagist.com",
  402. "type": "custom"
  403. },
  404. {
  405. "url": "https://github.com/composer",
  406. "type": "github"
  407. },
  408. {
  409. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  410. "type": "tidelift"
  411. }
  412. ],
  413. "time": "2021-09-13T08:19:44+00:00"
  414. },
  415. {
  416. "name": "composer/semver",
  417. "version": "3.4.4",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/composer/semver.git",
  421. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  426. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": "^5.3.2 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpstan/phpstan": "^1.11",
  434. "symfony/phpunit-bridge": "^3 || ^7"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-main": "3.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Composer\\Semver\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Nils Adermann",
  454. "email": "naderman@naderman.de",
  455. "homepage": "http://www.naderman.de"
  456. },
  457. {
  458. "name": "Jordi Boggiano",
  459. "email": "j.boggiano@seld.be",
  460. "homepage": "http://seld.be"
  461. },
  462. {
  463. "name": "Rob Bast",
  464. "email": "rob.bast@gmail.com",
  465. "homepage": "http://robbast.nl"
  466. }
  467. ],
  468. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  469. "keywords": [
  470. "semantic",
  471. "semver",
  472. "validation",
  473. "versioning"
  474. ],
  475. "support": {
  476. "irc": "ircs://irc.libera.chat:6697/composer",
  477. "issues": "https://github.com/composer/semver/issues",
  478. "source": "https://github.com/composer/semver/tree/3.4.4"
  479. },
  480. "funding": [
  481. {
  482. "url": "https://packagist.com",
  483. "type": "custom"
  484. },
  485. {
  486. "url": "https://github.com/composer",
  487. "type": "github"
  488. }
  489. ],
  490. "time": "2025-08-20T19:15:30+00:00"
  491. },
  492. {
  493. "name": "consolidation/annotated-command",
  494. "version": "4.10.4",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/consolidation/annotated-command.git",
  498. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  503. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "consolidation/output-formatters": "^4.3.1",
  508. "php": ">=7.1.3",
  509. "psr/log": "^1 || ^2 || ^3",
  510. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  511. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  512. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  513. },
  514. "require-dev": {
  515. "composer-runtime-api": "^2.0",
  516. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  517. "squizlabs/php_codesniffer": "^3",
  518. "yoast/phpunit-polyfills": "^0.2.0"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "branch-alias": {
  523. "dev-main": "4.x-dev"
  524. }
  525. },
  526. "autoload": {
  527. "psr-4": {
  528. "Consolidation\\AnnotatedCommand\\": "src"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Greg Anderson",
  538. "email": "greg.1.anderson@greenknowe.org"
  539. }
  540. ],
  541. "description": "Initialize Symfony Console commands from annotated command class methods.",
  542. "support": {
  543. "issues": "https://github.com/consolidation/annotated-command/issues",
  544. "source": "https://github.com/consolidation/annotated-command/tree/4.10.4"
  545. },
  546. "time": "2025-11-14T22:57:49+00:00"
  547. },
  548. {
  549. "name": "consolidation/config",
  550. "version": "2.1.2",
  551. "source": {
  552. "type": "git",
  553. "url": "https://github.com/consolidation/config.git",
  554. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  555. },
  556. "dist": {
  557. "type": "zip",
  558. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  559. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  560. "shasum": ""
  561. },
  562. "require": {
  563. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  564. "grasmash/expander": "^2.0.1 || ^3",
  565. "php": ">=7.1.3",
  566. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  567. },
  568. "require-dev": {
  569. "ext-json": "*",
  570. "phpunit/phpunit": ">=7.5.20",
  571. "squizlabs/php_codesniffer": "^3",
  572. "symfony/console": "^4 || ^5 || ^6",
  573. "symfony/yaml": "^4 || ^5 || ^6",
  574. "yoast/phpunit-polyfills": "^1"
  575. },
  576. "suggest": {
  577. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  578. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-main": "2.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Consolidation\\Config\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Greg Anderson",
  598. "email": "greg.1.anderson@greenknowe.org"
  599. }
  600. ],
  601. "description": "Provide configuration services for a commandline tool.",
  602. "support": {
  603. "issues": "https://github.com/consolidation/config/issues",
  604. "source": "https://github.com/consolidation/config/tree/2.1.2"
  605. },
  606. "time": "2022-10-06T17:48:03+00:00"
  607. },
  608. {
  609. "name": "consolidation/filter-via-dot-access-data",
  610. "version": "2.0.3",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  614. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  619. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  620. "shasum": ""
  621. },
  622. "require": {
  623. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  624. "php": ">=7.1.3"
  625. },
  626. "require-dev": {
  627. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  628. "squizlabs/php_codesniffer": "^3",
  629. "yoast/phpunit-polyfills": "^0.2.0"
  630. },
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-main": "2.x-dev"
  635. }
  636. },
  637. "autoload": {
  638. "psr-4": {
  639. "Consolidation\\Filter\\": "src"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Greg Anderson",
  649. "email": "greg.1.anderson@greenknowe.org"
  650. }
  651. ],
  652. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  653. "support": {
  654. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  655. },
  656. "time": "2025-11-14T21:01:06+00:00"
  657. },
  658. {
  659. "name": "consolidation/log",
  660. "version": "3.1.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/consolidation/log.git",
  664. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/consolidation/log/zipball/c1a87a94c01957697ec347fd67404d7f0030d1aa",
  669. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=8.0.0",
  674. "psr/log": "^3",
  675. "symfony/console": "^5 || ^6 || ^7"
  676. },
  677. "require-dev": {
  678. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  679. "squizlabs/php_codesniffer": "^3",
  680. "yoast/phpunit-polyfills": "^0.2.0"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "platform": {
  685. "php": "8.2.17"
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "Consolidation\\Log\\": "src"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Greg Anderson",
  700. "email": "greg.1.anderson@greenknowe.org"
  701. }
  702. ],
  703. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  704. "support": {
  705. "issues": "https://github.com/consolidation/log/issues",
  706. "source": "https://github.com/consolidation/log/tree/3.1.1"
  707. },
  708. "time": "2025-11-14T21:11:00+00:00"
  709. },
  710. {
  711. "name": "consolidation/output-formatters",
  712. "version": "4.7.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/consolidation/output-formatters.git",
  716. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  721. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  726. "php": ">=7.1.3",
  727. "symfony/console": "^4 || ^5 || ^6 || ^7",
  728. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  729. },
  730. "require-dev": {
  731. "php-coveralls/php-coveralls": "^2.4.2",
  732. "phpunit/phpunit": "^7 || ^8 || ^9",
  733. "squizlabs/php_codesniffer": "^3",
  734. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  735. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  736. "yoast/phpunit-polyfills": "^1"
  737. },
  738. "suggest": {
  739. "symfony/var-dumper": "For using the var_dump formatter"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "Consolidation\\OutputFormatters\\": "src"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Greg Anderson",
  754. "email": "greg.1.anderson@greenknowe.org"
  755. }
  756. ],
  757. "description": "Format text by applying transformations provided by plug-in formatters.",
  758. "support": {
  759. "issues": "https://github.com/consolidation/output-formatters/issues",
  760. "source": "https://github.com/consolidation/output-formatters/tree/4.7.0"
  761. },
  762. "time": "2025-11-14T21:06:10+00:00"
  763. },
  764. {
  765. "name": "consolidation/robo",
  766. "version": "4.0.6",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/consolidation/robo.git",
  770. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  775. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "consolidation/annotated-command": "^4.8.1",
  780. "consolidation/config": "^2.0.1",
  781. "consolidation/log": "^2.0.2 || ^3",
  782. "consolidation/output-formatters": "^4.1.2",
  783. "consolidation/self-update": "^2.0",
  784. "league/container": "^3.3.1 || ^4.0",
  785. "php": ">=8.0",
  786. "phpowermove/docblock": "^4.0",
  787. "symfony/console": "^6",
  788. "symfony/event-dispatcher": "^6",
  789. "symfony/filesystem": "^6",
  790. "symfony/finder": "^6",
  791. "symfony/process": "^6",
  792. "symfony/yaml": "^6"
  793. },
  794. "conflict": {
  795. "codegyre/robo": "*"
  796. },
  797. "require-dev": {
  798. "natxet/cssmin": "3.0.4",
  799. "patchwork/jsqueeze": "^2",
  800. "pear/archive_tar": "^1.4.4",
  801. "phpunit/phpunit": "^7.5.20 || ^8",
  802. "squizlabs/php_codesniffer": "^3.6",
  803. "yoast/phpunit-polyfills": "^0.2.0"
  804. },
  805. "suggest": {
  806. "natxet/cssmin": "For minifying CSS files in taskMinify",
  807. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  808. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  809. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  810. },
  811. "bin": [
  812. "robo"
  813. ],
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Robo\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "MIT"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Davert",
  827. "email": "davert.php@resend.cc"
  828. }
  829. ],
  830. "description": "Modern task runner",
  831. "support": {
  832. "issues": "https://github.com/consolidation/robo/issues",
  833. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  834. },
  835. "time": "2023-04-30T21:49:04+00:00"
  836. },
  837. {
  838. "name": "consolidation/self-update",
  839. "version": "2.2.0",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/consolidation/self-update.git",
  843. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  848. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "composer/semver": "^3.2",
  853. "php": ">=5.5.0",
  854. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  855. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  856. },
  857. "bin": [
  858. "scripts/release"
  859. ],
  860. "type": "library",
  861. "extra": {
  862. "branch-alias": {
  863. "dev-main": "2.x-dev"
  864. }
  865. },
  866. "autoload": {
  867. "psr-4": {
  868. "SelfUpdate\\": "src"
  869. }
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "MIT"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Alexander Menk",
  878. "email": "menk@mestrona.net"
  879. },
  880. {
  881. "name": "Greg Anderson",
  882. "email": "greg.1.anderson@greenknowe.org"
  883. }
  884. ],
  885. "description": "Provides a self:update command for Symfony Console applications.",
  886. "support": {
  887. "issues": "https://github.com/consolidation/self-update/issues",
  888. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  889. },
  890. "time": "2023-03-18T01:37:41+00:00"
  891. },
  892. {
  893. "name": "consolidation/site-alias",
  894. "version": "4.1.2",
  895. "source": {
  896. "type": "git",
  897. "url": "https://github.com/consolidation/site-alias.git",
  898. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af"
  899. },
  900. "dist": {
  901. "type": "zip",
  902. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  903. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  904. "shasum": ""
  905. },
  906. "require": {
  907. "consolidation/config": "^1.2.1 || ^2 || ^3",
  908. "php": ">=7.4",
  909. "symfony/filesystem": "^5.4 || ^6 || ^7",
  910. "symfony/finder": "^5 || ^6 || ^7"
  911. },
  912. "require-dev": {
  913. "php-coveralls/php-coveralls": "^2.4.2",
  914. "phpunit/phpunit": ">=7",
  915. "squizlabs/php_codesniffer": "^3",
  916. "symfony/var-dumper": "^4",
  917. "yoast/phpunit-polyfills": "^0.2.0"
  918. },
  919. "type": "library",
  920. "extra": {
  921. "branch-alias": {
  922. "dev-main": "4.x-dev"
  923. }
  924. },
  925. "autoload": {
  926. "psr-4": {
  927. "Consolidation\\SiteAlias\\": "src"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "Greg Anderson",
  937. "email": "greg.1.anderson@greenknowe.org"
  938. },
  939. {
  940. "name": "Moshe Weitzman",
  941. "email": "weitzman@tejasa.com"
  942. }
  943. ],
  944. "description": "Manage alias records for local and remote sites.",
  945. "support": {
  946. "issues": "https://github.com/consolidation/site-alias/issues",
  947. "source": "https://github.com/consolidation/site-alias/tree/4.1.2"
  948. },
  949. "time": "2025-11-14T21:08:14+00:00"
  950. },
  951. {
  952. "name": "consolidation/site-process",
  953. "version": "5.4.2",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/consolidation/site-process.git",
  957. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  962. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  963. "shasum": ""
  964. },
  965. "require": {
  966. "consolidation/config": "^2 || ^3",
  967. "consolidation/site-alias": "^3 || ^4",
  968. "php": ">=8.0.14",
  969. "symfony/console": "^5.4 || ^6 || ^7",
  970. "symfony/process": "^6 || ^7"
  971. },
  972. "require-dev": {
  973. "phpunit/phpunit": "^9",
  974. "squizlabs/php_codesniffer": "^3"
  975. },
  976. "type": "library",
  977. "extra": {
  978. "branch-alias": {
  979. "dev-main": "5.x-dev"
  980. }
  981. },
  982. "autoload": {
  983. "psr-4": {
  984. "Consolidation\\SiteProcess\\": "src"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Greg Anderson",
  994. "email": "greg.1.anderson@greenknowe.org"
  995. },
  996. {
  997. "name": "Moshe Weitzman",
  998. "email": "weitzman@tejasa.com"
  999. }
  1000. ],
  1001. "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.",
  1002. "support": {
  1003. "issues": "https://github.com/consolidation/site-process/issues",
  1004. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  1005. },
  1006. "time": "2024-12-13T19:25:56+00:00"
  1007. },
  1008. {
  1009. "name": "cweagans/composer-patches",
  1010. "version": "1.7.3",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/cweagans/composer-patches.git",
  1014. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1019. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1020. "shasum": ""
  1021. },
  1022. "require": {
  1023. "composer-plugin-api": "^1.0 || ^2.0",
  1024. "php": ">=5.3.0"
  1025. },
  1026. "require-dev": {
  1027. "composer/composer": "~1.0 || ~2.0",
  1028. "phpunit/phpunit": "~4.6"
  1029. },
  1030. "type": "composer-plugin",
  1031. "extra": {
  1032. "class": "cweagans\\Composer\\Patches"
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "cweagans\\Composer\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "BSD-3-Clause"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Cameron Eagans",
  1046. "email": "me@cweagans.net"
  1047. }
  1048. ],
  1049. "description": "Provides a way to patch Composer packages.",
  1050. "support": {
  1051. "issues": "https://github.com/cweagans/composer-patches/issues",
  1052. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1053. },
  1054. "time": "2022-12-20T22:53:13+00:00"
  1055. },
  1056. {
  1057. "name": "d3/d3",
  1058. "version": "v3.5.17",
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1062. },
  1063. "type": "drupal-library"
  1064. },
  1065. {
  1066. "name": "davedevelopment/stiphle",
  1067. "version": "0.9.4",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/davedevelopment/stiphle.git",
  1071. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1076. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "php": "^5.6.0|^7.0|^8.0"
  1081. },
  1082. "require-dev": {
  1083. "doctrine/cache": "^1.0",
  1084. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1085. "predis/predis": "^1.1",
  1086. "zendframework/zend-cache": "^2.8"
  1087. },
  1088. "suggest": {
  1089. "doctrine/cache": "~1.0",
  1090. "predis/predis": "~1.1",
  1091. "zendframework/zend-cache": "^2.8"
  1092. },
  1093. "type": "library",
  1094. "autoload": {
  1095. "psr-0": {
  1096. "Stiphle": "src/"
  1097. }
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "MIT"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "Dave Marshall",
  1106. "email": "dave.marshall@atstsolutions.co.uk",
  1107. "homepage": "http://davedevelopment.co.uk"
  1108. }
  1109. ],
  1110. "description": "Simple rate limiting/throttling for php",
  1111. "homepage": "http://github.com/davedevelopment/stiphle",
  1112. "keywords": [
  1113. "rate limit",
  1114. "rate limiting",
  1115. "throttle",
  1116. "throttling"
  1117. ],
  1118. "support": {
  1119. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1120. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1121. },
  1122. "time": "2022-11-25T16:30:20+00:00"
  1123. },
  1124. {
  1125. "name": "dekor/php-array-table",
  1126. "version": "2.0",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/deniskoronets/php-array-table.git",
  1130. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1135. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1136. "shasum": ""
  1137. },
  1138. "require": {
  1139. "ext-mbstring": "*",
  1140. "php": ">=5.6.0"
  1141. },
  1142. "require-dev": {
  1143. "phpunit/phpunit": "^10"
  1144. },
  1145. "type": "library",
  1146. "autoload": {
  1147. "psr-4": {
  1148. "dekor\\": "src"
  1149. }
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "BSD-3-Clause"
  1154. ],
  1155. "authors": [
  1156. {
  1157. "name": "Denis Koronets",
  1158. "email": "deniskoronets@woo.zp.ua",
  1159. "homepage": "https://woo.zp.ua/"
  1160. }
  1161. ],
  1162. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1163. "keywords": [
  1164. "library",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1169. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1170. },
  1171. "time": "2023-02-10T10:13:42+00:00"
  1172. },
  1173. {
  1174. "name": "dflydev/dot-access-data",
  1175. "version": "v3.0.3",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1179. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1184. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1185. "shasum": ""
  1186. },
  1187. "require": {
  1188. "php": "^7.1 || ^8.0"
  1189. },
  1190. "require-dev": {
  1191. "phpstan/phpstan": "^0.12.42",
  1192. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1193. "scrutinizer/ocular": "1.6.0",
  1194. "squizlabs/php_codesniffer": "^3.5",
  1195. "vimeo/psalm": "^4.0.0"
  1196. },
  1197. "type": "library",
  1198. "extra": {
  1199. "branch-alias": {
  1200. "dev-main": "3.x-dev"
  1201. }
  1202. },
  1203. "autoload": {
  1204. "psr-4": {
  1205. "Dflydev\\DotAccessData\\": "src/"
  1206. }
  1207. },
  1208. "notification-url": "https://packagist.org/downloads/",
  1209. "license": [
  1210. "MIT"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Dragonfly Development Inc.",
  1215. "email": "info@dflydev.com",
  1216. "homepage": "http://dflydev.com"
  1217. },
  1218. {
  1219. "name": "Beau Simensen",
  1220. "email": "beau@dflydev.com",
  1221. "homepage": "http://beausimensen.com"
  1222. },
  1223. {
  1224. "name": "Carlos Frutos",
  1225. "email": "carlos@kiwing.it",
  1226. "homepage": "https://github.com/cfrutos"
  1227. },
  1228. {
  1229. "name": "Colin O'Dell",
  1230. "email": "colinodell@gmail.com",
  1231. "homepage": "https://www.colinodell.com"
  1232. }
  1233. ],
  1234. "description": "Given a deep data structure, access data by dot notation.",
  1235. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1236. "keywords": [
  1237. "access",
  1238. "data",
  1239. "dot",
  1240. "notation"
  1241. ],
  1242. "support": {
  1243. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1244. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1245. },
  1246. "time": "2024-07-08T12:26:09+00:00"
  1247. },
  1248. {
  1249. "name": "doctrine/collections",
  1250. "version": "2.6.0",
  1251. "source": {
  1252. "type": "git",
  1253. "url": "https://github.com/doctrine/collections.git",
  1254. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  1255. },
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1259. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1260. "shasum": ""
  1261. },
  1262. "require": {
  1263. "doctrine/deprecations": "^1",
  1264. "php": "^8.1",
  1265. "symfony/polyfill-php84": "^1.30"
  1266. },
  1267. "require-dev": {
  1268. "doctrine/coding-standard": "^14",
  1269. "ext-json": "*",
  1270. "phpstan/phpstan": "^2.1.30",
  1271. "phpstan/phpstan-phpunit": "^2.0.7",
  1272. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  1273. },
  1274. "type": "library",
  1275. "autoload": {
  1276. "psr-4": {
  1277. "Doctrine\\Common\\Collections\\": "src"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Guilherme Blanco",
  1287. "email": "guilhermeblanco@gmail.com"
  1288. },
  1289. {
  1290. "name": "Roman Borschel",
  1291. "email": "roman@code-factory.org"
  1292. },
  1293. {
  1294. "name": "Benjamin Eberlei",
  1295. "email": "kontakt@beberlei.de"
  1296. },
  1297. {
  1298. "name": "Jonathan Wage",
  1299. "email": "jonwage@gmail.com"
  1300. },
  1301. {
  1302. "name": "Johannes Schmitt",
  1303. "email": "schmittjoh@gmail.com"
  1304. }
  1305. ],
  1306. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1307. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1308. "keywords": [
  1309. "array",
  1310. "collections",
  1311. "iterators",
  1312. "php"
  1313. ],
  1314. "support": {
  1315. "issues": "https://github.com/doctrine/collections/issues",
  1316. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  1317. },
  1318. "funding": [
  1319. {
  1320. "url": "https://www.doctrine-project.org/sponsorship.html",
  1321. "type": "custom"
  1322. },
  1323. {
  1324. "url": "https://www.patreon.com/phpdoctrine",
  1325. "type": "patreon"
  1326. },
  1327. {
  1328. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1329. "type": "tidelift"
  1330. }
  1331. ],
  1332. "time": "2026-01-15T10:01:58+00:00"
  1333. },
  1334. {
  1335. "name": "doctrine/common",
  1336. "version": "3.5.0",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/doctrine/common.git",
  1340. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1345. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1350. "php": "^7.1 || ^8.0"
  1351. },
  1352. "require-dev": {
  1353. "doctrine/coding-standard": "^9.0 || ^10.0",
  1354. "doctrine/collections": "^1",
  1355. "phpstan/phpstan": "^1.4.1",
  1356. "phpstan/phpstan-phpunit": "^1",
  1357. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1358. "squizlabs/php_codesniffer": "^3.0",
  1359. "symfony/phpunit-bridge": "^6.1",
  1360. "vimeo/psalm": "^4.4"
  1361. },
  1362. "type": "library",
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Doctrine\\Common\\": "src"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "Guilherme Blanco",
  1375. "email": "guilhermeblanco@gmail.com"
  1376. },
  1377. {
  1378. "name": "Roman Borschel",
  1379. "email": "roman@code-factory.org"
  1380. },
  1381. {
  1382. "name": "Benjamin Eberlei",
  1383. "email": "kontakt@beberlei.de"
  1384. },
  1385. {
  1386. "name": "Jonathan Wage",
  1387. "email": "jonwage@gmail.com"
  1388. },
  1389. {
  1390. "name": "Johannes Schmitt",
  1391. "email": "schmittjoh@gmail.com"
  1392. },
  1393. {
  1394. "name": "Marco Pivetta",
  1395. "email": "ocramius@gmail.com"
  1396. }
  1397. ],
  1398. "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.",
  1399. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1400. "keywords": [
  1401. "common",
  1402. "doctrine",
  1403. "php"
  1404. ],
  1405. "support": {
  1406. "issues": "https://github.com/doctrine/common/issues",
  1407. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1408. },
  1409. "funding": [
  1410. {
  1411. "url": "https://www.doctrine-project.org/sponsorship.html",
  1412. "type": "custom"
  1413. },
  1414. {
  1415. "url": "https://www.patreon.com/phpdoctrine",
  1416. "type": "patreon"
  1417. },
  1418. {
  1419. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1420. "type": "tidelift"
  1421. }
  1422. ],
  1423. "time": "2025-01-01T22:12:03+00:00"
  1424. },
  1425. {
  1426. "name": "doctrine/deprecations",
  1427. "version": "1.1.6",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/doctrine/deprecations.git",
  1431. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1436. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "php": "^7.1 || ^8.0"
  1441. },
  1442. "conflict": {
  1443. "phpunit/phpunit": "<=7.5 || >=14"
  1444. },
  1445. "require-dev": {
  1446. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1447. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1448. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1449. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1450. "psr/log": "^1 || ^2 || ^3"
  1451. },
  1452. "suggest": {
  1453. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1454. },
  1455. "type": "library",
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Doctrine\\Deprecations\\": "src"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "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.",
  1466. "homepage": "https://www.doctrine-project.org/",
  1467. "support": {
  1468. "issues": "https://github.com/doctrine/deprecations/issues",
  1469. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1470. },
  1471. "time": "2026-02-07T07:09:04+00:00"
  1472. },
  1473. {
  1474. "name": "doctrine/event-manager",
  1475. "version": "2.1.1",
  1476. "source": {
  1477. "type": "git",
  1478. "url": "https://github.com/doctrine/event-manager.git",
  1479. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1480. },
  1481. "dist": {
  1482. "type": "zip",
  1483. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1484. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1485. "shasum": ""
  1486. },
  1487. "require": {
  1488. "php": "^8.1"
  1489. },
  1490. "conflict": {
  1491. "doctrine/common": "<2.9"
  1492. },
  1493. "require-dev": {
  1494. "doctrine/coding-standard": "^14",
  1495. "phpdocumentor/guides-cli": "^1.4",
  1496. "phpstan/phpstan": "^2.1.32",
  1497. "phpunit/phpunit": "^10.5.58"
  1498. },
  1499. "type": "library",
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Doctrine\\Common\\": "src"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Guilherme Blanco",
  1512. "email": "guilhermeblanco@gmail.com"
  1513. },
  1514. {
  1515. "name": "Roman Borschel",
  1516. "email": "roman@code-factory.org"
  1517. },
  1518. {
  1519. "name": "Benjamin Eberlei",
  1520. "email": "kontakt@beberlei.de"
  1521. },
  1522. {
  1523. "name": "Jonathan Wage",
  1524. "email": "jonwage@gmail.com"
  1525. },
  1526. {
  1527. "name": "Johannes Schmitt",
  1528. "email": "schmittjoh@gmail.com"
  1529. },
  1530. {
  1531. "name": "Marco Pivetta",
  1532. "email": "ocramius@gmail.com"
  1533. }
  1534. ],
  1535. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1536. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1537. "keywords": [
  1538. "event",
  1539. "event dispatcher",
  1540. "event manager",
  1541. "event system",
  1542. "events"
  1543. ],
  1544. "support": {
  1545. "issues": "https://github.com/doctrine/event-manager/issues",
  1546. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1547. },
  1548. "funding": [
  1549. {
  1550. "url": "https://www.doctrine-project.org/sponsorship.html",
  1551. "type": "custom"
  1552. },
  1553. {
  1554. "url": "https://www.patreon.com/phpdoctrine",
  1555. "type": "patreon"
  1556. },
  1557. {
  1558. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1559. "type": "tidelift"
  1560. }
  1561. ],
  1562. "time": "2026-01-29T07:11:08+00:00"
  1563. },
  1564. {
  1565. "name": "doctrine/lexer",
  1566. "version": "2.1.1",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/doctrine/lexer.git",
  1570. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1575. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1576. "shasum": ""
  1577. },
  1578. "require": {
  1579. "doctrine/deprecations": "^1.0",
  1580. "php": "^7.1 || ^8.0"
  1581. },
  1582. "require-dev": {
  1583. "doctrine/coding-standard": "^9 || ^12",
  1584. "phpstan/phpstan": "^1.3",
  1585. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1586. "psalm/plugin-phpunit": "^0.18.3",
  1587. "vimeo/psalm": "^4.11 || ^5.21"
  1588. },
  1589. "type": "library",
  1590. "autoload": {
  1591. "psr-4": {
  1592. "Doctrine\\Common\\Lexer\\": "src"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Guilherme Blanco",
  1602. "email": "guilhermeblanco@gmail.com"
  1603. },
  1604. {
  1605. "name": "Roman Borschel",
  1606. "email": "roman@code-factory.org"
  1607. },
  1608. {
  1609. "name": "Johannes Schmitt",
  1610. "email": "schmittjoh@gmail.com"
  1611. }
  1612. ],
  1613. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1614. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1615. "keywords": [
  1616. "annotations",
  1617. "docblock",
  1618. "lexer",
  1619. "parser",
  1620. "php"
  1621. ],
  1622. "support": {
  1623. "issues": "https://github.com/doctrine/lexer/issues",
  1624. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1625. },
  1626. "funding": [
  1627. {
  1628. "url": "https://www.doctrine-project.org/sponsorship.html",
  1629. "type": "custom"
  1630. },
  1631. {
  1632. "url": "https://www.patreon.com/phpdoctrine",
  1633. "type": "patreon"
  1634. },
  1635. {
  1636. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1637. "type": "tidelift"
  1638. }
  1639. ],
  1640. "time": "2024-02-05T11:35:39+00:00"
  1641. },
  1642. {
  1643. "name": "doctrine/persistence",
  1644. "version": "4.1.1",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://github.com/doctrine/persistence.git",
  1648. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1653. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1654. "shasum": ""
  1655. },
  1656. "require": {
  1657. "doctrine/event-manager": "^1 || ^2",
  1658. "php": "^8.1",
  1659. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1660. },
  1661. "require-dev": {
  1662. "doctrine/coding-standard": "^14",
  1663. "phpstan/phpstan": "2.1.30",
  1664. "phpstan/phpstan-phpunit": "^2",
  1665. "phpstan/phpstan-strict-rules": "^2",
  1666. "phpunit/phpunit": "^10.5.58 || ^12",
  1667. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1668. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1669. },
  1670. "type": "library",
  1671. "autoload": {
  1672. "psr-4": {
  1673. "Doctrine\\Persistence\\": "src/Persistence"
  1674. }
  1675. },
  1676. "notification-url": "https://packagist.org/downloads/",
  1677. "license": [
  1678. "MIT"
  1679. ],
  1680. "authors": [
  1681. {
  1682. "name": "Guilherme Blanco",
  1683. "email": "guilhermeblanco@gmail.com"
  1684. },
  1685. {
  1686. "name": "Roman Borschel",
  1687. "email": "roman@code-factory.org"
  1688. },
  1689. {
  1690. "name": "Benjamin Eberlei",
  1691. "email": "kontakt@beberlei.de"
  1692. },
  1693. {
  1694. "name": "Jonathan Wage",
  1695. "email": "jonwage@gmail.com"
  1696. },
  1697. {
  1698. "name": "Johannes Schmitt",
  1699. "email": "schmittjoh@gmail.com"
  1700. },
  1701. {
  1702. "name": "Marco Pivetta",
  1703. "email": "ocramius@gmail.com"
  1704. }
  1705. ],
  1706. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1707. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1708. "keywords": [
  1709. "mapper",
  1710. "object",
  1711. "odm",
  1712. "orm",
  1713. "persistence"
  1714. ],
  1715. "support": {
  1716. "issues": "https://github.com/doctrine/persistence/issues",
  1717. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1718. },
  1719. "funding": [
  1720. {
  1721. "url": "https://www.doctrine-project.org/sponsorship.html",
  1722. "type": "custom"
  1723. },
  1724. {
  1725. "url": "https://www.patreon.com/phpdoctrine",
  1726. "type": "patreon"
  1727. },
  1728. {
  1729. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1730. "type": "tidelift"
  1731. }
  1732. ],
  1733. "time": "2025-10-16T20:13:18+00:00"
  1734. },
  1735. {
  1736. "name": "drupal/address",
  1737. "version": "2.0.4",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://git.drupalcode.org/project/address.git",
  1741. "reference": "2.0.4"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip",
  1746. "reference": "2.0.4",
  1747. "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e"
  1748. },
  1749. "require": {
  1750. "commerceguys/addressing": "^2.1.1",
  1751. "drupal/core": "^9.5 || ^10 || ^11",
  1752. "php": "^8.0"
  1753. },
  1754. "require-dev": {
  1755. "drupal/diff": "^1",
  1756. "drupal/feeds": "^3",
  1757. "drupal/token": "^1"
  1758. },
  1759. "type": "drupal-module",
  1760. "extra": {
  1761. "drupal": {
  1762. "version": "2.0.4",
  1763. "datestamp": "1746462054",
  1764. "security-coverage": {
  1765. "status": "covered",
  1766. "message": "Covered by Drupal's security advisory policy"
  1767. }
  1768. }
  1769. },
  1770. "notification-url": "https://packages.drupal.org/8/downloads",
  1771. "license": [
  1772. "GPL-2.0-or-later"
  1773. ],
  1774. "authors": [
  1775. {
  1776. "name": "bojanz",
  1777. "homepage": "https://www.drupal.org/user/86106"
  1778. },
  1779. {
  1780. "name": "centarro",
  1781. "homepage": "https://www.drupal.org/user/3661446"
  1782. },
  1783. {
  1784. "name": "dww",
  1785. "homepage": "https://www.drupal.org/user/46549"
  1786. },
  1787. {
  1788. "name": "jsacksick",
  1789. "homepage": "https://www.drupal.org/user/972218"
  1790. },
  1791. {
  1792. "name": "rszrama",
  1793. "homepage": "https://www.drupal.org/user/49344"
  1794. }
  1795. ],
  1796. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1797. "homepage": "http://drupal.org/project/address",
  1798. "support": {
  1799. "source": "https://git.drupalcode.org/project/address"
  1800. }
  1801. },
  1802. {
  1803. "name": "drupal/admin_toolbar",
  1804. "version": "3.6.3",
  1805. "source": {
  1806. "type": "git",
  1807. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1808. "reference": "3.6.3"
  1809. },
  1810. "dist": {
  1811. "type": "zip",
  1812. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1813. "reference": "3.6.3",
  1814. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1815. },
  1816. "require": {
  1817. "drupal/core": "^9.5 || ^10 || ^11"
  1818. },
  1819. "conflict": {
  1820. "drupal/project_browser": "<2.1.0"
  1821. },
  1822. "type": "drupal-module",
  1823. "extra": {
  1824. "drupal": {
  1825. "version": "3.6.3",
  1826. "datestamp": "1767318997",
  1827. "security-coverage": {
  1828. "status": "covered",
  1829. "message": "Covered by Drupal's security advisory policy"
  1830. }
  1831. }
  1832. },
  1833. "notification-url": "https://packages.drupal.org/8/downloads",
  1834. "license": [
  1835. "GPL-2.0-or-later"
  1836. ],
  1837. "authors": [
  1838. {
  1839. "name": "Wilfrid Roze (eme)",
  1840. "homepage": "https://www.drupal.org/u/eme",
  1841. "role": "Maintainer"
  1842. },
  1843. {
  1844. "name": "Romain Jarraud (romainj)",
  1845. "homepage": "https://www.drupal.org/u/romainj",
  1846. "role": "Maintainer"
  1847. },
  1848. {
  1849. "name": "Adrian Cid Almaguer (adriancid)",
  1850. "homepage": "https://www.drupal.org/u/adriancid",
  1851. "email": "adriancid@gmail.com",
  1852. "role": "Maintainer"
  1853. },
  1854. {
  1855. "name": "Mohamed Anis Taktak (matio89)",
  1856. "homepage": "https://www.drupal.org/u/matio89",
  1857. "role": "Maintainer"
  1858. },
  1859. {
  1860. "name": "David Suissa (DYdave)",
  1861. "homepage": "https://www.drupal.org/u/dydave",
  1862. "role": "Maintainer"
  1863. },
  1864. {
  1865. "name": "japerry",
  1866. "homepage": "https://www.drupal.org/user/45640"
  1867. },
  1868. {
  1869. "name": "matio89",
  1870. "homepage": "https://www.drupal.org/user/2320090"
  1871. },
  1872. {
  1873. "name": "musa.thomas",
  1874. "homepage": "https://www.drupal.org/user/1213824"
  1875. },
  1876. {
  1877. "name": "romainj",
  1878. "homepage": "https://www.drupal.org/user/370706"
  1879. }
  1880. ],
  1881. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1882. "homepage": "http://drupal.org/project/admin_toolbar",
  1883. "keywords": [
  1884. "Drupal",
  1885. "Toolbar"
  1886. ],
  1887. "support": {
  1888. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1889. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1890. }
  1891. },
  1892. {
  1893. "name": "drupal/adminimal_theme",
  1894. "version": "1.7.0",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1898. "reference": "8.x-1.7"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1903. "reference": "8.x-1.7",
  1904. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1905. },
  1906. "require": {
  1907. "drupal/core": "^9.3 || ^10",
  1908. "drupal/seven": "~1.0"
  1909. },
  1910. "type": "drupal-theme",
  1911. "extra": {
  1912. "drupal": {
  1913. "version": "8.x-1.7",
  1914. "datestamp": "1691504486",
  1915. "security-coverage": {
  1916. "status": "covered",
  1917. "message": "Covered by Drupal's security advisory policy"
  1918. }
  1919. }
  1920. },
  1921. "notification-url": "https://packages.drupal.org/8/downloads",
  1922. "license": [
  1923. "GPL-2.0+"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "ANDiTKO",
  1928. "homepage": "https://www.drupal.org/user/1428124"
  1929. },
  1930. {
  1931. "name": "andrey.troeglazov",
  1932. "homepage": "https://www.drupal.org/user/3145389"
  1933. },
  1934. {
  1935. "name": "realityloop",
  1936. "homepage": "https://www.drupal.org/user/139189"
  1937. },
  1938. {
  1939. "name": "rjjakes",
  1940. "homepage": "https://www.drupal.org/user/3457245"
  1941. }
  1942. ],
  1943. "description": "Drupal administration theme with modern minimalist design.",
  1944. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1945. "support": {
  1946. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1947. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1948. }
  1949. },
  1950. {
  1951. "name": "drupal/administerusersbyrole",
  1952. "version": "3.5.0",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  1956. "reference": "8.x-3.5"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.5.zip",
  1961. "reference": "8.x-3.5",
  1962. "shasum": "4595bd1db4592c2eb506b3b1c1b26683f22b73b4"
  1963. },
  1964. "require": {
  1965. "drupal/core": "^10 || ^11"
  1966. },
  1967. "type": "drupal-module",
  1968. "extra": {
  1969. "drupal": {
  1970. "version": "8.x-3.5",
  1971. "datestamp": "1732275602",
  1972. "security-coverage": {
  1973. "status": "covered",
  1974. "message": "Covered by Drupal's security advisory policy"
  1975. }
  1976. }
  1977. },
  1978. "notification-url": "https://packages.drupal.org/8/downloads",
  1979. "license": [
  1980. "GPL-2.0-or-later"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "adamps",
  1985. "homepage": "https://www.drupal.org/user/2650563"
  1986. },
  1987. {
  1988. "name": "mrfelton",
  1989. "homepage": "https://www.drupal.org/user/305669"
  1990. },
  1991. {
  1992. "name": "smokris",
  1993. "homepage": "https://www.drupal.org/user/161913"
  1994. }
  1995. ],
  1996. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  1997. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  1998. "support": {
  1999. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2000. }
  2001. },
  2002. {
  2003. "name": "drupal/advanced_text_formatter",
  2004. "version": "3.0.0-rc2",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2008. "reference": "3.0.0-rc2"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  2013. "reference": "3.0.0-rc2",
  2014. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  2015. },
  2016. "require": {
  2017. "drupal/core": "^8 || ^9 || ^10 || ^11"
  2018. },
  2019. "type": "drupal-module",
  2020. "extra": {
  2021. "drupal": {
  2022. "version": "3.0.0-rc2",
  2023. "datestamp": "1727826727",
  2024. "security-coverage": {
  2025. "status": "not-covered",
  2026. "message": "RC releases are not covered by Drupal security advisories."
  2027. }
  2028. }
  2029. },
  2030. "notification-url": "https://packages.drupal.org/8/downloads",
  2031. "license": [
  2032. "GPL-2.0-or-later"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "azovsky",
  2037. "homepage": "https://www.drupal.org/user/330533"
  2038. },
  2039. {
  2040. "name": "knectar",
  2041. "homepage": "https://www.drupal.org/user/1184414"
  2042. },
  2043. {
  2044. "name": "realityloop",
  2045. "homepage": "https://www.drupal.org/user/139189"
  2046. },
  2047. {
  2048. "name": "thmnhat",
  2049. "homepage": "https://www.drupal.org/user/998946"
  2050. }
  2051. ],
  2052. "description": "Formatter of textfield, text area and text format.",
  2053. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2054. "support": {
  2055. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2056. }
  2057. },
  2058. {
  2059. "name": "drupal/audiofield",
  2060. "version": "1.13.0",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://git.drupalcode.org/project/audiofield.git",
  2064. "reference": "8.x-1.13"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2069. "reference": "8.x-1.13",
  2070. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2071. },
  2072. "require": {
  2073. "drupal/core": "^8 || ^9 || ^10"
  2074. },
  2075. "type": "drupal-module",
  2076. "extra": {
  2077. "drupal": {
  2078. "version": "8.x-1.13",
  2079. "datestamp": "1681143245",
  2080. "security-coverage": {
  2081. "status": "covered",
  2082. "message": "Covered by Drupal's security advisory policy"
  2083. }
  2084. },
  2085. "drush": {
  2086. "services": {
  2087. "drush.services.yml": "^9"
  2088. }
  2089. }
  2090. },
  2091. "notification-url": "https://packages.drupal.org/8/downloads",
  2092. "license": [
  2093. "GPL-2.0-or-later"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "Daniel Moberly",
  2098. "homepage": "https://www.drupal.org/u/danielmoberly",
  2099. "role": "Maintainer"
  2100. },
  2101. {
  2102. "name": "tamerzg",
  2103. "homepage": "https://www.drupal.org/user/464564"
  2104. }
  2105. ],
  2106. "description": "AudioField Module",
  2107. "homepage": "https://www.drupal.org/project/audiofield",
  2108. "support": {
  2109. "source": "https://git.drupalcode.org/project/audiofield",
  2110. "issues": "https://www.drupal.org/project/issues/audiofield"
  2111. }
  2112. },
  2113. {
  2114. "name": "drupal/autocomplete_deluxe",
  2115. "version": "2.1.2",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2119. "reference": "2.1.2"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2124. "reference": "2.1.2",
  2125. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2126. },
  2127. "require": {
  2128. "drupal/core": "^10.3 || ^11"
  2129. },
  2130. "type": "drupal-module",
  2131. "extra": {
  2132. "drupal": {
  2133. "version": "2.1.2",
  2134. "datestamp": "1742303934",
  2135. "security-coverage": {
  2136. "status": "covered",
  2137. "message": "Covered by Drupal's security advisory policy"
  2138. }
  2139. }
  2140. },
  2141. "notification-url": "https://packages.drupal.org/8/downloads",
  2142. "license": [
  2143. "GPL-2.0-or-later"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Vardot",
  2148. "homepage": "https://www.drupal.org/vardot",
  2149. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2150. },
  2151. {
  2152. "name": "Mediacurrent",
  2153. "homepage": "https://www.drupal.org/mediacurrent",
  2154. "role": "Supporting organization"
  2155. },
  2156. {
  2157. "name": "mohammed j. razem",
  2158. "homepage": "https://www.drupal.org/user/255384"
  2159. },
  2160. {
  2161. "name": "mpriscella",
  2162. "homepage": "https://www.drupal.org/user/2354820"
  2163. },
  2164. {
  2165. "name": "rajab natshah",
  2166. "homepage": "https://www.drupal.org/user/1414312"
  2167. },
  2168. {
  2169. "name": "sepgil",
  2170. "homepage": "https://www.drupal.org/user/512828"
  2171. }
  2172. ],
  2173. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2174. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2175. "support": {
  2176. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2177. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2178. }
  2179. },
  2180. {
  2181. "name": "drupal/autologout",
  2182. "version": "1.6.0",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://git.drupalcode.org/project/autologout.git",
  2186. "reference": "8.x-1.6"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2191. "reference": "8.x-1.6",
  2192. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2193. },
  2194. "require": {
  2195. "drupal/core": "^9.2 || ^10 || ^11",
  2196. "drupal/js_cookie": "^1.0"
  2197. },
  2198. "type": "drupal-module",
  2199. "extra": {
  2200. "drupal": {
  2201. "version": "8.x-1.6",
  2202. "datestamp": "1732235148",
  2203. "security-coverage": {
  2204. "status": "covered",
  2205. "message": "Covered by Drupal's security advisory policy"
  2206. }
  2207. }
  2208. },
  2209. "notification-url": "https://packages.drupal.org/8/downloads",
  2210. "license": [
  2211. "GPL-2.0-or-later"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "ajits",
  2216. "homepage": "https://www.drupal.org/user/981944"
  2217. },
  2218. {
  2219. "name": "AjK",
  2220. "homepage": "https://www.drupal.org/user/39030"
  2221. },
  2222. {
  2223. "name": "boshtian",
  2224. "homepage": "https://www.drupal.org/user/1773456"
  2225. },
  2226. {
  2227. "name": "dandrews",
  2228. "homepage": "https://www.drupal.org/user/2014490"
  2229. },
  2230. {
  2231. "name": "darksnow",
  2232. "homepage": "https://www.drupal.org/user/391915"
  2233. },
  2234. {
  2235. "name": "japerry",
  2236. "homepage": "https://www.drupal.org/user/45640"
  2237. },
  2238. {
  2239. "name": "johnennew",
  2240. "homepage": "https://www.drupal.org/user/1150042"
  2241. },
  2242. {
  2243. "name": "jrglasgow",
  2244. "homepage": "https://www.drupal.org/user/36590"
  2245. },
  2246. {
  2247. "name": "kmasood",
  2248. "homepage": "https://www.drupal.org/user/1262860"
  2249. },
  2250. {
  2251. "name": "levelos",
  2252. "homepage": "https://www.drupal.org/user/54135"
  2253. },
  2254. {
  2255. "name": "prabeen.giri",
  2256. "homepage": "https://www.drupal.org/user/913078"
  2257. },
  2258. {
  2259. "name": "scott_earnest",
  2260. "homepage": "https://www.drupal.org/user/416158"
  2261. },
  2262. {
  2263. "name": "str8",
  2264. "homepage": "https://www.drupal.org/user/2865063"
  2265. },
  2266. {
  2267. "name": "the_g_bomb",
  2268. "homepage": "https://www.drupal.org/user/492012"
  2269. }
  2270. ],
  2271. "description": "Adds automated timed logout.",
  2272. "homepage": "http://drupal.org/project/autologout",
  2273. "support": {
  2274. "source": "https://git.drupalcode.org/project/autologout",
  2275. "issues": "https://www.drupal.org/project/issues/autologout"
  2276. }
  2277. },
  2278. {
  2279. "name": "drupal/better_exposed_filters",
  2280. "version": "6.0.6",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2284. "reference": "6.0.6"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2289. "reference": "6.0.6",
  2290. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2291. },
  2292. "require": {
  2293. "drupal/core": "^9 || ^10",
  2294. "drupal/jquery_ui": "*",
  2295. "drupal/jquery_ui_datepicker": "*",
  2296. "drupal/jquery_ui_slider": "*",
  2297. "drupal/jquery_ui_touch_punch": "*"
  2298. },
  2299. "type": "drupal-module",
  2300. "extra": {
  2301. "drupal": {
  2302. "version": "6.0.6",
  2303. "datestamp": "1716397541",
  2304. "security-coverage": {
  2305. "status": "covered",
  2306. "message": "Covered by Drupal's security advisory policy"
  2307. }
  2308. }
  2309. },
  2310. "notification-url": "https://packages.drupal.org/8/downloads",
  2311. "license": [
  2312. "GPL-2.0-or-later"
  2313. ],
  2314. "authors": [
  2315. {
  2316. "name": "Mike Keran",
  2317. "homepage": "https://www.drupal.org/u/mikeker"
  2318. },
  2319. {
  2320. "name": "Martin Keereman",
  2321. "homepage": "https://www.drupal.org/u/etroid"
  2322. },
  2323. {
  2324. "name": "Neslee Canil Pinto",
  2325. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2326. },
  2327. {
  2328. "name": "mikeker",
  2329. "homepage": "https://www.drupal.org/user/192273"
  2330. },
  2331. {
  2332. "name": "neslee canil pinto",
  2333. "homepage": "https://www.drupal.org/user/3580850"
  2334. },
  2335. {
  2336. "name": "podarok",
  2337. "homepage": "https://www.drupal.org/user/116002"
  2338. },
  2339. {
  2340. "name": "rlhawk",
  2341. "homepage": "https://www.drupal.org/user/352283"
  2342. },
  2343. {
  2344. "name": "smustgrave",
  2345. "homepage": "https://www.drupal.org/user/3252890"
  2346. }
  2347. ],
  2348. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2349. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2350. "support": {
  2351. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2352. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2353. }
  2354. },
  2355. {
  2356. "name": "drupal/betterlogin",
  2357. "version": "2.0.2",
  2358. "source": {
  2359. "type": "git",
  2360. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2361. "reference": "2.0.2"
  2362. },
  2363. "dist": {
  2364. "type": "zip",
  2365. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.2.zip",
  2366. "reference": "2.0.2",
  2367. "shasum": "1c05fdea10862ff86c809c84d9eba95b6b52f90a"
  2368. },
  2369. "require": {
  2370. "drupal/core": "^9.0 || ^10.0"
  2371. },
  2372. "type": "drupal-module",
  2373. "extra": {
  2374. "drupal": {
  2375. "version": "2.0.2",
  2376. "datestamp": "1709573077",
  2377. "security-coverage": {
  2378. "status": "covered",
  2379. "message": "Covered by Drupal's security advisory policy"
  2380. }
  2381. }
  2382. },
  2383. "notification-url": "https://packages.drupal.org/8/downloads",
  2384. "license": [
  2385. "GPL-2.0-or-later"
  2386. ],
  2387. "authors": [
  2388. {
  2389. "name": "theamoeba",
  2390. "homepage": "https://www.drupal.org/user/251700"
  2391. },
  2392. {
  2393. "name": "yogeshmpawar",
  2394. "homepage": "https://www.drupal.org/user/2922907"
  2395. }
  2396. ],
  2397. "description": "Make the login screens better :)",
  2398. "homepage": "https://www.drupal.org/project/betterlogin",
  2399. "support": {
  2400. "source": "https://git.drupalcode.org/project/betterlogin"
  2401. }
  2402. },
  2403. {
  2404. "name": "drupal/blazy",
  2405. "version": "2.27.0",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://git.drupalcode.org/project/blazy.git",
  2409. "reference": "8.x-2.27"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2414. "reference": "8.x-2.27",
  2415. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2416. },
  2417. "require": {
  2418. "drupal/core": "^8.8 || ^9 || ^10"
  2419. },
  2420. "conflict": {
  2421. "drupal/csp": "<1.12"
  2422. },
  2423. "type": "drupal-module",
  2424. "extra": {
  2425. "drupal": {
  2426. "version": "8.x-2.27",
  2427. "datestamp": "1715944090",
  2428. "security-coverage": {
  2429. "status": "covered",
  2430. "message": "Covered by Drupal's security advisory policy"
  2431. }
  2432. }
  2433. },
  2434. "notification-url": "https://packages.drupal.org/8/downloads",
  2435. "license": [
  2436. "GPL-2.0-or-later"
  2437. ],
  2438. "authors": [
  2439. {
  2440. "name": "Gaus Surahman",
  2441. "homepage": "https://www.drupal.org/u/gausarts",
  2442. "role": "Maintainer"
  2443. },
  2444. {
  2445. "name": "Contributors",
  2446. "homepage": "https://www.drupal.org/node/2663268/committers",
  2447. "role": "Contributor"
  2448. },
  2449. {
  2450. "name": "geek-merlin",
  2451. "homepage": "https://www.drupal.org/user/229048"
  2452. },
  2453. {
  2454. "name": "sun",
  2455. "homepage": "https://www.drupal.org/user/54136"
  2456. }
  2457. ],
  2458. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2459. "homepage": "https://drupal.org/project/blazy",
  2460. "keywords": [
  2461. "Drupal",
  2462. "bLazy",
  2463. "lazyload"
  2464. ],
  2465. "support": {
  2466. "source": "https://git.drupalcode.org/project/blazy",
  2467. "issues": "https://drupal.org/project/issues/blazy"
  2468. }
  2469. },
  2470. {
  2471. "name": "drupal/block_class",
  2472. "version": "4.0.1",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://git.drupalcode.org/project/block_class.git",
  2476. "reference": "4.0.1"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip",
  2481. "reference": "4.0.1",
  2482. "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb"
  2483. },
  2484. "require": {
  2485. "drupal/core": "^9 || ^10 || ^11"
  2486. },
  2487. "type": "drupal-module",
  2488. "extra": {
  2489. "drupal": {
  2490. "version": "4.0.1",
  2491. "datestamp": "1745427425",
  2492. "security-coverage": {
  2493. "status": "covered",
  2494. "message": "Covered by Drupal's security advisory policy"
  2495. }
  2496. }
  2497. },
  2498. "notification-url": "https://packages.drupal.org/8/downloads",
  2499. "license": [
  2500. "GPL-2.0-or-later"
  2501. ],
  2502. "authors": [
  2503. {
  2504. "name": "Todd Nienkerk",
  2505. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2506. "role": "Maintainer"
  2507. },
  2508. {
  2509. "name": "Renato Gonçalves (RenatoG)",
  2510. "homepage": "https://www.drupal.org/u/RenatoG",
  2511. "role": "Maintainer"
  2512. },
  2513. {
  2514. "name": "Neslee Canil Pinto",
  2515. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2516. "role": "Maintainer"
  2517. },
  2518. {
  2519. "name": "Aaron Stanush",
  2520. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2521. "role": "Maintainer"
  2522. },
  2523. {
  2524. "name": "David Suissa (DYdave)",
  2525. "homepage": "https://www.drupal.org/u/DYdave",
  2526. "role": "Maintainer"
  2527. },
  2528. {
  2529. "name": "Four Kitchens",
  2530. "homepage": "https://www.drupal.org/user/358502",
  2531. "role": "Maintainer"
  2532. },
  2533. {
  2534. "name": "berenddeboer",
  2535. "homepage": "https://www.drupal.org/u/berenddeboer",
  2536. "role": "Maintainer"
  2537. },
  2538. {
  2539. "name": "elliotttf",
  2540. "homepage": "https://www.drupal.org/u/elliotttf",
  2541. "role": "Maintainer"
  2542. },
  2543. {
  2544. "name": "Michal Minecki (mirzu)",
  2545. "homepage": "https://www.drupal.org/u/mirzu",
  2546. "role": "Maintainer"
  2547. },
  2548. {
  2549. "name": "Patrick Coffey (pcoffey)",
  2550. "homepage": "https://www.drupal.org/u/pcoffey",
  2551. "role": "Maintainer"
  2552. },
  2553. {
  2554. "name": "Taylor Smith (tsmith512)",
  2555. "homepage": "https://www.drupal.org/u/tsmith512",
  2556. "role": "Maintainer"
  2557. }
  2558. ],
  2559. "description": "Allows assigning classes to Blocks.",
  2560. "homepage": "https://www.drupal.org/project/block_class",
  2561. "keywords": [
  2562. "Drupal"
  2563. ],
  2564. "support": {
  2565. "source": "https://git.drupalcode.org/project/block_class",
  2566. "issues": "https://www.drupal.org/project/issues/block_class",
  2567. "irc": "irc://irc.freenode.org/drupal-contribute"
  2568. }
  2569. },
  2570. {
  2571. "name": "drupal/computed_field",
  2572. "version": "3.0.0",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://git.drupalcode.org/project/computed_field.git",
  2576. "reference": "3.0.0"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2581. "reference": "3.0.0",
  2582. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2583. },
  2584. "require": {
  2585. "drupal/core": "^8 || ^9 || ^10"
  2586. },
  2587. "type": "drupal-module",
  2588. "extra": {
  2589. "drupal": {
  2590. "version": "3.0.0",
  2591. "datestamp": "1705775905",
  2592. "security-coverage": {
  2593. "status": "covered",
  2594. "message": "Covered by Drupal's security advisory policy"
  2595. }
  2596. }
  2597. },
  2598. "notification-url": "https://packages.drupal.org/8/downloads",
  2599. "license": [
  2600. "GPL-2.0-or-later"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "agileware",
  2605. "homepage": "https://www.drupal.org/user/89106"
  2606. },
  2607. {
  2608. "name": "colan",
  2609. "homepage": "https://www.drupal.org/user/58704"
  2610. },
  2611. {
  2612. "name": "dealancer",
  2613. "homepage": "https://www.drupal.org/user/243418"
  2614. },
  2615. {
  2616. "name": "joachim",
  2617. "homepage": "https://www.drupal.org/user/107701"
  2618. },
  2619. {
  2620. "name": "markus_petrux",
  2621. "homepage": "https://www.drupal.org/user/39593"
  2622. },
  2623. {
  2624. "name": "Moonshine",
  2625. "homepage": "https://www.drupal.org/user/133705"
  2626. },
  2627. {
  2628. "name": "nickcaballero",
  2629. "homepage": "https://www.drupal.org/user/588336"
  2630. },
  2631. {
  2632. "name": "Pedro Lozano",
  2633. "homepage": "https://www.drupal.org/user/123766"
  2634. },
  2635. {
  2636. "name": "ram4nd",
  2637. "homepage": "https://www.drupal.org/user/601534"
  2638. }
  2639. ],
  2640. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2641. "homepage": "https://www.drupal.org/project/computed_field",
  2642. "support": {
  2643. "source": "https://git.drupalcode.org/project/computed_field"
  2644. }
  2645. },
  2646. {
  2647. "name": "drupal/computed_token_field",
  2648. "version": "1.0.0-beta1",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2652. "reference": "1.0.0-beta1"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2657. "reference": "1.0.0-beta1",
  2658. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2659. },
  2660. "require": {
  2661. "drupal/computed_field": "^3.0",
  2662. "drupal/core": "^8 || ^9 || ^10"
  2663. },
  2664. "require-dev": {
  2665. "drupal/eck": "*",
  2666. "drupal/field_permissions": "*",
  2667. "drupal/hide_revision_field": "*",
  2668. "drupal/inline_entity_form": "*"
  2669. },
  2670. "type": "drupal-module",
  2671. "extra": {
  2672. "drupal": {
  2673. "version": "1.0.0-beta1",
  2674. "datestamp": "1741812647",
  2675. "security-coverage": {
  2676. "status": "not-covered",
  2677. "message": "Beta releases are not covered by Drupal security advisories."
  2678. }
  2679. }
  2680. },
  2681. "notification-url": "https://packages.drupal.org/8/downloads",
  2682. "license": [
  2683. "GPLv2 or later"
  2684. ],
  2685. "authors": [
  2686. {
  2687. "name": "Derek Laventure",
  2688. "homepage": "https://www.drupal.org/user/3082389",
  2689. "email": "derek@consensus.enterprises"
  2690. },
  2691. {
  2692. "name": "colan",
  2693. "homepage": "https://www.drupal.org/user/58704"
  2694. },
  2695. {
  2696. "name": "ergonlogic",
  2697. "homepage": "https://www.drupal.org/user/368613"
  2698. },
  2699. {
  2700. "name": "spiderman",
  2701. "homepage": "https://www.drupal.org/user/1631"
  2702. }
  2703. ],
  2704. "description": "Computed field that accepts a token to calculate its value.",
  2705. "homepage": "https://www.drupal.org/project/computed_token_field",
  2706. "support": {
  2707. "source": "https://git.drupalcode.org/project/computed_token_field"
  2708. }
  2709. },
  2710. {
  2711. "name": "drupal/config_devel",
  2712. "version": "1.10.0",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://git.drupalcode.org/project/config_devel.git",
  2716. "reference": "8.x-1.10"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2721. "reference": "8.x-1.10",
  2722. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2723. },
  2724. "require": {
  2725. "drupal/core": "^9.3 || ^10 || ^11"
  2726. },
  2727. "type": "drupal-module",
  2728. "extra": {
  2729. "drupal": {
  2730. "version": "8.x-1.10",
  2731. "datestamp": "1727184343",
  2732. "security-coverage": {
  2733. "status": "covered",
  2734. "message": "Covered by Drupal's security advisory policy"
  2735. }
  2736. }
  2737. },
  2738. "notification-url": "https://packages.drupal.org/8/downloads",
  2739. "license": [
  2740. "GPL-2.0+"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "alexpott",
  2745. "homepage": "https://www.drupal.org/user/157725"
  2746. },
  2747. {
  2748. "name": "benjy",
  2749. "homepage": "https://www.drupal.org/user/1852732"
  2750. },
  2751. {
  2752. "name": "chx",
  2753. "homepage": "https://www.drupal.org/user/9446"
  2754. },
  2755. {
  2756. "name": "joachim",
  2757. "homepage": "https://www.drupal.org/user/107701"
  2758. },
  2759. {
  2760. "name": "vijaycs85",
  2761. "homepage": "https://www.drupal.org/user/93488"
  2762. }
  2763. ],
  2764. "description": "Helps developers work with configuration.",
  2765. "homepage": "https://www.drupal.org/project/config_devel",
  2766. "support": {
  2767. "source": "https://git.drupalcode.org/project/config_devel"
  2768. }
  2769. },
  2770. {
  2771. "name": "drupal/config_enforce",
  2772. "version": "1.0.7",
  2773. "source": {
  2774. "type": "git",
  2775. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2776. "reference": "1.0.7"
  2777. },
  2778. "dist": {
  2779. "type": "zip",
  2780. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2781. "reference": "1.0.7",
  2782. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2783. },
  2784. "require": {
  2785. "drupal/core": "^8 || ^9 || ^10",
  2786. "php": "^7.4 || ^8"
  2787. },
  2788. "suggest": {
  2789. "drush/drush": "Allows for running enforce commands via the CLI"
  2790. },
  2791. "type": "drupal-module",
  2792. "extra": {
  2793. "drupal": {
  2794. "version": "1.0.7",
  2795. "datestamp": "1723136457",
  2796. "security-coverage": {
  2797. "status": "covered",
  2798. "message": "Covered by Drupal's security advisory policy"
  2799. }
  2800. },
  2801. "drush": {
  2802. "services": {
  2803. "drush.services.yml": "^11"
  2804. }
  2805. }
  2806. },
  2807. "notification-url": "https://packages.drupal.org/8/downloads",
  2808. "license": [
  2809. "GPLv3 or later"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "Christopher Gervais",
  2814. "homepage": "https://www.drupal.org/user/1131532",
  2815. "email": "chris@ergonlogic.com"
  2816. },
  2817. {
  2818. "name": "Dan Friedman",
  2819. "homepage": "https://www.drupal.org/user/58704",
  2820. "email": "dan@consensus.enterprises"
  2821. },
  2822. {
  2823. "name": "Derek Laventure",
  2824. "homepage": "https://www.drupal.org/user/368613",
  2825. "email": "derek@consensus.enterprises"
  2826. },
  2827. {
  2828. "name": "Matei Stanca",
  2829. "homepage": "https://ambientimpact.com"
  2830. },
  2831. {
  2832. "name": "M Parker",
  2833. "homepage": "https://www.drupal.org/u/mparker17"
  2834. },
  2835. {
  2836. "name": "Serena Zhu",
  2837. "homepage": "https://www.drupal.org/u/szhu"
  2838. },
  2839. {
  2840. "name": "spiderman",
  2841. "homepage": "https://www.drupal.org/user/1631"
  2842. },
  2843. {
  2844. "name": "szhu",
  2845. "homepage": "https://www.drupal.org/user/3525295"
  2846. }
  2847. ],
  2848. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2849. "homepage": "https://www.drupal.org/project/config_enforce",
  2850. "support": {
  2851. "source": "https://git.drupalcode.org/project/config_enforce"
  2852. }
  2853. },
  2854. {
  2855. "name": "drupal/config_filter",
  2856. "version": "2.7.0",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://git.drupalcode.org/project/config_filter.git",
  2860. "reference": "8.x-2.7"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2865. "reference": "8.x-2.7",
  2866. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2867. },
  2868. "require": {
  2869. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2870. },
  2871. "conflict": {
  2872. "drush/drush": "<10"
  2873. },
  2874. "suggest": {
  2875. "drupal/config_split": "Split site configuration for different environments."
  2876. },
  2877. "type": "drupal-module",
  2878. "extra": {
  2879. "drupal": {
  2880. "version": "8.x-2.7",
  2881. "datestamp": "1727472458",
  2882. "security-coverage": {
  2883. "status": "covered",
  2884. "message": "Covered by Drupal's security advisory policy"
  2885. }
  2886. }
  2887. },
  2888. "notification-url": "https://packages.drupal.org/8/downloads",
  2889. "license": [
  2890. "GPL-2.0-or-later"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Fabian Bircher",
  2895. "homepage": "https://www.drupal.org/u/bircher",
  2896. "email": "opensource@fabianbircher.com",
  2897. "role": "Maintainer"
  2898. },
  2899. {
  2900. "name": "Nuvole Web",
  2901. "homepage": "http://nuvole.org",
  2902. "email": "info@nuvole.org",
  2903. "role": "Maintainer"
  2904. },
  2905. {
  2906. "name": "pescetti",
  2907. "homepage": "https://www.drupal.org/user/436244"
  2908. }
  2909. ],
  2910. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2911. "homepage": "https://www.drupal.org/project/config_filter",
  2912. "keywords": [
  2913. "Drupal",
  2914. "configuration",
  2915. "configuration management"
  2916. ],
  2917. "support": {
  2918. "source": "https://git.drupalcode.org/project/config_filter",
  2919. "issues": "https://www.drupal.org/project/issues/config_filter",
  2920. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2921. }
  2922. },
  2923. {
  2924. "name": "drupal/config_ignore",
  2925. "version": "3.3.0",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2929. "reference": "8.x-3.3"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2934. "reference": "8.x-3.3",
  2935. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2936. },
  2937. "require": {
  2938. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2939. },
  2940. "require-dev": {
  2941. "drupal/config_filter": "^1.8||^2.2",
  2942. "drush/drush": "^10 || ^11 || ^12"
  2943. },
  2944. "type": "drupal-module",
  2945. "extra": {
  2946. "drupal": {
  2947. "version": "8.x-3.3",
  2948. "datestamp": "1713299496",
  2949. "security-coverage": {
  2950. "status": "covered",
  2951. "message": "Covered by Drupal's security advisory policy"
  2952. }
  2953. }
  2954. },
  2955. "notification-url": "https://packages.drupal.org/8/downloads",
  2956. "license": [
  2957. "GPL-2.0-or-later"
  2958. ],
  2959. "authors": [
  2960. {
  2961. "name": "Tommy Lynge Jørgensen",
  2962. "homepage": "https://www.drupal.org/u/tlyngej",
  2963. "email": "tlyngej@gmail.com",
  2964. "role": "Maintainer"
  2965. },
  2966. {
  2967. "name": "Fabian Bircher",
  2968. "homepage": "https://www.drupal.org/u/bircher",
  2969. "role": "Maintainer"
  2970. },
  2971. {
  2972. "name": "tlyngej",
  2973. "homepage": "https://www.drupal.org/user/413139"
  2974. }
  2975. ],
  2976. "description": "Ignore certain configuration during import and export.",
  2977. "homepage": "http://drupal.org/project/config_ignore",
  2978. "support": {
  2979. "source": "https://git.drupalcode.org/project/config_ignore",
  2980. "issues": "http://drupal.org/project/config_ignore"
  2981. }
  2982. },
  2983. {
  2984. "name": "drupal/config_pages",
  2985. "version": "2.17.0",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://git.drupalcode.org/project/config_pages.git",
  2989. "reference": "8.x-2.17"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  2994. "reference": "8.x-2.17",
  2995. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  2996. },
  2997. "require": {
  2998. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  2999. },
  3000. "type": "drupal-module",
  3001. "extra": {
  3002. "drupal": {
  3003. "version": "8.x-2.17",
  3004. "datestamp": "1736029180",
  3005. "security-coverage": {
  3006. "status": "covered",
  3007. "message": "Covered by Drupal's security advisory policy"
  3008. }
  3009. },
  3010. "drush": {
  3011. "services": {
  3012. "drush.services.yml": "^9"
  3013. }
  3014. }
  3015. },
  3016. "notification-url": "https://packages.drupal.org/8/downloads",
  3017. "license": [
  3018. "GPL-2.0-or-later"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "m.krestnicov",
  3023. "homepage": "https://www.drupal.org/user/3193903"
  3024. },
  3025. {
  3026. "name": "qwaygon",
  3027. "homepage": "https://www.drupal.org/user/636624"
  3028. },
  3029. {
  3030. "name": "shumer",
  3031. "homepage": "https://www.drupal.org/user/2297432"
  3032. }
  3033. ],
  3034. "description": "ConfigPages module",
  3035. "homepage": "http://drupal.org/project/config_pages",
  3036. "keywords": [
  3037. "Drupal"
  3038. ],
  3039. "support": {
  3040. "source": "http://cgit.drupalcode.org/config_pages",
  3041. "issues": "http://drupal.org/project/issues/config_pages"
  3042. }
  3043. },
  3044. {
  3045. "name": "drupal/config_update",
  3046. "version": "2.0.0-alpha4",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://git.drupalcode.org/project/config_update.git",
  3050. "reference": "2.0.0-alpha4"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3055. "reference": "2.0.0-alpha4",
  3056. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3057. },
  3058. "require": {
  3059. "drupal/core": "^9.4 || ^10 || ^11"
  3060. },
  3061. "type": "drupal-module",
  3062. "extra": {
  3063. "drupal": {
  3064. "version": "2.0.0-alpha4",
  3065. "datestamp": "1724596931",
  3066. "security-coverage": {
  3067. "status": "not-covered",
  3068. "message": "Alpha releases are not covered by Drupal security advisories."
  3069. }
  3070. }
  3071. },
  3072. "notification-url": "https://packages.drupal.org/8/downloads",
  3073. "license": [
  3074. "GPL-2.0-or-later"
  3075. ],
  3076. "authors": [
  3077. {
  3078. "name": "codebymikey",
  3079. "homepage": "https://www.drupal.org/user/3573206"
  3080. },
  3081. {
  3082. "name": "pasqualle",
  3083. "homepage": "https://www.drupal.org/user/80733"
  3084. },
  3085. {
  3086. "name": "vishalkhode",
  3087. "homepage": "https://www.drupal.org/user/2439156"
  3088. }
  3089. ],
  3090. "description": "Provides basic revert and update functionality for other modules.",
  3091. "homepage": "https://www.drupal.org/project/config_update",
  3092. "support": {
  3093. "source": "https://git.drupalcode.org/project/config_update"
  3094. }
  3095. },
  3096. {
  3097. "name": "drupal/content_lock",
  3098. "version": "2.4.0",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://git.drupalcode.org/project/content_lock.git",
  3102. "reference": "8.x-2.4"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3107. "reference": "8.x-2.4",
  3108. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3109. },
  3110. "require": {
  3111. "drupal/core": "^9.0 || ^10.0"
  3112. },
  3113. "type": "drupal-module",
  3114. "extra": {
  3115. "drupal": {
  3116. "version": "8.x-2.4",
  3117. "datestamp": "1715783058",
  3118. "security-coverage": {
  3119. "status": "covered",
  3120. "message": "Covered by Drupal's security advisory policy"
  3121. }
  3122. }
  3123. },
  3124. "notification-url": "https://packages.drupal.org/8/downloads",
  3125. "license": [
  3126. "GPL-2.0-or-later"
  3127. ],
  3128. "authors": [
  3129. {
  3130. "name": "alexpott",
  3131. "homepage": "https://www.drupal.org/user/157725"
  3132. },
  3133. {
  3134. "name": "astonvictor",
  3135. "homepage": "https://www.drupal.org/user/3466615"
  3136. },
  3137. {
  3138. "name": "chr.fritsch",
  3139. "homepage": "https://www.drupal.org/user/2103716"
  3140. },
  3141. {
  3142. "name": "daniel.bosen",
  3143. "homepage": "https://www.drupal.org/user/404865"
  3144. },
  3145. {
  3146. "name": "ergonlogic",
  3147. "homepage": "https://www.drupal.org/user/368613"
  3148. },
  3149. {
  3150. "name": "mfb",
  3151. "homepage": "https://www.drupal.org/user/12302"
  3152. },
  3153. {
  3154. "name": "volkerk",
  3155. "homepage": "https://www.drupal.org/user/57527"
  3156. }
  3157. ],
  3158. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3159. "homepage": "https://www.drupal.org/project/content_lock",
  3160. "support": {
  3161. "source": "https://git.drupalcode.org/project/content_lock"
  3162. }
  3163. },
  3164. {
  3165. "name": "drupal/context",
  3166. "version": "5.0.0-rc2",
  3167. "source": {
  3168. "type": "git",
  3169. "url": "https://git.drupalcode.org/project/context.git",
  3170. "reference": "5.0.0-rc2"
  3171. },
  3172. "dist": {
  3173. "type": "zip",
  3174. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3175. "reference": "5.0.0-rc2",
  3176. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3177. },
  3178. "require": {
  3179. "drupal/core": "^9.3 || ^10 || ^11"
  3180. },
  3181. "type": "drupal-module",
  3182. "extra": {
  3183. "drupal": {
  3184. "version": "5.0.0-rc2",
  3185. "datestamp": "1741253306",
  3186. "security-coverage": {
  3187. "status": "not-covered",
  3188. "message": "RC releases are not covered by Drupal security advisories."
  3189. }
  3190. }
  3191. },
  3192. "notification-url": "https://packages.drupal.org/8/downloads",
  3193. "license": [
  3194. "MIT"
  3195. ],
  3196. "authors": [
  3197. {
  3198. "name": "Christoffer Palm",
  3199. "homepage": "http://www.oddhill.se/",
  3200. "email": "christoffer.palm@oddhill.se",
  3201. "role": "Developer"
  3202. },
  3203. {
  3204. "name": "boshtian",
  3205. "homepage": "https://www.drupal.org/user/1773456"
  3206. },
  3207. {
  3208. "name": "colan",
  3209. "homepage": "https://www.drupal.org/user/58704"
  3210. },
  3211. {
  3212. "name": "emanaton",
  3213. "homepage": "https://www.drupal.org/user/120853"
  3214. },
  3215. {
  3216. "name": "febbraro",
  3217. "homepage": "https://www.drupal.org/user/43670"
  3218. },
  3219. {
  3220. "name": "fizk",
  3221. "homepage": "https://www.drupal.org/user/473174"
  3222. },
  3223. {
  3224. "name": "hass",
  3225. "homepage": "https://www.drupal.org/user/85918"
  3226. },
  3227. {
  3228. "name": "hefox",
  3229. "homepage": "https://www.drupal.org/user/426416"
  3230. },
  3231. {
  3232. "name": "jmiccolis",
  3233. "homepage": "https://www.drupal.org/user/31731"
  3234. },
  3235. {
  3236. "name": "kristen pol",
  3237. "homepage": "https://www.drupal.org/user/8389"
  3238. },
  3239. {
  3240. "name": "mandclu",
  3241. "homepage": "https://www.drupal.org/user/52136"
  3242. },
  3243. {
  3244. "name": "nedjo",
  3245. "homepage": "https://www.drupal.org/user/4481"
  3246. },
  3247. {
  3248. "name": "NormySan",
  3249. "homepage": "https://www.drupal.org/user/112352"
  3250. },
  3251. {
  3252. "name": "patricksettle",
  3253. "homepage": "https://www.drupal.org/user/26618"
  3254. },
  3255. {
  3256. "name": "paulocs",
  3257. "homepage": "https://www.drupal.org/user/3640109"
  3258. },
  3259. {
  3260. "name": "steven jones",
  3261. "homepage": "https://www.drupal.org/user/99644"
  3262. },
  3263. {
  3264. "name": "tekante",
  3265. "homepage": "https://www.drupal.org/user/640024"
  3266. },
  3267. {
  3268. "name": "yhahn",
  3269. "homepage": "https://www.drupal.org/user/264833"
  3270. }
  3271. ],
  3272. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3273. "homepage": "https://github.com/oddhill/context",
  3274. "keywords": [
  3275. "Drupal",
  3276. "block",
  3277. "conditions",
  3278. "context",
  3279. "visibility"
  3280. ],
  3281. "support": {
  3282. "source": "https://github.com/oddhill/context",
  3283. "issues": "https://github.com/oddhill/context/issues",
  3284. "docs": "https://github.com/oddhill/context"
  3285. }
  3286. },
  3287. {
  3288. "name": "drupal/core",
  3289. "version": "10.6.5",
  3290. "source": {
  3291. "type": "git",
  3292. "url": "https://github.com/drupal/core.git",
  3293. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  3294. },
  3295. "dist": {
  3296. "type": "zip",
  3297. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  3298. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  3299. "shasum": ""
  3300. },
  3301. "require": {
  3302. "asm89/stack-cors": "^2.3",
  3303. "composer-runtime-api": "^2.1",
  3304. "composer/semver": "^3.3",
  3305. "doctrine/lexer": "^2",
  3306. "egulias/email-validator": "^3.2.1|^4.0",
  3307. "ext-date": "*",
  3308. "ext-dom": "*",
  3309. "ext-filter": "*",
  3310. "ext-gd": "*",
  3311. "ext-hash": "*",
  3312. "ext-json": "*",
  3313. "ext-pcre": "*",
  3314. "ext-pdo": "*",
  3315. "ext-session": "*",
  3316. "ext-simplexml": "*",
  3317. "ext-spl": "*",
  3318. "ext-tokenizer": "*",
  3319. "ext-xml": "*",
  3320. "guzzlehttp/guzzle": "^7.5",
  3321. "guzzlehttp/psr7": "^2.4.5",
  3322. "masterminds/html5": "^2.7",
  3323. "mck89/peast": "^1.14",
  3324. "pear/archive_tar": "^1.4.14",
  3325. "php": ">=8.1.0",
  3326. "psr/log": "^3.0",
  3327. "sebastian/diff": "^4",
  3328. "symfony/console": "^6.4",
  3329. "symfony/dependency-injection": "^6.4",
  3330. "symfony/event-dispatcher": "^6.4",
  3331. "symfony/filesystem": "^6.4",
  3332. "symfony/finder": "^6.4",
  3333. "symfony/http-foundation": "^6.4",
  3334. "symfony/http-kernel": "^6.4",
  3335. "symfony/mailer": "^6.4",
  3336. "symfony/mime": "^6.4",
  3337. "symfony/polyfill-iconv": "^1.26",
  3338. "symfony/process": "^6.4.33",
  3339. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3340. "symfony/routing": "^6.4",
  3341. "symfony/serializer": "^6.4",
  3342. "symfony/validator": "^6.4",
  3343. "symfony/yaml": "^6.4",
  3344. "twig/twig": "^3.22.0"
  3345. },
  3346. "conflict": {
  3347. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  3348. "drush/drush": "<12.4.3"
  3349. },
  3350. "replace": {
  3351. "drupal/core-annotation": "self.version",
  3352. "drupal/core-assertion": "self.version",
  3353. "drupal/core-class-finder": "self.version",
  3354. "drupal/core-datetime": "self.version",
  3355. "drupal/core-dependency-injection": "self.version",
  3356. "drupal/core-diff": "self.version",
  3357. "drupal/core-discovery": "self.version",
  3358. "drupal/core-event-dispatcher": "self.version",
  3359. "drupal/core-file-cache": "self.version",
  3360. "drupal/core-file-security": "self.version",
  3361. "drupal/core-filesystem": "self.version",
  3362. "drupal/core-front-matter": "self.version",
  3363. "drupal/core-gettext": "self.version",
  3364. "drupal/core-graph": "self.version",
  3365. "drupal/core-http-foundation": "self.version",
  3366. "drupal/core-php-storage": "self.version",
  3367. "drupal/core-plugin": "self.version",
  3368. "drupal/core-proxy-builder": "self.version",
  3369. "drupal/core-render": "self.version",
  3370. "drupal/core-serialization": "self.version",
  3371. "drupal/core-transliteration": "self.version",
  3372. "drupal/core-utility": "self.version",
  3373. "drupal/core-uuid": "self.version",
  3374. "drupal/core-version": "self.version"
  3375. },
  3376. "suggest": {
  3377. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3378. },
  3379. "type": "drupal-core",
  3380. "extra": {
  3381. "drupal-scaffold": {
  3382. "file-mapping": {
  3383. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3384. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3385. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3386. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3387. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3388. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3389. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3390. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3391. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3392. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3393. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3394. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3395. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3396. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3397. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3398. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3399. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3400. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3401. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3402. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3403. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3404. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3405. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3406. }
  3407. }
  3408. },
  3409. "autoload": {
  3410. "files": [
  3411. "includes/bootstrap.inc"
  3412. ],
  3413. "psr-4": {
  3414. "Drupal\\Core\\": "lib/Drupal/Core",
  3415. "Drupal\\Component\\": "lib/Drupal/Component"
  3416. },
  3417. "classmap": [
  3418. "lib/Drupal.php",
  3419. "lib/Drupal/Component/DependencyInjection/Container.php",
  3420. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3421. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3422. "lib/Drupal/Component/Utility/Timer.php",
  3423. "lib/Drupal/Component/Utility/Unicode.php",
  3424. "lib/Drupal/Core/Cache/Cache.php",
  3425. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3426. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3427. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3428. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3429. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3430. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3431. "lib/Drupal/Core/Database/Connection.php",
  3432. "lib/Drupal/Core/Database/Database.php",
  3433. "lib/Drupal/Core/Database/StatementInterface.php",
  3434. "lib/Drupal/Core/DependencyInjection/Container.php",
  3435. "lib/Drupal/Core/DrupalKernel.php",
  3436. "lib/Drupal/Core/DrupalKernelInterface.php",
  3437. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3438. "lib/Drupal/Core/Site/Settings.php",
  3439. "lib/Drupal/Component/Datetime/Time.php"
  3440. ]
  3441. },
  3442. "notification-url": "https://packagist.org/downloads/",
  3443. "license": [
  3444. "GPL-2.0-or-later"
  3445. ],
  3446. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3447. "support": {
  3448. "source": "https://github.com/drupal/core/tree/10.6.5"
  3449. },
  3450. "time": "2026-03-06T09:55:31+00:00"
  3451. },
  3452. {
  3453. "name": "drupal/core-composer-scaffold",
  3454. "version": "10.6.5",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3458. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3463. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "composer-plugin-api": "^2",
  3468. "php": ">=7.3.0"
  3469. },
  3470. "conflict": {
  3471. "drupal-composer/drupal-scaffold": "*"
  3472. },
  3473. "require-dev": {
  3474. "composer/composer": "^1.8@stable"
  3475. },
  3476. "type": "composer-plugin",
  3477. "extra": {
  3478. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3479. "branch-alias": {
  3480. "dev-master": "1.0.x-dev"
  3481. }
  3482. },
  3483. "autoload": {
  3484. "psr-4": {
  3485. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3486. }
  3487. },
  3488. "notification-url": "https://packagist.org/downloads/",
  3489. "license": [
  3490. "GPL-2.0-or-later"
  3491. ],
  3492. "description": "A flexible Composer project scaffold builder.",
  3493. "homepage": "https://www.drupal.org/project/drupal",
  3494. "keywords": [
  3495. "drupal"
  3496. ],
  3497. "support": {
  3498. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  3499. },
  3500. "time": "2024-08-22T14:31:30+00:00"
  3501. },
  3502. {
  3503. "name": "drupal/core-project-message",
  3504. "version": "10.6.5",
  3505. "source": {
  3506. "type": "git",
  3507. "url": "https://github.com/drupal/core-project-message.git",
  3508. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3509. },
  3510. "dist": {
  3511. "type": "zip",
  3512. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3513. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3514. "shasum": ""
  3515. },
  3516. "require": {
  3517. "composer-plugin-api": "^2",
  3518. "php": ">=7.3.0"
  3519. },
  3520. "type": "composer-plugin",
  3521. "extra": {
  3522. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3523. },
  3524. "autoload": {
  3525. "psr-4": {
  3526. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3527. }
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "GPL-2.0-or-later"
  3532. ],
  3533. "description": "Adds a message after Composer installation.",
  3534. "homepage": "https://www.drupal.org/project/drupal",
  3535. "keywords": [
  3536. "drupal"
  3537. ],
  3538. "support": {
  3539. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  3540. },
  3541. "time": "2023-07-24T07:55:25+00:00"
  3542. },
  3543. {
  3544. "name": "drupal/core-recommended",
  3545. "version": "10.6.5",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/drupal/core-recommended.git",
  3549. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  3554. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "asm89/stack-cors": "~v2.3.0",
  3559. "composer/semver": "~3.4.4",
  3560. "doctrine/deprecations": "~1.1.5",
  3561. "doctrine/lexer": "~2.1.1",
  3562. "drupal/core": "10.6.5",
  3563. "egulias/email-validator": "~4.0.4",
  3564. "guzzlehttp/guzzle": "~7.10.0",
  3565. "guzzlehttp/promises": "~2.3.0",
  3566. "guzzlehttp/psr7": "~2.8.0",
  3567. "masterminds/html5": "~2.10.0",
  3568. "mck89/peast": "~v1.17.4",
  3569. "pear/archive_tar": "~1.6.0",
  3570. "pear/console_getopt": "~v1.4.3",
  3571. "pear/pear-core-minimal": "~v1.10.16",
  3572. "pear/pear_exception": "~v1.0.2",
  3573. "psr/container": "~2.0.2",
  3574. "psr/event-dispatcher": "~1.0.0",
  3575. "psr/http-client": "~1.0.3",
  3576. "psr/http-factory": "~1.1.0",
  3577. "psr/log": "~3.0.2",
  3578. "ralouphie/getallheaders": "~3.0.3",
  3579. "sebastian/diff": "~4.0.6",
  3580. "symfony/console": "~v6.4.27",
  3581. "symfony/dependency-injection": "~v6.4.26",
  3582. "symfony/deprecation-contracts": "~v3.6.0",
  3583. "symfony/error-handler": "~v6.4.26",
  3584. "symfony/event-dispatcher": "~v6.4.25",
  3585. "symfony/event-dispatcher-contracts": "~v3.6.0",
  3586. "symfony/filesystem": "~v6.4.24",
  3587. "symfony/finder": "~v6.4.27",
  3588. "symfony/http-foundation": "~v6.4.29",
  3589. "symfony/http-kernel": "~v6.4.29",
  3590. "symfony/mailer": "~v6.4.27",
  3591. "symfony/mime": "~v6.4.26",
  3592. "symfony/polyfill-ctype": "~v1.33.0",
  3593. "symfony/polyfill-iconv": "~v1.33.0",
  3594. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  3595. "symfony/polyfill-intl-idn": "~v1.33.0",
  3596. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  3597. "symfony/polyfill-mbstring": "~v1.33.0",
  3598. "symfony/polyfill-php83": "~v1.33.0",
  3599. "symfony/process": "~v6.4.33",
  3600. "symfony/psr-http-message-bridge": "~v6.4.24",
  3601. "symfony/routing": "~v6.4.28",
  3602. "symfony/serializer": "~v6.4.27",
  3603. "symfony/service-contracts": "~v3.6.1",
  3604. "symfony/string": "~v6.4.26",
  3605. "symfony/translation-contracts": "~v3.6.1",
  3606. "symfony/validator": "~v6.4.29",
  3607. "symfony/var-dumper": "~v6.4.26",
  3608. "symfony/var-exporter": "~v6.4.26",
  3609. "symfony/yaml": "~v6.4.26",
  3610. "twig/twig": "~v3.22.0"
  3611. },
  3612. "conflict": {
  3613. "webflo/drupal-core-strict": "*"
  3614. },
  3615. "type": "metapackage",
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "GPL-2.0-or-later"
  3619. ],
  3620. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3621. "support": {
  3622. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  3623. },
  3624. "time": "2026-03-06T09:55:31+00:00"
  3625. },
  3626. {
  3627. "name": "drupal/ctools",
  3628. "version": "4.1.0",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://git.drupalcode.org/project/ctools.git",
  3632. "reference": "4.1.0"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3637. "reference": "4.1.0",
  3638. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3639. },
  3640. "require": {
  3641. "drupal/core": "^9.5 || ^10 || ^11"
  3642. },
  3643. "type": "drupal-module",
  3644. "extra": {
  3645. "drupal": {
  3646. "version": "4.1.0",
  3647. "datestamp": "1718144949",
  3648. "security-coverage": {
  3649. "status": "covered",
  3650. "message": "Covered by Drupal's security advisory policy"
  3651. }
  3652. },
  3653. "branch-alias": {
  3654. "dev-8.x-3.x": "3.x-dev"
  3655. }
  3656. },
  3657. "notification-url": "https://packages.drupal.org/8/downloads",
  3658. "license": [
  3659. "GPL-2.0-or-later"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Kris Vanderwater (EclipseGc)",
  3664. "homepage": "https://www.drupal.org/u/eclipsegc",
  3665. "role": "Maintainer"
  3666. },
  3667. {
  3668. "name": "Jakob Perry (japerry)",
  3669. "homepage": "https://www.drupal.org/u/japerry",
  3670. "role": "Maintainer"
  3671. },
  3672. {
  3673. "name": "Tim Plunkett (tim.plunkett)",
  3674. "homepage": "https://www.drupal.org/u/timplunkett",
  3675. "role": "Maintainer"
  3676. },
  3677. {
  3678. "name": "James Gilliland (neclimdul)",
  3679. "homepage": "https://www.drupal.org/u/neclimdul",
  3680. "role": "Maintainer"
  3681. },
  3682. {
  3683. "name": "Daniel Wehner (dawehner)",
  3684. "homepage": "https://www.drupal.org/u/dawehner",
  3685. "role": "Maintainer"
  3686. },
  3687. {
  3688. "name": "joelpittet",
  3689. "homepage": "https://www.drupal.org/user/160302"
  3690. },
  3691. {
  3692. "name": "merlinofchaos",
  3693. "homepage": "https://www.drupal.org/user/26979"
  3694. },
  3695. {
  3696. "name": "neclimdul",
  3697. "homepage": "https://www.drupal.org/user/48673"
  3698. },
  3699. {
  3700. "name": "sdboyer",
  3701. "homepage": "https://www.drupal.org/user/146719"
  3702. },
  3703. {
  3704. "name": "sun",
  3705. "homepage": "https://www.drupal.org/user/54136"
  3706. },
  3707. {
  3708. "name": "tim.plunkett",
  3709. "homepage": "https://www.drupal.org/user/241634"
  3710. }
  3711. ],
  3712. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3713. "homepage": "https://www.drupal.org/project/ctools",
  3714. "support": {
  3715. "source": "https://git.drupalcode.org/project/ctools",
  3716. "issues": "https://www.drupal.org/project/issues/ctools"
  3717. }
  3718. },
  3719. {
  3720. "name": "drupal/date_range_formatter",
  3721. "version": "dev-9.0.x",
  3722. "source": {
  3723. "type": "git",
  3724. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3725. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3726. },
  3727. "require": {
  3728. "drupal/core": "^8 || ^9 || ^10"
  3729. },
  3730. "type": "drupal-module",
  3731. "extra": {
  3732. "branch-alias": {
  3733. "dev-9.0.x": "9.0.x-dev"
  3734. },
  3735. "drupal": {
  3736. "version": "9.0.x-dev",
  3737. "datestamp": "1718887202",
  3738. "security-coverage": {
  3739. "status": "not-covered",
  3740. "message": "Dev releases are not covered by Drupal security advisories."
  3741. }
  3742. }
  3743. },
  3744. "notification-url": "https://packages.drupal.org/8/downloads",
  3745. "license": [
  3746. "GPL-2.0-or-later"
  3747. ],
  3748. "authors": [
  3749. {
  3750. "name": "maximpodorov",
  3751. "homepage": "https://www.drupal.org/user/515310"
  3752. },
  3753. {
  3754. "name": "sudishth",
  3755. "homepage": "https://www.drupal.org/user/1440562"
  3756. }
  3757. ],
  3758. "description": "Formats date ranges.",
  3759. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3760. "support": {
  3761. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3762. }
  3763. },
  3764. {
  3765. "name": "drupal/devel",
  3766. "version": "5.4.0",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://git.drupalcode.org/project/devel.git",
  3770. "reference": "5.4.0"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://ftp.drupal.org/files/projects/devel-5.4.0.zip",
  3775. "reference": "5.4.0",
  3776. "shasum": "fc14fe1c396dbff661f9d13e6e3171d9ab781a46"
  3777. },
  3778. "require": {
  3779. "doctrine/common": "^2.7 || ^3.4",
  3780. "drupal/core": "^10.3 || ^11 || ^12",
  3781. "php": ">=8.1",
  3782. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3783. },
  3784. "conflict": {
  3785. "drupal/core": "<10.3",
  3786. "drush/drush": "<12.5.1"
  3787. },
  3788. "require-dev": {
  3789. "drupal/navigation_extra_tools": "1.0.x-dev",
  3790. "drush/drush": "^13",
  3791. "firephp/firephp-core": "^0.5.3"
  3792. },
  3793. "suggest": {
  3794. "drupal/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3795. },
  3796. "type": "drupal-module",
  3797. "extra": {
  3798. "drupal": {
  3799. "version": "5.4.0",
  3800. "datestamp": "1752755621",
  3801. "security-coverage": {
  3802. "status": "covered",
  3803. "message": "Covered by Drupal's security advisory policy"
  3804. }
  3805. }
  3806. },
  3807. "notification-url": "https://packages.drupal.org/8/downloads",
  3808. "license": [
  3809. "GPL-2.0-or-later"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "moshe weitzman",
  3814. "homepage": "https://www.drupal.org/user/23"
  3815. }
  3816. ],
  3817. "description": "Various blocks, pages, and functions for developers.",
  3818. "homepage": "https://www.drupal.org/project/devel",
  3819. "support": {
  3820. "source": "https://gitlab.com/drupalspoons/devel",
  3821. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3822. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3823. }
  3824. },
  3825. {
  3826. "name": "drupal/devel_kint_extras",
  3827. "version": "1.1.4",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3831. "reference": "1.1.4"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3836. "reference": "1.1.4",
  3837. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3838. },
  3839. "require": {
  3840. "drupal/core": "^9 || ^10 || ^11",
  3841. "drupal/devel": "^4.0 || ^5.0",
  3842. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3843. },
  3844. "type": "drupal-module",
  3845. "extra": {
  3846. "drupal": {
  3847. "version": "1.1.4",
  3848. "datestamp": "1740995042",
  3849. "security-coverage": {
  3850. "status": "covered",
  3851. "message": "Covered by Drupal's security advisory policy"
  3852. }
  3853. }
  3854. },
  3855. "notification-url": "https://packages.drupal.org/8/downloads",
  3856. "license": [
  3857. "GPL-2.0-or-later"
  3858. ],
  3859. "authors": [
  3860. {
  3861. "name": "Jan Chojnacki",
  3862. "homepage": "https://www.drupal.org/u/janchojnacki"
  3863. },
  3864. {
  3865. "name": "Other contributors",
  3866. "homepage": "https://www.drupal.org/node/3164492/committers"
  3867. }
  3868. ],
  3869. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3870. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3871. "support": {
  3872. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3873. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3874. "chat": "irc://irc.freenode.org/drupal-contribute"
  3875. }
  3876. },
  3877. {
  3878. "name": "drupal/email_registration",
  3879. "version": "1.4.0",
  3880. "source": {
  3881. "type": "git",
  3882. "url": "https://git.drupalcode.org/project/email_registration.git",
  3883. "reference": "8.x-1.4"
  3884. },
  3885. "dist": {
  3886. "type": "zip",
  3887. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3888. "reference": "8.x-1.4",
  3889. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3890. },
  3891. "require": {
  3892. "drupal/core": "^9.1 || ^10"
  3893. },
  3894. "conflict": {
  3895. "drupal/commerce": "<2.12"
  3896. },
  3897. "require-dev": {
  3898. "drupal/commerce": "^2.0",
  3899. "drupal/token": "*"
  3900. },
  3901. "type": "drupal-module",
  3902. "extra": {
  3903. "drupal": {
  3904. "version": "8.x-1.4",
  3905. "datestamp": "1700548925",
  3906. "security-coverage": {
  3907. "status": "covered",
  3908. "message": "Covered by Drupal's security advisory policy"
  3909. }
  3910. }
  3911. },
  3912. "notification-url": "https://packages.drupal.org/8/downloads",
  3913. "license": [
  3914. "GPL-2.0-or-later"
  3915. ],
  3916. "authors": [
  3917. {
  3918. "name": "Greg Knaddison (greggles)",
  3919. "homepage": "https://www.drupal.org/u/greggles",
  3920. "role": "Maintainer"
  3921. },
  3922. {
  3923. "name": "Andrey Postnikov (andypost)",
  3924. "homepage": "https://www.drupal.org/u/andypost",
  3925. "role": "Maintainer"
  3926. },
  3927. {
  3928. "name": "Chris Herberte",
  3929. "homepage": "https://www.drupal.org/u/chris-herberte",
  3930. "role": "Maintainer"
  3931. },
  3932. {
  3933. "name": "Moshe Weitzman (moshe weitzman)",
  3934. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3935. "role": "Maintainer"
  3936. },
  3937. {
  3938. "name": "grevil",
  3939. "homepage": "https://www.drupal.org/user/3668491"
  3940. },
  3941. {
  3942. "name": "moshe weitzman",
  3943. "homepage": "https://www.drupal.org/user/23"
  3944. }
  3945. ],
  3946. "description": "Allows users to register with an email address as their username.",
  3947. "homepage": "https://www.drupal.org/project/email_registration",
  3948. "support": {
  3949. "source": "https://git.drupalcode.org/project/email_registration",
  3950. "issues": "http://drupal.org/project/issues/email_registration"
  3951. }
  3952. },
  3953. {
  3954. "name": "drupal/embed",
  3955. "version": "1.10.0",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://git.drupalcode.org/project/embed.git",
  3959. "reference": "8.x-1.10"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  3964. "reference": "8.x-1.10",
  3965. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  3966. },
  3967. "require": {
  3968. "drupal/core": "^10.2 || ^11"
  3969. },
  3970. "require-dev": {
  3971. "drupal/ckeditor": "^1.0"
  3972. },
  3973. "type": "drupal-module",
  3974. "extra": {
  3975. "drupal": {
  3976. "version": "8.x-1.10",
  3977. "datestamp": "1737663032",
  3978. "security-coverage": {
  3979. "status": "covered",
  3980. "message": "Covered by Drupal's security advisory policy"
  3981. }
  3982. }
  3983. },
  3984. "notification-url": "https://packages.drupal.org/8/downloads",
  3985. "license": [
  3986. "GPL-2.0-or-later"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "cs_shadow",
  3991. "homepage": "https://www.drupal.org/user/2828287"
  3992. },
  3993. {
  3994. "name": "dave reid",
  3995. "homepage": "https://www.drupal.org/user/53892"
  3996. },
  3997. {
  3998. "name": "devin carlson",
  3999. "homepage": "https://www.drupal.org/user/290182"
  4000. },
  4001. {
  4002. "name": "Drupal Media Team",
  4003. "homepage": "https://www.drupal.org/user/3260690"
  4004. },
  4005. {
  4006. "name": "phenaproxima",
  4007. "homepage": "https://www.drupal.org/user/205645"
  4008. },
  4009. {
  4010. "name": "slashrsm",
  4011. "homepage": "https://www.drupal.org/user/744628"
  4012. }
  4013. ],
  4014. "description": "Provides a framework for different types of embeds in text editors.",
  4015. "homepage": "https://www.drupal.org/project/embed",
  4016. "support": {
  4017. "source": "https://git.drupalcode.org/project/embed"
  4018. }
  4019. },
  4020. {
  4021. "name": "drupal/entity_browser",
  4022. "version": "2.13.0",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4026. "reference": "8.x-2.13"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.13.zip",
  4031. "reference": "8.x-2.13",
  4032. "shasum": "9c31caed2602a5cb582cb4f1e1feaac44cbbc21b"
  4033. },
  4034. "require": {
  4035. "drupal/core": "^10.2 || ^11"
  4036. },
  4037. "conflict": {
  4038. "drupal/media_entity": "1.*"
  4039. },
  4040. "require-dev": {
  4041. "drupal/embed": "^1.0",
  4042. "drupal/entity_embed": "^1.0",
  4043. "drupal/entity_reference_revisions": "^1.0",
  4044. "drupal/entityqueue": "^1.0",
  4045. "drupal/inline_entity_form": "^1 || ^3",
  4046. "drupal/paragraphs": "^1.0",
  4047. "drupal/search_api": "^1.0",
  4048. "drupal/token": "^1.0"
  4049. },
  4050. "type": "drupal-module",
  4051. "extra": {
  4052. "drupal": {
  4053. "version": "8.x-2.13",
  4054. "datestamp": "1739701403",
  4055. "security-coverage": {
  4056. "status": "covered",
  4057. "message": "Covered by Drupal's security advisory policy"
  4058. }
  4059. }
  4060. },
  4061. "notification-url": "https://packages.drupal.org/8/downloads",
  4062. "license": [
  4063. "GPL-2.0+"
  4064. ],
  4065. "authors": [
  4066. {
  4067. "name": "Janez Urevc",
  4068. "homepage": "https://github.com/slashrsm",
  4069. "role": "Maintainer"
  4070. },
  4071. {
  4072. "name": "Primoz Hmeljak",
  4073. "homepage": "https://github.com/primsi",
  4074. "role": "Maintainer"
  4075. },
  4076. {
  4077. "name": "See other contributors",
  4078. "homepage": "https://www.drupal.org/node/1943336/committers",
  4079. "role": "contributor"
  4080. },
  4081. {
  4082. "name": "Drupal Media Team",
  4083. "homepage": "https://www.drupal.org/user/3260690"
  4084. },
  4085. {
  4086. "name": "marcingy",
  4087. "homepage": "https://www.drupal.org/user/77320"
  4088. },
  4089. {
  4090. "name": "oknate",
  4091. "homepage": "https://www.drupal.org/user/471638"
  4092. },
  4093. {
  4094. "name": "primsi",
  4095. "homepage": "https://www.drupal.org/user/282629"
  4096. },
  4097. {
  4098. "name": "samuel.mortenson",
  4099. "homepage": "https://www.drupal.org/user/2582268"
  4100. },
  4101. {
  4102. "name": "slashrsm",
  4103. "homepage": "https://www.drupal.org/user/744628"
  4104. }
  4105. ],
  4106. "description": "Entity browsing and selecting component.",
  4107. "homepage": "https://drupal.org/project/entity_browser",
  4108. "support": {
  4109. "source": "https://git.drupalcode.org/project/entity_browser",
  4110. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4111. "irc": "irc://irc.freenode.org/drupal-contribute"
  4112. }
  4113. },
  4114. {
  4115. "name": "drupal/entity_browser_enhanced",
  4116. "version": "2.0.1",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4120. "reference": "2.0.1"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4125. "reference": "2.0.1",
  4126. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4127. },
  4128. "require": {
  4129. "drupal/core": "^10 || ^11",
  4130. "drupal/entity_browser": "~2.0"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "drupal": {
  4135. "version": "2.0.1",
  4136. "datestamp": "1719827338",
  4137. "security-coverage": {
  4138. "status": "covered",
  4139. "message": "Covered by Drupal's security advisory policy"
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0-or-later"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Vardot",
  4150. "homepage": "https://www.drupal.org/vardot",
  4151. "role": "Maintainer"
  4152. },
  4153. {
  4154. "name": "rajab natshah",
  4155. "homepage": "https://www.drupal.org/user/1414312"
  4156. }
  4157. ],
  4158. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4159. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4160. "support": {
  4161. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4162. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4163. }
  4164. },
  4165. {
  4166. "name": "drupal/entity_clone",
  4167. "version": "dev-2.x",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4171. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4172. },
  4173. "require": {
  4174. "drupal/core": "^9 || ^10 || ^11"
  4175. },
  4176. "require-dev": {
  4177. "drupal/entity_browser": "2.x-dev",
  4178. "drupal/entity_usage": "2.x-dev",
  4179. "drupal/paragraphs": "^1.0",
  4180. "drupal/search_api": "^1.0"
  4181. },
  4182. "type": "drupal-module",
  4183. "extra": {
  4184. "branch-alias": {
  4185. "dev-2.x": "2.x-dev"
  4186. },
  4187. "drupal": {
  4188. "version": "2.1.0-beta1+3-dev",
  4189. "datestamp": "1748869926",
  4190. "security-coverage": {
  4191. "status": "not-covered",
  4192. "message": "Dev releases are not covered by Drupal security advisories."
  4193. }
  4194. }
  4195. },
  4196. "notification-url": "https://packages.drupal.org/8/downloads",
  4197. "license": [
  4198. "GPL-2.0-or-later"
  4199. ],
  4200. "authors": [
  4201. {
  4202. "name": "colan",
  4203. "homepage": "https://www.drupal.org/user/58704"
  4204. },
  4205. {
  4206. "name": "joevagyok",
  4207. "homepage": "https://www.drupal.org/user/2876343"
  4208. },
  4209. {
  4210. "name": "nickdickinsonwilde",
  4211. "homepage": "https://www.drupal.org/user/3094661"
  4212. },
  4213. {
  4214. "name": "rajeshreeputra",
  4215. "homepage": "https://www.drupal.org/user/3418561"
  4216. },
  4217. {
  4218. "name": "upchuk",
  4219. "homepage": "https://www.drupal.org/user/1885838"
  4220. },
  4221. {
  4222. "name": "vpeltot",
  4223. "homepage": "https://www.drupal.org/user/1361586"
  4224. }
  4225. ],
  4226. "description": "Add a clone action for all entities.",
  4227. "homepage": "https://drupal.org/project/entity_clone",
  4228. "support": {
  4229. "source": "https://git.drupalcode.org/project/entity_clone"
  4230. }
  4231. },
  4232. {
  4233. "name": "drupal/entity_reference_revisions",
  4234. "version": "1.12.0",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4238. "reference": "8.x-1.12"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
  4243. "reference": "8.x-1.12",
  4244. "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
  4245. },
  4246. "require": {
  4247. "drupal/core": "^9 || ^10 || ^11"
  4248. },
  4249. "require-dev": {
  4250. "drupal/diff": "^1 || ^2"
  4251. },
  4252. "type": "drupal-module",
  4253. "extra": {
  4254. "drupal": {
  4255. "version": "8.x-1.12",
  4256. "datestamp": "1722804497",
  4257. "security-coverage": {
  4258. "status": "covered",
  4259. "message": "Covered by Drupal's security advisory policy"
  4260. }
  4261. },
  4262. "drush": {
  4263. "services": {
  4264. "drush.services.yml": "^9 || ^10 || ^11"
  4265. }
  4266. }
  4267. },
  4268. "notification-url": "https://packages.drupal.org/8/downloads",
  4269. "license": [
  4270. "GPL-2.0-or-later"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "berdir",
  4275. "homepage": "https://www.drupal.org/user/214652"
  4276. },
  4277. {
  4278. "name": "Frans",
  4279. "homepage": "https://www.drupal.org/user/514222"
  4280. },
  4281. {
  4282. "name": "jeroen.b",
  4283. "homepage": "https://www.drupal.org/user/1853532"
  4284. },
  4285. {
  4286. "name": "miro_dietiker",
  4287. "homepage": "https://www.drupal.org/user/227761"
  4288. }
  4289. ],
  4290. "description": "Entity Reference Revisions",
  4291. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4292. "support": {
  4293. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4294. }
  4295. },
  4296. {
  4297. "name": "drupal/entity_type_clone",
  4298. "version": "4.0.3",
  4299. "source": {
  4300. "type": "git",
  4301. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4302. "reference": "4.0.3"
  4303. },
  4304. "dist": {
  4305. "type": "zip",
  4306. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.3.zip",
  4307. "reference": "4.0.3",
  4308. "shasum": "684e81fcaa034bfb7a4ffdc3e81c040701fbd8b7"
  4309. },
  4310. "require": {
  4311. "drupal/core": "^8 || ^9 || ^10"
  4312. },
  4313. "type": "drupal-module",
  4314. "extra": {
  4315. "drupal": {
  4316. "version": "4.0.3",
  4317. "datestamp": "1693947342",
  4318. "security-coverage": {
  4319. "status": "covered",
  4320. "message": "Covered by Drupal's security advisory policy"
  4321. }
  4322. }
  4323. },
  4324. "notification-url": "https://packages.drupal.org/8/downloads",
  4325. "license": [
  4326. "GPL-2.0-or-later"
  4327. ],
  4328. "authors": [
  4329. {
  4330. "name": "ajay_reddy",
  4331. "homepage": "https://www.drupal.org/user/3261994"
  4332. },
  4333. {
  4334. "name": "vuil",
  4335. "homepage": "https://www.drupal.org/user/3568458"
  4336. }
  4337. ],
  4338. "description": "This module provide option to clone entity types and role.",
  4339. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4340. "support": {
  4341. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4342. }
  4343. },
  4344. {
  4345. "name": "drupal/extlink",
  4346. "version": "2.0.4",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://git.drupalcode.org/project/extlink.git",
  4350. "reference": "2.0.4"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.4.zip",
  4355. "reference": "2.0.4",
  4356. "shasum": "0331ef3457d3a1701f01e04f8256bdd823ea3512"
  4357. },
  4358. "require": {
  4359. "drupal/core": "^10 || ^11"
  4360. },
  4361. "type": "drupal-module",
  4362. "extra": {
  4363. "drupal": {
  4364. "version": "2.0.4",
  4365. "datestamp": "1732565828",
  4366. "security-coverage": {
  4367. "status": "covered",
  4368. "message": "Covered by Drupal's security advisory policy"
  4369. }
  4370. }
  4371. },
  4372. "notification-url": "https://packages.drupal.org/8/downloads",
  4373. "license": [
  4374. "GPL-2.0-or-later"
  4375. ],
  4376. "authors": [
  4377. {
  4378. "name": "Nate Lampton",
  4379. "homepage": "https://www.drupal.org/u/quicksketch",
  4380. "role": "Maintainer"
  4381. },
  4382. {
  4383. "name": "Lachlan Ennis",
  4384. "homepage": "https://www.drupal.org/u/elachlan",
  4385. "role": "Maintainer"
  4386. },
  4387. {
  4388. "name": "Neslee Canil Pinto",
  4389. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4390. "role": "Maintainer"
  4391. },
  4392. {
  4393. "name": "quicksketch",
  4394. "homepage": "https://www.drupal.org/user/35821"
  4395. },
  4396. {
  4397. "name": "smustgrave",
  4398. "homepage": "https://www.drupal.org/user/3252890"
  4399. }
  4400. ],
  4401. "description": "Modify behavior and appearance of external links.",
  4402. "homepage": "https://www.drupal.org/project/extlink",
  4403. "keywords": [
  4404. "Drupal",
  4405. "External Links"
  4406. ],
  4407. "support": {
  4408. "source": "https://git.drupalcode.org/project/extlink",
  4409. "issues": "https://www.drupal.org/project/issues/extlink"
  4410. }
  4411. },
  4412. {
  4413. "name": "drupal/field_group",
  4414. "version": "3.6.0",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://git.drupalcode.org/project/field_group.git",
  4418. "reference": "8.x-3.6"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4423. "reference": "8.x-3.6",
  4424. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4425. },
  4426. "require": {
  4427. "drupal/core": "^9.2 || ^10 || ^11"
  4428. },
  4429. "require-dev": {
  4430. "drupal/jquery_ui_accordion": "*"
  4431. },
  4432. "type": "drupal-module",
  4433. "extra": {
  4434. "drupal": {
  4435. "version": "8.x-3.6",
  4436. "datestamp": "1722672510",
  4437. "security-coverage": {
  4438. "status": "covered",
  4439. "message": "Covered by Drupal's security advisory policy"
  4440. }
  4441. }
  4442. },
  4443. "notification-url": "https://packages.drupal.org/8/downloads",
  4444. "license": [
  4445. "GPL-2.0-or-later"
  4446. ],
  4447. "authors": [
  4448. {
  4449. "name": "anybody",
  4450. "homepage": "https://www.drupal.org/user/291091"
  4451. },
  4452. {
  4453. "name": "grevil",
  4454. "homepage": "https://www.drupal.org/user/3668491"
  4455. },
  4456. {
  4457. "name": "hydra",
  4458. "homepage": "https://www.drupal.org/user/647364"
  4459. },
  4460. {
  4461. "name": "joevagyok",
  4462. "homepage": "https://www.drupal.org/user/2876343"
  4463. },
  4464. {
  4465. "name": "jyve",
  4466. "homepage": "https://www.drupal.org/user/591438"
  4467. },
  4468. {
  4469. "name": "nils.destoop",
  4470. "homepage": "https://www.drupal.org/user/361625"
  4471. },
  4472. {
  4473. "name": "Stalski",
  4474. "homepage": "https://www.drupal.org/user/322618"
  4475. },
  4476. {
  4477. "name": "swentel",
  4478. "homepage": "https://www.drupal.org/user/107403"
  4479. }
  4480. ],
  4481. "description": "Provides the field_group module.",
  4482. "homepage": "https://www.drupal.org/project/field_group",
  4483. "support": {
  4484. "source": "https://git.drupalcode.org/project/field_group",
  4485. "issues": "https://www.drupal.org/project/issues/field_group"
  4486. }
  4487. },
  4488. {
  4489. "name": "drupal/filter_perms",
  4490. "version": "2.0.2",
  4491. "source": {
  4492. "type": "git",
  4493. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4494. "reference": "2.0.2"
  4495. },
  4496. "dist": {
  4497. "type": "zip",
  4498. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4499. "reference": "2.0.2",
  4500. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4501. },
  4502. "require": {
  4503. "drupal/core": "^10.3 || ^11 || ^12"
  4504. },
  4505. "type": "drupal-module",
  4506. "extra": {
  4507. "drupal": {
  4508. "version": "2.0.2",
  4509. "datestamp": "1745993059",
  4510. "security-coverage": {
  4511. "status": "covered",
  4512. "message": "Covered by Drupal's security advisory policy"
  4513. }
  4514. }
  4515. },
  4516. "notification-url": "https://packages.drupal.org/8/downloads",
  4517. "license": [
  4518. "GPL-2.0+"
  4519. ],
  4520. "authors": [
  4521. {
  4522. "name": "cyu",
  4523. "homepage": "https://www.drupal.org/user/202205"
  4524. },
  4525. {
  4526. "name": "deekayen",
  4527. "homepage": "https://www.drupal.org/user/972"
  4528. },
  4529. {
  4530. "name": "ivavictoria",
  4531. "homepage": "https://www.drupal.org/user/3061533"
  4532. },
  4533. {
  4534. "name": "justcaldwell",
  4535. "homepage": "https://www.drupal.org/user/290069"
  4536. },
  4537. {
  4538. "name": "mgbellaire",
  4539. "homepage": "https://www.drupal.org/user/1831932"
  4540. },
  4541. {
  4542. "name": "scott_euser",
  4543. "homepage": "https://www.drupal.org/user/3267594"
  4544. },
  4545. {
  4546. "name": "willzyx",
  4547. "homepage": "https://www.drupal.org/user/1043862"
  4548. }
  4549. ],
  4550. "description": "Provides role and module filters to simplify the user permissions page.",
  4551. "homepage": "https://www.drupal.org/project/filter_perms",
  4552. "support": {
  4553. "source": "http://cgit.drupalcode.org/filter_perms",
  4554. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4555. }
  4556. },
  4557. {
  4558. "name": "drupal/formatter_suite",
  4559. "version": "2.1.0",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4563. "reference": "2.1.0"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.1.0.zip",
  4568. "reference": "2.1.0",
  4569. "shasum": "699e14a27dfecfaa4abd3f923102f3256603aa28"
  4570. },
  4571. "require": {
  4572. "drupal/core": "^9 || ^10"
  4573. },
  4574. "type": "drupal-module",
  4575. "extra": {
  4576. "drupal": {
  4577. "version": "2.1.0",
  4578. "datestamp": "1742410413",
  4579. "security-coverage": {
  4580. "status": "covered",
  4581. "message": "Covered by Drupal's security advisory policy"
  4582. }
  4583. }
  4584. },
  4585. "notification-url": "https://packages.drupal.org/8/downloads",
  4586. "license": [
  4587. "GPL-2.0-or-later"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "cyoun",
  4592. "homepage": "https://www.drupal.org/user/3819850"
  4593. },
  4594. {
  4595. "name": "toamit",
  4596. "homepage": "https://www.drupal.org/user/2820523"
  4597. }
  4598. ],
  4599. "description": "Field formaters to present numbers, text, links, etc.",
  4600. "homepage": "https://www.drupal.org/project/formatter_suite",
  4601. "keywords": [
  4602. "Drupal",
  4603. "Format"
  4604. ],
  4605. "support": {
  4606. "source": "http://cgit.drupalcode.org/formatter_suite",
  4607. "issues": "http://drupal.org/project/issues/formatter_suite"
  4608. }
  4609. },
  4610. {
  4611. "name": "drupal/geocoder",
  4612. "version": "4.29.0",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://git.drupalcode.org/project/geocoder.git",
  4616. "reference": "8.x-4.29"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.29.zip",
  4621. "reference": "8.x-4.29",
  4622. "shasum": "f874ecd2a743df517e27cdc6a1332e0fe0e97b53"
  4623. },
  4624. "require": {
  4625. "davedevelopment/stiphle": "^0.9.2",
  4626. "drupal/core": "^9.5 || ^10 || ^11",
  4627. "php": ">=7.3.0",
  4628. "php-http/guzzle7-adapter": "^1.0",
  4629. "php-http/message": "^1.6",
  4630. "willdurand/geocoder": "^4.0|^5.0"
  4631. },
  4632. "require-dev": {
  4633. "drupal/address": "^1.11 || ^2.0",
  4634. "drupal/geocoder_field": "*",
  4635. "drupal/geofield": "^1.52",
  4636. "geo6/geocoder-php-addok-provider": "^1.0",
  4637. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4638. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4639. "geo6/geocoder-php-spw-provider": "^1.0",
  4640. "geocoder-php/arcgis-online-provider": "^4.0",
  4641. "geocoder-php/azure-maps-provider": "^1.2",
  4642. "geocoder-php/bing-maps-provider": "^4.0",
  4643. "geocoder-php/free-geoip-provider": "^4.1",
  4644. "geocoder-php/geo-plugin-provider": "^4.0",
  4645. "geocoder-php/geonames-provider": "^4.1",
  4646. "geocoder-php/google-maps-provider": "^4.2",
  4647. "geocoder-php/graphhopper-provider": "^0.5.0",
  4648. "geocoder-php/host-ip-provider": "^4.0",
  4649. "geocoder-php/ip-info-db-provider": "^4.0",
  4650. "geocoder-php/locationiq-provider": "^1.5",
  4651. "geocoder-php/mapbox-provider": "^1.0",
  4652. "geocoder-php/mapquest-provider": "^4.0",
  4653. "geocoder-php/maptiler-provider": "^1.0",
  4654. "geocoder-php/maxmind-provider": "^4.1",
  4655. "geocoder-php/nominatim-provider": "^5.0",
  4656. "geocoder-php/open-cage-provider": "^4.0",
  4657. "geocoder-php/openrouteservice-provider": "^1.0",
  4658. "geocoder-php/pelias-provider": "^1.1",
  4659. "geocoder-php/photon-provider": "^0.6",
  4660. "geocoder-php/tomtom-provider": "^4.0",
  4661. "geocoder-php/yandex-provider": "^4.0",
  4662. "systonic/ban-france-provider": "^1.0"
  4663. },
  4664. "type": "drupal-module",
  4665. "extra": {
  4666. "drupal": {
  4667. "version": "8.x-4.29",
  4668. "datestamp": "1749505480",
  4669. "security-coverage": {
  4670. "status": "covered",
  4671. "message": "Covered by Drupal's security advisory policy"
  4672. }
  4673. }
  4674. },
  4675. "notification-url": "https://packages.drupal.org/8/downloads",
  4676. "license": [
  4677. "GPL-2.0-or-later"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Pol Dellaiera (@drupol)",
  4682. "homepage": "https://www.drupal.org/u/pol",
  4683. "role": "Maintainer"
  4684. },
  4685. {
  4686. "name": "Italo Mairo (@itamair)",
  4687. "homepage": "https://www.drupal.org/u/itamair",
  4688. "role": "Co-maintainer"
  4689. },
  4690. {
  4691. "name": "michaelfavia",
  4692. "homepage": "https://www.drupal.org/user/49137"
  4693. },
  4694. {
  4695. "name": "poker10",
  4696. "homepage": "https://www.drupal.org/user/272316"
  4697. }
  4698. ],
  4699. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4700. "homepage": "https://drupal.org/project/geocoder",
  4701. "support": {
  4702. "source": "https://git.drupalcode.org/project/geocoder",
  4703. "issues": "https://drupal.org/project/issues/geocoder",
  4704. "irc": "irc://irc.freenode.org/drupal-geo"
  4705. }
  4706. },
  4707. {
  4708. "name": "drupal/geofield",
  4709. "version": "1.64.0",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://git.drupalcode.org/project/geofield.git",
  4713. "reference": "8.x-1.64"
  4714. },
  4715. "dist": {
  4716. "type": "zip",
  4717. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.64.zip",
  4718. "reference": "8.x-1.64",
  4719. "shasum": "300f8cf8bf4d0cf2660c5a7e81d56146d947b772"
  4720. },
  4721. "require": {
  4722. "drupal/core": "^9 || ^10 || ^11",
  4723. "itamair/geophp": "^1.6"
  4724. },
  4725. "require-dev": {
  4726. "drupal/diff": "^1.3",
  4727. "drupal/feeds": "^3.0@beta"
  4728. },
  4729. "type": "drupal-module",
  4730. "extra": {
  4731. "drupal": {
  4732. "version": "8.x-1.64",
  4733. "datestamp": "1736675456",
  4734. "security-coverage": {
  4735. "status": "covered",
  4736. "message": "Covered by Drupal's security advisory policy"
  4737. }
  4738. }
  4739. },
  4740. "notification-url": "https://packages.drupal.org/8/downloads",
  4741. "license": [
  4742. "GPL-2.0+"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "Italo Mairo",
  4747. "homepage": "https://www.drupal.org/u/itamair",
  4748. "role": "Drupal 8+ Maintainer"
  4749. },
  4750. {
  4751. "name": "Brandon Morrison",
  4752. "homepage": "https://www.drupal.org/u/brandonian",
  4753. "role": "Drupal 7 Maintainer"
  4754. },
  4755. {
  4756. "name": "Pablo López",
  4757. "homepage": "https://www.drupal.org/u/plopesc",
  4758. "role": "Drupal 7 Maintainer"
  4759. }
  4760. ],
  4761. "description": "Stores geographic and location data (points, lines, and polygons).",
  4762. "homepage": "https://www.drupal.org/project/geofield",
  4763. "support": {
  4764. "source": "https://git.drupalcode.org/project/geofield",
  4765. "issues": "https://www.drupal.org/project/issues/geofield",
  4766. "irc": "irc://irc.freenode.org/drupal-contribute"
  4767. }
  4768. },
  4769. {
  4770. "name": "drupal/honeypot",
  4771. "version": "2.2.2",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://git.drupalcode.org/project/honeypot.git",
  4775. "reference": "2.2.2"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4780. "reference": "2.2.2",
  4781. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4782. },
  4783. "require": {
  4784. "drupal/core": "^10.3 || ^11"
  4785. },
  4786. "require-dev": {
  4787. "drupal/rules": "^4.0",
  4788. "drupal/webform": "^6.2"
  4789. },
  4790. "type": "drupal-module",
  4791. "extra": {
  4792. "drupal": {
  4793. "version": "2.2.2",
  4794. "datestamp": "1739854442",
  4795. "security-coverage": {
  4796. "status": "covered",
  4797. "message": "Covered by Drupal's security advisory policy"
  4798. }
  4799. }
  4800. },
  4801. "notification-url": "https://packages.drupal.org/8/downloads",
  4802. "license": [
  4803. "GPL-2.0-or-later"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Jeff Geerling",
  4808. "homepage": "https://www.drupal.org/user/389011",
  4809. "email": "geerlingguy@mac.com"
  4810. },
  4811. {
  4812. "name": "manuel garcia",
  4813. "homepage": "https://www.drupal.org/user/213194"
  4814. },
  4815. {
  4816. "name": "tr",
  4817. "homepage": "https://www.drupal.org/user/202830"
  4818. },
  4819. {
  4820. "name": "vijaycs85",
  4821. "homepage": "https://www.drupal.org/user/93488"
  4822. }
  4823. ],
  4824. "description": "Mitigates spam form submissions using the honeypot method.",
  4825. "homepage": "https://www.drupal.org/project/honeypot",
  4826. "keywords": [
  4827. "deterrent",
  4828. "form",
  4829. "honeypot",
  4830. "honeytrap",
  4831. "php",
  4832. "spam"
  4833. ],
  4834. "support": {
  4835. "source": "https://git.drupalcode.org/project/honeypot",
  4836. "issues": "https://www.drupal.org/project/issues/honeypot"
  4837. }
  4838. },
  4839. {
  4840. "name": "drupal/image_delta_formatter",
  4841. "version": "1.3.0",
  4842. "source": {
  4843. "type": "git",
  4844. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4845. "reference": "8.x-1.3"
  4846. },
  4847. "dist": {
  4848. "type": "zip",
  4849. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4850. "reference": "8.x-1.3",
  4851. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4852. },
  4853. "require": {
  4854. "drupal/core": "^10 || ^11"
  4855. },
  4856. "type": "drupal-module",
  4857. "extra": {
  4858. "drupal": {
  4859. "version": "8.x-1.3",
  4860. "datestamp": "1738516937",
  4861. "security-coverage": {
  4862. "status": "covered",
  4863. "message": "Covered by Drupal's security advisory policy"
  4864. }
  4865. }
  4866. },
  4867. "notification-url": "https://packages.drupal.org/8/downloads",
  4868. "license": [
  4869. "GPL-2.0-or-later"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "bojanz",
  4874. "homepage": "https://www.drupal.org/user/86106"
  4875. },
  4876. {
  4877. "name": "fgm",
  4878. "homepage": "https://www.drupal.org/user/27985"
  4879. },
  4880. {
  4881. "name": "jsacksick",
  4882. "homepage": "https://www.drupal.org/user/972218"
  4883. }
  4884. ],
  4885. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4886. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4887. "support": {
  4888. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4889. }
  4890. },
  4891. {
  4892. "name": "drupal/image_field_caption",
  4893. "version": "3.0.1",
  4894. "source": {
  4895. "type": "git",
  4896. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4897. "reference": "3.0.1"
  4898. },
  4899. "dist": {
  4900. "type": "zip",
  4901. "url": "https://ftp.drupal.org/files/projects/image_field_caption-3.0.1.zip",
  4902. "reference": "3.0.1",
  4903. "shasum": "e84c3b9534d5824b6a67885187b1c24d4eccaf60"
  4904. },
  4905. "require": {
  4906. "drupal/core": "^10 || ^11"
  4907. },
  4908. "type": "drupal-module",
  4909. "extra": {
  4910. "drupal": {
  4911. "version": "3.0.1",
  4912. "datestamp": "1739400507",
  4913. "security-coverage": {
  4914. "status": "covered",
  4915. "message": "Covered by Drupal's security advisory policy"
  4916. }
  4917. }
  4918. },
  4919. "notification-url": "https://packages.drupal.org/8/downloads",
  4920. "license": [
  4921. "GPL-2.0+"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "awm",
  4926. "homepage": "https://www.drupal.org/user/1059398"
  4927. },
  4928. {
  4929. "name": "foxy-vikvik",
  4930. "homepage": "https://www.drupal.org/user/3706169"
  4931. },
  4932. {
  4933. "name": "hanoii",
  4934. "homepage": "https://www.drupal.org/user/23157"
  4935. },
  4936. {
  4937. "name": "ironsizide",
  4938. "homepage": "https://www.drupal.org/user/787980"
  4939. },
  4940. {
  4941. "name": "istryker",
  4942. "homepage": "https://www.drupal.org/user/303676"
  4943. },
  4944. {
  4945. "name": "robloach",
  4946. "homepage": "https://www.drupal.org/user/61114"
  4947. },
  4948. {
  4949. "name": "tyler.frankenstein",
  4950. "homepage": "https://www.drupal.org/user/150680"
  4951. }
  4952. ],
  4953. "description": "Add caption to image field.",
  4954. "homepage": "https://www.drupal.org/project/image_field_caption",
  4955. "support": {
  4956. "source": "https://git.drupalcode.org/project/image_field_caption",
  4957. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4958. }
  4959. },
  4960. {
  4961. "name": "drupal/inline_entity_form",
  4962. "version": "1.0.0-rc17",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4966. "reference": "8.x-1.0-rc17"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  4971. "reference": "8.x-1.0-rc17",
  4972. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  4973. },
  4974. "require": {
  4975. "drupal/core": "^8.8 || ^9 || ^10",
  4976. "php": ">=7.1"
  4977. },
  4978. "require-dev": {
  4979. "drupal/entity_reference_revisions": "^1.0"
  4980. },
  4981. "type": "drupal-module",
  4982. "extra": {
  4983. "drupal": {
  4984. "version": "8.x-1.0-rc17",
  4985. "datestamp": "1703020130",
  4986. "security-coverage": {
  4987. "status": "not-covered",
  4988. "message": "RC releases are not covered by Drupal security advisories."
  4989. }
  4990. }
  4991. },
  4992. "notification-url": "https://packages.drupal.org/8/downloads",
  4993. "license": [
  4994. "GPL-2.0-or-later"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "bojanz",
  4999. "homepage": "https://www.drupal.org/user/86106"
  5000. },
  5001. {
  5002. "name": "centarro",
  5003. "homepage": "https://www.drupal.org/user/3661446"
  5004. },
  5005. {
  5006. "name": "dawehner",
  5007. "homepage": "https://www.drupal.org/user/99340"
  5008. },
  5009. {
  5010. "name": "dww",
  5011. "homepage": "https://www.drupal.org/user/46549"
  5012. },
  5013. {
  5014. "name": "geek-merlin",
  5015. "homepage": "https://www.drupal.org/user/229048"
  5016. },
  5017. {
  5018. "name": "joachim",
  5019. "homepage": "https://www.drupal.org/user/107701"
  5020. },
  5021. {
  5022. "name": "jsacksick",
  5023. "homepage": "https://www.drupal.org/user/972218"
  5024. },
  5025. {
  5026. "name": "oknate",
  5027. "homepage": "https://www.drupal.org/user/471638"
  5028. },
  5029. {
  5030. "name": "ram4nd",
  5031. "homepage": "https://www.drupal.org/user/601534"
  5032. },
  5033. {
  5034. "name": "rszrama",
  5035. "homepage": "https://www.drupal.org/user/49344"
  5036. },
  5037. {
  5038. "name": "slashrsm",
  5039. "homepage": "https://www.drupal.org/user/744628"
  5040. },
  5041. {
  5042. "name": "webflo",
  5043. "homepage": "https://www.drupal.org/user/254778"
  5044. }
  5045. ],
  5046. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5047. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5048. "support": {
  5049. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5050. }
  5051. },
  5052. {
  5053. "name": "drupal/jquery_ui",
  5054. "version": "1.7.0",
  5055. "source": {
  5056. "type": "git",
  5057. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5058. "reference": "8.x-1.7"
  5059. },
  5060. "dist": {
  5061. "type": "zip",
  5062. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  5063. "reference": "8.x-1.7",
  5064. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  5065. },
  5066. "require": {
  5067. "drupal/core": "^9.2 || ^10 || ^11"
  5068. },
  5069. "type": "drupal-module",
  5070. "extra": {
  5071. "drupal": {
  5072. "version": "8.x-1.7",
  5073. "datestamp": "1717002098",
  5074. "security-coverage": {
  5075. "status": "covered",
  5076. "message": "Covered by Drupal's security advisory policy"
  5077. }
  5078. }
  5079. },
  5080. "notification-url": "https://packages.drupal.org/8/downloads",
  5081. "license": [
  5082. "GPL-2.0-or-later"
  5083. ],
  5084. "authors": [
  5085. {
  5086. "name": "bnjmnm",
  5087. "homepage": "https://www.drupal.org/user/2369194"
  5088. },
  5089. {
  5090. "name": "jjeff",
  5091. "homepage": "https://www.drupal.org/user/17190"
  5092. },
  5093. {
  5094. "name": "lauriii",
  5095. "homepage": "https://www.drupal.org/user/1078742"
  5096. },
  5097. {
  5098. "name": "litwol",
  5099. "homepage": "https://www.drupal.org/user/78134"
  5100. },
  5101. {
  5102. "name": "mfb",
  5103. "homepage": "https://www.drupal.org/user/12302"
  5104. },
  5105. {
  5106. "name": "mfer",
  5107. "homepage": "https://www.drupal.org/user/25701"
  5108. },
  5109. {
  5110. "name": "mikelutz",
  5111. "homepage": "https://www.drupal.org/user/2972409"
  5112. },
  5113. {
  5114. "name": "nod_",
  5115. "homepage": "https://www.drupal.org/user/598310"
  5116. },
  5117. {
  5118. "name": "phenaproxima",
  5119. "homepage": "https://www.drupal.org/user/205645"
  5120. },
  5121. {
  5122. "name": "RobLoach",
  5123. "homepage": "https://www.drupal.org/user/61114"
  5124. },
  5125. {
  5126. "name": "sun",
  5127. "homepage": "https://www.drupal.org/user/54136"
  5128. },
  5129. {
  5130. "name": "webchick",
  5131. "homepage": "https://www.drupal.org/user/24967"
  5132. },
  5133. {
  5134. "name": "Wim Leers",
  5135. "homepage": "https://www.drupal.org/user/99777"
  5136. },
  5137. {
  5138. "name": "zrpnr",
  5139. "homepage": "https://www.drupal.org/user/1448368"
  5140. }
  5141. ],
  5142. "description": "Provides jQuery UI library.",
  5143. "homepage": "https://www.drupal.org/project/jquery_ui",
  5144. "support": {
  5145. "source": "https://git.drupalcode.org/project/jquery_ui"
  5146. }
  5147. },
  5148. {
  5149. "name": "drupal/jquery_ui_datepicker",
  5150. "version": "2.1.1",
  5151. "source": {
  5152. "type": "git",
  5153. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5154. "reference": "2.1.1"
  5155. },
  5156. "dist": {
  5157. "type": "zip",
  5158. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5159. "reference": "2.1.1",
  5160. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5161. },
  5162. "require": {
  5163. "drupal/core": "^9.2 || ^10 || ^11",
  5164. "drupal/jquery_ui": "^1.7"
  5165. },
  5166. "type": "drupal-module",
  5167. "extra": {
  5168. "drupal": {
  5169. "version": "2.1.1",
  5170. "datestamp": "1730932612",
  5171. "security-coverage": {
  5172. "status": "covered",
  5173. "message": "Covered by Drupal's security advisory policy"
  5174. }
  5175. }
  5176. },
  5177. "notification-url": "https://packages.drupal.org/8/downloads",
  5178. "license": [
  5179. "GPL-2.0-or-later"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "bnjmnm",
  5184. "homepage": "https://www.drupal.org/user/2369194"
  5185. },
  5186. {
  5187. "name": "jrockowitz",
  5188. "homepage": "https://www.drupal.org/user/371407"
  5189. },
  5190. {
  5191. "name": "lauriii",
  5192. "homepage": "https://www.drupal.org/user/1078742"
  5193. },
  5194. {
  5195. "name": "nod_",
  5196. "homepage": "https://www.drupal.org/user/598310"
  5197. },
  5198. {
  5199. "name": "phenaproxima",
  5200. "homepage": "https://www.drupal.org/user/205645"
  5201. },
  5202. {
  5203. "name": "zrpnr",
  5204. "homepage": "https://www.drupal.org/user/1448368"
  5205. }
  5206. ],
  5207. "description": "Provides jQuery UI Datepicker library.",
  5208. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5209. "support": {
  5210. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5211. }
  5212. },
  5213. {
  5214. "name": "drupal/jquery_ui_draggable",
  5215. "version": "2.1.0",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5219. "reference": "2.1.0"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5224. "reference": "2.1.0",
  5225. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5226. },
  5227. "require": {
  5228. "drupal/core": "^9.2 || ^10 || ^11",
  5229. "drupal/jquery_ui": "^1.7"
  5230. },
  5231. "type": "drupal-module",
  5232. "extra": {
  5233. "drupal": {
  5234. "version": "2.1.0",
  5235. "datestamp": "1717015492",
  5236. "security-coverage": {
  5237. "status": "covered",
  5238. "message": "Covered by Drupal's security advisory policy"
  5239. }
  5240. }
  5241. },
  5242. "notification-url": "https://packages.drupal.org/8/downloads",
  5243. "license": [
  5244. "GPL-2.0-or-later"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "bnjmnm",
  5249. "homepage": "https://www.drupal.org/user/2369194"
  5250. },
  5251. {
  5252. "name": "lauriii",
  5253. "homepage": "https://www.drupal.org/user/1078742"
  5254. },
  5255. {
  5256. "name": "zrpnr",
  5257. "homepage": "https://www.drupal.org/user/1448368"
  5258. }
  5259. ],
  5260. "description": "Provides jQuery UI Draggable library.",
  5261. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5262. "support": {
  5263. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5264. }
  5265. },
  5266. {
  5267. "name": "drupal/jquery_ui_droppable",
  5268. "version": "2.1.0",
  5269. "source": {
  5270. "type": "git",
  5271. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5272. "reference": "2.1.0"
  5273. },
  5274. "dist": {
  5275. "type": "zip",
  5276. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5277. "reference": "2.1.0",
  5278. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5279. },
  5280. "require": {
  5281. "drupal/core": "^9.2 || ^10 || ^11",
  5282. "drupal/jquery_ui": "^1.7",
  5283. "drupal/jquery_ui_draggable": "^2.1"
  5284. },
  5285. "type": "drupal-module",
  5286. "extra": {
  5287. "drupal": {
  5288. "version": "2.1.0",
  5289. "datestamp": "1717031391",
  5290. "security-coverage": {
  5291. "status": "covered",
  5292. "message": "Covered by Drupal's security advisory policy"
  5293. }
  5294. }
  5295. },
  5296. "notification-url": "https://packages.drupal.org/8/downloads",
  5297. "license": [
  5298. "GPL-2.0-or-later"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "bnjmnm",
  5303. "homepage": "https://www.drupal.org/user/2369194"
  5304. },
  5305. {
  5306. "name": "lauriii",
  5307. "homepage": "https://www.drupal.org/user/1078742"
  5308. },
  5309. {
  5310. "name": "zrpnr",
  5311. "homepage": "https://www.drupal.org/user/1448368"
  5312. }
  5313. ],
  5314. "description": "Provides jQuery UI Droppable library.",
  5315. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5316. "support": {
  5317. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5318. }
  5319. },
  5320. {
  5321. "name": "drupal/jquery_ui_slider",
  5322. "version": "2.1.0",
  5323. "source": {
  5324. "type": "git",
  5325. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5326. "reference": "2.1.0"
  5327. },
  5328. "dist": {
  5329. "type": "zip",
  5330. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5331. "reference": "2.1.0",
  5332. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5333. },
  5334. "require": {
  5335. "drupal/core": "^9.2 || ^10 || ^11",
  5336. "drupal/jquery_ui": "^1.7"
  5337. },
  5338. "type": "drupal-module",
  5339. "extra": {
  5340. "drupal": {
  5341. "version": "2.1.0",
  5342. "datestamp": "1717031321",
  5343. "security-coverage": {
  5344. "status": "covered",
  5345. "message": "Covered by Drupal's security advisory policy"
  5346. }
  5347. }
  5348. },
  5349. "notification-url": "https://packages.drupal.org/8/downloads",
  5350. "license": [
  5351. "GPL-2.0-or-later"
  5352. ],
  5353. "authors": [
  5354. {
  5355. "name": "bnjmnm",
  5356. "homepage": "https://www.drupal.org/user/2369194"
  5357. },
  5358. {
  5359. "name": "lauriii",
  5360. "homepage": "https://www.drupal.org/user/1078742"
  5361. },
  5362. {
  5363. "name": "zrpnr",
  5364. "homepage": "https://www.drupal.org/user/1448368"
  5365. }
  5366. ],
  5367. "description": "Provides jQuery UI Slider library.",
  5368. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5369. "support": {
  5370. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5371. }
  5372. },
  5373. {
  5374. "name": "drupal/jquery_ui_touch_punch",
  5375. "version": "1.1.1",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5379. "reference": "1.1.1"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5384. "reference": "1.1.1",
  5385. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5386. },
  5387. "require": {
  5388. "drupal/core": "^9.2 || ^10 || ^11",
  5389. "drupal/jquery_ui": "^1.0",
  5390. "politsin/jquery-ui-touch-punch": "^1.0"
  5391. },
  5392. "type": "drupal-module",
  5393. "extra": {
  5394. "drupal": {
  5395. "version": "1.1.1",
  5396. "datestamp": "1717663479",
  5397. "security-coverage": {
  5398. "status": "covered",
  5399. "message": "Covered by Drupal's security advisory policy"
  5400. }
  5401. }
  5402. },
  5403. "notification-url": "https://packages.drupal.org/8/downloads",
  5404. "license": [
  5405. "GPL-2.0-or-later"
  5406. ],
  5407. "authors": [
  5408. {
  5409. "name": "Naveen Valecha",
  5410. "homepage": "https://drupal.org/u/naveenvalecha",
  5411. "role": "Maintainer"
  5412. },
  5413. {
  5414. "name": "naveenvalecha",
  5415. "homepage": "https://www.drupal.org/user/2665733"
  5416. }
  5417. ],
  5418. "description": "Provides jQuery UI Touch Punch library.",
  5419. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5420. "keywords": [
  5421. "Drupal",
  5422. "jquery_ui_touch_punch"
  5423. ],
  5424. "support": {
  5425. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5426. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5427. }
  5428. },
  5429. {
  5430. "name": "drupal/js_cookie",
  5431. "version": "1.0.1",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5435. "reference": "1.0.1"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5440. "reference": "1.0.1",
  5441. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5442. },
  5443. "require": {
  5444. "drupal/core": "^9 || ^10 || ^11"
  5445. },
  5446. "type": "drupal-module",
  5447. "extra": {
  5448. "drupal": {
  5449. "version": "1.0.1",
  5450. "datestamp": "1693951097",
  5451. "security-coverage": {
  5452. "status": "covered",
  5453. "message": "Covered by Drupal's security advisory policy"
  5454. }
  5455. }
  5456. },
  5457. "notification-url": "https://packages.drupal.org/8/downloads",
  5458. "license": [
  5459. "GPL-2.0-or-later"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "Dave Reid",
  5464. "homepage": "https://www.drupal.org/user/53892"
  5465. }
  5466. ],
  5467. "description": "Provides the js-cookie library as a dependency.",
  5468. "homepage": "https://www.drupal.org/project/js_cookie",
  5469. "support": {
  5470. "source": "https://git.drupalcode.org/project/js_cookie"
  5471. }
  5472. },
  5473. {
  5474. "name": "drupal/leaflet",
  5475. "version": "10.3.5",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://git.drupalcode.org/project/leaflet.git",
  5479. "reference": "10.3.5"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.5.zip",
  5484. "reference": "10.3.5",
  5485. "shasum": "9707462243b2f344e5d85341084d33fdd296ef7b"
  5486. },
  5487. "require": {
  5488. "drupal/core": "^9.3 || ^10 || ^11",
  5489. "drupal/geofield": "^1.31"
  5490. },
  5491. "type": "drupal-module",
  5492. "extra": {
  5493. "drupal": {
  5494. "version": "10.3.5",
  5495. "datestamp": "1751834089",
  5496. "security-coverage": {
  5497. "status": "covered",
  5498. "message": "Covered by Drupal's security advisory policy"
  5499. }
  5500. }
  5501. },
  5502. "notification-url": "https://packages.drupal.org/8/downloads",
  5503. "license": [
  5504. "GPL-2.0+"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "Italo Mairo",
  5509. "homepage": "https://www.drupal.org/u/itamair",
  5510. "role": "Maintainer"
  5511. },
  5512. {
  5513. "name": "Peter Vanhee (pvhee)",
  5514. "homepage": "https://www.drupal.org/u/pvhee",
  5515. "role": "Maintainer"
  5516. },
  5517. {
  5518. "name": "Rik de Boer (RdeBoer)",
  5519. "homepage": "https://www.drupal.org/u/rdeboer",
  5520. "role": "Maintainer"
  5521. },
  5522. {
  5523. "name": "Gabriel Carleton-Barnes (gcb)",
  5524. "homepage": "https://www.drupal.org/u/gcb",
  5525. "role": "Maintainer"
  5526. },
  5527. {
  5528. "name": "Lev Tsypin (levelos)",
  5529. "homepage": "https://www.drupal.org/u/levelos",
  5530. "role": "Maintainer"
  5531. },
  5532. {
  5533. "name": "Sean Larkin (seanberto)",
  5534. "homepage": "https://www.drupal.org/u/seanberto",
  5535. "role": "Maintainer"
  5536. }
  5537. ],
  5538. "description": "Integration with the Leaflet map scripting library.",
  5539. "homepage": "https://www.drupal.org/project/leaflet",
  5540. "support": {
  5541. "source": "https://git.drupalcode.org/project/leaflet",
  5542. "issues": "https://www.drupal.org/project/issues/leaflet"
  5543. }
  5544. },
  5545. {
  5546. "name": "drupal/leaflet_more_maps",
  5547. "version": "2.2.3",
  5548. "source": {
  5549. "type": "git",
  5550. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5551. "reference": "2.2.3"
  5552. },
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5556. "reference": "2.2.3",
  5557. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5558. },
  5559. "require": {
  5560. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5561. "drupal/leaflet": "^2.1.0 || ^10.0"
  5562. },
  5563. "require-dev": {
  5564. "drupal/leaflet": "*"
  5565. },
  5566. "type": "drupal-module",
  5567. "extra": {
  5568. "drupal": {
  5569. "version": "2.2.3",
  5570. "datestamp": "1737668201",
  5571. "security-coverage": {
  5572. "status": "covered",
  5573. "message": "Covered by Drupal's security advisory policy"
  5574. }
  5575. },
  5576. "branch-alias": {
  5577. "dev-8.x-1.x": "1.x-dev"
  5578. }
  5579. },
  5580. "notification-url": "https://packages.drupal.org/8/downloads",
  5581. "license": [
  5582. "GPL-2.0-or-later"
  5583. ],
  5584. "authors": [
  5585. {
  5586. "name": "berramou",
  5587. "homepage": "https://www.drupal.org/user/3535998"
  5588. },
  5589. {
  5590. "name": "itamair",
  5591. "homepage": "https://www.drupal.org/user/1179076"
  5592. },
  5593. {
  5594. "name": "japerry",
  5595. "homepage": "https://www.drupal.org/user/45640"
  5596. },
  5597. {
  5598. "name": "rachel_norfolk",
  5599. "homepage": "https://www.drupal.org/user/66273"
  5600. },
  5601. {
  5602. "name": "rdeboer",
  5603. "homepage": "https://www.drupal.org/user/404007"
  5604. }
  5605. ],
  5606. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5607. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5608. "support": {
  5609. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5610. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5611. }
  5612. },
  5613. {
  5614. "name": "drupal/leaflet_more_markers",
  5615. "version": "1.1.3",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5619. "reference": "1.1.3"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5624. "reference": "1.1.3",
  5625. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5626. },
  5627. "require": {
  5628. "drupal/core": "^9.3 || ^10 || ^11",
  5629. "drupal/leaflet": "*",
  5630. "drupal/token": "*"
  5631. },
  5632. "type": "drupal-module",
  5633. "extra": {
  5634. "drupal": {
  5635. "version": "1.1.3",
  5636. "datestamp": "1733213620",
  5637. "security-coverage": {
  5638. "status": "covered",
  5639. "message": "Covered by Drupal's security advisory policy"
  5640. }
  5641. }
  5642. },
  5643. "notification-url": "https://packages.drupal.org/8/downloads",
  5644. "license": [
  5645. "GPL-2.0-or-later"
  5646. ],
  5647. "authors": [
  5648. {
  5649. "name": "itamair",
  5650. "homepage": "https://www.drupal.org/user/1179076"
  5651. },
  5652. {
  5653. "name": "rdeboer",
  5654. "homepage": "https://www.drupal.org/user/404007"
  5655. }
  5656. ],
  5657. "description": "Allows every location to feature its own emoji marker or font icon.",
  5658. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5659. "support": {
  5660. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5661. }
  5662. },
  5663. {
  5664. "name": "drupal/link_attributes",
  5665. "version": "2.1.1",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5669. "reference": "2.1.1"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.1.zip",
  5674. "reference": "2.1.1",
  5675. "shasum": "fc71571fc41adeda6b39ccefd3c8e21955c0d96f"
  5676. },
  5677. "require": {
  5678. "drupal/core": "^9 || ^10 || ^11",
  5679. "php": ">=8.0"
  5680. },
  5681. "require-dev": {
  5682. "drupal/linkit": "~6 || ~7"
  5683. },
  5684. "type": "drupal-module",
  5685. "extra": {
  5686. "drupal": {
  5687. "version": "2.1.1",
  5688. "datestamp": "1721366572",
  5689. "security-coverage": {
  5690. "status": "covered",
  5691. "message": "Covered by Drupal's security advisory policy"
  5692. }
  5693. }
  5694. },
  5695. "notification-url": "https://packages.drupal.org/8/downloads",
  5696. "license": [
  5697. "GPL-2.0-or-later"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "larowlan",
  5702. "homepage": "https://www.drupal.org/user/395439"
  5703. }
  5704. ],
  5705. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5706. "homepage": "https://www.drupal.org/project/link_attributes",
  5707. "keywords": [
  5708. "Drupal"
  5709. ],
  5710. "support": {
  5711. "source": "https://git.drupalcode.org/project/link_attributes",
  5712. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5713. }
  5714. },
  5715. {
  5716. "name": "drupal/linked_field",
  5717. "version": "1.7.0",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://git.drupalcode.org/project/linked_field.git",
  5721. "reference": "8.x-1.7"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5726. "reference": "8.x-1.7",
  5727. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5728. },
  5729. "require": {
  5730. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5731. },
  5732. "type": "drupal-module",
  5733. "extra": {
  5734. "drupal": {
  5735. "version": "8.x-1.7",
  5736. "datestamp": "1748842765",
  5737. "security-coverage": {
  5738. "status": "covered",
  5739. "message": "Covered by Drupal's security advisory policy"
  5740. }
  5741. }
  5742. },
  5743. "notification-url": "https://packages.drupal.org/8/downloads",
  5744. "license": [
  5745. "GPL-2.0-or-later"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "jcnventura",
  5750. "homepage": "https://www.drupal.org/user/122464"
  5751. },
  5752. {
  5753. "name": "yannickoo",
  5754. "homepage": "https://www.drupal.org/user/531118"
  5755. }
  5756. ],
  5757. "description": "Adds the functionality to link fields to a specific destination.",
  5758. "homepage": "https://www.drupal.org/project/linked_field",
  5759. "support": {
  5760. "source": "https://git.drupalcode.org/project/linked_field"
  5761. }
  5762. },
  5763. {
  5764. "name": "drupal/linkit",
  5765. "version": "7.0.7",
  5766. "source": {
  5767. "type": "git",
  5768. "url": "https://git.drupalcode.org/project/linkit.git",
  5769. "reference": "7.0.7"
  5770. },
  5771. "dist": {
  5772. "type": "zip",
  5773. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip",
  5774. "reference": "7.0.7",
  5775. "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e"
  5776. },
  5777. "require": {
  5778. "drupal/core": "^10.1 || ^11"
  5779. },
  5780. "require-dev": {
  5781. "drupal/ckeditor": "*",
  5782. "drupal/imce": "*"
  5783. },
  5784. "type": "drupal-module",
  5785. "extra": {
  5786. "drupal": {
  5787. "version": "7.0.7",
  5788. "datestamp": "1753116879",
  5789. "security-coverage": {
  5790. "status": "covered",
  5791. "message": "Covered by Drupal's security advisory policy"
  5792. }
  5793. }
  5794. },
  5795. "notification-url": "https://packages.drupal.org/8/downloads",
  5796. "license": [
  5797. "GPL-2.0-or-later"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Emil Stjerneman",
  5802. "homepage": "https://stjerneman.com",
  5803. "email": "emil@stjerneman.com",
  5804. "role": "Maintainer"
  5805. },
  5806. {
  5807. "name": "johnwebdev",
  5808. "homepage": "https://www.drupal.org/user/3331569"
  5809. },
  5810. {
  5811. "name": "mark_fullmer",
  5812. "homepage": "https://www.drupal.org/user/2612816"
  5813. }
  5814. ],
  5815. "description": "Linkit - Enriched linking experience",
  5816. "homepage": "http://drupal.org/project/linkit",
  5817. "support": {
  5818. "source": "http://cgit.drupalcode.org/linkit",
  5819. "issues": "http://drupal.org/project/linkit"
  5820. }
  5821. },
  5822. {
  5823. "name": "drupal/mailsystem",
  5824. "version": "4.5.0",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5828. "reference": "8.x-4.5"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5833. "reference": "8.x-4.5",
  5834. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5835. },
  5836. "require": {
  5837. "drupal/core": "^9 || ^10.1 || ^11"
  5838. },
  5839. "type": "drupal-module",
  5840. "extra": {
  5841. "drupal": {
  5842. "version": "8.x-4.5",
  5843. "datestamp": "1723379369",
  5844. "security-coverage": {
  5845. "status": "covered",
  5846. "message": "Covered by Drupal's security advisory policy"
  5847. }
  5848. }
  5849. },
  5850. "notification-url": "https://packages.drupal.org/8/downloads",
  5851. "license": [
  5852. "GPL-2.0-or-later"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "berdir",
  5857. "homepage": "https://www.drupal.org/user/214652"
  5858. },
  5859. {
  5860. "name": "emartoni",
  5861. "homepage": "https://www.drupal.org/user/3225331"
  5862. },
  5863. {
  5864. "name": "joseph.olstad",
  5865. "homepage": "https://www.drupal.org/user/1321830"
  5866. },
  5867. {
  5868. "name": "les lim",
  5869. "homepage": "https://www.drupal.org/user/84263"
  5870. },
  5871. {
  5872. "name": "manuel garcia",
  5873. "homepage": "https://www.drupal.org/user/213194"
  5874. },
  5875. {
  5876. "name": "miro_dietiker",
  5877. "homepage": "https://www.drupal.org/user/227761"
  5878. },
  5879. {
  5880. "name": "Nafes",
  5881. "homepage": "https://www.drupal.org/user/2489926"
  5882. },
  5883. {
  5884. "name": "pillarsdotnet",
  5885. "homepage": "https://www.drupal.org/user/36148"
  5886. },
  5887. {
  5888. "name": "renatog",
  5889. "homepage": "https://www.drupal.org/user/3326031"
  5890. },
  5891. {
  5892. "name": "tr",
  5893. "homepage": "https://www.drupal.org/user/202830"
  5894. }
  5895. ],
  5896. "description": "Mail System",
  5897. "homepage": "https://www.drupal.org/project/mailsystem",
  5898. "support": {
  5899. "source": "https://git.drupalcode.org/project/mailsystem"
  5900. }
  5901. },
  5902. {
  5903. "name": "drupal/manage_display",
  5904. "version": "3.0.1",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://git.drupalcode.org/project/manage_display.git",
  5908. "reference": "3.0.1"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5913. "reference": "3.0.1",
  5914. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5915. },
  5916. "require": {
  5917. "drupal/core": "^9.4 || ^10 || ^11"
  5918. },
  5919. "type": "drupal-module",
  5920. "extra": {
  5921. "drupal": {
  5922. "version": "3.0.1",
  5923. "datestamp": "1714834549",
  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": "Adam Shepherd (AdamPS)",
  5937. "homepage": "https://www.drupal.org/u/adamps",
  5938. "role": "Maintainer"
  5939. },
  5940. {
  5941. "name": "Viktor Holovachek (AstonVictor)",
  5942. "homepage": "https://www.drupal.org/u/astonvictor",
  5943. "role": "Maintainer"
  5944. }
  5945. ],
  5946. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  5947. "homepage": "https://www.drupal.org/project/manage_display",
  5948. "keywords": [
  5949. "Drupal"
  5950. ],
  5951. "support": {
  5952. "source": "https://git.drupalcode.org/project/manage_display",
  5953. "issues": "https://www.drupal.org/project/issues/manage_display"
  5954. }
  5955. },
  5956. {
  5957. "name": "drupal/matomo",
  5958. "version": "1.25.0",
  5959. "source": {
  5960. "type": "git",
  5961. "url": "https://git.drupalcode.org/project/matomo.git",
  5962. "reference": "8.x-1.25"
  5963. },
  5964. "dist": {
  5965. "type": "zip",
  5966. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.25.zip",
  5967. "reference": "8.x-1.25",
  5968. "shasum": "5e65764f4499061fa33cb5c46afcc26a85b8725e"
  5969. },
  5970. "require": {
  5971. "drupal/core": "^9.0 || ^10"
  5972. },
  5973. "conflict": {
  5974. "drupal/csp": "<1.12"
  5975. },
  5976. "require-dev": {
  5977. "drupal/csp": "~1.12",
  5978. "drupal/php": "~1.1",
  5979. "drupal/token": "~1.9"
  5980. },
  5981. "type": "drupal-module",
  5982. "extra": {
  5983. "drupal": {
  5984. "version": "8.x-1.25",
  5985. "datestamp": "1738948462",
  5986. "security-coverage": {
  5987. "status": "covered",
  5988. "message": "Covered by Drupal's security advisory policy"
  5989. }
  5990. }
  5991. },
  5992. "notification-url": "https://packages.drupal.org/8/downloads",
  5993. "license": [
  5994. "GPL-2.0-or-later"
  5995. ],
  5996. "authors": [
  5997. {
  5998. "name": "c-logemann",
  5999. "homepage": "https://www.drupal.org/user/218368"
  6000. },
  6001. {
  6002. "name": "grimreaper",
  6003. "homepage": "https://www.drupal.org/user/2388214"
  6004. },
  6005. {
  6006. "name": "hass",
  6007. "homepage": "https://www.drupal.org/user/85918"
  6008. },
  6009. {
  6010. "name": "shelane",
  6011. "homepage": "https://www.drupal.org/user/2674989"
  6012. }
  6013. ],
  6014. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  6015. "homepage": "https://www.drupal.org/project/matomo",
  6016. "support": {
  6017. "source": "https://git.drupalcode.org/project/matomo"
  6018. }
  6019. },
  6020. {
  6021. "name": "drupal/maxlength",
  6022. "version": "3.1.1",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://git.drupalcode.org/project/maxlength.git",
  6026. "reference": "3.1.1"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://ftp.drupal.org/files/projects/maxlength-3.1.1.zip",
  6031. "reference": "3.1.1",
  6032. "shasum": "85059a5d5107a13c780536aa05972e5e97c1308b"
  6033. },
  6034. "require": {
  6035. "drupal/core": "^10 || ^11"
  6036. },
  6037. "type": "drupal-module",
  6038. "extra": {
  6039. "drupal": {
  6040. "version": "3.1.1",
  6041. "datestamp": "1738341546",
  6042. "security-coverage": {
  6043. "status": "covered",
  6044. "message": "Covered by Drupal's security advisory policy"
  6045. }
  6046. }
  6047. },
  6048. "notification-url": "https://packages.drupal.org/8/downloads",
  6049. "license": [
  6050. "GPL-2.0-or-later"
  6051. ],
  6052. "authors": [
  6053. {
  6054. "name": "Marius Scurtescu (mariuss)",
  6055. "homepage": "https://www.drupal.org/u/mariuss",
  6056. "role": "Maintainer"
  6057. },
  6058. {
  6059. "name": "Clayton Dewey (cedewey)",
  6060. "homepage": "https://www.drupal.org/u/cedewey",
  6061. "role": "Maintainer"
  6062. },
  6063. {
  6064. "name": "Daniel Wehner (dawehner)",
  6065. "homepage": "https://www.drupal.org/u/dawehner",
  6066. "role": "Maintainer"
  6067. },
  6068. {
  6069. "name": "Paulino Michelazzo (pmichelazzo)",
  6070. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6071. "role": "Maintainer"
  6072. },
  6073. {
  6074. "name": "Jeff Hipp (hipp2bsquare)",
  6075. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6076. "role": "Maintainer"
  6077. },
  6078. {
  6079. "name": "Steven DuBois (srdtwc)",
  6080. "homepage": "https://www.drupal.org/u/srdtwc",
  6081. "role": "Maintainer"
  6082. },
  6083. {
  6084. "name": "Adam Nagy (joevagyok)",
  6085. "homepage": "https://www.drupal.org/u/joevagyok",
  6086. "role": "Maintainer"
  6087. }
  6088. ],
  6089. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6090. "homepage": "https://www.drupal.org/project/maxlength",
  6091. "support": {
  6092. "source": "https://git.drupalcode.org/project/maxlength",
  6093. "issues": "https://www.drupal.org/project/issues/maxlength"
  6094. }
  6095. },
  6096. {
  6097. "name": "drupal/menu_admin_per_menu",
  6098. "version": "1.7.0",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6102. "reference": "8.x-1.7"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6107. "reference": "8.x-1.7",
  6108. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6109. },
  6110. "require": {
  6111. "drupal/core": "^10.2 || ^11.0 || ^12"
  6112. },
  6113. "type": "drupal-module",
  6114. "extra": {
  6115. "drupal": {
  6116. "version": "8.x-1.7",
  6117. "datestamp": "1750246188",
  6118. "security-coverage": {
  6119. "status": "covered",
  6120. "message": "Covered by Drupal's security advisory policy"
  6121. }
  6122. }
  6123. },
  6124. "notification-url": "https://packages.drupal.org/8/downloads",
  6125. "license": [
  6126. "GPL-2.0-or-later"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "anrikun",
  6131. "homepage": "https://www.drupal.org/user/410199"
  6132. },
  6133. {
  6134. "name": "jeroent",
  6135. "homepage": "https://www.drupal.org/user/2228934"
  6136. },
  6137. {
  6138. "name": "jonas139",
  6139. "homepage": "https://www.drupal.org/user/2873401"
  6140. },
  6141. {
  6142. "name": "mkdok",
  6143. "homepage": "https://www.drupal.org/user/3308753"
  6144. }
  6145. ],
  6146. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6147. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6148. "keywords": [
  6149. "Drupal"
  6150. ],
  6151. "support": {
  6152. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6153. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6154. }
  6155. },
  6156. {
  6157. "name": "drupal/menu_block",
  6158. "version": "1.14.0",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://git.drupalcode.org/project/menu_block.git",
  6162. "reference": "8.x-1.14"
  6163. },
  6164. "dist": {
  6165. "type": "zip",
  6166. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6167. "reference": "8.x-1.14",
  6168. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6169. },
  6170. "require": {
  6171. "drupal/core": "^10.1 || ^11"
  6172. },
  6173. "type": "drupal-module",
  6174. "extra": {
  6175. "drupal": {
  6176. "version": "8.x-1.14",
  6177. "datestamp": "1740624449",
  6178. "security-coverage": {
  6179. "status": "covered",
  6180. "message": "Covered by Drupal's security advisory policy"
  6181. }
  6182. }
  6183. },
  6184. "notification-url": "https://packages.drupal.org/8/downloads",
  6185. "license": [
  6186. "GPL-2.0-or-later"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "dave reid",
  6191. "homepage": "https://www.drupal.org/user/53892"
  6192. },
  6193. {
  6194. "name": "joelpittet",
  6195. "homepage": "https://www.drupal.org/user/160302"
  6196. },
  6197. {
  6198. "name": "johnalbin",
  6199. "homepage": "https://www.drupal.org/user/32095"
  6200. },
  6201. {
  6202. "name": "kim.pepper",
  6203. "homepage": "https://www.drupal.org/user/370574"
  6204. },
  6205. {
  6206. "name": "renatog",
  6207. "homepage": "https://www.drupal.org/user/3326031"
  6208. },
  6209. {
  6210. "name": "rrrob",
  6211. "homepage": "https://www.drupal.org/user/273533"
  6212. }
  6213. ],
  6214. "description": "Provides configurable blocks of menu links.",
  6215. "homepage": "https://www.drupal.org/project/menu_block",
  6216. "support": {
  6217. "source": "https://git.drupalcode.org/project/menu_block"
  6218. }
  6219. },
  6220. {
  6221. "name": "drupal/page_manager",
  6222. "version": "4.0.0-rc3",
  6223. "source": {
  6224. "type": "git",
  6225. "url": "https://git.drupalcode.org/project/page_manager.git",
  6226. "reference": "8.x-4.0-rc3"
  6227. },
  6228. "dist": {
  6229. "type": "zip",
  6230. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6231. "reference": "8.x-4.0-rc3",
  6232. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6233. },
  6234. "require": {
  6235. "drupal/core": "^9.5 || ^10 || ^11",
  6236. "drupal/ctools": "^3.15 || ^4.1"
  6237. },
  6238. "type": "drupal-module",
  6239. "extra": {
  6240. "drupal": {
  6241. "version": "8.x-4.0-rc3",
  6242. "datestamp": "1721976404",
  6243. "security-coverage": {
  6244. "status": "not-covered",
  6245. "message": "RC releases are not covered by Drupal security advisories."
  6246. }
  6247. },
  6248. "branch-alias": {
  6249. "dev-8.x-4.x": "4.x-dev"
  6250. }
  6251. },
  6252. "notification-url": "https://packages.drupal.org/8/downloads",
  6253. "license": [
  6254. "GPL-2.0-or-later"
  6255. ],
  6256. "authors": [
  6257. {
  6258. "name": "Tim Plunkett",
  6259. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6260. "role": "Maintainer"
  6261. },
  6262. {
  6263. "name": "EclipseGc",
  6264. "homepage": "https://www.drupal.org/user/61203"
  6265. },
  6266. {
  6267. "name": "japerry",
  6268. "homepage": "https://www.drupal.org/user/45640"
  6269. },
  6270. {
  6271. "name": "joelpittet",
  6272. "homepage": "https://www.drupal.org/user/160302"
  6273. },
  6274. {
  6275. "name": "manuel.adan",
  6276. "homepage": "https://www.drupal.org/user/516420"
  6277. },
  6278. {
  6279. "name": "phenaproxima",
  6280. "homepage": "https://www.drupal.org/user/205645"
  6281. }
  6282. ],
  6283. "description": "Provides a way to place blocks on a custom page.",
  6284. "homepage": "https://www.drupal.org/project/page_manager",
  6285. "support": {
  6286. "source": "https://git.drupal.org/project/page_manager.git",
  6287. "issues": "https://www.drupal.org/project/issues/page_manager",
  6288. "irc": "irc://irc.freenode.org/drupal-contribute"
  6289. }
  6290. },
  6291. {
  6292. "name": "drupal/panels",
  6293. "version": "4.9.0",
  6294. "source": {
  6295. "type": "git",
  6296. "url": "https://git.drupalcode.org/project/panels.git",
  6297. "reference": "8.x-4.9"
  6298. },
  6299. "dist": {
  6300. "type": "zip",
  6301. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6302. "reference": "8.x-4.9",
  6303. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6304. },
  6305. "require": {
  6306. "drupal/core": "^9.5 || ^10 || ^11",
  6307. "drupal/ctools": "^3.15 || ^4.1",
  6308. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6309. },
  6310. "require-dev": {
  6311. "drupal/jquery_ui_droppable": "*",
  6312. "drupal/page_manager": "^4"
  6313. },
  6314. "type": "drupal-module",
  6315. "extra": {
  6316. "drupal": {
  6317. "version": "8.x-4.9",
  6318. "datestamp": "1744218203",
  6319. "security-coverage": {
  6320. "status": "covered",
  6321. "message": "Covered by Drupal's security advisory policy"
  6322. }
  6323. },
  6324. "branch-alias": {
  6325. "dev-8.x-4.x": "4.x-dev"
  6326. }
  6327. },
  6328. "notification-url": "https://packages.drupal.org/8/downloads",
  6329. "license": [
  6330. "GPL-2.0+"
  6331. ],
  6332. "authors": [
  6333. {
  6334. "name": "Jakob Perry",
  6335. "homepage": "https://www.drupal.org/u/japerry"
  6336. },
  6337. {
  6338. "name": "Samuel Mortenson",
  6339. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6340. },
  6341. {
  6342. "name": "See other contributors",
  6343. "homepage": "https://www.drupal.org/node/74958/committers"
  6344. },
  6345. {
  6346. "name": "joelpittet",
  6347. "homepage": "https://www.drupal.org/user/160302"
  6348. },
  6349. {
  6350. "name": "Letharion",
  6351. "homepage": "https://www.drupal.org/user/373603"
  6352. },
  6353. {
  6354. "name": "merlinofchaos",
  6355. "homepage": "https://www.drupal.org/user/26979"
  6356. },
  6357. {
  6358. "name": "neclimdul",
  6359. "homepage": "https://www.drupal.org/user/48673"
  6360. },
  6361. {
  6362. "name": "phenaproxima",
  6363. "homepage": "https://www.drupal.org/user/205645"
  6364. },
  6365. {
  6366. "name": "samuel.mortenson",
  6367. "homepage": "https://www.drupal.org/user/2582268"
  6368. }
  6369. ],
  6370. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6371. "homepage": "https://www.drupal.org/project/panels",
  6372. "support": {
  6373. "source": "https://git.drupalcode.org/project/panels",
  6374. "issues": "https://www.drupal.org/project/issues/panels",
  6375. "irc": "irc://irc.freenode.org/drupal-scotch"
  6376. }
  6377. },
  6378. {
  6379. "name": "drupal/paragraphs",
  6380. "version": "1.19.0",
  6381. "source": {
  6382. "type": "git",
  6383. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6384. "reference": "8.x-1.19"
  6385. },
  6386. "dist": {
  6387. "type": "zip",
  6388. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6389. "reference": "8.x-1.19",
  6390. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6391. },
  6392. "require": {
  6393. "drupal/core": "^10.2 || ^11",
  6394. "drupal/entity_reference_revisions": "~1.3"
  6395. },
  6396. "require-dev": {
  6397. "drupal/block_field": "1.x-dev",
  6398. "drupal/diff": "1.x-dev",
  6399. "drupal/entity_browser": "2.x-dev",
  6400. "drupal/entity_usage": "2.x-dev",
  6401. "drupal/feeds": "^3",
  6402. "drupal/field_group": "3.x-dev",
  6403. "drupal/inline_entity_form": "3.x-dev",
  6404. "drupal/paragraphs-paragraphs_library": "*",
  6405. "drupal/replicate": "1.x-dev",
  6406. "drupal/search_api": "^1",
  6407. "drupal/search_api_db": "*"
  6408. },
  6409. "suggest": {
  6410. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6411. },
  6412. "type": "drupal-module",
  6413. "extra": {
  6414. "drupal": {
  6415. "version": "8.x-1.19",
  6416. "datestamp": "1740907076",
  6417. "security-coverage": {
  6418. "status": "covered",
  6419. "message": "Covered by Drupal's security advisory policy"
  6420. }
  6421. }
  6422. },
  6423. "notification-url": "https://packages.drupal.org/8/downloads",
  6424. "license": [
  6425. "GPL-2.0-or-later"
  6426. ],
  6427. "authors": [
  6428. {
  6429. "name": "berdir",
  6430. "homepage": "https://www.drupal.org/user/214652"
  6431. },
  6432. {
  6433. "name": "frans",
  6434. "homepage": "https://www.drupal.org/user/514222"
  6435. },
  6436. {
  6437. "name": "jeroen.b",
  6438. "homepage": "https://www.drupal.org/user/1853532"
  6439. },
  6440. {
  6441. "name": "jstoller",
  6442. "homepage": "https://www.drupal.org/user/99012"
  6443. },
  6444. {
  6445. "name": "miro_dietiker",
  6446. "homepage": "https://www.drupal.org/user/227761"
  6447. },
  6448. {
  6449. "name": "primsi",
  6450. "homepage": "https://www.drupal.org/user/282629"
  6451. }
  6452. ],
  6453. "description": "Enables the creation of Paragraphs entities.",
  6454. "homepage": "https://www.drupal.org/project/paragraphs",
  6455. "support": {
  6456. "source": "https://git.drupalcode.org/project/paragraphs"
  6457. }
  6458. },
  6459. {
  6460. "name": "drupal/pathauto",
  6461. "version": "1.13.0",
  6462. "source": {
  6463. "type": "git",
  6464. "url": "https://git.drupalcode.org/project/pathauto.git",
  6465. "reference": "8.x-1.13"
  6466. },
  6467. "dist": {
  6468. "type": "zip",
  6469. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  6470. "reference": "8.x-1.13",
  6471. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  6472. },
  6473. "require": {
  6474. "drupal/core": "^9.4 || ^10 || ^11",
  6475. "drupal/ctools": "*",
  6476. "drupal/token": "*"
  6477. },
  6478. "require-dev": {
  6479. "drupal/forum": "*"
  6480. },
  6481. "suggest": {
  6482. "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."
  6483. },
  6484. "type": "drupal-module",
  6485. "extra": {
  6486. "drupal": {
  6487. "version": "8.x-1.13",
  6488. "datestamp": "1739552840",
  6489. "security-coverage": {
  6490. "status": "covered",
  6491. "message": "Covered by Drupal's security advisory policy"
  6492. }
  6493. },
  6494. "drush": {
  6495. "services": {
  6496. "drush.services.yml": "^9 || ^10"
  6497. }
  6498. }
  6499. },
  6500. "notification-url": "https://packages.drupal.org/8/downloads",
  6501. "license": [
  6502. "GPL-2.0-or-later"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "berdir",
  6507. "homepage": "https://www.drupal.org/user/214652"
  6508. },
  6509. {
  6510. "name": "dave reid",
  6511. "homepage": "https://www.drupal.org/user/53892"
  6512. },
  6513. {
  6514. "name": "Freso",
  6515. "homepage": "https://www.drupal.org/user/27504"
  6516. },
  6517. {
  6518. "name": "greggles",
  6519. "homepage": "https://www.drupal.org/user/36762"
  6520. }
  6521. ],
  6522. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6523. "homepage": "https://www.drupal.org/project/pathauto",
  6524. "support": {
  6525. "source": "https://cgit.drupalcode.org/pathauto",
  6526. "issues": "https://www.drupal.org/project/issues/pathauto",
  6527. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6528. }
  6529. },
  6530. {
  6531. "name": "drupal/pathologic",
  6532. "version": "2.0.0-alpha3",
  6533. "source": {
  6534. "type": "git",
  6535. "url": "https://git.drupalcode.org/project/pathologic.git",
  6536. "reference": "2.0.0-alpha3"
  6537. },
  6538. "dist": {
  6539. "type": "zip",
  6540. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6541. "reference": "2.0.0-alpha3",
  6542. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6543. },
  6544. "require": {
  6545. "drupal/core": "^9 || ^10 || ^11"
  6546. },
  6547. "type": "drupal-module",
  6548. "extra": {
  6549. "drupal": {
  6550. "version": "2.0.0-alpha3",
  6551. "datestamp": "1733441073",
  6552. "security-coverage": {
  6553. "status": "not-covered",
  6554. "message": "Alpha releases are not covered by Drupal security advisories."
  6555. }
  6556. }
  6557. },
  6558. "notification-url": "https://packages.drupal.org/8/downloads",
  6559. "license": [
  6560. "GPL-2.0+"
  6561. ],
  6562. "authors": [
  6563. {
  6564. "name": "berdir",
  6565. "homepage": "https://www.drupal.org/user/214652"
  6566. },
  6567. {
  6568. "name": "dww",
  6569. "homepage": "https://www.drupal.org/user/46549"
  6570. },
  6571. {
  6572. "name": "Garrett Albright",
  6573. "homepage": "https://www.drupal.org/user/191212"
  6574. },
  6575. {
  6576. "name": "mark_fullmer",
  6577. "homepage": "https://www.drupal.org/user/2612816"
  6578. }
  6579. ],
  6580. "description": "Helps avoid broken links and incorrect paths in content.",
  6581. "homepage": "https://www.drupal.org/project/pathologic",
  6582. "support": {
  6583. "source": "https://git.drupalcode.org/project/pathologic"
  6584. }
  6585. },
  6586. {
  6587. "name": "drupal/persistent_login",
  6588. "version": "2.2.4",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6592. "reference": "2.2.4"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://ftp.drupal.org/files/projects/persistent_login-2.2.4.zip",
  6597. "reference": "2.2.4",
  6598. "shasum": "7048ecf440938f0245f87bfb8c21f61292fce12d"
  6599. },
  6600. "require": {
  6601. "drupal/core": "^10 || ^11"
  6602. },
  6603. "type": "drupal-module",
  6604. "extra": {
  6605. "drupal": {
  6606. "version": "2.2.4",
  6607. "datestamp": "1728082564",
  6608. "security-coverage": {
  6609. "status": "covered",
  6610. "message": "Covered by Drupal's security advisory policy"
  6611. }
  6612. }
  6613. },
  6614. "notification-url": "https://packages.drupal.org/8/downloads",
  6615. "license": [
  6616. "GPL-2.0-or-later"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "gapple",
  6621. "homepage": "https://www.drupal.org/user/490940"
  6622. }
  6623. ],
  6624. "description": "Provides a \"Remember Me\" feature on the login form.",
  6625. "homepage": "https://www.drupal.org/project/persistent_login",
  6626. "keywords": [
  6627. "Drupal"
  6628. ],
  6629. "support": {
  6630. "source": "https://git.drupalcode.org/project/persistent_login",
  6631. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6632. }
  6633. },
  6634. {
  6635. "name": "drupal/redirect",
  6636. "version": "1.11.0",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://git.drupalcode.org/project/redirect.git",
  6640. "reference": "8.x-1.11"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
  6645. "reference": "8.x-1.11",
  6646. "shasum": "7df8b3524bbde07d254216039636947a689140ef"
  6647. },
  6648. "require": {
  6649. "drupal/core": "^9.2 || ^10 || ^11"
  6650. },
  6651. "type": "drupal-module",
  6652. "extra": {
  6653. "drupal": {
  6654. "version": "8.x-1.11",
  6655. "datestamp": "1737382886",
  6656. "security-coverage": {
  6657. "status": "covered",
  6658. "message": "Covered by Drupal's security advisory policy"
  6659. }
  6660. }
  6661. },
  6662. "notification-url": "https://packages.drupal.org/8/downloads",
  6663. "license": [
  6664. "GPL-2.0-or-later"
  6665. ],
  6666. "authors": [
  6667. {
  6668. "name": "berdir",
  6669. "homepage": "https://www.drupal.org/user/214652"
  6670. },
  6671. {
  6672. "name": "dave reid",
  6673. "homepage": "https://www.drupal.org/user/53892"
  6674. },
  6675. {
  6676. "name": "kristen pol",
  6677. "homepage": "https://www.drupal.org/user/8389"
  6678. },
  6679. {
  6680. "name": "pifagor",
  6681. "homepage": "https://www.drupal.org/user/2375692"
  6682. }
  6683. ],
  6684. "description": "Allows users to redirect from old URLs to new URLs.",
  6685. "homepage": "https://www.drupal.org/project/redirect",
  6686. "support": {
  6687. "source": "https://git.drupalcode.org/project/redirect"
  6688. }
  6689. },
  6690. {
  6691. "name": "drupal/redis",
  6692. "version": "1.9.0",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://git.drupalcode.org/project/redis.git",
  6696. "reference": "8.x-1.9"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.9.zip",
  6701. "reference": "8.x-1.9",
  6702. "shasum": "77e2e8ddb95be08f3fe9f74182c7ff0476e15674"
  6703. },
  6704. "require": {
  6705. "drupal/core": "^9.3 || ^10 || ^11"
  6706. },
  6707. "suggest": {
  6708. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6709. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6710. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6711. },
  6712. "type": "drupal-module",
  6713. "extra": {
  6714. "drupal": {
  6715. "version": "8.x-1.9",
  6716. "datestamp": "1737932099",
  6717. "security-coverage": {
  6718. "status": "covered",
  6719. "message": "Covered by Drupal's security advisory policy"
  6720. }
  6721. }
  6722. },
  6723. "autoload": {
  6724. "psr-4": {
  6725. "Drupal\\redis\\": "src"
  6726. }
  6727. },
  6728. "notification-url": "https://packages.drupal.org/8/downloads",
  6729. "license": [
  6730. "GPL-2.0-or-later"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "berdir",
  6735. "homepage": "https://www.drupal.org/user/214652"
  6736. },
  6737. {
  6738. "name": "greg.1.anderson",
  6739. "homepage": "https://www.drupal.org/user/438598"
  6740. },
  6741. {
  6742. "name": "kporras07",
  6743. "homepage": "https://www.drupal.org/user/1349780"
  6744. },
  6745. {
  6746. "name": "pounard",
  6747. "homepage": "https://www.drupal.org/user/240164"
  6748. }
  6749. ],
  6750. "description": "Integration of Drupal with the Redis key-value store.",
  6751. "homepage": "https://www.drupal.org/project/redis",
  6752. "support": {
  6753. "source": "https://git.drupalcode.org/project/redis"
  6754. }
  6755. },
  6756. {
  6757. "name": "drupal/role_delegation",
  6758. "version": "1.4.0",
  6759. "source": {
  6760. "type": "git",
  6761. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6762. "reference": "8.x-1.4"
  6763. },
  6764. "dist": {
  6765. "type": "zip",
  6766. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip",
  6767. "reference": "8.x-1.4",
  6768. "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa"
  6769. },
  6770. "require": {
  6771. "drupal/core": "^10.3 || ^11"
  6772. },
  6773. "type": "drupal-module",
  6774. "extra": {
  6775. "drupal": {
  6776. "version": "8.x-1.4",
  6777. "datestamp": "1751012870",
  6778. "security-coverage": {
  6779. "status": "covered",
  6780. "message": "Covered by Drupal's security advisory policy"
  6781. }
  6782. }
  6783. },
  6784. "notification-url": "https://packages.drupal.org/8/downloads",
  6785. "license": [
  6786. "GPL-2.0-or-later"
  6787. ],
  6788. "authors": [
  6789. {
  6790. "name": "Jeroen Tubex",
  6791. "homepage": "https://www.drupal.org/u/jeroent",
  6792. "role": "Maintainer"
  6793. },
  6794. {
  6795. "name": "benjy",
  6796. "homepage": "https://www.drupal.org/user/1852732"
  6797. },
  6798. {
  6799. "name": "dieterholvoet",
  6800. "homepage": "https://www.drupal.org/user/3567222"
  6801. },
  6802. {
  6803. "name": "jeroent",
  6804. "homepage": "https://www.drupal.org/user/2228934"
  6805. }
  6806. ],
  6807. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6808. "homepage": "http://drupal.org/project/role_delegation",
  6809. "support": {
  6810. "source": "https://git.drupalcode.org/project/role_delegation",
  6811. "issues": "http://drupal.org/project/role_delegation"
  6812. }
  6813. },
  6814. {
  6815. "name": "drupal/search_api",
  6816. "version": "1.38.0",
  6817. "source": {
  6818. "type": "git",
  6819. "url": "https://git.drupalcode.org/project/search_api.git",
  6820. "reference": "8.x-1.38"
  6821. },
  6822. "dist": {
  6823. "type": "zip",
  6824. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
  6825. "reference": "8.x-1.38",
  6826. "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
  6827. },
  6828. "require": {
  6829. "drupal/core": "^10.2 || ^11"
  6830. },
  6831. "conflict": {
  6832. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6833. },
  6834. "require-dev": {
  6835. "drupal/language_fallback_fix": "@dev",
  6836. "drupal/search_api_autocomplete": "@dev",
  6837. "drupal/search_api_db": "*"
  6838. },
  6839. "suggest": {
  6840. "drupal/facets": "Adds the ability to create faceted searches.",
  6841. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6842. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6843. },
  6844. "type": "drupal-module",
  6845. "extra": {
  6846. "drupal": {
  6847. "version": "8.x-1.38",
  6848. "datestamp": "1740298961",
  6849. "security-coverage": {
  6850. "status": "covered",
  6851. "message": "Covered by Drupal's security advisory policy"
  6852. }
  6853. }
  6854. },
  6855. "notification-url": "https://packages.drupal.org/8/downloads",
  6856. "license": [
  6857. "GPL-2.0-or-later"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "Thomas Seidl",
  6862. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6863. },
  6864. {
  6865. "name": "Nick Veenhof",
  6866. "homepage": "https://www.drupal.org/u/nick_vh"
  6867. },
  6868. {
  6869. "name": "See other contributors",
  6870. "homepage": "https://www.drupal.org/node/790418/committers"
  6871. }
  6872. ],
  6873. "description": "Provides a generic framework for modules offering search capabilities.",
  6874. "homepage": "https://www.drupal.org/project/search_api",
  6875. "support": {
  6876. "source": "https://git.drupalcode.org/project/search_api",
  6877. "issues": "https://www.drupal.org/project/issues/search_api",
  6878. "irc": "irc://irc.freenode.org/drupal-search-api"
  6879. }
  6880. },
  6881. {
  6882. "name": "drupal/search_api_db",
  6883. "version": "1.38.0",
  6884. "require": {
  6885. "drupal/core": "^10.2 || ^11",
  6886. "drupal/search_api": "*"
  6887. },
  6888. "type": "metapackage",
  6889. "extra": {
  6890. "drupal": {
  6891. "version": "8.x-1.38",
  6892. "datestamp": "1740298961",
  6893. "security-coverage": {
  6894. "status": "covered",
  6895. "message": "Covered by Drupal's security advisory policy"
  6896. }
  6897. }
  6898. },
  6899. "notification-url": "https://packages.drupal.org/8/downloads",
  6900. "license": [
  6901. "GPL-2.0-or-later"
  6902. ],
  6903. "authors": [
  6904. {
  6905. "name": "borisson_",
  6906. "homepage": "https://www.drupal.org/user/2393360"
  6907. },
  6908. {
  6909. "name": "drunken monkey",
  6910. "homepage": "https://www.drupal.org/user/205582"
  6911. },
  6912. {
  6913. "name": "nick_vh",
  6914. "homepage": "https://www.drupal.org/user/122682"
  6915. }
  6916. ],
  6917. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6918. "homepage": "https://www.drupal.org/project/search_api",
  6919. "support": {
  6920. "source": "https://git.drupalcode.org/project/search_api"
  6921. }
  6922. },
  6923. {
  6924. "name": "drupal/seven",
  6925. "version": "1.0.0",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://git.drupalcode.org/project/seven.git",
  6929. "reference": "1.0.0"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6934. "reference": "1.0.0",
  6935. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6936. },
  6937. "require": {
  6938. "drupal/core": "^9 || ^10"
  6939. },
  6940. "type": "drupal-theme",
  6941. "extra": {
  6942. "drupal": {
  6943. "version": "1.0.0",
  6944. "datestamp": "1758908691",
  6945. "security-coverage": {
  6946. "status": "covered",
  6947. "message": "Covered by Drupal's security advisory policy"
  6948. }
  6949. }
  6950. },
  6951. "notification-url": "https://packages.drupal.org/8/downloads",
  6952. "license": [
  6953. "GPL-2.0-or-later"
  6954. ],
  6955. "authors": [
  6956. {
  6957. "name": "avpaderno",
  6958. "homepage": "https://www.drupal.org/user/55077"
  6959. },
  6960. {
  6961. "name": "bnjmnm",
  6962. "homepage": "https://www.drupal.org/user/2369194"
  6963. },
  6964. {
  6965. "name": "krakenbite",
  6966. "homepage": "https://www.drupal.org/user/3805933"
  6967. },
  6968. {
  6969. "name": "lauriii",
  6970. "homepage": "https://www.drupal.org/user/1078742"
  6971. },
  6972. {
  6973. "name": "mcrittenden",
  6974. "homepage": "https://www.drupal.org/user/420631"
  6975. },
  6976. {
  6977. "name": "mrfelton",
  6978. "homepage": "https://www.drupal.org/user/305669"
  6979. }
  6980. ],
  6981. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6982. "homepage": "https://www.drupal.org/project/seven",
  6983. "support": {
  6984. "source": "https://git.drupalcode.org/project/seven"
  6985. }
  6986. },
  6987. {
  6988. "name": "drupal/slick",
  6989. "version": "2.11.0",
  6990. "source": {
  6991. "type": "git",
  6992. "url": "https://git.drupalcode.org/project/slick.git",
  6993. "reference": "8.x-2.11"
  6994. },
  6995. "dist": {
  6996. "type": "zip",
  6997. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  6998. "reference": "8.x-2.11",
  6999. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  7000. },
  7001. "require": {
  7002. "drupal/blazy": "^2.17",
  7003. "drupal/core": "^8.8 || ^9 || ^10"
  7004. },
  7005. "type": "drupal-module",
  7006. "extra": {
  7007. "drupal": {
  7008. "version": "8.x-2.11",
  7009. "datestamp": "1712817716",
  7010. "security-coverage": {
  7011. "status": "covered",
  7012. "message": "Covered by Drupal's security advisory policy"
  7013. }
  7014. }
  7015. },
  7016. "notification-url": "https://packages.drupal.org/8/downloads",
  7017. "license": [
  7018. "GPL-2.0-or-later"
  7019. ],
  7020. "authors": [
  7021. {
  7022. "name": "Contributors",
  7023. "homepage": "https://www.drupal.org/node/2232779/committers",
  7024. "role": "Contributors"
  7025. },
  7026. {
  7027. "name": "shadcn",
  7028. "homepage": "https://www.drupal.org/user/571032"
  7029. },
  7030. {
  7031. "name": "thalles",
  7032. "homepage": "https://www.drupal.org/user/3589086"
  7033. }
  7034. ],
  7035. "description": "Slick carousel, the last carousel you'll ever need.",
  7036. "homepage": "https://drupal.org/project/slick",
  7037. "keywords": [
  7038. "Drupal",
  7039. "carousel",
  7040. "slideshow"
  7041. ],
  7042. "support": {
  7043. "source": "https://git.drupalcode.org/project/slick",
  7044. "issues": "https://drupal.org/project/issues/slick"
  7045. }
  7046. },
  7047. {
  7048. "name": "drupal/smart_trim",
  7049. "version": "2.2.0",
  7050. "source": {
  7051. "type": "git",
  7052. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7053. "reference": "2.2.0"
  7054. },
  7055. "dist": {
  7056. "type": "zip",
  7057. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.2.0.zip",
  7058. "reference": "2.2.0",
  7059. "shasum": "564737cf0895e1b8a38af575ab7ca23f55335d9a"
  7060. },
  7061. "require": {
  7062. "drupal/core": "^9.5 || ^10 || ^11",
  7063. "drupal/token": "^1.0",
  7064. "php": ">=8.1"
  7065. },
  7066. "require-dev": {
  7067. "drupal/token_filter": "^2.1 || ^2.2"
  7068. },
  7069. "type": "drupal-module",
  7070. "extra": {
  7071. "drupal": {
  7072. "version": "2.2.0",
  7073. "datestamp": "1723847275",
  7074. "security-coverage": {
  7075. "status": "covered",
  7076. "message": "Covered by Drupal's security advisory policy"
  7077. }
  7078. }
  7079. },
  7080. "notification-url": "https://packages.drupal.org/8/downloads",
  7081. "license": [
  7082. "GPL-2.0-or-later"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Mark Casias (markie)",
  7087. "homepage": "https://www.drupal.org/u/markie",
  7088. "role": "Maintainer"
  7089. },
  7090. {
  7091. "name": "AmyJune Hineline (volkswagenchick)",
  7092. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7093. "role": "Maintainer"
  7094. },
  7095. {
  7096. "name": "Michael Anello (ultimike)",
  7097. "homepage": "https://www.drupal.org/u/ultimike",
  7098. "role": "Maintainer"
  7099. }
  7100. ],
  7101. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7102. "homepage": "https://drupal.org/project/smart_trim",
  7103. "support": {
  7104. "source": "https://git.drupalcode.org/project/smart_trim",
  7105. "issues": "https://drupal.org/project/issues/smart_trim"
  7106. }
  7107. },
  7108. {
  7109. "name": "drupal/smtp",
  7110. "version": "1.4.0",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://git.drupalcode.org/project/smtp.git",
  7114. "reference": "8.x-1.4"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7119. "reference": "8.x-1.4",
  7120. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7121. },
  7122. "require": {
  7123. "drupal/core": "^9.5 || ^10 || ^11",
  7124. "phpmailer/phpmailer": "^6.1.7"
  7125. },
  7126. "suggest": {
  7127. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7128. },
  7129. "type": "drupal-module",
  7130. "extra": {
  7131. "drupal": {
  7132. "version": "8.x-1.4",
  7133. "datestamp": "1722032780",
  7134. "security-coverage": {
  7135. "status": "covered",
  7136. "message": "Covered by Drupal's security advisory policy"
  7137. }
  7138. },
  7139. "branch-alias": {
  7140. "dev-8.x-1.x": "1.x-dev"
  7141. }
  7142. },
  7143. "notification-url": "https://packages.drupal.org/8/downloads",
  7144. "license": [
  7145. "GPL-2.0-or-later"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "japerry",
  7150. "homepage": "https://www.drupal.org/user/45640"
  7151. },
  7152. {
  7153. "name": "joseph.olstad",
  7154. "homepage": "https://www.drupal.org/user/1321830"
  7155. },
  7156. {
  7157. "name": "LukeLast",
  7158. "homepage": "https://www.drupal.org/user/30151"
  7159. },
  7160. {
  7161. "name": "oadaeh",
  7162. "homepage": "https://www.drupal.org/user/4649"
  7163. },
  7164. {
  7165. "name": "sadashiv",
  7166. "homepage": "https://www.drupal.org/user/1773304"
  7167. },
  7168. {
  7169. "name": "wundo",
  7170. "homepage": "https://www.drupal.org/user/25523"
  7171. },
  7172. {
  7173. "name": "yettyn",
  7174. "homepage": "https://www.drupal.org/user/93281"
  7175. }
  7176. ],
  7177. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7178. "homepage": "https://www.drupal.org/project/smtp",
  7179. "support": {
  7180. "source": "https://git.drupalcode.org/project/smtp",
  7181. "issues": "https://www.drupal.org/project/issues/smtp"
  7182. }
  7183. },
  7184. {
  7185. "name": "drupal/structure_sync",
  7186. "version": "2.0.8",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7190. "reference": "2.0.8"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7195. "reference": "2.0.8",
  7196. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7197. },
  7198. "require": {
  7199. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7200. "php": ">=7.1"
  7201. },
  7202. "require-dev": {
  7203. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7204. },
  7205. "type": "drupal-module",
  7206. "extra": {
  7207. "drupal": {
  7208. "version": "2.0.8",
  7209. "datestamp": "1728580642",
  7210. "security-coverage": {
  7211. "status": "covered",
  7212. "message": "Covered by Drupal's security advisory policy"
  7213. }
  7214. },
  7215. "drush": {
  7216. "services": {
  7217. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7218. }
  7219. }
  7220. },
  7221. "notification-url": "https://packages.drupal.org/8/downloads",
  7222. "license": [
  7223. "GPL-2.0-or-later"
  7224. ],
  7225. "authors": [
  7226. {
  7227. "name": "colan",
  7228. "homepage": "https://www.drupal.org/user/58704"
  7229. },
  7230. {
  7231. "name": "fidovdbos",
  7232. "homepage": "https://www.drupal.org/user/1494332"
  7233. },
  7234. {
  7235. "name": "joachim",
  7236. "homepage": "https://www.drupal.org/user/107701"
  7237. },
  7238. {
  7239. "name": "louis-cuny",
  7240. "homepage": "https://www.drupal.org/user/3606332"
  7241. },
  7242. {
  7243. "name": "mparker17",
  7244. "homepage": "https://www.drupal.org/user/536298"
  7245. },
  7246. {
  7247. "name": "spiderman",
  7248. "homepage": "https://www.drupal.org/user/1631"
  7249. },
  7250. {
  7251. "name": "timKruijsen",
  7252. "homepage": "https://www.drupal.org/user/3513437"
  7253. },
  7254. {
  7255. "name": "vinlaurens",
  7256. "homepage": "https://www.drupal.org/user/2945689"
  7257. }
  7258. ],
  7259. "description": "Tool for syncing structural data that is stored as content.",
  7260. "homepage": "https://www.drupal.org/project/structure_sync",
  7261. "support": {
  7262. "source": "https://git.drupalcode.org/project/structure_sync"
  7263. }
  7264. },
  7265. {
  7266. "name": "drupal/synonyms",
  7267. "version": "2.1.4",
  7268. "source": {
  7269. "type": "git",
  7270. "url": "https://git.drupalcode.org/project/synonyms.git",
  7271. "reference": "2.1.4"
  7272. },
  7273. "dist": {
  7274. "type": "zip",
  7275. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7276. "reference": "2.1.4",
  7277. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7278. },
  7279. "require": {
  7280. "drupal/core": "^9 || ^10 || ^11"
  7281. },
  7282. "require-dev": {
  7283. "drupal/synonyms_list_field": "*"
  7284. },
  7285. "type": "drupal-module",
  7286. "extra": {
  7287. "drupal": {
  7288. "version": "2.1.4",
  7289. "datestamp": "1723069842",
  7290. "security-coverage": {
  7291. "status": "covered",
  7292. "message": "Covered by Drupal's security advisory policy"
  7293. }
  7294. }
  7295. },
  7296. "notification-url": "https://packages.drupal.org/8/downloads",
  7297. "license": [
  7298. "GPL-2.0-or-later"
  7299. ],
  7300. "authors": [
  7301. {
  7302. "name": "Bojan Zivanovic",
  7303. "homepage": "https://www.drupal.org/u/bojanz",
  7304. "role": "Author and D5, D6 and D7 versions developer."
  7305. },
  7306. {
  7307. "name": "Alex Trosenko",
  7308. "homepage": "https://www.drupal.org/u/bucefal91",
  7309. "role": "D7 and D8 versions developer."
  7310. },
  7311. {
  7312. "name": "Duro Arezina",
  7313. "homepage": "https://www.drupal.org/u/devad",
  7314. "role": "D8+ versions maintenance"
  7315. },
  7316. {
  7317. "name": "See other contributors",
  7318. "homepage": "https://www.drupal.org/node/148775/committers"
  7319. }
  7320. ],
  7321. "description": "Provides synonyms feature for all entities.",
  7322. "homepage": "https://www.drupal.org/project/synonyms",
  7323. "support": {
  7324. "source": "https://git.drupalcode.org/project/synonyms",
  7325. "issues": "https://www.drupal.org/project/issues/synonyms"
  7326. }
  7327. },
  7328. {
  7329. "name": "drupal/token",
  7330. "version": "1.15.0",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://git.drupalcode.org/project/token.git",
  7334. "reference": "8.x-1.15"
  7335. },
  7336. "dist": {
  7337. "type": "zip",
  7338. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  7339. "reference": "8.x-1.15",
  7340. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  7341. },
  7342. "require": {
  7343. "drupal/core": "^9.2 || ^10 || ^11"
  7344. },
  7345. "require-dev": {
  7346. "drupal/book": "*"
  7347. },
  7348. "type": "drupal-module",
  7349. "extra": {
  7350. "drupal": {
  7351. "version": "8.x-1.15",
  7352. "datestamp": "1722206211",
  7353. "security-coverage": {
  7354. "status": "covered",
  7355. "message": "Covered by Drupal's security advisory policy"
  7356. }
  7357. },
  7358. "drush": {
  7359. "services": {
  7360. "drush.services.yml": ">=9"
  7361. }
  7362. }
  7363. },
  7364. "notification-url": "https://packages.drupal.org/8/downloads",
  7365. "license": [
  7366. "GPL-2.0-or-later"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "berdir",
  7371. "homepage": "https://www.drupal.org/user/214652"
  7372. },
  7373. {
  7374. "name": "dave reid",
  7375. "homepage": "https://www.drupal.org/user/53892"
  7376. },
  7377. {
  7378. "name": "eaton",
  7379. "homepage": "https://www.drupal.org/user/16496"
  7380. },
  7381. {
  7382. "name": "fago",
  7383. "homepage": "https://www.drupal.org/user/16747"
  7384. },
  7385. {
  7386. "name": "greggles",
  7387. "homepage": "https://www.drupal.org/user/36762"
  7388. },
  7389. {
  7390. "name": "mikeryan",
  7391. "homepage": "https://www.drupal.org/user/4420"
  7392. }
  7393. ],
  7394. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7395. "homepage": "https://www.drupal.org/project/token",
  7396. "support": {
  7397. "source": "https://git.drupalcode.org/project/token"
  7398. }
  7399. },
  7400. {
  7401. "name": "drupal/translation_views",
  7402. "version": "1.0.0-alpha11",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://git.drupalcode.org/project/translation_views.git",
  7406. "reference": "8.x-1.0-alpha11"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7411. "reference": "8.x-1.0-alpha11",
  7412. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7413. },
  7414. "require": {
  7415. "drupal/core": "^8.8 || ^9 || ^10"
  7416. },
  7417. "require-dev": {
  7418. "drupal/translators_content": "^1.0@alpha"
  7419. },
  7420. "type": "drupal-module",
  7421. "extra": {
  7422. "drupal": {
  7423. "version": "8.x-1.0-alpha11",
  7424. "datestamp": "1679660668",
  7425. "security-coverage": {
  7426. "status": "not-covered",
  7427. "message": "Alpha releases are not covered by Drupal security advisories."
  7428. }
  7429. }
  7430. },
  7431. "notification-url": "https://packages.drupal.org/8/downloads",
  7432. "license": [
  7433. "GPL-2.0-or-later"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "matsbla",
  7438. "homepage": "https://www.drupal.org/user/2325394"
  7439. },
  7440. {
  7441. "name": "vlad.dancer",
  7442. "homepage": "https://www.drupal.org/user/903844"
  7443. }
  7444. ],
  7445. "description": "Create customized lists and queries of translations from your database.",
  7446. "homepage": "https://www.drupal.org/project/translation_views",
  7447. "support": {
  7448. "source": "https://git.drupalcode.org/project/translation_views"
  7449. }
  7450. },
  7451. {
  7452. "name": "drupal/ultimate_cron",
  7453. "version": "2.0.0-beta1",
  7454. "source": {
  7455. "type": "git",
  7456. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7457. "reference": "8.x-2.0-beta1"
  7458. },
  7459. "dist": {
  7460. "type": "zip",
  7461. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7462. "reference": "8.x-2.0-beta1",
  7463. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7464. },
  7465. "require": {
  7466. "drupal/core": "^9.3 || ^10.1 || ^11"
  7467. },
  7468. "type": "drupal-module",
  7469. "extra": {
  7470. "drupal": {
  7471. "version": "8.x-2.0-beta1",
  7472. "datestamp": "1732830342",
  7473. "security-coverage": {
  7474. "status": "not-covered",
  7475. "message": "Beta releases are not covered by Drupal security advisories."
  7476. }
  7477. },
  7478. "drush": {
  7479. "services": {
  7480. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7481. }
  7482. }
  7483. },
  7484. "notification-url": "https://packages.drupal.org/8/downloads",
  7485. "license": [
  7486. "GPL-2.0+"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "arnested",
  7491. "homepage": "https://www.drupal.org/user/245635"
  7492. },
  7493. {
  7494. "name": "berdir",
  7495. "homepage": "https://www.drupal.org/user/214652"
  7496. },
  7497. {
  7498. "name": "gielfeldt",
  7499. "homepage": "https://www.drupal.org/user/366993"
  7500. },
  7501. {
  7502. "name": "miro_dietiker",
  7503. "homepage": "https://www.drupal.org/user/227761"
  7504. },
  7505. {
  7506. "name": "primsi",
  7507. "homepage": "https://www.drupal.org/user/282629"
  7508. }
  7509. ],
  7510. "description": "Ultimate cron",
  7511. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7512. "support": {
  7513. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7514. }
  7515. },
  7516. {
  7517. "name": "drupal/upgrade_status",
  7518. "version": "4.3.8",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7522. "reference": "4.3.8"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  7527. "reference": "4.3.8",
  7528. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  7529. },
  7530. "require": {
  7531. "dekor/php-array-table": "^2.0",
  7532. "drupal/core": "^9 || ^10 || ^11",
  7533. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7534. "nikic/php-parser": "^4.0.0|^5.0.0",
  7535. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7536. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7537. "webflo/drupal-finder": "^1.2"
  7538. },
  7539. "require-dev": {
  7540. "drush/drush": "^11|^12|^13"
  7541. },
  7542. "type": "drupal-module",
  7543. "extra": {
  7544. "drupal": {
  7545. "version": "4.3.8",
  7546. "datestamp": "1751485112",
  7547. "security-coverage": {
  7548. "status": "covered",
  7549. "message": "Covered by Drupal's security advisory policy"
  7550. }
  7551. },
  7552. "drush": {
  7553. "services": {
  7554. "drush.services.yml": "^9 || ^10"
  7555. }
  7556. }
  7557. },
  7558. "notification-url": "https://packages.drupal.org/8/downloads",
  7559. "license": [
  7560. "GPL-2.0-or-later"
  7561. ],
  7562. "authors": [
  7563. {
  7564. "name": "gábor hojtsy",
  7565. "homepage": "https://www.drupal.org/user/4166"
  7566. }
  7567. ],
  7568. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7569. "homepage": "http://drupal.org/project/upgrade_status",
  7570. "support": {
  7571. "source": "https://git.drupalcode.org/project/upgrade_status"
  7572. }
  7573. },
  7574. {
  7575. "name": "drupal/video_embed_dailymotion",
  7576. "version": "2.0.0",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7580. "reference": "2.0.0"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7585. "reference": "2.0.0",
  7586. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7587. },
  7588. "require": {
  7589. "drupal/core": "^9 || ^10",
  7590. "drupal/video_embed_field": "*"
  7591. },
  7592. "type": "drupal-module",
  7593. "extra": {
  7594. "drupal": {
  7595. "version": "2.0.0",
  7596. "datestamp": "1699434830",
  7597. "security-coverage": {
  7598. "status": "covered",
  7599. "message": "Covered by Drupal's security advisory policy"
  7600. }
  7601. }
  7602. },
  7603. "notification-url": "https://packages.drupal.org/8/downloads",
  7604. "license": [
  7605. "GPL-2.0-or-later"
  7606. ],
  7607. "authors": [
  7608. {
  7609. "name": "flocondetoile",
  7610. "homepage": "https://www.drupal.org/user/2006064"
  7611. },
  7612. {
  7613. "name": "mohs3n71",
  7614. "homepage": "https://www.drupal.org/user/2295854"
  7615. },
  7616. {
  7617. "name": "Sam152",
  7618. "homepage": "https://www.drupal.org/user/1485048"
  7619. }
  7620. ],
  7621. "description": "A video_embed_field integration with Dailymotion.",
  7622. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7623. "support": {
  7624. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7625. }
  7626. },
  7627. {
  7628. "name": "drupal/video_embed_field",
  7629. "version": "2.5.0",
  7630. "source": {
  7631. "type": "git",
  7632. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7633. "reference": "8.x-2.5"
  7634. },
  7635. "dist": {
  7636. "type": "zip",
  7637. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7638. "reference": "8.x-2.5",
  7639. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7640. },
  7641. "require": {
  7642. "drupal/core": "^9.2 || ^10"
  7643. },
  7644. "require-dev": {
  7645. "drupal/ckeditor": "^1",
  7646. "drupal/colorbox": "^2",
  7647. "drupal/video_embed_media": "*"
  7648. },
  7649. "type": "drupal-module",
  7650. "extra": {
  7651. "drupal": {
  7652. "version": "8.x-2.5",
  7653. "datestamp": "1671413311",
  7654. "security-coverage": {
  7655. "status": "covered",
  7656. "message": "Covered by Drupal's security advisory policy"
  7657. }
  7658. }
  7659. },
  7660. "notification-url": "https://packages.drupal.org/8/downloads",
  7661. "license": [
  7662. "GPL-2.0-or-later"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "abhinesh",
  7667. "homepage": "https://www.drupal.org/user/3645979"
  7668. },
  7669. {
  7670. "name": "jec006",
  7671. "homepage": "https://www.drupal.org/user/855980"
  7672. },
  7673. {
  7674. "name": "mably",
  7675. "homepage": "https://www.drupal.org/user/3375160"
  7676. },
  7677. {
  7678. "name": "plopesc",
  7679. "homepage": "https://www.drupal.org/user/282415"
  7680. },
  7681. {
  7682. "name": "sam152",
  7683. "homepage": "https://www.drupal.org/user/1485048"
  7684. }
  7685. ],
  7686. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7687. "homepage": "https://www.drupal.org/project/video_embed_field",
  7688. "support": {
  7689. "source": "https://git.drupalcode.org/project/video_embed_field"
  7690. }
  7691. },
  7692. {
  7693. "name": "drupal/views_bulk_edit",
  7694. "version": "3.0.0",
  7695. "source": {
  7696. "type": "git",
  7697. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7698. "reference": "3.0.0"
  7699. },
  7700. "dist": {
  7701. "type": "zip",
  7702. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  7703. "reference": "3.0.0",
  7704. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  7705. },
  7706. "require": {
  7707. "drupal/core": "^9.4 || ^10 || ^11",
  7708. "php": ">=8.1"
  7709. },
  7710. "require-dev": {
  7711. "drupal/views_bulk_operations": "~4.2.4"
  7712. },
  7713. "suggest": {
  7714. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7715. },
  7716. "type": "drupal-module",
  7717. "extra": {
  7718. "drupal": {
  7719. "version": "3.0.0",
  7720. "datestamp": "1725358398",
  7721. "security-coverage": {
  7722. "status": "covered",
  7723. "message": "Covered by Drupal's security advisory policy"
  7724. }
  7725. }
  7726. },
  7727. "notification-url": "https://packages.drupal.org/8/downloads",
  7728. "license": [
  7729. "GPL-2.0+"
  7730. ],
  7731. "authors": [
  7732. {
  7733. "name": "Marcin Grabias",
  7734. "homepage": "https://www.drupal.org/u/graber"
  7735. },
  7736. {
  7737. "name": "benjy",
  7738. "homepage": "https://www.drupal.org/user/1852732"
  7739. },
  7740. {
  7741. "name": "graber",
  7742. "homepage": "https://www.drupal.org/user/1599440"
  7743. },
  7744. {
  7745. "name": "grevil",
  7746. "homepage": "https://www.drupal.org/user/3668491"
  7747. },
  7748. {
  7749. "name": "joseph.olstad",
  7750. "homepage": "https://www.drupal.org/user/1321830"
  7751. }
  7752. ],
  7753. "description": "Allows bulk edition of entity field values.",
  7754. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7755. "support": {
  7756. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7757. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7758. }
  7759. },
  7760. {
  7761. "name": "drupal/views_bulk_operations",
  7762. "version": "4.3.4",
  7763. "source": {
  7764. "type": "git",
  7765. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7766. "reference": "4.3.4"
  7767. },
  7768. "dist": {
  7769. "type": "zip",
  7770. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  7771. "reference": "4.3.4",
  7772. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  7773. },
  7774. "require": {
  7775. "drupal/core": "^10.3 || ^11"
  7776. },
  7777. "conflict": {
  7778. "drush/drush": "<12.5.1"
  7779. },
  7780. "require-dev": {
  7781. "drush/drush": "^12 || ^13"
  7782. },
  7783. "suggest": {
  7784. "drush/drush": "^12 || ^13"
  7785. },
  7786. "type": "drupal-module",
  7787. "extra": {
  7788. "drupal": {
  7789. "version": "4.3.4",
  7790. "datestamp": "1741604495",
  7791. "security-coverage": {
  7792. "status": "covered",
  7793. "message": "Covered by Drupal's security advisory policy"
  7794. }
  7795. }
  7796. },
  7797. "notification-url": "https://packages.drupal.org/8/downloads",
  7798. "license": [
  7799. "GPL-2.0-or-later"
  7800. ],
  7801. "authors": [
  7802. {
  7803. "name": "Marcin Grabias",
  7804. "homepage": "https://www.drupal.org/u/graber"
  7805. },
  7806. {
  7807. "name": "graber",
  7808. "homepage": "https://www.drupal.org/user/1599440"
  7809. },
  7810. {
  7811. "name": "joelpittet",
  7812. "homepage": "https://www.drupal.org/user/160302"
  7813. }
  7814. ],
  7815. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7816. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7817. "support": {
  7818. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7819. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7820. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7821. }
  7822. },
  7823. {
  7824. "name": "drupal/views_conditional",
  7825. "version": "1.10.0",
  7826. "source": {
  7827. "type": "git",
  7828. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7829. "reference": "8.x-1.10"
  7830. },
  7831. "dist": {
  7832. "type": "zip",
  7833. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7834. "reference": "8.x-1.10",
  7835. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7836. },
  7837. "require": {
  7838. "drupal/core": "^9 || ^10 || ^11"
  7839. },
  7840. "type": "drupal-module",
  7841. "extra": {
  7842. "drupal": {
  7843. "version": "8.x-1.10",
  7844. "datestamp": "1727901408",
  7845. "security-coverage": {
  7846. "status": "covered",
  7847. "message": "Covered by Drupal's security advisory policy"
  7848. }
  7849. }
  7850. },
  7851. "notification-url": "https://packages.drupal.org/8/downloads",
  7852. "license": [
  7853. "GPL-2.0-or-later"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "anand.toshniwal93",
  7858. "homepage": "https://www.drupal.org/user/3345088"
  7859. },
  7860. {
  7861. "name": "joelpittet",
  7862. "homepage": "https://www.drupal.org/user/160302"
  7863. },
  7864. {
  7865. "name": "MChittenden",
  7866. "homepage": "https://www.drupal.org/user/2288348"
  7867. },
  7868. {
  7869. "name": "shelane",
  7870. "homepage": "https://www.drupal.org/user/2674989"
  7871. }
  7872. ],
  7873. "description": "Allows conditional views output.",
  7874. "homepage": "https://www.drupal.org/project/views_conditional",
  7875. "support": {
  7876. "source": "https://git.drupalcode.org/project/views_conditional"
  7877. }
  7878. },
  7879. {
  7880. "name": "drupal/views_ef_fieldset",
  7881. "version": "1.10.0",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7885. "reference": "8.x-1.10"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7890. "reference": "8.x-1.10",
  7891. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7892. },
  7893. "require": {
  7894. "drupal/core": "^10 || ^11"
  7895. },
  7896. "type": "drupal-module",
  7897. "extra": {
  7898. "drupal": {
  7899. "version": "8.x-1.10",
  7900. "datestamp": "1731071552",
  7901. "security-coverage": {
  7902. "status": "covered",
  7903. "message": "Covered by Drupal's security advisory policy"
  7904. }
  7905. }
  7906. },
  7907. "notification-url": "https://packages.drupal.org/8/downloads",
  7908. "license": [
  7909. "GPL-2.0-or-later"
  7910. ],
  7911. "authors": [
  7912. {
  7913. "name": "ciss",
  7914. "homepage": "https://www.drupal.org/user/1632364"
  7915. },
  7916. {
  7917. "name": "eli-t",
  7918. "homepage": "https://www.drupal.org/user/516878"
  7919. },
  7920. {
  7921. "name": "pol",
  7922. "homepage": "https://www.drupal.org/user/47194"
  7923. }
  7924. ],
  7925. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  7926. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  7927. "support": {
  7928. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7929. }
  7930. },
  7931. {
  7932. "name": "drupal/webform",
  7933. "version": "6.2.9",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://git.drupalcode.org/project/webform.git",
  7937. "reference": "6.2.9"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  7942. "reference": "6.2.9",
  7943. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  7944. },
  7945. "require": {
  7946. "drupal/core": "^10.2",
  7947. "php": ">=8.1"
  7948. },
  7949. "require-dev": {
  7950. "drupal/address": "1.x-dev",
  7951. "drupal/bootstrap": "3.x-dev",
  7952. "drupal/captcha": "^1 || ^2",
  7953. "drupal/chosen": "3.0.x-dev",
  7954. "drupal/ckeditor": "1.0.x-dev",
  7955. "drupal/clientside_validation": "^3 || ^4",
  7956. "drupal/clientside_validation_jquery": "*",
  7957. "drupal/devel": "5.x-dev",
  7958. "drupal/entity": "1.x-dev",
  7959. "drupal/entity_print": "2.x-dev",
  7960. "drupal/group": "1.x-dev",
  7961. "drupal/hal": "1 - 2",
  7962. "drupal/jquery_ui": "1.x-dev",
  7963. "drupal/jquery_ui_button": "2.x-dev",
  7964. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7965. "drupal/jquery_ui_datepicker": "2.x-dev",
  7966. "drupal/mailsystem": "4.x-dev",
  7967. "drupal/metatag": "1.x-dev",
  7968. "drupal/paragraphs": "1.x-dev",
  7969. "drupal/select2": "1.x-dev",
  7970. "drupal/smtp": "1.x-dev",
  7971. "drupal/styleguide": "^1 || ^2",
  7972. "drupal/telephone_validation": "2.x-dev",
  7973. "drupal/token": "1.x-dev",
  7974. "drupal/variationcache": "1.x-dev",
  7975. "drupal/webform_access": "*",
  7976. "drupal/webform_attachment": "*",
  7977. "drupal/webform_clientside_validation": "*",
  7978. "drupal/webform_devel": "*",
  7979. "drupal/webform_entity_print": "*",
  7980. "drupal/webform_node": "*",
  7981. "drupal/webform_options_limit": "*",
  7982. "drupal/webform_scheduled_email": "*",
  7983. "drupal/webform_share": "*",
  7984. "drupal/webform_ui": "*"
  7985. },
  7986. "suggest": {
  7987. "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.",
  7988. "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."
  7989. },
  7990. "type": "drupal-module",
  7991. "extra": {
  7992. "drupal": {
  7993. "version": "6.2.9",
  7994. "datestamp": "1733851063",
  7995. "security-coverage": {
  7996. "status": "covered",
  7997. "message": "Covered by Drupal's security advisory policy"
  7998. }
  7999. },
  8000. "drush": {
  8001. "services": {
  8002. "drush.services.yml": ">=9"
  8003. }
  8004. }
  8005. },
  8006. "notification-url": "https://packages.drupal.org/8/downloads",
  8007. "license": [
  8008. "GPL-2.0-or-later"
  8009. ],
  8010. "authors": [
  8011. {
  8012. "name": "Jacob Rockowitz (jrockowitz)",
  8013. "homepage": "https://www.drupal.org/u/jrockowitz",
  8014. "role": "Maintainer"
  8015. },
  8016. {
  8017. "name": "Contributors",
  8018. "homepage": "https://www.drupal.org/node/7404/committers",
  8019. "role": "Contributor"
  8020. },
  8021. {
  8022. "name": "liam morland",
  8023. "homepage": "https://www.drupal.org/user/493050"
  8024. },
  8025. {
  8026. "name": "mandclu",
  8027. "homepage": "https://www.drupal.org/user/52136"
  8028. },
  8029. {
  8030. "name": "quicksketch",
  8031. "homepage": "https://www.drupal.org/user/35821"
  8032. }
  8033. ],
  8034. "description": "Enables the creation of webforms and questionnaires.",
  8035. "homepage": "https://drupal.org/project/webform",
  8036. "support": {
  8037. "source": "https://git.drupalcode.org/project/webform",
  8038. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8039. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8040. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8041. }
  8042. },
  8043. {
  8044. "name": "drush/drush",
  8045. "version": "12.5.3",
  8046. "source": {
  8047. "type": "git",
  8048. "url": "https://github.com/drush-ops/drush.git",
  8049. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  8050. },
  8051. "dist": {
  8052. "type": "zip",
  8053. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8054. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8055. "shasum": ""
  8056. },
  8057. "require": {
  8058. "chi-teck/drupal-code-generator": "^3.0",
  8059. "composer-runtime-api": "^2.2",
  8060. "composer/semver": "^1.4 || ^3",
  8061. "consolidation/annotated-command": "^4.9.2",
  8062. "consolidation/config": "^2.1.2",
  8063. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8064. "consolidation/output-formatters": "^4.3.2",
  8065. "consolidation/robo": "^4.0.6",
  8066. "consolidation/site-alias": "^4",
  8067. "consolidation/site-process": "^5.2.0",
  8068. "ext-dom": "*",
  8069. "grasmash/yaml-cli": "^3.1",
  8070. "guzzlehttp/guzzle": "^7.0",
  8071. "league/container": "^4",
  8072. "php": ">=8.1",
  8073. "psy/psysh": "~0.11",
  8074. "symfony/event-dispatcher": "^6",
  8075. "symfony/filesystem": "^6.1",
  8076. "symfony/finder": "^6",
  8077. "symfony/var-dumper": "^6.0",
  8078. "symfony/yaml": "^6.0",
  8079. "webflo/drupal-finder": "^1.2"
  8080. },
  8081. "conflict": {
  8082. "drupal/core": "< 10.0",
  8083. "drupal/migrate_run": "*",
  8084. "drupal/migrate_tools": "<= 5"
  8085. },
  8086. "require-dev": {
  8087. "composer/installers": "^2",
  8088. "cweagans/composer-patches": "~1.0",
  8089. "drupal/core-recommended": "^10",
  8090. "drupal/semver_example": "2.3.0",
  8091. "phpunit/phpunit": "^9",
  8092. "rector/rector": "^0.12",
  8093. "squizlabs/php_codesniffer": "^3.7"
  8094. },
  8095. "bin": [
  8096. "drush"
  8097. ],
  8098. "type": "library",
  8099. "extra": {
  8100. "installer-paths": {
  8101. "sut/core": [
  8102. "type:drupal-core"
  8103. ],
  8104. "sut/libraries/{$name}": [
  8105. "type:drupal-library"
  8106. ],
  8107. "sut/themes/unish/{$name}": [
  8108. "drupal/empty_theme"
  8109. ],
  8110. "sut/drush/contrib/{$name}": [
  8111. "type:drupal-drush"
  8112. ],
  8113. "sut/modules/unish/{$name}": [
  8114. "drupal/devel"
  8115. ],
  8116. "sut/themes/contrib/{$name}": [
  8117. "type:drupal-theme"
  8118. ],
  8119. "sut/modules/contrib/{$name}": [
  8120. "type:drupal-module"
  8121. ],
  8122. "sut/profiles/contrib/{$name}": [
  8123. "type:drupal-profile"
  8124. ]
  8125. }
  8126. },
  8127. "autoload": {
  8128. "psr-4": {
  8129. "Drush\\": "src/"
  8130. }
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "GPL-2.0-or-later"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Moshe Weitzman",
  8139. "email": "weitzman@tejasa.com"
  8140. },
  8141. {
  8142. "name": "Owen Barton",
  8143. "email": "drupal@owenbarton.com"
  8144. },
  8145. {
  8146. "name": "Greg Anderson",
  8147. "email": "greg.1.anderson@greenknowe.org"
  8148. },
  8149. {
  8150. "name": "Jonathan Araña Cruz",
  8151. "email": "jonhattan@faita.net"
  8152. },
  8153. {
  8154. "name": "Jonathan Hedstrom",
  8155. "email": "jhedstrom@gmail.com"
  8156. },
  8157. {
  8158. "name": "Christopher Gervais",
  8159. "email": "chris@ergonlogic.com"
  8160. },
  8161. {
  8162. "name": "Dave Reid",
  8163. "email": "dave@davereid.net"
  8164. },
  8165. {
  8166. "name": "Damian Lee",
  8167. "email": "damiankloip@googlemail.com"
  8168. }
  8169. ],
  8170. "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.",
  8171. "homepage": "http://www.drush.org",
  8172. "support": {
  8173. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8174. "issues": "https://github.com/drush-ops/drush/issues",
  8175. "security": "https://github.com/drush-ops/drush/security/advisories",
  8176. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8177. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  8178. },
  8179. "funding": [
  8180. {
  8181. "url": "https://github.com/weitzman",
  8182. "type": "github"
  8183. }
  8184. ],
  8185. "time": "2024-08-02T11:57:29+00:00"
  8186. },
  8187. {
  8188. "name": "egulias/email-validator",
  8189. "version": "4.0.4",
  8190. "source": {
  8191. "type": "git",
  8192. "url": "https://github.com/egulias/EmailValidator.git",
  8193. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8194. },
  8195. "dist": {
  8196. "type": "zip",
  8197. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8198. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8199. "shasum": ""
  8200. },
  8201. "require": {
  8202. "doctrine/lexer": "^2.0 || ^3.0",
  8203. "php": ">=8.1",
  8204. "symfony/polyfill-intl-idn": "^1.26"
  8205. },
  8206. "require-dev": {
  8207. "phpunit/phpunit": "^10.2",
  8208. "vimeo/psalm": "^5.12"
  8209. },
  8210. "suggest": {
  8211. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8212. },
  8213. "type": "library",
  8214. "extra": {
  8215. "branch-alias": {
  8216. "dev-master": "4.0.x-dev"
  8217. }
  8218. },
  8219. "autoload": {
  8220. "psr-4": {
  8221. "Egulias\\EmailValidator\\": "src"
  8222. }
  8223. },
  8224. "notification-url": "https://packagist.org/downloads/",
  8225. "license": [
  8226. "MIT"
  8227. ],
  8228. "authors": [
  8229. {
  8230. "name": "Eduardo Gulias Davis"
  8231. }
  8232. ],
  8233. "description": "A library for validating emails against several RFCs",
  8234. "homepage": "https://github.com/egulias/EmailValidator",
  8235. "keywords": [
  8236. "email",
  8237. "emailvalidation",
  8238. "emailvalidator",
  8239. "validation",
  8240. "validator"
  8241. ],
  8242. "support": {
  8243. "issues": "https://github.com/egulias/EmailValidator/issues",
  8244. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8245. },
  8246. "funding": [
  8247. {
  8248. "url": "https://github.com/egulias",
  8249. "type": "github"
  8250. }
  8251. ],
  8252. "time": "2025-03-06T22:45:56+00:00"
  8253. },
  8254. {
  8255. "name": "geocoder-php/common-http",
  8256. "version": "4.7.0",
  8257. "source": {
  8258. "type": "git",
  8259. "url": "https://github.com/geocoder-php/php-common-http.git",
  8260. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8261. },
  8262. "dist": {
  8263. "type": "zip",
  8264. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8265. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8266. "shasum": ""
  8267. },
  8268. "require": {
  8269. "php": "^8.0",
  8270. "php-http/discovery": "^1.17",
  8271. "psr/http-client-implementation": "^1.0",
  8272. "psr/http-factory-implementation": "^1.0",
  8273. "willdurand/geocoder": "^4.0|^5.0"
  8274. },
  8275. "require-dev": {
  8276. "nyholm/psr7": "^1.0",
  8277. "php-http/message": "^1.0",
  8278. "php-http/mock-client": "^1.0",
  8279. "phpunit/phpunit": "^9.5",
  8280. "symfony/stopwatch": "~2.5 || ~5.0"
  8281. },
  8282. "type": "library",
  8283. "extra": {
  8284. "branch-alias": {
  8285. "dev-master": "4.0-dev"
  8286. }
  8287. },
  8288. "autoload": {
  8289. "psr-4": {
  8290. "Geocoder\\Http\\": ""
  8291. },
  8292. "exclude-from-classmap": [
  8293. "/Tests/"
  8294. ]
  8295. },
  8296. "notification-url": "https://packagist.org/downloads/",
  8297. "license": [
  8298. "MIT"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Tobias Nyholm",
  8303. "email": "tobias.nyholm@gmail.com"
  8304. }
  8305. ],
  8306. "description": "Common files for HTTP based Geocoders",
  8307. "homepage": "http://geocoder-php.org",
  8308. "keywords": [
  8309. "http geocoder"
  8310. ],
  8311. "support": {
  8312. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8313. },
  8314. "time": "2025-04-15T12:38:11+00:00"
  8315. },
  8316. {
  8317. "name": "geocoder-php/mapquest-provider",
  8318. "version": "4.4.0",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8322. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8327. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "geocoder-php/common-http": "^4.6",
  8332. "php": "^8.0",
  8333. "willdurand/geocoder": "^4.0|^5.0"
  8334. },
  8335. "provide": {
  8336. "geocoder-php/provider-implementation": "1.0"
  8337. },
  8338. "require-dev": {
  8339. "geocoder-php/provider-integration-tests": "^1.6.3",
  8340. "php-http/message": "^1.0",
  8341. "phpunit/phpunit": "^9.5"
  8342. },
  8343. "type": "library",
  8344. "extra": {
  8345. "branch-alias": {
  8346. "dev-master": "4.0-dev"
  8347. }
  8348. },
  8349. "autoload": {
  8350. "psr-4": {
  8351. "Geocoder\\Provider\\MapQuest\\": ""
  8352. },
  8353. "exclude-from-classmap": [
  8354. "/Tests/"
  8355. ]
  8356. },
  8357. "notification-url": "https://packagist.org/downloads/",
  8358. "license": [
  8359. "MIT"
  8360. ],
  8361. "authors": [
  8362. {
  8363. "name": "William Durand",
  8364. "email": "william.durand1@gmail.com"
  8365. }
  8366. ],
  8367. "description": "Geocoder MapQuest adapter",
  8368. "homepage": "http://geocoder-php.org/Geocoder/",
  8369. "support": {
  8370. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8371. },
  8372. "time": "2025-04-15T13:24:32+00:00"
  8373. },
  8374. {
  8375. "name": "grasmash/expander",
  8376. "version": "3.0.1",
  8377. "source": {
  8378. "type": "git",
  8379. "url": "https://github.com/grasmash/expander.git",
  8380. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8381. },
  8382. "dist": {
  8383. "type": "zip",
  8384. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8385. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8386. "shasum": ""
  8387. },
  8388. "require": {
  8389. "dflydev/dot-access-data": "^3.0.0",
  8390. "php": ">=8.0",
  8391. "psr/log": "^2 | ^3"
  8392. },
  8393. "require-dev": {
  8394. "greg-1-anderson/composer-test-scenarios": "^1",
  8395. "php-coveralls/php-coveralls": "^2.5",
  8396. "phpunit/phpunit": "^9",
  8397. "squizlabs/php_codesniffer": "^3.3"
  8398. },
  8399. "type": "library",
  8400. "extra": {
  8401. "branch-alias": {
  8402. "dev-master": "1.x-dev"
  8403. }
  8404. },
  8405. "autoload": {
  8406. "psr-4": {
  8407. "Grasmash\\Expander\\": "src/"
  8408. }
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "MIT"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Matthew Grasmick"
  8417. }
  8418. ],
  8419. "description": "Expands internal property references in PHP arrays file.",
  8420. "support": {
  8421. "issues": "https://github.com/grasmash/expander/issues",
  8422. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8423. },
  8424. "time": "2024-11-25T23:28:05+00:00"
  8425. },
  8426. {
  8427. "name": "grasmash/yaml-cli",
  8428. "version": "3.2.1",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/grasmash/yaml-cli.git",
  8432. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8437. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "dflydev/dot-access-data": "^3",
  8442. "php": ">=8.0",
  8443. "symfony/console": "^6 || ^7",
  8444. "symfony/filesystem": "^6 || ^7",
  8445. "symfony/yaml": "^6 || ^7"
  8446. },
  8447. "require-dev": {
  8448. "php-coveralls/php-coveralls": "^2",
  8449. "phpunit/phpunit": "^9",
  8450. "squizlabs/php_codesniffer": "^3.0"
  8451. },
  8452. "bin": [
  8453. "bin/yaml-cli"
  8454. ],
  8455. "type": "library",
  8456. "extra": {
  8457. "branch-alias": {
  8458. "dev-master": "3.x-dev"
  8459. }
  8460. },
  8461. "autoload": {
  8462. "psr-4": {
  8463. "Grasmash\\YamlCli\\": "src/"
  8464. }
  8465. },
  8466. "notification-url": "https://packagist.org/downloads/",
  8467. "license": [
  8468. "MIT"
  8469. ],
  8470. "authors": [
  8471. {
  8472. "name": "Matthew Grasmick"
  8473. }
  8474. ],
  8475. "description": "A command line tool for reading and manipulating yaml files.",
  8476. "support": {
  8477. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8478. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8479. },
  8480. "time": "2024-04-23T02:10:57+00:00"
  8481. },
  8482. {
  8483. "name": "guzzlehttp/guzzle",
  8484. "version": "7.10.0",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/guzzle/guzzle.git",
  8488. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8493. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "ext-json": "*",
  8498. "guzzlehttp/promises": "^2.3",
  8499. "guzzlehttp/psr7": "^2.8",
  8500. "php": "^7.2.5 || ^8.0",
  8501. "psr/http-client": "^1.0",
  8502. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8503. },
  8504. "provide": {
  8505. "psr/http-client-implementation": "1.0"
  8506. },
  8507. "require-dev": {
  8508. "bamarni/composer-bin-plugin": "^1.8.2",
  8509. "ext-curl": "*",
  8510. "guzzle/client-integration-tests": "3.0.2",
  8511. "php-http/message-factory": "^1.1",
  8512. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8513. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8514. },
  8515. "suggest": {
  8516. "ext-curl": "Required for CURL handler support",
  8517. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8518. "psr/log": "Required for using the Log middleware"
  8519. },
  8520. "type": "library",
  8521. "extra": {
  8522. "bamarni-bin": {
  8523. "bin-links": true,
  8524. "forward-command": false
  8525. }
  8526. },
  8527. "autoload": {
  8528. "files": [
  8529. "src/functions_include.php"
  8530. ],
  8531. "psr-4": {
  8532. "GuzzleHttp\\": "src/"
  8533. }
  8534. },
  8535. "notification-url": "https://packagist.org/downloads/",
  8536. "license": [
  8537. "MIT"
  8538. ],
  8539. "authors": [
  8540. {
  8541. "name": "Graham Campbell",
  8542. "email": "hello@gjcampbell.co.uk",
  8543. "homepage": "https://github.com/GrahamCampbell"
  8544. },
  8545. {
  8546. "name": "Michael Dowling",
  8547. "email": "mtdowling@gmail.com",
  8548. "homepage": "https://github.com/mtdowling"
  8549. },
  8550. {
  8551. "name": "Jeremy Lindblom",
  8552. "email": "jeremeamia@gmail.com",
  8553. "homepage": "https://github.com/jeremeamia"
  8554. },
  8555. {
  8556. "name": "George Mponos",
  8557. "email": "gmponos@gmail.com",
  8558. "homepage": "https://github.com/gmponos"
  8559. },
  8560. {
  8561. "name": "Tobias Nyholm",
  8562. "email": "tobias.nyholm@gmail.com",
  8563. "homepage": "https://github.com/Nyholm"
  8564. },
  8565. {
  8566. "name": "Márk Sági-Kazár",
  8567. "email": "mark.sagikazar@gmail.com",
  8568. "homepage": "https://github.com/sagikazarmark"
  8569. },
  8570. {
  8571. "name": "Tobias Schultze",
  8572. "email": "webmaster@tubo-world.de",
  8573. "homepage": "https://github.com/Tobion"
  8574. }
  8575. ],
  8576. "description": "Guzzle is a PHP HTTP client library",
  8577. "keywords": [
  8578. "client",
  8579. "curl",
  8580. "framework",
  8581. "http",
  8582. "http client",
  8583. "psr-18",
  8584. "psr-7",
  8585. "rest",
  8586. "web service"
  8587. ],
  8588. "support": {
  8589. "issues": "https://github.com/guzzle/guzzle/issues",
  8590. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  8591. },
  8592. "funding": [
  8593. {
  8594. "url": "https://github.com/GrahamCampbell",
  8595. "type": "github"
  8596. },
  8597. {
  8598. "url": "https://github.com/Nyholm",
  8599. "type": "github"
  8600. },
  8601. {
  8602. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8603. "type": "tidelift"
  8604. }
  8605. ],
  8606. "time": "2025-08-23T22:36:01+00:00"
  8607. },
  8608. {
  8609. "name": "guzzlehttp/promises",
  8610. "version": "2.3.0",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/guzzle/promises.git",
  8614. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  8619. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "php": "^7.2.5 || ^8.0"
  8624. },
  8625. "require-dev": {
  8626. "bamarni/composer-bin-plugin": "^1.8.2",
  8627. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8628. },
  8629. "type": "library",
  8630. "extra": {
  8631. "bamarni-bin": {
  8632. "bin-links": true,
  8633. "forward-command": false
  8634. }
  8635. },
  8636. "autoload": {
  8637. "psr-4": {
  8638. "GuzzleHttp\\Promise\\": "src/"
  8639. }
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "MIT"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Graham Campbell",
  8648. "email": "hello@gjcampbell.co.uk",
  8649. "homepage": "https://github.com/GrahamCampbell"
  8650. },
  8651. {
  8652. "name": "Michael Dowling",
  8653. "email": "mtdowling@gmail.com",
  8654. "homepage": "https://github.com/mtdowling"
  8655. },
  8656. {
  8657. "name": "Tobias Nyholm",
  8658. "email": "tobias.nyholm@gmail.com",
  8659. "homepage": "https://github.com/Nyholm"
  8660. },
  8661. {
  8662. "name": "Tobias Schultze",
  8663. "email": "webmaster@tubo-world.de",
  8664. "homepage": "https://github.com/Tobion"
  8665. }
  8666. ],
  8667. "description": "Guzzle promises library",
  8668. "keywords": [
  8669. "promise"
  8670. ],
  8671. "support": {
  8672. "issues": "https://github.com/guzzle/promises/issues",
  8673. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  8674. },
  8675. "funding": [
  8676. {
  8677. "url": "https://github.com/GrahamCampbell",
  8678. "type": "github"
  8679. },
  8680. {
  8681. "url": "https://github.com/Nyholm",
  8682. "type": "github"
  8683. },
  8684. {
  8685. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8686. "type": "tidelift"
  8687. }
  8688. ],
  8689. "time": "2025-08-22T14:34:08+00:00"
  8690. },
  8691. {
  8692. "name": "guzzlehttp/psr7",
  8693. "version": "2.8.0",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/guzzle/psr7.git",
  8697. "reference": "21dc724a0583619cd1652f673303492272778051"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  8702. "reference": "21dc724a0583619cd1652f673303492272778051",
  8703. "shasum": ""
  8704. },
  8705. "require": {
  8706. "php": "^7.2.5 || ^8.0",
  8707. "psr/http-factory": "^1.0",
  8708. "psr/http-message": "^1.1 || ^2.0",
  8709. "ralouphie/getallheaders": "^3.0"
  8710. },
  8711. "provide": {
  8712. "psr/http-factory-implementation": "1.0",
  8713. "psr/http-message-implementation": "1.0"
  8714. },
  8715. "require-dev": {
  8716. "bamarni/composer-bin-plugin": "^1.8.2",
  8717. "http-interop/http-factory-tests": "0.9.0",
  8718. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8719. },
  8720. "suggest": {
  8721. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8722. },
  8723. "type": "library",
  8724. "extra": {
  8725. "bamarni-bin": {
  8726. "bin-links": true,
  8727. "forward-command": false
  8728. }
  8729. },
  8730. "autoload": {
  8731. "psr-4": {
  8732. "GuzzleHttp\\Psr7\\": "src/"
  8733. }
  8734. },
  8735. "notification-url": "https://packagist.org/downloads/",
  8736. "license": [
  8737. "MIT"
  8738. ],
  8739. "authors": [
  8740. {
  8741. "name": "Graham Campbell",
  8742. "email": "hello@gjcampbell.co.uk",
  8743. "homepage": "https://github.com/GrahamCampbell"
  8744. },
  8745. {
  8746. "name": "Michael Dowling",
  8747. "email": "mtdowling@gmail.com",
  8748. "homepage": "https://github.com/mtdowling"
  8749. },
  8750. {
  8751. "name": "George Mponos",
  8752. "email": "gmponos@gmail.com",
  8753. "homepage": "https://github.com/gmponos"
  8754. },
  8755. {
  8756. "name": "Tobias Nyholm",
  8757. "email": "tobias.nyholm@gmail.com",
  8758. "homepage": "https://github.com/Nyholm"
  8759. },
  8760. {
  8761. "name": "Márk Sági-Kazár",
  8762. "email": "mark.sagikazar@gmail.com",
  8763. "homepage": "https://github.com/sagikazarmark"
  8764. },
  8765. {
  8766. "name": "Tobias Schultze",
  8767. "email": "webmaster@tubo-world.de",
  8768. "homepage": "https://github.com/Tobion"
  8769. },
  8770. {
  8771. "name": "Márk Sági-Kazár",
  8772. "email": "mark.sagikazar@gmail.com",
  8773. "homepage": "https://sagikazarmark.hu"
  8774. }
  8775. ],
  8776. "description": "PSR-7 message implementation that also provides common utility methods",
  8777. "keywords": [
  8778. "http",
  8779. "message",
  8780. "psr-7",
  8781. "request",
  8782. "response",
  8783. "stream",
  8784. "uri",
  8785. "url"
  8786. ],
  8787. "support": {
  8788. "issues": "https://github.com/guzzle/psr7/issues",
  8789. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  8790. },
  8791. "funding": [
  8792. {
  8793. "url": "https://github.com/GrahamCampbell",
  8794. "type": "github"
  8795. },
  8796. {
  8797. "url": "https://github.com/Nyholm",
  8798. "type": "github"
  8799. },
  8800. {
  8801. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8802. "type": "tidelift"
  8803. }
  8804. ],
  8805. "time": "2025-08-23T21:21:41+00:00"
  8806. },
  8807. {
  8808. "name": "itamair/geophp",
  8809. "version": "1.7",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/itamair/geoPHP.git",
  8813. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8818. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8819. "shasum": ""
  8820. },
  8821. "require-dev": {
  8822. "phpunit/phpunit": "4.1.* || 9.5.*"
  8823. },
  8824. "type": "library",
  8825. "autoload": {
  8826. "classmap": [
  8827. "geoPHP.inc"
  8828. ]
  8829. },
  8830. "notification-url": "https://packagist.org/downloads/",
  8831. "license": [
  8832. "GPL-2.0+"
  8833. ],
  8834. "authors": [
  8835. {
  8836. "name": "Italo Mairo",
  8837. "homepage": "https://www.linkedin.com/in/italomairo/",
  8838. "role": "Maintanier of this Library Repo"
  8839. },
  8840. {
  8841. "name": "Patrick Hayes",
  8842. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8843. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8844. }
  8845. ],
  8846. "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.",
  8847. "homepage": "https://github.com/itamair/geoPHP",
  8848. "support": {
  8849. "source": "https://github.com/itamair/geoPHP/tree/1.7"
  8850. },
  8851. "time": "2025-05-31T05:12:53+00:00"
  8852. },
  8853. {
  8854. "name": "kint-php/kint",
  8855. "version": "3.3",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/kint-php/kint.git",
  8859. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8864. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8865. "shasum": ""
  8866. },
  8867. "require": {
  8868. "php": ">=5.3.6"
  8869. },
  8870. "require-dev": {
  8871. "friendsofphp/php-cs-fixer": "^2.0",
  8872. "phpunit/phpunit": "^4.0",
  8873. "seld/phar-utils": "^1.0",
  8874. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8875. "vimeo/psalm": "^3.0"
  8876. },
  8877. "suggest": {
  8878. "ext-ctype": "Simple data type tests",
  8879. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8880. "ext-mbstring": "Provides string encoding detection",
  8881. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8882. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8883. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8884. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8885. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8886. },
  8887. "type": "library",
  8888. "autoload": {
  8889. "files": [
  8890. "init.php"
  8891. ],
  8892. "psr-4": {
  8893. "Kint\\": "src/"
  8894. }
  8895. },
  8896. "notification-url": "https://packagist.org/downloads/",
  8897. "license": [
  8898. "MIT"
  8899. ],
  8900. "authors": [
  8901. {
  8902. "name": "Jonathan Vollebregt",
  8903. "homepage": "https://github.com/jnvsor"
  8904. },
  8905. {
  8906. "name": "Rokas Šleinius",
  8907. "homepage": "https://github.com/raveren"
  8908. },
  8909. {
  8910. "name": "Contributors",
  8911. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8912. }
  8913. ],
  8914. "description": "Kint - debugging tool for PHP developers",
  8915. "homepage": "https://kint-php.github.io/kint/",
  8916. "keywords": [
  8917. "debug",
  8918. "kint",
  8919. "php"
  8920. ],
  8921. "support": {
  8922. "issues": "https://github.com/kint-php/kint/issues",
  8923. "source": "https://github.com/kint-php/kint/tree/master"
  8924. },
  8925. "time": "2019-10-17T18:05:24+00:00"
  8926. },
  8927. {
  8928. "name": "league/container",
  8929. "version": "4.2.5",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/thephpleague/container.git",
  8933. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8938. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "php": "^7.2 || ^8.0",
  8943. "psr/container": "^1.1 || ^2.0"
  8944. },
  8945. "provide": {
  8946. "psr/container-implementation": "^1.0"
  8947. },
  8948. "replace": {
  8949. "orno/di": "~2.0"
  8950. },
  8951. "require-dev": {
  8952. "nette/php-generator": "^3.4",
  8953. "nikic/php-parser": "^4.10",
  8954. "phpstan/phpstan": "^0.12.47",
  8955. "phpunit/phpunit": "^8.5.17",
  8956. "roave/security-advisories": "dev-latest",
  8957. "scrutinizer/ocular": "^1.8",
  8958. "squizlabs/php_codesniffer": "^3.6"
  8959. },
  8960. "type": "library",
  8961. "extra": {
  8962. "branch-alias": {
  8963. "dev-1.x": "1.x-dev",
  8964. "dev-2.x": "2.x-dev",
  8965. "dev-3.x": "3.x-dev",
  8966. "dev-4.x": "4.x-dev",
  8967. "dev-master": "4.x-dev"
  8968. }
  8969. },
  8970. "autoload": {
  8971. "psr-4": {
  8972. "League\\Container\\": "src"
  8973. }
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "MIT"
  8978. ],
  8979. "authors": [
  8980. {
  8981. "name": "Phil Bennett",
  8982. "email": "mail@philbennett.co.uk",
  8983. "role": "Developer"
  8984. }
  8985. ],
  8986. "description": "A fast and intuitive dependency injection container.",
  8987. "homepage": "https://github.com/thephpleague/container",
  8988. "keywords": [
  8989. "container",
  8990. "dependency",
  8991. "di",
  8992. "injection",
  8993. "league",
  8994. "provider",
  8995. "service"
  8996. ],
  8997. "support": {
  8998. "issues": "https://github.com/thephpleague/container/issues",
  8999. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9000. },
  9001. "funding": [
  9002. {
  9003. "url": "https://github.com/philipobenito",
  9004. "type": "github"
  9005. }
  9006. ],
  9007. "time": "2025-05-20T12:55:37+00:00"
  9008. },
  9009. {
  9010. "name": "masterminds/html5",
  9011. "version": "2.10.0",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/Masterminds/html5-php.git",
  9015. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  9020. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "ext-dom": "*",
  9025. "php": ">=5.3.0"
  9026. },
  9027. "require-dev": {
  9028. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9029. },
  9030. "type": "library",
  9031. "extra": {
  9032. "branch-alias": {
  9033. "dev-master": "2.7-dev"
  9034. }
  9035. },
  9036. "autoload": {
  9037. "psr-4": {
  9038. "Masterminds\\": "src"
  9039. }
  9040. },
  9041. "notification-url": "https://packagist.org/downloads/",
  9042. "license": [
  9043. "MIT"
  9044. ],
  9045. "authors": [
  9046. {
  9047. "name": "Matt Butcher",
  9048. "email": "technosophos@gmail.com"
  9049. },
  9050. {
  9051. "name": "Matt Farina",
  9052. "email": "matt@mattfarina.com"
  9053. },
  9054. {
  9055. "name": "Asmir Mustafic",
  9056. "email": "goetas@gmail.com"
  9057. }
  9058. ],
  9059. "description": "An HTML5 parser and serializer.",
  9060. "homepage": "http://masterminds.github.io/html5-php",
  9061. "keywords": [
  9062. "HTML5",
  9063. "dom",
  9064. "html",
  9065. "parser",
  9066. "querypath",
  9067. "serializer",
  9068. "xml"
  9069. ],
  9070. "support": {
  9071. "issues": "https://github.com/Masterminds/html5-php/issues",
  9072. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  9073. },
  9074. "time": "2025-07-25T09:04:22+00:00"
  9075. },
  9076. {
  9077. "name": "mck89/peast",
  9078. "version": "v1.17.4",
  9079. "source": {
  9080. "type": "git",
  9081. "url": "https://github.com/mck89/peast.git",
  9082. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d"
  9083. },
  9084. "dist": {
  9085. "type": "zip",
  9086. "url": "https://api.github.com/repos/mck89/peast/zipball/c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9087. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9088. "shasum": ""
  9089. },
  9090. "require": {
  9091. "ext-mbstring": "*",
  9092. "php": ">=5.4.0"
  9093. },
  9094. "require-dev": {
  9095. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9096. },
  9097. "type": "library",
  9098. "extra": {
  9099. "branch-alias": {
  9100. "dev-master": "1.17.4-dev"
  9101. }
  9102. },
  9103. "autoload": {
  9104. "psr-4": {
  9105. "Peast\\": "lib/Peast/"
  9106. }
  9107. },
  9108. "notification-url": "https://packagist.org/downloads/",
  9109. "license": [
  9110. "BSD-3-Clause"
  9111. ],
  9112. "authors": [
  9113. {
  9114. "name": "Marco Marchiò",
  9115. "email": "marco.mm89@gmail.com"
  9116. }
  9117. ],
  9118. "description": "Peast is PHP library that generates AST for JavaScript code",
  9119. "support": {
  9120. "issues": "https://github.com/mck89/peast/issues",
  9121. "source": "https://github.com/mck89/peast/tree/v1.17.4"
  9122. },
  9123. "time": "2025-10-10T12:53:17+00:00"
  9124. },
  9125. {
  9126. "name": "mglaman/phpstan-drupal",
  9127. "version": "2.0.7",
  9128. "source": {
  9129. "type": "git",
  9130. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9131. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e"
  9132. },
  9133. "dist": {
  9134. "type": "zip",
  9135. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e",
  9136. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e",
  9137. "shasum": ""
  9138. },
  9139. "require": {
  9140. "php": "^8.1",
  9141. "phpstan/phpstan": "^2.1",
  9142. "phpstan/phpstan-deprecation-rules": "^2.0",
  9143. "symfony/finder": "^6.2 || ^7.0",
  9144. "symfony/yaml": "^6.2 || ^7.0",
  9145. "webflo/drupal-finder": "^1.3.1"
  9146. },
  9147. "require-dev": {
  9148. "behat/mink": "^1.10",
  9149. "composer/installers": "^1.9",
  9150. "drupal/core-recommended": "^10",
  9151. "drush/drush": "^11 || ^12 || ^13",
  9152. "phpstan/extension-installer": "^1.4.3",
  9153. "phpstan/phpstan-strict-rules": "^2.0",
  9154. "phpunit/phpunit": "^9 || ^10 || ^11",
  9155. "slevomat/coding-standard": "^8.6",
  9156. "squizlabs/php_codesniffer": "^3.7",
  9157. "symfony/phpunit-bridge": "^6.2 || ^7.0"
  9158. },
  9159. "suggest": {
  9160. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9161. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9162. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9163. },
  9164. "type": "phpstan-extension",
  9165. "extra": {
  9166. "phpstan": {
  9167. "includes": [
  9168. "extension.neon",
  9169. "rules.neon"
  9170. ]
  9171. },
  9172. "installer-paths": {
  9173. "tests/fixtures/drupal/core": [
  9174. "type:drupal-core"
  9175. ],
  9176. "tests/fixtures/drupal/libraries/{$name}": [
  9177. "type:drupal-library"
  9178. ],
  9179. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9180. "type:drupal-theme"
  9181. ],
  9182. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9183. "type:drupal-module"
  9184. ],
  9185. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9186. "type:drupal-profile"
  9187. ]
  9188. }
  9189. },
  9190. "autoload": {
  9191. "psr-4": {
  9192. "mglaman\\PHPStanDrupal\\": "src/"
  9193. }
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "MIT"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Matt Glaman",
  9202. "email": "nmd.matt@gmail.com"
  9203. }
  9204. ],
  9205. "description": "Drupal extension and rules for PHPStan",
  9206. "support": {
  9207. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9208. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.7"
  9209. },
  9210. "funding": [
  9211. {
  9212. "url": "https://github.com/mglaman",
  9213. "type": "github"
  9214. },
  9215. {
  9216. "url": "https://opencollective.com/phpstan-drupal",
  9217. "type": "open_collective"
  9218. },
  9219. {
  9220. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9221. "type": "tidelift"
  9222. }
  9223. ],
  9224. "time": "2025-05-22T18:06:14+00:00"
  9225. },
  9226. {
  9227. "name": "nikic/php-parser",
  9228. "version": "v5.7.0",
  9229. "source": {
  9230. "type": "git",
  9231. "url": "https://github.com/nikic/PHP-Parser.git",
  9232. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  9233. },
  9234. "dist": {
  9235. "type": "zip",
  9236. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9237. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9238. "shasum": ""
  9239. },
  9240. "require": {
  9241. "ext-ctype": "*",
  9242. "ext-json": "*",
  9243. "ext-tokenizer": "*",
  9244. "php": ">=7.4"
  9245. },
  9246. "require-dev": {
  9247. "ircmaxell/php-yacc": "^0.0.7",
  9248. "phpunit/phpunit": "^9.0"
  9249. },
  9250. "bin": [
  9251. "bin/php-parse"
  9252. ],
  9253. "type": "library",
  9254. "extra": {
  9255. "branch-alias": {
  9256. "dev-master": "5.x-dev"
  9257. }
  9258. },
  9259. "autoload": {
  9260. "psr-4": {
  9261. "PhpParser\\": "lib/PhpParser"
  9262. }
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "BSD-3-Clause"
  9267. ],
  9268. "authors": [
  9269. {
  9270. "name": "Nikita Popov"
  9271. }
  9272. ],
  9273. "description": "A PHP parser written in PHP",
  9274. "keywords": [
  9275. "parser",
  9276. "php"
  9277. ],
  9278. "support": {
  9279. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9280. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  9281. },
  9282. "time": "2025-12-06T11:56:16+00:00"
  9283. },
  9284. {
  9285. "name": "pear/archive_tar",
  9286. "version": "1.6.0",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/pear/Archive_Tar.git",
  9290. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9295. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9296. "shasum": ""
  9297. },
  9298. "require": {
  9299. "pear/pear-core-minimal": "^1.10.0alpha2",
  9300. "php": ">=5.4.0"
  9301. },
  9302. "require-dev": {
  9303. "phpunit/phpunit": "*"
  9304. },
  9305. "suggest": {
  9306. "ext-bz2": "Bz2 compression support.",
  9307. "ext-xz": "Lzma2 compression support.",
  9308. "ext-zlib": "Gzip compression support."
  9309. },
  9310. "type": "library",
  9311. "extra": {
  9312. "branch-alias": {
  9313. "dev-master": "1.4.x-dev"
  9314. }
  9315. },
  9316. "autoload": {
  9317. "psr-0": {
  9318. "Archive_Tar": ""
  9319. }
  9320. },
  9321. "notification-url": "https://packagist.org/downloads/",
  9322. "include-path": [
  9323. "./"
  9324. ],
  9325. "license": [
  9326. "BSD-2-Clause"
  9327. ],
  9328. "authors": [
  9329. {
  9330. "name": "Vincent Blavet",
  9331. "email": "vincent@phpconcept.net"
  9332. },
  9333. {
  9334. "name": "Greg Beaver",
  9335. "email": "greg@chiaraquartet.net"
  9336. },
  9337. {
  9338. "name": "Michiel Rook",
  9339. "email": "mrook@php.net"
  9340. }
  9341. ],
  9342. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9343. "homepage": "https://github.com/pear/Archive_Tar",
  9344. "keywords": [
  9345. "archive",
  9346. "tar"
  9347. ],
  9348. "support": {
  9349. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9350. "source": "https://github.com/pear/Archive_Tar"
  9351. },
  9352. "time": "2025-07-19T14:49:16+00:00"
  9353. },
  9354. {
  9355. "name": "pear/console_getopt",
  9356. "version": "v1.4.3",
  9357. "source": {
  9358. "type": "git",
  9359. "url": "https://github.com/pear/Console_Getopt.git",
  9360. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9361. },
  9362. "dist": {
  9363. "type": "zip",
  9364. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9365. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9366. "shasum": ""
  9367. },
  9368. "type": "library",
  9369. "autoload": {
  9370. "psr-0": {
  9371. "Console": "./"
  9372. }
  9373. },
  9374. "notification-url": "https://packagist.org/downloads/",
  9375. "include-path": [
  9376. "./"
  9377. ],
  9378. "license": [
  9379. "BSD-2-Clause"
  9380. ],
  9381. "authors": [
  9382. {
  9383. "name": "Andrei Zmievski",
  9384. "email": "andrei@php.net",
  9385. "role": "Lead"
  9386. },
  9387. {
  9388. "name": "Stig Bakken",
  9389. "email": "stig@php.net",
  9390. "role": "Developer"
  9391. },
  9392. {
  9393. "name": "Greg Beaver",
  9394. "email": "cellog@php.net",
  9395. "role": "Helper"
  9396. }
  9397. ],
  9398. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9399. "support": {
  9400. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9401. "source": "https://github.com/pear/Console_Getopt"
  9402. },
  9403. "abandoned": true,
  9404. "time": "2019-11-20T18:27:48+00:00"
  9405. },
  9406. {
  9407. "name": "pear/pear-core-minimal",
  9408. "version": "v1.10.18",
  9409. "source": {
  9410. "type": "git",
  9411. "url": "https://github.com/pear/pear-core-minimal.git",
  9412. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  9413. },
  9414. "dist": {
  9415. "type": "zip",
  9416. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9417. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9418. "shasum": ""
  9419. },
  9420. "require": {
  9421. "pear/console_getopt": "~1.4",
  9422. "pear/pear_exception": "~1.0",
  9423. "php": ">=5.4"
  9424. },
  9425. "replace": {
  9426. "rsky/pear-core-min": "self.version"
  9427. },
  9428. "type": "library",
  9429. "autoload": {
  9430. "classmap": [
  9431. "src/"
  9432. ]
  9433. },
  9434. "notification-url": "https://packagist.org/downloads/",
  9435. "include-path": [
  9436. "src/"
  9437. ],
  9438. "license": [
  9439. "BSD-3-Clause"
  9440. ],
  9441. "authors": [
  9442. {
  9443. "name": "Christian Weiske",
  9444. "email": "cweiske@php.net",
  9445. "role": "Lead"
  9446. }
  9447. ],
  9448. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9449. "support": {
  9450. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9451. "source": "https://github.com/pear/pear-core-minimal"
  9452. },
  9453. "time": "2025-12-14T20:37:07+00:00"
  9454. },
  9455. {
  9456. "name": "pear/pear_exception",
  9457. "version": "v1.0.2",
  9458. "source": {
  9459. "type": "git",
  9460. "url": "https://github.com/pear/PEAR_Exception.git",
  9461. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9462. },
  9463. "dist": {
  9464. "type": "zip",
  9465. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9466. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9467. "shasum": ""
  9468. },
  9469. "require": {
  9470. "php": ">=5.2.0"
  9471. },
  9472. "require-dev": {
  9473. "phpunit/phpunit": "<9"
  9474. },
  9475. "type": "class",
  9476. "extra": {
  9477. "branch-alias": {
  9478. "dev-master": "1.0.x-dev"
  9479. }
  9480. },
  9481. "autoload": {
  9482. "classmap": [
  9483. "PEAR/"
  9484. ]
  9485. },
  9486. "notification-url": "https://packagist.org/downloads/",
  9487. "include-path": [
  9488. "."
  9489. ],
  9490. "license": [
  9491. "BSD-2-Clause"
  9492. ],
  9493. "authors": [
  9494. {
  9495. "name": "Helgi Thormar",
  9496. "email": "dufuz@php.net"
  9497. },
  9498. {
  9499. "name": "Greg Beaver",
  9500. "email": "cellog@php.net"
  9501. }
  9502. ],
  9503. "description": "The PEAR Exception base class.",
  9504. "homepage": "https://github.com/pear/PEAR_Exception",
  9505. "keywords": [
  9506. "exception"
  9507. ],
  9508. "support": {
  9509. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9510. "source": "https://github.com/pear/PEAR_Exception"
  9511. },
  9512. "time": "2021-03-21T15:43:46+00:00"
  9513. },
  9514. {
  9515. "name": "phootwork/collection",
  9516. "version": "v3.2.3",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/phootwork/collection.git",
  9520. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9525. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9526. "shasum": ""
  9527. },
  9528. "require": {
  9529. "phootwork/lang": "^3.0",
  9530. "php": ">=8.0"
  9531. },
  9532. "type": "library",
  9533. "autoload": {
  9534. "psr-4": {
  9535. "phootwork\\collection\\": ""
  9536. }
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "MIT"
  9541. ],
  9542. "authors": [
  9543. {
  9544. "name": "Thomas Gossmann",
  9545. "homepage": "http://gos.si"
  9546. }
  9547. ],
  9548. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9549. "homepage": "https://phootwork.github.io/collection/",
  9550. "keywords": [
  9551. "Array object",
  9552. "Text object",
  9553. "collection",
  9554. "collections",
  9555. "json",
  9556. "list",
  9557. "map",
  9558. "queue",
  9559. "set",
  9560. "stack",
  9561. "xml"
  9562. ],
  9563. "support": {
  9564. "issues": "https://github.com/phootwork/phootwork/issues",
  9565. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9566. },
  9567. "time": "2022-08-27T12:51:24+00:00"
  9568. },
  9569. {
  9570. "name": "phootwork/lang",
  9571. "version": "v3.2.3",
  9572. "source": {
  9573. "type": "git",
  9574. "url": "https://github.com/phootwork/lang.git",
  9575. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9576. },
  9577. "dist": {
  9578. "type": "zip",
  9579. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9580. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9581. "shasum": ""
  9582. },
  9583. "require": {
  9584. "php": ">=8.0",
  9585. "symfony/polyfill-mbstring": "^1.12",
  9586. "symfony/polyfill-php81": "^1.22"
  9587. },
  9588. "type": "library",
  9589. "autoload": {
  9590. "psr-4": {
  9591. "phootwork\\lang\\": ""
  9592. }
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "MIT"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Thomas Gossmann",
  9601. "homepage": "http://gos.si"
  9602. }
  9603. ],
  9604. "description": "Missing PHP language constructs",
  9605. "homepage": "https://phootwork.github.io/lang/",
  9606. "keywords": [
  9607. "array",
  9608. "comparator",
  9609. "comparison",
  9610. "string"
  9611. ],
  9612. "support": {
  9613. "issues": "https://github.com/phootwork/phootwork/issues",
  9614. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9615. },
  9616. "time": "2024-10-03T13:43:19+00:00"
  9617. },
  9618. {
  9619. "name": "php-http/discovery",
  9620. "version": "1.20.0",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/php-http/discovery.git",
  9624. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9629. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9630. "shasum": ""
  9631. },
  9632. "require": {
  9633. "composer-plugin-api": "^1.0|^2.0",
  9634. "php": "^7.1 || ^8.0"
  9635. },
  9636. "conflict": {
  9637. "nyholm/psr7": "<1.0",
  9638. "zendframework/zend-diactoros": "*"
  9639. },
  9640. "provide": {
  9641. "php-http/async-client-implementation": "*",
  9642. "php-http/client-implementation": "*",
  9643. "psr/http-client-implementation": "*",
  9644. "psr/http-factory-implementation": "*",
  9645. "psr/http-message-implementation": "*"
  9646. },
  9647. "require-dev": {
  9648. "composer/composer": "^1.0.2|^2.0",
  9649. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9650. "php-http/httplug": "^1.0 || ^2.0",
  9651. "php-http/message-factory": "^1.0",
  9652. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9653. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9654. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9655. },
  9656. "type": "composer-plugin",
  9657. "extra": {
  9658. "class": "Http\\Discovery\\Composer\\Plugin",
  9659. "plugin-optional": true
  9660. },
  9661. "autoload": {
  9662. "psr-4": {
  9663. "Http\\Discovery\\": "src/"
  9664. },
  9665. "exclude-from-classmap": [
  9666. "src/Composer/Plugin.php"
  9667. ]
  9668. },
  9669. "notification-url": "https://packagist.org/downloads/",
  9670. "license": [
  9671. "MIT"
  9672. ],
  9673. "authors": [
  9674. {
  9675. "name": "Márk Sági-Kazár",
  9676. "email": "mark.sagikazar@gmail.com"
  9677. }
  9678. ],
  9679. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9680. "homepage": "http://php-http.org",
  9681. "keywords": [
  9682. "adapter",
  9683. "client",
  9684. "discovery",
  9685. "factory",
  9686. "http",
  9687. "message",
  9688. "psr17",
  9689. "psr7"
  9690. ],
  9691. "support": {
  9692. "issues": "https://github.com/php-http/discovery/issues",
  9693. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9694. },
  9695. "time": "2024-10-02T11:20:13+00:00"
  9696. },
  9697. {
  9698. "name": "php-http/guzzle7-adapter",
  9699. "version": "1.1.0",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9703. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9708. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9709. "shasum": ""
  9710. },
  9711. "require": {
  9712. "guzzlehttp/guzzle": "^7.0",
  9713. "php": "^7.3 | ^8.0",
  9714. "php-http/httplug": "^2.0",
  9715. "psr/http-client": "^1.0"
  9716. },
  9717. "provide": {
  9718. "php-http/async-client-implementation": "1.0",
  9719. "php-http/client-implementation": "1.0",
  9720. "psr/http-client-implementation": "1.0"
  9721. },
  9722. "require-dev": {
  9723. "php-http/client-integration-tests": "^3.0",
  9724. "php-http/message-factory": "^1.1",
  9725. "phpspec/prophecy-phpunit": "^2.0",
  9726. "phpunit/phpunit": "^8.0|^9.3"
  9727. },
  9728. "type": "library",
  9729. "autoload": {
  9730. "psr-4": {
  9731. "Http\\Adapter\\Guzzle7\\": "src/"
  9732. }
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "MIT"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Tobias Nyholm",
  9741. "email": "tobias.nyholm@gmail.com"
  9742. }
  9743. ],
  9744. "description": "Guzzle 7 HTTP Adapter",
  9745. "homepage": "http://httplug.io",
  9746. "keywords": [
  9747. "Guzzle",
  9748. "http"
  9749. ],
  9750. "support": {
  9751. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9752. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9753. },
  9754. "time": "2024-11-26T11:14:36+00:00"
  9755. },
  9756. {
  9757. "name": "php-http/httplug",
  9758. "version": "2.4.1",
  9759. "source": {
  9760. "type": "git",
  9761. "url": "https://github.com/php-http/httplug.git",
  9762. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9763. },
  9764. "dist": {
  9765. "type": "zip",
  9766. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9767. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9768. "shasum": ""
  9769. },
  9770. "require": {
  9771. "php": "^7.1 || ^8.0",
  9772. "php-http/promise": "^1.1",
  9773. "psr/http-client": "^1.0",
  9774. "psr/http-message": "^1.0 || ^2.0"
  9775. },
  9776. "require-dev": {
  9777. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9778. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9779. },
  9780. "type": "library",
  9781. "autoload": {
  9782. "psr-4": {
  9783. "Http\\Client\\": "src/"
  9784. }
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "MIT"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Eric GELOEN",
  9793. "email": "geloen.eric@gmail.com"
  9794. },
  9795. {
  9796. "name": "Márk Sági-Kazár",
  9797. "email": "mark.sagikazar@gmail.com",
  9798. "homepage": "https://sagikazarmark.hu"
  9799. }
  9800. ],
  9801. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9802. "homepage": "http://httplug.io",
  9803. "keywords": [
  9804. "client",
  9805. "http"
  9806. ],
  9807. "support": {
  9808. "issues": "https://github.com/php-http/httplug/issues",
  9809. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9810. },
  9811. "time": "2024-09-23T11:39:58+00:00"
  9812. },
  9813. {
  9814. "name": "php-http/message",
  9815. "version": "1.16.2",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/php-http/message.git",
  9819. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9824. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "clue/stream-filter": "^1.5",
  9829. "php": "^7.2 || ^8.0",
  9830. "psr/http-message": "^1.1 || ^2.0"
  9831. },
  9832. "provide": {
  9833. "php-http/message-factory-implementation": "1.0"
  9834. },
  9835. "require-dev": {
  9836. "ergebnis/composer-normalize": "^2.6",
  9837. "ext-zlib": "*",
  9838. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9839. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9840. "php-http/message-factory": "^1.0.2",
  9841. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9842. "slim/slim": "^3.0"
  9843. },
  9844. "suggest": {
  9845. "ext-zlib": "Used with compressor/decompressor streams",
  9846. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9847. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9848. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9849. },
  9850. "type": "library",
  9851. "autoload": {
  9852. "files": [
  9853. "src/filters.php"
  9854. ],
  9855. "psr-4": {
  9856. "Http\\Message\\": "src/"
  9857. }
  9858. },
  9859. "notification-url": "https://packagist.org/downloads/",
  9860. "license": [
  9861. "MIT"
  9862. ],
  9863. "authors": [
  9864. {
  9865. "name": "Márk Sági-Kazár",
  9866. "email": "mark.sagikazar@gmail.com"
  9867. }
  9868. ],
  9869. "description": "HTTP Message related tools",
  9870. "homepage": "http://php-http.org",
  9871. "keywords": [
  9872. "http",
  9873. "message",
  9874. "psr-7"
  9875. ],
  9876. "support": {
  9877. "issues": "https://github.com/php-http/message/issues",
  9878. "source": "https://github.com/php-http/message/tree/1.16.2"
  9879. },
  9880. "time": "2024-10-02T11:34:13+00:00"
  9881. },
  9882. {
  9883. "name": "php-http/promise",
  9884. "version": "1.3.1",
  9885. "source": {
  9886. "type": "git",
  9887. "url": "https://github.com/php-http/promise.git",
  9888. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9889. },
  9890. "dist": {
  9891. "type": "zip",
  9892. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9893. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9894. "shasum": ""
  9895. },
  9896. "require": {
  9897. "php": "^7.1 || ^8.0"
  9898. },
  9899. "require-dev": {
  9900. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9901. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9902. },
  9903. "type": "library",
  9904. "autoload": {
  9905. "psr-4": {
  9906. "Http\\Promise\\": "src/"
  9907. }
  9908. },
  9909. "notification-url": "https://packagist.org/downloads/",
  9910. "license": [
  9911. "MIT"
  9912. ],
  9913. "authors": [
  9914. {
  9915. "name": "Joel Wurtz",
  9916. "email": "joel.wurtz@gmail.com"
  9917. },
  9918. {
  9919. "name": "Márk Sági-Kazár",
  9920. "email": "mark.sagikazar@gmail.com"
  9921. }
  9922. ],
  9923. "description": "Promise used for asynchronous HTTP requests",
  9924. "homepage": "http://httplug.io",
  9925. "keywords": [
  9926. "promise"
  9927. ],
  9928. "support": {
  9929. "issues": "https://github.com/php-http/promise/issues",
  9930. "source": "https://github.com/php-http/promise/tree/1.3.1"
  9931. },
  9932. "time": "2024-03-15T13:55:21+00:00"
  9933. },
  9934. {
  9935. "name": "phpmailer/phpmailer",
  9936. "version": "v6.10.0",
  9937. "source": {
  9938. "type": "git",
  9939. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9940. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  9941. },
  9942. "dist": {
  9943. "type": "zip",
  9944. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9945. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9946. "shasum": ""
  9947. },
  9948. "require": {
  9949. "ext-ctype": "*",
  9950. "ext-filter": "*",
  9951. "ext-hash": "*",
  9952. "php": ">=5.5.0"
  9953. },
  9954. "require-dev": {
  9955. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9956. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9957. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9958. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9959. "phpcompatibility/php-compatibility": "^9.3.5",
  9960. "roave/security-advisories": "dev-latest",
  9961. "squizlabs/php_codesniffer": "^3.7.2",
  9962. "yoast/phpunit-polyfills": "^1.0.4"
  9963. },
  9964. "suggest": {
  9965. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  9966. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9967. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9968. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9969. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9970. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9971. "psr/log": "For optional PSR-3 debug logging",
  9972. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9973. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9974. },
  9975. "type": "library",
  9976. "autoload": {
  9977. "psr-4": {
  9978. "PHPMailer\\PHPMailer\\": "src/"
  9979. }
  9980. },
  9981. "notification-url": "https://packagist.org/downloads/",
  9982. "license": [
  9983. "LGPL-2.1-only"
  9984. ],
  9985. "authors": [
  9986. {
  9987. "name": "Marcus Bointon",
  9988. "email": "phpmailer@synchromedia.co.uk"
  9989. },
  9990. {
  9991. "name": "Jim Jagielski",
  9992. "email": "jimjag@gmail.com"
  9993. },
  9994. {
  9995. "name": "Andy Prevost",
  9996. "email": "codeworxtech@users.sourceforge.net"
  9997. },
  9998. {
  9999. "name": "Brent R. Matzelle"
  10000. }
  10001. ],
  10002. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10003. "support": {
  10004. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10005. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10006. },
  10007. "funding": [
  10008. {
  10009. "url": "https://github.com/Synchro",
  10010. "type": "github"
  10011. }
  10012. ],
  10013. "time": "2025-04-24T15:19:31+00:00"
  10014. },
  10015. {
  10016. "name": "phpowermove/docblock",
  10017. "version": "v4.0",
  10018. "source": {
  10019. "type": "git",
  10020. "url": "https://github.com/phpowermove/docblock.git",
  10021. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10022. },
  10023. "dist": {
  10024. "type": "zip",
  10025. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10026. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10027. "shasum": ""
  10028. },
  10029. "require": {
  10030. "phootwork/collection": "^3.0",
  10031. "phootwork/lang": "^3.0",
  10032. "php": ">=8.0"
  10033. },
  10034. "require-dev": {
  10035. "phootwork/php-cs-fixer-config": "^0.4",
  10036. "phpunit/phpunit": "^9.0",
  10037. "psalm/phar": "^4.3"
  10038. },
  10039. "type": "library",
  10040. "autoload": {
  10041. "psr-4": {
  10042. "phpowermove\\docblock\\": "src/"
  10043. }
  10044. },
  10045. "notification-url": "https://packagist.org/downloads/",
  10046. "license": [
  10047. "MIT"
  10048. ],
  10049. "authors": [
  10050. {
  10051. "name": "Thomas Gossmann",
  10052. "homepage": "http://gos.si"
  10053. }
  10054. ],
  10055. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10056. "keywords": [
  10057. "docblock",
  10058. "generator",
  10059. "parser"
  10060. ],
  10061. "support": {
  10062. "issues": "https://github.com/phpowermove/docblock/issues",
  10063. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10064. },
  10065. "time": "2021-09-22T16:57:06+00:00"
  10066. },
  10067. {
  10068. "name": "phpstan/phpstan",
  10069. "version": "2.1.19",
  10070. "source": {
  10071. "type": "git",
  10072. "url": "https://github.com/phpstan/phpstan.git",
  10073. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf"
  10074. },
  10075. "dist": {
  10076. "type": "zip",
  10077. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf",
  10078. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf",
  10079. "shasum": ""
  10080. },
  10081. "require": {
  10082. "php": "^7.4|^8.0"
  10083. },
  10084. "conflict": {
  10085. "phpstan/phpstan-shim": "*"
  10086. },
  10087. "bin": [
  10088. "phpstan",
  10089. "phpstan.phar"
  10090. ],
  10091. "type": "library",
  10092. "autoload": {
  10093. "files": [
  10094. "bootstrap.php"
  10095. ]
  10096. },
  10097. "notification-url": "https://packagist.org/downloads/",
  10098. "license": [
  10099. "MIT"
  10100. ],
  10101. "description": "PHPStan - PHP Static Analysis Tool",
  10102. "keywords": [
  10103. "dev",
  10104. "static analysis"
  10105. ],
  10106. "support": {
  10107. "docs": "https://phpstan.org/user-guide/getting-started",
  10108. "forum": "https://github.com/phpstan/phpstan/discussions",
  10109. "issues": "https://github.com/phpstan/phpstan/issues",
  10110. "security": "https://github.com/phpstan/phpstan/security/policy",
  10111. "source": "https://github.com/phpstan/phpstan-src"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://github.com/ondrejmirtes",
  10116. "type": "github"
  10117. },
  10118. {
  10119. "url": "https://github.com/phpstan",
  10120. "type": "github"
  10121. }
  10122. ],
  10123. "time": "2025-07-21T19:58:24+00:00"
  10124. },
  10125. {
  10126. "name": "phpstan/phpstan-deprecation-rules",
  10127. "version": "2.0.3",
  10128. "source": {
  10129. "type": "git",
  10130. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10131. "reference": "468e02c9176891cc901143da118f09dc9505fc2f"
  10132. },
  10133. "dist": {
  10134. "type": "zip",
  10135. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f",
  10136. "reference": "468e02c9176891cc901143da118f09dc9505fc2f",
  10137. "shasum": ""
  10138. },
  10139. "require": {
  10140. "php": "^7.4 || ^8.0",
  10141. "phpstan/phpstan": "^2.1.15"
  10142. },
  10143. "require-dev": {
  10144. "php-parallel-lint/php-parallel-lint": "^1.2",
  10145. "phpstan/phpstan-phpunit": "^2.0",
  10146. "phpunit/phpunit": "^9.6"
  10147. },
  10148. "type": "phpstan-extension",
  10149. "extra": {
  10150. "phpstan": {
  10151. "includes": [
  10152. "rules.neon"
  10153. ]
  10154. }
  10155. },
  10156. "autoload": {
  10157. "psr-4": {
  10158. "PHPStan\\": "src/"
  10159. }
  10160. },
  10161. "notification-url": "https://packagist.org/downloads/",
  10162. "license": [
  10163. "MIT"
  10164. ],
  10165. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10166. "support": {
  10167. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10168. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3"
  10169. },
  10170. "time": "2025-05-14T10:56:57+00:00"
  10171. },
  10172. {
  10173. "name": "politsin/jquery-ui-touch-punch",
  10174. "version": "1.0",
  10175. "source": {
  10176. "type": "git",
  10177. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10178. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10179. },
  10180. "dist": {
  10181. "type": "zip",
  10182. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10183. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10184. "shasum": ""
  10185. },
  10186. "type": "drupal-library",
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "MIT"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Dave Furfero",
  10194. "email": "furf@furf.com"
  10195. }
  10196. ],
  10197. "description": "Extension to jQuery UI for mobile touch event support.",
  10198. "homepage": "http://touchpunch.furf.com/",
  10199. "keywords": [
  10200. "gestures",
  10201. "mobile",
  10202. "touch"
  10203. ],
  10204. "support": {
  10205. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10206. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10207. },
  10208. "time": "2020-12-15T10:26:18+00:00"
  10209. },
  10210. {
  10211. "name": "psr/cache",
  10212. "version": "3.0.0",
  10213. "source": {
  10214. "type": "git",
  10215. "url": "https://github.com/php-fig/cache.git",
  10216. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10217. },
  10218. "dist": {
  10219. "type": "zip",
  10220. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10221. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10222. "shasum": ""
  10223. },
  10224. "require": {
  10225. "php": ">=8.0.0"
  10226. },
  10227. "type": "library",
  10228. "extra": {
  10229. "branch-alias": {
  10230. "dev-master": "1.0.x-dev"
  10231. }
  10232. },
  10233. "autoload": {
  10234. "psr-4": {
  10235. "Psr\\Cache\\": "src/"
  10236. }
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "MIT"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "PHP-FIG",
  10245. "homepage": "https://www.php-fig.org/"
  10246. }
  10247. ],
  10248. "description": "Common interface for caching libraries",
  10249. "keywords": [
  10250. "cache",
  10251. "psr",
  10252. "psr-6"
  10253. ],
  10254. "support": {
  10255. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10256. },
  10257. "time": "2021-02-03T23:26:27+00:00"
  10258. },
  10259. {
  10260. "name": "psr/container",
  10261. "version": "2.0.2",
  10262. "source": {
  10263. "type": "git",
  10264. "url": "https://github.com/php-fig/container.git",
  10265. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10266. },
  10267. "dist": {
  10268. "type": "zip",
  10269. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10270. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10271. "shasum": ""
  10272. },
  10273. "require": {
  10274. "php": ">=7.4.0"
  10275. },
  10276. "type": "library",
  10277. "extra": {
  10278. "branch-alias": {
  10279. "dev-master": "2.0.x-dev"
  10280. }
  10281. },
  10282. "autoload": {
  10283. "psr-4": {
  10284. "Psr\\Container\\": "src/"
  10285. }
  10286. },
  10287. "notification-url": "https://packagist.org/downloads/",
  10288. "license": [
  10289. "MIT"
  10290. ],
  10291. "authors": [
  10292. {
  10293. "name": "PHP-FIG",
  10294. "homepage": "https://www.php-fig.org/"
  10295. }
  10296. ],
  10297. "description": "Common Container Interface (PHP FIG PSR-11)",
  10298. "homepage": "https://github.com/php-fig/container",
  10299. "keywords": [
  10300. "PSR-11",
  10301. "container",
  10302. "container-interface",
  10303. "container-interop",
  10304. "psr"
  10305. ],
  10306. "support": {
  10307. "issues": "https://github.com/php-fig/container/issues",
  10308. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10309. },
  10310. "time": "2021-11-05T16:47:00+00:00"
  10311. },
  10312. {
  10313. "name": "psr/event-dispatcher",
  10314. "version": "1.0.0",
  10315. "source": {
  10316. "type": "git",
  10317. "url": "https://github.com/php-fig/event-dispatcher.git",
  10318. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10319. },
  10320. "dist": {
  10321. "type": "zip",
  10322. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10323. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10324. "shasum": ""
  10325. },
  10326. "require": {
  10327. "php": ">=7.2.0"
  10328. },
  10329. "type": "library",
  10330. "extra": {
  10331. "branch-alias": {
  10332. "dev-master": "1.0.x-dev"
  10333. }
  10334. },
  10335. "autoload": {
  10336. "psr-4": {
  10337. "Psr\\EventDispatcher\\": "src/"
  10338. }
  10339. },
  10340. "notification-url": "https://packagist.org/downloads/",
  10341. "license": [
  10342. "MIT"
  10343. ],
  10344. "authors": [
  10345. {
  10346. "name": "PHP-FIG",
  10347. "homepage": "http://www.php-fig.org/"
  10348. }
  10349. ],
  10350. "description": "Standard interfaces for event handling.",
  10351. "keywords": [
  10352. "events",
  10353. "psr",
  10354. "psr-14"
  10355. ],
  10356. "support": {
  10357. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10358. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10359. },
  10360. "time": "2019-01-08T18:20:26+00:00"
  10361. },
  10362. {
  10363. "name": "psr/http-client",
  10364. "version": "1.0.3",
  10365. "source": {
  10366. "type": "git",
  10367. "url": "https://github.com/php-fig/http-client.git",
  10368. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10369. },
  10370. "dist": {
  10371. "type": "zip",
  10372. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10373. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10374. "shasum": ""
  10375. },
  10376. "require": {
  10377. "php": "^7.0 || ^8.0",
  10378. "psr/http-message": "^1.0 || ^2.0"
  10379. },
  10380. "type": "library",
  10381. "extra": {
  10382. "branch-alias": {
  10383. "dev-master": "1.0.x-dev"
  10384. }
  10385. },
  10386. "autoload": {
  10387. "psr-4": {
  10388. "Psr\\Http\\Client\\": "src/"
  10389. }
  10390. },
  10391. "notification-url": "https://packagist.org/downloads/",
  10392. "license": [
  10393. "MIT"
  10394. ],
  10395. "authors": [
  10396. {
  10397. "name": "PHP-FIG",
  10398. "homepage": "https://www.php-fig.org/"
  10399. }
  10400. ],
  10401. "description": "Common interface for HTTP clients",
  10402. "homepage": "https://github.com/php-fig/http-client",
  10403. "keywords": [
  10404. "http",
  10405. "http-client",
  10406. "psr",
  10407. "psr-18"
  10408. ],
  10409. "support": {
  10410. "source": "https://github.com/php-fig/http-client"
  10411. },
  10412. "time": "2023-09-23T14:17:50+00:00"
  10413. },
  10414. {
  10415. "name": "psr/http-factory",
  10416. "version": "1.1.0",
  10417. "source": {
  10418. "type": "git",
  10419. "url": "https://github.com/php-fig/http-factory.git",
  10420. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10421. },
  10422. "dist": {
  10423. "type": "zip",
  10424. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10425. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10426. "shasum": ""
  10427. },
  10428. "require": {
  10429. "php": ">=7.1",
  10430. "psr/http-message": "^1.0 || ^2.0"
  10431. },
  10432. "type": "library",
  10433. "extra": {
  10434. "branch-alias": {
  10435. "dev-master": "1.0.x-dev"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "psr-4": {
  10440. "Psr\\Http\\Message\\": "src/"
  10441. }
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "MIT"
  10446. ],
  10447. "authors": [
  10448. {
  10449. "name": "PHP-FIG",
  10450. "homepage": "https://www.php-fig.org/"
  10451. }
  10452. ],
  10453. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10454. "keywords": [
  10455. "factory",
  10456. "http",
  10457. "message",
  10458. "psr",
  10459. "psr-17",
  10460. "psr-7",
  10461. "request",
  10462. "response"
  10463. ],
  10464. "support": {
  10465. "source": "https://github.com/php-fig/http-factory"
  10466. },
  10467. "time": "2024-04-15T12:06:14+00:00"
  10468. },
  10469. {
  10470. "name": "psr/http-message",
  10471. "version": "2.0",
  10472. "source": {
  10473. "type": "git",
  10474. "url": "https://github.com/php-fig/http-message.git",
  10475. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10476. },
  10477. "dist": {
  10478. "type": "zip",
  10479. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10480. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10481. "shasum": ""
  10482. },
  10483. "require": {
  10484. "php": "^7.2 || ^8.0"
  10485. },
  10486. "type": "library",
  10487. "extra": {
  10488. "branch-alias": {
  10489. "dev-master": "2.0.x-dev"
  10490. }
  10491. },
  10492. "autoload": {
  10493. "psr-4": {
  10494. "Psr\\Http\\Message\\": "src/"
  10495. }
  10496. },
  10497. "notification-url": "https://packagist.org/downloads/",
  10498. "license": [
  10499. "MIT"
  10500. ],
  10501. "authors": [
  10502. {
  10503. "name": "PHP-FIG",
  10504. "homepage": "https://www.php-fig.org/"
  10505. }
  10506. ],
  10507. "description": "Common interface for HTTP messages",
  10508. "homepage": "https://github.com/php-fig/http-message",
  10509. "keywords": [
  10510. "http",
  10511. "http-message",
  10512. "psr",
  10513. "psr-7",
  10514. "request",
  10515. "response"
  10516. ],
  10517. "support": {
  10518. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10519. },
  10520. "time": "2023-04-04T09:54:51+00:00"
  10521. },
  10522. {
  10523. "name": "psr/log",
  10524. "version": "3.0.2",
  10525. "source": {
  10526. "type": "git",
  10527. "url": "https://github.com/php-fig/log.git",
  10528. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10529. },
  10530. "dist": {
  10531. "type": "zip",
  10532. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10533. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10534. "shasum": ""
  10535. },
  10536. "require": {
  10537. "php": ">=8.0.0"
  10538. },
  10539. "type": "library",
  10540. "extra": {
  10541. "branch-alias": {
  10542. "dev-master": "3.x-dev"
  10543. }
  10544. },
  10545. "autoload": {
  10546. "psr-4": {
  10547. "Psr\\Log\\": "src"
  10548. }
  10549. },
  10550. "notification-url": "https://packagist.org/downloads/",
  10551. "license": [
  10552. "MIT"
  10553. ],
  10554. "authors": [
  10555. {
  10556. "name": "PHP-FIG",
  10557. "homepage": "https://www.php-fig.org/"
  10558. }
  10559. ],
  10560. "description": "Common interface for logging libraries",
  10561. "homepage": "https://github.com/php-fig/log",
  10562. "keywords": [
  10563. "log",
  10564. "psr",
  10565. "psr-3"
  10566. ],
  10567. "support": {
  10568. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10569. },
  10570. "time": "2024-09-11T13:17:53+00:00"
  10571. },
  10572. {
  10573. "name": "psy/psysh",
  10574. "version": "v0.12.21",
  10575. "source": {
  10576. "type": "git",
  10577. "url": "https://github.com/bobthecow/psysh.git",
  10578. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97"
  10579. },
  10580. "dist": {
  10581. "type": "zip",
  10582. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10583. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10584. "shasum": ""
  10585. },
  10586. "require": {
  10587. "ext-json": "*",
  10588. "ext-tokenizer": "*",
  10589. "nikic/php-parser": "^5.0 || ^4.0",
  10590. "php": "^8.0 || ^7.4",
  10591. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10592. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10593. },
  10594. "conflict": {
  10595. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10596. },
  10597. "require-dev": {
  10598. "bamarni/composer-bin-plugin": "^1.2",
  10599. "composer/class-map-generator": "^1.6"
  10600. },
  10601. "suggest": {
  10602. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  10603. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10604. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10605. },
  10606. "bin": [
  10607. "bin/psysh"
  10608. ],
  10609. "type": "library",
  10610. "extra": {
  10611. "bamarni-bin": {
  10612. "bin-links": false,
  10613. "forward-command": false
  10614. },
  10615. "branch-alias": {
  10616. "dev-main": "0.12.x-dev"
  10617. }
  10618. },
  10619. "autoload": {
  10620. "files": [
  10621. "src/functions.php"
  10622. ],
  10623. "psr-4": {
  10624. "Psy\\": "src/"
  10625. }
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "MIT"
  10630. ],
  10631. "authors": [
  10632. {
  10633. "name": "Justin Hileman",
  10634. "email": "justin@justinhileman.info"
  10635. }
  10636. ],
  10637. "description": "An interactive shell for modern PHP.",
  10638. "homepage": "https://psysh.org",
  10639. "keywords": [
  10640. "REPL",
  10641. "console",
  10642. "interactive",
  10643. "shell"
  10644. ],
  10645. "support": {
  10646. "issues": "https://github.com/bobthecow/psysh/issues",
  10647. "source": "https://github.com/bobthecow/psysh/tree/v0.12.21"
  10648. },
  10649. "time": "2026-03-06T21:21:28+00:00"
  10650. },
  10651. {
  10652. "name": "ralouphie/getallheaders",
  10653. "version": "3.0.3",
  10654. "source": {
  10655. "type": "git",
  10656. "url": "https://github.com/ralouphie/getallheaders.git",
  10657. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10658. },
  10659. "dist": {
  10660. "type": "zip",
  10661. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10662. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10663. "shasum": ""
  10664. },
  10665. "require": {
  10666. "php": ">=5.6"
  10667. },
  10668. "require-dev": {
  10669. "php-coveralls/php-coveralls": "^2.1",
  10670. "phpunit/phpunit": "^5 || ^6.5"
  10671. },
  10672. "type": "library",
  10673. "autoload": {
  10674. "files": [
  10675. "src/getallheaders.php"
  10676. ]
  10677. },
  10678. "notification-url": "https://packagist.org/downloads/",
  10679. "license": [
  10680. "MIT"
  10681. ],
  10682. "authors": [
  10683. {
  10684. "name": "Ralph Khattar",
  10685. "email": "ralph.khattar@gmail.com"
  10686. }
  10687. ],
  10688. "description": "A polyfill for getallheaders.",
  10689. "support": {
  10690. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10691. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10692. },
  10693. "time": "2019-03-08T08:55:37+00:00"
  10694. },
  10695. {
  10696. "name": "sebastian/diff",
  10697. "version": "4.0.6",
  10698. "source": {
  10699. "type": "git",
  10700. "url": "https://github.com/sebastianbergmann/diff.git",
  10701. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10702. },
  10703. "dist": {
  10704. "type": "zip",
  10705. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10706. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10707. "shasum": ""
  10708. },
  10709. "require": {
  10710. "php": ">=7.3"
  10711. },
  10712. "require-dev": {
  10713. "phpunit/phpunit": "^9.3",
  10714. "symfony/process": "^4.2 || ^5"
  10715. },
  10716. "type": "library",
  10717. "extra": {
  10718. "branch-alias": {
  10719. "dev-master": "4.0-dev"
  10720. }
  10721. },
  10722. "autoload": {
  10723. "classmap": [
  10724. "src/"
  10725. ]
  10726. },
  10727. "notification-url": "https://packagist.org/downloads/",
  10728. "license": [
  10729. "BSD-3-Clause"
  10730. ],
  10731. "authors": [
  10732. {
  10733. "name": "Sebastian Bergmann",
  10734. "email": "sebastian@phpunit.de"
  10735. },
  10736. {
  10737. "name": "Kore Nordmann",
  10738. "email": "mail@kore-nordmann.de"
  10739. }
  10740. ],
  10741. "description": "Diff implementation",
  10742. "homepage": "https://github.com/sebastianbergmann/diff",
  10743. "keywords": [
  10744. "diff",
  10745. "udiff",
  10746. "unidiff",
  10747. "unified diff"
  10748. ],
  10749. "support": {
  10750. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10751. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10752. },
  10753. "funding": [
  10754. {
  10755. "url": "https://github.com/sebastianbergmann",
  10756. "type": "github"
  10757. }
  10758. ],
  10759. "time": "2024-03-02T06:30:58+00:00"
  10760. },
  10761. {
  10762. "name": "symfony/console",
  10763. "version": "v6.4.35",
  10764. "source": {
  10765. "type": "git",
  10766. "url": "https://github.com/symfony/console.git",
  10767. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  10768. },
  10769. "dist": {
  10770. "type": "zip",
  10771. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  10772. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  10773. "shasum": ""
  10774. },
  10775. "require": {
  10776. "php": ">=8.1",
  10777. "symfony/deprecation-contracts": "^2.5|^3",
  10778. "symfony/polyfill-mbstring": "~1.0",
  10779. "symfony/service-contracts": "^2.5|^3",
  10780. "symfony/string": "^5.4|^6.0|^7.0"
  10781. },
  10782. "conflict": {
  10783. "symfony/dependency-injection": "<5.4",
  10784. "symfony/dotenv": "<5.4",
  10785. "symfony/event-dispatcher": "<5.4",
  10786. "symfony/lock": "<5.4",
  10787. "symfony/process": "<5.4"
  10788. },
  10789. "provide": {
  10790. "psr/log-implementation": "1.0|2.0|3.0"
  10791. },
  10792. "require-dev": {
  10793. "psr/log": "^1|^2|^3",
  10794. "symfony/config": "^5.4|^6.0|^7.0",
  10795. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10796. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10797. "symfony/http-foundation": "^6.4|^7.0",
  10798. "symfony/http-kernel": "^6.4|^7.0",
  10799. "symfony/lock": "^5.4|^6.0|^7.0",
  10800. "symfony/messenger": "^5.4|^6.0|^7.0",
  10801. "symfony/process": "^5.4|^6.0|^7.0",
  10802. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10803. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10804. },
  10805. "type": "library",
  10806. "autoload": {
  10807. "psr-4": {
  10808. "Symfony\\Component\\Console\\": ""
  10809. },
  10810. "exclude-from-classmap": [
  10811. "/Tests/"
  10812. ]
  10813. },
  10814. "notification-url": "https://packagist.org/downloads/",
  10815. "license": [
  10816. "MIT"
  10817. ],
  10818. "authors": [
  10819. {
  10820. "name": "Fabien Potencier",
  10821. "email": "fabien@symfony.com"
  10822. },
  10823. {
  10824. "name": "Symfony Community",
  10825. "homepage": "https://symfony.com/contributors"
  10826. }
  10827. ],
  10828. "description": "Eases the creation of beautiful and testable command line interfaces",
  10829. "homepage": "https://symfony.com",
  10830. "keywords": [
  10831. "cli",
  10832. "command-line",
  10833. "console",
  10834. "terminal"
  10835. ],
  10836. "support": {
  10837. "source": "https://github.com/symfony/console/tree/v6.4.35"
  10838. },
  10839. "funding": [
  10840. {
  10841. "url": "https://symfony.com/sponsor",
  10842. "type": "custom"
  10843. },
  10844. {
  10845. "url": "https://github.com/fabpot",
  10846. "type": "github"
  10847. },
  10848. {
  10849. "url": "https://github.com/nicolas-grekas",
  10850. "type": "github"
  10851. },
  10852. {
  10853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10854. "type": "tidelift"
  10855. }
  10856. ],
  10857. "time": "2026-03-06T13:31:08+00:00"
  10858. },
  10859. {
  10860. "name": "symfony/dependency-injection",
  10861. "version": "v6.4.35",
  10862. "source": {
  10863. "type": "git",
  10864. "url": "https://github.com/symfony/dependency-injection.git",
  10865. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  10866. },
  10867. "dist": {
  10868. "type": "zip",
  10869. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  10870. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  10871. "shasum": ""
  10872. },
  10873. "require": {
  10874. "php": ">=8.1",
  10875. "psr/container": "^1.1|^2.0",
  10876. "symfony/deprecation-contracts": "^2.5|^3",
  10877. "symfony/service-contracts": "^2.5|^3.0",
  10878. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10879. },
  10880. "conflict": {
  10881. "ext-psr": "<1.1|>=2",
  10882. "symfony/config": "<6.1",
  10883. "symfony/finder": "<5.4",
  10884. "symfony/proxy-manager-bridge": "<6.3",
  10885. "symfony/yaml": "<5.4"
  10886. },
  10887. "provide": {
  10888. "psr/container-implementation": "1.1|2.0",
  10889. "symfony/service-implementation": "1.1|2.0|3.0"
  10890. },
  10891. "require-dev": {
  10892. "symfony/config": "^6.1|^7.0",
  10893. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10894. "symfony/yaml": "^5.4|^6.0|^7.0"
  10895. },
  10896. "type": "library",
  10897. "autoload": {
  10898. "psr-4": {
  10899. "Symfony\\Component\\DependencyInjection\\": ""
  10900. },
  10901. "exclude-from-classmap": [
  10902. "/Tests/"
  10903. ]
  10904. },
  10905. "notification-url": "https://packagist.org/downloads/",
  10906. "license": [
  10907. "MIT"
  10908. ],
  10909. "authors": [
  10910. {
  10911. "name": "Fabien Potencier",
  10912. "email": "fabien@symfony.com"
  10913. },
  10914. {
  10915. "name": "Symfony Community",
  10916. "homepage": "https://symfony.com/contributors"
  10917. }
  10918. ],
  10919. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10920. "homepage": "https://symfony.com",
  10921. "support": {
  10922. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  10923. },
  10924. "funding": [
  10925. {
  10926. "url": "https://symfony.com/sponsor",
  10927. "type": "custom"
  10928. },
  10929. {
  10930. "url": "https://github.com/fabpot",
  10931. "type": "github"
  10932. },
  10933. {
  10934. "url": "https://github.com/nicolas-grekas",
  10935. "type": "github"
  10936. },
  10937. {
  10938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10939. "type": "tidelift"
  10940. }
  10941. ],
  10942. "time": "2026-02-26T12:16:01+00:00"
  10943. },
  10944. {
  10945. "name": "symfony/deprecation-contracts",
  10946. "version": "v3.6.0",
  10947. "source": {
  10948. "type": "git",
  10949. "url": "https://github.com/symfony/deprecation-contracts.git",
  10950. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  10951. },
  10952. "dist": {
  10953. "type": "zip",
  10954. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10955. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10956. "shasum": ""
  10957. },
  10958. "require": {
  10959. "php": ">=8.1"
  10960. },
  10961. "type": "library",
  10962. "extra": {
  10963. "thanks": {
  10964. "url": "https://github.com/symfony/contracts",
  10965. "name": "symfony/contracts"
  10966. },
  10967. "branch-alias": {
  10968. "dev-main": "3.6-dev"
  10969. }
  10970. },
  10971. "autoload": {
  10972. "files": [
  10973. "function.php"
  10974. ]
  10975. },
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "MIT"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Nicolas Grekas",
  10983. "email": "p@tchwork.com"
  10984. },
  10985. {
  10986. "name": "Symfony Community",
  10987. "homepage": "https://symfony.com/contributors"
  10988. }
  10989. ],
  10990. "description": "A generic function and convention to trigger deprecation notices",
  10991. "homepage": "https://symfony.com",
  10992. "support": {
  10993. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  10994. },
  10995. "funding": [
  10996. {
  10997. "url": "https://symfony.com/sponsor",
  10998. "type": "custom"
  10999. },
  11000. {
  11001. "url": "https://github.com/fabpot",
  11002. "type": "github"
  11003. },
  11004. {
  11005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11006. "type": "tidelift"
  11007. }
  11008. ],
  11009. "time": "2024-09-25T14:21:43+00:00"
  11010. },
  11011. {
  11012. "name": "symfony/error-handler",
  11013. "version": "v6.4.32",
  11014. "source": {
  11015. "type": "git",
  11016. "url": "https://github.com/symfony/error-handler.git",
  11017. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  11018. },
  11019. "dist": {
  11020. "type": "zip",
  11021. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11022. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11023. "shasum": ""
  11024. },
  11025. "require": {
  11026. "php": ">=8.1",
  11027. "psr/log": "^1|^2|^3",
  11028. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11029. },
  11030. "conflict": {
  11031. "symfony/deprecation-contracts": "<2.5",
  11032. "symfony/http-kernel": "<6.4"
  11033. },
  11034. "require-dev": {
  11035. "symfony/deprecation-contracts": "^2.5|^3",
  11036. "symfony/http-kernel": "^6.4|^7.0",
  11037. "symfony/serializer": "^5.4|^6.0|^7.0"
  11038. },
  11039. "bin": [
  11040. "Resources/bin/patch-type-declarations"
  11041. ],
  11042. "type": "library",
  11043. "autoload": {
  11044. "psr-4": {
  11045. "Symfony\\Component\\ErrorHandler\\": ""
  11046. },
  11047. "exclude-from-classmap": [
  11048. "/Tests/"
  11049. ]
  11050. },
  11051. "notification-url": "https://packagist.org/downloads/",
  11052. "license": [
  11053. "MIT"
  11054. ],
  11055. "authors": [
  11056. {
  11057. "name": "Fabien Potencier",
  11058. "email": "fabien@symfony.com"
  11059. },
  11060. {
  11061. "name": "Symfony Community",
  11062. "homepage": "https://symfony.com/contributors"
  11063. }
  11064. ],
  11065. "description": "Provides tools to manage errors and ease debugging PHP code",
  11066. "homepage": "https://symfony.com",
  11067. "support": {
  11068. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  11069. },
  11070. "funding": [
  11071. {
  11072. "url": "https://symfony.com/sponsor",
  11073. "type": "custom"
  11074. },
  11075. {
  11076. "url": "https://github.com/fabpot",
  11077. "type": "github"
  11078. },
  11079. {
  11080. "url": "https://github.com/nicolas-grekas",
  11081. "type": "github"
  11082. },
  11083. {
  11084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11085. "type": "tidelift"
  11086. }
  11087. ],
  11088. "time": "2026-01-19T19:28:19+00:00"
  11089. },
  11090. {
  11091. "name": "symfony/event-dispatcher",
  11092. "version": "v6.4.32",
  11093. "source": {
  11094. "type": "git",
  11095. "url": "https://github.com/symfony/event-dispatcher.git",
  11096. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  11097. },
  11098. "dist": {
  11099. "type": "zip",
  11100. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  11101. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  11102. "shasum": ""
  11103. },
  11104. "require": {
  11105. "php": ">=8.1",
  11106. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11107. },
  11108. "conflict": {
  11109. "symfony/dependency-injection": "<5.4",
  11110. "symfony/service-contracts": "<2.5"
  11111. },
  11112. "provide": {
  11113. "psr/event-dispatcher-implementation": "1.0",
  11114. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11115. },
  11116. "require-dev": {
  11117. "psr/log": "^1|^2|^3",
  11118. "symfony/config": "^5.4|^6.0|^7.0",
  11119. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11120. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11121. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11122. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11123. "symfony/service-contracts": "^2.5|^3",
  11124. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11125. },
  11126. "type": "library",
  11127. "autoload": {
  11128. "psr-4": {
  11129. "Symfony\\Component\\EventDispatcher\\": ""
  11130. },
  11131. "exclude-from-classmap": [
  11132. "/Tests/"
  11133. ]
  11134. },
  11135. "notification-url": "https://packagist.org/downloads/",
  11136. "license": [
  11137. "MIT"
  11138. ],
  11139. "authors": [
  11140. {
  11141. "name": "Fabien Potencier",
  11142. "email": "fabien@symfony.com"
  11143. },
  11144. {
  11145. "name": "Symfony Community",
  11146. "homepage": "https://symfony.com/contributors"
  11147. }
  11148. ],
  11149. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11150. "homepage": "https://symfony.com",
  11151. "support": {
  11152. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  11153. },
  11154. "funding": [
  11155. {
  11156. "url": "https://symfony.com/sponsor",
  11157. "type": "custom"
  11158. },
  11159. {
  11160. "url": "https://github.com/fabpot",
  11161. "type": "github"
  11162. },
  11163. {
  11164. "url": "https://github.com/nicolas-grekas",
  11165. "type": "github"
  11166. },
  11167. {
  11168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11169. "type": "tidelift"
  11170. }
  11171. ],
  11172. "time": "2026-01-05T11:13:48+00:00"
  11173. },
  11174. {
  11175. "name": "symfony/event-dispatcher-contracts",
  11176. "version": "v3.6.0",
  11177. "source": {
  11178. "type": "git",
  11179. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11180. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  11181. },
  11182. "dist": {
  11183. "type": "zip",
  11184. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  11185. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  11186. "shasum": ""
  11187. },
  11188. "require": {
  11189. "php": ">=8.1",
  11190. "psr/event-dispatcher": "^1"
  11191. },
  11192. "type": "library",
  11193. "extra": {
  11194. "thanks": {
  11195. "url": "https://github.com/symfony/contracts",
  11196. "name": "symfony/contracts"
  11197. },
  11198. "branch-alias": {
  11199. "dev-main": "3.6-dev"
  11200. }
  11201. },
  11202. "autoload": {
  11203. "psr-4": {
  11204. "Symfony\\Contracts\\EventDispatcher\\": ""
  11205. }
  11206. },
  11207. "notification-url": "https://packagist.org/downloads/",
  11208. "license": [
  11209. "MIT"
  11210. ],
  11211. "authors": [
  11212. {
  11213. "name": "Nicolas Grekas",
  11214. "email": "p@tchwork.com"
  11215. },
  11216. {
  11217. "name": "Symfony Community",
  11218. "homepage": "https://symfony.com/contributors"
  11219. }
  11220. ],
  11221. "description": "Generic abstractions related to dispatching event",
  11222. "homepage": "https://symfony.com",
  11223. "keywords": [
  11224. "abstractions",
  11225. "contracts",
  11226. "decoupling",
  11227. "interfaces",
  11228. "interoperability",
  11229. "standards"
  11230. ],
  11231. "support": {
  11232. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  11233. },
  11234. "funding": [
  11235. {
  11236. "url": "https://symfony.com/sponsor",
  11237. "type": "custom"
  11238. },
  11239. {
  11240. "url": "https://github.com/fabpot",
  11241. "type": "github"
  11242. },
  11243. {
  11244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11245. "type": "tidelift"
  11246. }
  11247. ],
  11248. "time": "2024-09-25T14:21:43+00:00"
  11249. },
  11250. {
  11251. "name": "symfony/filesystem",
  11252. "version": "v6.4.34",
  11253. "source": {
  11254. "type": "git",
  11255. "url": "https://github.com/symfony/filesystem.git",
  11256. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  11257. },
  11258. "dist": {
  11259. "type": "zip",
  11260. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11261. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11262. "shasum": ""
  11263. },
  11264. "require": {
  11265. "php": ">=8.1",
  11266. "symfony/polyfill-ctype": "~1.8",
  11267. "symfony/polyfill-mbstring": "~1.8"
  11268. },
  11269. "require-dev": {
  11270. "symfony/process": "^5.4|^6.4|^7.0"
  11271. },
  11272. "type": "library",
  11273. "autoload": {
  11274. "psr-4": {
  11275. "Symfony\\Component\\Filesystem\\": ""
  11276. },
  11277. "exclude-from-classmap": [
  11278. "/Tests/"
  11279. ]
  11280. },
  11281. "notification-url": "https://packagist.org/downloads/",
  11282. "license": [
  11283. "MIT"
  11284. ],
  11285. "authors": [
  11286. {
  11287. "name": "Fabien Potencier",
  11288. "email": "fabien@symfony.com"
  11289. },
  11290. {
  11291. "name": "Symfony Community",
  11292. "homepage": "https://symfony.com/contributors"
  11293. }
  11294. ],
  11295. "description": "Provides basic utilities for the filesystem",
  11296. "homepage": "https://symfony.com",
  11297. "support": {
  11298. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  11299. },
  11300. "funding": [
  11301. {
  11302. "url": "https://symfony.com/sponsor",
  11303. "type": "custom"
  11304. },
  11305. {
  11306. "url": "https://github.com/fabpot",
  11307. "type": "github"
  11308. },
  11309. {
  11310. "url": "https://github.com/nicolas-grekas",
  11311. "type": "github"
  11312. },
  11313. {
  11314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11315. "type": "tidelift"
  11316. }
  11317. ],
  11318. "time": "2026-02-24T17:51:06+00:00"
  11319. },
  11320. {
  11321. "name": "symfony/finder",
  11322. "version": "v6.4.34",
  11323. "source": {
  11324. "type": "git",
  11325. "url": "https://github.com/symfony/finder.git",
  11326. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  11327. },
  11328. "dist": {
  11329. "type": "zip",
  11330. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  11331. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  11332. "shasum": ""
  11333. },
  11334. "require": {
  11335. "php": ">=8.1"
  11336. },
  11337. "require-dev": {
  11338. "symfony/filesystem": "^6.0|^7.0"
  11339. },
  11340. "type": "library",
  11341. "autoload": {
  11342. "psr-4": {
  11343. "Symfony\\Component\\Finder\\": ""
  11344. },
  11345. "exclude-from-classmap": [
  11346. "/Tests/"
  11347. ]
  11348. },
  11349. "notification-url": "https://packagist.org/downloads/",
  11350. "license": [
  11351. "MIT"
  11352. ],
  11353. "authors": [
  11354. {
  11355. "name": "Fabien Potencier",
  11356. "email": "fabien@symfony.com"
  11357. },
  11358. {
  11359. "name": "Symfony Community",
  11360. "homepage": "https://symfony.com/contributors"
  11361. }
  11362. ],
  11363. "description": "Finds files and directories via an intuitive fluent interface",
  11364. "homepage": "https://symfony.com",
  11365. "support": {
  11366. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  11367. },
  11368. "funding": [
  11369. {
  11370. "url": "https://symfony.com/sponsor",
  11371. "type": "custom"
  11372. },
  11373. {
  11374. "url": "https://github.com/fabpot",
  11375. "type": "github"
  11376. },
  11377. {
  11378. "url": "https://github.com/nicolas-grekas",
  11379. "type": "github"
  11380. },
  11381. {
  11382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11383. "type": "tidelift"
  11384. }
  11385. ],
  11386. "time": "2026-01-28T15:16:37+00:00"
  11387. },
  11388. {
  11389. "name": "symfony/http-foundation",
  11390. "version": "v6.4.35",
  11391. "source": {
  11392. "type": "git",
  11393. "url": "https://github.com/symfony/http-foundation.git",
  11394. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  11395. },
  11396. "dist": {
  11397. "type": "zip",
  11398. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11399. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11400. "shasum": ""
  11401. },
  11402. "require": {
  11403. "php": ">=8.1",
  11404. "symfony/deprecation-contracts": "^2.5|^3",
  11405. "symfony/polyfill-mbstring": "~1.1",
  11406. "symfony/polyfill-php83": "^1.27"
  11407. },
  11408. "conflict": {
  11409. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11410. },
  11411. "require-dev": {
  11412. "doctrine/dbal": "^2.13.1|^3|^4",
  11413. "predis/predis": "^1.1|^2.0",
  11414. "symfony/cache": "^6.4.12|^7.1.5",
  11415. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11416. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11417. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11418. "symfony/mime": "^5.4|^6.0|^7.0",
  11419. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11420. },
  11421. "type": "library",
  11422. "autoload": {
  11423. "psr-4": {
  11424. "Symfony\\Component\\HttpFoundation\\": ""
  11425. },
  11426. "exclude-from-classmap": [
  11427. "/Tests/"
  11428. ]
  11429. },
  11430. "notification-url": "https://packagist.org/downloads/",
  11431. "license": [
  11432. "MIT"
  11433. ],
  11434. "authors": [
  11435. {
  11436. "name": "Fabien Potencier",
  11437. "email": "fabien@symfony.com"
  11438. },
  11439. {
  11440. "name": "Symfony Community",
  11441. "homepage": "https://symfony.com/contributors"
  11442. }
  11443. ],
  11444. "description": "Defines an object-oriented layer for the HTTP specification",
  11445. "homepage": "https://symfony.com",
  11446. "support": {
  11447. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  11448. },
  11449. "funding": [
  11450. {
  11451. "url": "https://symfony.com/sponsor",
  11452. "type": "custom"
  11453. },
  11454. {
  11455. "url": "https://github.com/fabpot",
  11456. "type": "github"
  11457. },
  11458. {
  11459. "url": "https://github.com/nicolas-grekas",
  11460. "type": "github"
  11461. },
  11462. {
  11463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11464. "type": "tidelift"
  11465. }
  11466. ],
  11467. "time": "2026-03-06T11:15:58+00:00"
  11468. },
  11469. {
  11470. "name": "symfony/http-kernel",
  11471. "version": "v6.4.35",
  11472. "source": {
  11473. "type": "git",
  11474. "url": "https://github.com/symfony/http-kernel.git",
  11475. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  11476. },
  11477. "dist": {
  11478. "type": "zip",
  11479. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  11480. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  11481. "shasum": ""
  11482. },
  11483. "require": {
  11484. "php": ">=8.1",
  11485. "psr/log": "^1|^2|^3",
  11486. "symfony/deprecation-contracts": "^2.5|^3",
  11487. "symfony/error-handler": "^6.4|^7.0",
  11488. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11489. "symfony/http-foundation": "^6.4|^7.0",
  11490. "symfony/polyfill-ctype": "^1.8"
  11491. },
  11492. "conflict": {
  11493. "symfony/browser-kit": "<5.4",
  11494. "symfony/cache": "<5.4",
  11495. "symfony/config": "<6.1",
  11496. "symfony/console": "<5.4",
  11497. "symfony/dependency-injection": "<6.4",
  11498. "symfony/doctrine-bridge": "<5.4",
  11499. "symfony/form": "<5.4",
  11500. "symfony/http-client": "<5.4",
  11501. "symfony/http-client-contracts": "<2.5",
  11502. "symfony/mailer": "<5.4",
  11503. "symfony/messenger": "<5.4",
  11504. "symfony/translation": "<5.4",
  11505. "symfony/translation-contracts": "<2.5",
  11506. "symfony/twig-bridge": "<5.4",
  11507. "symfony/validator": "<6.4",
  11508. "symfony/var-dumper": "<6.3",
  11509. "twig/twig": "<2.13"
  11510. },
  11511. "provide": {
  11512. "psr/log-implementation": "1.0|2.0|3.0"
  11513. },
  11514. "require-dev": {
  11515. "psr/cache": "^1.0|^2.0|^3.0",
  11516. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11517. "symfony/clock": "^6.2|^7.0",
  11518. "symfony/config": "^6.1|^7.0",
  11519. "symfony/console": "^5.4|^6.0|^7.0",
  11520. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11521. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  11522. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11523. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11524. "symfony/finder": "^5.4|^6.0|^7.0",
  11525. "symfony/http-client-contracts": "^2.5|^3",
  11526. "symfony/process": "^5.4|^6.0|^7.0",
  11527. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11528. "symfony/routing": "^5.4|^6.0|^7.0",
  11529. "symfony/serializer": "^6.4.4|^7.0.4",
  11530. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11531. "symfony/translation": "^5.4|^6.0|^7.0",
  11532. "symfony/translation-contracts": "^2.5|^3",
  11533. "symfony/uid": "^5.4|^6.0|^7.0",
  11534. "symfony/validator": "^6.4|^7.0",
  11535. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11536. "symfony/var-exporter": "^6.2|^7.0",
  11537. "twig/twig": "^2.13|^3.0.4"
  11538. },
  11539. "type": "library",
  11540. "autoload": {
  11541. "psr-4": {
  11542. "Symfony\\Component\\HttpKernel\\": ""
  11543. },
  11544. "exclude-from-classmap": [
  11545. "/Tests/"
  11546. ]
  11547. },
  11548. "notification-url": "https://packagist.org/downloads/",
  11549. "license": [
  11550. "MIT"
  11551. ],
  11552. "authors": [
  11553. {
  11554. "name": "Fabien Potencier",
  11555. "email": "fabien@symfony.com"
  11556. },
  11557. {
  11558. "name": "Symfony Community",
  11559. "homepage": "https://symfony.com/contributors"
  11560. }
  11561. ],
  11562. "description": "Provides a structured process for converting a Request into a Response",
  11563. "homepage": "https://symfony.com",
  11564. "support": {
  11565. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  11566. },
  11567. "funding": [
  11568. {
  11569. "url": "https://symfony.com/sponsor",
  11570. "type": "custom"
  11571. },
  11572. {
  11573. "url": "https://github.com/fabpot",
  11574. "type": "github"
  11575. },
  11576. {
  11577. "url": "https://github.com/nicolas-grekas",
  11578. "type": "github"
  11579. },
  11580. {
  11581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11582. "type": "tidelift"
  11583. }
  11584. ],
  11585. "time": "2026-03-06T16:28:07+00:00"
  11586. },
  11587. {
  11588. "name": "symfony/mailer",
  11589. "version": "v6.4.34",
  11590. "source": {
  11591. "type": "git",
  11592. "url": "https://github.com/symfony/mailer.git",
  11593. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  11594. },
  11595. "dist": {
  11596. "type": "zip",
  11597. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  11598. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  11599. "shasum": ""
  11600. },
  11601. "require": {
  11602. "egulias/email-validator": "^2.1.10|^3|^4",
  11603. "php": ">=8.1",
  11604. "psr/event-dispatcher": "^1",
  11605. "psr/log": "^1|^2|^3",
  11606. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11607. "symfony/mime": "^6.2|^7.0",
  11608. "symfony/service-contracts": "^2.5|^3"
  11609. },
  11610. "conflict": {
  11611. "symfony/http-client-contracts": "<2.5",
  11612. "symfony/http-kernel": "<5.4",
  11613. "symfony/messenger": "<6.2",
  11614. "symfony/mime": "<6.2",
  11615. "symfony/twig-bridge": "<6.2.1"
  11616. },
  11617. "require-dev": {
  11618. "symfony/console": "^5.4|^6.0|^7.0",
  11619. "symfony/http-client": "^5.4|^6.0|^7.0",
  11620. "symfony/messenger": "^6.2|^7.0",
  11621. "symfony/twig-bridge": "^6.2|^7.0"
  11622. },
  11623. "type": "library",
  11624. "autoload": {
  11625. "psr-4": {
  11626. "Symfony\\Component\\Mailer\\": ""
  11627. },
  11628. "exclude-from-classmap": [
  11629. "/Tests/"
  11630. ]
  11631. },
  11632. "notification-url": "https://packagist.org/downloads/",
  11633. "license": [
  11634. "MIT"
  11635. ],
  11636. "authors": [
  11637. {
  11638. "name": "Fabien Potencier",
  11639. "email": "fabien@symfony.com"
  11640. },
  11641. {
  11642. "name": "Symfony Community",
  11643. "homepage": "https://symfony.com/contributors"
  11644. }
  11645. ],
  11646. "description": "Helps sending emails",
  11647. "homepage": "https://symfony.com",
  11648. "support": {
  11649. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  11650. },
  11651. "funding": [
  11652. {
  11653. "url": "https://symfony.com/sponsor",
  11654. "type": "custom"
  11655. },
  11656. {
  11657. "url": "https://github.com/fabpot",
  11658. "type": "github"
  11659. },
  11660. {
  11661. "url": "https://github.com/nicolas-grekas",
  11662. "type": "github"
  11663. },
  11664. {
  11665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11666. "type": "tidelift"
  11667. }
  11668. ],
  11669. "time": "2026-02-24T09:34:36+00:00"
  11670. },
  11671. {
  11672. "name": "symfony/mime",
  11673. "version": "v6.4.35",
  11674. "source": {
  11675. "type": "git",
  11676. "url": "https://github.com/symfony/mime.git",
  11677. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  11678. },
  11679. "dist": {
  11680. "type": "zip",
  11681. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11682. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11683. "shasum": ""
  11684. },
  11685. "require": {
  11686. "php": ">=8.1",
  11687. "symfony/deprecation-contracts": "^2.5|^3",
  11688. "symfony/polyfill-intl-idn": "^1.10",
  11689. "symfony/polyfill-mbstring": "^1.0"
  11690. },
  11691. "conflict": {
  11692. "egulias/email-validator": "~3.0.0",
  11693. "phpdocumentor/reflection-docblock": "<3.2.2",
  11694. "phpdocumentor/type-resolver": "<1.4.0",
  11695. "symfony/mailer": "<5.4",
  11696. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11697. },
  11698. "require-dev": {
  11699. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11700. "league/html-to-markdown": "^5.0",
  11701. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11702. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11703. "symfony/process": "^5.4|^6.4|^7.0",
  11704. "symfony/property-access": "^5.4|^6.0|^7.0",
  11705. "symfony/property-info": "^5.4|^6.0|^7.0",
  11706. "symfony/serializer": "^6.4.3|^7.0.3"
  11707. },
  11708. "type": "library",
  11709. "autoload": {
  11710. "psr-4": {
  11711. "Symfony\\Component\\Mime\\": ""
  11712. },
  11713. "exclude-from-classmap": [
  11714. "/Tests/"
  11715. ]
  11716. },
  11717. "notification-url": "https://packagist.org/downloads/",
  11718. "license": [
  11719. "MIT"
  11720. ],
  11721. "authors": [
  11722. {
  11723. "name": "Fabien Potencier",
  11724. "email": "fabien@symfony.com"
  11725. },
  11726. {
  11727. "name": "Symfony Community",
  11728. "homepage": "https://symfony.com/contributors"
  11729. }
  11730. ],
  11731. "description": "Allows manipulating MIME messages",
  11732. "homepage": "https://symfony.com",
  11733. "keywords": [
  11734. "mime",
  11735. "mime-type"
  11736. ],
  11737. "support": {
  11738. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  11739. },
  11740. "funding": [
  11741. {
  11742. "url": "https://symfony.com/sponsor",
  11743. "type": "custom"
  11744. },
  11745. {
  11746. "url": "https://github.com/fabpot",
  11747. "type": "github"
  11748. },
  11749. {
  11750. "url": "https://github.com/nicolas-grekas",
  11751. "type": "github"
  11752. },
  11753. {
  11754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11755. "type": "tidelift"
  11756. }
  11757. ],
  11758. "time": "2026-03-05T11:25:28+00:00"
  11759. },
  11760. {
  11761. "name": "symfony/polyfill-ctype",
  11762. "version": "v1.33.0",
  11763. "source": {
  11764. "type": "git",
  11765. "url": "https://github.com/symfony/polyfill-ctype.git",
  11766. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11767. },
  11768. "dist": {
  11769. "type": "zip",
  11770. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11771. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11772. "shasum": ""
  11773. },
  11774. "require": {
  11775. "php": ">=7.2"
  11776. },
  11777. "provide": {
  11778. "ext-ctype": "*"
  11779. },
  11780. "suggest": {
  11781. "ext-ctype": "For best performance"
  11782. },
  11783. "type": "library",
  11784. "extra": {
  11785. "thanks": {
  11786. "url": "https://github.com/symfony/polyfill",
  11787. "name": "symfony/polyfill"
  11788. }
  11789. },
  11790. "autoload": {
  11791. "files": [
  11792. "bootstrap.php"
  11793. ],
  11794. "psr-4": {
  11795. "Symfony\\Polyfill\\Ctype\\": ""
  11796. }
  11797. },
  11798. "notification-url": "https://packagist.org/downloads/",
  11799. "license": [
  11800. "MIT"
  11801. ],
  11802. "authors": [
  11803. {
  11804. "name": "Gert de Pagter",
  11805. "email": "BackEndTea@gmail.com"
  11806. },
  11807. {
  11808. "name": "Symfony Community",
  11809. "homepage": "https://symfony.com/contributors"
  11810. }
  11811. ],
  11812. "description": "Symfony polyfill for ctype functions",
  11813. "homepage": "https://symfony.com",
  11814. "keywords": [
  11815. "compatibility",
  11816. "ctype",
  11817. "polyfill",
  11818. "portable"
  11819. ],
  11820. "support": {
  11821. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  11822. },
  11823. "funding": [
  11824. {
  11825. "url": "https://symfony.com/sponsor",
  11826. "type": "custom"
  11827. },
  11828. {
  11829. "url": "https://github.com/fabpot",
  11830. "type": "github"
  11831. },
  11832. {
  11833. "url": "https://github.com/nicolas-grekas",
  11834. "type": "github"
  11835. },
  11836. {
  11837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11838. "type": "tidelift"
  11839. }
  11840. ],
  11841. "time": "2024-09-09T11:45:10+00:00"
  11842. },
  11843. {
  11844. "name": "symfony/polyfill-iconv",
  11845. "version": "v1.33.0",
  11846. "source": {
  11847. "type": "git",
  11848. "url": "https://github.com/symfony/polyfill-iconv.git",
  11849. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  11850. },
  11851. "dist": {
  11852. "type": "zip",
  11853. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11854. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11855. "shasum": ""
  11856. },
  11857. "require": {
  11858. "php": ">=7.2"
  11859. },
  11860. "provide": {
  11861. "ext-iconv": "*"
  11862. },
  11863. "suggest": {
  11864. "ext-iconv": "For best performance"
  11865. },
  11866. "type": "library",
  11867. "extra": {
  11868. "thanks": {
  11869. "url": "https://github.com/symfony/polyfill",
  11870. "name": "symfony/polyfill"
  11871. }
  11872. },
  11873. "autoload": {
  11874. "files": [
  11875. "bootstrap.php"
  11876. ],
  11877. "psr-4": {
  11878. "Symfony\\Polyfill\\Iconv\\": ""
  11879. }
  11880. },
  11881. "notification-url": "https://packagist.org/downloads/",
  11882. "license": [
  11883. "MIT"
  11884. ],
  11885. "authors": [
  11886. {
  11887. "name": "Nicolas Grekas",
  11888. "email": "p@tchwork.com"
  11889. },
  11890. {
  11891. "name": "Symfony Community",
  11892. "homepage": "https://symfony.com/contributors"
  11893. }
  11894. ],
  11895. "description": "Symfony polyfill for the Iconv extension",
  11896. "homepage": "https://symfony.com",
  11897. "keywords": [
  11898. "compatibility",
  11899. "iconv",
  11900. "polyfill",
  11901. "portable",
  11902. "shim"
  11903. ],
  11904. "support": {
  11905. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  11906. },
  11907. "funding": [
  11908. {
  11909. "url": "https://symfony.com/sponsor",
  11910. "type": "custom"
  11911. },
  11912. {
  11913. "url": "https://github.com/fabpot",
  11914. "type": "github"
  11915. },
  11916. {
  11917. "url": "https://github.com/nicolas-grekas",
  11918. "type": "github"
  11919. },
  11920. {
  11921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11922. "type": "tidelift"
  11923. }
  11924. ],
  11925. "time": "2024-09-17T14:58:18+00:00"
  11926. },
  11927. {
  11928. "name": "symfony/polyfill-intl-grapheme",
  11929. "version": "v1.33.0",
  11930. "source": {
  11931. "type": "git",
  11932. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11933. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  11934. },
  11935. "dist": {
  11936. "type": "zip",
  11937. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11938. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11939. "shasum": ""
  11940. },
  11941. "require": {
  11942. "php": ">=7.2"
  11943. },
  11944. "suggest": {
  11945. "ext-intl": "For best performance"
  11946. },
  11947. "type": "library",
  11948. "extra": {
  11949. "thanks": {
  11950. "url": "https://github.com/symfony/polyfill",
  11951. "name": "symfony/polyfill"
  11952. }
  11953. },
  11954. "autoload": {
  11955. "files": [
  11956. "bootstrap.php"
  11957. ],
  11958. "psr-4": {
  11959. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11960. }
  11961. },
  11962. "notification-url": "https://packagist.org/downloads/",
  11963. "license": [
  11964. "MIT"
  11965. ],
  11966. "authors": [
  11967. {
  11968. "name": "Nicolas Grekas",
  11969. "email": "p@tchwork.com"
  11970. },
  11971. {
  11972. "name": "Symfony Community",
  11973. "homepage": "https://symfony.com/contributors"
  11974. }
  11975. ],
  11976. "description": "Symfony polyfill for intl's grapheme_* functions",
  11977. "homepage": "https://symfony.com",
  11978. "keywords": [
  11979. "compatibility",
  11980. "grapheme",
  11981. "intl",
  11982. "polyfill",
  11983. "portable",
  11984. "shim"
  11985. ],
  11986. "support": {
  11987. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  11988. },
  11989. "funding": [
  11990. {
  11991. "url": "https://symfony.com/sponsor",
  11992. "type": "custom"
  11993. },
  11994. {
  11995. "url": "https://github.com/fabpot",
  11996. "type": "github"
  11997. },
  11998. {
  11999. "url": "https://github.com/nicolas-grekas",
  12000. "type": "github"
  12001. },
  12002. {
  12003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12004. "type": "tidelift"
  12005. }
  12006. ],
  12007. "time": "2025-06-27T09:58:17+00:00"
  12008. },
  12009. {
  12010. "name": "symfony/polyfill-intl-idn",
  12011. "version": "v1.33.0",
  12012. "source": {
  12013. "type": "git",
  12014. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12015. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  12016. },
  12017. "dist": {
  12018. "type": "zip",
  12019. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12020. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12021. "shasum": ""
  12022. },
  12023. "require": {
  12024. "php": ">=7.2",
  12025. "symfony/polyfill-intl-normalizer": "^1.10"
  12026. },
  12027. "suggest": {
  12028. "ext-intl": "For best performance"
  12029. },
  12030. "type": "library",
  12031. "extra": {
  12032. "thanks": {
  12033. "url": "https://github.com/symfony/polyfill",
  12034. "name": "symfony/polyfill"
  12035. }
  12036. },
  12037. "autoload": {
  12038. "files": [
  12039. "bootstrap.php"
  12040. ],
  12041. "psr-4": {
  12042. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12043. }
  12044. },
  12045. "notification-url": "https://packagist.org/downloads/",
  12046. "license": [
  12047. "MIT"
  12048. ],
  12049. "authors": [
  12050. {
  12051. "name": "Laurent Bassin",
  12052. "email": "laurent@bassin.info"
  12053. },
  12054. {
  12055. "name": "Trevor Rowbotham",
  12056. "email": "trevor.rowbotham@pm.me"
  12057. },
  12058. {
  12059. "name": "Symfony Community",
  12060. "homepage": "https://symfony.com/contributors"
  12061. }
  12062. ],
  12063. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12064. "homepage": "https://symfony.com",
  12065. "keywords": [
  12066. "compatibility",
  12067. "idn",
  12068. "intl",
  12069. "polyfill",
  12070. "portable",
  12071. "shim"
  12072. ],
  12073. "support": {
  12074. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  12075. },
  12076. "funding": [
  12077. {
  12078. "url": "https://symfony.com/sponsor",
  12079. "type": "custom"
  12080. },
  12081. {
  12082. "url": "https://github.com/fabpot",
  12083. "type": "github"
  12084. },
  12085. {
  12086. "url": "https://github.com/nicolas-grekas",
  12087. "type": "github"
  12088. },
  12089. {
  12090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12091. "type": "tidelift"
  12092. }
  12093. ],
  12094. "time": "2024-09-10T14:38:51+00:00"
  12095. },
  12096. {
  12097. "name": "symfony/polyfill-intl-normalizer",
  12098. "version": "v1.33.0",
  12099. "source": {
  12100. "type": "git",
  12101. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12102. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12103. },
  12104. "dist": {
  12105. "type": "zip",
  12106. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12107. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12108. "shasum": ""
  12109. },
  12110. "require": {
  12111. "php": ">=7.2"
  12112. },
  12113. "suggest": {
  12114. "ext-intl": "For best performance"
  12115. },
  12116. "type": "library",
  12117. "extra": {
  12118. "thanks": {
  12119. "url": "https://github.com/symfony/polyfill",
  12120. "name": "symfony/polyfill"
  12121. }
  12122. },
  12123. "autoload": {
  12124. "files": [
  12125. "bootstrap.php"
  12126. ],
  12127. "psr-4": {
  12128. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12129. },
  12130. "classmap": [
  12131. "Resources/stubs"
  12132. ]
  12133. },
  12134. "notification-url": "https://packagist.org/downloads/",
  12135. "license": [
  12136. "MIT"
  12137. ],
  12138. "authors": [
  12139. {
  12140. "name": "Nicolas Grekas",
  12141. "email": "p@tchwork.com"
  12142. },
  12143. {
  12144. "name": "Symfony Community",
  12145. "homepage": "https://symfony.com/contributors"
  12146. }
  12147. ],
  12148. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12149. "homepage": "https://symfony.com",
  12150. "keywords": [
  12151. "compatibility",
  12152. "intl",
  12153. "normalizer",
  12154. "polyfill",
  12155. "portable",
  12156. "shim"
  12157. ],
  12158. "support": {
  12159. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  12160. },
  12161. "funding": [
  12162. {
  12163. "url": "https://symfony.com/sponsor",
  12164. "type": "custom"
  12165. },
  12166. {
  12167. "url": "https://github.com/fabpot",
  12168. "type": "github"
  12169. },
  12170. {
  12171. "url": "https://github.com/nicolas-grekas",
  12172. "type": "github"
  12173. },
  12174. {
  12175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12176. "type": "tidelift"
  12177. }
  12178. ],
  12179. "time": "2024-09-09T11:45:10+00:00"
  12180. },
  12181. {
  12182. "name": "symfony/polyfill-mbstring",
  12183. "version": "v1.33.0",
  12184. "source": {
  12185. "type": "git",
  12186. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12187. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  12188. },
  12189. "dist": {
  12190. "type": "zip",
  12191. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12192. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12193. "shasum": ""
  12194. },
  12195. "require": {
  12196. "ext-iconv": "*",
  12197. "php": ">=7.2"
  12198. },
  12199. "provide": {
  12200. "ext-mbstring": "*"
  12201. },
  12202. "suggest": {
  12203. "ext-mbstring": "For best performance"
  12204. },
  12205. "type": "library",
  12206. "extra": {
  12207. "thanks": {
  12208. "url": "https://github.com/symfony/polyfill",
  12209. "name": "symfony/polyfill"
  12210. }
  12211. },
  12212. "autoload": {
  12213. "files": [
  12214. "bootstrap.php"
  12215. ],
  12216. "psr-4": {
  12217. "Symfony\\Polyfill\\Mbstring\\": ""
  12218. }
  12219. },
  12220. "notification-url": "https://packagist.org/downloads/",
  12221. "license": [
  12222. "MIT"
  12223. ],
  12224. "authors": [
  12225. {
  12226. "name": "Nicolas Grekas",
  12227. "email": "p@tchwork.com"
  12228. },
  12229. {
  12230. "name": "Symfony Community",
  12231. "homepage": "https://symfony.com/contributors"
  12232. }
  12233. ],
  12234. "description": "Symfony polyfill for the Mbstring extension",
  12235. "homepage": "https://symfony.com",
  12236. "keywords": [
  12237. "compatibility",
  12238. "mbstring",
  12239. "polyfill",
  12240. "portable",
  12241. "shim"
  12242. ],
  12243. "support": {
  12244. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  12245. },
  12246. "funding": [
  12247. {
  12248. "url": "https://symfony.com/sponsor",
  12249. "type": "custom"
  12250. },
  12251. {
  12252. "url": "https://github.com/fabpot",
  12253. "type": "github"
  12254. },
  12255. {
  12256. "url": "https://github.com/nicolas-grekas",
  12257. "type": "github"
  12258. },
  12259. {
  12260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12261. "type": "tidelift"
  12262. }
  12263. ],
  12264. "time": "2024-12-23T08:48:59+00:00"
  12265. },
  12266. {
  12267. "name": "symfony/polyfill-php81",
  12268. "version": "v1.33.0",
  12269. "source": {
  12270. "type": "git",
  12271. "url": "https://github.com/symfony/polyfill-php81.git",
  12272. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12273. },
  12274. "dist": {
  12275. "type": "zip",
  12276. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12277. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12278. "shasum": ""
  12279. },
  12280. "require": {
  12281. "php": ">=7.2"
  12282. },
  12283. "type": "library",
  12284. "extra": {
  12285. "thanks": {
  12286. "url": "https://github.com/symfony/polyfill",
  12287. "name": "symfony/polyfill"
  12288. }
  12289. },
  12290. "autoload": {
  12291. "files": [
  12292. "bootstrap.php"
  12293. ],
  12294. "psr-4": {
  12295. "Symfony\\Polyfill\\Php81\\": ""
  12296. },
  12297. "classmap": [
  12298. "Resources/stubs"
  12299. ]
  12300. },
  12301. "notification-url": "https://packagist.org/downloads/",
  12302. "license": [
  12303. "MIT"
  12304. ],
  12305. "authors": [
  12306. {
  12307. "name": "Nicolas Grekas",
  12308. "email": "p@tchwork.com"
  12309. },
  12310. {
  12311. "name": "Symfony Community",
  12312. "homepage": "https://symfony.com/contributors"
  12313. }
  12314. ],
  12315. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12316. "homepage": "https://symfony.com",
  12317. "keywords": [
  12318. "compatibility",
  12319. "polyfill",
  12320. "portable",
  12321. "shim"
  12322. ],
  12323. "support": {
  12324. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12325. },
  12326. "funding": [
  12327. {
  12328. "url": "https://symfony.com/sponsor",
  12329. "type": "custom"
  12330. },
  12331. {
  12332. "url": "https://github.com/fabpot",
  12333. "type": "github"
  12334. },
  12335. {
  12336. "url": "https://github.com/nicolas-grekas",
  12337. "type": "github"
  12338. },
  12339. {
  12340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12341. "type": "tidelift"
  12342. }
  12343. ],
  12344. "time": "2024-09-09T11:45:10+00:00"
  12345. },
  12346. {
  12347. "name": "symfony/polyfill-php83",
  12348. "version": "v1.33.0",
  12349. "source": {
  12350. "type": "git",
  12351. "url": "https://github.com/symfony/polyfill-php83.git",
  12352. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  12353. },
  12354. "dist": {
  12355. "type": "zip",
  12356. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12357. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12358. "shasum": ""
  12359. },
  12360. "require": {
  12361. "php": ">=7.2"
  12362. },
  12363. "type": "library",
  12364. "extra": {
  12365. "thanks": {
  12366. "url": "https://github.com/symfony/polyfill",
  12367. "name": "symfony/polyfill"
  12368. }
  12369. },
  12370. "autoload": {
  12371. "files": [
  12372. "bootstrap.php"
  12373. ],
  12374. "psr-4": {
  12375. "Symfony\\Polyfill\\Php83\\": ""
  12376. },
  12377. "classmap": [
  12378. "Resources/stubs"
  12379. ]
  12380. },
  12381. "notification-url": "https://packagist.org/downloads/",
  12382. "license": [
  12383. "MIT"
  12384. ],
  12385. "authors": [
  12386. {
  12387. "name": "Nicolas Grekas",
  12388. "email": "p@tchwork.com"
  12389. },
  12390. {
  12391. "name": "Symfony Community",
  12392. "homepage": "https://symfony.com/contributors"
  12393. }
  12394. ],
  12395. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12396. "homepage": "https://symfony.com",
  12397. "keywords": [
  12398. "compatibility",
  12399. "polyfill",
  12400. "portable",
  12401. "shim"
  12402. ],
  12403. "support": {
  12404. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  12405. },
  12406. "funding": [
  12407. {
  12408. "url": "https://symfony.com/sponsor",
  12409. "type": "custom"
  12410. },
  12411. {
  12412. "url": "https://github.com/fabpot",
  12413. "type": "github"
  12414. },
  12415. {
  12416. "url": "https://github.com/nicolas-grekas",
  12417. "type": "github"
  12418. },
  12419. {
  12420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12421. "type": "tidelift"
  12422. }
  12423. ],
  12424. "time": "2025-07-08T02:45:35+00:00"
  12425. },
  12426. {
  12427. "name": "symfony/polyfill-php84",
  12428. "version": "v1.33.0",
  12429. "source": {
  12430. "type": "git",
  12431. "url": "https://github.com/symfony/polyfill-php84.git",
  12432. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12433. },
  12434. "dist": {
  12435. "type": "zip",
  12436. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12437. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12438. "shasum": ""
  12439. },
  12440. "require": {
  12441. "php": ">=7.2"
  12442. },
  12443. "type": "library",
  12444. "extra": {
  12445. "thanks": {
  12446. "url": "https://github.com/symfony/polyfill",
  12447. "name": "symfony/polyfill"
  12448. }
  12449. },
  12450. "autoload": {
  12451. "files": [
  12452. "bootstrap.php"
  12453. ],
  12454. "psr-4": {
  12455. "Symfony\\Polyfill\\Php84\\": ""
  12456. },
  12457. "classmap": [
  12458. "Resources/stubs"
  12459. ]
  12460. },
  12461. "notification-url": "https://packagist.org/downloads/",
  12462. "license": [
  12463. "MIT"
  12464. ],
  12465. "authors": [
  12466. {
  12467. "name": "Nicolas Grekas",
  12468. "email": "p@tchwork.com"
  12469. },
  12470. {
  12471. "name": "Symfony Community",
  12472. "homepage": "https://symfony.com/contributors"
  12473. }
  12474. ],
  12475. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12476. "homepage": "https://symfony.com",
  12477. "keywords": [
  12478. "compatibility",
  12479. "polyfill",
  12480. "portable",
  12481. "shim"
  12482. ],
  12483. "support": {
  12484. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12485. },
  12486. "funding": [
  12487. {
  12488. "url": "https://symfony.com/sponsor",
  12489. "type": "custom"
  12490. },
  12491. {
  12492. "url": "https://github.com/fabpot",
  12493. "type": "github"
  12494. },
  12495. {
  12496. "url": "https://github.com/nicolas-grekas",
  12497. "type": "github"
  12498. },
  12499. {
  12500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12501. "type": "tidelift"
  12502. }
  12503. ],
  12504. "time": "2025-06-24T13:30:11+00:00"
  12505. },
  12506. {
  12507. "name": "symfony/process",
  12508. "version": "v6.4.33",
  12509. "source": {
  12510. "type": "git",
  12511. "url": "https://github.com/symfony/process.git",
  12512. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  12513. },
  12514. "dist": {
  12515. "type": "zip",
  12516. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  12517. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  12518. "shasum": ""
  12519. },
  12520. "require": {
  12521. "php": ">=8.1"
  12522. },
  12523. "type": "library",
  12524. "autoload": {
  12525. "psr-4": {
  12526. "Symfony\\Component\\Process\\": ""
  12527. },
  12528. "exclude-from-classmap": [
  12529. "/Tests/"
  12530. ]
  12531. },
  12532. "notification-url": "https://packagist.org/downloads/",
  12533. "license": [
  12534. "MIT"
  12535. ],
  12536. "authors": [
  12537. {
  12538. "name": "Fabien Potencier",
  12539. "email": "fabien@symfony.com"
  12540. },
  12541. {
  12542. "name": "Symfony Community",
  12543. "homepage": "https://symfony.com/contributors"
  12544. }
  12545. ],
  12546. "description": "Executes commands in sub-processes",
  12547. "homepage": "https://symfony.com",
  12548. "support": {
  12549. "source": "https://github.com/symfony/process/tree/v6.4.33"
  12550. },
  12551. "funding": [
  12552. {
  12553. "url": "https://symfony.com/sponsor",
  12554. "type": "custom"
  12555. },
  12556. {
  12557. "url": "https://github.com/fabpot",
  12558. "type": "github"
  12559. },
  12560. {
  12561. "url": "https://github.com/nicolas-grekas",
  12562. "type": "github"
  12563. },
  12564. {
  12565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12566. "type": "tidelift"
  12567. }
  12568. ],
  12569. "time": "2026-01-23T16:02:12+00:00"
  12570. },
  12571. {
  12572. "name": "symfony/psr-http-message-bridge",
  12573. "version": "v6.4.32",
  12574. "source": {
  12575. "type": "git",
  12576. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12577. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  12578. },
  12579. "dist": {
  12580. "type": "zip",
  12581. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  12582. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  12583. "shasum": ""
  12584. },
  12585. "require": {
  12586. "php": ">=8.1",
  12587. "psr/http-message": "^1.0|^2.0",
  12588. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12589. },
  12590. "conflict": {
  12591. "php-http/discovery": "<1.15",
  12592. "symfony/http-kernel": "<6.2"
  12593. },
  12594. "require-dev": {
  12595. "nyholm/psr7": "^1.1",
  12596. "php-http/discovery": "^1.15",
  12597. "psr/log": "^1.1.4|^2|^3",
  12598. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12599. "symfony/config": "^5.4|^6.0|^7.0",
  12600. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12601. "symfony/framework-bundle": "^6.2|^7.0",
  12602. "symfony/http-kernel": "^6.2|^7.0"
  12603. },
  12604. "type": "symfony-bridge",
  12605. "autoload": {
  12606. "psr-4": {
  12607. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12608. },
  12609. "exclude-from-classmap": [
  12610. "/Tests/"
  12611. ]
  12612. },
  12613. "notification-url": "https://packagist.org/downloads/",
  12614. "license": [
  12615. "MIT"
  12616. ],
  12617. "authors": [
  12618. {
  12619. "name": "Fabien Potencier",
  12620. "email": "fabien@symfony.com"
  12621. },
  12622. {
  12623. "name": "Symfony Community",
  12624. "homepage": "https://symfony.com/contributors"
  12625. }
  12626. ],
  12627. "description": "PSR HTTP message bridge",
  12628. "homepage": "https://symfony.com",
  12629. "keywords": [
  12630. "http",
  12631. "http-message",
  12632. "psr-17",
  12633. "psr-7"
  12634. ],
  12635. "support": {
  12636. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  12637. },
  12638. "funding": [
  12639. {
  12640. "url": "https://symfony.com/sponsor",
  12641. "type": "custom"
  12642. },
  12643. {
  12644. "url": "https://github.com/fabpot",
  12645. "type": "github"
  12646. },
  12647. {
  12648. "url": "https://github.com/nicolas-grekas",
  12649. "type": "github"
  12650. },
  12651. {
  12652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12653. "type": "tidelift"
  12654. }
  12655. ],
  12656. "time": "2026-01-02T11:59:06+00:00"
  12657. },
  12658. {
  12659. "name": "symfony/routing",
  12660. "version": "v6.4.34",
  12661. "source": {
  12662. "type": "git",
  12663. "url": "https://github.com/symfony/routing.git",
  12664. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  12665. },
  12666. "dist": {
  12667. "type": "zip",
  12668. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12669. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12670. "shasum": ""
  12671. },
  12672. "require": {
  12673. "php": ">=8.1",
  12674. "symfony/deprecation-contracts": "^2.5|^3"
  12675. },
  12676. "conflict": {
  12677. "doctrine/annotations": "<1.12",
  12678. "symfony/config": "<6.2",
  12679. "symfony/dependency-injection": "<5.4",
  12680. "symfony/yaml": "<5.4"
  12681. },
  12682. "require-dev": {
  12683. "doctrine/annotations": "^1.12|^2",
  12684. "psr/log": "^1|^2|^3",
  12685. "symfony/config": "^6.2|^7.0",
  12686. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12687. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12688. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12689. "symfony/yaml": "^5.4|^6.0|^7.0"
  12690. },
  12691. "type": "library",
  12692. "autoload": {
  12693. "psr-4": {
  12694. "Symfony\\Component\\Routing\\": ""
  12695. },
  12696. "exclude-from-classmap": [
  12697. "/Tests/"
  12698. ]
  12699. },
  12700. "notification-url": "https://packagist.org/downloads/",
  12701. "license": [
  12702. "MIT"
  12703. ],
  12704. "authors": [
  12705. {
  12706. "name": "Fabien Potencier",
  12707. "email": "fabien@symfony.com"
  12708. },
  12709. {
  12710. "name": "Symfony Community",
  12711. "homepage": "https://symfony.com/contributors"
  12712. }
  12713. ],
  12714. "description": "Maps an HTTP request to a set of configuration variables",
  12715. "homepage": "https://symfony.com",
  12716. "keywords": [
  12717. "router",
  12718. "routing",
  12719. "uri",
  12720. "url"
  12721. ],
  12722. "support": {
  12723. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  12724. },
  12725. "funding": [
  12726. {
  12727. "url": "https://symfony.com/sponsor",
  12728. "type": "custom"
  12729. },
  12730. {
  12731. "url": "https://github.com/fabpot",
  12732. "type": "github"
  12733. },
  12734. {
  12735. "url": "https://github.com/nicolas-grekas",
  12736. "type": "github"
  12737. },
  12738. {
  12739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12740. "type": "tidelift"
  12741. }
  12742. ],
  12743. "time": "2026-02-24T17:34:50+00:00"
  12744. },
  12745. {
  12746. "name": "symfony/serializer",
  12747. "version": "v6.4.35",
  12748. "source": {
  12749. "type": "git",
  12750. "url": "https://github.com/symfony/serializer.git",
  12751. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  12752. },
  12753. "dist": {
  12754. "type": "zip",
  12755. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  12756. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  12757. "shasum": ""
  12758. },
  12759. "require": {
  12760. "php": ">=8.1",
  12761. "symfony/deprecation-contracts": "^2.5|^3",
  12762. "symfony/polyfill-ctype": "~1.8"
  12763. },
  12764. "conflict": {
  12765. "doctrine/annotations": "<1.12",
  12766. "phpdocumentor/reflection-docblock": "<3.2.2",
  12767. "phpdocumentor/type-resolver": "<1.4.0",
  12768. "symfony/dependency-injection": "<5.4",
  12769. "symfony/property-access": "<5.4",
  12770. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12771. "symfony/uid": "<5.4",
  12772. "symfony/validator": "<6.4",
  12773. "symfony/yaml": "<5.4"
  12774. },
  12775. "require-dev": {
  12776. "doctrine/annotations": "^1.12|^2",
  12777. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12778. "seld/jsonlint": "^1.10",
  12779. "symfony/cache": "^5.4|^6.0|^7.0",
  12780. "symfony/config": "^5.4|^6.0|^7.0",
  12781. "symfony/console": "^5.4|^6.0|^7.0",
  12782. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12783. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12784. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12785. "symfony/form": "^5.4|^6.0|^7.0",
  12786. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12787. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12788. "symfony/messenger": "^5.4|^6.0|^7.0",
  12789. "symfony/mime": "^5.4|^6.0|^7.0",
  12790. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12791. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12792. "symfony/translation-contracts": "^2.5|^3",
  12793. "symfony/uid": "^5.4|^6.0|^7.0",
  12794. "symfony/validator": "^6.4|^7.0",
  12795. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12796. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12797. "symfony/yaml": "^5.4|^6.0|^7.0"
  12798. },
  12799. "type": "library",
  12800. "autoload": {
  12801. "psr-4": {
  12802. "Symfony\\Component\\Serializer\\": ""
  12803. },
  12804. "exclude-from-classmap": [
  12805. "/Tests/"
  12806. ]
  12807. },
  12808. "notification-url": "https://packagist.org/downloads/",
  12809. "license": [
  12810. "MIT"
  12811. ],
  12812. "authors": [
  12813. {
  12814. "name": "Fabien Potencier",
  12815. "email": "fabien@symfony.com"
  12816. },
  12817. {
  12818. "name": "Symfony Community",
  12819. "homepage": "https://symfony.com/contributors"
  12820. }
  12821. ],
  12822. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12823. "homepage": "https://symfony.com",
  12824. "support": {
  12825. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  12826. },
  12827. "funding": [
  12828. {
  12829. "url": "https://symfony.com/sponsor",
  12830. "type": "custom"
  12831. },
  12832. {
  12833. "url": "https://github.com/fabpot",
  12834. "type": "github"
  12835. },
  12836. {
  12837. "url": "https://github.com/nicolas-grekas",
  12838. "type": "github"
  12839. },
  12840. {
  12841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12842. "type": "tidelift"
  12843. }
  12844. ],
  12845. "time": "2026-03-06T11:03:24+00:00"
  12846. },
  12847. {
  12848. "name": "symfony/service-contracts",
  12849. "version": "v3.6.1",
  12850. "source": {
  12851. "type": "git",
  12852. "url": "https://github.com/symfony/service-contracts.git",
  12853. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  12854. },
  12855. "dist": {
  12856. "type": "zip",
  12857. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  12858. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  12859. "shasum": ""
  12860. },
  12861. "require": {
  12862. "php": ">=8.1",
  12863. "psr/container": "^1.1|^2.0",
  12864. "symfony/deprecation-contracts": "^2.5|^3"
  12865. },
  12866. "conflict": {
  12867. "ext-psr": "<1.1|>=2"
  12868. },
  12869. "type": "library",
  12870. "extra": {
  12871. "thanks": {
  12872. "url": "https://github.com/symfony/contracts",
  12873. "name": "symfony/contracts"
  12874. },
  12875. "branch-alias": {
  12876. "dev-main": "3.6-dev"
  12877. }
  12878. },
  12879. "autoload": {
  12880. "psr-4": {
  12881. "Symfony\\Contracts\\Service\\": ""
  12882. },
  12883. "exclude-from-classmap": [
  12884. "/Test/"
  12885. ]
  12886. },
  12887. "notification-url": "https://packagist.org/downloads/",
  12888. "license": [
  12889. "MIT"
  12890. ],
  12891. "authors": [
  12892. {
  12893. "name": "Nicolas Grekas",
  12894. "email": "p@tchwork.com"
  12895. },
  12896. {
  12897. "name": "Symfony Community",
  12898. "homepage": "https://symfony.com/contributors"
  12899. }
  12900. ],
  12901. "description": "Generic abstractions related to writing services",
  12902. "homepage": "https://symfony.com",
  12903. "keywords": [
  12904. "abstractions",
  12905. "contracts",
  12906. "decoupling",
  12907. "interfaces",
  12908. "interoperability",
  12909. "standards"
  12910. ],
  12911. "support": {
  12912. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  12913. },
  12914. "funding": [
  12915. {
  12916. "url": "https://symfony.com/sponsor",
  12917. "type": "custom"
  12918. },
  12919. {
  12920. "url": "https://github.com/fabpot",
  12921. "type": "github"
  12922. },
  12923. {
  12924. "url": "https://github.com/nicolas-grekas",
  12925. "type": "github"
  12926. },
  12927. {
  12928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12929. "type": "tidelift"
  12930. }
  12931. ],
  12932. "time": "2025-07-15T11:30:57+00:00"
  12933. },
  12934. {
  12935. "name": "symfony/string",
  12936. "version": "v6.4.34",
  12937. "source": {
  12938. "type": "git",
  12939. "url": "https://github.com/symfony/string.git",
  12940. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  12941. },
  12942. "dist": {
  12943. "type": "zip",
  12944. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12945. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12946. "shasum": ""
  12947. },
  12948. "require": {
  12949. "php": ">=8.1",
  12950. "symfony/polyfill-ctype": "~1.8",
  12951. "symfony/polyfill-intl-grapheme": "~1.0",
  12952. "symfony/polyfill-intl-normalizer": "~1.0",
  12953. "symfony/polyfill-mbstring": "~1.0"
  12954. },
  12955. "conflict": {
  12956. "symfony/translation-contracts": "<2.5"
  12957. },
  12958. "require-dev": {
  12959. "symfony/http-client": "^5.4|^6.0|^7.0",
  12960. "symfony/intl": "^6.2|^7.0",
  12961. "symfony/translation-contracts": "^2.5|^3.0",
  12962. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12963. },
  12964. "type": "library",
  12965. "autoload": {
  12966. "files": [
  12967. "Resources/functions.php"
  12968. ],
  12969. "psr-4": {
  12970. "Symfony\\Component\\String\\": ""
  12971. },
  12972. "exclude-from-classmap": [
  12973. "/Tests/"
  12974. ]
  12975. },
  12976. "notification-url": "https://packagist.org/downloads/",
  12977. "license": [
  12978. "MIT"
  12979. ],
  12980. "authors": [
  12981. {
  12982. "name": "Nicolas Grekas",
  12983. "email": "p@tchwork.com"
  12984. },
  12985. {
  12986. "name": "Symfony Community",
  12987. "homepage": "https://symfony.com/contributors"
  12988. }
  12989. ],
  12990. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12991. "homepage": "https://symfony.com",
  12992. "keywords": [
  12993. "grapheme",
  12994. "i18n",
  12995. "string",
  12996. "unicode",
  12997. "utf-8",
  12998. "utf8"
  12999. ],
  13000. "support": {
  13001. "source": "https://github.com/symfony/string/tree/v6.4.34"
  13002. },
  13003. "funding": [
  13004. {
  13005. "url": "https://symfony.com/sponsor",
  13006. "type": "custom"
  13007. },
  13008. {
  13009. "url": "https://github.com/fabpot",
  13010. "type": "github"
  13011. },
  13012. {
  13013. "url": "https://github.com/nicolas-grekas",
  13014. "type": "github"
  13015. },
  13016. {
  13017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13018. "type": "tidelift"
  13019. }
  13020. ],
  13021. "time": "2026-02-08T20:44:54+00:00"
  13022. },
  13023. {
  13024. "name": "symfony/translation-contracts",
  13025. "version": "v3.6.1",
  13026. "source": {
  13027. "type": "git",
  13028. "url": "https://github.com/symfony/translation-contracts.git",
  13029. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  13030. },
  13031. "dist": {
  13032. "type": "zip",
  13033. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  13034. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  13035. "shasum": ""
  13036. },
  13037. "require": {
  13038. "php": ">=8.1"
  13039. },
  13040. "type": "library",
  13041. "extra": {
  13042. "thanks": {
  13043. "url": "https://github.com/symfony/contracts",
  13044. "name": "symfony/contracts"
  13045. },
  13046. "branch-alias": {
  13047. "dev-main": "3.6-dev"
  13048. }
  13049. },
  13050. "autoload": {
  13051. "psr-4": {
  13052. "Symfony\\Contracts\\Translation\\": ""
  13053. },
  13054. "exclude-from-classmap": [
  13055. "/Test/"
  13056. ]
  13057. },
  13058. "notification-url": "https://packagist.org/downloads/",
  13059. "license": [
  13060. "MIT"
  13061. ],
  13062. "authors": [
  13063. {
  13064. "name": "Nicolas Grekas",
  13065. "email": "p@tchwork.com"
  13066. },
  13067. {
  13068. "name": "Symfony Community",
  13069. "homepage": "https://symfony.com/contributors"
  13070. }
  13071. ],
  13072. "description": "Generic abstractions related to translation",
  13073. "homepage": "https://symfony.com",
  13074. "keywords": [
  13075. "abstractions",
  13076. "contracts",
  13077. "decoupling",
  13078. "interfaces",
  13079. "interoperability",
  13080. "standards"
  13081. ],
  13082. "support": {
  13083. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  13084. },
  13085. "funding": [
  13086. {
  13087. "url": "https://symfony.com/sponsor",
  13088. "type": "custom"
  13089. },
  13090. {
  13091. "url": "https://github.com/fabpot",
  13092. "type": "github"
  13093. },
  13094. {
  13095. "url": "https://github.com/nicolas-grekas",
  13096. "type": "github"
  13097. },
  13098. {
  13099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13100. "type": "tidelift"
  13101. }
  13102. ],
  13103. "time": "2025-07-15T13:41:35+00:00"
  13104. },
  13105. {
  13106. "name": "symfony/validator",
  13107. "version": "v6.4.35",
  13108. "source": {
  13109. "type": "git",
  13110. "url": "https://github.com/symfony/validator.git",
  13111. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  13112. },
  13113. "dist": {
  13114. "type": "zip",
  13115. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13116. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13117. "shasum": ""
  13118. },
  13119. "require": {
  13120. "php": ">=8.1",
  13121. "symfony/deprecation-contracts": "^2.5|^3",
  13122. "symfony/polyfill-ctype": "~1.8",
  13123. "symfony/polyfill-mbstring": "~1.0",
  13124. "symfony/polyfill-php83": "^1.27",
  13125. "symfony/translation-contracts": "^2.5|^3"
  13126. },
  13127. "conflict": {
  13128. "doctrine/annotations": "<1.13",
  13129. "doctrine/lexer": "<1.1",
  13130. "symfony/dependency-injection": "<5.4",
  13131. "symfony/expression-language": "<5.4",
  13132. "symfony/http-kernel": "<5.4",
  13133. "symfony/intl": "<5.4",
  13134. "symfony/property-info": "<5.4",
  13135. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13136. "symfony/yaml": "<5.4"
  13137. },
  13138. "require-dev": {
  13139. "doctrine/annotations": "^1.13|^2",
  13140. "egulias/email-validator": "^2.1.10|^3|^4",
  13141. "symfony/cache": "^5.4|^6.0|^7.0",
  13142. "symfony/config": "^5.4|^6.0|^7.0",
  13143. "symfony/console": "^5.4|^6.0|^7.0",
  13144. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13145. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13146. "symfony/finder": "^5.4|^6.0|^7.0",
  13147. "symfony/http-client": "^5.4|^6.0|^7.0",
  13148. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13149. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13150. "symfony/intl": "^5.4|^6.0|^7.0",
  13151. "symfony/mime": "^5.4|^6.0|^7.0",
  13152. "symfony/property-access": "^5.4|^6.0|^7.0",
  13153. "symfony/property-info": "^5.4|^6.0|^7.0",
  13154. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13155. "symfony/yaml": "^5.4|^6.0|^7.0"
  13156. },
  13157. "type": "library",
  13158. "autoload": {
  13159. "psr-4": {
  13160. "Symfony\\Component\\Validator\\": ""
  13161. },
  13162. "exclude-from-classmap": [
  13163. "/Tests/",
  13164. "/Resources/bin/"
  13165. ]
  13166. },
  13167. "notification-url": "https://packagist.org/downloads/",
  13168. "license": [
  13169. "MIT"
  13170. ],
  13171. "authors": [
  13172. {
  13173. "name": "Fabien Potencier",
  13174. "email": "fabien@symfony.com"
  13175. },
  13176. {
  13177. "name": "Symfony Community",
  13178. "homepage": "https://symfony.com/contributors"
  13179. }
  13180. ],
  13181. "description": "Provides tools to validate values",
  13182. "homepage": "https://symfony.com",
  13183. "support": {
  13184. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  13185. },
  13186. "funding": [
  13187. {
  13188. "url": "https://symfony.com/sponsor",
  13189. "type": "custom"
  13190. },
  13191. {
  13192. "url": "https://github.com/fabpot",
  13193. "type": "github"
  13194. },
  13195. {
  13196. "url": "https://github.com/nicolas-grekas",
  13197. "type": "github"
  13198. },
  13199. {
  13200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13201. "type": "tidelift"
  13202. }
  13203. ],
  13204. "time": "2026-03-02T17:53:19+00:00"
  13205. },
  13206. {
  13207. "name": "symfony/var-dumper",
  13208. "version": "v6.4.32",
  13209. "source": {
  13210. "type": "git",
  13211. "url": "https://github.com/symfony/var-dumper.git",
  13212. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  13213. },
  13214. "dist": {
  13215. "type": "zip",
  13216. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  13217. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  13218. "shasum": ""
  13219. },
  13220. "require": {
  13221. "php": ">=8.1",
  13222. "symfony/deprecation-contracts": "^2.5|^3",
  13223. "symfony/polyfill-mbstring": "~1.0"
  13224. },
  13225. "conflict": {
  13226. "symfony/console": "<5.4"
  13227. },
  13228. "require-dev": {
  13229. "symfony/console": "^5.4|^6.0|^7.0",
  13230. "symfony/error-handler": "^6.3|^7.0",
  13231. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13232. "symfony/process": "^5.4|^6.0|^7.0",
  13233. "symfony/uid": "^5.4|^6.0|^7.0",
  13234. "twig/twig": "^2.13|^3.0.4"
  13235. },
  13236. "bin": [
  13237. "Resources/bin/var-dump-server"
  13238. ],
  13239. "type": "library",
  13240. "autoload": {
  13241. "files": [
  13242. "Resources/functions/dump.php"
  13243. ],
  13244. "psr-4": {
  13245. "Symfony\\Component\\VarDumper\\": ""
  13246. },
  13247. "exclude-from-classmap": [
  13248. "/Tests/"
  13249. ]
  13250. },
  13251. "notification-url": "https://packagist.org/downloads/",
  13252. "license": [
  13253. "MIT"
  13254. ],
  13255. "authors": [
  13256. {
  13257. "name": "Nicolas Grekas",
  13258. "email": "p@tchwork.com"
  13259. },
  13260. {
  13261. "name": "Symfony Community",
  13262. "homepage": "https://symfony.com/contributors"
  13263. }
  13264. ],
  13265. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13266. "homepage": "https://symfony.com",
  13267. "keywords": [
  13268. "debug",
  13269. "dump"
  13270. ],
  13271. "support": {
  13272. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  13273. },
  13274. "funding": [
  13275. {
  13276. "url": "https://symfony.com/sponsor",
  13277. "type": "custom"
  13278. },
  13279. {
  13280. "url": "https://github.com/fabpot",
  13281. "type": "github"
  13282. },
  13283. {
  13284. "url": "https://github.com/nicolas-grekas",
  13285. "type": "github"
  13286. },
  13287. {
  13288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13289. "type": "tidelift"
  13290. }
  13291. ],
  13292. "time": "2026-01-01T13:34:06+00:00"
  13293. },
  13294. {
  13295. "name": "symfony/var-exporter",
  13296. "version": "v6.4.26",
  13297. "source": {
  13298. "type": "git",
  13299. "url": "https://github.com/symfony/var-exporter.git",
  13300. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13301. },
  13302. "dist": {
  13303. "type": "zip",
  13304. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13305. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13306. "shasum": ""
  13307. },
  13308. "require": {
  13309. "php": ">=8.1",
  13310. "symfony/deprecation-contracts": "^2.5|^3"
  13311. },
  13312. "require-dev": {
  13313. "symfony/property-access": "^6.4|^7.0",
  13314. "symfony/serializer": "^6.4|^7.0",
  13315. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13316. },
  13317. "type": "library",
  13318. "autoload": {
  13319. "psr-4": {
  13320. "Symfony\\Component\\VarExporter\\": ""
  13321. },
  13322. "exclude-from-classmap": [
  13323. "/Tests/"
  13324. ]
  13325. },
  13326. "notification-url": "https://packagist.org/downloads/",
  13327. "license": [
  13328. "MIT"
  13329. ],
  13330. "authors": [
  13331. {
  13332. "name": "Nicolas Grekas",
  13333. "email": "p@tchwork.com"
  13334. },
  13335. {
  13336. "name": "Symfony Community",
  13337. "homepage": "https://symfony.com/contributors"
  13338. }
  13339. ],
  13340. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13341. "homepage": "https://symfony.com",
  13342. "keywords": [
  13343. "clone",
  13344. "construct",
  13345. "export",
  13346. "hydrate",
  13347. "instantiate",
  13348. "lazy-loading",
  13349. "proxy",
  13350. "serialize"
  13351. ],
  13352. "support": {
  13353. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13354. },
  13355. "funding": [
  13356. {
  13357. "url": "https://symfony.com/sponsor",
  13358. "type": "custom"
  13359. },
  13360. {
  13361. "url": "https://github.com/fabpot",
  13362. "type": "github"
  13363. },
  13364. {
  13365. "url": "https://github.com/nicolas-grekas",
  13366. "type": "github"
  13367. },
  13368. {
  13369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13370. "type": "tidelift"
  13371. }
  13372. ],
  13373. "time": "2025-09-11T09:57:09+00:00"
  13374. },
  13375. {
  13376. "name": "symfony/yaml",
  13377. "version": "v6.4.34",
  13378. "source": {
  13379. "type": "git",
  13380. "url": "https://github.com/symfony/yaml.git",
  13381. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  13382. },
  13383. "dist": {
  13384. "type": "zip",
  13385. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13386. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13387. "shasum": ""
  13388. },
  13389. "require": {
  13390. "php": ">=8.1",
  13391. "symfony/deprecation-contracts": "^2.5|^3",
  13392. "symfony/polyfill-ctype": "^1.8"
  13393. },
  13394. "conflict": {
  13395. "symfony/console": "<5.4"
  13396. },
  13397. "require-dev": {
  13398. "symfony/console": "^5.4|^6.0|^7.0"
  13399. },
  13400. "bin": [
  13401. "Resources/bin/yaml-lint"
  13402. ],
  13403. "type": "library",
  13404. "autoload": {
  13405. "psr-4": {
  13406. "Symfony\\Component\\Yaml\\": ""
  13407. },
  13408. "exclude-from-classmap": [
  13409. "/Tests/"
  13410. ]
  13411. },
  13412. "notification-url": "https://packagist.org/downloads/",
  13413. "license": [
  13414. "MIT"
  13415. ],
  13416. "authors": [
  13417. {
  13418. "name": "Fabien Potencier",
  13419. "email": "fabien@symfony.com"
  13420. },
  13421. {
  13422. "name": "Symfony Community",
  13423. "homepage": "https://symfony.com/contributors"
  13424. }
  13425. ],
  13426. "description": "Loads and dumps YAML files",
  13427. "homepage": "https://symfony.com",
  13428. "support": {
  13429. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  13430. },
  13431. "funding": [
  13432. {
  13433. "url": "https://symfony.com/sponsor",
  13434. "type": "custom"
  13435. },
  13436. {
  13437. "url": "https://github.com/fabpot",
  13438. "type": "github"
  13439. },
  13440. {
  13441. "url": "https://github.com/nicolas-grekas",
  13442. "type": "github"
  13443. },
  13444. {
  13445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13446. "type": "tidelift"
  13447. }
  13448. ],
  13449. "time": "2026-02-06T18:32:11+00:00"
  13450. },
  13451. {
  13452. "name": "twig/twig",
  13453. "version": "v3.22.2",
  13454. "source": {
  13455. "type": "git",
  13456. "url": "https://github.com/twigphp/Twig.git",
  13457. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  13458. },
  13459. "dist": {
  13460. "type": "zip",
  13461. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13462. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13463. "shasum": ""
  13464. },
  13465. "require": {
  13466. "php": ">=8.1.0",
  13467. "symfony/deprecation-contracts": "^2.5|^3",
  13468. "symfony/polyfill-ctype": "^1.8",
  13469. "symfony/polyfill-mbstring": "^1.3"
  13470. },
  13471. "require-dev": {
  13472. "phpstan/phpstan": "^2.0",
  13473. "psr/container": "^1.0|^2.0",
  13474. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13475. },
  13476. "type": "library",
  13477. "autoload": {
  13478. "files": [
  13479. "src/Resources/core.php",
  13480. "src/Resources/debug.php",
  13481. "src/Resources/escaper.php",
  13482. "src/Resources/string_loader.php"
  13483. ],
  13484. "psr-4": {
  13485. "Twig\\": "src/"
  13486. }
  13487. },
  13488. "notification-url": "https://packagist.org/downloads/",
  13489. "license": [
  13490. "BSD-3-Clause"
  13491. ],
  13492. "authors": [
  13493. {
  13494. "name": "Fabien Potencier",
  13495. "email": "fabien@symfony.com",
  13496. "homepage": "http://fabien.potencier.org",
  13497. "role": "Lead Developer"
  13498. },
  13499. {
  13500. "name": "Twig Team",
  13501. "role": "Contributors"
  13502. },
  13503. {
  13504. "name": "Armin Ronacher",
  13505. "email": "armin.ronacher@active-4.com",
  13506. "role": "Project Founder"
  13507. }
  13508. ],
  13509. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13510. "homepage": "https://twig.symfony.com",
  13511. "keywords": [
  13512. "templating"
  13513. ],
  13514. "support": {
  13515. "issues": "https://github.com/twigphp/Twig/issues",
  13516. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  13517. },
  13518. "funding": [
  13519. {
  13520. "url": "https://github.com/fabpot",
  13521. "type": "github"
  13522. },
  13523. {
  13524. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13525. "type": "tidelift"
  13526. }
  13527. ],
  13528. "time": "2025-12-14T11:28:47+00:00"
  13529. },
  13530. {
  13531. "name": "webflo/drupal-finder",
  13532. "version": "1.3.1",
  13533. "source": {
  13534. "type": "git",
  13535. "url": "https://github.com/webflo/drupal-finder.git",
  13536. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13537. },
  13538. "dist": {
  13539. "type": "zip",
  13540. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13541. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13542. "shasum": ""
  13543. },
  13544. "require": {
  13545. "composer-runtime-api": "^2.2",
  13546. "php": ">=8.1"
  13547. },
  13548. "require-dev": {
  13549. "mikey179/vfsstream": "^1.6",
  13550. "phpunit/phpunit": "^10.4",
  13551. "symfony/process": "^6.4"
  13552. },
  13553. "type": "library",
  13554. "autoload": {
  13555. "psr-4": {
  13556. "DrupalFinder\\": "src/"
  13557. }
  13558. },
  13559. "notification-url": "https://packagist.org/downloads/",
  13560. "license": [
  13561. "GPL-2.0-or-later"
  13562. ],
  13563. "authors": [
  13564. {
  13565. "name": "Florian Weber",
  13566. "email": "florian@webflo.org"
  13567. }
  13568. ],
  13569. "description": "Helper class to locate a Drupal installation.",
  13570. "support": {
  13571. "issues": "https://github.com/webflo/drupal-finder/issues",
  13572. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13573. },
  13574. "time": "2024-06-28T13:45:36+00:00"
  13575. },
  13576. {
  13577. "name": "wikimedia/composer-merge-plugin",
  13578. "version": "v2.1.0",
  13579. "source": {
  13580. "type": "git",
  13581. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13582. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13583. },
  13584. "dist": {
  13585. "type": "zip",
  13586. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13587. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13588. "shasum": ""
  13589. },
  13590. "require": {
  13591. "composer-plugin-api": "^1.1||^2.0",
  13592. "php": ">=7.2.0"
  13593. },
  13594. "require-dev": {
  13595. "composer/composer": "^1.1||^2.0",
  13596. "ext-json": "*",
  13597. "mediawiki/mediawiki-phan-config": "0.11.1",
  13598. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13599. "phpspec/prophecy": "~1.15.0",
  13600. "phpunit/phpunit": "^8.5||^9.0",
  13601. "squizlabs/php_codesniffer": "~3.7.1"
  13602. },
  13603. "type": "composer-plugin",
  13604. "extra": {
  13605. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13606. "branch-alias": {
  13607. "dev-master": "2.x-dev"
  13608. }
  13609. },
  13610. "autoload": {
  13611. "psr-4": {
  13612. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13613. }
  13614. },
  13615. "notification-url": "https://packagist.org/downloads/",
  13616. "license": [
  13617. "MIT"
  13618. ],
  13619. "authors": [
  13620. {
  13621. "name": "Bryan Davis",
  13622. "email": "bd808@wikimedia.org"
  13623. }
  13624. ],
  13625. "description": "Composer plugin to merge multiple composer.json files",
  13626. "support": {
  13627. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13628. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13629. },
  13630. "time": "2023-04-15T19:07:00+00:00"
  13631. },
  13632. {
  13633. "name": "willdurand/geocoder",
  13634. "version": "4.6.0",
  13635. "source": {
  13636. "type": "git",
  13637. "url": "https://github.com/geocoder-php/php-common.git",
  13638. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1"
  13639. },
  13640. "dist": {
  13641. "type": "zip",
  13642. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13643. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13644. "shasum": ""
  13645. },
  13646. "require": {
  13647. "php": "^7.4 || ^8.0"
  13648. },
  13649. "require-dev": {
  13650. "nyholm/nsa": "^1.1",
  13651. "phpunit/phpunit": "^9.5",
  13652. "symfony/stopwatch": "~2.5"
  13653. },
  13654. "suggest": {
  13655. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13656. },
  13657. "type": "library",
  13658. "extra": {
  13659. "branch-alias": {
  13660. "dev-master": "4.1-dev"
  13661. }
  13662. },
  13663. "autoload": {
  13664. "psr-4": {
  13665. "Geocoder\\": ""
  13666. },
  13667. "exclude-from-classmap": [
  13668. "/Tests/"
  13669. ]
  13670. },
  13671. "notification-url": "https://packagist.org/downloads/",
  13672. "license": [
  13673. "MIT"
  13674. ],
  13675. "authors": [
  13676. {
  13677. "name": "William Durand",
  13678. "email": "william.durand1@gmail.com"
  13679. }
  13680. ],
  13681. "description": "Common files for PHP Geocoder",
  13682. "homepage": "http://geocoder-php.org",
  13683. "keywords": [
  13684. "abstraction",
  13685. "geocoder",
  13686. "geocoding",
  13687. "geoip"
  13688. ],
  13689. "support": {
  13690. "source": "https://github.com/geocoder-php/php-common/tree/4.6.0"
  13691. },
  13692. "time": "2022-07-30T11:09:43+00:00"
  13693. }
  13694. ],
  13695. "packages-dev": [],
  13696. "aliases": [],
  13697. "minimum-stability": "stable",
  13698. "stability-flags": {
  13699. "drupal/advanced_text_formatter": 5,
  13700. "drupal/computed_token_field": 10,
  13701. "drupal/config_update": 15,
  13702. "drupal/context": 5,
  13703. "drupal/date_range_formatter": 20,
  13704. "drupal/email_registration": 5,
  13705. "drupal/entity_clone": 20,
  13706. "drupal/inline_entity_form": 5,
  13707. "drupal/page_manager": 5,
  13708. "drupal/pathologic": 15,
  13709. "drupal/smtp": 10,
  13710. "drupal/synonyms": 10,
  13711. "drupal/translation_views": 15,
  13712. "drupal/ultimate_cron": 15
  13713. },
  13714. "prefer-stable": true,
  13715. "prefer-lowest": false,
  13716. "platform": {},
  13717. "platform-dev": {},
  13718. "plugin-api-version": "2.9.0"
  13719. }