composer.lock 505 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "921fe83cc519f8269ec5496e65f8e3b7",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  62. },
  63. "time": "2025-03-13T08:50:04+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "clue/stream-filter",
  127. "version": "v1.7.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/clue/stream-filter.git",
  131. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  136. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3"
  141. },
  142. "require-dev": {
  143. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  144. },
  145. "type": "library",
  146. "autoload": {
  147. "files": [
  148. "src/functions_include.php"
  149. ],
  150. "psr-4": {
  151. "Clue\\StreamFilter\\": "src/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "Christian Lück",
  161. "email": "christian@clue.engineering"
  162. }
  163. ],
  164. "description": "A simple and modern approach to stream filtering in PHP",
  165. "homepage": "https://github.com/clue/stream-filter",
  166. "keywords": [
  167. "bucket brigade",
  168. "callback",
  169. "filter",
  170. "php_user_filter",
  171. "stream",
  172. "stream_filter_append",
  173. "stream_filter_register"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/clue/stream-filter/issues",
  177. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  178. },
  179. "funding": [
  180. {
  181. "url": "https://clue.engineering/support",
  182. "type": "custom"
  183. },
  184. {
  185. "url": "https://github.com/clue",
  186. "type": "github"
  187. }
  188. ],
  189. "time": "2023-12-20T15:40:13+00:00"
  190. },
  191. {
  192. "name": "commerceguys/addressing",
  193. "version": "v2.2.4",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda",
  202. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.6 || ^2.0",
  207. "php": ">=8.0"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.11",
  212. "phpunit/phpunit": "^9.6",
  213. "squizlabs/php_codesniffer": "^3.7",
  214. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "2.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "CommerceGuys\\Addressing\\": "src"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Bojan Zivanovic"
  237. },
  238. {
  239. "name": "Damien Tournoud"
  240. }
  241. ],
  242. "description": "Addressing library powered by CLDR and Google's address data.",
  243. "keywords": [
  244. "address",
  245. "internationalization",
  246. "localization",
  247. "postal"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/commerceguys/addressing/issues",
  251. "source": "https://github.com/commerceguys/addressing/tree/v2.2.4"
  252. },
  253. "time": "2025-01-13T16:03:24+00:00"
  254. },
  255. {
  256. "name": "components/highlightjs",
  257. "version": "9.7.0",
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  261. },
  262. "type": "drupal-library"
  263. },
  264. {
  265. "name": "composer/installers",
  266. "version": "v1.12.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/installers.git",
  270. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  275. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "composer-plugin-api": "^1.0 || ^2.0"
  280. },
  281. "replace": {
  282. "roundcube/plugin-installer": "*",
  283. "shama/baton": "*"
  284. },
  285. "require-dev": {
  286. "composer/composer": "1.6.* || ^2.0",
  287. "composer/semver": "^1 || ^3",
  288. "phpstan/phpstan": "^0.12.55",
  289. "phpstan/phpstan-phpunit": "^0.12.16",
  290. "symfony/phpunit-bridge": "^4.2 || ^5",
  291. "symfony/process": "^2.3"
  292. },
  293. "type": "composer-plugin",
  294. "extra": {
  295. "class": "Composer\\Installers\\Plugin",
  296. "branch-alias": {
  297. "dev-main": "1.x-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Composer\\Installers\\": "src/Composer/Installers"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Kyle Robinson Young",
  312. "email": "kyle@dontkry.com",
  313. "homepage": "https://github.com/shama"
  314. }
  315. ],
  316. "description": "A multi-framework Composer library installer",
  317. "homepage": "https://composer.github.io/installers/",
  318. "keywords": [
  319. "Craft",
  320. "Dolibarr",
  321. "Eliasis",
  322. "Hurad",
  323. "ImageCMS",
  324. "Kanboard",
  325. "Lan Management System",
  326. "MODX Evo",
  327. "MantisBT",
  328. "Mautic",
  329. "Maya",
  330. "OXID",
  331. "Plentymarkets",
  332. "Porto",
  333. "RadPHP",
  334. "SMF",
  335. "Starbug",
  336. "Thelia",
  337. "Whmcs",
  338. "WolfCMS",
  339. "agl",
  340. "aimeos",
  341. "annotatecms",
  342. "attogram",
  343. "bitrix",
  344. "cakephp",
  345. "chef",
  346. "cockpit",
  347. "codeigniter",
  348. "concrete5",
  349. "croogo",
  350. "dokuwiki",
  351. "drupal",
  352. "eZ Platform",
  353. "elgg",
  354. "expressionengine",
  355. "fuelphp",
  356. "grav",
  357. "installer",
  358. "itop",
  359. "joomla",
  360. "known",
  361. "kohana",
  362. "laravel",
  363. "lavalite",
  364. "lithium",
  365. "magento",
  366. "majima",
  367. "mako",
  368. "mediawiki",
  369. "miaoxing",
  370. "modulework",
  371. "modx",
  372. "moodle",
  373. "osclass",
  374. "pantheon",
  375. "phpbb",
  376. "piwik",
  377. "ppi",
  378. "processwire",
  379. "puppet",
  380. "pxcms",
  381. "reindex",
  382. "roundcube",
  383. "shopware",
  384. "silverstripe",
  385. "sydes",
  386. "sylius",
  387. "symfony",
  388. "tastyigniter",
  389. "typo3",
  390. "wordpress",
  391. "yawik",
  392. "zend",
  393. "zikula"
  394. ],
  395. "support": {
  396. "issues": "https://github.com/composer/installers/issues",
  397. "source": "https://github.com/composer/installers/tree/v1.12.0"
  398. },
  399. "funding": [
  400. {
  401. "url": "https://packagist.com",
  402. "type": "custom"
  403. },
  404. {
  405. "url": "https://github.com/composer",
  406. "type": "github"
  407. },
  408. {
  409. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  410. "type": "tidelift"
  411. }
  412. ],
  413. "time": "2021-09-13T08:19:44+00:00"
  414. },
  415. {
  416. "name": "composer/semver",
  417. "version": "3.4.4",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/composer/semver.git",
  421. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  426. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": "^5.3.2 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpstan/phpstan": "^1.11",
  434. "symfony/phpunit-bridge": "^3 || ^7"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-main": "3.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Composer\\Semver\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Nils Adermann",
  454. "email": "naderman@naderman.de",
  455. "homepage": "http://www.naderman.de"
  456. },
  457. {
  458. "name": "Jordi Boggiano",
  459. "email": "j.boggiano@seld.be",
  460. "homepage": "http://seld.be"
  461. },
  462. {
  463. "name": "Rob Bast",
  464. "email": "rob.bast@gmail.com",
  465. "homepage": "http://robbast.nl"
  466. }
  467. ],
  468. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  469. "keywords": [
  470. "semantic",
  471. "semver",
  472. "validation",
  473. "versioning"
  474. ],
  475. "support": {
  476. "irc": "ircs://irc.libera.chat:6697/composer",
  477. "issues": "https://github.com/composer/semver/issues",
  478. "source": "https://github.com/composer/semver/tree/3.4.4"
  479. },
  480. "funding": [
  481. {
  482. "url": "https://packagist.com",
  483. "type": "custom"
  484. },
  485. {
  486. "url": "https://github.com/composer",
  487. "type": "github"
  488. }
  489. ],
  490. "time": "2025-08-20T19:15:30+00:00"
  491. },
  492. {
  493. "name": "consolidation/annotated-command",
  494. "version": "4.10.4",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/consolidation/annotated-command.git",
  498. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  503. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "consolidation/output-formatters": "^4.3.1",
  508. "php": ">=7.1.3",
  509. "psr/log": "^1 || ^2 || ^3",
  510. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  511. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  512. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  513. },
  514. "require-dev": {
  515. "composer-runtime-api": "^2.0",
  516. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  517. "squizlabs/php_codesniffer": "^3",
  518. "yoast/phpunit-polyfills": "^0.2.0"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "branch-alias": {
  523. "dev-main": "4.x-dev"
  524. }
  525. },
  526. "autoload": {
  527. "psr-4": {
  528. "Consolidation\\AnnotatedCommand\\": "src"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Greg Anderson",
  538. "email": "greg.1.anderson@greenknowe.org"
  539. }
  540. ],
  541. "description": "Initialize Symfony Console commands from annotated command class methods.",
  542. "support": {
  543. "issues": "https://github.com/consolidation/annotated-command/issues",
  544. "source": "https://github.com/consolidation/annotated-command/tree/4.10.4"
  545. },
  546. "time": "2025-11-14T22:57:49+00:00"
  547. },
  548. {
  549. "name": "consolidation/config",
  550. "version": "3.2.0",
  551. "source": {
  552. "type": "git",
  553. "url": "https://github.com/consolidation/config.git",
  554. "reference": "797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84"
  555. },
  556. "dist": {
  557. "type": "zip",
  558. "url": "https://api.github.com/repos/consolidation/config/zipball/797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84",
  559. "reference": "797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84",
  560. "shasum": ""
  561. },
  562. "require": {
  563. "dflydev/dot-access-data": "^3",
  564. "grasmash/expander": "^3",
  565. "php": ">=8.2.0",
  566. "symfony/event-dispatcher": "^6 || ^7"
  567. },
  568. "require-dev": {
  569. "ext-json": "*",
  570. "phpunit/phpunit": "^9",
  571. "squizlabs/php_codesniffer": "^3",
  572. "symfony/console": "^7",
  573. "symfony/yaml": "^7",
  574. "yoast/phpunit-polyfills": "^1"
  575. },
  576. "suggest": {
  577. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  578. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-main": "3.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Consolidation\\Config\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Greg Anderson",
  598. "email": "greg.1.anderson@greenknowe.org"
  599. }
  600. ],
  601. "description": "Provide configuration services for a commandline tool.",
  602. "support": {
  603. "issues": "https://github.com/consolidation/config/issues",
  604. "source": "https://github.com/consolidation/config/tree/3.2.0"
  605. },
  606. "time": "2025-11-14T18:44:25+00:00"
  607. },
  608. {
  609. "name": "consolidation/filter-via-dot-access-data",
  610. "version": "2.0.3",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  614. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  619. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  620. "shasum": ""
  621. },
  622. "require": {
  623. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  624. "php": ">=7.1.3"
  625. },
  626. "require-dev": {
  627. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  628. "squizlabs/php_codesniffer": "^3",
  629. "yoast/phpunit-polyfills": "^0.2.0"
  630. },
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-main": "2.x-dev"
  635. }
  636. },
  637. "autoload": {
  638. "psr-4": {
  639. "Consolidation\\Filter\\": "src"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Greg Anderson",
  649. "email": "greg.1.anderson@greenknowe.org"
  650. }
  651. ],
  652. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  653. "support": {
  654. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  655. },
  656. "time": "2025-11-14T21:01:06+00:00"
  657. },
  658. {
  659. "name": "consolidation/log",
  660. "version": "3.1.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/consolidation/log.git",
  664. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/consolidation/log/zipball/c1a87a94c01957697ec347fd67404d7f0030d1aa",
  669. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=8.0.0",
  674. "psr/log": "^3",
  675. "symfony/console": "^5 || ^6 || ^7"
  676. },
  677. "require-dev": {
  678. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  679. "squizlabs/php_codesniffer": "^3",
  680. "yoast/phpunit-polyfills": "^0.2.0"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "platform": {
  685. "php": "8.2.17"
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "Consolidation\\Log\\": "src"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Greg Anderson",
  700. "email": "greg.1.anderson@greenknowe.org"
  701. }
  702. ],
  703. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  704. "support": {
  705. "issues": "https://github.com/consolidation/log/issues",
  706. "source": "https://github.com/consolidation/log/tree/3.1.1"
  707. },
  708. "time": "2025-11-14T21:11:00+00:00"
  709. },
  710. {
  711. "name": "consolidation/output-formatters",
  712. "version": "4.7.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/consolidation/output-formatters.git",
  716. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  721. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  726. "php": ">=7.1.3",
  727. "symfony/console": "^4 || ^5 || ^6 || ^7",
  728. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  729. },
  730. "require-dev": {
  731. "php-coveralls/php-coveralls": "^2.4.2",
  732. "phpunit/phpunit": "^7 || ^8 || ^9",
  733. "squizlabs/php_codesniffer": "^3",
  734. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  735. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  736. "yoast/phpunit-polyfills": "^1"
  737. },
  738. "suggest": {
  739. "symfony/var-dumper": "For using the var_dump formatter"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "Consolidation\\OutputFormatters\\": "src"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Greg Anderson",
  754. "email": "greg.1.anderson@greenknowe.org"
  755. }
  756. ],
  757. "description": "Format text by applying transformations provided by plug-in formatters.",
  758. "support": {
  759. "issues": "https://github.com/consolidation/output-formatters/issues",
  760. "source": "https://github.com/consolidation/output-formatters/tree/4.7.0"
  761. },
  762. "time": "2025-11-14T21:06:10+00:00"
  763. },
  764. {
  765. "name": "consolidation/robo",
  766. "version": "5.1.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/consolidation/robo.git",
  770. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/consolidation/robo/zipball/6d02c7d800b5e1a3a8977ae74d23bce723486025",
  775. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "consolidation/annotated-command": "^4.8.1",
  780. "consolidation/config": "^3",
  781. "consolidation/log": "^3",
  782. "consolidation/output-formatters": "^4.1.2",
  783. "league/container": "^3.3.1 || ^4.0",
  784. "php": ">=8.2",
  785. "phpowermove/docblock": "^4.0",
  786. "symfony/console": "^6 || ^7",
  787. "symfony/event-dispatcher": "^6 || ^7",
  788. "symfony/filesystem": "^6 || ^7",
  789. "symfony/finder": "^6 || ^7",
  790. "symfony/process": "^6 || ^7",
  791. "symfony/yaml": "^6 || ^7"
  792. },
  793. "conflict": {
  794. "codegyre/robo": "*"
  795. },
  796. "require-dev": {
  797. "natxet/cssmin": "3.0.4",
  798. "patchwork/jsqueeze": "^2",
  799. "pear/archive_tar": "^1.4.4",
  800. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  801. "squizlabs/php_codesniffer": "^3.6",
  802. "yoast/phpunit-polyfills": "^0.2.0"
  803. },
  804. "suggest": {
  805. "consolidation/self-update": "For self-updating a phar-based app built with Robo",
  806. "natxet/cssmin": "For minifying CSS files in taskMinify",
  807. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  808. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  809. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  810. },
  811. "bin": [
  812. "robo"
  813. ],
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Robo\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "MIT"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Davert",
  827. "email": "davert.php@resend.cc"
  828. }
  829. ],
  830. "description": "Modern task runner",
  831. "support": {
  832. "issues": "https://github.com/consolidation/robo/issues",
  833. "source": "https://github.com/consolidation/robo/tree/5.1.1"
  834. },
  835. "time": "2025-11-14T23:30:05+00:00"
  836. },
  837. {
  838. "name": "consolidation/site-alias",
  839. "version": "4.1.2",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/consolidation/site-alias.git",
  843. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  848. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "consolidation/config": "^1.2.1 || ^2 || ^3",
  853. "php": ">=7.4",
  854. "symfony/filesystem": "^5.4 || ^6 || ^7",
  855. "symfony/finder": "^5 || ^6 || ^7"
  856. },
  857. "require-dev": {
  858. "php-coveralls/php-coveralls": "^2.4.2",
  859. "phpunit/phpunit": ">=7",
  860. "squizlabs/php_codesniffer": "^3",
  861. "symfony/var-dumper": "^4",
  862. "yoast/phpunit-polyfills": "^0.2.0"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-main": "4.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Consolidation\\SiteAlias\\": "src"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Greg Anderson",
  882. "email": "greg.1.anderson@greenknowe.org"
  883. },
  884. {
  885. "name": "Moshe Weitzman",
  886. "email": "weitzman@tejasa.com"
  887. }
  888. ],
  889. "description": "Manage alias records for local and remote sites.",
  890. "support": {
  891. "issues": "https://github.com/consolidation/site-alias/issues",
  892. "source": "https://github.com/consolidation/site-alias/tree/4.1.2"
  893. },
  894. "time": "2025-11-14T21:08:14+00:00"
  895. },
  896. {
  897. "name": "consolidation/site-process",
  898. "version": "5.4.2",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/consolidation/site-process.git",
  902. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  907. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "consolidation/config": "^2 || ^3",
  912. "consolidation/site-alias": "^3 || ^4",
  913. "php": ">=8.0.14",
  914. "symfony/console": "^5.4 || ^6 || ^7",
  915. "symfony/process": "^6 || ^7"
  916. },
  917. "require-dev": {
  918. "phpunit/phpunit": "^9",
  919. "squizlabs/php_codesniffer": "^3"
  920. },
  921. "type": "library",
  922. "extra": {
  923. "branch-alias": {
  924. "dev-main": "5.x-dev"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "Consolidation\\SiteProcess\\": "src"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Greg Anderson",
  939. "email": "greg.1.anderson@greenknowe.org"
  940. },
  941. {
  942. "name": "Moshe Weitzman",
  943. "email": "weitzman@tejasa.com"
  944. }
  945. ],
  946. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  947. "support": {
  948. "issues": "https://github.com/consolidation/site-process/issues",
  949. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  950. },
  951. "time": "2024-12-13T19:25:56+00:00"
  952. },
  953. {
  954. "name": "cweagans/composer-patches",
  955. "version": "1.7.3",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/cweagans/composer-patches.git",
  959. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  964. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "composer-plugin-api": "^1.0 || ^2.0",
  969. "php": ">=5.3.0"
  970. },
  971. "require-dev": {
  972. "composer/composer": "~1.0 || ~2.0",
  973. "phpunit/phpunit": "~4.6"
  974. },
  975. "type": "composer-plugin",
  976. "extra": {
  977. "class": "cweagans\\Composer\\Patches"
  978. },
  979. "autoload": {
  980. "psr-4": {
  981. "cweagans\\Composer\\": "src"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "BSD-3-Clause"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Cameron Eagans",
  991. "email": "me@cweagans.net"
  992. }
  993. ],
  994. "description": "Provides a way to patch Composer packages.",
  995. "support": {
  996. "issues": "https://github.com/cweagans/composer-patches/issues",
  997. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  998. },
  999. "time": "2022-12-20T22:53:13+00:00"
  1000. },
  1001. {
  1002. "name": "d3/d3",
  1003. "version": "v3.5.17",
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1007. },
  1008. "type": "drupal-library"
  1009. },
  1010. {
  1011. "name": "davedevelopment/stiphle",
  1012. "version": "0.9.4",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/davedevelopment/stiphle.git",
  1016. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1021. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": "^5.6.0|^7.0|^8.0"
  1026. },
  1027. "require-dev": {
  1028. "doctrine/cache": "^1.0",
  1029. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1030. "predis/predis": "^1.1",
  1031. "zendframework/zend-cache": "^2.8"
  1032. },
  1033. "suggest": {
  1034. "doctrine/cache": "~1.0",
  1035. "predis/predis": "~1.1",
  1036. "zendframework/zend-cache": "^2.8"
  1037. },
  1038. "type": "library",
  1039. "autoload": {
  1040. "psr-0": {
  1041. "Stiphle": "src/"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Dave Marshall",
  1051. "email": "dave.marshall@atstsolutions.co.uk",
  1052. "homepage": "http://davedevelopment.co.uk"
  1053. }
  1054. ],
  1055. "description": "Simple rate limiting/throttling for php",
  1056. "homepage": "http://github.com/davedevelopment/stiphle",
  1057. "keywords": [
  1058. "rate limit",
  1059. "rate limiting",
  1060. "throttle",
  1061. "throttling"
  1062. ],
  1063. "support": {
  1064. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1065. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1066. },
  1067. "time": "2022-11-25T16:30:20+00:00"
  1068. },
  1069. {
  1070. "name": "dekor/php-array-table",
  1071. "version": "2.0",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/deniskoronets/php-array-table.git",
  1075. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1080. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "ext-mbstring": "*",
  1085. "php": ">=5.6.0"
  1086. },
  1087. "require-dev": {
  1088. "phpunit/phpunit": "^10"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "psr-4": {
  1093. "dekor\\": "src"
  1094. }
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "BSD-3-Clause"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Denis Koronets",
  1103. "email": "deniskoronets@woo.zp.ua",
  1104. "homepage": "https://woo.zp.ua/"
  1105. }
  1106. ],
  1107. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1108. "keywords": [
  1109. "library",
  1110. "php"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1114. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1115. },
  1116. "time": "2023-02-10T10:13:42+00:00"
  1117. },
  1118. {
  1119. "name": "dflydev/dot-access-data",
  1120. "version": "v3.0.3",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1124. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1129. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "php": "^7.1 || ^8.0"
  1134. },
  1135. "require-dev": {
  1136. "phpstan/phpstan": "^0.12.42",
  1137. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1138. "scrutinizer/ocular": "1.6.0",
  1139. "squizlabs/php_codesniffer": "^3.5",
  1140. "vimeo/psalm": "^4.0.0"
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-main": "3.x-dev"
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Dflydev\\DotAccessData\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Dragonfly Development Inc.",
  1160. "email": "info@dflydev.com",
  1161. "homepage": "http://dflydev.com"
  1162. },
  1163. {
  1164. "name": "Beau Simensen",
  1165. "email": "beau@dflydev.com",
  1166. "homepage": "http://beausimensen.com"
  1167. },
  1168. {
  1169. "name": "Carlos Frutos",
  1170. "email": "carlos@kiwing.it",
  1171. "homepage": "https://github.com/cfrutos"
  1172. },
  1173. {
  1174. "name": "Colin O'Dell",
  1175. "email": "colinodell@gmail.com",
  1176. "homepage": "https://www.colinodell.com"
  1177. }
  1178. ],
  1179. "description": "Given a deep data structure, access data by dot notation.",
  1180. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1181. "keywords": [
  1182. "access",
  1183. "data",
  1184. "dot",
  1185. "notation"
  1186. ],
  1187. "support": {
  1188. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1189. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1190. },
  1191. "time": "2024-07-08T12:26:09+00:00"
  1192. },
  1193. {
  1194. "name": "doctrine/collections",
  1195. "version": "2.6.0",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/doctrine/collections.git",
  1199. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1204. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1205. "shasum": ""
  1206. },
  1207. "require": {
  1208. "doctrine/deprecations": "^1",
  1209. "php": "^8.1",
  1210. "symfony/polyfill-php84": "^1.30"
  1211. },
  1212. "require-dev": {
  1213. "doctrine/coding-standard": "^14",
  1214. "ext-json": "*",
  1215. "phpstan/phpstan": "^2.1.30",
  1216. "phpstan/phpstan-phpunit": "^2.0.7",
  1217. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  1218. },
  1219. "type": "library",
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Collections\\": "src"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Guilherme Blanco",
  1232. "email": "guilhermeblanco@gmail.com"
  1233. },
  1234. {
  1235. "name": "Roman Borschel",
  1236. "email": "roman@code-factory.org"
  1237. },
  1238. {
  1239. "name": "Benjamin Eberlei",
  1240. "email": "kontakt@beberlei.de"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1252. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1253. "keywords": [
  1254. "array",
  1255. "collections",
  1256. "iterators",
  1257. "php"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/doctrine/collections/issues",
  1261. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  1262. },
  1263. "funding": [
  1264. {
  1265. "url": "https://www.doctrine-project.org/sponsorship.html",
  1266. "type": "custom"
  1267. },
  1268. {
  1269. "url": "https://www.patreon.com/phpdoctrine",
  1270. "type": "patreon"
  1271. },
  1272. {
  1273. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1274. "type": "tidelift"
  1275. }
  1276. ],
  1277. "time": "2026-01-15T10:01:58+00:00"
  1278. },
  1279. {
  1280. "name": "doctrine/common",
  1281. "version": "3.5.0",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/doctrine/common.git",
  1285. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1290. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1295. "php": "^7.1 || ^8.0"
  1296. },
  1297. "require-dev": {
  1298. "doctrine/coding-standard": "^9.0 || ^10.0",
  1299. "doctrine/collections": "^1",
  1300. "phpstan/phpstan": "^1.4.1",
  1301. "phpstan/phpstan-phpunit": "^1",
  1302. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1303. "squizlabs/php_codesniffer": "^3.0",
  1304. "symfony/phpunit-bridge": "^6.1",
  1305. "vimeo/psalm": "^4.4"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Doctrine\\Common\\": "src"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Guilherme Blanco",
  1320. "email": "guilhermeblanco@gmail.com"
  1321. },
  1322. {
  1323. "name": "Roman Borschel",
  1324. "email": "roman@code-factory.org"
  1325. },
  1326. {
  1327. "name": "Benjamin Eberlei",
  1328. "email": "kontakt@beberlei.de"
  1329. },
  1330. {
  1331. "name": "Jonathan Wage",
  1332. "email": "jonwage@gmail.com"
  1333. },
  1334. {
  1335. "name": "Johannes Schmitt",
  1336. "email": "schmittjoh@gmail.com"
  1337. },
  1338. {
  1339. "name": "Marco Pivetta",
  1340. "email": "ocramius@gmail.com"
  1341. }
  1342. ],
  1343. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1344. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1345. "keywords": [
  1346. "common",
  1347. "doctrine",
  1348. "php"
  1349. ],
  1350. "support": {
  1351. "issues": "https://github.com/doctrine/common/issues",
  1352. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1353. },
  1354. "funding": [
  1355. {
  1356. "url": "https://www.doctrine-project.org/sponsorship.html",
  1357. "type": "custom"
  1358. },
  1359. {
  1360. "url": "https://www.patreon.com/phpdoctrine",
  1361. "type": "patreon"
  1362. },
  1363. {
  1364. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1365. "type": "tidelift"
  1366. }
  1367. ],
  1368. "time": "2025-01-01T22:12:03+00:00"
  1369. },
  1370. {
  1371. "name": "doctrine/deprecations",
  1372. "version": "1.1.6",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/doctrine/deprecations.git",
  1376. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1381. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "php": "^7.1 || ^8.0"
  1386. },
  1387. "conflict": {
  1388. "phpunit/phpunit": "<=7.5 || >=14"
  1389. },
  1390. "require-dev": {
  1391. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1392. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1393. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1394. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1395. "psr/log": "^1 || ^2 || ^3"
  1396. },
  1397. "suggest": {
  1398. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1399. },
  1400. "type": "library",
  1401. "autoload": {
  1402. "psr-4": {
  1403. "Doctrine\\Deprecations\\": "src"
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1411. "homepage": "https://www.doctrine-project.org/",
  1412. "support": {
  1413. "issues": "https://github.com/doctrine/deprecations/issues",
  1414. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1415. },
  1416. "time": "2026-02-07T07:09:04+00:00"
  1417. },
  1418. {
  1419. "name": "doctrine/event-manager",
  1420. "version": "2.1.1",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/doctrine/event-manager.git",
  1424. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1429. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": "^8.1"
  1434. },
  1435. "conflict": {
  1436. "doctrine/common": "<2.9"
  1437. },
  1438. "require-dev": {
  1439. "doctrine/coding-standard": "^14",
  1440. "phpdocumentor/guides-cli": "^1.4",
  1441. "phpstan/phpstan": "^2.1.32",
  1442. "phpunit/phpunit": "^10.5.58"
  1443. },
  1444. "type": "library",
  1445. "autoload": {
  1446. "psr-4": {
  1447. "Doctrine\\Common\\": "src"
  1448. }
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "MIT"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Guilherme Blanco",
  1457. "email": "guilhermeblanco@gmail.com"
  1458. },
  1459. {
  1460. "name": "Roman Borschel",
  1461. "email": "roman@code-factory.org"
  1462. },
  1463. {
  1464. "name": "Benjamin Eberlei",
  1465. "email": "kontakt@beberlei.de"
  1466. },
  1467. {
  1468. "name": "Jonathan Wage",
  1469. "email": "jonwage@gmail.com"
  1470. },
  1471. {
  1472. "name": "Johannes Schmitt",
  1473. "email": "schmittjoh@gmail.com"
  1474. },
  1475. {
  1476. "name": "Marco Pivetta",
  1477. "email": "ocramius@gmail.com"
  1478. }
  1479. ],
  1480. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1481. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1482. "keywords": [
  1483. "event",
  1484. "event dispatcher",
  1485. "event manager",
  1486. "event system",
  1487. "events"
  1488. ],
  1489. "support": {
  1490. "issues": "https://github.com/doctrine/event-manager/issues",
  1491. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1492. },
  1493. "funding": [
  1494. {
  1495. "url": "https://www.doctrine-project.org/sponsorship.html",
  1496. "type": "custom"
  1497. },
  1498. {
  1499. "url": "https://www.patreon.com/phpdoctrine",
  1500. "type": "patreon"
  1501. },
  1502. {
  1503. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1504. "type": "tidelift"
  1505. }
  1506. ],
  1507. "time": "2026-01-29T07:11:08+00:00"
  1508. },
  1509. {
  1510. "name": "doctrine/lexer",
  1511. "version": "2.1.1",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/doctrine/lexer.git",
  1515. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1520. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "doctrine/deprecations": "^1.0",
  1525. "php": "^7.1 || ^8.0"
  1526. },
  1527. "require-dev": {
  1528. "doctrine/coding-standard": "^9 || ^12",
  1529. "phpstan/phpstan": "^1.3",
  1530. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1531. "psalm/plugin-phpunit": "^0.18.3",
  1532. "vimeo/psalm": "^4.11 || ^5.21"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "Doctrine\\Common\\Lexer\\": "src"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "MIT"
  1543. ],
  1544. "authors": [
  1545. {
  1546. "name": "Guilherme Blanco",
  1547. "email": "guilhermeblanco@gmail.com"
  1548. },
  1549. {
  1550. "name": "Roman Borschel",
  1551. "email": "roman@code-factory.org"
  1552. },
  1553. {
  1554. "name": "Johannes Schmitt",
  1555. "email": "schmittjoh@gmail.com"
  1556. }
  1557. ],
  1558. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1559. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1560. "keywords": [
  1561. "annotations",
  1562. "docblock",
  1563. "lexer",
  1564. "parser",
  1565. "php"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/doctrine/lexer/issues",
  1569. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://www.doctrine-project.org/sponsorship.html",
  1574. "type": "custom"
  1575. },
  1576. {
  1577. "url": "https://www.patreon.com/phpdoctrine",
  1578. "type": "patreon"
  1579. },
  1580. {
  1581. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1582. "type": "tidelift"
  1583. }
  1584. ],
  1585. "time": "2024-02-05T11:35:39+00:00"
  1586. },
  1587. {
  1588. "name": "doctrine/persistence",
  1589. "version": "4.1.1",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://github.com/doctrine/persistence.git",
  1593. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1598. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1599. "shasum": ""
  1600. },
  1601. "require": {
  1602. "doctrine/event-manager": "^1 || ^2",
  1603. "php": "^8.1",
  1604. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1605. },
  1606. "require-dev": {
  1607. "doctrine/coding-standard": "^14",
  1608. "phpstan/phpstan": "2.1.30",
  1609. "phpstan/phpstan-phpunit": "^2",
  1610. "phpstan/phpstan-strict-rules": "^2",
  1611. "phpunit/phpunit": "^10.5.58 || ^12",
  1612. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1613. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1614. },
  1615. "type": "library",
  1616. "autoload": {
  1617. "psr-4": {
  1618. "Doctrine\\Persistence\\": "src/Persistence"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Guilherme Blanco",
  1628. "email": "guilhermeblanco@gmail.com"
  1629. },
  1630. {
  1631. "name": "Roman Borschel",
  1632. "email": "roman@code-factory.org"
  1633. },
  1634. {
  1635. "name": "Benjamin Eberlei",
  1636. "email": "kontakt@beberlei.de"
  1637. },
  1638. {
  1639. "name": "Jonathan Wage",
  1640. "email": "jonwage@gmail.com"
  1641. },
  1642. {
  1643. "name": "Johannes Schmitt",
  1644. "email": "schmittjoh@gmail.com"
  1645. },
  1646. {
  1647. "name": "Marco Pivetta",
  1648. "email": "ocramius@gmail.com"
  1649. }
  1650. ],
  1651. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1652. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1653. "keywords": [
  1654. "mapper",
  1655. "object",
  1656. "odm",
  1657. "orm",
  1658. "persistence"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/doctrine/persistence/issues",
  1662. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://www.doctrine-project.org/sponsorship.html",
  1667. "type": "custom"
  1668. },
  1669. {
  1670. "url": "https://www.patreon.com/phpdoctrine",
  1671. "type": "patreon"
  1672. },
  1673. {
  1674. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1675. "type": "tidelift"
  1676. }
  1677. ],
  1678. "time": "2025-10-16T20:13:18+00:00"
  1679. },
  1680. {
  1681. "name": "drupal/address",
  1682. "version": "2.0.4",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://git.drupalcode.org/project/address.git",
  1686. "reference": "2.0.4"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip",
  1691. "reference": "2.0.4",
  1692. "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e"
  1693. },
  1694. "require": {
  1695. "commerceguys/addressing": "^2.1.1",
  1696. "drupal/core": "^9.5 || ^10 || ^11",
  1697. "php": "^8.0"
  1698. },
  1699. "require-dev": {
  1700. "drupal/diff": "^1",
  1701. "drupal/feeds": "^3",
  1702. "drupal/token": "^1"
  1703. },
  1704. "type": "drupal-module",
  1705. "extra": {
  1706. "drupal": {
  1707. "version": "2.0.4",
  1708. "datestamp": "1746462054",
  1709. "security-coverage": {
  1710. "status": "covered",
  1711. "message": "Covered by Drupal's security advisory policy"
  1712. }
  1713. }
  1714. },
  1715. "notification-url": "https://packages.drupal.org/8/downloads",
  1716. "license": [
  1717. "GPL-2.0-or-later"
  1718. ],
  1719. "authors": [
  1720. {
  1721. "name": "bojanz",
  1722. "homepage": "https://www.drupal.org/user/86106"
  1723. },
  1724. {
  1725. "name": "centarro",
  1726. "homepage": "https://www.drupal.org/user/3661446"
  1727. },
  1728. {
  1729. "name": "dww",
  1730. "homepage": "https://www.drupal.org/user/46549"
  1731. },
  1732. {
  1733. "name": "jsacksick",
  1734. "homepage": "https://www.drupal.org/user/972218"
  1735. },
  1736. {
  1737. "name": "rszrama",
  1738. "homepage": "https://www.drupal.org/user/49344"
  1739. }
  1740. ],
  1741. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1742. "homepage": "http://drupal.org/project/address",
  1743. "support": {
  1744. "source": "https://git.drupalcode.org/project/address"
  1745. }
  1746. },
  1747. {
  1748. "name": "drupal/admin_toolbar",
  1749. "version": "3.6.3",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1753. "reference": "3.6.3"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1758. "reference": "3.6.3",
  1759. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1760. },
  1761. "require": {
  1762. "drupal/core": "^9.5 || ^10 || ^11"
  1763. },
  1764. "conflict": {
  1765. "drupal/project_browser": "<2.1.0"
  1766. },
  1767. "type": "drupal-module",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "3.6.3",
  1771. "datestamp": "1767318997",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0-or-later"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "Wilfrid Roze (eme)",
  1785. "homepage": "https://www.drupal.org/u/eme",
  1786. "role": "Maintainer"
  1787. },
  1788. {
  1789. "name": "Romain Jarraud (romainj)",
  1790. "homepage": "https://www.drupal.org/u/romainj",
  1791. "role": "Maintainer"
  1792. },
  1793. {
  1794. "name": "Adrian Cid Almaguer (adriancid)",
  1795. "homepage": "https://www.drupal.org/u/adriancid",
  1796. "email": "adriancid@gmail.com",
  1797. "role": "Maintainer"
  1798. },
  1799. {
  1800. "name": "Mohamed Anis Taktak (matio89)",
  1801. "homepage": "https://www.drupal.org/u/matio89",
  1802. "role": "Maintainer"
  1803. },
  1804. {
  1805. "name": "David Suissa (DYdave)",
  1806. "homepage": "https://www.drupal.org/u/dydave",
  1807. "role": "Maintainer"
  1808. },
  1809. {
  1810. "name": "japerry",
  1811. "homepage": "https://www.drupal.org/user/45640"
  1812. },
  1813. {
  1814. "name": "matio89",
  1815. "homepage": "https://www.drupal.org/user/2320090"
  1816. },
  1817. {
  1818. "name": "musa.thomas",
  1819. "homepage": "https://www.drupal.org/user/1213824"
  1820. },
  1821. {
  1822. "name": "romainj",
  1823. "homepage": "https://www.drupal.org/user/370706"
  1824. }
  1825. ],
  1826. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1827. "homepage": "http://drupal.org/project/admin_toolbar",
  1828. "keywords": [
  1829. "Drupal",
  1830. "Toolbar"
  1831. ],
  1832. "support": {
  1833. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1834. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1835. }
  1836. },
  1837. {
  1838. "name": "drupal/adminimal_theme",
  1839. "version": "1.7.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1843. "reference": "8.x-1.7"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1848. "reference": "8.x-1.7",
  1849. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1850. },
  1851. "require": {
  1852. "drupal/core": "^9.3 || ^10",
  1853. "drupal/seven": "~1.0"
  1854. },
  1855. "type": "drupal-theme",
  1856. "extra": {
  1857. "drupal": {
  1858. "version": "8.x-1.7",
  1859. "datestamp": "1691504486",
  1860. "security-coverage": {
  1861. "status": "covered",
  1862. "message": "Covered by Drupal's security advisory policy"
  1863. }
  1864. }
  1865. },
  1866. "notification-url": "https://packages.drupal.org/8/downloads",
  1867. "license": [
  1868. "GPL-2.0+"
  1869. ],
  1870. "authors": [
  1871. {
  1872. "name": "ANDiTKO",
  1873. "homepage": "https://www.drupal.org/user/1428124"
  1874. },
  1875. {
  1876. "name": "andrey.troeglazov",
  1877. "homepage": "https://www.drupal.org/user/3145389"
  1878. },
  1879. {
  1880. "name": "realityloop",
  1881. "homepage": "https://www.drupal.org/user/139189"
  1882. },
  1883. {
  1884. "name": "rjjakes",
  1885. "homepage": "https://www.drupal.org/user/3457245"
  1886. }
  1887. ],
  1888. "description": "Drupal administration theme with modern minimalist design.",
  1889. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1890. "support": {
  1891. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1892. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1893. }
  1894. },
  1895. {
  1896. "name": "drupal/administerusersbyrole",
  1897. "version": "3.6.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  1901. "reference": "8.x-3.6"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.6.zip",
  1906. "reference": "8.x-3.6",
  1907. "shasum": "ab94307f3b47eac5c18d8c584a14516c6c54327f"
  1908. },
  1909. "require": {
  1910. "drupal/core": "^10 || ^11"
  1911. },
  1912. "type": "drupal-module",
  1913. "extra": {
  1914. "drupal": {
  1915. "version": "8.x-3.6",
  1916. "datestamp": "1762439804",
  1917. "security-coverage": {
  1918. "status": "covered",
  1919. "message": "Covered by Drupal's security advisory policy"
  1920. }
  1921. }
  1922. },
  1923. "notification-url": "https://packages.drupal.org/8/downloads",
  1924. "license": [
  1925. "GPL-2.0-or-later"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "adamps",
  1930. "homepage": "https://www.drupal.org/user/2650563"
  1931. },
  1932. {
  1933. "name": "mrfelton",
  1934. "homepage": "https://www.drupal.org/user/305669"
  1935. },
  1936. {
  1937. "name": "smokris",
  1938. "homepage": "https://www.drupal.org/user/161913"
  1939. }
  1940. ],
  1941. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  1942. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  1943. "support": {
  1944. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  1945. }
  1946. },
  1947. {
  1948. "name": "drupal/advanced_text_formatter",
  1949. "version": "3.0.0-rc2",
  1950. "source": {
  1951. "type": "git",
  1952. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1953. "reference": "3.0.0-rc2"
  1954. },
  1955. "dist": {
  1956. "type": "zip",
  1957. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  1958. "reference": "3.0.0-rc2",
  1959. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  1960. },
  1961. "require": {
  1962. "drupal/core": "^8 || ^9 || ^10 || ^11"
  1963. },
  1964. "type": "drupal-module",
  1965. "extra": {
  1966. "drupal": {
  1967. "version": "3.0.0-rc2",
  1968. "datestamp": "1727826727",
  1969. "security-coverage": {
  1970. "status": "not-covered",
  1971. "message": "RC releases are not covered by Drupal security advisories."
  1972. }
  1973. }
  1974. },
  1975. "notification-url": "https://packages.drupal.org/8/downloads",
  1976. "license": [
  1977. "GPL-2.0-or-later"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "azovsky",
  1982. "homepage": "https://www.drupal.org/user/330533"
  1983. },
  1984. {
  1985. "name": "knectar",
  1986. "homepage": "https://www.drupal.org/user/1184414"
  1987. },
  1988. {
  1989. "name": "realityloop",
  1990. "homepage": "https://www.drupal.org/user/139189"
  1991. },
  1992. {
  1993. "name": "thmnhat",
  1994. "homepage": "https://www.drupal.org/user/998946"
  1995. }
  1996. ],
  1997. "description": "Formatter of textfield, text area and text format.",
  1998. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1999. "support": {
  2000. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2001. }
  2002. },
  2003. {
  2004. "name": "drupal/audiofield",
  2005. "version": "1.13.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://git.drupalcode.org/project/audiofield.git",
  2009. "reference": "8.x-1.13"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2014. "reference": "8.x-1.13",
  2015. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2016. },
  2017. "require": {
  2018. "drupal/core": "^8 || ^9 || ^10"
  2019. },
  2020. "type": "drupal-module",
  2021. "extra": {
  2022. "drupal": {
  2023. "version": "8.x-1.13",
  2024. "datestamp": "1681143245",
  2025. "security-coverage": {
  2026. "status": "covered",
  2027. "message": "Covered by Drupal's security advisory policy"
  2028. }
  2029. },
  2030. "drush": {
  2031. "services": {
  2032. "drush.services.yml": "^9"
  2033. }
  2034. }
  2035. },
  2036. "notification-url": "https://packages.drupal.org/8/downloads",
  2037. "license": [
  2038. "GPL-2.0-or-later"
  2039. ],
  2040. "authors": [
  2041. {
  2042. "name": "Daniel Moberly",
  2043. "homepage": "https://www.drupal.org/u/danielmoberly",
  2044. "role": "Maintainer"
  2045. },
  2046. {
  2047. "name": "tamerzg",
  2048. "homepage": "https://www.drupal.org/user/464564"
  2049. }
  2050. ],
  2051. "description": "AudioField Module",
  2052. "homepage": "https://www.drupal.org/project/audiofield",
  2053. "support": {
  2054. "source": "https://git.drupalcode.org/project/audiofield",
  2055. "issues": "https://www.drupal.org/project/issues/audiofield"
  2056. }
  2057. },
  2058. {
  2059. "name": "drupal/autocomplete_deluxe",
  2060. "version": "2.1.2",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2064. "reference": "2.1.2"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2069. "reference": "2.1.2",
  2070. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2071. },
  2072. "require": {
  2073. "drupal/core": "^10.3 || ^11"
  2074. },
  2075. "type": "drupal-module",
  2076. "extra": {
  2077. "drupal": {
  2078. "version": "2.1.2",
  2079. "datestamp": "1742303934",
  2080. "security-coverage": {
  2081. "status": "covered",
  2082. "message": "Covered by Drupal's security advisory policy"
  2083. }
  2084. }
  2085. },
  2086. "notification-url": "https://packages.drupal.org/8/downloads",
  2087. "license": [
  2088. "GPL-2.0-or-later"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Vardot",
  2093. "homepage": "https://www.drupal.org/vardot",
  2094. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2095. },
  2096. {
  2097. "name": "Mediacurrent",
  2098. "homepage": "https://www.drupal.org/mediacurrent",
  2099. "role": "Supporting organization"
  2100. },
  2101. {
  2102. "name": "mohammed j. razem",
  2103. "homepage": "https://www.drupal.org/user/255384"
  2104. },
  2105. {
  2106. "name": "mpriscella",
  2107. "homepage": "https://www.drupal.org/user/2354820"
  2108. },
  2109. {
  2110. "name": "rajab natshah",
  2111. "homepage": "https://www.drupal.org/user/1414312"
  2112. },
  2113. {
  2114. "name": "sepgil",
  2115. "homepage": "https://www.drupal.org/user/512828"
  2116. }
  2117. ],
  2118. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2119. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2120. "support": {
  2121. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2122. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2123. }
  2124. },
  2125. {
  2126. "name": "drupal/autologout",
  2127. "version": "1.6.0",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://git.drupalcode.org/project/autologout.git",
  2131. "reference": "8.x-1.6"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2136. "reference": "8.x-1.6",
  2137. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2138. },
  2139. "require": {
  2140. "drupal/core": "^9.2 || ^10 || ^11",
  2141. "drupal/js_cookie": "^1.0"
  2142. },
  2143. "type": "drupal-module",
  2144. "extra": {
  2145. "drupal": {
  2146. "version": "8.x-1.6",
  2147. "datestamp": "1732235148",
  2148. "security-coverage": {
  2149. "status": "covered",
  2150. "message": "Covered by Drupal's security advisory policy"
  2151. }
  2152. }
  2153. },
  2154. "notification-url": "https://packages.drupal.org/8/downloads",
  2155. "license": [
  2156. "GPL-2.0-or-later"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "ajits",
  2161. "homepage": "https://www.drupal.org/user/981944"
  2162. },
  2163. {
  2164. "name": "AjK",
  2165. "homepage": "https://www.drupal.org/user/39030"
  2166. },
  2167. {
  2168. "name": "boshtian",
  2169. "homepage": "https://www.drupal.org/user/1773456"
  2170. },
  2171. {
  2172. "name": "dandrews",
  2173. "homepage": "https://www.drupal.org/user/2014490"
  2174. },
  2175. {
  2176. "name": "darksnow",
  2177. "homepage": "https://www.drupal.org/user/391915"
  2178. },
  2179. {
  2180. "name": "japerry",
  2181. "homepage": "https://www.drupal.org/user/45640"
  2182. },
  2183. {
  2184. "name": "johnennew",
  2185. "homepage": "https://www.drupal.org/user/1150042"
  2186. },
  2187. {
  2188. "name": "jrglasgow",
  2189. "homepage": "https://www.drupal.org/user/36590"
  2190. },
  2191. {
  2192. "name": "kmasood",
  2193. "homepage": "https://www.drupal.org/user/1262860"
  2194. },
  2195. {
  2196. "name": "levelos",
  2197. "homepage": "https://www.drupal.org/user/54135"
  2198. },
  2199. {
  2200. "name": "prabeen.giri",
  2201. "homepage": "https://www.drupal.org/user/913078"
  2202. },
  2203. {
  2204. "name": "scott_earnest",
  2205. "homepage": "https://www.drupal.org/user/416158"
  2206. },
  2207. {
  2208. "name": "str8",
  2209. "homepage": "https://www.drupal.org/user/2865063"
  2210. },
  2211. {
  2212. "name": "the_g_bomb",
  2213. "homepage": "https://www.drupal.org/user/492012"
  2214. }
  2215. ],
  2216. "description": "Adds automated timed logout.",
  2217. "homepage": "http://drupal.org/project/autologout",
  2218. "support": {
  2219. "source": "https://git.drupalcode.org/project/autologout",
  2220. "issues": "https://www.drupal.org/project/issues/autologout"
  2221. }
  2222. },
  2223. {
  2224. "name": "drupal/better_exposed_filters",
  2225. "version": "6.0.6",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2229. "reference": "6.0.6"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2234. "reference": "6.0.6",
  2235. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2236. },
  2237. "require": {
  2238. "drupal/core": "^9 || ^10",
  2239. "drupal/jquery_ui": "*",
  2240. "drupal/jquery_ui_datepicker": "*",
  2241. "drupal/jquery_ui_slider": "*",
  2242. "drupal/jquery_ui_touch_punch": "*"
  2243. },
  2244. "type": "drupal-module",
  2245. "extra": {
  2246. "drupal": {
  2247. "version": "6.0.6",
  2248. "datestamp": "1716397541",
  2249. "security-coverage": {
  2250. "status": "covered",
  2251. "message": "Covered by Drupal's security advisory policy"
  2252. }
  2253. }
  2254. },
  2255. "notification-url": "https://packages.drupal.org/8/downloads",
  2256. "license": [
  2257. "GPL-2.0-or-later"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Mike Keran",
  2262. "homepage": "https://www.drupal.org/u/mikeker"
  2263. },
  2264. {
  2265. "name": "Martin Keereman",
  2266. "homepage": "https://www.drupal.org/u/etroid"
  2267. },
  2268. {
  2269. "name": "Neslee Canil Pinto",
  2270. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2271. },
  2272. {
  2273. "name": "mikeker",
  2274. "homepage": "https://www.drupal.org/user/192273"
  2275. },
  2276. {
  2277. "name": "neslee canil pinto",
  2278. "homepage": "https://www.drupal.org/user/3580850"
  2279. },
  2280. {
  2281. "name": "podarok",
  2282. "homepage": "https://www.drupal.org/user/116002"
  2283. },
  2284. {
  2285. "name": "rlhawk",
  2286. "homepage": "https://www.drupal.org/user/352283"
  2287. },
  2288. {
  2289. "name": "smustgrave",
  2290. "homepage": "https://www.drupal.org/user/3252890"
  2291. }
  2292. ],
  2293. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2294. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2295. "support": {
  2296. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2297. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2298. }
  2299. },
  2300. {
  2301. "name": "drupal/betterlogin",
  2302. "version": "2.0.3",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2306. "reference": "2.0.3"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.3.zip",
  2311. "reference": "2.0.3",
  2312. "shasum": "5588632dae5677edf5f71faeb22bd2bc3aff5ac2"
  2313. },
  2314. "require": {
  2315. "drupal/core": "^10.1 || ^11"
  2316. },
  2317. "type": "drupal-module",
  2318. "extra": {
  2319. "drupal": {
  2320. "version": "2.0.3",
  2321. "datestamp": "1762858267",
  2322. "security-coverage": {
  2323. "status": "covered",
  2324. "message": "Covered by Drupal's security advisory policy"
  2325. }
  2326. }
  2327. },
  2328. "notification-url": "https://packages.drupal.org/8/downloads",
  2329. "license": [
  2330. "GPL-2.0-or-later"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "theamoeba",
  2335. "homepage": "https://www.drupal.org/user/251700"
  2336. },
  2337. {
  2338. "name": "yogeshmpawar",
  2339. "homepage": "https://www.drupal.org/user/2922907"
  2340. }
  2341. ],
  2342. "description": "Make the login screens better :)",
  2343. "homepage": "https://www.drupal.org/project/betterlogin",
  2344. "support": {
  2345. "source": "https://git.drupalcode.org/project/betterlogin"
  2346. }
  2347. },
  2348. {
  2349. "name": "drupal/blazy",
  2350. "version": "2.27.0",
  2351. "source": {
  2352. "type": "git",
  2353. "url": "https://git.drupalcode.org/project/blazy.git",
  2354. "reference": "8.x-2.27"
  2355. },
  2356. "dist": {
  2357. "type": "zip",
  2358. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2359. "reference": "8.x-2.27",
  2360. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2361. },
  2362. "require": {
  2363. "drupal/core": "^8.8 || ^9 || ^10"
  2364. },
  2365. "conflict": {
  2366. "drupal/csp": "<1.12"
  2367. },
  2368. "type": "drupal-module",
  2369. "extra": {
  2370. "drupal": {
  2371. "version": "8.x-2.27",
  2372. "datestamp": "1715944090",
  2373. "security-coverage": {
  2374. "status": "covered",
  2375. "message": "Covered by Drupal's security advisory policy"
  2376. }
  2377. }
  2378. },
  2379. "notification-url": "https://packages.drupal.org/8/downloads",
  2380. "license": [
  2381. "GPL-2.0-or-later"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "Gaus Surahman",
  2386. "homepage": "https://www.drupal.org/u/gausarts",
  2387. "role": "Maintainer"
  2388. },
  2389. {
  2390. "name": "Contributors",
  2391. "homepage": "https://www.drupal.org/node/2663268/committers",
  2392. "role": "Contributor"
  2393. },
  2394. {
  2395. "name": "geek-merlin",
  2396. "homepage": "https://www.drupal.org/user/229048"
  2397. },
  2398. {
  2399. "name": "sun",
  2400. "homepage": "https://www.drupal.org/user/54136"
  2401. }
  2402. ],
  2403. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2404. "homepage": "https://drupal.org/project/blazy",
  2405. "keywords": [
  2406. "Drupal",
  2407. "bLazy",
  2408. "lazyload"
  2409. ],
  2410. "support": {
  2411. "source": "https://git.drupalcode.org/project/blazy",
  2412. "issues": "https://drupal.org/project/issues/blazy"
  2413. }
  2414. },
  2415. {
  2416. "name": "drupal/block_class",
  2417. "version": "4.0.2",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://git.drupalcode.org/project/block_class.git",
  2421. "reference": "4.0.2"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.2.zip",
  2426. "reference": "4.0.2",
  2427. "shasum": "10c30a6a113a00722cb42798692c3c0389c35a89"
  2428. },
  2429. "require": {
  2430. "drupal/core": "^9 || ^10 || ^11"
  2431. },
  2432. "type": "drupal-module",
  2433. "extra": {
  2434. "drupal": {
  2435. "version": "4.0.2",
  2436. "datestamp": "1762734005",
  2437. "security-coverage": {
  2438. "status": "covered",
  2439. "message": "Covered by Drupal's security advisory policy"
  2440. }
  2441. }
  2442. },
  2443. "notification-url": "https://packages.drupal.org/8/downloads",
  2444. "license": [
  2445. "GPL-2.0-or-later"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Todd Nienkerk",
  2450. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2451. "role": "Maintainer"
  2452. },
  2453. {
  2454. "name": "Renato Gonçalves (RenatoG)",
  2455. "homepage": "https://www.drupal.org/u/RenatoG",
  2456. "role": "Maintainer"
  2457. },
  2458. {
  2459. "name": "Neslee Canil Pinto",
  2460. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2461. "role": "Maintainer"
  2462. },
  2463. {
  2464. "name": "Aaron Stanush",
  2465. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2466. "role": "Maintainer"
  2467. },
  2468. {
  2469. "name": "David Suissa (DYdave)",
  2470. "homepage": "https://www.drupal.org/u/DYdave",
  2471. "role": "Maintainer"
  2472. },
  2473. {
  2474. "name": "Four Kitchens",
  2475. "homepage": "https://www.drupal.org/user/358502",
  2476. "role": "Maintainer"
  2477. },
  2478. {
  2479. "name": "berenddeboer",
  2480. "homepage": "https://www.drupal.org/u/berenddeboer",
  2481. "role": "Maintainer"
  2482. },
  2483. {
  2484. "name": "elliotttf",
  2485. "homepage": "https://www.drupal.org/u/elliotttf",
  2486. "role": "Maintainer"
  2487. },
  2488. {
  2489. "name": "Michal Minecki (mirzu)",
  2490. "homepage": "https://www.drupal.org/u/mirzu",
  2491. "role": "Maintainer"
  2492. },
  2493. {
  2494. "name": "Patrick Coffey (pcoffey)",
  2495. "homepage": "https://www.drupal.org/u/pcoffey",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "Taylor Smith (tsmith512)",
  2500. "homepage": "https://www.drupal.org/u/tsmith512",
  2501. "role": "Maintainer"
  2502. }
  2503. ],
  2504. "description": "Allows assigning classes, attributes and ID to blocks.",
  2505. "homepage": "https://www.drupal.org/project/block_class",
  2506. "keywords": [
  2507. "Drupal"
  2508. ],
  2509. "support": {
  2510. "source": "https://git.drupalcode.org/project/block_class",
  2511. "issues": "https://www.drupal.org/project/issues/block_class",
  2512. "irc": "irc://irc.freenode.org/drupal-contribute"
  2513. }
  2514. },
  2515. {
  2516. "name": "drupal/computed_field",
  2517. "version": "3.0.0",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://git.drupalcode.org/project/computed_field.git",
  2521. "reference": "3.0.0"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2526. "reference": "3.0.0",
  2527. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2528. },
  2529. "require": {
  2530. "drupal/core": "^8 || ^9 || ^10"
  2531. },
  2532. "type": "drupal-module",
  2533. "extra": {
  2534. "drupal": {
  2535. "version": "3.0.0",
  2536. "datestamp": "1705775905",
  2537. "security-coverage": {
  2538. "status": "covered",
  2539. "message": "Covered by Drupal's security advisory policy"
  2540. }
  2541. }
  2542. },
  2543. "notification-url": "https://packages.drupal.org/8/downloads",
  2544. "license": [
  2545. "GPL-2.0-or-later"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "agileware",
  2550. "homepage": "https://www.drupal.org/user/89106"
  2551. },
  2552. {
  2553. "name": "colan",
  2554. "homepage": "https://www.drupal.org/user/58704"
  2555. },
  2556. {
  2557. "name": "dealancer",
  2558. "homepage": "https://www.drupal.org/user/243418"
  2559. },
  2560. {
  2561. "name": "joachim",
  2562. "homepage": "https://www.drupal.org/user/107701"
  2563. },
  2564. {
  2565. "name": "markus_petrux",
  2566. "homepage": "https://www.drupal.org/user/39593"
  2567. },
  2568. {
  2569. "name": "Moonshine",
  2570. "homepage": "https://www.drupal.org/user/133705"
  2571. },
  2572. {
  2573. "name": "nickcaballero",
  2574. "homepage": "https://www.drupal.org/user/588336"
  2575. },
  2576. {
  2577. "name": "Pedro Lozano",
  2578. "homepage": "https://www.drupal.org/user/123766"
  2579. },
  2580. {
  2581. "name": "ram4nd",
  2582. "homepage": "https://www.drupal.org/user/601534"
  2583. }
  2584. ],
  2585. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2586. "homepage": "https://www.drupal.org/project/computed_field",
  2587. "support": {
  2588. "source": "https://git.drupalcode.org/project/computed_field"
  2589. }
  2590. },
  2591. {
  2592. "name": "drupal/computed_token_field",
  2593. "version": "1.0.0-beta1",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2597. "reference": "1.0.0-beta1"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2602. "reference": "1.0.0-beta1",
  2603. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2604. },
  2605. "require": {
  2606. "drupal/computed_field": "^3.0",
  2607. "drupal/core": "^8 || ^9 || ^10"
  2608. },
  2609. "require-dev": {
  2610. "drupal/eck": "*",
  2611. "drupal/field_permissions": "*",
  2612. "drupal/hide_revision_field": "*",
  2613. "drupal/inline_entity_form": "*"
  2614. },
  2615. "type": "drupal-module",
  2616. "extra": {
  2617. "drupal": {
  2618. "version": "1.0.0-beta1",
  2619. "datestamp": "1741812647",
  2620. "security-coverage": {
  2621. "status": "not-covered",
  2622. "message": "Beta releases are not covered by Drupal security advisories."
  2623. }
  2624. }
  2625. },
  2626. "notification-url": "https://packages.drupal.org/8/downloads",
  2627. "license": [
  2628. "GPLv2 or later"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "Derek Laventure",
  2633. "homepage": "https://www.drupal.org/user/3082389",
  2634. "email": "derek@consensus.enterprises"
  2635. },
  2636. {
  2637. "name": "colan",
  2638. "homepage": "https://www.drupal.org/user/58704"
  2639. },
  2640. {
  2641. "name": "ergonlogic",
  2642. "homepage": "https://www.drupal.org/user/368613"
  2643. },
  2644. {
  2645. "name": "spiderman",
  2646. "homepage": "https://www.drupal.org/user/1631"
  2647. }
  2648. ],
  2649. "description": "Computed field that accepts a token to calculate its value.",
  2650. "homepage": "https://www.drupal.org/project/computed_token_field",
  2651. "support": {
  2652. "source": "https://git.drupalcode.org/project/computed_token_field"
  2653. }
  2654. },
  2655. {
  2656. "name": "drupal/config_devel",
  2657. "version": "1.10.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://git.drupalcode.org/project/config_devel.git",
  2661. "reference": "8.x-1.10"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2666. "reference": "8.x-1.10",
  2667. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2668. },
  2669. "require": {
  2670. "drupal/core": "^9.3 || ^10 || ^11"
  2671. },
  2672. "type": "drupal-module",
  2673. "extra": {
  2674. "drupal": {
  2675. "version": "8.x-1.10",
  2676. "datestamp": "1727184343",
  2677. "security-coverage": {
  2678. "status": "covered",
  2679. "message": "Covered by Drupal's security advisory policy"
  2680. }
  2681. }
  2682. },
  2683. "notification-url": "https://packages.drupal.org/8/downloads",
  2684. "license": [
  2685. "GPL-2.0+"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "alexpott",
  2690. "homepage": "https://www.drupal.org/user/157725"
  2691. },
  2692. {
  2693. "name": "benjy",
  2694. "homepage": "https://www.drupal.org/user/1852732"
  2695. },
  2696. {
  2697. "name": "chx",
  2698. "homepage": "https://www.drupal.org/user/9446"
  2699. },
  2700. {
  2701. "name": "joachim",
  2702. "homepage": "https://www.drupal.org/user/107701"
  2703. },
  2704. {
  2705. "name": "vijaycs85",
  2706. "homepage": "https://www.drupal.org/user/93488"
  2707. }
  2708. ],
  2709. "description": "Helps developers work with configuration.",
  2710. "homepage": "https://www.drupal.org/project/config_devel",
  2711. "support": {
  2712. "source": "https://git.drupalcode.org/project/config_devel"
  2713. }
  2714. },
  2715. {
  2716. "name": "drupal/config_enforce",
  2717. "version": "1.0.7",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2721. "reference": "1.0.7"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2726. "reference": "1.0.7",
  2727. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2728. },
  2729. "require": {
  2730. "drupal/core": "^8 || ^9 || ^10",
  2731. "php": "^7.4 || ^8"
  2732. },
  2733. "suggest": {
  2734. "drush/drush": "Allows for running enforce commands via the CLI"
  2735. },
  2736. "type": "drupal-module",
  2737. "extra": {
  2738. "drupal": {
  2739. "version": "1.0.7",
  2740. "datestamp": "1723136457",
  2741. "security-coverage": {
  2742. "status": "covered",
  2743. "message": "Covered by Drupal's security advisory policy"
  2744. }
  2745. },
  2746. "drush": {
  2747. "services": {
  2748. "drush.services.yml": "^11"
  2749. }
  2750. }
  2751. },
  2752. "notification-url": "https://packages.drupal.org/8/downloads",
  2753. "license": [
  2754. "GPLv3 or later"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Christopher Gervais",
  2759. "homepage": "https://www.drupal.org/user/1131532",
  2760. "email": "chris@ergonlogic.com"
  2761. },
  2762. {
  2763. "name": "Dan Friedman",
  2764. "homepage": "https://www.drupal.org/user/58704",
  2765. "email": "dan@consensus.enterprises"
  2766. },
  2767. {
  2768. "name": "Derek Laventure",
  2769. "homepage": "https://www.drupal.org/user/368613",
  2770. "email": "derek@consensus.enterprises"
  2771. },
  2772. {
  2773. "name": "Matei Stanca",
  2774. "homepage": "https://ambientimpact.com"
  2775. },
  2776. {
  2777. "name": "M Parker",
  2778. "homepage": "https://www.drupal.org/u/mparker17"
  2779. },
  2780. {
  2781. "name": "Serena Zhu",
  2782. "homepage": "https://www.drupal.org/u/szhu"
  2783. },
  2784. {
  2785. "name": "spiderman",
  2786. "homepage": "https://www.drupal.org/user/1631"
  2787. },
  2788. {
  2789. "name": "szhu",
  2790. "homepage": "https://www.drupal.org/user/3525295"
  2791. }
  2792. ],
  2793. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2794. "homepage": "https://www.drupal.org/project/config_enforce",
  2795. "support": {
  2796. "source": "https://git.drupalcode.org/project/config_enforce"
  2797. }
  2798. },
  2799. {
  2800. "name": "drupal/config_filter",
  2801. "version": "2.7.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://git.drupalcode.org/project/config_filter.git",
  2805. "reference": "8.x-2.7"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2810. "reference": "8.x-2.7",
  2811. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2812. },
  2813. "require": {
  2814. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2815. },
  2816. "conflict": {
  2817. "drush/drush": "<10"
  2818. },
  2819. "suggest": {
  2820. "drupal/config_split": "Split site configuration for different environments."
  2821. },
  2822. "type": "drupal-module",
  2823. "extra": {
  2824. "drupal": {
  2825. "version": "8.x-2.7",
  2826. "datestamp": "1727472458",
  2827. "security-coverage": {
  2828. "status": "covered",
  2829. "message": "Covered by Drupal's security advisory policy"
  2830. }
  2831. }
  2832. },
  2833. "notification-url": "https://packages.drupal.org/8/downloads",
  2834. "license": [
  2835. "GPL-2.0-or-later"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "Fabian Bircher",
  2840. "homepage": "https://www.drupal.org/u/bircher",
  2841. "email": "opensource@fabianbircher.com",
  2842. "role": "Maintainer"
  2843. },
  2844. {
  2845. "name": "Nuvole Web",
  2846. "homepage": "http://nuvole.org",
  2847. "email": "info@nuvole.org",
  2848. "role": "Maintainer"
  2849. },
  2850. {
  2851. "name": "pescetti",
  2852. "homepage": "https://www.drupal.org/user/436244"
  2853. }
  2854. ],
  2855. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2856. "homepage": "https://www.drupal.org/project/config_filter",
  2857. "keywords": [
  2858. "Drupal",
  2859. "configuration",
  2860. "configuration management"
  2861. ],
  2862. "support": {
  2863. "source": "https://git.drupalcode.org/project/config_filter",
  2864. "issues": "https://www.drupal.org/project/issues/config_filter",
  2865. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2866. }
  2867. },
  2868. {
  2869. "name": "drupal/config_ignore",
  2870. "version": "3.3.0",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2874. "reference": "8.x-3.3"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2879. "reference": "8.x-3.3",
  2880. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2881. },
  2882. "require": {
  2883. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2884. },
  2885. "require-dev": {
  2886. "drupal/config_filter": "^1.8||^2.2",
  2887. "drush/drush": "^10 || ^11 || ^12"
  2888. },
  2889. "type": "drupal-module",
  2890. "extra": {
  2891. "drupal": {
  2892. "version": "8.x-3.3",
  2893. "datestamp": "1713299496",
  2894. "security-coverage": {
  2895. "status": "covered",
  2896. "message": "Covered by Drupal's security advisory policy"
  2897. }
  2898. }
  2899. },
  2900. "notification-url": "https://packages.drupal.org/8/downloads",
  2901. "license": [
  2902. "GPL-2.0-or-later"
  2903. ],
  2904. "authors": [
  2905. {
  2906. "name": "Tommy Lynge Jørgensen",
  2907. "homepage": "https://www.drupal.org/u/tlyngej",
  2908. "email": "tlyngej@gmail.com",
  2909. "role": "Maintainer"
  2910. },
  2911. {
  2912. "name": "Fabian Bircher",
  2913. "homepage": "https://www.drupal.org/u/bircher",
  2914. "role": "Maintainer"
  2915. },
  2916. {
  2917. "name": "tlyngej",
  2918. "homepage": "https://www.drupal.org/user/413139"
  2919. }
  2920. ],
  2921. "description": "Ignore certain configuration during import and export.",
  2922. "homepage": "http://drupal.org/project/config_ignore",
  2923. "support": {
  2924. "source": "https://git.drupalcode.org/project/config_ignore",
  2925. "issues": "http://drupal.org/project/config_ignore"
  2926. }
  2927. },
  2928. {
  2929. "name": "drupal/config_pages",
  2930. "version": "2.17.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://git.drupalcode.org/project/config_pages.git",
  2934. "reference": "8.x-2.17"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  2939. "reference": "8.x-2.17",
  2940. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  2941. },
  2942. "require": {
  2943. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  2944. },
  2945. "type": "drupal-module",
  2946. "extra": {
  2947. "drupal": {
  2948. "version": "8.x-2.17",
  2949. "datestamp": "1736029180",
  2950. "security-coverage": {
  2951. "status": "covered",
  2952. "message": "Covered by Drupal's security advisory policy"
  2953. }
  2954. },
  2955. "drush": {
  2956. "services": {
  2957. "drush.services.yml": "^9"
  2958. }
  2959. }
  2960. },
  2961. "notification-url": "https://packages.drupal.org/8/downloads",
  2962. "license": [
  2963. "GPL-2.0-or-later"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "m.krestnicov",
  2968. "homepage": "https://www.drupal.org/user/3193903"
  2969. },
  2970. {
  2971. "name": "qwaygon",
  2972. "homepage": "https://www.drupal.org/user/636624"
  2973. },
  2974. {
  2975. "name": "shumer",
  2976. "homepage": "https://www.drupal.org/user/2297432"
  2977. }
  2978. ],
  2979. "description": "ConfigPages module",
  2980. "homepage": "http://drupal.org/project/config_pages",
  2981. "keywords": [
  2982. "Drupal"
  2983. ],
  2984. "support": {
  2985. "source": "http://cgit.drupalcode.org/config_pages",
  2986. "issues": "http://drupal.org/project/issues/config_pages"
  2987. }
  2988. },
  2989. {
  2990. "name": "drupal/config_update",
  2991. "version": "2.0.0-alpha4",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://git.drupalcode.org/project/config_update.git",
  2995. "reference": "2.0.0-alpha4"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3000. "reference": "2.0.0-alpha4",
  3001. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3002. },
  3003. "require": {
  3004. "drupal/core": "^9.4 || ^10 || ^11"
  3005. },
  3006. "type": "drupal-module",
  3007. "extra": {
  3008. "drupal": {
  3009. "version": "2.0.0-alpha4",
  3010. "datestamp": "1724596931",
  3011. "security-coverage": {
  3012. "status": "not-covered",
  3013. "message": "Alpha releases are not covered by Drupal security advisories."
  3014. }
  3015. }
  3016. },
  3017. "notification-url": "https://packages.drupal.org/8/downloads",
  3018. "license": [
  3019. "GPL-2.0-or-later"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "codebymikey",
  3024. "homepage": "https://www.drupal.org/user/3573206"
  3025. },
  3026. {
  3027. "name": "pasqualle",
  3028. "homepage": "https://www.drupal.org/user/80733"
  3029. },
  3030. {
  3031. "name": "vishalkhode",
  3032. "homepage": "https://www.drupal.org/user/2439156"
  3033. }
  3034. ],
  3035. "description": "Provides basic revert and update functionality for other modules.",
  3036. "homepage": "https://www.drupal.org/project/config_update",
  3037. "support": {
  3038. "source": "https://git.drupalcode.org/project/config_update"
  3039. }
  3040. },
  3041. {
  3042. "name": "drupal/content_lock",
  3043. "version": "2.4.0",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://git.drupalcode.org/project/content_lock.git",
  3047. "reference": "8.x-2.4"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3052. "reference": "8.x-2.4",
  3053. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3054. },
  3055. "require": {
  3056. "drupal/core": "^9.0 || ^10.0"
  3057. },
  3058. "type": "drupal-module",
  3059. "extra": {
  3060. "drupal": {
  3061. "version": "8.x-2.4",
  3062. "datestamp": "1715783058",
  3063. "security-coverage": {
  3064. "status": "covered",
  3065. "message": "Covered by Drupal's security advisory policy"
  3066. }
  3067. }
  3068. },
  3069. "notification-url": "https://packages.drupal.org/8/downloads",
  3070. "license": [
  3071. "GPL-2.0-or-later"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "alexpott",
  3076. "homepage": "https://www.drupal.org/user/157725"
  3077. },
  3078. {
  3079. "name": "astonvictor",
  3080. "homepage": "https://www.drupal.org/user/3466615"
  3081. },
  3082. {
  3083. "name": "chr.fritsch",
  3084. "homepage": "https://www.drupal.org/user/2103716"
  3085. },
  3086. {
  3087. "name": "daniel.bosen",
  3088. "homepage": "https://www.drupal.org/user/404865"
  3089. },
  3090. {
  3091. "name": "ergonlogic",
  3092. "homepage": "https://www.drupal.org/user/368613"
  3093. },
  3094. {
  3095. "name": "mfb",
  3096. "homepage": "https://www.drupal.org/user/12302"
  3097. },
  3098. {
  3099. "name": "volkerk",
  3100. "homepage": "https://www.drupal.org/user/57527"
  3101. }
  3102. ],
  3103. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3104. "homepage": "https://www.drupal.org/project/content_lock",
  3105. "support": {
  3106. "source": "https://git.drupalcode.org/project/content_lock"
  3107. }
  3108. },
  3109. {
  3110. "name": "drupal/context",
  3111. "version": "5.0.0-rc2",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://git.drupalcode.org/project/context.git",
  3115. "reference": "5.0.0-rc2"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3120. "reference": "5.0.0-rc2",
  3121. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3122. },
  3123. "require": {
  3124. "drupal/core": "^9.3 || ^10 || ^11"
  3125. },
  3126. "type": "drupal-module",
  3127. "extra": {
  3128. "drupal": {
  3129. "version": "5.0.0-rc2",
  3130. "datestamp": "1741253306",
  3131. "security-coverage": {
  3132. "status": "not-covered",
  3133. "message": "RC releases are not covered by Drupal security advisories."
  3134. }
  3135. }
  3136. },
  3137. "notification-url": "https://packages.drupal.org/8/downloads",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Christoffer Palm",
  3144. "homepage": "http://www.oddhill.se/",
  3145. "email": "christoffer.palm@oddhill.se",
  3146. "role": "Developer"
  3147. },
  3148. {
  3149. "name": "boshtian",
  3150. "homepage": "https://www.drupal.org/user/1773456"
  3151. },
  3152. {
  3153. "name": "colan",
  3154. "homepage": "https://www.drupal.org/user/58704"
  3155. },
  3156. {
  3157. "name": "emanaton",
  3158. "homepage": "https://www.drupal.org/user/120853"
  3159. },
  3160. {
  3161. "name": "febbraro",
  3162. "homepage": "https://www.drupal.org/user/43670"
  3163. },
  3164. {
  3165. "name": "fizk",
  3166. "homepage": "https://www.drupal.org/user/473174"
  3167. },
  3168. {
  3169. "name": "hass",
  3170. "homepage": "https://www.drupal.org/user/85918"
  3171. },
  3172. {
  3173. "name": "hefox",
  3174. "homepage": "https://www.drupal.org/user/426416"
  3175. },
  3176. {
  3177. "name": "jmiccolis",
  3178. "homepage": "https://www.drupal.org/user/31731"
  3179. },
  3180. {
  3181. "name": "kristen pol",
  3182. "homepage": "https://www.drupal.org/user/8389"
  3183. },
  3184. {
  3185. "name": "mandclu",
  3186. "homepage": "https://www.drupal.org/user/52136"
  3187. },
  3188. {
  3189. "name": "nedjo",
  3190. "homepage": "https://www.drupal.org/user/4481"
  3191. },
  3192. {
  3193. "name": "NormySan",
  3194. "homepage": "https://www.drupal.org/user/112352"
  3195. },
  3196. {
  3197. "name": "patricksettle",
  3198. "homepage": "https://www.drupal.org/user/26618"
  3199. },
  3200. {
  3201. "name": "paulocs",
  3202. "homepage": "https://www.drupal.org/user/3640109"
  3203. },
  3204. {
  3205. "name": "steven jones",
  3206. "homepage": "https://www.drupal.org/user/99644"
  3207. },
  3208. {
  3209. "name": "tekante",
  3210. "homepage": "https://www.drupal.org/user/640024"
  3211. },
  3212. {
  3213. "name": "yhahn",
  3214. "homepage": "https://www.drupal.org/user/264833"
  3215. }
  3216. ],
  3217. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3218. "homepage": "https://github.com/oddhill/context",
  3219. "keywords": [
  3220. "Drupal",
  3221. "block",
  3222. "conditions",
  3223. "context",
  3224. "visibility"
  3225. ],
  3226. "support": {
  3227. "source": "https://github.com/oddhill/context",
  3228. "issues": "https://github.com/oddhill/context/issues",
  3229. "docs": "https://github.com/oddhill/context"
  3230. }
  3231. },
  3232. {
  3233. "name": "drupal/core",
  3234. "version": "10.6.5",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/drupal/core.git",
  3238. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  3243. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "asm89/stack-cors": "^2.3",
  3248. "composer-runtime-api": "^2.1",
  3249. "composer/semver": "^3.3",
  3250. "doctrine/lexer": "^2",
  3251. "egulias/email-validator": "^3.2.1|^4.0",
  3252. "ext-date": "*",
  3253. "ext-dom": "*",
  3254. "ext-filter": "*",
  3255. "ext-gd": "*",
  3256. "ext-hash": "*",
  3257. "ext-json": "*",
  3258. "ext-pcre": "*",
  3259. "ext-pdo": "*",
  3260. "ext-session": "*",
  3261. "ext-simplexml": "*",
  3262. "ext-spl": "*",
  3263. "ext-tokenizer": "*",
  3264. "ext-xml": "*",
  3265. "guzzlehttp/guzzle": "^7.5",
  3266. "guzzlehttp/psr7": "^2.4.5",
  3267. "masterminds/html5": "^2.7",
  3268. "mck89/peast": "^1.14",
  3269. "pear/archive_tar": "^1.4.14",
  3270. "php": ">=8.1.0",
  3271. "psr/log": "^3.0",
  3272. "sebastian/diff": "^4",
  3273. "symfony/console": "^6.4",
  3274. "symfony/dependency-injection": "^6.4",
  3275. "symfony/event-dispatcher": "^6.4",
  3276. "symfony/filesystem": "^6.4",
  3277. "symfony/finder": "^6.4",
  3278. "symfony/http-foundation": "^6.4",
  3279. "symfony/http-kernel": "^6.4",
  3280. "symfony/mailer": "^6.4",
  3281. "symfony/mime": "^6.4",
  3282. "symfony/polyfill-iconv": "^1.26",
  3283. "symfony/process": "^6.4.33",
  3284. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3285. "symfony/routing": "^6.4",
  3286. "symfony/serializer": "^6.4",
  3287. "symfony/validator": "^6.4",
  3288. "symfony/yaml": "^6.4",
  3289. "twig/twig": "^3.22.0"
  3290. },
  3291. "conflict": {
  3292. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  3293. "drush/drush": "<12.4.3"
  3294. },
  3295. "replace": {
  3296. "drupal/core-annotation": "self.version",
  3297. "drupal/core-assertion": "self.version",
  3298. "drupal/core-class-finder": "self.version",
  3299. "drupal/core-datetime": "self.version",
  3300. "drupal/core-dependency-injection": "self.version",
  3301. "drupal/core-diff": "self.version",
  3302. "drupal/core-discovery": "self.version",
  3303. "drupal/core-event-dispatcher": "self.version",
  3304. "drupal/core-file-cache": "self.version",
  3305. "drupal/core-file-security": "self.version",
  3306. "drupal/core-filesystem": "self.version",
  3307. "drupal/core-front-matter": "self.version",
  3308. "drupal/core-gettext": "self.version",
  3309. "drupal/core-graph": "self.version",
  3310. "drupal/core-http-foundation": "self.version",
  3311. "drupal/core-php-storage": "self.version",
  3312. "drupal/core-plugin": "self.version",
  3313. "drupal/core-proxy-builder": "self.version",
  3314. "drupal/core-render": "self.version",
  3315. "drupal/core-serialization": "self.version",
  3316. "drupal/core-transliteration": "self.version",
  3317. "drupal/core-utility": "self.version",
  3318. "drupal/core-uuid": "self.version",
  3319. "drupal/core-version": "self.version"
  3320. },
  3321. "suggest": {
  3322. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3323. },
  3324. "type": "drupal-core",
  3325. "extra": {
  3326. "drupal-scaffold": {
  3327. "file-mapping": {
  3328. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3329. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3330. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3331. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3332. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3333. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3334. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3335. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3336. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3337. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3338. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3339. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3340. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3341. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3342. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3343. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3344. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3345. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3346. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3347. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3348. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3349. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3350. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3351. }
  3352. }
  3353. },
  3354. "autoload": {
  3355. "files": [
  3356. "includes/bootstrap.inc"
  3357. ],
  3358. "psr-4": {
  3359. "Drupal\\Core\\": "lib/Drupal/Core",
  3360. "Drupal\\Component\\": "lib/Drupal/Component"
  3361. },
  3362. "classmap": [
  3363. "lib/Drupal.php",
  3364. "lib/Drupal/Component/DependencyInjection/Container.php",
  3365. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3366. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3367. "lib/Drupal/Component/Utility/Timer.php",
  3368. "lib/Drupal/Component/Utility/Unicode.php",
  3369. "lib/Drupal/Core/Cache/Cache.php",
  3370. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3371. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3372. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3373. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3374. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3375. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3376. "lib/Drupal/Core/Database/Connection.php",
  3377. "lib/Drupal/Core/Database/Database.php",
  3378. "lib/Drupal/Core/Database/StatementInterface.php",
  3379. "lib/Drupal/Core/DependencyInjection/Container.php",
  3380. "lib/Drupal/Core/DrupalKernel.php",
  3381. "lib/Drupal/Core/DrupalKernelInterface.php",
  3382. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3383. "lib/Drupal/Core/Site/Settings.php",
  3384. "lib/Drupal/Component/Datetime/Time.php"
  3385. ]
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "GPL-2.0-or-later"
  3390. ],
  3391. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3392. "support": {
  3393. "source": "https://github.com/drupal/core/tree/10.6.5"
  3394. },
  3395. "time": "2026-03-06T09:55:31+00:00"
  3396. },
  3397. {
  3398. "name": "drupal/core-composer-scaffold",
  3399. "version": "10.6.5",
  3400. "source": {
  3401. "type": "git",
  3402. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3403. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3404. },
  3405. "dist": {
  3406. "type": "zip",
  3407. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3408. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3409. "shasum": ""
  3410. },
  3411. "require": {
  3412. "composer-plugin-api": "^2",
  3413. "php": ">=7.3.0"
  3414. },
  3415. "conflict": {
  3416. "drupal-composer/drupal-scaffold": "*"
  3417. },
  3418. "require-dev": {
  3419. "composer/composer": "^1.8@stable"
  3420. },
  3421. "type": "composer-plugin",
  3422. "extra": {
  3423. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3424. "branch-alias": {
  3425. "dev-master": "1.0.x-dev"
  3426. }
  3427. },
  3428. "autoload": {
  3429. "psr-4": {
  3430. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3431. }
  3432. },
  3433. "notification-url": "https://packagist.org/downloads/",
  3434. "license": [
  3435. "GPL-2.0-or-later"
  3436. ],
  3437. "description": "A flexible Composer project scaffold builder.",
  3438. "homepage": "https://www.drupal.org/project/drupal",
  3439. "keywords": [
  3440. "drupal"
  3441. ],
  3442. "support": {
  3443. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  3444. },
  3445. "time": "2024-08-22T14:31:30+00:00"
  3446. },
  3447. {
  3448. "name": "drupal/core-project-message",
  3449. "version": "10.6.5",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/drupal/core-project-message.git",
  3453. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3458. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "composer-plugin-api": "^2",
  3463. "php": ">=7.3.0"
  3464. },
  3465. "type": "composer-plugin",
  3466. "extra": {
  3467. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3468. },
  3469. "autoload": {
  3470. "psr-4": {
  3471. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3472. }
  3473. },
  3474. "notification-url": "https://packagist.org/downloads/",
  3475. "license": [
  3476. "GPL-2.0-or-later"
  3477. ],
  3478. "description": "Adds a message after Composer installation.",
  3479. "homepage": "https://www.drupal.org/project/drupal",
  3480. "keywords": [
  3481. "drupal"
  3482. ],
  3483. "support": {
  3484. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  3485. },
  3486. "time": "2023-07-24T07:55:25+00:00"
  3487. },
  3488. {
  3489. "name": "drupal/core-recommended",
  3490. "version": "10.6.5",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/drupal/core-recommended.git",
  3494. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  3499. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "asm89/stack-cors": "~v2.3.0",
  3504. "composer/semver": "~3.4.4",
  3505. "doctrine/deprecations": "~1.1.5",
  3506. "doctrine/lexer": "~2.1.1",
  3507. "drupal/core": "10.6.5",
  3508. "egulias/email-validator": "~4.0.4",
  3509. "guzzlehttp/guzzle": "~7.10.0",
  3510. "guzzlehttp/promises": "~2.3.0",
  3511. "guzzlehttp/psr7": "~2.8.0",
  3512. "masterminds/html5": "~2.10.0",
  3513. "mck89/peast": "~v1.17.4",
  3514. "pear/archive_tar": "~1.6.0",
  3515. "pear/console_getopt": "~v1.4.3",
  3516. "pear/pear-core-minimal": "~v1.10.16",
  3517. "pear/pear_exception": "~v1.0.2",
  3518. "psr/container": "~2.0.2",
  3519. "psr/event-dispatcher": "~1.0.0",
  3520. "psr/http-client": "~1.0.3",
  3521. "psr/http-factory": "~1.1.0",
  3522. "psr/log": "~3.0.2",
  3523. "ralouphie/getallheaders": "~3.0.3",
  3524. "sebastian/diff": "~4.0.6",
  3525. "symfony/console": "~v6.4.27",
  3526. "symfony/dependency-injection": "~v6.4.26",
  3527. "symfony/deprecation-contracts": "~v3.6.0",
  3528. "symfony/error-handler": "~v6.4.26",
  3529. "symfony/event-dispatcher": "~v6.4.25",
  3530. "symfony/event-dispatcher-contracts": "~v3.6.0",
  3531. "symfony/filesystem": "~v6.4.24",
  3532. "symfony/finder": "~v6.4.27",
  3533. "symfony/http-foundation": "~v6.4.29",
  3534. "symfony/http-kernel": "~v6.4.29",
  3535. "symfony/mailer": "~v6.4.27",
  3536. "symfony/mime": "~v6.4.26",
  3537. "symfony/polyfill-ctype": "~v1.33.0",
  3538. "symfony/polyfill-iconv": "~v1.33.0",
  3539. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  3540. "symfony/polyfill-intl-idn": "~v1.33.0",
  3541. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  3542. "symfony/polyfill-mbstring": "~v1.33.0",
  3543. "symfony/polyfill-php83": "~v1.33.0",
  3544. "symfony/process": "~v6.4.33",
  3545. "symfony/psr-http-message-bridge": "~v6.4.24",
  3546. "symfony/routing": "~v6.4.28",
  3547. "symfony/serializer": "~v6.4.27",
  3548. "symfony/service-contracts": "~v3.6.1",
  3549. "symfony/string": "~v6.4.26",
  3550. "symfony/translation-contracts": "~v3.6.1",
  3551. "symfony/validator": "~v6.4.29",
  3552. "symfony/var-dumper": "~v6.4.26",
  3553. "symfony/var-exporter": "~v6.4.26",
  3554. "symfony/yaml": "~v6.4.26",
  3555. "twig/twig": "~v3.22.0"
  3556. },
  3557. "conflict": {
  3558. "webflo/drupal-core-strict": "*"
  3559. },
  3560. "type": "metapackage",
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "GPL-2.0-or-later"
  3564. ],
  3565. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3566. "support": {
  3567. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  3568. },
  3569. "time": "2026-03-06T09:55:31+00:00"
  3570. },
  3571. {
  3572. "name": "drupal/ctools",
  3573. "version": "4.1.0",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://git.drupalcode.org/project/ctools.git",
  3577. "reference": "4.1.0"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3582. "reference": "4.1.0",
  3583. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3584. },
  3585. "require": {
  3586. "drupal/core": "^9.5 || ^10 || ^11"
  3587. },
  3588. "type": "drupal-module",
  3589. "extra": {
  3590. "drupal": {
  3591. "version": "4.1.0",
  3592. "datestamp": "1718144949",
  3593. "security-coverage": {
  3594. "status": "covered",
  3595. "message": "Covered by Drupal's security advisory policy"
  3596. }
  3597. },
  3598. "branch-alias": {
  3599. "dev-8.x-3.x": "3.x-dev"
  3600. }
  3601. },
  3602. "notification-url": "https://packages.drupal.org/8/downloads",
  3603. "license": [
  3604. "GPL-2.0-or-later"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Kris Vanderwater (EclipseGc)",
  3609. "homepage": "https://www.drupal.org/u/eclipsegc",
  3610. "role": "Maintainer"
  3611. },
  3612. {
  3613. "name": "Jakob Perry (japerry)",
  3614. "homepage": "https://www.drupal.org/u/japerry",
  3615. "role": "Maintainer"
  3616. },
  3617. {
  3618. "name": "Tim Plunkett (tim.plunkett)",
  3619. "homepage": "https://www.drupal.org/u/timplunkett",
  3620. "role": "Maintainer"
  3621. },
  3622. {
  3623. "name": "James Gilliland (neclimdul)",
  3624. "homepage": "https://www.drupal.org/u/neclimdul",
  3625. "role": "Maintainer"
  3626. },
  3627. {
  3628. "name": "Daniel Wehner (dawehner)",
  3629. "homepage": "https://www.drupal.org/u/dawehner",
  3630. "role": "Maintainer"
  3631. },
  3632. {
  3633. "name": "joelpittet",
  3634. "homepage": "https://www.drupal.org/user/160302"
  3635. },
  3636. {
  3637. "name": "merlinofchaos",
  3638. "homepage": "https://www.drupal.org/user/26979"
  3639. },
  3640. {
  3641. "name": "neclimdul",
  3642. "homepage": "https://www.drupal.org/user/48673"
  3643. },
  3644. {
  3645. "name": "sdboyer",
  3646. "homepage": "https://www.drupal.org/user/146719"
  3647. },
  3648. {
  3649. "name": "sun",
  3650. "homepage": "https://www.drupal.org/user/54136"
  3651. },
  3652. {
  3653. "name": "tim.plunkett",
  3654. "homepage": "https://www.drupal.org/user/241634"
  3655. }
  3656. ],
  3657. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3658. "homepage": "https://www.drupal.org/project/ctools",
  3659. "support": {
  3660. "source": "https://git.drupalcode.org/project/ctools",
  3661. "issues": "https://www.drupal.org/project/issues/ctools"
  3662. }
  3663. },
  3664. {
  3665. "name": "drupal/date_range_formatter",
  3666. "version": "dev-9.0.x",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3670. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3671. },
  3672. "require": {
  3673. "drupal/core": "^8 || ^9 || ^10"
  3674. },
  3675. "type": "drupal-module",
  3676. "extra": {
  3677. "branch-alias": {
  3678. "dev-9.0.x": "9.0.x-dev"
  3679. },
  3680. "drupal": {
  3681. "version": "9.0.x-dev",
  3682. "datestamp": "1718887202",
  3683. "security-coverage": {
  3684. "status": "not-covered",
  3685. "message": "Dev releases are not covered by Drupal security advisories."
  3686. }
  3687. }
  3688. },
  3689. "notification-url": "https://packages.drupal.org/8/downloads",
  3690. "license": [
  3691. "GPL-2.0-or-later"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "maximpodorov",
  3696. "homepage": "https://www.drupal.org/user/515310"
  3697. },
  3698. {
  3699. "name": "sudishth",
  3700. "homepage": "https://www.drupal.org/user/1440562"
  3701. }
  3702. ],
  3703. "description": "Formats date ranges.",
  3704. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3705. "support": {
  3706. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3707. }
  3708. },
  3709. {
  3710. "name": "drupal/devel",
  3711. "version": "5.5.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://git.drupalcode.org/project/devel.git",
  3715. "reference": "5.5.0"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://ftp.drupal.org/files/projects/devel-5.5.0.zip",
  3720. "reference": "5.5.0",
  3721. "shasum": "b6f45c84ec31bc18817c7464b51e951dec73d5ce"
  3722. },
  3723. "require": {
  3724. "doctrine/common": "^2.7 || ^3.4",
  3725. "drupal/core": "^10.3 || ^11 || ^12",
  3726. "php": ">=8.3",
  3727. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3728. },
  3729. "conflict": {
  3730. "drupal/core": "<10.3",
  3731. "drush/drush": "<13.7.0"
  3732. },
  3733. "require-dev": {
  3734. "drupal/navigation_extra_tools": "1.0.x-dev",
  3735. "drush/drush": "^13",
  3736. "firephp/firephp-core": "^0.5.3"
  3737. },
  3738. "type": "drupal-module",
  3739. "extra": {
  3740. "drupal": {
  3741. "version": "5.5.0",
  3742. "datestamp": "1764211205",
  3743. "security-coverage": {
  3744. "status": "covered",
  3745. "message": "Covered by Drupal's security advisory policy"
  3746. }
  3747. }
  3748. },
  3749. "notification-url": "https://packages.drupal.org/8/downloads",
  3750. "license": [
  3751. "GPL-2.0-or-later"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "moshe weitzman",
  3756. "homepage": "https://www.drupal.org/user/23"
  3757. }
  3758. ],
  3759. "description": "Various blocks, pages, and functions for developers.",
  3760. "homepage": "https://www.drupal.org/project/devel",
  3761. "support": {
  3762. "source": "https://gitlab.com/drupalspoons/devel",
  3763. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3764. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3765. }
  3766. },
  3767. {
  3768. "name": "drupal/devel_kint_extras",
  3769. "version": "1.1.4",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3773. "reference": "1.1.4"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3778. "reference": "1.1.4",
  3779. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3780. },
  3781. "require": {
  3782. "drupal/core": "^9 || ^10 || ^11",
  3783. "drupal/devel": "^4.0 || ^5.0",
  3784. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3785. },
  3786. "type": "drupal-module",
  3787. "extra": {
  3788. "drupal": {
  3789. "version": "1.1.4",
  3790. "datestamp": "1740995042",
  3791. "security-coverage": {
  3792. "status": "covered",
  3793. "message": "Covered by Drupal's security advisory policy"
  3794. }
  3795. }
  3796. },
  3797. "notification-url": "https://packages.drupal.org/8/downloads",
  3798. "license": [
  3799. "GPL-2.0-or-later"
  3800. ],
  3801. "authors": [
  3802. {
  3803. "name": "Jan Chojnacki",
  3804. "homepage": "https://www.drupal.org/u/janchojnacki"
  3805. },
  3806. {
  3807. "name": "Other contributors",
  3808. "homepage": "https://www.drupal.org/node/3164492/committers"
  3809. }
  3810. ],
  3811. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3812. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3813. "support": {
  3814. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3815. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3816. "chat": "irc://irc.freenode.org/drupal-contribute"
  3817. }
  3818. },
  3819. {
  3820. "name": "drupal/email_registration",
  3821. "version": "1.4.0",
  3822. "source": {
  3823. "type": "git",
  3824. "url": "https://git.drupalcode.org/project/email_registration.git",
  3825. "reference": "8.x-1.4"
  3826. },
  3827. "dist": {
  3828. "type": "zip",
  3829. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3830. "reference": "8.x-1.4",
  3831. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3832. },
  3833. "require": {
  3834. "drupal/core": "^9.1 || ^10"
  3835. },
  3836. "conflict": {
  3837. "drupal/commerce": "<2.12"
  3838. },
  3839. "require-dev": {
  3840. "drupal/commerce": "^2.0",
  3841. "drupal/token": "*"
  3842. },
  3843. "type": "drupal-module",
  3844. "extra": {
  3845. "drupal": {
  3846. "version": "8.x-1.4",
  3847. "datestamp": "1700548925",
  3848. "security-coverage": {
  3849. "status": "covered",
  3850. "message": "Covered by Drupal's security advisory policy"
  3851. }
  3852. }
  3853. },
  3854. "notification-url": "https://packages.drupal.org/8/downloads",
  3855. "license": [
  3856. "GPL-2.0-or-later"
  3857. ],
  3858. "authors": [
  3859. {
  3860. "name": "Greg Knaddison (greggles)",
  3861. "homepage": "https://www.drupal.org/u/greggles",
  3862. "role": "Maintainer"
  3863. },
  3864. {
  3865. "name": "Andrey Postnikov (andypost)",
  3866. "homepage": "https://www.drupal.org/u/andypost",
  3867. "role": "Maintainer"
  3868. },
  3869. {
  3870. "name": "Chris Herberte",
  3871. "homepage": "https://www.drupal.org/u/chris-herberte",
  3872. "role": "Maintainer"
  3873. },
  3874. {
  3875. "name": "Moshe Weitzman (moshe weitzman)",
  3876. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3877. "role": "Maintainer"
  3878. },
  3879. {
  3880. "name": "grevil",
  3881. "homepage": "https://www.drupal.org/user/3668491"
  3882. },
  3883. {
  3884. "name": "moshe weitzman",
  3885. "homepage": "https://www.drupal.org/user/23"
  3886. }
  3887. ],
  3888. "description": "Allows users to register with an email address as their username.",
  3889. "homepage": "https://www.drupal.org/project/email_registration",
  3890. "support": {
  3891. "source": "https://git.drupalcode.org/project/email_registration",
  3892. "issues": "http://drupal.org/project/issues/email_registration"
  3893. }
  3894. },
  3895. {
  3896. "name": "drupal/embed",
  3897. "version": "1.10.0",
  3898. "source": {
  3899. "type": "git",
  3900. "url": "https://git.drupalcode.org/project/embed.git",
  3901. "reference": "8.x-1.10"
  3902. },
  3903. "dist": {
  3904. "type": "zip",
  3905. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  3906. "reference": "8.x-1.10",
  3907. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  3908. },
  3909. "require": {
  3910. "drupal/core": "^10.2 || ^11"
  3911. },
  3912. "require-dev": {
  3913. "drupal/ckeditor": "^1.0"
  3914. },
  3915. "type": "drupal-module",
  3916. "extra": {
  3917. "drupal": {
  3918. "version": "8.x-1.10",
  3919. "datestamp": "1737663032",
  3920. "security-coverage": {
  3921. "status": "covered",
  3922. "message": "Covered by Drupal's security advisory policy"
  3923. }
  3924. }
  3925. },
  3926. "notification-url": "https://packages.drupal.org/8/downloads",
  3927. "license": [
  3928. "GPL-2.0-or-later"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "cs_shadow",
  3933. "homepage": "https://www.drupal.org/user/2828287"
  3934. },
  3935. {
  3936. "name": "dave reid",
  3937. "homepage": "https://www.drupal.org/user/53892"
  3938. },
  3939. {
  3940. "name": "devin carlson",
  3941. "homepage": "https://www.drupal.org/user/290182"
  3942. },
  3943. {
  3944. "name": "Drupal Media Team",
  3945. "homepage": "https://www.drupal.org/user/3260690"
  3946. },
  3947. {
  3948. "name": "phenaproxima",
  3949. "homepage": "https://www.drupal.org/user/205645"
  3950. },
  3951. {
  3952. "name": "slashrsm",
  3953. "homepage": "https://www.drupal.org/user/744628"
  3954. }
  3955. ],
  3956. "description": "Provides a framework for different types of embeds in text editors.",
  3957. "homepage": "https://www.drupal.org/project/embed",
  3958. "support": {
  3959. "source": "https://git.drupalcode.org/project/embed"
  3960. }
  3961. },
  3962. {
  3963. "name": "drupal/entity_browser",
  3964. "version": "2.15.0",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3968. "reference": "8.x-2.15"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.15.zip",
  3973. "reference": "8.x-2.15",
  3974. "shasum": "86265fadf12f8c2eb4bc0dc813589efe8fa180a2"
  3975. },
  3976. "require": {
  3977. "drupal/core": "^10.2 || ^11"
  3978. },
  3979. "conflict": {
  3980. "drupal/media_entity": "1.*"
  3981. },
  3982. "require-dev": {
  3983. "drupal/embed": "^1.0",
  3984. "drupal/entity_embed": "^1.0",
  3985. "drupal/entity_reference_revisions": "^1.0",
  3986. "drupal/entityqueue": "^1.0",
  3987. "drupal/inline_entity_form": "^1 || ^3",
  3988. "drupal/paragraphs": "^1.0",
  3989. "drupal/search_api": "^1.0",
  3990. "drupal/token": "^1.0"
  3991. },
  3992. "type": "drupal-module",
  3993. "extra": {
  3994. "drupal": {
  3995. "version": "8.x-2.15",
  3996. "datestamp": "1756969160",
  3997. "security-coverage": {
  3998. "status": "covered",
  3999. "message": "Covered by Drupal's security advisory policy"
  4000. }
  4001. }
  4002. },
  4003. "notification-url": "https://packages.drupal.org/8/downloads",
  4004. "license": [
  4005. "GPL-2.0+"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Janez Urevc",
  4010. "homepage": "https://github.com/slashrsm",
  4011. "role": "Maintainer"
  4012. },
  4013. {
  4014. "name": "Primoz Hmeljak",
  4015. "homepage": "https://github.com/primsi",
  4016. "role": "Maintainer"
  4017. },
  4018. {
  4019. "name": "See other contributors",
  4020. "homepage": "https://www.drupal.org/node/1943336/committers",
  4021. "role": "contributor"
  4022. },
  4023. {
  4024. "name": "devin carlson",
  4025. "homepage": "https://www.drupal.org/user/290182"
  4026. },
  4027. {
  4028. "name": "Drupal Media Team",
  4029. "homepage": "https://www.drupal.org/user/3260690"
  4030. },
  4031. {
  4032. "name": "grevil",
  4033. "homepage": "https://www.drupal.org/user/3668491"
  4034. },
  4035. {
  4036. "name": "marcingy",
  4037. "homepage": "https://www.drupal.org/user/77320"
  4038. },
  4039. {
  4040. "name": "oknate",
  4041. "homepage": "https://www.drupal.org/user/471638"
  4042. },
  4043. {
  4044. "name": "primsi",
  4045. "homepage": "https://www.drupal.org/user/282629"
  4046. },
  4047. {
  4048. "name": "samuel.mortenson",
  4049. "homepage": "https://www.drupal.org/user/2582268"
  4050. },
  4051. {
  4052. "name": "slashrsm",
  4053. "homepage": "https://www.drupal.org/user/744628"
  4054. }
  4055. ],
  4056. "description": "Entity browsing and selecting component.",
  4057. "homepage": "https://drupal.org/project/entity_browser",
  4058. "support": {
  4059. "source": "https://git.drupalcode.org/project/entity_browser",
  4060. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4061. "irc": "irc://irc.freenode.org/drupal-contribute"
  4062. }
  4063. },
  4064. {
  4065. "name": "drupal/entity_browser_enhanced",
  4066. "version": "2.0.1",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4070. "reference": "2.0.1"
  4071. },
  4072. "dist": {
  4073. "type": "zip",
  4074. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4075. "reference": "2.0.1",
  4076. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4077. },
  4078. "require": {
  4079. "drupal/core": "^10 || ^11",
  4080. "drupal/entity_browser": "~2.0"
  4081. },
  4082. "type": "drupal-module",
  4083. "extra": {
  4084. "drupal": {
  4085. "version": "2.0.1",
  4086. "datestamp": "1719827338",
  4087. "security-coverage": {
  4088. "status": "covered",
  4089. "message": "Covered by Drupal's security advisory policy"
  4090. }
  4091. }
  4092. },
  4093. "notification-url": "https://packages.drupal.org/8/downloads",
  4094. "license": [
  4095. "GPL-2.0-or-later"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Vardot",
  4100. "homepage": "https://www.drupal.org/vardot",
  4101. "role": "Maintainer"
  4102. },
  4103. {
  4104. "name": "rajab natshah",
  4105. "homepage": "https://www.drupal.org/user/1414312"
  4106. }
  4107. ],
  4108. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4109. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4110. "support": {
  4111. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4112. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4113. }
  4114. },
  4115. {
  4116. "name": "drupal/entity_clone",
  4117. "version": "dev-2.x",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4121. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4122. },
  4123. "require": {
  4124. "drupal/core": "^9 || ^10 || ^11"
  4125. },
  4126. "require-dev": {
  4127. "drupal/entity_browser": "2.x-dev",
  4128. "drupal/entity_usage": "2.x-dev",
  4129. "drupal/paragraphs": "^1.0",
  4130. "drupal/search_api": "^1.0"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "branch-alias": {
  4135. "dev-2.x": "2.x-dev"
  4136. },
  4137. "drupal": {
  4138. "version": "2.1.0-beta1+3-dev",
  4139. "datestamp": "1748869926",
  4140. "security-coverage": {
  4141. "status": "not-covered",
  4142. "message": "Dev releases are not covered by Drupal security advisories."
  4143. }
  4144. }
  4145. },
  4146. "notification-url": "https://packages.drupal.org/8/downloads",
  4147. "license": [
  4148. "GPL-2.0-or-later"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "colan",
  4153. "homepage": "https://www.drupal.org/user/58704"
  4154. },
  4155. {
  4156. "name": "joevagyok",
  4157. "homepage": "https://www.drupal.org/user/2876343"
  4158. },
  4159. {
  4160. "name": "nickdickinsonwilde",
  4161. "homepage": "https://www.drupal.org/user/3094661"
  4162. },
  4163. {
  4164. "name": "rajeshreeputra",
  4165. "homepage": "https://www.drupal.org/user/3418561"
  4166. },
  4167. {
  4168. "name": "upchuk",
  4169. "homepage": "https://www.drupal.org/user/1885838"
  4170. },
  4171. {
  4172. "name": "vpeltot",
  4173. "homepage": "https://www.drupal.org/user/1361586"
  4174. }
  4175. ],
  4176. "description": "Add a clone action for all entities.",
  4177. "homepage": "https://drupal.org/project/entity_clone",
  4178. "support": {
  4179. "source": "https://git.drupalcode.org/project/entity_clone"
  4180. }
  4181. },
  4182. {
  4183. "name": "drupal/entity_reference_revisions",
  4184. "version": "1.14.0",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4188. "reference": "8.x-1.14"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.14.zip",
  4193. "reference": "8.x-1.14",
  4194. "shasum": "cb900e41124979a46da1912ff2b502270beda632"
  4195. },
  4196. "require": {
  4197. "drupal/core": "^10.2 || ^11"
  4198. },
  4199. "conflict": {
  4200. "drush/drush": "<12.5.1"
  4201. },
  4202. "require-dev": {
  4203. "drupal/diff": "^1 || ^2"
  4204. },
  4205. "type": "drupal-module",
  4206. "extra": {
  4207. "drupal": {
  4208. "version": "8.x-1.14",
  4209. "datestamp": "1767266825",
  4210. "security-coverage": {
  4211. "status": "covered",
  4212. "message": "Covered by Drupal's security advisory policy"
  4213. }
  4214. }
  4215. },
  4216. "notification-url": "https://packages.drupal.org/8/downloads",
  4217. "license": [
  4218. "GPL-2.0-or-later"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "berdir",
  4223. "homepage": "https://www.drupal.org/user/214652"
  4224. },
  4225. {
  4226. "name": "frans",
  4227. "homepage": "https://www.drupal.org/user/514222"
  4228. },
  4229. {
  4230. "name": "jeroen.b",
  4231. "homepage": "https://www.drupal.org/user/1853532"
  4232. },
  4233. {
  4234. "name": "miro_dietiker",
  4235. "homepage": "https://www.drupal.org/user/227761"
  4236. }
  4237. ],
  4238. "description": "Entity Reference Revisions",
  4239. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4240. "support": {
  4241. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4242. }
  4243. },
  4244. {
  4245. "name": "drupal/entity_type_clone",
  4246. "version": "4.0.6",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4250. "reference": "4.0.6"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.6.zip",
  4255. "reference": "4.0.6",
  4256. "shasum": "e87d8473151c9a28497d27148a38f44f073773da"
  4257. },
  4258. "require": {
  4259. "drupal/core": "^8 || ^9 || ^10 || ^11"
  4260. },
  4261. "type": "drupal-module",
  4262. "extra": {
  4263. "drupal": {
  4264. "version": "4.0.6",
  4265. "datestamp": "1758390322",
  4266. "security-coverage": {
  4267. "status": "covered",
  4268. "message": "Covered by Drupal's security advisory policy"
  4269. }
  4270. }
  4271. },
  4272. "notification-url": "https://packages.drupal.org/8/downloads",
  4273. "license": [
  4274. "GPL-2.0-or-later"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "ajay_reddy",
  4279. "homepage": "https://www.drupal.org/user/3261994"
  4280. },
  4281. {
  4282. "name": "vuil",
  4283. "homepage": "https://www.drupal.org/user/3568458"
  4284. }
  4285. ],
  4286. "description": "This module provide option to clone entity types and role.",
  4287. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4288. "support": {
  4289. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4290. }
  4291. },
  4292. {
  4293. "name": "drupal/extlink",
  4294. "version": "2.0.5",
  4295. "source": {
  4296. "type": "git",
  4297. "url": "https://git.drupalcode.org/project/extlink.git",
  4298. "reference": "2.0.5"
  4299. },
  4300. "dist": {
  4301. "type": "zip",
  4302. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.5.zip",
  4303. "reference": "2.0.5",
  4304. "shasum": "3b2f73f60483ebf6e7f374f7340b19f228386cca"
  4305. },
  4306. "require": {
  4307. "drupal/core": "^10 || ^11"
  4308. },
  4309. "type": "drupal-module",
  4310. "extra": {
  4311. "drupal": {
  4312. "version": "2.0.5",
  4313. "datestamp": "1757349140",
  4314. "security-coverage": {
  4315. "status": "covered",
  4316. "message": "Covered by Drupal's security advisory policy"
  4317. }
  4318. }
  4319. },
  4320. "notification-url": "https://packages.drupal.org/8/downloads",
  4321. "license": [
  4322. "GPL-2.0-or-later"
  4323. ],
  4324. "authors": [
  4325. {
  4326. "name": "Nate Lampton",
  4327. "homepage": "https://www.drupal.org/u/quicksketch",
  4328. "role": "Maintainer"
  4329. },
  4330. {
  4331. "name": "Lachlan Ennis",
  4332. "homepage": "https://www.drupal.org/u/elachlan",
  4333. "role": "Maintainer"
  4334. },
  4335. {
  4336. "name": "Neslee Canil Pinto",
  4337. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4338. "role": "Maintainer"
  4339. },
  4340. {
  4341. "name": "quicksketch",
  4342. "homepage": "https://www.drupal.org/user/35821"
  4343. },
  4344. {
  4345. "name": "smustgrave",
  4346. "homepage": "https://www.drupal.org/user/3252890"
  4347. }
  4348. ],
  4349. "description": "Modify behavior and appearance of external links.",
  4350. "homepage": "https://www.drupal.org/project/extlink",
  4351. "keywords": [
  4352. "Drupal",
  4353. "External Links"
  4354. ],
  4355. "support": {
  4356. "source": "https://git.drupalcode.org/project/extlink",
  4357. "issues": "https://www.drupal.org/project/issues/extlink"
  4358. }
  4359. },
  4360. {
  4361. "name": "drupal/field_group",
  4362. "version": "3.6.0",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://git.drupalcode.org/project/field_group.git",
  4366. "reference": "8.x-3.6"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4371. "reference": "8.x-3.6",
  4372. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4373. },
  4374. "require": {
  4375. "drupal/core": "^9.2 || ^10 || ^11"
  4376. },
  4377. "require-dev": {
  4378. "drupal/jquery_ui_accordion": "*"
  4379. },
  4380. "type": "drupal-module",
  4381. "extra": {
  4382. "drupal": {
  4383. "version": "8.x-3.6",
  4384. "datestamp": "1722672510",
  4385. "security-coverage": {
  4386. "status": "covered",
  4387. "message": "Covered by Drupal's security advisory policy"
  4388. }
  4389. }
  4390. },
  4391. "notification-url": "https://packages.drupal.org/8/downloads",
  4392. "license": [
  4393. "GPL-2.0-or-later"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "anybody",
  4398. "homepage": "https://www.drupal.org/user/291091"
  4399. },
  4400. {
  4401. "name": "grevil",
  4402. "homepage": "https://www.drupal.org/user/3668491"
  4403. },
  4404. {
  4405. "name": "hydra",
  4406. "homepage": "https://www.drupal.org/user/647364"
  4407. },
  4408. {
  4409. "name": "joevagyok",
  4410. "homepage": "https://www.drupal.org/user/2876343"
  4411. },
  4412. {
  4413. "name": "jyve",
  4414. "homepage": "https://www.drupal.org/user/591438"
  4415. },
  4416. {
  4417. "name": "nils.destoop",
  4418. "homepage": "https://www.drupal.org/user/361625"
  4419. },
  4420. {
  4421. "name": "Stalski",
  4422. "homepage": "https://www.drupal.org/user/322618"
  4423. },
  4424. {
  4425. "name": "swentel",
  4426. "homepage": "https://www.drupal.org/user/107403"
  4427. }
  4428. ],
  4429. "description": "Provides the field_group module.",
  4430. "homepage": "https://www.drupal.org/project/field_group",
  4431. "support": {
  4432. "source": "https://git.drupalcode.org/project/field_group",
  4433. "issues": "https://www.drupal.org/project/issues/field_group"
  4434. }
  4435. },
  4436. {
  4437. "name": "drupal/filter_perms",
  4438. "version": "2.0.2",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4442. "reference": "2.0.2"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4447. "reference": "2.0.2",
  4448. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4449. },
  4450. "require": {
  4451. "drupal/core": "^10.3 || ^11 || ^12"
  4452. },
  4453. "type": "drupal-module",
  4454. "extra": {
  4455. "drupal": {
  4456. "version": "2.0.2",
  4457. "datestamp": "1745993059",
  4458. "security-coverage": {
  4459. "status": "covered",
  4460. "message": "Covered by Drupal's security advisory policy"
  4461. }
  4462. }
  4463. },
  4464. "notification-url": "https://packages.drupal.org/8/downloads",
  4465. "license": [
  4466. "GPL-2.0+"
  4467. ],
  4468. "authors": [
  4469. {
  4470. "name": "cyu",
  4471. "homepage": "https://www.drupal.org/user/202205"
  4472. },
  4473. {
  4474. "name": "deekayen",
  4475. "homepage": "https://www.drupal.org/user/972"
  4476. },
  4477. {
  4478. "name": "ivavictoria",
  4479. "homepage": "https://www.drupal.org/user/3061533"
  4480. },
  4481. {
  4482. "name": "justcaldwell",
  4483. "homepage": "https://www.drupal.org/user/290069"
  4484. },
  4485. {
  4486. "name": "mgbellaire",
  4487. "homepage": "https://www.drupal.org/user/1831932"
  4488. },
  4489. {
  4490. "name": "scott_euser",
  4491. "homepage": "https://www.drupal.org/user/3267594"
  4492. },
  4493. {
  4494. "name": "willzyx",
  4495. "homepage": "https://www.drupal.org/user/1043862"
  4496. }
  4497. ],
  4498. "description": "Provides role and module filters to simplify the user permissions page.",
  4499. "homepage": "https://www.drupal.org/project/filter_perms",
  4500. "support": {
  4501. "source": "http://cgit.drupalcode.org/filter_perms",
  4502. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4503. }
  4504. },
  4505. {
  4506. "name": "drupal/formatter_suite",
  4507. "version": "2.2.0",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4511. "reference": "2.2.0"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.2.0.zip",
  4516. "reference": "2.2.0",
  4517. "shasum": "d87d11e61d6dbd76da3a5ed0aea8c25505b31c8b"
  4518. },
  4519. "require": {
  4520. "drupal/core": "^10.4 || ^11.1"
  4521. },
  4522. "type": "drupal-module",
  4523. "extra": {
  4524. "drupal": {
  4525. "version": "2.2.0",
  4526. "datestamp": "1768923220",
  4527. "security-coverage": {
  4528. "status": "covered",
  4529. "message": "Covered by Drupal's security advisory policy"
  4530. }
  4531. }
  4532. },
  4533. "notification-url": "https://packages.drupal.org/8/downloads",
  4534. "license": [
  4535. "GPL-2.0-or-later"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "cyoun",
  4540. "homepage": "https://www.drupal.org/user/3819850"
  4541. },
  4542. {
  4543. "name": "liam morland",
  4544. "homepage": "https://www.drupal.org/user/493050"
  4545. },
  4546. {
  4547. "name": "toamit",
  4548. "homepage": "https://www.drupal.org/user/2820523"
  4549. }
  4550. ],
  4551. "description": "Field formaters to present numbers, text, links, etc.",
  4552. "homepage": "https://www.drupal.org/project/formatter_suite",
  4553. "keywords": [
  4554. "Drupal",
  4555. "Format"
  4556. ],
  4557. "support": {
  4558. "source": "http://cgit.drupalcode.org/formatter_suite",
  4559. "issues": "http://drupal.org/project/issues/formatter_suite"
  4560. }
  4561. },
  4562. {
  4563. "name": "drupal/geocoder",
  4564. "version": "4.30.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://git.drupalcode.org/project/geocoder.git",
  4568. "reference": "8.x-4.30"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.30.zip",
  4573. "reference": "8.x-4.30",
  4574. "shasum": "701115afdf7435ab2ac8841e1d73ad531b465bc0"
  4575. },
  4576. "require": {
  4577. "davedevelopment/stiphle": "^0.9.2",
  4578. "drupal/core": "^9.5 || ^10 || ^11",
  4579. "php": ">=7.3.0",
  4580. "php-http/guzzle7-adapter": "^1.0",
  4581. "php-http/message": "^1.6",
  4582. "willdurand/geocoder": "^4.0|^5.0"
  4583. },
  4584. "require-dev": {
  4585. "drupal/address": "^1.11 || ^2.0",
  4586. "drupal/geocoder_field": "*",
  4587. "drupal/geofield": "^1.52",
  4588. "geo6/geocoder-php-addok-provider": "^1.0",
  4589. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4590. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4591. "geo6/geocoder-php-spw-provider": "^1.0",
  4592. "geocoder-php/arcgis-online-provider": "^4.0",
  4593. "geocoder-php/azure-maps-provider": "^1.2",
  4594. "geocoder-php/bing-maps-provider": "^4.0",
  4595. "geocoder-php/free-geoip-provider": "^4.1",
  4596. "geocoder-php/geo-plugin-provider": "^4.0",
  4597. "geocoder-php/geonames-provider": "^4.1",
  4598. "geocoder-php/google-maps-provider": "^4.2",
  4599. "geocoder-php/graphhopper-provider": "^0.5.0",
  4600. "geocoder-php/host-ip-provider": "^4.0",
  4601. "geocoder-php/ip-info-db-provider": "^4.0",
  4602. "geocoder-php/locationiq-provider": "^1.5",
  4603. "geocoder-php/mapbox-provider": "^1.0",
  4604. "geocoder-php/mapquest-provider": "^4.0",
  4605. "geocoder-php/maptiler-provider": "^1.0",
  4606. "geocoder-php/maxmind-provider": "^4.1",
  4607. "geocoder-php/nominatim-provider": "^5.0",
  4608. "geocoder-php/open-cage-provider": "^4.0",
  4609. "geocoder-php/openrouteservice-provider": "^1.0",
  4610. "geocoder-php/pelias-provider": "^1.1",
  4611. "geocoder-php/photon-provider": "^0.6",
  4612. "geocoder-php/tomtom-provider": "^4.0",
  4613. "geocoder-php/yandex-provider": "^4.0",
  4614. "systonic/ban-france-provider": "^1.0"
  4615. },
  4616. "type": "drupal-module",
  4617. "extra": {
  4618. "drupal": {
  4619. "version": "8.x-4.30",
  4620. "datestamp": "1753886741",
  4621. "security-coverage": {
  4622. "status": "covered",
  4623. "message": "Covered by Drupal's security advisory policy"
  4624. }
  4625. }
  4626. },
  4627. "notification-url": "https://packages.drupal.org/8/downloads",
  4628. "license": [
  4629. "GPL-2.0-or-later"
  4630. ],
  4631. "authors": [
  4632. {
  4633. "name": "Pol Dellaiera (@drupol)",
  4634. "homepage": "https://www.drupal.org/u/pol",
  4635. "role": "Maintainer"
  4636. },
  4637. {
  4638. "name": "Italo Mairo (@itamair)",
  4639. "homepage": "https://www.drupal.org/u/itamair",
  4640. "role": "Co-maintainer"
  4641. },
  4642. {
  4643. "name": "michaelfavia",
  4644. "homepage": "https://www.drupal.org/user/49137"
  4645. },
  4646. {
  4647. "name": "poker10",
  4648. "homepage": "https://www.drupal.org/user/272316"
  4649. }
  4650. ],
  4651. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4652. "homepage": "https://drupal.org/project/geocoder",
  4653. "support": {
  4654. "source": "https://git.drupalcode.org/project/geocoder",
  4655. "issues": "https://drupal.org/project/issues/geocoder",
  4656. "irc": "irc://irc.freenode.org/drupal-geo"
  4657. }
  4658. },
  4659. {
  4660. "name": "drupal/geofield",
  4661. "version": "1.67.0",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://git.drupalcode.org/project/geofield.git",
  4665. "reference": "8.x-1.67"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.67.zip",
  4670. "reference": "8.x-1.67",
  4671. "shasum": "c73bf312f3244be23d05caa57086f44310b0b4df"
  4672. },
  4673. "require": {
  4674. "drupal/core": "^9 || ^10 || ^11",
  4675. "itamair/geophp": "^1.6"
  4676. },
  4677. "require-dev": {
  4678. "drupal/diff": "^1.3",
  4679. "drupal/feeds": "^3.0@beta"
  4680. },
  4681. "type": "drupal-module",
  4682. "extra": {
  4683. "drupal": {
  4684. "version": "8.x-1.67",
  4685. "datestamp": "1768051870",
  4686. "security-coverage": {
  4687. "status": "covered",
  4688. "message": "Covered by Drupal's security advisory policy"
  4689. }
  4690. }
  4691. },
  4692. "notification-url": "https://packages.drupal.org/8/downloads",
  4693. "license": [
  4694. "GPL-2.0+"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Italo Mairo",
  4699. "homepage": "https://www.drupal.org/u/itamair",
  4700. "role": "Drupal 8+ Maintainer"
  4701. },
  4702. {
  4703. "name": "Brandon Morrison",
  4704. "homepage": "https://www.drupal.org/u/brandonian",
  4705. "role": "Drupal 7 Maintainer"
  4706. },
  4707. {
  4708. "name": "Pablo López",
  4709. "homepage": "https://www.drupal.org/u/plopesc",
  4710. "role": "Drupal 7 Maintainer"
  4711. }
  4712. ],
  4713. "description": "Stores geographic and location data (points, lines, and polygons).",
  4714. "homepage": "https://www.drupal.org/project/geofield",
  4715. "support": {
  4716. "source": "https://git.drupalcode.org/project/geofield",
  4717. "issues": "https://www.drupal.org/project/issues/geofield",
  4718. "irc": "irc://irc.freenode.org/drupal-contribute"
  4719. }
  4720. },
  4721. {
  4722. "name": "drupal/honeypot",
  4723. "version": "2.2.2",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://git.drupalcode.org/project/honeypot.git",
  4727. "reference": "2.2.2"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4732. "reference": "2.2.2",
  4733. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4734. },
  4735. "require": {
  4736. "drupal/core": "^10.3 || ^11"
  4737. },
  4738. "require-dev": {
  4739. "drupal/rules": "^4.0",
  4740. "drupal/webform": "^6.2"
  4741. },
  4742. "type": "drupal-module",
  4743. "extra": {
  4744. "drupal": {
  4745. "version": "2.2.2",
  4746. "datestamp": "1739854442",
  4747. "security-coverage": {
  4748. "status": "covered",
  4749. "message": "Covered by Drupal's security advisory policy"
  4750. }
  4751. }
  4752. },
  4753. "notification-url": "https://packages.drupal.org/8/downloads",
  4754. "license": [
  4755. "GPL-2.0-or-later"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Jeff Geerling",
  4760. "homepage": "https://www.drupal.org/user/389011",
  4761. "email": "geerlingguy@mac.com"
  4762. },
  4763. {
  4764. "name": "manuel garcia",
  4765. "homepage": "https://www.drupal.org/user/213194"
  4766. },
  4767. {
  4768. "name": "tr",
  4769. "homepage": "https://www.drupal.org/user/202830"
  4770. },
  4771. {
  4772. "name": "vijaycs85",
  4773. "homepage": "https://www.drupal.org/user/93488"
  4774. }
  4775. ],
  4776. "description": "Mitigates spam form submissions using the honeypot method.",
  4777. "homepage": "https://www.drupal.org/project/honeypot",
  4778. "keywords": [
  4779. "deterrent",
  4780. "form",
  4781. "honeypot",
  4782. "honeytrap",
  4783. "php",
  4784. "spam"
  4785. ],
  4786. "support": {
  4787. "source": "https://git.drupalcode.org/project/honeypot",
  4788. "issues": "https://www.drupal.org/project/issues/honeypot"
  4789. }
  4790. },
  4791. {
  4792. "name": "drupal/image_delta_formatter",
  4793. "version": "1.3.0",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4797. "reference": "8.x-1.3"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4802. "reference": "8.x-1.3",
  4803. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4804. },
  4805. "require": {
  4806. "drupal/core": "^10 || ^11"
  4807. },
  4808. "type": "drupal-module",
  4809. "extra": {
  4810. "drupal": {
  4811. "version": "8.x-1.3",
  4812. "datestamp": "1738516937",
  4813. "security-coverage": {
  4814. "status": "covered",
  4815. "message": "Covered by Drupal's security advisory policy"
  4816. }
  4817. }
  4818. },
  4819. "notification-url": "https://packages.drupal.org/8/downloads",
  4820. "license": [
  4821. "GPL-2.0-or-later"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "bojanz",
  4826. "homepage": "https://www.drupal.org/user/86106"
  4827. },
  4828. {
  4829. "name": "fgm",
  4830. "homepage": "https://www.drupal.org/user/27985"
  4831. },
  4832. {
  4833. "name": "jsacksick",
  4834. "homepage": "https://www.drupal.org/user/972218"
  4835. }
  4836. ],
  4837. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4838. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4839. "support": {
  4840. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4841. }
  4842. },
  4843. {
  4844. "name": "drupal/image_field_caption",
  4845. "version": "3.0.1",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4849. "reference": "3.0.1"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://ftp.drupal.org/files/projects/image_field_caption-3.0.1.zip",
  4854. "reference": "3.0.1",
  4855. "shasum": "e84c3b9534d5824b6a67885187b1c24d4eccaf60"
  4856. },
  4857. "require": {
  4858. "drupal/core": "^10 || ^11"
  4859. },
  4860. "type": "drupal-module",
  4861. "extra": {
  4862. "drupal": {
  4863. "version": "3.0.1",
  4864. "datestamp": "1739400507",
  4865. "security-coverage": {
  4866. "status": "covered",
  4867. "message": "Covered by Drupal's security advisory policy"
  4868. }
  4869. }
  4870. },
  4871. "notification-url": "https://packages.drupal.org/8/downloads",
  4872. "license": [
  4873. "GPL-2.0+"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "awm",
  4878. "homepage": "https://www.drupal.org/user/1059398"
  4879. },
  4880. {
  4881. "name": "foxy-vikvik",
  4882. "homepage": "https://www.drupal.org/user/3706169"
  4883. },
  4884. {
  4885. "name": "hanoii",
  4886. "homepage": "https://www.drupal.org/user/23157"
  4887. },
  4888. {
  4889. "name": "ironsizide",
  4890. "homepage": "https://www.drupal.org/user/787980"
  4891. },
  4892. {
  4893. "name": "istryker",
  4894. "homepage": "https://www.drupal.org/user/303676"
  4895. },
  4896. {
  4897. "name": "robloach",
  4898. "homepage": "https://www.drupal.org/user/61114"
  4899. },
  4900. {
  4901. "name": "tyler.frankenstein",
  4902. "homepage": "https://www.drupal.org/user/150680"
  4903. }
  4904. ],
  4905. "description": "Add caption to image field.",
  4906. "homepage": "https://www.drupal.org/project/image_field_caption",
  4907. "support": {
  4908. "source": "https://git.drupalcode.org/project/image_field_caption",
  4909. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4910. }
  4911. },
  4912. {
  4913. "name": "drupal/inline_entity_form",
  4914. "version": "1.0.0-rc17",
  4915. "source": {
  4916. "type": "git",
  4917. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4918. "reference": "8.x-1.0-rc17"
  4919. },
  4920. "dist": {
  4921. "type": "zip",
  4922. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  4923. "reference": "8.x-1.0-rc17",
  4924. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  4925. },
  4926. "require": {
  4927. "drupal/core": "^8.8 || ^9 || ^10",
  4928. "php": ">=7.1"
  4929. },
  4930. "require-dev": {
  4931. "drupal/entity_reference_revisions": "^1.0"
  4932. },
  4933. "type": "drupal-module",
  4934. "extra": {
  4935. "drupal": {
  4936. "version": "8.x-1.0-rc17",
  4937. "datestamp": "1703020130",
  4938. "security-coverage": {
  4939. "status": "not-covered",
  4940. "message": "RC releases are not covered by Drupal security advisories."
  4941. }
  4942. }
  4943. },
  4944. "notification-url": "https://packages.drupal.org/8/downloads",
  4945. "license": [
  4946. "GPL-2.0-or-later"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "bojanz",
  4951. "homepage": "https://www.drupal.org/user/86106"
  4952. },
  4953. {
  4954. "name": "centarro",
  4955. "homepage": "https://www.drupal.org/user/3661446"
  4956. },
  4957. {
  4958. "name": "dawehner",
  4959. "homepage": "https://www.drupal.org/user/99340"
  4960. },
  4961. {
  4962. "name": "dww",
  4963. "homepage": "https://www.drupal.org/user/46549"
  4964. },
  4965. {
  4966. "name": "geek-merlin",
  4967. "homepage": "https://www.drupal.org/user/229048"
  4968. },
  4969. {
  4970. "name": "joachim",
  4971. "homepage": "https://www.drupal.org/user/107701"
  4972. },
  4973. {
  4974. "name": "jsacksick",
  4975. "homepage": "https://www.drupal.org/user/972218"
  4976. },
  4977. {
  4978. "name": "oknate",
  4979. "homepage": "https://www.drupal.org/user/471638"
  4980. },
  4981. {
  4982. "name": "ram4nd",
  4983. "homepage": "https://www.drupal.org/user/601534"
  4984. },
  4985. {
  4986. "name": "rszrama",
  4987. "homepage": "https://www.drupal.org/user/49344"
  4988. },
  4989. {
  4990. "name": "slashrsm",
  4991. "homepage": "https://www.drupal.org/user/744628"
  4992. },
  4993. {
  4994. "name": "webflo",
  4995. "homepage": "https://www.drupal.org/user/254778"
  4996. }
  4997. ],
  4998. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4999. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5000. "support": {
  5001. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5002. }
  5003. },
  5004. {
  5005. "name": "drupal/jquery_ui",
  5006. "version": "1.8.0",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5010. "reference": "8.x-1.8"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.8.zip",
  5015. "reference": "8.x-1.8",
  5016. "shasum": "a53e99216a81d1e35fa357885656a2cf420f1a6a"
  5017. },
  5018. "require": {
  5019. "drupal/core": "^9.2 || ^10 || ^11"
  5020. },
  5021. "type": "drupal-module",
  5022. "extra": {
  5023. "drupal": {
  5024. "version": "8.x-1.8",
  5025. "datestamp": "1758954737",
  5026. "security-coverage": {
  5027. "status": "covered",
  5028. "message": "Covered by Drupal's security advisory policy"
  5029. }
  5030. }
  5031. },
  5032. "notification-url": "https://packages.drupal.org/8/downloads",
  5033. "license": [
  5034. "GPL-2.0-or-later"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "bnjmnm",
  5039. "homepage": "https://www.drupal.org/user/2369194"
  5040. },
  5041. {
  5042. "name": "jjeff",
  5043. "homepage": "https://www.drupal.org/user/17190"
  5044. },
  5045. {
  5046. "name": "lauriii",
  5047. "homepage": "https://www.drupal.org/user/1078742"
  5048. },
  5049. {
  5050. "name": "litwol",
  5051. "homepage": "https://www.drupal.org/user/78134"
  5052. },
  5053. {
  5054. "name": "mfb",
  5055. "homepage": "https://www.drupal.org/user/12302"
  5056. },
  5057. {
  5058. "name": "mfer",
  5059. "homepage": "https://www.drupal.org/user/25701"
  5060. },
  5061. {
  5062. "name": "mikelutz",
  5063. "homepage": "https://www.drupal.org/user/2972409"
  5064. },
  5065. {
  5066. "name": "nod_",
  5067. "homepage": "https://www.drupal.org/user/598310"
  5068. },
  5069. {
  5070. "name": "phenaproxima",
  5071. "homepage": "https://www.drupal.org/user/205645"
  5072. },
  5073. {
  5074. "name": "rajeshreeputra",
  5075. "homepage": "https://www.drupal.org/user/3418561"
  5076. },
  5077. {
  5078. "name": "robloach",
  5079. "homepage": "https://www.drupal.org/user/61114"
  5080. },
  5081. {
  5082. "name": "sun",
  5083. "homepage": "https://www.drupal.org/user/54136"
  5084. },
  5085. {
  5086. "name": "webchick",
  5087. "homepage": "https://www.drupal.org/user/24967"
  5088. },
  5089. {
  5090. "name": "wim leers",
  5091. "homepage": "https://www.drupal.org/user/99777"
  5092. },
  5093. {
  5094. "name": "zrpnr",
  5095. "homepage": "https://www.drupal.org/user/1448368"
  5096. }
  5097. ],
  5098. "description": "Provides jQuery UI library.",
  5099. "homepage": "https://www.drupal.org/project/jquery_ui",
  5100. "support": {
  5101. "source": "https://git.drupalcode.org/project/jquery_ui"
  5102. }
  5103. },
  5104. {
  5105. "name": "drupal/jquery_ui_datepicker",
  5106. "version": "2.1.1",
  5107. "source": {
  5108. "type": "git",
  5109. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5110. "reference": "2.1.1"
  5111. },
  5112. "dist": {
  5113. "type": "zip",
  5114. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5115. "reference": "2.1.1",
  5116. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5117. },
  5118. "require": {
  5119. "drupal/core": "^9.2 || ^10 || ^11",
  5120. "drupal/jquery_ui": "^1.7"
  5121. },
  5122. "type": "drupal-module",
  5123. "extra": {
  5124. "drupal": {
  5125. "version": "2.1.1",
  5126. "datestamp": "1730932612",
  5127. "security-coverage": {
  5128. "status": "covered",
  5129. "message": "Covered by Drupal's security advisory policy"
  5130. }
  5131. }
  5132. },
  5133. "notification-url": "https://packages.drupal.org/8/downloads",
  5134. "license": [
  5135. "GPL-2.0-or-later"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "bnjmnm",
  5140. "homepage": "https://www.drupal.org/user/2369194"
  5141. },
  5142. {
  5143. "name": "jrockowitz",
  5144. "homepage": "https://www.drupal.org/user/371407"
  5145. },
  5146. {
  5147. "name": "lauriii",
  5148. "homepage": "https://www.drupal.org/user/1078742"
  5149. },
  5150. {
  5151. "name": "nod_",
  5152. "homepage": "https://www.drupal.org/user/598310"
  5153. },
  5154. {
  5155. "name": "phenaproxima",
  5156. "homepage": "https://www.drupal.org/user/205645"
  5157. },
  5158. {
  5159. "name": "zrpnr",
  5160. "homepage": "https://www.drupal.org/user/1448368"
  5161. }
  5162. ],
  5163. "description": "Provides jQuery UI Datepicker library.",
  5164. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5165. "support": {
  5166. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5167. }
  5168. },
  5169. {
  5170. "name": "drupal/jquery_ui_draggable",
  5171. "version": "2.1.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5175. "reference": "2.1.0"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5180. "reference": "2.1.0",
  5181. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5182. },
  5183. "require": {
  5184. "drupal/core": "^9.2 || ^10 || ^11",
  5185. "drupal/jquery_ui": "^1.7"
  5186. },
  5187. "type": "drupal-module",
  5188. "extra": {
  5189. "drupal": {
  5190. "version": "2.1.0",
  5191. "datestamp": "1717015492",
  5192. "security-coverage": {
  5193. "status": "covered",
  5194. "message": "Covered by Drupal's security advisory policy"
  5195. }
  5196. }
  5197. },
  5198. "notification-url": "https://packages.drupal.org/8/downloads",
  5199. "license": [
  5200. "GPL-2.0-or-later"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "bnjmnm",
  5205. "homepage": "https://www.drupal.org/user/2369194"
  5206. },
  5207. {
  5208. "name": "lauriii",
  5209. "homepage": "https://www.drupal.org/user/1078742"
  5210. },
  5211. {
  5212. "name": "zrpnr",
  5213. "homepage": "https://www.drupal.org/user/1448368"
  5214. }
  5215. ],
  5216. "description": "Provides jQuery UI Draggable library.",
  5217. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5218. "support": {
  5219. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5220. }
  5221. },
  5222. {
  5223. "name": "drupal/jquery_ui_droppable",
  5224. "version": "2.1.0",
  5225. "source": {
  5226. "type": "git",
  5227. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5228. "reference": "2.1.0"
  5229. },
  5230. "dist": {
  5231. "type": "zip",
  5232. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5233. "reference": "2.1.0",
  5234. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5235. },
  5236. "require": {
  5237. "drupal/core": "^9.2 || ^10 || ^11",
  5238. "drupal/jquery_ui": "^1.7",
  5239. "drupal/jquery_ui_draggable": "^2.1"
  5240. },
  5241. "type": "drupal-module",
  5242. "extra": {
  5243. "drupal": {
  5244. "version": "2.1.0",
  5245. "datestamp": "1717031391",
  5246. "security-coverage": {
  5247. "status": "covered",
  5248. "message": "Covered by Drupal's security advisory policy"
  5249. }
  5250. }
  5251. },
  5252. "notification-url": "https://packages.drupal.org/8/downloads",
  5253. "license": [
  5254. "GPL-2.0-or-later"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "bnjmnm",
  5259. "homepage": "https://www.drupal.org/user/2369194"
  5260. },
  5261. {
  5262. "name": "lauriii",
  5263. "homepage": "https://www.drupal.org/user/1078742"
  5264. },
  5265. {
  5266. "name": "zrpnr",
  5267. "homepage": "https://www.drupal.org/user/1448368"
  5268. }
  5269. ],
  5270. "description": "Provides jQuery UI Droppable library.",
  5271. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5272. "support": {
  5273. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5274. }
  5275. },
  5276. {
  5277. "name": "drupal/jquery_ui_slider",
  5278. "version": "2.1.0",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5282. "reference": "2.1.0"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5287. "reference": "2.1.0",
  5288. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5289. },
  5290. "require": {
  5291. "drupal/core": "^9.2 || ^10 || ^11",
  5292. "drupal/jquery_ui": "^1.7"
  5293. },
  5294. "type": "drupal-module",
  5295. "extra": {
  5296. "drupal": {
  5297. "version": "2.1.0",
  5298. "datestamp": "1717031321",
  5299. "security-coverage": {
  5300. "status": "covered",
  5301. "message": "Covered by Drupal's security advisory policy"
  5302. }
  5303. }
  5304. },
  5305. "notification-url": "https://packages.drupal.org/8/downloads",
  5306. "license": [
  5307. "GPL-2.0-or-later"
  5308. ],
  5309. "authors": [
  5310. {
  5311. "name": "bnjmnm",
  5312. "homepage": "https://www.drupal.org/user/2369194"
  5313. },
  5314. {
  5315. "name": "lauriii",
  5316. "homepage": "https://www.drupal.org/user/1078742"
  5317. },
  5318. {
  5319. "name": "zrpnr",
  5320. "homepage": "https://www.drupal.org/user/1448368"
  5321. }
  5322. ],
  5323. "description": "Provides jQuery UI Slider library.",
  5324. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5325. "support": {
  5326. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5327. }
  5328. },
  5329. {
  5330. "name": "drupal/jquery_ui_touch_punch",
  5331. "version": "1.1.1",
  5332. "source": {
  5333. "type": "git",
  5334. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5335. "reference": "1.1.1"
  5336. },
  5337. "dist": {
  5338. "type": "zip",
  5339. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5340. "reference": "1.1.1",
  5341. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5342. },
  5343. "require": {
  5344. "drupal/core": "^9.2 || ^10 || ^11",
  5345. "drupal/jquery_ui": "^1.0",
  5346. "politsin/jquery-ui-touch-punch": "^1.0"
  5347. },
  5348. "type": "drupal-module",
  5349. "extra": {
  5350. "drupal": {
  5351. "version": "1.1.1",
  5352. "datestamp": "1717663479",
  5353. "security-coverage": {
  5354. "status": "covered",
  5355. "message": "Covered by Drupal's security advisory policy"
  5356. }
  5357. }
  5358. },
  5359. "notification-url": "https://packages.drupal.org/8/downloads",
  5360. "license": [
  5361. "GPL-2.0-or-later"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Naveen Valecha",
  5366. "homepage": "https://drupal.org/u/naveenvalecha",
  5367. "role": "Maintainer"
  5368. },
  5369. {
  5370. "name": "naveenvalecha",
  5371. "homepage": "https://www.drupal.org/user/2665733"
  5372. }
  5373. ],
  5374. "description": "Provides jQuery UI Touch Punch library.",
  5375. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5376. "keywords": [
  5377. "Drupal",
  5378. "jquery_ui_touch_punch"
  5379. ],
  5380. "support": {
  5381. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5382. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5383. }
  5384. },
  5385. {
  5386. "name": "drupal/js_cookie",
  5387. "version": "1.0.1",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5391. "reference": "1.0.1"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5396. "reference": "1.0.1",
  5397. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5398. },
  5399. "require": {
  5400. "drupal/core": "^9 || ^10 || ^11"
  5401. },
  5402. "type": "drupal-module",
  5403. "extra": {
  5404. "drupal": {
  5405. "version": "1.0.1",
  5406. "datestamp": "1693951097",
  5407. "security-coverage": {
  5408. "status": "covered",
  5409. "message": "Covered by Drupal's security advisory policy"
  5410. }
  5411. }
  5412. },
  5413. "notification-url": "https://packages.drupal.org/8/downloads",
  5414. "license": [
  5415. "GPL-2.0-or-later"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Dave Reid",
  5420. "homepage": "https://www.drupal.org/user/53892"
  5421. }
  5422. ],
  5423. "description": "Provides the js-cookie library as a dependency.",
  5424. "homepage": "https://www.drupal.org/project/js_cookie",
  5425. "support": {
  5426. "source": "https://git.drupalcode.org/project/js_cookie"
  5427. }
  5428. },
  5429. {
  5430. "name": "drupal/leaflet",
  5431. "version": "10.4.4",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://git.drupalcode.org/project/leaflet.git",
  5435. "reference": "10.4.4"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://ftp.drupal.org/files/projects/leaflet-10.4.4.zip",
  5440. "reference": "10.4.4",
  5441. "shasum": "67a10addddac7e2433e61fcd9b5b5e55191301a8"
  5442. },
  5443. "require": {
  5444. "drupal/core": "^10.3 || ^11",
  5445. "drupal/geofield": "^1.31 || ^10.3"
  5446. },
  5447. "type": "drupal-module",
  5448. "extra": {
  5449. "drupal": {
  5450. "version": "10.4.4",
  5451. "datestamp": "1771869182",
  5452. "security-coverage": {
  5453. "status": "covered",
  5454. "message": "Covered by Drupal's security advisory policy"
  5455. }
  5456. }
  5457. },
  5458. "notification-url": "https://packages.drupal.org/8/downloads",
  5459. "license": [
  5460. "GPL-2.0+"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Italo Mairo",
  5465. "homepage": "https://www.drupal.org/u/itamair",
  5466. "role": "Maintainer"
  5467. },
  5468. {
  5469. "name": "Peter Vanhee (pvhee)",
  5470. "homepage": "https://www.drupal.org/u/pvhee",
  5471. "role": "Maintainer"
  5472. },
  5473. {
  5474. "name": "Rik de Boer (RdeBoer)",
  5475. "homepage": "https://www.drupal.org/u/rdeboer",
  5476. "role": "Maintainer"
  5477. },
  5478. {
  5479. "name": "Gabriel Carleton-Barnes (gcb)",
  5480. "homepage": "https://www.drupal.org/u/gcb",
  5481. "role": "Maintainer"
  5482. },
  5483. {
  5484. "name": "Lev Tsypin (levelos)",
  5485. "homepage": "https://www.drupal.org/u/levelos",
  5486. "role": "Maintainer"
  5487. },
  5488. {
  5489. "name": "Sean Larkin (seanberto)",
  5490. "homepage": "https://www.drupal.org/u/seanberto",
  5491. "role": "Maintainer"
  5492. }
  5493. ],
  5494. "description": "Integration with the Leaflet map scripting library.",
  5495. "homepage": "https://www.drupal.org/project/leaflet",
  5496. "support": {
  5497. "source": "https://git.drupalcode.org/project/leaflet",
  5498. "issues": "https://www.drupal.org/project/issues/leaflet"
  5499. }
  5500. },
  5501. {
  5502. "name": "drupal/leaflet_more_maps",
  5503. "version": "2.2.3",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5507. "reference": "2.2.3"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5512. "reference": "2.2.3",
  5513. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5514. },
  5515. "require": {
  5516. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5517. "drupal/leaflet": "^2.1.0 || ^10.0"
  5518. },
  5519. "require-dev": {
  5520. "drupal/leaflet": "*"
  5521. },
  5522. "type": "drupal-module",
  5523. "extra": {
  5524. "drupal": {
  5525. "version": "2.2.3",
  5526. "datestamp": "1737668201",
  5527. "security-coverage": {
  5528. "status": "covered",
  5529. "message": "Covered by Drupal's security advisory policy"
  5530. }
  5531. },
  5532. "branch-alias": {
  5533. "dev-8.x-1.x": "1.x-dev"
  5534. }
  5535. },
  5536. "notification-url": "https://packages.drupal.org/8/downloads",
  5537. "license": [
  5538. "GPL-2.0-or-later"
  5539. ],
  5540. "authors": [
  5541. {
  5542. "name": "berramou",
  5543. "homepage": "https://www.drupal.org/user/3535998"
  5544. },
  5545. {
  5546. "name": "itamair",
  5547. "homepage": "https://www.drupal.org/user/1179076"
  5548. },
  5549. {
  5550. "name": "japerry",
  5551. "homepage": "https://www.drupal.org/user/45640"
  5552. },
  5553. {
  5554. "name": "rachel_norfolk",
  5555. "homepage": "https://www.drupal.org/user/66273"
  5556. },
  5557. {
  5558. "name": "rdeboer",
  5559. "homepage": "https://www.drupal.org/user/404007"
  5560. }
  5561. ],
  5562. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5563. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5564. "support": {
  5565. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5566. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5567. }
  5568. },
  5569. {
  5570. "name": "drupal/leaflet_more_markers",
  5571. "version": "1.1.3",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5575. "reference": "1.1.3"
  5576. },
  5577. "dist": {
  5578. "type": "zip",
  5579. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5580. "reference": "1.1.3",
  5581. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5582. },
  5583. "require": {
  5584. "drupal/core": "^9.3 || ^10 || ^11",
  5585. "drupal/leaflet": "*",
  5586. "drupal/token": "*"
  5587. },
  5588. "type": "drupal-module",
  5589. "extra": {
  5590. "drupal": {
  5591. "version": "1.1.3",
  5592. "datestamp": "1733213620",
  5593. "security-coverage": {
  5594. "status": "covered",
  5595. "message": "Covered by Drupal's security advisory policy"
  5596. }
  5597. }
  5598. },
  5599. "notification-url": "https://packages.drupal.org/8/downloads",
  5600. "license": [
  5601. "GPL-2.0-or-later"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "itamair",
  5606. "homepage": "https://www.drupal.org/user/1179076"
  5607. },
  5608. {
  5609. "name": "rdeboer",
  5610. "homepage": "https://www.drupal.org/user/404007"
  5611. }
  5612. ],
  5613. "description": "Allows every location to feature its own emoji marker or font icon.",
  5614. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5615. "support": {
  5616. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5617. }
  5618. },
  5619. {
  5620. "name": "drupal/link_attributes",
  5621. "version": "2.1.2",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5625. "reference": "2.1.2"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.2.zip",
  5630. "reference": "2.1.2",
  5631. "shasum": "be747ac683568252d6d580acf5929c7ddc02c7e8"
  5632. },
  5633. "require": {
  5634. "drupal/core": "^9 || ^10 || ^11",
  5635. "php": ">=8.0"
  5636. },
  5637. "require-dev": {
  5638. "drupal/linkit": "~6 || ~7"
  5639. },
  5640. "type": "drupal-module",
  5641. "extra": {
  5642. "drupal": {
  5643. "version": "2.1.2",
  5644. "datestamp": "1763068313",
  5645. "security-coverage": {
  5646. "status": "covered",
  5647. "message": "Covered by Drupal's security advisory policy"
  5648. }
  5649. }
  5650. },
  5651. "notification-url": "https://packages.drupal.org/8/downloads",
  5652. "license": [
  5653. "GPL-2.0-or-later"
  5654. ],
  5655. "authors": [
  5656. {
  5657. "name": "larowlan",
  5658. "homepage": "https://www.drupal.org/user/395439"
  5659. }
  5660. ],
  5661. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5662. "homepage": "https://www.drupal.org/project/link_attributes",
  5663. "keywords": [
  5664. "Drupal"
  5665. ],
  5666. "support": {
  5667. "source": "https://git.drupalcode.org/project/link_attributes",
  5668. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5669. }
  5670. },
  5671. {
  5672. "name": "drupal/linked_field",
  5673. "version": "1.7.0",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://git.drupalcode.org/project/linked_field.git",
  5677. "reference": "8.x-1.7"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5682. "reference": "8.x-1.7",
  5683. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5684. },
  5685. "require": {
  5686. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5687. },
  5688. "type": "drupal-module",
  5689. "extra": {
  5690. "drupal": {
  5691. "version": "8.x-1.7",
  5692. "datestamp": "1748842765",
  5693. "security-coverage": {
  5694. "status": "covered",
  5695. "message": "Covered by Drupal's security advisory policy"
  5696. }
  5697. }
  5698. },
  5699. "notification-url": "https://packages.drupal.org/8/downloads",
  5700. "license": [
  5701. "GPL-2.0-or-later"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "jcnventura",
  5706. "homepage": "https://www.drupal.org/user/122464"
  5707. },
  5708. {
  5709. "name": "yannickoo",
  5710. "homepage": "https://www.drupal.org/user/531118"
  5711. }
  5712. ],
  5713. "description": "Adds the functionality to link fields to a specific destination.",
  5714. "homepage": "https://www.drupal.org/project/linked_field",
  5715. "support": {
  5716. "source": "https://git.drupalcode.org/project/linked_field"
  5717. }
  5718. },
  5719. {
  5720. "name": "drupal/linkit",
  5721. "version": "7.0.13",
  5722. "source": {
  5723. "type": "git",
  5724. "url": "https://git.drupalcode.org/project/linkit.git",
  5725. "reference": "7.0.13"
  5726. },
  5727. "dist": {
  5728. "type": "zip",
  5729. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.13.zip",
  5730. "reference": "7.0.13",
  5731. "shasum": "918d001248b4a394eb1c4e097e7d243959280489"
  5732. },
  5733. "require": {
  5734. "drupal/core": "^10.1 || ^11"
  5735. },
  5736. "type": "drupal-module",
  5737. "extra": {
  5738. "drupal": {
  5739. "version": "7.0.13",
  5740. "datestamp": "1773055628",
  5741. "security-coverage": {
  5742. "status": "covered",
  5743. "message": "Covered by Drupal's security advisory policy"
  5744. }
  5745. }
  5746. },
  5747. "notification-url": "https://packages.drupal.org/8/downloads",
  5748. "license": [
  5749. "GPL-2.0-or-later"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "Emil Stjerneman",
  5754. "homepage": "https://stjerneman.com",
  5755. "email": "emil@stjerneman.com",
  5756. "role": "Maintainer"
  5757. },
  5758. {
  5759. "name": "johnwebdev",
  5760. "homepage": "https://www.drupal.org/user/3331569"
  5761. },
  5762. {
  5763. "name": "mark_fullmer",
  5764. "homepage": "https://www.drupal.org/user/2612816"
  5765. }
  5766. ],
  5767. "description": "Linkit - Enriched linking experience",
  5768. "homepage": "http://drupal.org/project/linkit",
  5769. "support": {
  5770. "source": "http://cgit.drupalcode.org/linkit",
  5771. "issues": "http://drupal.org/project/linkit"
  5772. }
  5773. },
  5774. {
  5775. "name": "drupal/mailsystem",
  5776. "version": "4.5.0",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5780. "reference": "8.x-4.5"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5785. "reference": "8.x-4.5",
  5786. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5787. },
  5788. "require": {
  5789. "drupal/core": "^9 || ^10.1 || ^11"
  5790. },
  5791. "type": "drupal-module",
  5792. "extra": {
  5793. "drupal": {
  5794. "version": "8.x-4.5",
  5795. "datestamp": "1723379369",
  5796. "security-coverage": {
  5797. "status": "covered",
  5798. "message": "Covered by Drupal's security advisory policy"
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0-or-later"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "berdir",
  5809. "homepage": "https://www.drupal.org/user/214652"
  5810. },
  5811. {
  5812. "name": "emartoni",
  5813. "homepage": "https://www.drupal.org/user/3225331"
  5814. },
  5815. {
  5816. "name": "joseph.olstad",
  5817. "homepage": "https://www.drupal.org/user/1321830"
  5818. },
  5819. {
  5820. "name": "les lim",
  5821. "homepage": "https://www.drupal.org/user/84263"
  5822. },
  5823. {
  5824. "name": "manuel garcia",
  5825. "homepage": "https://www.drupal.org/user/213194"
  5826. },
  5827. {
  5828. "name": "miro_dietiker",
  5829. "homepage": "https://www.drupal.org/user/227761"
  5830. },
  5831. {
  5832. "name": "Nafes",
  5833. "homepage": "https://www.drupal.org/user/2489926"
  5834. },
  5835. {
  5836. "name": "pillarsdotnet",
  5837. "homepage": "https://www.drupal.org/user/36148"
  5838. },
  5839. {
  5840. "name": "renatog",
  5841. "homepage": "https://www.drupal.org/user/3326031"
  5842. },
  5843. {
  5844. "name": "tr",
  5845. "homepage": "https://www.drupal.org/user/202830"
  5846. }
  5847. ],
  5848. "description": "Mail System",
  5849. "homepage": "https://www.drupal.org/project/mailsystem",
  5850. "support": {
  5851. "source": "https://git.drupalcode.org/project/mailsystem"
  5852. }
  5853. },
  5854. {
  5855. "name": "drupal/manage_display",
  5856. "version": "3.0.1",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://git.drupalcode.org/project/manage_display.git",
  5860. "reference": "3.0.1"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5865. "reference": "3.0.1",
  5866. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5867. },
  5868. "require": {
  5869. "drupal/core": "^9.4 || ^10 || ^11"
  5870. },
  5871. "type": "drupal-module",
  5872. "extra": {
  5873. "drupal": {
  5874. "version": "3.0.1",
  5875. "datestamp": "1714834549",
  5876. "security-coverage": {
  5877. "status": "covered",
  5878. "message": "Covered by Drupal's security advisory policy"
  5879. }
  5880. }
  5881. },
  5882. "notification-url": "https://packages.drupal.org/8/downloads",
  5883. "license": [
  5884. "GPL-2.0-or-later"
  5885. ],
  5886. "authors": [
  5887. {
  5888. "name": "Adam Shepherd (AdamPS)",
  5889. "homepage": "https://www.drupal.org/u/adamps",
  5890. "role": "Maintainer"
  5891. },
  5892. {
  5893. "name": "Viktor Holovachek (AstonVictor)",
  5894. "homepage": "https://www.drupal.org/u/astonvictor",
  5895. "role": "Maintainer"
  5896. }
  5897. ],
  5898. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  5899. "homepage": "https://www.drupal.org/project/manage_display",
  5900. "keywords": [
  5901. "Drupal"
  5902. ],
  5903. "support": {
  5904. "source": "https://git.drupalcode.org/project/manage_display",
  5905. "issues": "https://www.drupal.org/project/issues/manage_display"
  5906. }
  5907. },
  5908. {
  5909. "name": "drupal/matomo",
  5910. "version": "1.26.0",
  5911. "source": {
  5912. "type": "git",
  5913. "url": "https://git.drupalcode.org/project/matomo.git",
  5914. "reference": "8.x-1.26"
  5915. },
  5916. "dist": {
  5917. "type": "zip",
  5918. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.26.zip",
  5919. "reference": "8.x-1.26",
  5920. "shasum": "b47514b6772012545d097240a28844b8f33867d5"
  5921. },
  5922. "require": {
  5923. "drupal/core": "^10.3 || ^11"
  5924. },
  5925. "conflict": {
  5926. "drupal/csp": "<1.12"
  5927. },
  5928. "require-dev": {
  5929. "drupal/csp": "^1.12",
  5930. "drupal/facets": "^3.0",
  5931. "drupal/php": "^1.1",
  5932. "drupal/search_api": "^1.40",
  5933. "drupal/token": "^1.9"
  5934. },
  5935. "type": "drupal-module",
  5936. "extra": {
  5937. "drupal": {
  5938. "version": "8.x-1.26",
  5939. "datestamp": "1766442490",
  5940. "security-coverage": {
  5941. "status": "covered",
  5942. "message": "Covered by Drupal's security advisory policy"
  5943. }
  5944. }
  5945. },
  5946. "notification-url": "https://packages.drupal.org/8/downloads",
  5947. "license": [
  5948. "GPL-2.0-or-later"
  5949. ],
  5950. "authors": [
  5951. {
  5952. "name": "c-logemann",
  5953. "homepage": "https://www.drupal.org/user/218368"
  5954. },
  5955. {
  5956. "name": "grimreaper",
  5957. "homepage": "https://www.drupal.org/user/2388214"
  5958. },
  5959. {
  5960. "name": "shelane",
  5961. "homepage": "https://www.drupal.org/user/2674989"
  5962. }
  5963. ],
  5964. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5965. "homepage": "https://www.drupal.org/project/matomo",
  5966. "support": {
  5967. "source": "https://git.drupalcode.org/project/matomo"
  5968. }
  5969. },
  5970. {
  5971. "name": "drupal/maxlength",
  5972. "version": "3.1.3",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://git.drupalcode.org/project/maxlength.git",
  5976. "reference": "3.1.3"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://ftp.drupal.org/files/projects/maxlength-3.1.3.zip",
  5981. "reference": "3.1.3",
  5982. "shasum": "7f063d0a449eda6bc499a718a09d1091907ef054"
  5983. },
  5984. "require": {
  5985. "drupal/core": "^10 || ^11"
  5986. },
  5987. "type": "drupal-module",
  5988. "extra": {
  5989. "drupal": {
  5990. "version": "3.1.3",
  5991. "datestamp": "1756373060",
  5992. "security-coverage": {
  5993. "status": "covered",
  5994. "message": "Covered by Drupal's security advisory policy"
  5995. }
  5996. }
  5997. },
  5998. "notification-url": "https://packages.drupal.org/8/downloads",
  5999. "license": [
  6000. "GPL-2.0-or-later"
  6001. ],
  6002. "authors": [
  6003. {
  6004. "name": "Marius Scurtescu (mariuss)",
  6005. "homepage": "https://www.drupal.org/u/mariuss",
  6006. "role": "Maintainer"
  6007. },
  6008. {
  6009. "name": "Clayton Dewey (cedewey)",
  6010. "homepage": "https://www.drupal.org/u/cedewey",
  6011. "role": "Maintainer"
  6012. },
  6013. {
  6014. "name": "Daniel Wehner (dawehner)",
  6015. "homepage": "https://www.drupal.org/u/dawehner",
  6016. "role": "Maintainer"
  6017. },
  6018. {
  6019. "name": "Paulino Michelazzo (pmichelazzo)",
  6020. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6021. "role": "Maintainer"
  6022. },
  6023. {
  6024. "name": "Jeff Hipp (hipp2bsquare)",
  6025. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6026. "role": "Maintainer"
  6027. },
  6028. {
  6029. "name": "Steven DuBois (srdtwc)",
  6030. "homepage": "https://www.drupal.org/u/srdtwc",
  6031. "role": "Maintainer"
  6032. },
  6033. {
  6034. "name": "Adam Nagy (joevagyok)",
  6035. "homepage": "https://www.drupal.org/u/joevagyok",
  6036. "role": "Maintainer"
  6037. }
  6038. ],
  6039. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6040. "homepage": "https://www.drupal.org/project/maxlength",
  6041. "support": {
  6042. "source": "https://git.drupalcode.org/project/maxlength",
  6043. "issues": "https://www.drupal.org/project/issues/maxlength"
  6044. }
  6045. },
  6046. {
  6047. "name": "drupal/menu_admin_per_menu",
  6048. "version": "1.7.0",
  6049. "source": {
  6050. "type": "git",
  6051. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6052. "reference": "8.x-1.7"
  6053. },
  6054. "dist": {
  6055. "type": "zip",
  6056. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6057. "reference": "8.x-1.7",
  6058. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6059. },
  6060. "require": {
  6061. "drupal/core": "^10.2 || ^11.0 || ^12"
  6062. },
  6063. "type": "drupal-module",
  6064. "extra": {
  6065. "drupal": {
  6066. "version": "8.x-1.7",
  6067. "datestamp": "1750246188",
  6068. "security-coverage": {
  6069. "status": "covered",
  6070. "message": "Covered by Drupal's security advisory policy"
  6071. }
  6072. }
  6073. },
  6074. "notification-url": "https://packages.drupal.org/8/downloads",
  6075. "license": [
  6076. "GPL-2.0-or-later"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "anrikun",
  6081. "homepage": "https://www.drupal.org/user/410199"
  6082. },
  6083. {
  6084. "name": "jeroent",
  6085. "homepage": "https://www.drupal.org/user/2228934"
  6086. },
  6087. {
  6088. "name": "jonas139",
  6089. "homepage": "https://www.drupal.org/user/2873401"
  6090. },
  6091. {
  6092. "name": "mkdok",
  6093. "homepage": "https://www.drupal.org/user/3308753"
  6094. }
  6095. ],
  6096. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6097. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6098. "keywords": [
  6099. "Drupal"
  6100. ],
  6101. "support": {
  6102. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6103. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6104. }
  6105. },
  6106. {
  6107. "name": "drupal/menu_block",
  6108. "version": "1.14.0",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://git.drupalcode.org/project/menu_block.git",
  6112. "reference": "8.x-1.14"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6117. "reference": "8.x-1.14",
  6118. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6119. },
  6120. "require": {
  6121. "drupal/core": "^10.1 || ^11"
  6122. },
  6123. "type": "drupal-module",
  6124. "extra": {
  6125. "drupal": {
  6126. "version": "8.x-1.14",
  6127. "datestamp": "1740624449",
  6128. "security-coverage": {
  6129. "status": "covered",
  6130. "message": "Covered by Drupal's security advisory policy"
  6131. }
  6132. }
  6133. },
  6134. "notification-url": "https://packages.drupal.org/8/downloads",
  6135. "license": [
  6136. "GPL-2.0-or-later"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "dave reid",
  6141. "homepage": "https://www.drupal.org/user/53892"
  6142. },
  6143. {
  6144. "name": "joelpittet",
  6145. "homepage": "https://www.drupal.org/user/160302"
  6146. },
  6147. {
  6148. "name": "johnalbin",
  6149. "homepage": "https://www.drupal.org/user/32095"
  6150. },
  6151. {
  6152. "name": "kim.pepper",
  6153. "homepage": "https://www.drupal.org/user/370574"
  6154. },
  6155. {
  6156. "name": "renatog",
  6157. "homepage": "https://www.drupal.org/user/3326031"
  6158. },
  6159. {
  6160. "name": "rrrob",
  6161. "homepage": "https://www.drupal.org/user/273533"
  6162. }
  6163. ],
  6164. "description": "Provides configurable blocks of menu links.",
  6165. "homepage": "https://www.drupal.org/project/menu_block",
  6166. "support": {
  6167. "source": "https://git.drupalcode.org/project/menu_block"
  6168. }
  6169. },
  6170. {
  6171. "name": "drupal/page_manager",
  6172. "version": "4.0.0-rc3",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://git.drupalcode.org/project/page_manager.git",
  6176. "reference": "8.x-4.0-rc3"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6181. "reference": "8.x-4.0-rc3",
  6182. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6183. },
  6184. "require": {
  6185. "drupal/core": "^9.5 || ^10 || ^11",
  6186. "drupal/ctools": "^3.15 || ^4.1"
  6187. },
  6188. "type": "drupal-module",
  6189. "extra": {
  6190. "drupal": {
  6191. "version": "8.x-4.0-rc3",
  6192. "datestamp": "1721976404",
  6193. "security-coverage": {
  6194. "status": "not-covered",
  6195. "message": "RC releases are not covered by Drupal security advisories."
  6196. }
  6197. },
  6198. "branch-alias": {
  6199. "dev-8.x-4.x": "4.x-dev"
  6200. }
  6201. },
  6202. "notification-url": "https://packages.drupal.org/8/downloads",
  6203. "license": [
  6204. "GPL-2.0-or-later"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Tim Plunkett",
  6209. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6210. "role": "Maintainer"
  6211. },
  6212. {
  6213. "name": "EclipseGc",
  6214. "homepage": "https://www.drupal.org/user/61203"
  6215. },
  6216. {
  6217. "name": "japerry",
  6218. "homepage": "https://www.drupal.org/user/45640"
  6219. },
  6220. {
  6221. "name": "joelpittet",
  6222. "homepage": "https://www.drupal.org/user/160302"
  6223. },
  6224. {
  6225. "name": "manuel.adan",
  6226. "homepage": "https://www.drupal.org/user/516420"
  6227. },
  6228. {
  6229. "name": "phenaproxima",
  6230. "homepage": "https://www.drupal.org/user/205645"
  6231. }
  6232. ],
  6233. "description": "Provides a way to place blocks on a custom page.",
  6234. "homepage": "https://www.drupal.org/project/page_manager",
  6235. "support": {
  6236. "source": "https://git.drupal.org/project/page_manager.git",
  6237. "issues": "https://www.drupal.org/project/issues/page_manager",
  6238. "irc": "irc://irc.freenode.org/drupal-contribute"
  6239. }
  6240. },
  6241. {
  6242. "name": "drupal/panels",
  6243. "version": "4.9.0",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://git.drupalcode.org/project/panels.git",
  6247. "reference": "8.x-4.9"
  6248. },
  6249. "dist": {
  6250. "type": "zip",
  6251. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6252. "reference": "8.x-4.9",
  6253. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6254. },
  6255. "require": {
  6256. "drupal/core": "^9.5 || ^10 || ^11",
  6257. "drupal/ctools": "^3.15 || ^4.1",
  6258. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6259. },
  6260. "require-dev": {
  6261. "drupal/jquery_ui_droppable": "*",
  6262. "drupal/page_manager": "^4"
  6263. },
  6264. "type": "drupal-module",
  6265. "extra": {
  6266. "drupal": {
  6267. "version": "8.x-4.9",
  6268. "datestamp": "1744218203",
  6269. "security-coverage": {
  6270. "status": "covered",
  6271. "message": "Covered by Drupal's security advisory policy"
  6272. }
  6273. },
  6274. "branch-alias": {
  6275. "dev-8.x-4.x": "4.x-dev"
  6276. }
  6277. },
  6278. "notification-url": "https://packages.drupal.org/8/downloads",
  6279. "license": [
  6280. "GPL-2.0+"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Jakob Perry",
  6285. "homepage": "https://www.drupal.org/u/japerry"
  6286. },
  6287. {
  6288. "name": "Samuel Mortenson",
  6289. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6290. },
  6291. {
  6292. "name": "See other contributors",
  6293. "homepage": "https://www.drupal.org/node/74958/committers"
  6294. },
  6295. {
  6296. "name": "joelpittet",
  6297. "homepage": "https://www.drupal.org/user/160302"
  6298. },
  6299. {
  6300. "name": "Letharion",
  6301. "homepage": "https://www.drupal.org/user/373603"
  6302. },
  6303. {
  6304. "name": "merlinofchaos",
  6305. "homepage": "https://www.drupal.org/user/26979"
  6306. },
  6307. {
  6308. "name": "neclimdul",
  6309. "homepage": "https://www.drupal.org/user/48673"
  6310. },
  6311. {
  6312. "name": "phenaproxima",
  6313. "homepage": "https://www.drupal.org/user/205645"
  6314. },
  6315. {
  6316. "name": "samuel.mortenson",
  6317. "homepage": "https://www.drupal.org/user/2582268"
  6318. }
  6319. ],
  6320. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6321. "homepage": "https://www.drupal.org/project/panels",
  6322. "support": {
  6323. "source": "https://git.drupalcode.org/project/panels",
  6324. "issues": "https://www.drupal.org/project/issues/panels",
  6325. "irc": "irc://irc.freenode.org/drupal-scotch"
  6326. }
  6327. },
  6328. {
  6329. "name": "drupal/paragraphs",
  6330. "version": "1.19.0",
  6331. "source": {
  6332. "type": "git",
  6333. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6334. "reference": "8.x-1.19"
  6335. },
  6336. "dist": {
  6337. "type": "zip",
  6338. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6339. "reference": "8.x-1.19",
  6340. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6341. },
  6342. "require": {
  6343. "drupal/core": "^10.2 || ^11",
  6344. "drupal/entity_reference_revisions": "~1.3"
  6345. },
  6346. "require-dev": {
  6347. "drupal/block_field": "1.x-dev",
  6348. "drupal/diff": "1.x-dev",
  6349. "drupal/entity_browser": "2.x-dev",
  6350. "drupal/entity_usage": "2.x-dev",
  6351. "drupal/feeds": "^3",
  6352. "drupal/field_group": "3.x-dev",
  6353. "drupal/inline_entity_form": "3.x-dev",
  6354. "drupal/paragraphs-paragraphs_library": "*",
  6355. "drupal/replicate": "1.x-dev",
  6356. "drupal/search_api": "^1",
  6357. "drupal/search_api_db": "*"
  6358. },
  6359. "suggest": {
  6360. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6361. },
  6362. "type": "drupal-module",
  6363. "extra": {
  6364. "drupal": {
  6365. "version": "8.x-1.19",
  6366. "datestamp": "1740907076",
  6367. "security-coverage": {
  6368. "status": "covered",
  6369. "message": "Covered by Drupal's security advisory policy"
  6370. }
  6371. }
  6372. },
  6373. "notification-url": "https://packages.drupal.org/8/downloads",
  6374. "license": [
  6375. "GPL-2.0-or-later"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "berdir",
  6380. "homepage": "https://www.drupal.org/user/214652"
  6381. },
  6382. {
  6383. "name": "frans",
  6384. "homepage": "https://www.drupal.org/user/514222"
  6385. },
  6386. {
  6387. "name": "jeroen.b",
  6388. "homepage": "https://www.drupal.org/user/1853532"
  6389. },
  6390. {
  6391. "name": "jstoller",
  6392. "homepage": "https://www.drupal.org/user/99012"
  6393. },
  6394. {
  6395. "name": "miro_dietiker",
  6396. "homepage": "https://www.drupal.org/user/227761"
  6397. },
  6398. {
  6399. "name": "primsi",
  6400. "homepage": "https://www.drupal.org/user/282629"
  6401. }
  6402. ],
  6403. "description": "Enables the creation of Paragraphs entities.",
  6404. "homepage": "https://www.drupal.org/project/paragraphs",
  6405. "support": {
  6406. "source": "https://git.drupalcode.org/project/paragraphs"
  6407. }
  6408. },
  6409. {
  6410. "name": "drupal/pathauto",
  6411. "version": "1.14.0",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://git.drupalcode.org/project/pathauto.git",
  6415. "reference": "8.x-1.14"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.14.zip",
  6420. "reference": "8.x-1.14",
  6421. "shasum": "07f0d2efcf0bfb450e2ab69a43921fa39dc5f25b"
  6422. },
  6423. "require": {
  6424. "drupal/core": "^10 || ^11",
  6425. "drupal/ctools": "*",
  6426. "drupal/token": "*"
  6427. },
  6428. "conflict": {
  6429. "drush/drush": "<12.5.1"
  6430. },
  6431. "require-dev": {
  6432. "drupal/forum": "*"
  6433. },
  6434. "suggest": {
  6435. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  6436. },
  6437. "type": "drupal-module",
  6438. "extra": {
  6439. "drupal": {
  6440. "version": "8.x-1.14",
  6441. "datestamp": "1759838097",
  6442. "security-coverage": {
  6443. "status": "covered",
  6444. "message": "Covered by Drupal's security advisory policy"
  6445. }
  6446. }
  6447. },
  6448. "notification-url": "https://packages.drupal.org/8/downloads",
  6449. "license": [
  6450. "GPL-2.0-or-later"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "acbramley",
  6455. "homepage": "https://www.drupal.org/user/1036766"
  6456. },
  6457. {
  6458. "name": "berdir",
  6459. "homepage": "https://www.drupal.org/user/214652"
  6460. },
  6461. {
  6462. "name": "dave reid",
  6463. "homepage": "https://www.drupal.org/user/53892"
  6464. },
  6465. {
  6466. "name": "Freso",
  6467. "homepage": "https://www.drupal.org/user/27504"
  6468. },
  6469. {
  6470. "name": "greggles",
  6471. "homepage": "https://www.drupal.org/user/36762"
  6472. },
  6473. {
  6474. "name": "mably",
  6475. "homepage": "https://www.drupal.org/user/3375160"
  6476. }
  6477. ],
  6478. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6479. "homepage": "https://www.drupal.org/project/pathauto",
  6480. "support": {
  6481. "source": "https://cgit.drupalcode.org/pathauto",
  6482. "issues": "https://www.drupal.org/project/issues/pathauto",
  6483. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6484. }
  6485. },
  6486. {
  6487. "name": "drupal/pathologic",
  6488. "version": "2.0.0-alpha3",
  6489. "source": {
  6490. "type": "git",
  6491. "url": "https://git.drupalcode.org/project/pathologic.git",
  6492. "reference": "2.0.0-alpha3"
  6493. },
  6494. "dist": {
  6495. "type": "zip",
  6496. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6497. "reference": "2.0.0-alpha3",
  6498. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6499. },
  6500. "require": {
  6501. "drupal/core": "^9 || ^10 || ^11"
  6502. },
  6503. "type": "drupal-module",
  6504. "extra": {
  6505. "drupal": {
  6506. "version": "2.0.0-alpha3",
  6507. "datestamp": "1733441073",
  6508. "security-coverage": {
  6509. "status": "not-covered",
  6510. "message": "Alpha releases are not covered by Drupal security advisories."
  6511. }
  6512. }
  6513. },
  6514. "notification-url": "https://packages.drupal.org/8/downloads",
  6515. "license": [
  6516. "GPL-2.0+"
  6517. ],
  6518. "authors": [
  6519. {
  6520. "name": "berdir",
  6521. "homepage": "https://www.drupal.org/user/214652"
  6522. },
  6523. {
  6524. "name": "dww",
  6525. "homepage": "https://www.drupal.org/user/46549"
  6526. },
  6527. {
  6528. "name": "Garrett Albright",
  6529. "homepage": "https://www.drupal.org/user/191212"
  6530. },
  6531. {
  6532. "name": "mark_fullmer",
  6533. "homepage": "https://www.drupal.org/user/2612816"
  6534. }
  6535. ],
  6536. "description": "Helps avoid broken links and incorrect paths in content.",
  6537. "homepage": "https://www.drupal.org/project/pathologic",
  6538. "support": {
  6539. "source": "https://git.drupalcode.org/project/pathologic"
  6540. }
  6541. },
  6542. {
  6543. "name": "drupal/persistent_login",
  6544. "version": "2.2.4",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6548. "reference": "2.2.4"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://ftp.drupal.org/files/projects/persistent_login-2.2.4.zip",
  6553. "reference": "2.2.4",
  6554. "shasum": "7048ecf440938f0245f87bfb8c21f61292fce12d"
  6555. },
  6556. "require": {
  6557. "drupal/core": "^10 || ^11"
  6558. },
  6559. "type": "drupal-module",
  6560. "extra": {
  6561. "drupal": {
  6562. "version": "2.2.4",
  6563. "datestamp": "1728082564",
  6564. "security-coverage": {
  6565. "status": "covered",
  6566. "message": "Covered by Drupal's security advisory policy"
  6567. }
  6568. }
  6569. },
  6570. "notification-url": "https://packages.drupal.org/8/downloads",
  6571. "license": [
  6572. "GPL-2.0-or-later"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "gapple",
  6577. "homepage": "https://www.drupal.org/user/490940"
  6578. }
  6579. ],
  6580. "description": "Provides a \"Remember Me\" feature on the login form.",
  6581. "homepage": "https://www.drupal.org/project/persistent_login",
  6582. "keywords": [
  6583. "Drupal"
  6584. ],
  6585. "support": {
  6586. "source": "https://git.drupalcode.org/project/persistent_login",
  6587. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6588. }
  6589. },
  6590. {
  6591. "name": "drupal/redirect",
  6592. "version": "1.12.0",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://git.drupalcode.org/project/redirect.git",
  6596. "reference": "8.x-1.12"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.12.zip",
  6601. "reference": "8.x-1.12",
  6602. "shasum": "1cdee11356a25b9f9a10329aec0eeb293e0023de"
  6603. },
  6604. "require": {
  6605. "drupal/core": "^10 || ^11"
  6606. },
  6607. "type": "drupal-module",
  6608. "extra": {
  6609. "drupal": {
  6610. "version": "8.x-1.12",
  6611. "datestamp": "1756419163",
  6612. "security-coverage": {
  6613. "status": "covered",
  6614. "message": "Covered by Drupal's security advisory policy"
  6615. }
  6616. }
  6617. },
  6618. "notification-url": "https://packages.drupal.org/8/downloads",
  6619. "license": [
  6620. "GPL-2.0-or-later"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "berdir",
  6625. "homepage": "https://www.drupal.org/user/214652"
  6626. },
  6627. {
  6628. "name": "dave reid",
  6629. "homepage": "https://www.drupal.org/user/53892"
  6630. },
  6631. {
  6632. "name": "kristen pol",
  6633. "homepage": "https://www.drupal.org/user/8389"
  6634. },
  6635. {
  6636. "name": "pifagor",
  6637. "homepage": "https://www.drupal.org/user/2375692"
  6638. }
  6639. ],
  6640. "description": "Allows users to redirect from old URLs to new URLs.",
  6641. "homepage": "https://www.drupal.org/project/redirect",
  6642. "support": {
  6643. "source": "https://git.drupalcode.org/project/redirect"
  6644. }
  6645. },
  6646. {
  6647. "name": "drupal/redis",
  6648. "version": "1.11.0",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://git.drupalcode.org/project/redis.git",
  6652. "reference": "8.x-1.11"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.11.zip",
  6657. "reference": "8.x-1.11",
  6658. "shasum": "4a32e50b85523fd09500b6c6398cf18504bdc652"
  6659. },
  6660. "require": {
  6661. "drupal/core": "^9.3 || ^10 || ^11"
  6662. },
  6663. "suggest": {
  6664. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6665. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6666. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6667. },
  6668. "type": "drupal-module",
  6669. "extra": {
  6670. "drupal": {
  6671. "version": "8.x-1.11",
  6672. "datestamp": "1762688846",
  6673. "security-coverage": {
  6674. "status": "covered",
  6675. "message": "Covered by Drupal's security advisory policy"
  6676. }
  6677. }
  6678. },
  6679. "autoload": {
  6680. "psr-4": {
  6681. "Drupal\\redis\\": "src"
  6682. }
  6683. },
  6684. "notification-url": "https://packages.drupal.org/8/downloads",
  6685. "license": [
  6686. "GPL-2.0-or-later"
  6687. ],
  6688. "authors": [
  6689. {
  6690. "name": "berdir",
  6691. "homepage": "https://www.drupal.org/user/214652"
  6692. },
  6693. {
  6694. "name": "greg.1.anderson",
  6695. "homepage": "https://www.drupal.org/user/438598"
  6696. },
  6697. {
  6698. "name": "kporras07",
  6699. "homepage": "https://www.drupal.org/user/1349780"
  6700. },
  6701. {
  6702. "name": "pounard",
  6703. "homepage": "https://www.drupal.org/user/240164"
  6704. }
  6705. ],
  6706. "description": "Integration of Drupal with the Redis key-value store.",
  6707. "homepage": "https://www.drupal.org/project/redis",
  6708. "support": {
  6709. "source": "https://git.drupalcode.org/project/redis"
  6710. }
  6711. },
  6712. {
  6713. "name": "drupal/role_delegation",
  6714. "version": "1.6.0",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6718. "reference": "8.x-1.6"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.6.zip",
  6723. "reference": "8.x-1.6",
  6724. "shasum": "792971461a3b86cb8f6937d0eecd3745899bb7bf"
  6725. },
  6726. "require": {
  6727. "drupal/core": "^10.3 || ^11"
  6728. },
  6729. "type": "drupal-module",
  6730. "extra": {
  6731. "drupal": {
  6732. "version": "8.x-1.6",
  6733. "datestamp": "1769768673",
  6734. "security-coverage": {
  6735. "status": "covered",
  6736. "message": "Covered by Drupal's security advisory policy"
  6737. }
  6738. }
  6739. },
  6740. "notification-url": "https://packages.drupal.org/8/downloads",
  6741. "license": [
  6742. "GPL-2.0-or-later"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Jeroen Tubex",
  6747. "homepage": "https://www.drupal.org/u/jeroent",
  6748. "role": "Maintainer"
  6749. },
  6750. {
  6751. "name": "benjy",
  6752. "homepage": "https://www.drupal.org/user/1852732"
  6753. },
  6754. {
  6755. "name": "dieterholvoet",
  6756. "homepage": "https://www.drupal.org/user/3567222"
  6757. },
  6758. {
  6759. "name": "jeroent",
  6760. "homepage": "https://www.drupal.org/user/2228934"
  6761. }
  6762. ],
  6763. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6764. "homepage": "http://drupal.org/project/role_delegation",
  6765. "support": {
  6766. "source": "https://git.drupalcode.org/project/role_delegation",
  6767. "issues": "http://drupal.org/project/role_delegation"
  6768. }
  6769. },
  6770. {
  6771. "name": "drupal/search_api",
  6772. "version": "1.40.0",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://git.drupalcode.org/project/search_api.git",
  6776. "reference": "8.x-1.40"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.40.zip",
  6781. "reference": "8.x-1.40",
  6782. "shasum": "64ac71887786da63ced27a43e37342ea3b765a88"
  6783. },
  6784. "require": {
  6785. "drupal/core": "^10.3 || ^11"
  6786. },
  6787. "conflict": {
  6788. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6789. },
  6790. "require-dev": {
  6791. "drupal/config_readonly": "1.x-dev",
  6792. "drupal/language_fallback_fix": "1.x-dev",
  6793. "drupal/search_api_autocomplete": "1.x-dev",
  6794. "drupal/search_api_db": "*"
  6795. },
  6796. "suggest": {
  6797. "drupal/facets": "Adds the ability to create faceted searches.",
  6798. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6799. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6800. },
  6801. "type": "drupal-module",
  6802. "extra": {
  6803. "drupal": {
  6804. "version": "8.x-1.40",
  6805. "datestamp": "1762031191",
  6806. "security-coverage": {
  6807. "status": "covered",
  6808. "message": "Covered by Drupal's security advisory policy"
  6809. }
  6810. },
  6811. "branch-alias": {
  6812. "dev-8.x-1.x": "1.x-dev"
  6813. }
  6814. },
  6815. "notification-url": "https://packages.drupal.org/8/downloads",
  6816. "license": [
  6817. "GPL-2.0-or-later"
  6818. ],
  6819. "authors": [
  6820. {
  6821. "name": "Thomas Seidl",
  6822. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6823. },
  6824. {
  6825. "name": "Nick Veenhof",
  6826. "homepage": "https://www.drupal.org/u/nick_vh"
  6827. },
  6828. {
  6829. "name": "See other contributors",
  6830. "homepage": "https://www.drupal.org/node/790418/committers"
  6831. }
  6832. ],
  6833. "description": "Provides a generic framework for modules offering search capabilities.",
  6834. "homepage": "https://www.drupal.org/project/search_api",
  6835. "support": {
  6836. "source": "https://git.drupalcode.org/project/search_api",
  6837. "issues": "https://www.drupal.org/project/issues/search_api",
  6838. "irc": "irc://irc.freenode.org/drupal-search-api"
  6839. }
  6840. },
  6841. {
  6842. "name": "drupal/search_api_db",
  6843. "version": "1.38.0",
  6844. "require": {
  6845. "drupal/core": "^10.2 || ^11",
  6846. "drupal/search_api": "*"
  6847. },
  6848. "type": "metapackage",
  6849. "extra": {
  6850. "drupal": {
  6851. "version": "8.x-1.38",
  6852. "datestamp": "1740298961",
  6853. "security-coverage": {
  6854. "status": "covered",
  6855. "message": "Covered by Drupal's security advisory policy"
  6856. }
  6857. }
  6858. },
  6859. "notification-url": "https://packages.drupal.org/8/downloads",
  6860. "license": [
  6861. "GPL-2.0-or-later"
  6862. ],
  6863. "authors": [
  6864. {
  6865. "name": "borisson_",
  6866. "homepage": "https://www.drupal.org/user/2393360"
  6867. },
  6868. {
  6869. "name": "drunken monkey",
  6870. "homepage": "https://www.drupal.org/user/205582"
  6871. },
  6872. {
  6873. "name": "nick_vh",
  6874. "homepage": "https://www.drupal.org/user/122682"
  6875. }
  6876. ],
  6877. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6878. "homepage": "https://www.drupal.org/project/search_api",
  6879. "support": {
  6880. "source": "https://git.drupalcode.org/project/search_api"
  6881. }
  6882. },
  6883. {
  6884. "name": "drupal/seven",
  6885. "version": "1.0.0",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://git.drupalcode.org/project/seven.git",
  6889. "reference": "1.0.0"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6894. "reference": "1.0.0",
  6895. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6896. },
  6897. "require": {
  6898. "drupal/core": "^9 || ^10"
  6899. },
  6900. "type": "drupal-theme",
  6901. "extra": {
  6902. "drupal": {
  6903. "version": "1.0.0",
  6904. "datestamp": "1758908691",
  6905. "security-coverage": {
  6906. "status": "covered",
  6907. "message": "Covered by Drupal's security advisory policy"
  6908. }
  6909. }
  6910. },
  6911. "notification-url": "https://packages.drupal.org/8/downloads",
  6912. "license": [
  6913. "GPL-2.0-or-later"
  6914. ],
  6915. "authors": [
  6916. {
  6917. "name": "avpaderno",
  6918. "homepage": "https://www.drupal.org/user/55077"
  6919. },
  6920. {
  6921. "name": "bnjmnm",
  6922. "homepage": "https://www.drupal.org/user/2369194"
  6923. },
  6924. {
  6925. "name": "krakenbite",
  6926. "homepage": "https://www.drupal.org/user/3805933"
  6927. },
  6928. {
  6929. "name": "lauriii",
  6930. "homepage": "https://www.drupal.org/user/1078742"
  6931. },
  6932. {
  6933. "name": "mcrittenden",
  6934. "homepage": "https://www.drupal.org/user/420631"
  6935. },
  6936. {
  6937. "name": "mrfelton",
  6938. "homepage": "https://www.drupal.org/user/305669"
  6939. }
  6940. ],
  6941. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6942. "homepage": "https://www.drupal.org/project/seven",
  6943. "support": {
  6944. "source": "https://git.drupalcode.org/project/seven"
  6945. }
  6946. },
  6947. {
  6948. "name": "drupal/slick",
  6949. "version": "2.11.0",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://git.drupalcode.org/project/slick.git",
  6953. "reference": "8.x-2.11"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  6958. "reference": "8.x-2.11",
  6959. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  6960. },
  6961. "require": {
  6962. "drupal/blazy": "^2.17",
  6963. "drupal/core": "^8.8 || ^9 || ^10"
  6964. },
  6965. "type": "drupal-module",
  6966. "extra": {
  6967. "drupal": {
  6968. "version": "8.x-2.11",
  6969. "datestamp": "1712817716",
  6970. "security-coverage": {
  6971. "status": "covered",
  6972. "message": "Covered by Drupal's security advisory policy"
  6973. }
  6974. }
  6975. },
  6976. "notification-url": "https://packages.drupal.org/8/downloads",
  6977. "license": [
  6978. "GPL-2.0-or-later"
  6979. ],
  6980. "authors": [
  6981. {
  6982. "name": "Contributors",
  6983. "homepage": "https://www.drupal.org/node/2232779/committers",
  6984. "role": "Contributors"
  6985. },
  6986. {
  6987. "name": "shadcn",
  6988. "homepage": "https://www.drupal.org/user/571032"
  6989. },
  6990. {
  6991. "name": "thalles",
  6992. "homepage": "https://www.drupal.org/user/3589086"
  6993. }
  6994. ],
  6995. "description": "Slick carousel, the last carousel you'll ever need.",
  6996. "homepage": "https://drupal.org/project/slick",
  6997. "keywords": [
  6998. "Drupal",
  6999. "carousel",
  7000. "slideshow"
  7001. ],
  7002. "support": {
  7003. "source": "https://git.drupalcode.org/project/slick",
  7004. "issues": "https://drupal.org/project/issues/slick"
  7005. }
  7006. },
  7007. {
  7008. "name": "drupal/smart_trim",
  7009. "version": "2.3.1",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7013. "reference": "2.3.1"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.3.1.zip",
  7018. "reference": "2.3.1",
  7019. "shasum": "2838a00cf9c1af4daa3cbf5088db0e5c2ba68bd7"
  7020. },
  7021. "require": {
  7022. "drupal/core": "^10.1 || ^11",
  7023. "drupal/token": "^1.17",
  7024. "php": ">=8.1"
  7025. },
  7026. "require-dev": {
  7027. "drupal/token_filter": "^2.1 || ^2.2"
  7028. },
  7029. "type": "drupal-module",
  7030. "extra": {
  7031. "drupal": {
  7032. "version": "2.3.1",
  7033. "datestamp": "1768161512",
  7034. "security-coverage": {
  7035. "status": "covered",
  7036. "message": "Covered by Drupal's security advisory policy"
  7037. }
  7038. }
  7039. },
  7040. "notification-url": "https://packages.drupal.org/8/downloads",
  7041. "license": [
  7042. "GPL-2.0-or-later"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Mark Casias (markie)",
  7047. "homepage": "https://www.drupal.org/u/markie",
  7048. "role": "Maintainer"
  7049. },
  7050. {
  7051. "name": "AmyJune Hineline (volkswagenchick)",
  7052. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7053. "role": "Maintainer"
  7054. },
  7055. {
  7056. "name": "Michael Anello (ultimike)",
  7057. "homepage": "https://www.drupal.org/u/ultimike",
  7058. "role": "Maintainer"
  7059. }
  7060. ],
  7061. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7062. "homepage": "https://drupal.org/project/smart_trim",
  7063. "support": {
  7064. "source": "https://git.drupalcode.org/project/smart_trim",
  7065. "issues": "https://drupal.org/project/issues/smart_trim"
  7066. }
  7067. },
  7068. {
  7069. "name": "drupal/smtp",
  7070. "version": "1.4.0",
  7071. "source": {
  7072. "type": "git",
  7073. "url": "https://git.drupalcode.org/project/smtp.git",
  7074. "reference": "8.x-1.4"
  7075. },
  7076. "dist": {
  7077. "type": "zip",
  7078. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7079. "reference": "8.x-1.4",
  7080. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7081. },
  7082. "require": {
  7083. "drupal/core": "^9.5 || ^10 || ^11",
  7084. "phpmailer/phpmailer": "^6.1.7"
  7085. },
  7086. "suggest": {
  7087. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7088. },
  7089. "type": "drupal-module",
  7090. "extra": {
  7091. "drupal": {
  7092. "version": "8.x-1.4",
  7093. "datestamp": "1722032780",
  7094. "security-coverage": {
  7095. "status": "covered",
  7096. "message": "Covered by Drupal's security advisory policy"
  7097. }
  7098. },
  7099. "branch-alias": {
  7100. "dev-8.x-1.x": "1.x-dev"
  7101. }
  7102. },
  7103. "notification-url": "https://packages.drupal.org/8/downloads",
  7104. "license": [
  7105. "GPL-2.0-or-later"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "japerry",
  7110. "homepage": "https://www.drupal.org/user/45640"
  7111. },
  7112. {
  7113. "name": "joseph.olstad",
  7114. "homepage": "https://www.drupal.org/user/1321830"
  7115. },
  7116. {
  7117. "name": "LukeLast",
  7118. "homepage": "https://www.drupal.org/user/30151"
  7119. },
  7120. {
  7121. "name": "oadaeh",
  7122. "homepage": "https://www.drupal.org/user/4649"
  7123. },
  7124. {
  7125. "name": "sadashiv",
  7126. "homepage": "https://www.drupal.org/user/1773304"
  7127. },
  7128. {
  7129. "name": "wundo",
  7130. "homepage": "https://www.drupal.org/user/25523"
  7131. },
  7132. {
  7133. "name": "yettyn",
  7134. "homepage": "https://www.drupal.org/user/93281"
  7135. }
  7136. ],
  7137. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7138. "homepage": "https://www.drupal.org/project/smtp",
  7139. "support": {
  7140. "source": "https://git.drupalcode.org/project/smtp",
  7141. "issues": "https://www.drupal.org/project/issues/smtp"
  7142. }
  7143. },
  7144. {
  7145. "name": "drupal/structure_sync",
  7146. "version": "2.0.8",
  7147. "source": {
  7148. "type": "git",
  7149. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7150. "reference": "2.0.8"
  7151. },
  7152. "dist": {
  7153. "type": "zip",
  7154. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7155. "reference": "2.0.8",
  7156. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7157. },
  7158. "require": {
  7159. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7160. "php": ">=7.1"
  7161. },
  7162. "require-dev": {
  7163. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7164. },
  7165. "type": "drupal-module",
  7166. "extra": {
  7167. "drupal": {
  7168. "version": "2.0.8",
  7169. "datestamp": "1728580642",
  7170. "security-coverage": {
  7171. "status": "covered",
  7172. "message": "Covered by Drupal's security advisory policy"
  7173. }
  7174. },
  7175. "drush": {
  7176. "services": {
  7177. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7178. }
  7179. }
  7180. },
  7181. "notification-url": "https://packages.drupal.org/8/downloads",
  7182. "license": [
  7183. "GPL-2.0-or-later"
  7184. ],
  7185. "authors": [
  7186. {
  7187. "name": "colan",
  7188. "homepage": "https://www.drupal.org/user/58704"
  7189. },
  7190. {
  7191. "name": "fidovdbos",
  7192. "homepage": "https://www.drupal.org/user/1494332"
  7193. },
  7194. {
  7195. "name": "joachim",
  7196. "homepage": "https://www.drupal.org/user/107701"
  7197. },
  7198. {
  7199. "name": "louis-cuny",
  7200. "homepage": "https://www.drupal.org/user/3606332"
  7201. },
  7202. {
  7203. "name": "mparker17",
  7204. "homepage": "https://www.drupal.org/user/536298"
  7205. },
  7206. {
  7207. "name": "spiderman",
  7208. "homepage": "https://www.drupal.org/user/1631"
  7209. },
  7210. {
  7211. "name": "timKruijsen",
  7212. "homepage": "https://www.drupal.org/user/3513437"
  7213. },
  7214. {
  7215. "name": "vinlaurens",
  7216. "homepage": "https://www.drupal.org/user/2945689"
  7217. }
  7218. ],
  7219. "description": "Tool for syncing structural data that is stored as content.",
  7220. "homepage": "https://www.drupal.org/project/structure_sync",
  7221. "support": {
  7222. "source": "https://git.drupalcode.org/project/structure_sync"
  7223. }
  7224. },
  7225. {
  7226. "name": "drupal/synonyms",
  7227. "version": "2.1.4",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://git.drupalcode.org/project/synonyms.git",
  7231. "reference": "2.1.4"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7236. "reference": "2.1.4",
  7237. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7238. },
  7239. "require": {
  7240. "drupal/core": "^9 || ^10 || ^11"
  7241. },
  7242. "require-dev": {
  7243. "drupal/synonyms_list_field": "*"
  7244. },
  7245. "type": "drupal-module",
  7246. "extra": {
  7247. "drupal": {
  7248. "version": "2.1.4",
  7249. "datestamp": "1723069842",
  7250. "security-coverage": {
  7251. "status": "covered",
  7252. "message": "Covered by Drupal's security advisory policy"
  7253. }
  7254. }
  7255. },
  7256. "notification-url": "https://packages.drupal.org/8/downloads",
  7257. "license": [
  7258. "GPL-2.0-or-later"
  7259. ],
  7260. "authors": [
  7261. {
  7262. "name": "Bojan Zivanovic",
  7263. "homepage": "https://www.drupal.org/u/bojanz",
  7264. "role": "Author and D5, D6 and D7 versions developer."
  7265. },
  7266. {
  7267. "name": "Alex Trosenko",
  7268. "homepage": "https://www.drupal.org/u/bucefal91",
  7269. "role": "D7 and D8 versions developer."
  7270. },
  7271. {
  7272. "name": "Duro Arezina",
  7273. "homepage": "https://www.drupal.org/u/devad",
  7274. "role": "D8+ versions maintenance"
  7275. },
  7276. {
  7277. "name": "See other contributors",
  7278. "homepage": "https://www.drupal.org/node/148775/committers"
  7279. }
  7280. ],
  7281. "description": "Provides synonyms feature for all entities.",
  7282. "homepage": "https://www.drupal.org/project/synonyms",
  7283. "support": {
  7284. "source": "https://git.drupalcode.org/project/synonyms",
  7285. "issues": "https://www.drupal.org/project/issues/synonyms"
  7286. }
  7287. },
  7288. {
  7289. "name": "drupal/token",
  7290. "version": "1.17.0",
  7291. "source": {
  7292. "type": "git",
  7293. "url": "https://git.drupalcode.org/project/token.git",
  7294. "reference": "8.x-1.17"
  7295. },
  7296. "dist": {
  7297. "type": "zip",
  7298. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.17.zip",
  7299. "reference": "8.x-1.17",
  7300. "shasum": "21d11adf0be16f1aa95b6348b4ceadbe9a625824"
  7301. },
  7302. "require": {
  7303. "drupal/core": "^10.3 || ^11"
  7304. },
  7305. "require-dev": {
  7306. "drupal/book": "^1 || ^2"
  7307. },
  7308. "type": "drupal-module",
  7309. "extra": {
  7310. "drupal": {
  7311. "version": "8.x-1.17",
  7312. "datestamp": "1767942434",
  7313. "security-coverage": {
  7314. "status": "covered",
  7315. "message": "Covered by Drupal's security advisory policy"
  7316. }
  7317. },
  7318. "drush": {
  7319. "services": {
  7320. "drush.services.yml": ">=9"
  7321. }
  7322. }
  7323. },
  7324. "notification-url": "https://packages.drupal.org/8/downloads",
  7325. "license": [
  7326. "GPL-2.0-or-later"
  7327. ],
  7328. "authors": [
  7329. {
  7330. "name": "berdir",
  7331. "homepage": "https://www.drupal.org/user/214652"
  7332. },
  7333. {
  7334. "name": "dave reid",
  7335. "homepage": "https://www.drupal.org/user/53892"
  7336. },
  7337. {
  7338. "name": "eaton",
  7339. "homepage": "https://www.drupal.org/user/16496"
  7340. },
  7341. {
  7342. "name": "fago",
  7343. "homepage": "https://www.drupal.org/user/16747"
  7344. },
  7345. {
  7346. "name": "greggles",
  7347. "homepage": "https://www.drupal.org/user/36762"
  7348. },
  7349. {
  7350. "name": "mikeryan",
  7351. "homepage": "https://www.drupal.org/user/4420"
  7352. }
  7353. ],
  7354. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7355. "homepage": "https://www.drupal.org/project/token",
  7356. "support": {
  7357. "source": "https://git.drupalcode.org/project/token"
  7358. }
  7359. },
  7360. {
  7361. "name": "drupal/translation_views",
  7362. "version": "1.0.0-alpha11",
  7363. "source": {
  7364. "type": "git",
  7365. "url": "https://git.drupalcode.org/project/translation_views.git",
  7366. "reference": "8.x-1.0-alpha11"
  7367. },
  7368. "dist": {
  7369. "type": "zip",
  7370. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7371. "reference": "8.x-1.0-alpha11",
  7372. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7373. },
  7374. "require": {
  7375. "drupal/core": "^8.8 || ^9 || ^10"
  7376. },
  7377. "require-dev": {
  7378. "drupal/translators_content": "^1.0@alpha"
  7379. },
  7380. "type": "drupal-module",
  7381. "extra": {
  7382. "drupal": {
  7383. "version": "8.x-1.0-alpha11",
  7384. "datestamp": "1679660668",
  7385. "security-coverage": {
  7386. "status": "not-covered",
  7387. "message": "Alpha releases are not covered by Drupal security advisories."
  7388. }
  7389. }
  7390. },
  7391. "notification-url": "https://packages.drupal.org/8/downloads",
  7392. "license": [
  7393. "GPL-2.0-or-later"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "matsbla",
  7398. "homepage": "https://www.drupal.org/user/2325394"
  7399. },
  7400. {
  7401. "name": "vlad.dancer",
  7402. "homepage": "https://www.drupal.org/user/903844"
  7403. }
  7404. ],
  7405. "description": "Create customized lists and queries of translations from your database.",
  7406. "homepage": "https://www.drupal.org/project/translation_views",
  7407. "support": {
  7408. "source": "https://git.drupalcode.org/project/translation_views"
  7409. }
  7410. },
  7411. {
  7412. "name": "drupal/ultimate_cron",
  7413. "version": "2.0.0-beta1",
  7414. "source": {
  7415. "type": "git",
  7416. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7417. "reference": "8.x-2.0-beta1"
  7418. },
  7419. "dist": {
  7420. "type": "zip",
  7421. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7422. "reference": "8.x-2.0-beta1",
  7423. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7424. },
  7425. "require": {
  7426. "drupal/core": "^9.3 || ^10.1 || ^11"
  7427. },
  7428. "type": "drupal-module",
  7429. "extra": {
  7430. "drupal": {
  7431. "version": "8.x-2.0-beta1",
  7432. "datestamp": "1732830342",
  7433. "security-coverage": {
  7434. "status": "not-covered",
  7435. "message": "Beta releases are not covered by Drupal security advisories."
  7436. }
  7437. },
  7438. "drush": {
  7439. "services": {
  7440. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7441. }
  7442. }
  7443. },
  7444. "notification-url": "https://packages.drupal.org/8/downloads",
  7445. "license": [
  7446. "GPL-2.0+"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "arnested",
  7451. "homepage": "https://www.drupal.org/user/245635"
  7452. },
  7453. {
  7454. "name": "berdir",
  7455. "homepage": "https://www.drupal.org/user/214652"
  7456. },
  7457. {
  7458. "name": "gielfeldt",
  7459. "homepage": "https://www.drupal.org/user/366993"
  7460. },
  7461. {
  7462. "name": "miro_dietiker",
  7463. "homepage": "https://www.drupal.org/user/227761"
  7464. },
  7465. {
  7466. "name": "primsi",
  7467. "homepage": "https://www.drupal.org/user/282629"
  7468. }
  7469. ],
  7470. "description": "Ultimate cron",
  7471. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7472. "support": {
  7473. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7474. }
  7475. },
  7476. {
  7477. "name": "drupal/upgrade_status",
  7478. "version": "4.3.9",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7482. "reference": "4.3.9"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.9.zip",
  7487. "reference": "4.3.9",
  7488. "shasum": "bef9e5e08a3b6ecc6a5c380107e624fb4b5f03ef"
  7489. },
  7490. "require": {
  7491. "dekor/php-array-table": "^2.0",
  7492. "drupal/core": "^9 || ^10 || ^11",
  7493. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7494. "nikic/php-parser": "^4.0.0|^5.0.0",
  7495. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7496. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7497. "webflo/drupal-finder": "^1.2"
  7498. },
  7499. "require-dev": {
  7500. "drush/drush": "^11|^12|^13"
  7501. },
  7502. "type": "drupal-module",
  7503. "extra": {
  7504. "drupal": {
  7505. "version": "4.3.9",
  7506. "datestamp": "1771841606",
  7507. "security-coverage": {
  7508. "status": "covered",
  7509. "message": "Covered by Drupal's security advisory policy"
  7510. }
  7511. },
  7512. "drush": {
  7513. "services": {
  7514. "drush.services.yml": "^9 || ^10"
  7515. }
  7516. }
  7517. },
  7518. "notification-url": "https://packages.drupal.org/8/downloads",
  7519. "license": [
  7520. "GPL-2.0-or-later"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "gábor hojtsy",
  7525. "homepage": "https://www.drupal.org/user/4166"
  7526. }
  7527. ],
  7528. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7529. "homepage": "http://drupal.org/project/upgrade_status",
  7530. "support": {
  7531. "source": "https://git.drupalcode.org/project/upgrade_status"
  7532. }
  7533. },
  7534. {
  7535. "name": "drupal/video_embed_dailymotion",
  7536. "version": "2.0.0",
  7537. "source": {
  7538. "type": "git",
  7539. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7540. "reference": "2.0.0"
  7541. },
  7542. "dist": {
  7543. "type": "zip",
  7544. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7545. "reference": "2.0.0",
  7546. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7547. },
  7548. "require": {
  7549. "drupal/core": "^9 || ^10",
  7550. "drupal/video_embed_field": "*"
  7551. },
  7552. "type": "drupal-module",
  7553. "extra": {
  7554. "drupal": {
  7555. "version": "2.0.0",
  7556. "datestamp": "1699434830",
  7557. "security-coverage": {
  7558. "status": "covered",
  7559. "message": "Covered by Drupal's security advisory policy"
  7560. }
  7561. }
  7562. },
  7563. "notification-url": "https://packages.drupal.org/8/downloads",
  7564. "license": [
  7565. "GPL-2.0-or-later"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "flocondetoile",
  7570. "homepage": "https://www.drupal.org/user/2006064"
  7571. },
  7572. {
  7573. "name": "mohs3n71",
  7574. "homepage": "https://www.drupal.org/user/2295854"
  7575. },
  7576. {
  7577. "name": "Sam152",
  7578. "homepage": "https://www.drupal.org/user/1485048"
  7579. }
  7580. ],
  7581. "description": "A video_embed_field integration with Dailymotion.",
  7582. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7583. "support": {
  7584. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7585. }
  7586. },
  7587. {
  7588. "name": "drupal/video_embed_field",
  7589. "version": "2.7.0",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7593. "reference": "8.x-2.7"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.7.zip",
  7598. "reference": "8.x-2.7",
  7599. "shasum": "a978da90614f9df1eab127b40877fd2390cb34ab"
  7600. },
  7601. "require": {
  7602. "drupal/core": "^9.2 || ^10"
  7603. },
  7604. "require-dev": {
  7605. "drupal/ckeditor": "^1",
  7606. "drupal/colorbox": "^2",
  7607. "drupal/video_embed_media": "*"
  7608. },
  7609. "type": "drupal-module",
  7610. "extra": {
  7611. "drupal": {
  7612. "version": "8.x-2.7",
  7613. "datestamp": "1765896945",
  7614. "security-coverage": {
  7615. "status": "covered",
  7616. "message": "Covered by Drupal's security advisory policy"
  7617. }
  7618. }
  7619. },
  7620. "notification-url": "https://packages.drupal.org/8/downloads",
  7621. "license": [
  7622. "GPL-2.0-or-later"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "abhinesh",
  7627. "homepage": "https://www.drupal.org/user/3645979"
  7628. },
  7629. {
  7630. "name": "jec006",
  7631. "homepage": "https://www.drupal.org/user/855980"
  7632. },
  7633. {
  7634. "name": "mably",
  7635. "homepage": "https://www.drupal.org/user/3375160"
  7636. },
  7637. {
  7638. "name": "plopesc",
  7639. "homepage": "https://www.drupal.org/user/282415"
  7640. },
  7641. {
  7642. "name": "sam152",
  7643. "homepage": "https://www.drupal.org/user/1485048"
  7644. }
  7645. ],
  7646. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7647. "homepage": "https://www.drupal.org/project/video_embed_field",
  7648. "support": {
  7649. "source": "https://git.drupalcode.org/project/video_embed_field"
  7650. }
  7651. },
  7652. {
  7653. "name": "drupal/views_bulk_edit",
  7654. "version": "3.0.1",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7658. "reference": "3.0.1"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.1.zip",
  7663. "reference": "3.0.1",
  7664. "shasum": "8105257937e3a39e3814a526fcbe996b4c90fe5d"
  7665. },
  7666. "require": {
  7667. "drupal/core": "^9.4 || ^10 || ^11",
  7668. "php": ">=8.1"
  7669. },
  7670. "require-dev": {
  7671. "drupal/action": "^0.2",
  7672. "drupal/views_bulk_operations": "~4.2.4"
  7673. },
  7674. "suggest": {
  7675. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7676. },
  7677. "type": "drupal-module",
  7678. "extra": {
  7679. "drupal": {
  7680. "version": "3.0.1",
  7681. "datestamp": "1769429619",
  7682. "security-coverage": {
  7683. "status": "covered",
  7684. "message": "Covered by Drupal's security advisory policy"
  7685. }
  7686. }
  7687. },
  7688. "notification-url": "https://packages.drupal.org/8/downloads",
  7689. "license": [
  7690. "GPL-2.0+"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Marcin Grabias",
  7695. "homepage": "https://www.drupal.org/u/graber"
  7696. },
  7697. {
  7698. "name": "benjy",
  7699. "homepage": "https://www.drupal.org/user/1852732"
  7700. },
  7701. {
  7702. "name": "graber",
  7703. "homepage": "https://www.drupal.org/user/1599440"
  7704. },
  7705. {
  7706. "name": "grevil",
  7707. "homepage": "https://www.drupal.org/user/3668491"
  7708. },
  7709. {
  7710. "name": "joseph.olstad",
  7711. "homepage": "https://www.drupal.org/user/1321830"
  7712. }
  7713. ],
  7714. "description": "Allows bulk edition of entity field values.",
  7715. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7716. "support": {
  7717. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7718. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7719. }
  7720. },
  7721. {
  7722. "name": "drupal/views_bulk_operations",
  7723. "version": "4.4.4",
  7724. "source": {
  7725. "type": "git",
  7726. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7727. "reference": "4.4.4"
  7728. },
  7729. "dist": {
  7730. "type": "zip",
  7731. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.4.4.zip",
  7732. "reference": "4.4.4",
  7733. "shasum": "bd8e9c1af14526cd67be91390696b0e0d614ca7e"
  7734. },
  7735. "require": {
  7736. "drupal/core": "^10.3 || ^11"
  7737. },
  7738. "conflict": {
  7739. "drush/drush": "<12.5.1"
  7740. },
  7741. "require-dev": {
  7742. "drupal/coder": "^8.3.16",
  7743. "drush/drush": "^12 || ^13",
  7744. "phpstan/phpstan-deprecation-rules": "^2",
  7745. "phpstan/phpstan-strict-rules": "^2"
  7746. },
  7747. "suggest": {
  7748. "drush/drush": "^12 || ^13"
  7749. },
  7750. "type": "drupal-module",
  7751. "extra": {
  7752. "drupal": {
  7753. "version": "4.4.4",
  7754. "datestamp": "1761317826",
  7755. "security-coverage": {
  7756. "status": "covered",
  7757. "message": "Covered by Drupal's security advisory policy"
  7758. }
  7759. }
  7760. },
  7761. "notification-url": "https://packages.drupal.org/8/downloads",
  7762. "license": [
  7763. "GPL-2.0-or-later"
  7764. ],
  7765. "authors": [
  7766. {
  7767. "name": "Marcin Grabias",
  7768. "homepage": "https://www.drupal.org/u/graber"
  7769. },
  7770. {
  7771. "name": "graber",
  7772. "homepage": "https://www.drupal.org/user/1599440"
  7773. },
  7774. {
  7775. "name": "joelpittet",
  7776. "homepage": "https://www.drupal.org/user/160302"
  7777. }
  7778. ],
  7779. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7780. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7781. "support": {
  7782. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7783. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7784. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7785. }
  7786. },
  7787. {
  7788. "name": "drupal/views_conditional",
  7789. "version": "1.10.0",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7793. "reference": "8.x-1.10"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7798. "reference": "8.x-1.10",
  7799. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7800. },
  7801. "require": {
  7802. "drupal/core": "^9 || ^10 || ^11"
  7803. },
  7804. "type": "drupal-module",
  7805. "extra": {
  7806. "drupal": {
  7807. "version": "8.x-1.10",
  7808. "datestamp": "1727901408",
  7809. "security-coverage": {
  7810. "status": "covered",
  7811. "message": "Covered by Drupal's security advisory policy"
  7812. }
  7813. }
  7814. },
  7815. "notification-url": "https://packages.drupal.org/8/downloads",
  7816. "license": [
  7817. "GPL-2.0-or-later"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "anand.toshniwal93",
  7822. "homepage": "https://www.drupal.org/user/3345088"
  7823. },
  7824. {
  7825. "name": "joelpittet",
  7826. "homepage": "https://www.drupal.org/user/160302"
  7827. },
  7828. {
  7829. "name": "MChittenden",
  7830. "homepage": "https://www.drupal.org/user/2288348"
  7831. },
  7832. {
  7833. "name": "shelane",
  7834. "homepage": "https://www.drupal.org/user/2674989"
  7835. }
  7836. ],
  7837. "description": "Allows conditional views output.",
  7838. "homepage": "https://www.drupal.org/project/views_conditional",
  7839. "support": {
  7840. "source": "https://git.drupalcode.org/project/views_conditional"
  7841. }
  7842. },
  7843. {
  7844. "name": "drupal/views_ef_fieldset",
  7845. "version": "1.10.0",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7849. "reference": "8.x-1.10"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7854. "reference": "8.x-1.10",
  7855. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7856. },
  7857. "require": {
  7858. "drupal/core": "^10 || ^11"
  7859. },
  7860. "type": "drupal-module",
  7861. "extra": {
  7862. "drupal": {
  7863. "version": "8.x-1.10",
  7864. "datestamp": "1731071552",
  7865. "security-coverage": {
  7866. "status": "covered",
  7867. "message": "Covered by Drupal's security advisory policy"
  7868. }
  7869. }
  7870. },
  7871. "notification-url": "https://packages.drupal.org/8/downloads",
  7872. "license": [
  7873. "GPL-2.0-or-later"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "ciss",
  7878. "homepage": "https://www.drupal.org/user/1632364"
  7879. },
  7880. {
  7881. "name": "eli-t",
  7882. "homepage": "https://www.drupal.org/user/516878"
  7883. },
  7884. {
  7885. "name": "pol",
  7886. "homepage": "https://www.drupal.org/user/47194"
  7887. }
  7888. ],
  7889. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  7890. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  7891. "support": {
  7892. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7893. }
  7894. },
  7895. {
  7896. "name": "drupal/webform",
  7897. "version": "6.2.9",
  7898. "source": {
  7899. "type": "git",
  7900. "url": "https://git.drupalcode.org/project/webform.git",
  7901. "reference": "6.2.9"
  7902. },
  7903. "dist": {
  7904. "type": "zip",
  7905. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  7906. "reference": "6.2.9",
  7907. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  7908. },
  7909. "require": {
  7910. "drupal/core": "^10.2",
  7911. "php": ">=8.1"
  7912. },
  7913. "require-dev": {
  7914. "drupal/address": "1.x-dev",
  7915. "drupal/bootstrap": "3.x-dev",
  7916. "drupal/captcha": "^1 || ^2",
  7917. "drupal/chosen": "3.0.x-dev",
  7918. "drupal/ckeditor": "1.0.x-dev",
  7919. "drupal/clientside_validation": "^3 || ^4",
  7920. "drupal/clientside_validation_jquery": "*",
  7921. "drupal/devel": "5.x-dev",
  7922. "drupal/entity": "1.x-dev",
  7923. "drupal/entity_print": "2.x-dev",
  7924. "drupal/group": "1.x-dev",
  7925. "drupal/hal": "1 - 2",
  7926. "drupal/jquery_ui": "1.x-dev",
  7927. "drupal/jquery_ui_button": "2.x-dev",
  7928. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7929. "drupal/jquery_ui_datepicker": "2.x-dev",
  7930. "drupal/mailsystem": "4.x-dev",
  7931. "drupal/metatag": "1.x-dev",
  7932. "drupal/paragraphs": "1.x-dev",
  7933. "drupal/select2": "1.x-dev",
  7934. "drupal/smtp": "1.x-dev",
  7935. "drupal/styleguide": "^1 || ^2",
  7936. "drupal/telephone_validation": "2.x-dev",
  7937. "drupal/token": "1.x-dev",
  7938. "drupal/variationcache": "1.x-dev",
  7939. "drupal/webform_access": "*",
  7940. "drupal/webform_attachment": "*",
  7941. "drupal/webform_clientside_validation": "*",
  7942. "drupal/webform_devel": "*",
  7943. "drupal/webform_entity_print": "*",
  7944. "drupal/webform_node": "*",
  7945. "drupal/webform_options_limit": "*",
  7946. "drupal/webform_scheduled_email": "*",
  7947. "drupal/webform_share": "*",
  7948. "drupal/webform_ui": "*"
  7949. },
  7950. "suggest": {
  7951. "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.",
  7952. "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."
  7953. },
  7954. "type": "drupal-module",
  7955. "extra": {
  7956. "drupal": {
  7957. "version": "6.2.9",
  7958. "datestamp": "1733851063",
  7959. "security-coverage": {
  7960. "status": "covered",
  7961. "message": "Covered by Drupal's security advisory policy"
  7962. }
  7963. },
  7964. "drush": {
  7965. "services": {
  7966. "drush.services.yml": ">=9"
  7967. }
  7968. }
  7969. },
  7970. "notification-url": "https://packages.drupal.org/8/downloads",
  7971. "license": [
  7972. "GPL-2.0-or-later"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "Jacob Rockowitz (jrockowitz)",
  7977. "homepage": "https://www.drupal.org/u/jrockowitz",
  7978. "role": "Maintainer"
  7979. },
  7980. {
  7981. "name": "Contributors",
  7982. "homepage": "https://www.drupal.org/node/7404/committers",
  7983. "role": "Contributor"
  7984. },
  7985. {
  7986. "name": "liam morland",
  7987. "homepage": "https://www.drupal.org/user/493050"
  7988. },
  7989. {
  7990. "name": "mandclu",
  7991. "homepage": "https://www.drupal.org/user/52136"
  7992. },
  7993. {
  7994. "name": "quicksketch",
  7995. "homepage": "https://www.drupal.org/user/35821"
  7996. }
  7997. ],
  7998. "description": "Enables the creation of webforms and questionnaires.",
  7999. "homepage": "https://drupal.org/project/webform",
  8000. "support": {
  8001. "source": "https://git.drupalcode.org/project/webform",
  8002. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8003. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8004. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8005. }
  8006. },
  8007. {
  8008. "name": "drush/drush",
  8009. "version": "13.7.1",
  8010. "source": {
  8011. "type": "git",
  8012. "url": "https://github.com/drush-ops/drush.git",
  8013. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc"
  8014. },
  8015. "dist": {
  8016. "type": "zip",
  8017. "url": "https://api.github.com/repos/drush-ops/drush/zipball/4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8018. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8019. "shasum": ""
  8020. },
  8021. "require": {
  8022. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  8023. "composer-runtime-api": "^2.2",
  8024. "composer/semver": "^1.4 || ^3",
  8025. "consolidation/annotated-command": "^4.10.2",
  8026. "consolidation/config": "^2.1.2 || ^3.1.1",
  8027. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8028. "consolidation/output-formatters": "^4.6.1",
  8029. "consolidation/robo": "^4.0.6 || ^5.1.0",
  8030. "consolidation/site-alias": "^4.1.1",
  8031. "consolidation/site-process": "^5.4.2",
  8032. "dflydev/dot-access-data": "^3.0.2",
  8033. "ext-dom": "*",
  8034. "grasmash/yaml-cli": "^3.2",
  8035. "guzzlehttp/guzzle": "^7.0",
  8036. "laravel/prompts": "^0.3.5",
  8037. "league/container": "^4.2",
  8038. "php": ">=8.3",
  8039. "psy/psysh": "~0.12",
  8040. "symfony/event-dispatcher": "^6 || ^7",
  8041. "symfony/filesystem": "^6.1 || ^7",
  8042. "symfony/finder": "^6 || ^7",
  8043. "symfony/var-dumper": "^6.0 || ^7",
  8044. "symfony/yaml": "^6.0 || ^7"
  8045. },
  8046. "conflict": {
  8047. "drupal/core": "< 10.4",
  8048. "drupal/migrate_run": "*",
  8049. "drupal/migrate_tools": "<= 5"
  8050. },
  8051. "require-dev": {
  8052. "composer/installers": "^2",
  8053. "cweagans/composer-patches": "~1.7.3",
  8054. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  8055. "drupal/semver_example": "2.3.0",
  8056. "jetbrains/phpstorm-attributes": "^1.0",
  8057. "mglaman/phpstan-drupal": "^2",
  8058. "phpunit/phpunit": "^9 || ^10 || ^11",
  8059. "rector/rector": "^2",
  8060. "squizlabs/php_codesniffer": "^3.7"
  8061. },
  8062. "bin": [
  8063. "drush",
  8064. "drush.php"
  8065. ],
  8066. "type": "library",
  8067. "extra": {
  8068. "patches-file": "composer.patches.json",
  8069. "installer-paths": {
  8070. "sut/core": [
  8071. "type:drupal-core"
  8072. ],
  8073. "sut/libraries/{$name}": [
  8074. "type:drupal-library"
  8075. ],
  8076. "sut/themes/unish/{$name}": [
  8077. "drupal/empty_theme"
  8078. ],
  8079. "sut/drush/contrib/{$name}": [
  8080. "type:drupal-drush"
  8081. ],
  8082. "sut/modules/unish/{$name}": [
  8083. "drupal/devel"
  8084. ],
  8085. "sut/themes/contrib/{$name}": [
  8086. "type:drupal-theme"
  8087. ],
  8088. "sut/modules/contrib/{$name}": [
  8089. "type:drupal-module"
  8090. ],
  8091. "sut/profiles/contrib/{$name}": [
  8092. "type:drupal-profile"
  8093. ]
  8094. }
  8095. },
  8096. "autoload": {
  8097. "psr-4": {
  8098. "Drush\\": "src/"
  8099. }
  8100. },
  8101. "notification-url": "https://packagist.org/downloads/",
  8102. "license": [
  8103. "GPL-2.0-or-later"
  8104. ],
  8105. "authors": [
  8106. {
  8107. "name": "Moshe Weitzman",
  8108. "email": "weitzman@tejasa.com"
  8109. },
  8110. {
  8111. "name": "Owen Barton",
  8112. "email": "drupal@owenbarton.com"
  8113. },
  8114. {
  8115. "name": "Greg Anderson",
  8116. "email": "greg.1.anderson@greenknowe.org"
  8117. },
  8118. {
  8119. "name": "Jonathan Araña Cruz",
  8120. "email": "jonhattan@faita.net"
  8121. },
  8122. {
  8123. "name": "Jonathan Hedstrom",
  8124. "email": "jhedstrom@gmail.com"
  8125. },
  8126. {
  8127. "name": "Christopher Gervais",
  8128. "email": "chris@ergonlogic.com"
  8129. },
  8130. {
  8131. "name": "Dave Reid",
  8132. "email": "dave@davereid.net"
  8133. },
  8134. {
  8135. "name": "Damian Lee",
  8136. "email": "damiankloip@googlemail.com"
  8137. }
  8138. ],
  8139. "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.",
  8140. "homepage": "http://www.drush.org",
  8141. "support": {
  8142. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8143. "issues": "https://github.com/drush-ops/drush/issues",
  8144. "security": "https://github.com/drush-ops/drush/security/advisories",
  8145. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8146. "source": "https://github.com/drush-ops/drush/tree/13.7.1"
  8147. },
  8148. "funding": [
  8149. {
  8150. "url": "https://github.com/weitzman",
  8151. "type": "github"
  8152. }
  8153. ],
  8154. "time": "2026-01-28T22:21:17+00:00"
  8155. },
  8156. {
  8157. "name": "egulias/email-validator",
  8158. "version": "4.0.4",
  8159. "source": {
  8160. "type": "git",
  8161. "url": "https://github.com/egulias/EmailValidator.git",
  8162. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8163. },
  8164. "dist": {
  8165. "type": "zip",
  8166. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8167. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8168. "shasum": ""
  8169. },
  8170. "require": {
  8171. "doctrine/lexer": "^2.0 || ^3.0",
  8172. "php": ">=8.1",
  8173. "symfony/polyfill-intl-idn": "^1.26"
  8174. },
  8175. "require-dev": {
  8176. "phpunit/phpunit": "^10.2",
  8177. "vimeo/psalm": "^5.12"
  8178. },
  8179. "suggest": {
  8180. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8181. },
  8182. "type": "library",
  8183. "extra": {
  8184. "branch-alias": {
  8185. "dev-master": "4.0.x-dev"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "psr-4": {
  8190. "Egulias\\EmailValidator\\": "src"
  8191. }
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "MIT"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Eduardo Gulias Davis"
  8200. }
  8201. ],
  8202. "description": "A library for validating emails against several RFCs",
  8203. "homepage": "https://github.com/egulias/EmailValidator",
  8204. "keywords": [
  8205. "email",
  8206. "emailvalidation",
  8207. "emailvalidator",
  8208. "validation",
  8209. "validator"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/egulias/EmailValidator/issues",
  8213. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://github.com/egulias",
  8218. "type": "github"
  8219. }
  8220. ],
  8221. "time": "2025-03-06T22:45:56+00:00"
  8222. },
  8223. {
  8224. "name": "geocoder-php/common-http",
  8225. "version": "4.7.0",
  8226. "source": {
  8227. "type": "git",
  8228. "url": "https://github.com/geocoder-php/php-common-http.git",
  8229. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8230. },
  8231. "dist": {
  8232. "type": "zip",
  8233. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8234. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8235. "shasum": ""
  8236. },
  8237. "require": {
  8238. "php": "^8.0",
  8239. "php-http/discovery": "^1.17",
  8240. "psr/http-client-implementation": "^1.0",
  8241. "psr/http-factory-implementation": "^1.0",
  8242. "willdurand/geocoder": "^4.0|^5.0"
  8243. },
  8244. "require-dev": {
  8245. "nyholm/psr7": "^1.0",
  8246. "php-http/message": "^1.0",
  8247. "php-http/mock-client": "^1.0",
  8248. "phpunit/phpunit": "^9.5",
  8249. "symfony/stopwatch": "~2.5 || ~5.0"
  8250. },
  8251. "type": "library",
  8252. "extra": {
  8253. "branch-alias": {
  8254. "dev-master": "4.0-dev"
  8255. }
  8256. },
  8257. "autoload": {
  8258. "psr-4": {
  8259. "Geocoder\\Http\\": ""
  8260. },
  8261. "exclude-from-classmap": [
  8262. "/Tests/"
  8263. ]
  8264. },
  8265. "notification-url": "https://packagist.org/downloads/",
  8266. "license": [
  8267. "MIT"
  8268. ],
  8269. "authors": [
  8270. {
  8271. "name": "Tobias Nyholm",
  8272. "email": "tobias.nyholm@gmail.com"
  8273. }
  8274. ],
  8275. "description": "Common files for HTTP based Geocoders",
  8276. "homepage": "http://geocoder-php.org",
  8277. "keywords": [
  8278. "http geocoder"
  8279. ],
  8280. "support": {
  8281. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8282. },
  8283. "time": "2025-04-15T12:38:11+00:00"
  8284. },
  8285. {
  8286. "name": "geocoder-php/mapquest-provider",
  8287. "version": "4.4.0",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8291. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8296. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8297. "shasum": ""
  8298. },
  8299. "require": {
  8300. "geocoder-php/common-http": "^4.6",
  8301. "php": "^8.0",
  8302. "willdurand/geocoder": "^4.0|^5.0"
  8303. },
  8304. "provide": {
  8305. "geocoder-php/provider-implementation": "1.0"
  8306. },
  8307. "require-dev": {
  8308. "geocoder-php/provider-integration-tests": "^1.6.3",
  8309. "php-http/message": "^1.0",
  8310. "phpunit/phpunit": "^9.5"
  8311. },
  8312. "type": "library",
  8313. "extra": {
  8314. "branch-alias": {
  8315. "dev-master": "4.0-dev"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "psr-4": {
  8320. "Geocoder\\Provider\\MapQuest\\": ""
  8321. },
  8322. "exclude-from-classmap": [
  8323. "/Tests/"
  8324. ]
  8325. },
  8326. "notification-url": "https://packagist.org/downloads/",
  8327. "license": [
  8328. "MIT"
  8329. ],
  8330. "authors": [
  8331. {
  8332. "name": "William Durand",
  8333. "email": "william.durand1@gmail.com"
  8334. }
  8335. ],
  8336. "description": "Geocoder MapQuest adapter",
  8337. "homepage": "http://geocoder-php.org/Geocoder/",
  8338. "support": {
  8339. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8340. },
  8341. "time": "2025-04-15T13:24:32+00:00"
  8342. },
  8343. {
  8344. "name": "grasmash/expander",
  8345. "version": "3.0.1",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/grasmash/expander.git",
  8349. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8354. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8355. "shasum": ""
  8356. },
  8357. "require": {
  8358. "dflydev/dot-access-data": "^3.0.0",
  8359. "php": ">=8.0",
  8360. "psr/log": "^2 | ^3"
  8361. },
  8362. "require-dev": {
  8363. "greg-1-anderson/composer-test-scenarios": "^1",
  8364. "php-coveralls/php-coveralls": "^2.5",
  8365. "phpunit/phpunit": "^9",
  8366. "squizlabs/php_codesniffer": "^3.3"
  8367. },
  8368. "type": "library",
  8369. "extra": {
  8370. "branch-alias": {
  8371. "dev-master": "1.x-dev"
  8372. }
  8373. },
  8374. "autoload": {
  8375. "psr-4": {
  8376. "Grasmash\\Expander\\": "src/"
  8377. }
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "MIT"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Matthew Grasmick"
  8386. }
  8387. ],
  8388. "description": "Expands internal property references in PHP arrays file.",
  8389. "support": {
  8390. "issues": "https://github.com/grasmash/expander/issues",
  8391. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8392. },
  8393. "time": "2024-11-25T23:28:05+00:00"
  8394. },
  8395. {
  8396. "name": "grasmash/yaml-cli",
  8397. "version": "3.2.1",
  8398. "source": {
  8399. "type": "git",
  8400. "url": "https://github.com/grasmash/yaml-cli.git",
  8401. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8402. },
  8403. "dist": {
  8404. "type": "zip",
  8405. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8406. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8407. "shasum": ""
  8408. },
  8409. "require": {
  8410. "dflydev/dot-access-data": "^3",
  8411. "php": ">=8.0",
  8412. "symfony/console": "^6 || ^7",
  8413. "symfony/filesystem": "^6 || ^7",
  8414. "symfony/yaml": "^6 || ^7"
  8415. },
  8416. "require-dev": {
  8417. "php-coveralls/php-coveralls": "^2",
  8418. "phpunit/phpunit": "^9",
  8419. "squizlabs/php_codesniffer": "^3.0"
  8420. },
  8421. "bin": [
  8422. "bin/yaml-cli"
  8423. ],
  8424. "type": "library",
  8425. "extra": {
  8426. "branch-alias": {
  8427. "dev-master": "3.x-dev"
  8428. }
  8429. },
  8430. "autoload": {
  8431. "psr-4": {
  8432. "Grasmash\\YamlCli\\": "src/"
  8433. }
  8434. },
  8435. "notification-url": "https://packagist.org/downloads/",
  8436. "license": [
  8437. "MIT"
  8438. ],
  8439. "authors": [
  8440. {
  8441. "name": "Matthew Grasmick"
  8442. }
  8443. ],
  8444. "description": "A command line tool for reading and manipulating yaml files.",
  8445. "support": {
  8446. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8447. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8448. },
  8449. "time": "2024-04-23T02:10:57+00:00"
  8450. },
  8451. {
  8452. "name": "guzzlehttp/guzzle",
  8453. "version": "7.10.0",
  8454. "source": {
  8455. "type": "git",
  8456. "url": "https://github.com/guzzle/guzzle.git",
  8457. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  8458. },
  8459. "dist": {
  8460. "type": "zip",
  8461. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8462. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8463. "shasum": ""
  8464. },
  8465. "require": {
  8466. "ext-json": "*",
  8467. "guzzlehttp/promises": "^2.3",
  8468. "guzzlehttp/psr7": "^2.8",
  8469. "php": "^7.2.5 || ^8.0",
  8470. "psr/http-client": "^1.0",
  8471. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8472. },
  8473. "provide": {
  8474. "psr/http-client-implementation": "1.0"
  8475. },
  8476. "require-dev": {
  8477. "bamarni/composer-bin-plugin": "^1.8.2",
  8478. "ext-curl": "*",
  8479. "guzzle/client-integration-tests": "3.0.2",
  8480. "php-http/message-factory": "^1.1",
  8481. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8482. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8483. },
  8484. "suggest": {
  8485. "ext-curl": "Required for CURL handler support",
  8486. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8487. "psr/log": "Required for using the Log middleware"
  8488. },
  8489. "type": "library",
  8490. "extra": {
  8491. "bamarni-bin": {
  8492. "bin-links": true,
  8493. "forward-command": false
  8494. }
  8495. },
  8496. "autoload": {
  8497. "files": [
  8498. "src/functions_include.php"
  8499. ],
  8500. "psr-4": {
  8501. "GuzzleHttp\\": "src/"
  8502. }
  8503. },
  8504. "notification-url": "https://packagist.org/downloads/",
  8505. "license": [
  8506. "MIT"
  8507. ],
  8508. "authors": [
  8509. {
  8510. "name": "Graham Campbell",
  8511. "email": "hello@gjcampbell.co.uk",
  8512. "homepage": "https://github.com/GrahamCampbell"
  8513. },
  8514. {
  8515. "name": "Michael Dowling",
  8516. "email": "mtdowling@gmail.com",
  8517. "homepage": "https://github.com/mtdowling"
  8518. },
  8519. {
  8520. "name": "Jeremy Lindblom",
  8521. "email": "jeremeamia@gmail.com",
  8522. "homepage": "https://github.com/jeremeamia"
  8523. },
  8524. {
  8525. "name": "George Mponos",
  8526. "email": "gmponos@gmail.com",
  8527. "homepage": "https://github.com/gmponos"
  8528. },
  8529. {
  8530. "name": "Tobias Nyholm",
  8531. "email": "tobias.nyholm@gmail.com",
  8532. "homepage": "https://github.com/Nyholm"
  8533. },
  8534. {
  8535. "name": "Márk Sági-Kazár",
  8536. "email": "mark.sagikazar@gmail.com",
  8537. "homepage": "https://github.com/sagikazarmark"
  8538. },
  8539. {
  8540. "name": "Tobias Schultze",
  8541. "email": "webmaster@tubo-world.de",
  8542. "homepage": "https://github.com/Tobion"
  8543. }
  8544. ],
  8545. "description": "Guzzle is a PHP HTTP client library",
  8546. "keywords": [
  8547. "client",
  8548. "curl",
  8549. "framework",
  8550. "http",
  8551. "http client",
  8552. "psr-18",
  8553. "psr-7",
  8554. "rest",
  8555. "web service"
  8556. ],
  8557. "support": {
  8558. "issues": "https://github.com/guzzle/guzzle/issues",
  8559. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  8560. },
  8561. "funding": [
  8562. {
  8563. "url": "https://github.com/GrahamCampbell",
  8564. "type": "github"
  8565. },
  8566. {
  8567. "url": "https://github.com/Nyholm",
  8568. "type": "github"
  8569. },
  8570. {
  8571. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8572. "type": "tidelift"
  8573. }
  8574. ],
  8575. "time": "2025-08-23T22:36:01+00:00"
  8576. },
  8577. {
  8578. "name": "guzzlehttp/promises",
  8579. "version": "2.3.0",
  8580. "source": {
  8581. "type": "git",
  8582. "url": "https://github.com/guzzle/promises.git",
  8583. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  8584. },
  8585. "dist": {
  8586. "type": "zip",
  8587. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  8588. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  8589. "shasum": ""
  8590. },
  8591. "require": {
  8592. "php": "^7.2.5 || ^8.0"
  8593. },
  8594. "require-dev": {
  8595. "bamarni/composer-bin-plugin": "^1.8.2",
  8596. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "bamarni-bin": {
  8601. "bin-links": true,
  8602. "forward-command": false
  8603. }
  8604. },
  8605. "autoload": {
  8606. "psr-4": {
  8607. "GuzzleHttp\\Promise\\": "src/"
  8608. }
  8609. },
  8610. "notification-url": "https://packagist.org/downloads/",
  8611. "license": [
  8612. "MIT"
  8613. ],
  8614. "authors": [
  8615. {
  8616. "name": "Graham Campbell",
  8617. "email": "hello@gjcampbell.co.uk",
  8618. "homepage": "https://github.com/GrahamCampbell"
  8619. },
  8620. {
  8621. "name": "Michael Dowling",
  8622. "email": "mtdowling@gmail.com",
  8623. "homepage": "https://github.com/mtdowling"
  8624. },
  8625. {
  8626. "name": "Tobias Nyholm",
  8627. "email": "tobias.nyholm@gmail.com",
  8628. "homepage": "https://github.com/Nyholm"
  8629. },
  8630. {
  8631. "name": "Tobias Schultze",
  8632. "email": "webmaster@tubo-world.de",
  8633. "homepage": "https://github.com/Tobion"
  8634. }
  8635. ],
  8636. "description": "Guzzle promises library",
  8637. "keywords": [
  8638. "promise"
  8639. ],
  8640. "support": {
  8641. "issues": "https://github.com/guzzle/promises/issues",
  8642. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  8643. },
  8644. "funding": [
  8645. {
  8646. "url": "https://github.com/GrahamCampbell",
  8647. "type": "github"
  8648. },
  8649. {
  8650. "url": "https://github.com/Nyholm",
  8651. "type": "github"
  8652. },
  8653. {
  8654. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8655. "type": "tidelift"
  8656. }
  8657. ],
  8658. "time": "2025-08-22T14:34:08+00:00"
  8659. },
  8660. {
  8661. "name": "guzzlehttp/psr7",
  8662. "version": "2.8.1",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/guzzle/psr7.git",
  8666. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9",
  8671. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "php": "^7.2.5 || ^8.0",
  8676. "psr/http-factory": "^1.0",
  8677. "psr/http-message": "^1.1 || ^2.0",
  8678. "ralouphie/getallheaders": "^3.0"
  8679. },
  8680. "provide": {
  8681. "psr/http-factory-implementation": "1.0",
  8682. "psr/http-message-implementation": "1.0"
  8683. },
  8684. "require-dev": {
  8685. "bamarni/composer-bin-plugin": "^1.8.2",
  8686. "http-interop/http-factory-tests": "0.9.0",
  8687. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8688. },
  8689. "suggest": {
  8690. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "bamarni-bin": {
  8695. "bin-links": true,
  8696. "forward-command": false
  8697. }
  8698. },
  8699. "autoload": {
  8700. "psr-4": {
  8701. "GuzzleHttp\\Psr7\\": "src/"
  8702. }
  8703. },
  8704. "notification-url": "https://packagist.org/downloads/",
  8705. "license": [
  8706. "MIT"
  8707. ],
  8708. "authors": [
  8709. {
  8710. "name": "Graham Campbell",
  8711. "email": "hello@gjcampbell.co.uk",
  8712. "homepage": "https://github.com/GrahamCampbell"
  8713. },
  8714. {
  8715. "name": "Michael Dowling",
  8716. "email": "mtdowling@gmail.com",
  8717. "homepage": "https://github.com/mtdowling"
  8718. },
  8719. {
  8720. "name": "George Mponos",
  8721. "email": "gmponos@gmail.com",
  8722. "homepage": "https://github.com/gmponos"
  8723. },
  8724. {
  8725. "name": "Tobias Nyholm",
  8726. "email": "tobias.nyholm@gmail.com",
  8727. "homepage": "https://github.com/Nyholm"
  8728. },
  8729. {
  8730. "name": "Márk Sági-Kazár",
  8731. "email": "mark.sagikazar@gmail.com",
  8732. "homepage": "https://github.com/sagikazarmark"
  8733. },
  8734. {
  8735. "name": "Tobias Schultze",
  8736. "email": "webmaster@tubo-world.de",
  8737. "homepage": "https://github.com/Tobion"
  8738. },
  8739. {
  8740. "name": "Márk Sági-Kazár",
  8741. "email": "mark.sagikazar@gmail.com",
  8742. "homepage": "https://sagikazarmark.hu"
  8743. }
  8744. ],
  8745. "description": "PSR-7 message implementation that also provides common utility methods",
  8746. "keywords": [
  8747. "http",
  8748. "message",
  8749. "psr-7",
  8750. "request",
  8751. "response",
  8752. "stream",
  8753. "uri",
  8754. "url"
  8755. ],
  8756. "support": {
  8757. "issues": "https://github.com/guzzle/psr7/issues",
  8758. "source": "https://github.com/guzzle/psr7/tree/2.8.1"
  8759. },
  8760. "funding": [
  8761. {
  8762. "url": "https://github.com/GrahamCampbell",
  8763. "type": "github"
  8764. },
  8765. {
  8766. "url": "https://github.com/Nyholm",
  8767. "type": "github"
  8768. },
  8769. {
  8770. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8771. "type": "tidelift"
  8772. }
  8773. ],
  8774. "time": "2026-03-10T09:55:26+00:00"
  8775. },
  8776. {
  8777. "name": "itamair/geophp",
  8778. "version": "1.10",
  8779. "source": {
  8780. "type": "git",
  8781. "url": "https://github.com/itamair/geoPHP.git",
  8782. "reference": "7403410f7252e4d0ce128a705ba8b40613195e16"
  8783. },
  8784. "dist": {
  8785. "type": "zip",
  8786. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/7403410f7252e4d0ce128a705ba8b40613195e16",
  8787. "reference": "7403410f7252e4d0ce128a705ba8b40613195e16",
  8788. "shasum": ""
  8789. },
  8790. "require-dev": {
  8791. "phpunit/phpunit": "4.1.* || 9.5.*"
  8792. },
  8793. "type": "library",
  8794. "autoload": {
  8795. "classmap": [
  8796. "geoPHP.inc"
  8797. ]
  8798. },
  8799. "notification-url": "https://packagist.org/downloads/",
  8800. "license": [
  8801. "GPL-2.0+"
  8802. ],
  8803. "authors": [
  8804. {
  8805. "name": "Italo Mairo",
  8806. "homepage": "https://www.linkedin.com/in/italomairo/",
  8807. "role": "Maintanier of this Library Repo"
  8808. },
  8809. {
  8810. "name": "Patrick Hayes",
  8811. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8812. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8813. }
  8814. ],
  8815. "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.",
  8816. "homepage": "https://github.com/itamair/geoPHP",
  8817. "support": {
  8818. "issues": "https://github.com/itamair/geoPHP/issues",
  8819. "source": "https://github.com/itamair/geoPHP/tree/1.10"
  8820. },
  8821. "time": "2026-03-09T17:22:59+00:00"
  8822. },
  8823. {
  8824. "name": "kint-php/kint",
  8825. "version": "3.3",
  8826. "source": {
  8827. "type": "git",
  8828. "url": "https://github.com/kint-php/kint.git",
  8829. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8830. },
  8831. "dist": {
  8832. "type": "zip",
  8833. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8834. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8835. "shasum": ""
  8836. },
  8837. "require": {
  8838. "php": ">=5.3.6"
  8839. },
  8840. "require-dev": {
  8841. "friendsofphp/php-cs-fixer": "^2.0",
  8842. "phpunit/phpunit": "^4.0",
  8843. "seld/phar-utils": "^1.0",
  8844. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8845. "vimeo/psalm": "^3.0"
  8846. },
  8847. "suggest": {
  8848. "ext-ctype": "Simple data type tests",
  8849. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8850. "ext-mbstring": "Provides string encoding detection",
  8851. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8852. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8853. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8854. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8855. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8856. },
  8857. "type": "library",
  8858. "autoload": {
  8859. "files": [
  8860. "init.php"
  8861. ],
  8862. "psr-4": {
  8863. "Kint\\": "src/"
  8864. }
  8865. },
  8866. "notification-url": "https://packagist.org/downloads/",
  8867. "license": [
  8868. "MIT"
  8869. ],
  8870. "authors": [
  8871. {
  8872. "name": "Jonathan Vollebregt",
  8873. "homepage": "https://github.com/jnvsor"
  8874. },
  8875. {
  8876. "name": "Rokas Šleinius",
  8877. "homepage": "https://github.com/raveren"
  8878. },
  8879. {
  8880. "name": "Contributors",
  8881. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8882. }
  8883. ],
  8884. "description": "Kint - debugging tool for PHP developers",
  8885. "homepage": "https://kint-php.github.io/kint/",
  8886. "keywords": [
  8887. "debug",
  8888. "kint",
  8889. "php"
  8890. ],
  8891. "support": {
  8892. "issues": "https://github.com/kint-php/kint/issues",
  8893. "source": "https://github.com/kint-php/kint/tree/master"
  8894. },
  8895. "time": "2019-10-17T18:05:24+00:00"
  8896. },
  8897. {
  8898. "name": "laravel/prompts",
  8899. "version": "v0.3.13",
  8900. "source": {
  8901. "type": "git",
  8902. "url": "https://github.com/laravel/prompts.git",
  8903. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d"
  8904. },
  8905. "dist": {
  8906. "type": "zip",
  8907. "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d",
  8908. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d",
  8909. "shasum": ""
  8910. },
  8911. "require": {
  8912. "composer-runtime-api": "^2.2",
  8913. "ext-mbstring": "*",
  8914. "php": "^8.1",
  8915. "symfony/console": "^6.2|^7.0|^8.0"
  8916. },
  8917. "conflict": {
  8918. "illuminate/console": ">=10.17.0 <10.25.0",
  8919. "laravel/framework": ">=10.17.0 <10.25.0"
  8920. },
  8921. "require-dev": {
  8922. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  8923. "mockery/mockery": "^1.5",
  8924. "pestphp/pest": "^2.3|^3.4|^4.0",
  8925. "phpstan/phpstan": "^1.12.28",
  8926. "phpstan/phpstan-mockery": "^1.1.3"
  8927. },
  8928. "suggest": {
  8929. "ext-pcntl": "Required for the spinner to be animated."
  8930. },
  8931. "type": "library",
  8932. "extra": {
  8933. "branch-alias": {
  8934. "dev-main": "0.3.x-dev"
  8935. }
  8936. },
  8937. "autoload": {
  8938. "files": [
  8939. "src/helpers.php"
  8940. ],
  8941. "psr-4": {
  8942. "Laravel\\Prompts\\": "src/"
  8943. }
  8944. },
  8945. "notification-url": "https://packagist.org/downloads/",
  8946. "license": [
  8947. "MIT"
  8948. ],
  8949. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  8950. "support": {
  8951. "issues": "https://github.com/laravel/prompts/issues",
  8952. "source": "https://github.com/laravel/prompts/tree/v0.3.13"
  8953. },
  8954. "time": "2026-02-06T12:17:10+00:00"
  8955. },
  8956. {
  8957. "name": "league/container",
  8958. "version": "4.2.5",
  8959. "source": {
  8960. "type": "git",
  8961. "url": "https://github.com/thephpleague/container.git",
  8962. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  8963. },
  8964. "dist": {
  8965. "type": "zip",
  8966. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8967. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8968. "shasum": ""
  8969. },
  8970. "require": {
  8971. "php": "^7.2 || ^8.0",
  8972. "psr/container": "^1.1 || ^2.0"
  8973. },
  8974. "provide": {
  8975. "psr/container-implementation": "^1.0"
  8976. },
  8977. "replace": {
  8978. "orno/di": "~2.0"
  8979. },
  8980. "require-dev": {
  8981. "nette/php-generator": "^3.4",
  8982. "nikic/php-parser": "^4.10",
  8983. "phpstan/phpstan": "^0.12.47",
  8984. "phpunit/phpunit": "^8.5.17",
  8985. "roave/security-advisories": "dev-latest",
  8986. "scrutinizer/ocular": "^1.8",
  8987. "squizlabs/php_codesniffer": "^3.6"
  8988. },
  8989. "type": "library",
  8990. "extra": {
  8991. "branch-alias": {
  8992. "dev-1.x": "1.x-dev",
  8993. "dev-2.x": "2.x-dev",
  8994. "dev-3.x": "3.x-dev",
  8995. "dev-4.x": "4.x-dev",
  8996. "dev-master": "4.x-dev"
  8997. }
  8998. },
  8999. "autoload": {
  9000. "psr-4": {
  9001. "League\\Container\\": "src"
  9002. }
  9003. },
  9004. "notification-url": "https://packagist.org/downloads/",
  9005. "license": [
  9006. "MIT"
  9007. ],
  9008. "authors": [
  9009. {
  9010. "name": "Phil Bennett",
  9011. "email": "mail@philbennett.co.uk",
  9012. "role": "Developer"
  9013. }
  9014. ],
  9015. "description": "A fast and intuitive dependency injection container.",
  9016. "homepage": "https://github.com/thephpleague/container",
  9017. "keywords": [
  9018. "container",
  9019. "dependency",
  9020. "di",
  9021. "injection",
  9022. "league",
  9023. "provider",
  9024. "service"
  9025. ],
  9026. "support": {
  9027. "issues": "https://github.com/thephpleague/container/issues",
  9028. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9029. },
  9030. "funding": [
  9031. {
  9032. "url": "https://github.com/philipobenito",
  9033. "type": "github"
  9034. }
  9035. ],
  9036. "time": "2025-05-20T12:55:37+00:00"
  9037. },
  9038. {
  9039. "name": "masterminds/html5",
  9040. "version": "2.10.0",
  9041. "source": {
  9042. "type": "git",
  9043. "url": "https://github.com/Masterminds/html5-php.git",
  9044. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  9045. },
  9046. "dist": {
  9047. "type": "zip",
  9048. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  9049. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  9050. "shasum": ""
  9051. },
  9052. "require": {
  9053. "ext-dom": "*",
  9054. "php": ">=5.3.0"
  9055. },
  9056. "require-dev": {
  9057. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9058. },
  9059. "type": "library",
  9060. "extra": {
  9061. "branch-alias": {
  9062. "dev-master": "2.7-dev"
  9063. }
  9064. },
  9065. "autoload": {
  9066. "psr-4": {
  9067. "Masterminds\\": "src"
  9068. }
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "MIT"
  9073. ],
  9074. "authors": [
  9075. {
  9076. "name": "Matt Butcher",
  9077. "email": "technosophos@gmail.com"
  9078. },
  9079. {
  9080. "name": "Matt Farina",
  9081. "email": "matt@mattfarina.com"
  9082. },
  9083. {
  9084. "name": "Asmir Mustafic",
  9085. "email": "goetas@gmail.com"
  9086. }
  9087. ],
  9088. "description": "An HTML5 parser and serializer.",
  9089. "homepage": "http://masterminds.github.io/html5-php",
  9090. "keywords": [
  9091. "HTML5",
  9092. "dom",
  9093. "html",
  9094. "parser",
  9095. "querypath",
  9096. "serializer",
  9097. "xml"
  9098. ],
  9099. "support": {
  9100. "issues": "https://github.com/Masterminds/html5-php/issues",
  9101. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  9102. },
  9103. "time": "2025-07-25T09:04:22+00:00"
  9104. },
  9105. {
  9106. "name": "mck89/peast",
  9107. "version": "v1.17.4",
  9108. "source": {
  9109. "type": "git",
  9110. "url": "https://github.com/mck89/peast.git",
  9111. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d"
  9112. },
  9113. "dist": {
  9114. "type": "zip",
  9115. "url": "https://api.github.com/repos/mck89/peast/zipball/c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9116. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9117. "shasum": ""
  9118. },
  9119. "require": {
  9120. "ext-mbstring": "*",
  9121. "php": ">=5.4.0"
  9122. },
  9123. "require-dev": {
  9124. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9125. },
  9126. "type": "library",
  9127. "extra": {
  9128. "branch-alias": {
  9129. "dev-master": "1.17.4-dev"
  9130. }
  9131. },
  9132. "autoload": {
  9133. "psr-4": {
  9134. "Peast\\": "lib/Peast/"
  9135. }
  9136. },
  9137. "notification-url": "https://packagist.org/downloads/",
  9138. "license": [
  9139. "BSD-3-Clause"
  9140. ],
  9141. "authors": [
  9142. {
  9143. "name": "Marco Marchiò",
  9144. "email": "marco.mm89@gmail.com"
  9145. }
  9146. ],
  9147. "description": "Peast is PHP library that generates AST for JavaScript code",
  9148. "support": {
  9149. "issues": "https://github.com/mck89/peast/issues",
  9150. "source": "https://github.com/mck89/peast/tree/v1.17.4"
  9151. },
  9152. "time": "2025-10-10T12:53:17+00:00"
  9153. },
  9154. {
  9155. "name": "mglaman/phpstan-drupal",
  9156. "version": "2.0.11",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9160. "reference": "4e1caa0940cfc0837e1890b489a7d95c629e2b92"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/4e1caa0940cfc0837e1890b489a7d95c629e2b92",
  9165. "reference": "4e1caa0940cfc0837e1890b489a7d95c629e2b92",
  9166. "shasum": ""
  9167. },
  9168. "require": {
  9169. "php": "^8.1",
  9170. "phpstan/phpstan": "^2.1",
  9171. "phpstan/phpstan-deprecation-rules": "^2.0",
  9172. "symfony/finder": "^6.2 || ^7.0 || ^8.0",
  9173. "symfony/yaml": "^6.2 || ^7.0 || ^8.0",
  9174. "webflo/drupal-finder": "^1.3.1"
  9175. },
  9176. "require-dev": {
  9177. "behat/mink": "^1.10",
  9178. "composer/installers": "^1.9 || ^2",
  9179. "drupal/core-recommended": "^11",
  9180. "drush/drush": "^11 || ^12 || ^13",
  9181. "phpstan/extension-installer": "^1.4.3",
  9182. "phpstan/phpstan-strict-rules": "^2.0",
  9183. "phpunit/phpunit": "^9 || ^10 || ^11",
  9184. "slevomat/coding-standard": "^8.6",
  9185. "squizlabs/php_codesniffer": "^3.7",
  9186. "symfony/phpunit-bridge": "^6.2 || ^7.0 || ^8.0"
  9187. },
  9188. "suggest": {
  9189. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9190. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9191. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9192. },
  9193. "type": "phpstan-extension",
  9194. "extra": {
  9195. "phpstan": {
  9196. "includes": [
  9197. "extension.neon",
  9198. "rules.neon"
  9199. ]
  9200. },
  9201. "installer-paths": {
  9202. "tests/fixtures/drupal/core": [
  9203. "type:drupal-core"
  9204. ],
  9205. "tests/fixtures/drupal/libraries/{$name}": [
  9206. "type:drupal-library"
  9207. ],
  9208. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9209. "type:drupal-theme"
  9210. ],
  9211. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9212. "type:drupal-module"
  9213. ],
  9214. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9215. "type:drupal-profile"
  9216. ]
  9217. }
  9218. },
  9219. "autoload": {
  9220. "psr-4": {
  9221. "mglaman\\PHPStanDrupal\\": "src/"
  9222. }
  9223. },
  9224. "notification-url": "https://packagist.org/downloads/",
  9225. "license": [
  9226. "MIT"
  9227. ],
  9228. "authors": [
  9229. {
  9230. "name": "Matt Glaman",
  9231. "email": "nmd.matt@gmail.com"
  9232. }
  9233. ],
  9234. "description": "Drupal extension and rules for PHPStan",
  9235. "support": {
  9236. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9237. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.11"
  9238. },
  9239. "funding": [
  9240. {
  9241. "url": "https://github.com/mglaman",
  9242. "type": "github"
  9243. },
  9244. {
  9245. "url": "https://opencollective.com/phpstan-drupal",
  9246. "type": "open_collective"
  9247. },
  9248. {
  9249. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9250. "type": "tidelift"
  9251. }
  9252. ],
  9253. "time": "2026-02-25T16:38:53+00:00"
  9254. },
  9255. {
  9256. "name": "nikic/php-parser",
  9257. "version": "v5.7.0",
  9258. "source": {
  9259. "type": "git",
  9260. "url": "https://github.com/nikic/PHP-Parser.git",
  9261. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  9262. },
  9263. "dist": {
  9264. "type": "zip",
  9265. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9266. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9267. "shasum": ""
  9268. },
  9269. "require": {
  9270. "ext-ctype": "*",
  9271. "ext-json": "*",
  9272. "ext-tokenizer": "*",
  9273. "php": ">=7.4"
  9274. },
  9275. "require-dev": {
  9276. "ircmaxell/php-yacc": "^0.0.7",
  9277. "phpunit/phpunit": "^9.0"
  9278. },
  9279. "bin": [
  9280. "bin/php-parse"
  9281. ],
  9282. "type": "library",
  9283. "extra": {
  9284. "branch-alias": {
  9285. "dev-master": "5.x-dev"
  9286. }
  9287. },
  9288. "autoload": {
  9289. "psr-4": {
  9290. "PhpParser\\": "lib/PhpParser"
  9291. }
  9292. },
  9293. "notification-url": "https://packagist.org/downloads/",
  9294. "license": [
  9295. "BSD-3-Clause"
  9296. ],
  9297. "authors": [
  9298. {
  9299. "name": "Nikita Popov"
  9300. }
  9301. ],
  9302. "description": "A PHP parser written in PHP",
  9303. "keywords": [
  9304. "parser",
  9305. "php"
  9306. ],
  9307. "support": {
  9308. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9309. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  9310. },
  9311. "time": "2025-12-06T11:56:16+00:00"
  9312. },
  9313. {
  9314. "name": "pear/archive_tar",
  9315. "version": "1.6.0",
  9316. "source": {
  9317. "type": "git",
  9318. "url": "https://github.com/pear/Archive_Tar.git",
  9319. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  9320. },
  9321. "dist": {
  9322. "type": "zip",
  9323. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9324. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9325. "shasum": ""
  9326. },
  9327. "require": {
  9328. "pear/pear-core-minimal": "^1.10.0alpha2",
  9329. "php": ">=5.4.0"
  9330. },
  9331. "require-dev": {
  9332. "phpunit/phpunit": "*"
  9333. },
  9334. "suggest": {
  9335. "ext-bz2": "Bz2 compression support.",
  9336. "ext-xz": "Lzma2 compression support.",
  9337. "ext-zlib": "Gzip compression support."
  9338. },
  9339. "type": "library",
  9340. "extra": {
  9341. "branch-alias": {
  9342. "dev-master": "1.4.x-dev"
  9343. }
  9344. },
  9345. "autoload": {
  9346. "psr-0": {
  9347. "Archive_Tar": ""
  9348. }
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "include-path": [
  9352. "./"
  9353. ],
  9354. "license": [
  9355. "BSD-2-Clause"
  9356. ],
  9357. "authors": [
  9358. {
  9359. "name": "Vincent Blavet",
  9360. "email": "vincent@phpconcept.net"
  9361. },
  9362. {
  9363. "name": "Greg Beaver",
  9364. "email": "greg@chiaraquartet.net"
  9365. },
  9366. {
  9367. "name": "Michiel Rook",
  9368. "email": "mrook@php.net"
  9369. }
  9370. ],
  9371. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9372. "homepage": "https://github.com/pear/Archive_Tar",
  9373. "keywords": [
  9374. "archive",
  9375. "tar"
  9376. ],
  9377. "support": {
  9378. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9379. "source": "https://github.com/pear/Archive_Tar"
  9380. },
  9381. "time": "2025-07-19T14:49:16+00:00"
  9382. },
  9383. {
  9384. "name": "pear/console_getopt",
  9385. "version": "v1.4.3",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/pear/Console_Getopt.git",
  9389. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9394. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9395. "shasum": ""
  9396. },
  9397. "type": "library",
  9398. "autoload": {
  9399. "psr-0": {
  9400. "Console": "./"
  9401. }
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "include-path": [
  9405. "./"
  9406. ],
  9407. "license": [
  9408. "BSD-2-Clause"
  9409. ],
  9410. "authors": [
  9411. {
  9412. "name": "Andrei Zmievski",
  9413. "email": "andrei@php.net",
  9414. "role": "Lead"
  9415. },
  9416. {
  9417. "name": "Stig Bakken",
  9418. "email": "stig@php.net",
  9419. "role": "Developer"
  9420. },
  9421. {
  9422. "name": "Greg Beaver",
  9423. "email": "cellog@php.net",
  9424. "role": "Helper"
  9425. }
  9426. ],
  9427. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9428. "support": {
  9429. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9430. "source": "https://github.com/pear/Console_Getopt"
  9431. },
  9432. "abandoned": true,
  9433. "time": "2019-11-20T18:27:48+00:00"
  9434. },
  9435. {
  9436. "name": "pear/pear-core-minimal",
  9437. "version": "v1.10.18",
  9438. "source": {
  9439. "type": "git",
  9440. "url": "https://github.com/pear/pear-core-minimal.git",
  9441. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  9442. },
  9443. "dist": {
  9444. "type": "zip",
  9445. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9446. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9447. "shasum": ""
  9448. },
  9449. "require": {
  9450. "pear/console_getopt": "~1.4",
  9451. "pear/pear_exception": "~1.0",
  9452. "php": ">=5.4"
  9453. },
  9454. "replace": {
  9455. "rsky/pear-core-min": "self.version"
  9456. },
  9457. "type": "library",
  9458. "autoload": {
  9459. "classmap": [
  9460. "src/"
  9461. ]
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "include-path": [
  9465. "src/"
  9466. ],
  9467. "license": [
  9468. "BSD-3-Clause"
  9469. ],
  9470. "authors": [
  9471. {
  9472. "name": "Christian Weiske",
  9473. "email": "cweiske@php.net",
  9474. "role": "Lead"
  9475. }
  9476. ],
  9477. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9478. "support": {
  9479. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9480. "source": "https://github.com/pear/pear-core-minimal"
  9481. },
  9482. "time": "2025-12-14T20:37:07+00:00"
  9483. },
  9484. {
  9485. "name": "pear/pear_exception",
  9486. "version": "v1.0.2",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/pear/PEAR_Exception.git",
  9490. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9495. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "php": ">=5.2.0"
  9500. },
  9501. "require-dev": {
  9502. "phpunit/phpunit": "<9"
  9503. },
  9504. "type": "class",
  9505. "extra": {
  9506. "branch-alias": {
  9507. "dev-master": "1.0.x-dev"
  9508. }
  9509. },
  9510. "autoload": {
  9511. "classmap": [
  9512. "PEAR/"
  9513. ]
  9514. },
  9515. "notification-url": "https://packagist.org/downloads/",
  9516. "include-path": [
  9517. "."
  9518. ],
  9519. "license": [
  9520. "BSD-2-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Helgi Thormar",
  9525. "email": "dufuz@php.net"
  9526. },
  9527. {
  9528. "name": "Greg Beaver",
  9529. "email": "cellog@php.net"
  9530. }
  9531. ],
  9532. "description": "The PEAR Exception base class.",
  9533. "homepage": "https://github.com/pear/PEAR_Exception",
  9534. "keywords": [
  9535. "exception"
  9536. ],
  9537. "support": {
  9538. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9539. "source": "https://github.com/pear/PEAR_Exception"
  9540. },
  9541. "time": "2021-03-21T15:43:46+00:00"
  9542. },
  9543. {
  9544. "name": "phootwork/collection",
  9545. "version": "v3.2.3",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/phootwork/collection.git",
  9549. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9554. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "phootwork/lang": "^3.0",
  9559. "php": ">=8.0"
  9560. },
  9561. "type": "library",
  9562. "autoload": {
  9563. "psr-4": {
  9564. "phootwork\\collection\\": ""
  9565. }
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "MIT"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Thomas Gossmann",
  9574. "homepage": "http://gos.si"
  9575. }
  9576. ],
  9577. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9578. "homepage": "https://phootwork.github.io/collection/",
  9579. "keywords": [
  9580. "Array object",
  9581. "Text object",
  9582. "collection",
  9583. "collections",
  9584. "json",
  9585. "list",
  9586. "map",
  9587. "queue",
  9588. "set",
  9589. "stack",
  9590. "xml"
  9591. ],
  9592. "support": {
  9593. "issues": "https://github.com/phootwork/phootwork/issues",
  9594. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9595. },
  9596. "time": "2022-08-27T12:51:24+00:00"
  9597. },
  9598. {
  9599. "name": "phootwork/lang",
  9600. "version": "v3.2.3",
  9601. "source": {
  9602. "type": "git",
  9603. "url": "https://github.com/phootwork/lang.git",
  9604. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9605. },
  9606. "dist": {
  9607. "type": "zip",
  9608. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9609. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9610. "shasum": ""
  9611. },
  9612. "require": {
  9613. "php": ">=8.0",
  9614. "symfony/polyfill-mbstring": "^1.12",
  9615. "symfony/polyfill-php81": "^1.22"
  9616. },
  9617. "type": "library",
  9618. "autoload": {
  9619. "psr-4": {
  9620. "phootwork\\lang\\": ""
  9621. }
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "MIT"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Thomas Gossmann",
  9630. "homepage": "http://gos.si"
  9631. }
  9632. ],
  9633. "description": "Missing PHP language constructs",
  9634. "homepage": "https://phootwork.github.io/lang/",
  9635. "keywords": [
  9636. "array",
  9637. "comparator",
  9638. "comparison",
  9639. "string"
  9640. ],
  9641. "support": {
  9642. "issues": "https://github.com/phootwork/phootwork/issues",
  9643. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9644. },
  9645. "time": "2024-10-03T13:43:19+00:00"
  9646. },
  9647. {
  9648. "name": "php-http/discovery",
  9649. "version": "1.20.0",
  9650. "source": {
  9651. "type": "git",
  9652. "url": "https://github.com/php-http/discovery.git",
  9653. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9654. },
  9655. "dist": {
  9656. "type": "zip",
  9657. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9658. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9659. "shasum": ""
  9660. },
  9661. "require": {
  9662. "composer-plugin-api": "^1.0|^2.0",
  9663. "php": "^7.1 || ^8.0"
  9664. },
  9665. "conflict": {
  9666. "nyholm/psr7": "<1.0",
  9667. "zendframework/zend-diactoros": "*"
  9668. },
  9669. "provide": {
  9670. "php-http/async-client-implementation": "*",
  9671. "php-http/client-implementation": "*",
  9672. "psr/http-client-implementation": "*",
  9673. "psr/http-factory-implementation": "*",
  9674. "psr/http-message-implementation": "*"
  9675. },
  9676. "require-dev": {
  9677. "composer/composer": "^1.0.2|^2.0",
  9678. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9679. "php-http/httplug": "^1.0 || ^2.0",
  9680. "php-http/message-factory": "^1.0",
  9681. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9682. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9683. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9684. },
  9685. "type": "composer-plugin",
  9686. "extra": {
  9687. "class": "Http\\Discovery\\Composer\\Plugin",
  9688. "plugin-optional": true
  9689. },
  9690. "autoload": {
  9691. "psr-4": {
  9692. "Http\\Discovery\\": "src/"
  9693. },
  9694. "exclude-from-classmap": [
  9695. "src/Composer/Plugin.php"
  9696. ]
  9697. },
  9698. "notification-url": "https://packagist.org/downloads/",
  9699. "license": [
  9700. "MIT"
  9701. ],
  9702. "authors": [
  9703. {
  9704. "name": "Márk Sági-Kazár",
  9705. "email": "mark.sagikazar@gmail.com"
  9706. }
  9707. ],
  9708. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9709. "homepage": "http://php-http.org",
  9710. "keywords": [
  9711. "adapter",
  9712. "client",
  9713. "discovery",
  9714. "factory",
  9715. "http",
  9716. "message",
  9717. "psr17",
  9718. "psr7"
  9719. ],
  9720. "support": {
  9721. "issues": "https://github.com/php-http/discovery/issues",
  9722. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9723. },
  9724. "time": "2024-10-02T11:20:13+00:00"
  9725. },
  9726. {
  9727. "name": "php-http/guzzle7-adapter",
  9728. "version": "1.1.0",
  9729. "source": {
  9730. "type": "git",
  9731. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9732. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9733. },
  9734. "dist": {
  9735. "type": "zip",
  9736. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9737. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9738. "shasum": ""
  9739. },
  9740. "require": {
  9741. "guzzlehttp/guzzle": "^7.0",
  9742. "php": "^7.3 | ^8.0",
  9743. "php-http/httplug": "^2.0",
  9744. "psr/http-client": "^1.0"
  9745. },
  9746. "provide": {
  9747. "php-http/async-client-implementation": "1.0",
  9748. "php-http/client-implementation": "1.0",
  9749. "psr/http-client-implementation": "1.0"
  9750. },
  9751. "require-dev": {
  9752. "php-http/client-integration-tests": "^3.0",
  9753. "php-http/message-factory": "^1.1",
  9754. "phpspec/prophecy-phpunit": "^2.0",
  9755. "phpunit/phpunit": "^8.0|^9.3"
  9756. },
  9757. "type": "library",
  9758. "autoload": {
  9759. "psr-4": {
  9760. "Http\\Adapter\\Guzzle7\\": "src/"
  9761. }
  9762. },
  9763. "notification-url": "https://packagist.org/downloads/",
  9764. "license": [
  9765. "MIT"
  9766. ],
  9767. "authors": [
  9768. {
  9769. "name": "Tobias Nyholm",
  9770. "email": "tobias.nyholm@gmail.com"
  9771. }
  9772. ],
  9773. "description": "Guzzle 7 HTTP Adapter",
  9774. "homepage": "http://httplug.io",
  9775. "keywords": [
  9776. "Guzzle",
  9777. "http"
  9778. ],
  9779. "support": {
  9780. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9781. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9782. },
  9783. "time": "2024-11-26T11:14:36+00:00"
  9784. },
  9785. {
  9786. "name": "php-http/httplug",
  9787. "version": "2.4.1",
  9788. "source": {
  9789. "type": "git",
  9790. "url": "https://github.com/php-http/httplug.git",
  9791. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9792. },
  9793. "dist": {
  9794. "type": "zip",
  9795. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9796. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9797. "shasum": ""
  9798. },
  9799. "require": {
  9800. "php": "^7.1 || ^8.0",
  9801. "php-http/promise": "^1.1",
  9802. "psr/http-client": "^1.0",
  9803. "psr/http-message": "^1.0 || ^2.0"
  9804. },
  9805. "require-dev": {
  9806. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9807. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9808. },
  9809. "type": "library",
  9810. "autoload": {
  9811. "psr-4": {
  9812. "Http\\Client\\": "src/"
  9813. }
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "MIT"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Eric GELOEN",
  9822. "email": "geloen.eric@gmail.com"
  9823. },
  9824. {
  9825. "name": "Márk Sági-Kazár",
  9826. "email": "mark.sagikazar@gmail.com",
  9827. "homepage": "https://sagikazarmark.hu"
  9828. }
  9829. ],
  9830. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9831. "homepage": "http://httplug.io",
  9832. "keywords": [
  9833. "client",
  9834. "http"
  9835. ],
  9836. "support": {
  9837. "issues": "https://github.com/php-http/httplug/issues",
  9838. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9839. },
  9840. "time": "2024-09-23T11:39:58+00:00"
  9841. },
  9842. {
  9843. "name": "php-http/message",
  9844. "version": "1.16.2",
  9845. "source": {
  9846. "type": "git",
  9847. "url": "https://github.com/php-http/message.git",
  9848. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9849. },
  9850. "dist": {
  9851. "type": "zip",
  9852. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9853. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9854. "shasum": ""
  9855. },
  9856. "require": {
  9857. "clue/stream-filter": "^1.5",
  9858. "php": "^7.2 || ^8.0",
  9859. "psr/http-message": "^1.1 || ^2.0"
  9860. },
  9861. "provide": {
  9862. "php-http/message-factory-implementation": "1.0"
  9863. },
  9864. "require-dev": {
  9865. "ergebnis/composer-normalize": "^2.6",
  9866. "ext-zlib": "*",
  9867. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9868. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9869. "php-http/message-factory": "^1.0.2",
  9870. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9871. "slim/slim": "^3.0"
  9872. },
  9873. "suggest": {
  9874. "ext-zlib": "Used with compressor/decompressor streams",
  9875. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9876. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9877. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9878. },
  9879. "type": "library",
  9880. "autoload": {
  9881. "files": [
  9882. "src/filters.php"
  9883. ],
  9884. "psr-4": {
  9885. "Http\\Message\\": "src/"
  9886. }
  9887. },
  9888. "notification-url": "https://packagist.org/downloads/",
  9889. "license": [
  9890. "MIT"
  9891. ],
  9892. "authors": [
  9893. {
  9894. "name": "Márk Sági-Kazár",
  9895. "email": "mark.sagikazar@gmail.com"
  9896. }
  9897. ],
  9898. "description": "HTTP Message related tools",
  9899. "homepage": "http://php-http.org",
  9900. "keywords": [
  9901. "http",
  9902. "message",
  9903. "psr-7"
  9904. ],
  9905. "support": {
  9906. "issues": "https://github.com/php-http/message/issues",
  9907. "source": "https://github.com/php-http/message/tree/1.16.2"
  9908. },
  9909. "time": "2024-10-02T11:34:13+00:00"
  9910. },
  9911. {
  9912. "name": "php-http/promise",
  9913. "version": "1.3.1",
  9914. "source": {
  9915. "type": "git",
  9916. "url": "https://github.com/php-http/promise.git",
  9917. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9918. },
  9919. "dist": {
  9920. "type": "zip",
  9921. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9922. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9923. "shasum": ""
  9924. },
  9925. "require": {
  9926. "php": "^7.1 || ^8.0"
  9927. },
  9928. "require-dev": {
  9929. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9930. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9931. },
  9932. "type": "library",
  9933. "autoload": {
  9934. "psr-4": {
  9935. "Http\\Promise\\": "src/"
  9936. }
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "MIT"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Joel Wurtz",
  9945. "email": "joel.wurtz@gmail.com"
  9946. },
  9947. {
  9948. "name": "Márk Sági-Kazár",
  9949. "email": "mark.sagikazar@gmail.com"
  9950. }
  9951. ],
  9952. "description": "Promise used for asynchronous HTTP requests",
  9953. "homepage": "http://httplug.io",
  9954. "keywords": [
  9955. "promise"
  9956. ],
  9957. "support": {
  9958. "issues": "https://github.com/php-http/promise/issues",
  9959. "source": "https://github.com/php-http/promise/tree/1.3.1"
  9960. },
  9961. "time": "2024-03-15T13:55:21+00:00"
  9962. },
  9963. {
  9964. "name": "phpmailer/phpmailer",
  9965. "version": "v6.10.0",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9969. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9974. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9975. "shasum": ""
  9976. },
  9977. "require": {
  9978. "ext-ctype": "*",
  9979. "ext-filter": "*",
  9980. "ext-hash": "*",
  9981. "php": ">=5.5.0"
  9982. },
  9983. "require-dev": {
  9984. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9985. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9986. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9987. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9988. "phpcompatibility/php-compatibility": "^9.3.5",
  9989. "roave/security-advisories": "dev-latest",
  9990. "squizlabs/php_codesniffer": "^3.7.2",
  9991. "yoast/phpunit-polyfills": "^1.0.4"
  9992. },
  9993. "suggest": {
  9994. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  9995. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9996. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9997. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9998. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9999. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10000. "psr/log": "For optional PSR-3 debug logging",
  10001. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  10002. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  10003. },
  10004. "type": "library",
  10005. "autoload": {
  10006. "psr-4": {
  10007. "PHPMailer\\PHPMailer\\": "src/"
  10008. }
  10009. },
  10010. "notification-url": "https://packagist.org/downloads/",
  10011. "license": [
  10012. "LGPL-2.1-only"
  10013. ],
  10014. "authors": [
  10015. {
  10016. "name": "Marcus Bointon",
  10017. "email": "phpmailer@synchromedia.co.uk"
  10018. },
  10019. {
  10020. "name": "Jim Jagielski",
  10021. "email": "jimjag@gmail.com"
  10022. },
  10023. {
  10024. "name": "Andy Prevost",
  10025. "email": "codeworxtech@users.sourceforge.net"
  10026. },
  10027. {
  10028. "name": "Brent R. Matzelle"
  10029. }
  10030. ],
  10031. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10032. "support": {
  10033. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10034. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10035. },
  10036. "funding": [
  10037. {
  10038. "url": "https://github.com/Synchro",
  10039. "type": "github"
  10040. }
  10041. ],
  10042. "time": "2025-04-24T15:19:31+00:00"
  10043. },
  10044. {
  10045. "name": "phpowermove/docblock",
  10046. "version": "v4.0",
  10047. "source": {
  10048. "type": "git",
  10049. "url": "https://github.com/phpowermove/docblock.git",
  10050. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10051. },
  10052. "dist": {
  10053. "type": "zip",
  10054. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10055. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10056. "shasum": ""
  10057. },
  10058. "require": {
  10059. "phootwork/collection": "^3.0",
  10060. "phootwork/lang": "^3.0",
  10061. "php": ">=8.0"
  10062. },
  10063. "require-dev": {
  10064. "phootwork/php-cs-fixer-config": "^0.4",
  10065. "phpunit/phpunit": "^9.0",
  10066. "psalm/phar": "^4.3"
  10067. },
  10068. "type": "library",
  10069. "autoload": {
  10070. "psr-4": {
  10071. "phpowermove\\docblock\\": "src/"
  10072. }
  10073. },
  10074. "notification-url": "https://packagist.org/downloads/",
  10075. "license": [
  10076. "MIT"
  10077. ],
  10078. "authors": [
  10079. {
  10080. "name": "Thomas Gossmann",
  10081. "homepage": "http://gos.si"
  10082. }
  10083. ],
  10084. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10085. "keywords": [
  10086. "docblock",
  10087. "generator",
  10088. "parser"
  10089. ],
  10090. "support": {
  10091. "issues": "https://github.com/phpowermove/docblock/issues",
  10092. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10093. },
  10094. "time": "2021-09-22T16:57:06+00:00"
  10095. },
  10096. {
  10097. "name": "phpstan/phpstan",
  10098. "version": "2.1.40",
  10099. "dist": {
  10100. "type": "zip",
  10101. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b2c7aeb83a75d8680ea5e7c9b7fca88052b766b",
  10102. "reference": "9b2c7aeb83a75d8680ea5e7c9b7fca88052b766b",
  10103. "shasum": ""
  10104. },
  10105. "require": {
  10106. "php": "^7.4|^8.0"
  10107. },
  10108. "conflict": {
  10109. "phpstan/phpstan-shim": "*"
  10110. },
  10111. "bin": [
  10112. "phpstan",
  10113. "phpstan.phar"
  10114. ],
  10115. "type": "library",
  10116. "autoload": {
  10117. "files": [
  10118. "bootstrap.php"
  10119. ]
  10120. },
  10121. "notification-url": "https://packagist.org/downloads/",
  10122. "license": [
  10123. "MIT"
  10124. ],
  10125. "description": "PHPStan - PHP Static Analysis Tool",
  10126. "keywords": [
  10127. "dev",
  10128. "static analysis"
  10129. ],
  10130. "support": {
  10131. "docs": "https://phpstan.org/user-guide/getting-started",
  10132. "forum": "https://github.com/phpstan/phpstan/discussions",
  10133. "issues": "https://github.com/phpstan/phpstan/issues",
  10134. "security": "https://github.com/phpstan/phpstan/security/policy",
  10135. "source": "https://github.com/phpstan/phpstan-src"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://github.com/ondrejmirtes",
  10140. "type": "github"
  10141. },
  10142. {
  10143. "url": "https://github.com/phpstan",
  10144. "type": "github"
  10145. }
  10146. ],
  10147. "time": "2026-02-23T15:04:35+00:00"
  10148. },
  10149. {
  10150. "name": "phpstan/phpstan-deprecation-rules",
  10151. "version": "2.0.4",
  10152. "source": {
  10153. "type": "git",
  10154. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10155. "reference": "6b5571001a7f04fa0422254c30a0017ec2f2cacc"
  10156. },
  10157. "dist": {
  10158. "type": "zip",
  10159. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/6b5571001a7f04fa0422254c30a0017ec2f2cacc",
  10160. "reference": "6b5571001a7f04fa0422254c30a0017ec2f2cacc",
  10161. "shasum": ""
  10162. },
  10163. "require": {
  10164. "php": "^7.4 || ^8.0",
  10165. "phpstan/phpstan": "^2.1.39"
  10166. },
  10167. "require-dev": {
  10168. "php-parallel-lint/php-parallel-lint": "^1.2",
  10169. "phpstan/phpstan-phpunit": "^2.0",
  10170. "phpunit/phpunit": "^9.6"
  10171. },
  10172. "type": "phpstan-extension",
  10173. "extra": {
  10174. "phpstan": {
  10175. "includes": [
  10176. "rules.neon"
  10177. ]
  10178. }
  10179. },
  10180. "autoload": {
  10181. "psr-4": {
  10182. "PHPStan\\": "src/"
  10183. }
  10184. },
  10185. "notification-url": "https://packagist.org/downloads/",
  10186. "license": [
  10187. "MIT"
  10188. ],
  10189. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10190. "keywords": [
  10191. "static analysis"
  10192. ],
  10193. "support": {
  10194. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10195. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.4"
  10196. },
  10197. "time": "2026-02-09T13:21:14+00:00"
  10198. },
  10199. {
  10200. "name": "politsin/jquery-ui-touch-punch",
  10201. "version": "1.0",
  10202. "source": {
  10203. "type": "git",
  10204. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10205. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10206. },
  10207. "dist": {
  10208. "type": "zip",
  10209. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10210. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10211. "shasum": ""
  10212. },
  10213. "type": "drupal-library",
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "MIT"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Dave Furfero",
  10221. "email": "furf@furf.com"
  10222. }
  10223. ],
  10224. "description": "Extension to jQuery UI for mobile touch event support.",
  10225. "homepage": "http://touchpunch.furf.com/",
  10226. "keywords": [
  10227. "gestures",
  10228. "mobile",
  10229. "touch"
  10230. ],
  10231. "support": {
  10232. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10233. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10234. },
  10235. "time": "2020-12-15T10:26:18+00:00"
  10236. },
  10237. {
  10238. "name": "psr/cache",
  10239. "version": "3.0.0",
  10240. "source": {
  10241. "type": "git",
  10242. "url": "https://github.com/php-fig/cache.git",
  10243. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10244. },
  10245. "dist": {
  10246. "type": "zip",
  10247. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10248. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10249. "shasum": ""
  10250. },
  10251. "require": {
  10252. "php": ">=8.0.0"
  10253. },
  10254. "type": "library",
  10255. "extra": {
  10256. "branch-alias": {
  10257. "dev-master": "1.0.x-dev"
  10258. }
  10259. },
  10260. "autoload": {
  10261. "psr-4": {
  10262. "Psr\\Cache\\": "src/"
  10263. }
  10264. },
  10265. "notification-url": "https://packagist.org/downloads/",
  10266. "license": [
  10267. "MIT"
  10268. ],
  10269. "authors": [
  10270. {
  10271. "name": "PHP-FIG",
  10272. "homepage": "https://www.php-fig.org/"
  10273. }
  10274. ],
  10275. "description": "Common interface for caching libraries",
  10276. "keywords": [
  10277. "cache",
  10278. "psr",
  10279. "psr-6"
  10280. ],
  10281. "support": {
  10282. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10283. },
  10284. "time": "2021-02-03T23:26:27+00:00"
  10285. },
  10286. {
  10287. "name": "psr/container",
  10288. "version": "2.0.2",
  10289. "source": {
  10290. "type": "git",
  10291. "url": "https://github.com/php-fig/container.git",
  10292. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10293. },
  10294. "dist": {
  10295. "type": "zip",
  10296. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10297. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10298. "shasum": ""
  10299. },
  10300. "require": {
  10301. "php": ">=7.4.0"
  10302. },
  10303. "type": "library",
  10304. "extra": {
  10305. "branch-alias": {
  10306. "dev-master": "2.0.x-dev"
  10307. }
  10308. },
  10309. "autoload": {
  10310. "psr-4": {
  10311. "Psr\\Container\\": "src/"
  10312. }
  10313. },
  10314. "notification-url": "https://packagist.org/downloads/",
  10315. "license": [
  10316. "MIT"
  10317. ],
  10318. "authors": [
  10319. {
  10320. "name": "PHP-FIG",
  10321. "homepage": "https://www.php-fig.org/"
  10322. }
  10323. ],
  10324. "description": "Common Container Interface (PHP FIG PSR-11)",
  10325. "homepage": "https://github.com/php-fig/container",
  10326. "keywords": [
  10327. "PSR-11",
  10328. "container",
  10329. "container-interface",
  10330. "container-interop",
  10331. "psr"
  10332. ],
  10333. "support": {
  10334. "issues": "https://github.com/php-fig/container/issues",
  10335. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10336. },
  10337. "time": "2021-11-05T16:47:00+00:00"
  10338. },
  10339. {
  10340. "name": "psr/event-dispatcher",
  10341. "version": "1.0.0",
  10342. "source": {
  10343. "type": "git",
  10344. "url": "https://github.com/php-fig/event-dispatcher.git",
  10345. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10346. },
  10347. "dist": {
  10348. "type": "zip",
  10349. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10350. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10351. "shasum": ""
  10352. },
  10353. "require": {
  10354. "php": ">=7.2.0"
  10355. },
  10356. "type": "library",
  10357. "extra": {
  10358. "branch-alias": {
  10359. "dev-master": "1.0.x-dev"
  10360. }
  10361. },
  10362. "autoload": {
  10363. "psr-4": {
  10364. "Psr\\EventDispatcher\\": "src/"
  10365. }
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "MIT"
  10370. ],
  10371. "authors": [
  10372. {
  10373. "name": "PHP-FIG",
  10374. "homepage": "http://www.php-fig.org/"
  10375. }
  10376. ],
  10377. "description": "Standard interfaces for event handling.",
  10378. "keywords": [
  10379. "events",
  10380. "psr",
  10381. "psr-14"
  10382. ],
  10383. "support": {
  10384. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10385. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10386. },
  10387. "time": "2019-01-08T18:20:26+00:00"
  10388. },
  10389. {
  10390. "name": "psr/http-client",
  10391. "version": "1.0.3",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/php-fig/http-client.git",
  10395. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10400. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "php": "^7.0 || ^8.0",
  10405. "psr/http-message": "^1.0 || ^2.0"
  10406. },
  10407. "type": "library",
  10408. "extra": {
  10409. "branch-alias": {
  10410. "dev-master": "1.0.x-dev"
  10411. }
  10412. },
  10413. "autoload": {
  10414. "psr-4": {
  10415. "Psr\\Http\\Client\\": "src/"
  10416. }
  10417. },
  10418. "notification-url": "https://packagist.org/downloads/",
  10419. "license": [
  10420. "MIT"
  10421. ],
  10422. "authors": [
  10423. {
  10424. "name": "PHP-FIG",
  10425. "homepage": "https://www.php-fig.org/"
  10426. }
  10427. ],
  10428. "description": "Common interface for HTTP clients",
  10429. "homepage": "https://github.com/php-fig/http-client",
  10430. "keywords": [
  10431. "http",
  10432. "http-client",
  10433. "psr",
  10434. "psr-18"
  10435. ],
  10436. "support": {
  10437. "source": "https://github.com/php-fig/http-client"
  10438. },
  10439. "time": "2023-09-23T14:17:50+00:00"
  10440. },
  10441. {
  10442. "name": "psr/http-factory",
  10443. "version": "1.1.0",
  10444. "source": {
  10445. "type": "git",
  10446. "url": "https://github.com/php-fig/http-factory.git",
  10447. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10448. },
  10449. "dist": {
  10450. "type": "zip",
  10451. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10452. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10453. "shasum": ""
  10454. },
  10455. "require": {
  10456. "php": ">=7.1",
  10457. "psr/http-message": "^1.0 || ^2.0"
  10458. },
  10459. "type": "library",
  10460. "extra": {
  10461. "branch-alias": {
  10462. "dev-master": "1.0.x-dev"
  10463. }
  10464. },
  10465. "autoload": {
  10466. "psr-4": {
  10467. "Psr\\Http\\Message\\": "src/"
  10468. }
  10469. },
  10470. "notification-url": "https://packagist.org/downloads/",
  10471. "license": [
  10472. "MIT"
  10473. ],
  10474. "authors": [
  10475. {
  10476. "name": "PHP-FIG",
  10477. "homepage": "https://www.php-fig.org/"
  10478. }
  10479. ],
  10480. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10481. "keywords": [
  10482. "factory",
  10483. "http",
  10484. "message",
  10485. "psr",
  10486. "psr-17",
  10487. "psr-7",
  10488. "request",
  10489. "response"
  10490. ],
  10491. "support": {
  10492. "source": "https://github.com/php-fig/http-factory"
  10493. },
  10494. "time": "2024-04-15T12:06:14+00:00"
  10495. },
  10496. {
  10497. "name": "psr/http-message",
  10498. "version": "2.0",
  10499. "source": {
  10500. "type": "git",
  10501. "url": "https://github.com/php-fig/http-message.git",
  10502. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10503. },
  10504. "dist": {
  10505. "type": "zip",
  10506. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10507. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10508. "shasum": ""
  10509. },
  10510. "require": {
  10511. "php": "^7.2 || ^8.0"
  10512. },
  10513. "type": "library",
  10514. "extra": {
  10515. "branch-alias": {
  10516. "dev-master": "2.0.x-dev"
  10517. }
  10518. },
  10519. "autoload": {
  10520. "psr-4": {
  10521. "Psr\\Http\\Message\\": "src/"
  10522. }
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "MIT"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "PHP-FIG",
  10531. "homepage": "https://www.php-fig.org/"
  10532. }
  10533. ],
  10534. "description": "Common interface for HTTP messages",
  10535. "homepage": "https://github.com/php-fig/http-message",
  10536. "keywords": [
  10537. "http",
  10538. "http-message",
  10539. "psr",
  10540. "psr-7",
  10541. "request",
  10542. "response"
  10543. ],
  10544. "support": {
  10545. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10546. },
  10547. "time": "2023-04-04T09:54:51+00:00"
  10548. },
  10549. {
  10550. "name": "psr/log",
  10551. "version": "3.0.2",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/php-fig/log.git",
  10555. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10560. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10561. "shasum": ""
  10562. },
  10563. "require": {
  10564. "php": ">=8.0.0"
  10565. },
  10566. "type": "library",
  10567. "extra": {
  10568. "branch-alias": {
  10569. "dev-master": "3.x-dev"
  10570. }
  10571. },
  10572. "autoload": {
  10573. "psr-4": {
  10574. "Psr\\Log\\": "src"
  10575. }
  10576. },
  10577. "notification-url": "https://packagist.org/downloads/",
  10578. "license": [
  10579. "MIT"
  10580. ],
  10581. "authors": [
  10582. {
  10583. "name": "PHP-FIG",
  10584. "homepage": "https://www.php-fig.org/"
  10585. }
  10586. ],
  10587. "description": "Common interface for logging libraries",
  10588. "homepage": "https://github.com/php-fig/log",
  10589. "keywords": [
  10590. "log",
  10591. "psr",
  10592. "psr-3"
  10593. ],
  10594. "support": {
  10595. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10596. },
  10597. "time": "2024-09-11T13:17:53+00:00"
  10598. },
  10599. {
  10600. "name": "psy/psysh",
  10601. "version": "v0.12.21",
  10602. "source": {
  10603. "type": "git",
  10604. "url": "https://github.com/bobthecow/psysh.git",
  10605. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97"
  10606. },
  10607. "dist": {
  10608. "type": "zip",
  10609. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10610. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10611. "shasum": ""
  10612. },
  10613. "require": {
  10614. "ext-json": "*",
  10615. "ext-tokenizer": "*",
  10616. "nikic/php-parser": "^5.0 || ^4.0",
  10617. "php": "^8.0 || ^7.4",
  10618. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10619. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10620. },
  10621. "conflict": {
  10622. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10623. },
  10624. "require-dev": {
  10625. "bamarni/composer-bin-plugin": "^1.2",
  10626. "composer/class-map-generator": "^1.6"
  10627. },
  10628. "suggest": {
  10629. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  10630. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10631. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10632. },
  10633. "bin": [
  10634. "bin/psysh"
  10635. ],
  10636. "type": "library",
  10637. "extra": {
  10638. "bamarni-bin": {
  10639. "bin-links": false,
  10640. "forward-command": false
  10641. },
  10642. "branch-alias": {
  10643. "dev-main": "0.12.x-dev"
  10644. }
  10645. },
  10646. "autoload": {
  10647. "files": [
  10648. "src/functions.php"
  10649. ],
  10650. "psr-4": {
  10651. "Psy\\": "src/"
  10652. }
  10653. },
  10654. "notification-url": "https://packagist.org/downloads/",
  10655. "license": [
  10656. "MIT"
  10657. ],
  10658. "authors": [
  10659. {
  10660. "name": "Justin Hileman",
  10661. "email": "justin@justinhileman.info"
  10662. }
  10663. ],
  10664. "description": "An interactive shell for modern PHP.",
  10665. "homepage": "https://psysh.org",
  10666. "keywords": [
  10667. "REPL",
  10668. "console",
  10669. "interactive",
  10670. "shell"
  10671. ],
  10672. "support": {
  10673. "issues": "https://github.com/bobthecow/psysh/issues",
  10674. "source": "https://github.com/bobthecow/psysh/tree/v0.12.21"
  10675. },
  10676. "time": "2026-03-06T21:21:28+00:00"
  10677. },
  10678. {
  10679. "name": "ralouphie/getallheaders",
  10680. "version": "3.0.3",
  10681. "source": {
  10682. "type": "git",
  10683. "url": "https://github.com/ralouphie/getallheaders.git",
  10684. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10685. },
  10686. "dist": {
  10687. "type": "zip",
  10688. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10689. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10690. "shasum": ""
  10691. },
  10692. "require": {
  10693. "php": ">=5.6"
  10694. },
  10695. "require-dev": {
  10696. "php-coveralls/php-coveralls": "^2.1",
  10697. "phpunit/phpunit": "^5 || ^6.5"
  10698. },
  10699. "type": "library",
  10700. "autoload": {
  10701. "files": [
  10702. "src/getallheaders.php"
  10703. ]
  10704. },
  10705. "notification-url": "https://packagist.org/downloads/",
  10706. "license": [
  10707. "MIT"
  10708. ],
  10709. "authors": [
  10710. {
  10711. "name": "Ralph Khattar",
  10712. "email": "ralph.khattar@gmail.com"
  10713. }
  10714. ],
  10715. "description": "A polyfill for getallheaders.",
  10716. "support": {
  10717. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10718. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10719. },
  10720. "time": "2019-03-08T08:55:37+00:00"
  10721. },
  10722. {
  10723. "name": "sebastian/diff",
  10724. "version": "4.0.6",
  10725. "source": {
  10726. "type": "git",
  10727. "url": "https://github.com/sebastianbergmann/diff.git",
  10728. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10729. },
  10730. "dist": {
  10731. "type": "zip",
  10732. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10733. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10734. "shasum": ""
  10735. },
  10736. "require": {
  10737. "php": ">=7.3"
  10738. },
  10739. "require-dev": {
  10740. "phpunit/phpunit": "^9.3",
  10741. "symfony/process": "^4.2 || ^5"
  10742. },
  10743. "type": "library",
  10744. "extra": {
  10745. "branch-alias": {
  10746. "dev-master": "4.0-dev"
  10747. }
  10748. },
  10749. "autoload": {
  10750. "classmap": [
  10751. "src/"
  10752. ]
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "BSD-3-Clause"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Sebastian Bergmann",
  10761. "email": "sebastian@phpunit.de"
  10762. },
  10763. {
  10764. "name": "Kore Nordmann",
  10765. "email": "mail@kore-nordmann.de"
  10766. }
  10767. ],
  10768. "description": "Diff implementation",
  10769. "homepage": "https://github.com/sebastianbergmann/diff",
  10770. "keywords": [
  10771. "diff",
  10772. "udiff",
  10773. "unidiff",
  10774. "unified diff"
  10775. ],
  10776. "support": {
  10777. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10778. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10779. },
  10780. "funding": [
  10781. {
  10782. "url": "https://github.com/sebastianbergmann",
  10783. "type": "github"
  10784. }
  10785. ],
  10786. "time": "2024-03-02T06:30:58+00:00"
  10787. },
  10788. {
  10789. "name": "symfony/console",
  10790. "version": "v6.4.35",
  10791. "source": {
  10792. "type": "git",
  10793. "url": "https://github.com/symfony/console.git",
  10794. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  10795. },
  10796. "dist": {
  10797. "type": "zip",
  10798. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  10799. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  10800. "shasum": ""
  10801. },
  10802. "require": {
  10803. "php": ">=8.1",
  10804. "symfony/deprecation-contracts": "^2.5|^3",
  10805. "symfony/polyfill-mbstring": "~1.0",
  10806. "symfony/service-contracts": "^2.5|^3",
  10807. "symfony/string": "^5.4|^6.0|^7.0"
  10808. },
  10809. "conflict": {
  10810. "symfony/dependency-injection": "<5.4",
  10811. "symfony/dotenv": "<5.4",
  10812. "symfony/event-dispatcher": "<5.4",
  10813. "symfony/lock": "<5.4",
  10814. "symfony/process": "<5.4"
  10815. },
  10816. "provide": {
  10817. "psr/log-implementation": "1.0|2.0|3.0"
  10818. },
  10819. "require-dev": {
  10820. "psr/log": "^1|^2|^3",
  10821. "symfony/config": "^5.4|^6.0|^7.0",
  10822. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10823. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10824. "symfony/http-foundation": "^6.4|^7.0",
  10825. "symfony/http-kernel": "^6.4|^7.0",
  10826. "symfony/lock": "^5.4|^6.0|^7.0",
  10827. "symfony/messenger": "^5.4|^6.0|^7.0",
  10828. "symfony/process": "^5.4|^6.0|^7.0",
  10829. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10830. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10831. },
  10832. "type": "library",
  10833. "autoload": {
  10834. "psr-4": {
  10835. "Symfony\\Component\\Console\\": ""
  10836. },
  10837. "exclude-from-classmap": [
  10838. "/Tests/"
  10839. ]
  10840. },
  10841. "notification-url": "https://packagist.org/downloads/",
  10842. "license": [
  10843. "MIT"
  10844. ],
  10845. "authors": [
  10846. {
  10847. "name": "Fabien Potencier",
  10848. "email": "fabien@symfony.com"
  10849. },
  10850. {
  10851. "name": "Symfony Community",
  10852. "homepage": "https://symfony.com/contributors"
  10853. }
  10854. ],
  10855. "description": "Eases the creation of beautiful and testable command line interfaces",
  10856. "homepage": "https://symfony.com",
  10857. "keywords": [
  10858. "cli",
  10859. "command-line",
  10860. "console",
  10861. "terminal"
  10862. ],
  10863. "support": {
  10864. "source": "https://github.com/symfony/console/tree/v6.4.35"
  10865. },
  10866. "funding": [
  10867. {
  10868. "url": "https://symfony.com/sponsor",
  10869. "type": "custom"
  10870. },
  10871. {
  10872. "url": "https://github.com/fabpot",
  10873. "type": "github"
  10874. },
  10875. {
  10876. "url": "https://github.com/nicolas-grekas",
  10877. "type": "github"
  10878. },
  10879. {
  10880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10881. "type": "tidelift"
  10882. }
  10883. ],
  10884. "time": "2026-03-06T13:31:08+00:00"
  10885. },
  10886. {
  10887. "name": "symfony/dependency-injection",
  10888. "version": "v6.4.35",
  10889. "source": {
  10890. "type": "git",
  10891. "url": "https://github.com/symfony/dependency-injection.git",
  10892. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  10893. },
  10894. "dist": {
  10895. "type": "zip",
  10896. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  10897. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  10898. "shasum": ""
  10899. },
  10900. "require": {
  10901. "php": ">=8.1",
  10902. "psr/container": "^1.1|^2.0",
  10903. "symfony/deprecation-contracts": "^2.5|^3",
  10904. "symfony/service-contracts": "^2.5|^3.0",
  10905. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10906. },
  10907. "conflict": {
  10908. "ext-psr": "<1.1|>=2",
  10909. "symfony/config": "<6.1",
  10910. "symfony/finder": "<5.4",
  10911. "symfony/proxy-manager-bridge": "<6.3",
  10912. "symfony/yaml": "<5.4"
  10913. },
  10914. "provide": {
  10915. "psr/container-implementation": "1.1|2.0",
  10916. "symfony/service-implementation": "1.1|2.0|3.0"
  10917. },
  10918. "require-dev": {
  10919. "symfony/config": "^6.1|^7.0",
  10920. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10921. "symfony/yaml": "^5.4|^6.0|^7.0"
  10922. },
  10923. "type": "library",
  10924. "autoload": {
  10925. "psr-4": {
  10926. "Symfony\\Component\\DependencyInjection\\": ""
  10927. },
  10928. "exclude-from-classmap": [
  10929. "/Tests/"
  10930. ]
  10931. },
  10932. "notification-url": "https://packagist.org/downloads/",
  10933. "license": [
  10934. "MIT"
  10935. ],
  10936. "authors": [
  10937. {
  10938. "name": "Fabien Potencier",
  10939. "email": "fabien@symfony.com"
  10940. },
  10941. {
  10942. "name": "Symfony Community",
  10943. "homepage": "https://symfony.com/contributors"
  10944. }
  10945. ],
  10946. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10947. "homepage": "https://symfony.com",
  10948. "support": {
  10949. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  10950. },
  10951. "funding": [
  10952. {
  10953. "url": "https://symfony.com/sponsor",
  10954. "type": "custom"
  10955. },
  10956. {
  10957. "url": "https://github.com/fabpot",
  10958. "type": "github"
  10959. },
  10960. {
  10961. "url": "https://github.com/nicolas-grekas",
  10962. "type": "github"
  10963. },
  10964. {
  10965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10966. "type": "tidelift"
  10967. }
  10968. ],
  10969. "time": "2026-02-26T12:16:01+00:00"
  10970. },
  10971. {
  10972. "name": "symfony/deprecation-contracts",
  10973. "version": "v3.6.0",
  10974. "source": {
  10975. "type": "git",
  10976. "url": "https://github.com/symfony/deprecation-contracts.git",
  10977. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  10978. },
  10979. "dist": {
  10980. "type": "zip",
  10981. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10982. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10983. "shasum": ""
  10984. },
  10985. "require": {
  10986. "php": ">=8.1"
  10987. },
  10988. "type": "library",
  10989. "extra": {
  10990. "thanks": {
  10991. "url": "https://github.com/symfony/contracts",
  10992. "name": "symfony/contracts"
  10993. },
  10994. "branch-alias": {
  10995. "dev-main": "3.6-dev"
  10996. }
  10997. },
  10998. "autoload": {
  10999. "files": [
  11000. "function.php"
  11001. ]
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "MIT"
  11006. ],
  11007. "authors": [
  11008. {
  11009. "name": "Nicolas Grekas",
  11010. "email": "p@tchwork.com"
  11011. },
  11012. {
  11013. "name": "Symfony Community",
  11014. "homepage": "https://symfony.com/contributors"
  11015. }
  11016. ],
  11017. "description": "A generic function and convention to trigger deprecation notices",
  11018. "homepage": "https://symfony.com",
  11019. "support": {
  11020. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  11021. },
  11022. "funding": [
  11023. {
  11024. "url": "https://symfony.com/sponsor",
  11025. "type": "custom"
  11026. },
  11027. {
  11028. "url": "https://github.com/fabpot",
  11029. "type": "github"
  11030. },
  11031. {
  11032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11033. "type": "tidelift"
  11034. }
  11035. ],
  11036. "time": "2024-09-25T14:21:43+00:00"
  11037. },
  11038. {
  11039. "name": "symfony/error-handler",
  11040. "version": "v6.4.32",
  11041. "source": {
  11042. "type": "git",
  11043. "url": "https://github.com/symfony/error-handler.git",
  11044. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  11045. },
  11046. "dist": {
  11047. "type": "zip",
  11048. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11049. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11050. "shasum": ""
  11051. },
  11052. "require": {
  11053. "php": ">=8.1",
  11054. "psr/log": "^1|^2|^3",
  11055. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11056. },
  11057. "conflict": {
  11058. "symfony/deprecation-contracts": "<2.5",
  11059. "symfony/http-kernel": "<6.4"
  11060. },
  11061. "require-dev": {
  11062. "symfony/deprecation-contracts": "^2.5|^3",
  11063. "symfony/http-kernel": "^6.4|^7.0",
  11064. "symfony/serializer": "^5.4|^6.0|^7.0"
  11065. },
  11066. "bin": [
  11067. "Resources/bin/patch-type-declarations"
  11068. ],
  11069. "type": "library",
  11070. "autoload": {
  11071. "psr-4": {
  11072. "Symfony\\Component\\ErrorHandler\\": ""
  11073. },
  11074. "exclude-from-classmap": [
  11075. "/Tests/"
  11076. ]
  11077. },
  11078. "notification-url": "https://packagist.org/downloads/",
  11079. "license": [
  11080. "MIT"
  11081. ],
  11082. "authors": [
  11083. {
  11084. "name": "Fabien Potencier",
  11085. "email": "fabien@symfony.com"
  11086. },
  11087. {
  11088. "name": "Symfony Community",
  11089. "homepage": "https://symfony.com/contributors"
  11090. }
  11091. ],
  11092. "description": "Provides tools to manage errors and ease debugging PHP code",
  11093. "homepage": "https://symfony.com",
  11094. "support": {
  11095. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  11096. },
  11097. "funding": [
  11098. {
  11099. "url": "https://symfony.com/sponsor",
  11100. "type": "custom"
  11101. },
  11102. {
  11103. "url": "https://github.com/fabpot",
  11104. "type": "github"
  11105. },
  11106. {
  11107. "url": "https://github.com/nicolas-grekas",
  11108. "type": "github"
  11109. },
  11110. {
  11111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11112. "type": "tidelift"
  11113. }
  11114. ],
  11115. "time": "2026-01-19T19:28:19+00:00"
  11116. },
  11117. {
  11118. "name": "symfony/event-dispatcher",
  11119. "version": "v6.4.32",
  11120. "source": {
  11121. "type": "git",
  11122. "url": "https://github.com/symfony/event-dispatcher.git",
  11123. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  11124. },
  11125. "dist": {
  11126. "type": "zip",
  11127. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  11128. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  11129. "shasum": ""
  11130. },
  11131. "require": {
  11132. "php": ">=8.1",
  11133. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11134. },
  11135. "conflict": {
  11136. "symfony/dependency-injection": "<5.4",
  11137. "symfony/service-contracts": "<2.5"
  11138. },
  11139. "provide": {
  11140. "psr/event-dispatcher-implementation": "1.0",
  11141. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11142. },
  11143. "require-dev": {
  11144. "psr/log": "^1|^2|^3",
  11145. "symfony/config": "^5.4|^6.0|^7.0",
  11146. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11147. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11148. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11149. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11150. "symfony/service-contracts": "^2.5|^3",
  11151. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11152. },
  11153. "type": "library",
  11154. "autoload": {
  11155. "psr-4": {
  11156. "Symfony\\Component\\EventDispatcher\\": ""
  11157. },
  11158. "exclude-from-classmap": [
  11159. "/Tests/"
  11160. ]
  11161. },
  11162. "notification-url": "https://packagist.org/downloads/",
  11163. "license": [
  11164. "MIT"
  11165. ],
  11166. "authors": [
  11167. {
  11168. "name": "Fabien Potencier",
  11169. "email": "fabien@symfony.com"
  11170. },
  11171. {
  11172. "name": "Symfony Community",
  11173. "homepage": "https://symfony.com/contributors"
  11174. }
  11175. ],
  11176. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11177. "homepage": "https://symfony.com",
  11178. "support": {
  11179. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  11180. },
  11181. "funding": [
  11182. {
  11183. "url": "https://symfony.com/sponsor",
  11184. "type": "custom"
  11185. },
  11186. {
  11187. "url": "https://github.com/fabpot",
  11188. "type": "github"
  11189. },
  11190. {
  11191. "url": "https://github.com/nicolas-grekas",
  11192. "type": "github"
  11193. },
  11194. {
  11195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11196. "type": "tidelift"
  11197. }
  11198. ],
  11199. "time": "2026-01-05T11:13:48+00:00"
  11200. },
  11201. {
  11202. "name": "symfony/event-dispatcher-contracts",
  11203. "version": "v3.6.0",
  11204. "source": {
  11205. "type": "git",
  11206. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11207. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  11208. },
  11209. "dist": {
  11210. "type": "zip",
  11211. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  11212. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  11213. "shasum": ""
  11214. },
  11215. "require": {
  11216. "php": ">=8.1",
  11217. "psr/event-dispatcher": "^1"
  11218. },
  11219. "type": "library",
  11220. "extra": {
  11221. "thanks": {
  11222. "url": "https://github.com/symfony/contracts",
  11223. "name": "symfony/contracts"
  11224. },
  11225. "branch-alias": {
  11226. "dev-main": "3.6-dev"
  11227. }
  11228. },
  11229. "autoload": {
  11230. "psr-4": {
  11231. "Symfony\\Contracts\\EventDispatcher\\": ""
  11232. }
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "MIT"
  11237. ],
  11238. "authors": [
  11239. {
  11240. "name": "Nicolas Grekas",
  11241. "email": "p@tchwork.com"
  11242. },
  11243. {
  11244. "name": "Symfony Community",
  11245. "homepage": "https://symfony.com/contributors"
  11246. }
  11247. ],
  11248. "description": "Generic abstractions related to dispatching event",
  11249. "homepage": "https://symfony.com",
  11250. "keywords": [
  11251. "abstractions",
  11252. "contracts",
  11253. "decoupling",
  11254. "interfaces",
  11255. "interoperability",
  11256. "standards"
  11257. ],
  11258. "support": {
  11259. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  11260. },
  11261. "funding": [
  11262. {
  11263. "url": "https://symfony.com/sponsor",
  11264. "type": "custom"
  11265. },
  11266. {
  11267. "url": "https://github.com/fabpot",
  11268. "type": "github"
  11269. },
  11270. {
  11271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11272. "type": "tidelift"
  11273. }
  11274. ],
  11275. "time": "2024-09-25T14:21:43+00:00"
  11276. },
  11277. {
  11278. "name": "symfony/filesystem",
  11279. "version": "v6.4.34",
  11280. "source": {
  11281. "type": "git",
  11282. "url": "https://github.com/symfony/filesystem.git",
  11283. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  11284. },
  11285. "dist": {
  11286. "type": "zip",
  11287. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11288. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11289. "shasum": ""
  11290. },
  11291. "require": {
  11292. "php": ">=8.1",
  11293. "symfony/polyfill-ctype": "~1.8",
  11294. "symfony/polyfill-mbstring": "~1.8"
  11295. },
  11296. "require-dev": {
  11297. "symfony/process": "^5.4|^6.4|^7.0"
  11298. },
  11299. "type": "library",
  11300. "autoload": {
  11301. "psr-4": {
  11302. "Symfony\\Component\\Filesystem\\": ""
  11303. },
  11304. "exclude-from-classmap": [
  11305. "/Tests/"
  11306. ]
  11307. },
  11308. "notification-url": "https://packagist.org/downloads/",
  11309. "license": [
  11310. "MIT"
  11311. ],
  11312. "authors": [
  11313. {
  11314. "name": "Fabien Potencier",
  11315. "email": "fabien@symfony.com"
  11316. },
  11317. {
  11318. "name": "Symfony Community",
  11319. "homepage": "https://symfony.com/contributors"
  11320. }
  11321. ],
  11322. "description": "Provides basic utilities for the filesystem",
  11323. "homepage": "https://symfony.com",
  11324. "support": {
  11325. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  11326. },
  11327. "funding": [
  11328. {
  11329. "url": "https://symfony.com/sponsor",
  11330. "type": "custom"
  11331. },
  11332. {
  11333. "url": "https://github.com/fabpot",
  11334. "type": "github"
  11335. },
  11336. {
  11337. "url": "https://github.com/nicolas-grekas",
  11338. "type": "github"
  11339. },
  11340. {
  11341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11342. "type": "tidelift"
  11343. }
  11344. ],
  11345. "time": "2026-02-24T17:51:06+00:00"
  11346. },
  11347. {
  11348. "name": "symfony/finder",
  11349. "version": "v6.4.34",
  11350. "source": {
  11351. "type": "git",
  11352. "url": "https://github.com/symfony/finder.git",
  11353. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  11354. },
  11355. "dist": {
  11356. "type": "zip",
  11357. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  11358. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  11359. "shasum": ""
  11360. },
  11361. "require": {
  11362. "php": ">=8.1"
  11363. },
  11364. "require-dev": {
  11365. "symfony/filesystem": "^6.0|^7.0"
  11366. },
  11367. "type": "library",
  11368. "autoload": {
  11369. "psr-4": {
  11370. "Symfony\\Component\\Finder\\": ""
  11371. },
  11372. "exclude-from-classmap": [
  11373. "/Tests/"
  11374. ]
  11375. },
  11376. "notification-url": "https://packagist.org/downloads/",
  11377. "license": [
  11378. "MIT"
  11379. ],
  11380. "authors": [
  11381. {
  11382. "name": "Fabien Potencier",
  11383. "email": "fabien@symfony.com"
  11384. },
  11385. {
  11386. "name": "Symfony Community",
  11387. "homepage": "https://symfony.com/contributors"
  11388. }
  11389. ],
  11390. "description": "Finds files and directories via an intuitive fluent interface",
  11391. "homepage": "https://symfony.com",
  11392. "support": {
  11393. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  11394. },
  11395. "funding": [
  11396. {
  11397. "url": "https://symfony.com/sponsor",
  11398. "type": "custom"
  11399. },
  11400. {
  11401. "url": "https://github.com/fabpot",
  11402. "type": "github"
  11403. },
  11404. {
  11405. "url": "https://github.com/nicolas-grekas",
  11406. "type": "github"
  11407. },
  11408. {
  11409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11410. "type": "tidelift"
  11411. }
  11412. ],
  11413. "time": "2026-01-28T15:16:37+00:00"
  11414. },
  11415. {
  11416. "name": "symfony/http-foundation",
  11417. "version": "v6.4.35",
  11418. "source": {
  11419. "type": "git",
  11420. "url": "https://github.com/symfony/http-foundation.git",
  11421. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  11422. },
  11423. "dist": {
  11424. "type": "zip",
  11425. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11426. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11427. "shasum": ""
  11428. },
  11429. "require": {
  11430. "php": ">=8.1",
  11431. "symfony/deprecation-contracts": "^2.5|^3",
  11432. "symfony/polyfill-mbstring": "~1.1",
  11433. "symfony/polyfill-php83": "^1.27"
  11434. },
  11435. "conflict": {
  11436. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11437. },
  11438. "require-dev": {
  11439. "doctrine/dbal": "^2.13.1|^3|^4",
  11440. "predis/predis": "^1.1|^2.0",
  11441. "symfony/cache": "^6.4.12|^7.1.5",
  11442. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11443. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11444. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11445. "symfony/mime": "^5.4|^6.0|^7.0",
  11446. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11447. },
  11448. "type": "library",
  11449. "autoload": {
  11450. "psr-4": {
  11451. "Symfony\\Component\\HttpFoundation\\": ""
  11452. },
  11453. "exclude-from-classmap": [
  11454. "/Tests/"
  11455. ]
  11456. },
  11457. "notification-url": "https://packagist.org/downloads/",
  11458. "license": [
  11459. "MIT"
  11460. ],
  11461. "authors": [
  11462. {
  11463. "name": "Fabien Potencier",
  11464. "email": "fabien@symfony.com"
  11465. },
  11466. {
  11467. "name": "Symfony Community",
  11468. "homepage": "https://symfony.com/contributors"
  11469. }
  11470. ],
  11471. "description": "Defines an object-oriented layer for the HTTP specification",
  11472. "homepage": "https://symfony.com",
  11473. "support": {
  11474. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  11475. },
  11476. "funding": [
  11477. {
  11478. "url": "https://symfony.com/sponsor",
  11479. "type": "custom"
  11480. },
  11481. {
  11482. "url": "https://github.com/fabpot",
  11483. "type": "github"
  11484. },
  11485. {
  11486. "url": "https://github.com/nicolas-grekas",
  11487. "type": "github"
  11488. },
  11489. {
  11490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11491. "type": "tidelift"
  11492. }
  11493. ],
  11494. "time": "2026-03-06T11:15:58+00:00"
  11495. },
  11496. {
  11497. "name": "symfony/http-kernel",
  11498. "version": "v6.4.35",
  11499. "source": {
  11500. "type": "git",
  11501. "url": "https://github.com/symfony/http-kernel.git",
  11502. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  11503. },
  11504. "dist": {
  11505. "type": "zip",
  11506. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  11507. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  11508. "shasum": ""
  11509. },
  11510. "require": {
  11511. "php": ">=8.1",
  11512. "psr/log": "^1|^2|^3",
  11513. "symfony/deprecation-contracts": "^2.5|^3",
  11514. "symfony/error-handler": "^6.4|^7.0",
  11515. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11516. "symfony/http-foundation": "^6.4|^7.0",
  11517. "symfony/polyfill-ctype": "^1.8"
  11518. },
  11519. "conflict": {
  11520. "symfony/browser-kit": "<5.4",
  11521. "symfony/cache": "<5.4",
  11522. "symfony/config": "<6.1",
  11523. "symfony/console": "<5.4",
  11524. "symfony/dependency-injection": "<6.4",
  11525. "symfony/doctrine-bridge": "<5.4",
  11526. "symfony/form": "<5.4",
  11527. "symfony/http-client": "<5.4",
  11528. "symfony/http-client-contracts": "<2.5",
  11529. "symfony/mailer": "<5.4",
  11530. "symfony/messenger": "<5.4",
  11531. "symfony/translation": "<5.4",
  11532. "symfony/translation-contracts": "<2.5",
  11533. "symfony/twig-bridge": "<5.4",
  11534. "symfony/validator": "<6.4",
  11535. "symfony/var-dumper": "<6.3",
  11536. "twig/twig": "<2.13"
  11537. },
  11538. "provide": {
  11539. "psr/log-implementation": "1.0|2.0|3.0"
  11540. },
  11541. "require-dev": {
  11542. "psr/cache": "^1.0|^2.0|^3.0",
  11543. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11544. "symfony/clock": "^6.2|^7.0",
  11545. "symfony/config": "^6.1|^7.0",
  11546. "symfony/console": "^5.4|^6.0|^7.0",
  11547. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11548. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  11549. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11550. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11551. "symfony/finder": "^5.4|^6.0|^7.0",
  11552. "symfony/http-client-contracts": "^2.5|^3",
  11553. "symfony/process": "^5.4|^6.0|^7.0",
  11554. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11555. "symfony/routing": "^5.4|^6.0|^7.0",
  11556. "symfony/serializer": "^6.4.4|^7.0.4",
  11557. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11558. "symfony/translation": "^5.4|^6.0|^7.0",
  11559. "symfony/translation-contracts": "^2.5|^3",
  11560. "symfony/uid": "^5.4|^6.0|^7.0",
  11561. "symfony/validator": "^6.4|^7.0",
  11562. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11563. "symfony/var-exporter": "^6.2|^7.0",
  11564. "twig/twig": "^2.13|^3.0.4"
  11565. },
  11566. "type": "library",
  11567. "autoload": {
  11568. "psr-4": {
  11569. "Symfony\\Component\\HttpKernel\\": ""
  11570. },
  11571. "exclude-from-classmap": [
  11572. "/Tests/"
  11573. ]
  11574. },
  11575. "notification-url": "https://packagist.org/downloads/",
  11576. "license": [
  11577. "MIT"
  11578. ],
  11579. "authors": [
  11580. {
  11581. "name": "Fabien Potencier",
  11582. "email": "fabien@symfony.com"
  11583. },
  11584. {
  11585. "name": "Symfony Community",
  11586. "homepage": "https://symfony.com/contributors"
  11587. }
  11588. ],
  11589. "description": "Provides a structured process for converting a Request into a Response",
  11590. "homepage": "https://symfony.com",
  11591. "support": {
  11592. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  11593. },
  11594. "funding": [
  11595. {
  11596. "url": "https://symfony.com/sponsor",
  11597. "type": "custom"
  11598. },
  11599. {
  11600. "url": "https://github.com/fabpot",
  11601. "type": "github"
  11602. },
  11603. {
  11604. "url": "https://github.com/nicolas-grekas",
  11605. "type": "github"
  11606. },
  11607. {
  11608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11609. "type": "tidelift"
  11610. }
  11611. ],
  11612. "time": "2026-03-06T16:28:07+00:00"
  11613. },
  11614. {
  11615. "name": "symfony/mailer",
  11616. "version": "v6.4.34",
  11617. "source": {
  11618. "type": "git",
  11619. "url": "https://github.com/symfony/mailer.git",
  11620. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  11621. },
  11622. "dist": {
  11623. "type": "zip",
  11624. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  11625. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  11626. "shasum": ""
  11627. },
  11628. "require": {
  11629. "egulias/email-validator": "^2.1.10|^3|^4",
  11630. "php": ">=8.1",
  11631. "psr/event-dispatcher": "^1",
  11632. "psr/log": "^1|^2|^3",
  11633. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11634. "symfony/mime": "^6.2|^7.0",
  11635. "symfony/service-contracts": "^2.5|^3"
  11636. },
  11637. "conflict": {
  11638. "symfony/http-client-contracts": "<2.5",
  11639. "symfony/http-kernel": "<5.4",
  11640. "symfony/messenger": "<6.2",
  11641. "symfony/mime": "<6.2",
  11642. "symfony/twig-bridge": "<6.2.1"
  11643. },
  11644. "require-dev": {
  11645. "symfony/console": "^5.4|^6.0|^7.0",
  11646. "symfony/http-client": "^5.4|^6.0|^7.0",
  11647. "symfony/messenger": "^6.2|^7.0",
  11648. "symfony/twig-bridge": "^6.2|^7.0"
  11649. },
  11650. "type": "library",
  11651. "autoload": {
  11652. "psr-4": {
  11653. "Symfony\\Component\\Mailer\\": ""
  11654. },
  11655. "exclude-from-classmap": [
  11656. "/Tests/"
  11657. ]
  11658. },
  11659. "notification-url": "https://packagist.org/downloads/",
  11660. "license": [
  11661. "MIT"
  11662. ],
  11663. "authors": [
  11664. {
  11665. "name": "Fabien Potencier",
  11666. "email": "fabien@symfony.com"
  11667. },
  11668. {
  11669. "name": "Symfony Community",
  11670. "homepage": "https://symfony.com/contributors"
  11671. }
  11672. ],
  11673. "description": "Helps sending emails",
  11674. "homepage": "https://symfony.com",
  11675. "support": {
  11676. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  11677. },
  11678. "funding": [
  11679. {
  11680. "url": "https://symfony.com/sponsor",
  11681. "type": "custom"
  11682. },
  11683. {
  11684. "url": "https://github.com/fabpot",
  11685. "type": "github"
  11686. },
  11687. {
  11688. "url": "https://github.com/nicolas-grekas",
  11689. "type": "github"
  11690. },
  11691. {
  11692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11693. "type": "tidelift"
  11694. }
  11695. ],
  11696. "time": "2026-02-24T09:34:36+00:00"
  11697. },
  11698. {
  11699. "name": "symfony/mime",
  11700. "version": "v6.4.35",
  11701. "source": {
  11702. "type": "git",
  11703. "url": "https://github.com/symfony/mime.git",
  11704. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  11705. },
  11706. "dist": {
  11707. "type": "zip",
  11708. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11709. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11710. "shasum": ""
  11711. },
  11712. "require": {
  11713. "php": ">=8.1",
  11714. "symfony/deprecation-contracts": "^2.5|^3",
  11715. "symfony/polyfill-intl-idn": "^1.10",
  11716. "symfony/polyfill-mbstring": "^1.0"
  11717. },
  11718. "conflict": {
  11719. "egulias/email-validator": "~3.0.0",
  11720. "phpdocumentor/reflection-docblock": "<3.2.2",
  11721. "phpdocumentor/type-resolver": "<1.4.0",
  11722. "symfony/mailer": "<5.4",
  11723. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11724. },
  11725. "require-dev": {
  11726. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11727. "league/html-to-markdown": "^5.0",
  11728. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11729. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11730. "symfony/process": "^5.4|^6.4|^7.0",
  11731. "symfony/property-access": "^5.4|^6.0|^7.0",
  11732. "symfony/property-info": "^5.4|^6.0|^7.0",
  11733. "symfony/serializer": "^6.4.3|^7.0.3"
  11734. },
  11735. "type": "library",
  11736. "autoload": {
  11737. "psr-4": {
  11738. "Symfony\\Component\\Mime\\": ""
  11739. },
  11740. "exclude-from-classmap": [
  11741. "/Tests/"
  11742. ]
  11743. },
  11744. "notification-url": "https://packagist.org/downloads/",
  11745. "license": [
  11746. "MIT"
  11747. ],
  11748. "authors": [
  11749. {
  11750. "name": "Fabien Potencier",
  11751. "email": "fabien@symfony.com"
  11752. },
  11753. {
  11754. "name": "Symfony Community",
  11755. "homepage": "https://symfony.com/contributors"
  11756. }
  11757. ],
  11758. "description": "Allows manipulating MIME messages",
  11759. "homepage": "https://symfony.com",
  11760. "keywords": [
  11761. "mime",
  11762. "mime-type"
  11763. ],
  11764. "support": {
  11765. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  11766. },
  11767. "funding": [
  11768. {
  11769. "url": "https://symfony.com/sponsor",
  11770. "type": "custom"
  11771. },
  11772. {
  11773. "url": "https://github.com/fabpot",
  11774. "type": "github"
  11775. },
  11776. {
  11777. "url": "https://github.com/nicolas-grekas",
  11778. "type": "github"
  11779. },
  11780. {
  11781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11782. "type": "tidelift"
  11783. }
  11784. ],
  11785. "time": "2026-03-05T11:25:28+00:00"
  11786. },
  11787. {
  11788. "name": "symfony/polyfill-ctype",
  11789. "version": "v1.33.0",
  11790. "source": {
  11791. "type": "git",
  11792. "url": "https://github.com/symfony/polyfill-ctype.git",
  11793. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11794. },
  11795. "dist": {
  11796. "type": "zip",
  11797. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11798. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11799. "shasum": ""
  11800. },
  11801. "require": {
  11802. "php": ">=7.2"
  11803. },
  11804. "provide": {
  11805. "ext-ctype": "*"
  11806. },
  11807. "suggest": {
  11808. "ext-ctype": "For best performance"
  11809. },
  11810. "type": "library",
  11811. "extra": {
  11812. "thanks": {
  11813. "url": "https://github.com/symfony/polyfill",
  11814. "name": "symfony/polyfill"
  11815. }
  11816. },
  11817. "autoload": {
  11818. "files": [
  11819. "bootstrap.php"
  11820. ],
  11821. "psr-4": {
  11822. "Symfony\\Polyfill\\Ctype\\": ""
  11823. }
  11824. },
  11825. "notification-url": "https://packagist.org/downloads/",
  11826. "license": [
  11827. "MIT"
  11828. ],
  11829. "authors": [
  11830. {
  11831. "name": "Gert de Pagter",
  11832. "email": "BackEndTea@gmail.com"
  11833. },
  11834. {
  11835. "name": "Symfony Community",
  11836. "homepage": "https://symfony.com/contributors"
  11837. }
  11838. ],
  11839. "description": "Symfony polyfill for ctype functions",
  11840. "homepage": "https://symfony.com",
  11841. "keywords": [
  11842. "compatibility",
  11843. "ctype",
  11844. "polyfill",
  11845. "portable"
  11846. ],
  11847. "support": {
  11848. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  11849. },
  11850. "funding": [
  11851. {
  11852. "url": "https://symfony.com/sponsor",
  11853. "type": "custom"
  11854. },
  11855. {
  11856. "url": "https://github.com/fabpot",
  11857. "type": "github"
  11858. },
  11859. {
  11860. "url": "https://github.com/nicolas-grekas",
  11861. "type": "github"
  11862. },
  11863. {
  11864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11865. "type": "tidelift"
  11866. }
  11867. ],
  11868. "time": "2024-09-09T11:45:10+00:00"
  11869. },
  11870. {
  11871. "name": "symfony/polyfill-iconv",
  11872. "version": "v1.33.0",
  11873. "source": {
  11874. "type": "git",
  11875. "url": "https://github.com/symfony/polyfill-iconv.git",
  11876. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  11877. },
  11878. "dist": {
  11879. "type": "zip",
  11880. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11881. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11882. "shasum": ""
  11883. },
  11884. "require": {
  11885. "php": ">=7.2"
  11886. },
  11887. "provide": {
  11888. "ext-iconv": "*"
  11889. },
  11890. "suggest": {
  11891. "ext-iconv": "For best performance"
  11892. },
  11893. "type": "library",
  11894. "extra": {
  11895. "thanks": {
  11896. "url": "https://github.com/symfony/polyfill",
  11897. "name": "symfony/polyfill"
  11898. }
  11899. },
  11900. "autoload": {
  11901. "files": [
  11902. "bootstrap.php"
  11903. ],
  11904. "psr-4": {
  11905. "Symfony\\Polyfill\\Iconv\\": ""
  11906. }
  11907. },
  11908. "notification-url": "https://packagist.org/downloads/",
  11909. "license": [
  11910. "MIT"
  11911. ],
  11912. "authors": [
  11913. {
  11914. "name": "Nicolas Grekas",
  11915. "email": "p@tchwork.com"
  11916. },
  11917. {
  11918. "name": "Symfony Community",
  11919. "homepage": "https://symfony.com/contributors"
  11920. }
  11921. ],
  11922. "description": "Symfony polyfill for the Iconv extension",
  11923. "homepage": "https://symfony.com",
  11924. "keywords": [
  11925. "compatibility",
  11926. "iconv",
  11927. "polyfill",
  11928. "portable",
  11929. "shim"
  11930. ],
  11931. "support": {
  11932. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  11933. },
  11934. "funding": [
  11935. {
  11936. "url": "https://symfony.com/sponsor",
  11937. "type": "custom"
  11938. },
  11939. {
  11940. "url": "https://github.com/fabpot",
  11941. "type": "github"
  11942. },
  11943. {
  11944. "url": "https://github.com/nicolas-grekas",
  11945. "type": "github"
  11946. },
  11947. {
  11948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11949. "type": "tidelift"
  11950. }
  11951. ],
  11952. "time": "2024-09-17T14:58:18+00:00"
  11953. },
  11954. {
  11955. "name": "symfony/polyfill-intl-grapheme",
  11956. "version": "v1.33.0",
  11957. "source": {
  11958. "type": "git",
  11959. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11960. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  11961. },
  11962. "dist": {
  11963. "type": "zip",
  11964. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11965. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11966. "shasum": ""
  11967. },
  11968. "require": {
  11969. "php": ">=7.2"
  11970. },
  11971. "suggest": {
  11972. "ext-intl": "For best performance"
  11973. },
  11974. "type": "library",
  11975. "extra": {
  11976. "thanks": {
  11977. "url": "https://github.com/symfony/polyfill",
  11978. "name": "symfony/polyfill"
  11979. }
  11980. },
  11981. "autoload": {
  11982. "files": [
  11983. "bootstrap.php"
  11984. ],
  11985. "psr-4": {
  11986. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11987. }
  11988. },
  11989. "notification-url": "https://packagist.org/downloads/",
  11990. "license": [
  11991. "MIT"
  11992. ],
  11993. "authors": [
  11994. {
  11995. "name": "Nicolas Grekas",
  11996. "email": "p@tchwork.com"
  11997. },
  11998. {
  11999. "name": "Symfony Community",
  12000. "homepage": "https://symfony.com/contributors"
  12001. }
  12002. ],
  12003. "description": "Symfony polyfill for intl's grapheme_* functions",
  12004. "homepage": "https://symfony.com",
  12005. "keywords": [
  12006. "compatibility",
  12007. "grapheme",
  12008. "intl",
  12009. "polyfill",
  12010. "portable",
  12011. "shim"
  12012. ],
  12013. "support": {
  12014. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  12015. },
  12016. "funding": [
  12017. {
  12018. "url": "https://symfony.com/sponsor",
  12019. "type": "custom"
  12020. },
  12021. {
  12022. "url": "https://github.com/fabpot",
  12023. "type": "github"
  12024. },
  12025. {
  12026. "url": "https://github.com/nicolas-grekas",
  12027. "type": "github"
  12028. },
  12029. {
  12030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12031. "type": "tidelift"
  12032. }
  12033. ],
  12034. "time": "2025-06-27T09:58:17+00:00"
  12035. },
  12036. {
  12037. "name": "symfony/polyfill-intl-idn",
  12038. "version": "v1.33.0",
  12039. "source": {
  12040. "type": "git",
  12041. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12042. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  12043. },
  12044. "dist": {
  12045. "type": "zip",
  12046. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12047. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12048. "shasum": ""
  12049. },
  12050. "require": {
  12051. "php": ">=7.2",
  12052. "symfony/polyfill-intl-normalizer": "^1.10"
  12053. },
  12054. "suggest": {
  12055. "ext-intl": "For best performance"
  12056. },
  12057. "type": "library",
  12058. "extra": {
  12059. "thanks": {
  12060. "url": "https://github.com/symfony/polyfill",
  12061. "name": "symfony/polyfill"
  12062. }
  12063. },
  12064. "autoload": {
  12065. "files": [
  12066. "bootstrap.php"
  12067. ],
  12068. "psr-4": {
  12069. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12070. }
  12071. },
  12072. "notification-url": "https://packagist.org/downloads/",
  12073. "license": [
  12074. "MIT"
  12075. ],
  12076. "authors": [
  12077. {
  12078. "name": "Laurent Bassin",
  12079. "email": "laurent@bassin.info"
  12080. },
  12081. {
  12082. "name": "Trevor Rowbotham",
  12083. "email": "trevor.rowbotham@pm.me"
  12084. },
  12085. {
  12086. "name": "Symfony Community",
  12087. "homepage": "https://symfony.com/contributors"
  12088. }
  12089. ],
  12090. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12091. "homepage": "https://symfony.com",
  12092. "keywords": [
  12093. "compatibility",
  12094. "idn",
  12095. "intl",
  12096. "polyfill",
  12097. "portable",
  12098. "shim"
  12099. ],
  12100. "support": {
  12101. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  12102. },
  12103. "funding": [
  12104. {
  12105. "url": "https://symfony.com/sponsor",
  12106. "type": "custom"
  12107. },
  12108. {
  12109. "url": "https://github.com/fabpot",
  12110. "type": "github"
  12111. },
  12112. {
  12113. "url": "https://github.com/nicolas-grekas",
  12114. "type": "github"
  12115. },
  12116. {
  12117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12118. "type": "tidelift"
  12119. }
  12120. ],
  12121. "time": "2024-09-10T14:38:51+00:00"
  12122. },
  12123. {
  12124. "name": "symfony/polyfill-intl-normalizer",
  12125. "version": "v1.33.0",
  12126. "source": {
  12127. "type": "git",
  12128. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12129. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12130. },
  12131. "dist": {
  12132. "type": "zip",
  12133. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12134. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12135. "shasum": ""
  12136. },
  12137. "require": {
  12138. "php": ">=7.2"
  12139. },
  12140. "suggest": {
  12141. "ext-intl": "For best performance"
  12142. },
  12143. "type": "library",
  12144. "extra": {
  12145. "thanks": {
  12146. "url": "https://github.com/symfony/polyfill",
  12147. "name": "symfony/polyfill"
  12148. }
  12149. },
  12150. "autoload": {
  12151. "files": [
  12152. "bootstrap.php"
  12153. ],
  12154. "psr-4": {
  12155. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12156. },
  12157. "classmap": [
  12158. "Resources/stubs"
  12159. ]
  12160. },
  12161. "notification-url": "https://packagist.org/downloads/",
  12162. "license": [
  12163. "MIT"
  12164. ],
  12165. "authors": [
  12166. {
  12167. "name": "Nicolas Grekas",
  12168. "email": "p@tchwork.com"
  12169. },
  12170. {
  12171. "name": "Symfony Community",
  12172. "homepage": "https://symfony.com/contributors"
  12173. }
  12174. ],
  12175. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12176. "homepage": "https://symfony.com",
  12177. "keywords": [
  12178. "compatibility",
  12179. "intl",
  12180. "normalizer",
  12181. "polyfill",
  12182. "portable",
  12183. "shim"
  12184. ],
  12185. "support": {
  12186. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  12187. },
  12188. "funding": [
  12189. {
  12190. "url": "https://symfony.com/sponsor",
  12191. "type": "custom"
  12192. },
  12193. {
  12194. "url": "https://github.com/fabpot",
  12195. "type": "github"
  12196. },
  12197. {
  12198. "url": "https://github.com/nicolas-grekas",
  12199. "type": "github"
  12200. },
  12201. {
  12202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12203. "type": "tidelift"
  12204. }
  12205. ],
  12206. "time": "2024-09-09T11:45:10+00:00"
  12207. },
  12208. {
  12209. "name": "symfony/polyfill-mbstring",
  12210. "version": "v1.33.0",
  12211. "source": {
  12212. "type": "git",
  12213. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12214. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  12215. },
  12216. "dist": {
  12217. "type": "zip",
  12218. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12219. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12220. "shasum": ""
  12221. },
  12222. "require": {
  12223. "ext-iconv": "*",
  12224. "php": ">=7.2"
  12225. },
  12226. "provide": {
  12227. "ext-mbstring": "*"
  12228. },
  12229. "suggest": {
  12230. "ext-mbstring": "For best performance"
  12231. },
  12232. "type": "library",
  12233. "extra": {
  12234. "thanks": {
  12235. "url": "https://github.com/symfony/polyfill",
  12236. "name": "symfony/polyfill"
  12237. }
  12238. },
  12239. "autoload": {
  12240. "files": [
  12241. "bootstrap.php"
  12242. ],
  12243. "psr-4": {
  12244. "Symfony\\Polyfill\\Mbstring\\": ""
  12245. }
  12246. },
  12247. "notification-url": "https://packagist.org/downloads/",
  12248. "license": [
  12249. "MIT"
  12250. ],
  12251. "authors": [
  12252. {
  12253. "name": "Nicolas Grekas",
  12254. "email": "p@tchwork.com"
  12255. },
  12256. {
  12257. "name": "Symfony Community",
  12258. "homepage": "https://symfony.com/contributors"
  12259. }
  12260. ],
  12261. "description": "Symfony polyfill for the Mbstring extension",
  12262. "homepage": "https://symfony.com",
  12263. "keywords": [
  12264. "compatibility",
  12265. "mbstring",
  12266. "polyfill",
  12267. "portable",
  12268. "shim"
  12269. ],
  12270. "support": {
  12271. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  12272. },
  12273. "funding": [
  12274. {
  12275. "url": "https://symfony.com/sponsor",
  12276. "type": "custom"
  12277. },
  12278. {
  12279. "url": "https://github.com/fabpot",
  12280. "type": "github"
  12281. },
  12282. {
  12283. "url": "https://github.com/nicolas-grekas",
  12284. "type": "github"
  12285. },
  12286. {
  12287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12288. "type": "tidelift"
  12289. }
  12290. ],
  12291. "time": "2024-12-23T08:48:59+00:00"
  12292. },
  12293. {
  12294. "name": "symfony/polyfill-php81",
  12295. "version": "v1.33.0",
  12296. "source": {
  12297. "type": "git",
  12298. "url": "https://github.com/symfony/polyfill-php81.git",
  12299. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12300. },
  12301. "dist": {
  12302. "type": "zip",
  12303. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12304. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12305. "shasum": ""
  12306. },
  12307. "require": {
  12308. "php": ">=7.2"
  12309. },
  12310. "type": "library",
  12311. "extra": {
  12312. "thanks": {
  12313. "url": "https://github.com/symfony/polyfill",
  12314. "name": "symfony/polyfill"
  12315. }
  12316. },
  12317. "autoload": {
  12318. "files": [
  12319. "bootstrap.php"
  12320. ],
  12321. "psr-4": {
  12322. "Symfony\\Polyfill\\Php81\\": ""
  12323. },
  12324. "classmap": [
  12325. "Resources/stubs"
  12326. ]
  12327. },
  12328. "notification-url": "https://packagist.org/downloads/",
  12329. "license": [
  12330. "MIT"
  12331. ],
  12332. "authors": [
  12333. {
  12334. "name": "Nicolas Grekas",
  12335. "email": "p@tchwork.com"
  12336. },
  12337. {
  12338. "name": "Symfony Community",
  12339. "homepage": "https://symfony.com/contributors"
  12340. }
  12341. ],
  12342. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12343. "homepage": "https://symfony.com",
  12344. "keywords": [
  12345. "compatibility",
  12346. "polyfill",
  12347. "portable",
  12348. "shim"
  12349. ],
  12350. "support": {
  12351. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12352. },
  12353. "funding": [
  12354. {
  12355. "url": "https://symfony.com/sponsor",
  12356. "type": "custom"
  12357. },
  12358. {
  12359. "url": "https://github.com/fabpot",
  12360. "type": "github"
  12361. },
  12362. {
  12363. "url": "https://github.com/nicolas-grekas",
  12364. "type": "github"
  12365. },
  12366. {
  12367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12368. "type": "tidelift"
  12369. }
  12370. ],
  12371. "time": "2024-09-09T11:45:10+00:00"
  12372. },
  12373. {
  12374. "name": "symfony/polyfill-php83",
  12375. "version": "v1.33.0",
  12376. "source": {
  12377. "type": "git",
  12378. "url": "https://github.com/symfony/polyfill-php83.git",
  12379. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  12380. },
  12381. "dist": {
  12382. "type": "zip",
  12383. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12384. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12385. "shasum": ""
  12386. },
  12387. "require": {
  12388. "php": ">=7.2"
  12389. },
  12390. "type": "library",
  12391. "extra": {
  12392. "thanks": {
  12393. "url": "https://github.com/symfony/polyfill",
  12394. "name": "symfony/polyfill"
  12395. }
  12396. },
  12397. "autoload": {
  12398. "files": [
  12399. "bootstrap.php"
  12400. ],
  12401. "psr-4": {
  12402. "Symfony\\Polyfill\\Php83\\": ""
  12403. },
  12404. "classmap": [
  12405. "Resources/stubs"
  12406. ]
  12407. },
  12408. "notification-url": "https://packagist.org/downloads/",
  12409. "license": [
  12410. "MIT"
  12411. ],
  12412. "authors": [
  12413. {
  12414. "name": "Nicolas Grekas",
  12415. "email": "p@tchwork.com"
  12416. },
  12417. {
  12418. "name": "Symfony Community",
  12419. "homepage": "https://symfony.com/contributors"
  12420. }
  12421. ],
  12422. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12423. "homepage": "https://symfony.com",
  12424. "keywords": [
  12425. "compatibility",
  12426. "polyfill",
  12427. "portable",
  12428. "shim"
  12429. ],
  12430. "support": {
  12431. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  12432. },
  12433. "funding": [
  12434. {
  12435. "url": "https://symfony.com/sponsor",
  12436. "type": "custom"
  12437. },
  12438. {
  12439. "url": "https://github.com/fabpot",
  12440. "type": "github"
  12441. },
  12442. {
  12443. "url": "https://github.com/nicolas-grekas",
  12444. "type": "github"
  12445. },
  12446. {
  12447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12448. "type": "tidelift"
  12449. }
  12450. ],
  12451. "time": "2025-07-08T02:45:35+00:00"
  12452. },
  12453. {
  12454. "name": "symfony/polyfill-php84",
  12455. "version": "v1.33.0",
  12456. "source": {
  12457. "type": "git",
  12458. "url": "https://github.com/symfony/polyfill-php84.git",
  12459. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12460. },
  12461. "dist": {
  12462. "type": "zip",
  12463. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12464. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12465. "shasum": ""
  12466. },
  12467. "require": {
  12468. "php": ">=7.2"
  12469. },
  12470. "type": "library",
  12471. "extra": {
  12472. "thanks": {
  12473. "url": "https://github.com/symfony/polyfill",
  12474. "name": "symfony/polyfill"
  12475. }
  12476. },
  12477. "autoload": {
  12478. "files": [
  12479. "bootstrap.php"
  12480. ],
  12481. "psr-4": {
  12482. "Symfony\\Polyfill\\Php84\\": ""
  12483. },
  12484. "classmap": [
  12485. "Resources/stubs"
  12486. ]
  12487. },
  12488. "notification-url": "https://packagist.org/downloads/",
  12489. "license": [
  12490. "MIT"
  12491. ],
  12492. "authors": [
  12493. {
  12494. "name": "Nicolas Grekas",
  12495. "email": "p@tchwork.com"
  12496. },
  12497. {
  12498. "name": "Symfony Community",
  12499. "homepage": "https://symfony.com/contributors"
  12500. }
  12501. ],
  12502. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12503. "homepage": "https://symfony.com",
  12504. "keywords": [
  12505. "compatibility",
  12506. "polyfill",
  12507. "portable",
  12508. "shim"
  12509. ],
  12510. "support": {
  12511. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12512. },
  12513. "funding": [
  12514. {
  12515. "url": "https://symfony.com/sponsor",
  12516. "type": "custom"
  12517. },
  12518. {
  12519. "url": "https://github.com/fabpot",
  12520. "type": "github"
  12521. },
  12522. {
  12523. "url": "https://github.com/nicolas-grekas",
  12524. "type": "github"
  12525. },
  12526. {
  12527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12528. "type": "tidelift"
  12529. }
  12530. ],
  12531. "time": "2025-06-24T13:30:11+00:00"
  12532. },
  12533. {
  12534. "name": "symfony/process",
  12535. "version": "v6.4.33",
  12536. "source": {
  12537. "type": "git",
  12538. "url": "https://github.com/symfony/process.git",
  12539. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  12540. },
  12541. "dist": {
  12542. "type": "zip",
  12543. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  12544. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  12545. "shasum": ""
  12546. },
  12547. "require": {
  12548. "php": ">=8.1"
  12549. },
  12550. "type": "library",
  12551. "autoload": {
  12552. "psr-4": {
  12553. "Symfony\\Component\\Process\\": ""
  12554. },
  12555. "exclude-from-classmap": [
  12556. "/Tests/"
  12557. ]
  12558. },
  12559. "notification-url": "https://packagist.org/downloads/",
  12560. "license": [
  12561. "MIT"
  12562. ],
  12563. "authors": [
  12564. {
  12565. "name": "Fabien Potencier",
  12566. "email": "fabien@symfony.com"
  12567. },
  12568. {
  12569. "name": "Symfony Community",
  12570. "homepage": "https://symfony.com/contributors"
  12571. }
  12572. ],
  12573. "description": "Executes commands in sub-processes",
  12574. "homepage": "https://symfony.com",
  12575. "support": {
  12576. "source": "https://github.com/symfony/process/tree/v6.4.33"
  12577. },
  12578. "funding": [
  12579. {
  12580. "url": "https://symfony.com/sponsor",
  12581. "type": "custom"
  12582. },
  12583. {
  12584. "url": "https://github.com/fabpot",
  12585. "type": "github"
  12586. },
  12587. {
  12588. "url": "https://github.com/nicolas-grekas",
  12589. "type": "github"
  12590. },
  12591. {
  12592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12593. "type": "tidelift"
  12594. }
  12595. ],
  12596. "time": "2026-01-23T16:02:12+00:00"
  12597. },
  12598. {
  12599. "name": "symfony/psr-http-message-bridge",
  12600. "version": "v6.4.32",
  12601. "source": {
  12602. "type": "git",
  12603. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12604. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  12605. },
  12606. "dist": {
  12607. "type": "zip",
  12608. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  12609. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  12610. "shasum": ""
  12611. },
  12612. "require": {
  12613. "php": ">=8.1",
  12614. "psr/http-message": "^1.0|^2.0",
  12615. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12616. },
  12617. "conflict": {
  12618. "php-http/discovery": "<1.15",
  12619. "symfony/http-kernel": "<6.2"
  12620. },
  12621. "require-dev": {
  12622. "nyholm/psr7": "^1.1",
  12623. "php-http/discovery": "^1.15",
  12624. "psr/log": "^1.1.4|^2|^3",
  12625. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12626. "symfony/config": "^5.4|^6.0|^7.0",
  12627. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12628. "symfony/framework-bundle": "^6.2|^7.0",
  12629. "symfony/http-kernel": "^6.2|^7.0"
  12630. },
  12631. "type": "symfony-bridge",
  12632. "autoload": {
  12633. "psr-4": {
  12634. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12635. },
  12636. "exclude-from-classmap": [
  12637. "/Tests/"
  12638. ]
  12639. },
  12640. "notification-url": "https://packagist.org/downloads/",
  12641. "license": [
  12642. "MIT"
  12643. ],
  12644. "authors": [
  12645. {
  12646. "name": "Fabien Potencier",
  12647. "email": "fabien@symfony.com"
  12648. },
  12649. {
  12650. "name": "Symfony Community",
  12651. "homepage": "https://symfony.com/contributors"
  12652. }
  12653. ],
  12654. "description": "PSR HTTP message bridge",
  12655. "homepage": "https://symfony.com",
  12656. "keywords": [
  12657. "http",
  12658. "http-message",
  12659. "psr-17",
  12660. "psr-7"
  12661. ],
  12662. "support": {
  12663. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  12664. },
  12665. "funding": [
  12666. {
  12667. "url": "https://symfony.com/sponsor",
  12668. "type": "custom"
  12669. },
  12670. {
  12671. "url": "https://github.com/fabpot",
  12672. "type": "github"
  12673. },
  12674. {
  12675. "url": "https://github.com/nicolas-grekas",
  12676. "type": "github"
  12677. },
  12678. {
  12679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12680. "type": "tidelift"
  12681. }
  12682. ],
  12683. "time": "2026-01-02T11:59:06+00:00"
  12684. },
  12685. {
  12686. "name": "symfony/routing",
  12687. "version": "v6.4.34",
  12688. "source": {
  12689. "type": "git",
  12690. "url": "https://github.com/symfony/routing.git",
  12691. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  12692. },
  12693. "dist": {
  12694. "type": "zip",
  12695. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12696. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12697. "shasum": ""
  12698. },
  12699. "require": {
  12700. "php": ">=8.1",
  12701. "symfony/deprecation-contracts": "^2.5|^3"
  12702. },
  12703. "conflict": {
  12704. "doctrine/annotations": "<1.12",
  12705. "symfony/config": "<6.2",
  12706. "symfony/dependency-injection": "<5.4",
  12707. "symfony/yaml": "<5.4"
  12708. },
  12709. "require-dev": {
  12710. "doctrine/annotations": "^1.12|^2",
  12711. "psr/log": "^1|^2|^3",
  12712. "symfony/config": "^6.2|^7.0",
  12713. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12714. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12715. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12716. "symfony/yaml": "^5.4|^6.0|^7.0"
  12717. },
  12718. "type": "library",
  12719. "autoload": {
  12720. "psr-4": {
  12721. "Symfony\\Component\\Routing\\": ""
  12722. },
  12723. "exclude-from-classmap": [
  12724. "/Tests/"
  12725. ]
  12726. },
  12727. "notification-url": "https://packagist.org/downloads/",
  12728. "license": [
  12729. "MIT"
  12730. ],
  12731. "authors": [
  12732. {
  12733. "name": "Fabien Potencier",
  12734. "email": "fabien@symfony.com"
  12735. },
  12736. {
  12737. "name": "Symfony Community",
  12738. "homepage": "https://symfony.com/contributors"
  12739. }
  12740. ],
  12741. "description": "Maps an HTTP request to a set of configuration variables",
  12742. "homepage": "https://symfony.com",
  12743. "keywords": [
  12744. "router",
  12745. "routing",
  12746. "uri",
  12747. "url"
  12748. ],
  12749. "support": {
  12750. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  12751. },
  12752. "funding": [
  12753. {
  12754. "url": "https://symfony.com/sponsor",
  12755. "type": "custom"
  12756. },
  12757. {
  12758. "url": "https://github.com/fabpot",
  12759. "type": "github"
  12760. },
  12761. {
  12762. "url": "https://github.com/nicolas-grekas",
  12763. "type": "github"
  12764. },
  12765. {
  12766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12767. "type": "tidelift"
  12768. }
  12769. ],
  12770. "time": "2026-02-24T17:34:50+00:00"
  12771. },
  12772. {
  12773. "name": "symfony/serializer",
  12774. "version": "v6.4.35",
  12775. "source": {
  12776. "type": "git",
  12777. "url": "https://github.com/symfony/serializer.git",
  12778. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  12779. },
  12780. "dist": {
  12781. "type": "zip",
  12782. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  12783. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  12784. "shasum": ""
  12785. },
  12786. "require": {
  12787. "php": ">=8.1",
  12788. "symfony/deprecation-contracts": "^2.5|^3",
  12789. "symfony/polyfill-ctype": "~1.8"
  12790. },
  12791. "conflict": {
  12792. "doctrine/annotations": "<1.12",
  12793. "phpdocumentor/reflection-docblock": "<3.2.2",
  12794. "phpdocumentor/type-resolver": "<1.4.0",
  12795. "symfony/dependency-injection": "<5.4",
  12796. "symfony/property-access": "<5.4",
  12797. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12798. "symfony/uid": "<5.4",
  12799. "symfony/validator": "<6.4",
  12800. "symfony/yaml": "<5.4"
  12801. },
  12802. "require-dev": {
  12803. "doctrine/annotations": "^1.12|^2",
  12804. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12805. "seld/jsonlint": "^1.10",
  12806. "symfony/cache": "^5.4|^6.0|^7.0",
  12807. "symfony/config": "^5.4|^6.0|^7.0",
  12808. "symfony/console": "^5.4|^6.0|^7.0",
  12809. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12810. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12811. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12812. "symfony/form": "^5.4|^6.0|^7.0",
  12813. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12814. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12815. "symfony/messenger": "^5.4|^6.0|^7.0",
  12816. "symfony/mime": "^5.4|^6.0|^7.0",
  12817. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12818. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12819. "symfony/translation-contracts": "^2.5|^3",
  12820. "symfony/uid": "^5.4|^6.0|^7.0",
  12821. "symfony/validator": "^6.4|^7.0",
  12822. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12823. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12824. "symfony/yaml": "^5.4|^6.0|^7.0"
  12825. },
  12826. "type": "library",
  12827. "autoload": {
  12828. "psr-4": {
  12829. "Symfony\\Component\\Serializer\\": ""
  12830. },
  12831. "exclude-from-classmap": [
  12832. "/Tests/"
  12833. ]
  12834. },
  12835. "notification-url": "https://packagist.org/downloads/",
  12836. "license": [
  12837. "MIT"
  12838. ],
  12839. "authors": [
  12840. {
  12841. "name": "Fabien Potencier",
  12842. "email": "fabien@symfony.com"
  12843. },
  12844. {
  12845. "name": "Symfony Community",
  12846. "homepage": "https://symfony.com/contributors"
  12847. }
  12848. ],
  12849. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12850. "homepage": "https://symfony.com",
  12851. "support": {
  12852. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  12853. },
  12854. "funding": [
  12855. {
  12856. "url": "https://symfony.com/sponsor",
  12857. "type": "custom"
  12858. },
  12859. {
  12860. "url": "https://github.com/fabpot",
  12861. "type": "github"
  12862. },
  12863. {
  12864. "url": "https://github.com/nicolas-grekas",
  12865. "type": "github"
  12866. },
  12867. {
  12868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12869. "type": "tidelift"
  12870. }
  12871. ],
  12872. "time": "2026-03-06T11:03:24+00:00"
  12873. },
  12874. {
  12875. "name": "symfony/service-contracts",
  12876. "version": "v3.6.1",
  12877. "source": {
  12878. "type": "git",
  12879. "url": "https://github.com/symfony/service-contracts.git",
  12880. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  12881. },
  12882. "dist": {
  12883. "type": "zip",
  12884. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  12885. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  12886. "shasum": ""
  12887. },
  12888. "require": {
  12889. "php": ">=8.1",
  12890. "psr/container": "^1.1|^2.0",
  12891. "symfony/deprecation-contracts": "^2.5|^3"
  12892. },
  12893. "conflict": {
  12894. "ext-psr": "<1.1|>=2"
  12895. },
  12896. "type": "library",
  12897. "extra": {
  12898. "thanks": {
  12899. "url": "https://github.com/symfony/contracts",
  12900. "name": "symfony/contracts"
  12901. },
  12902. "branch-alias": {
  12903. "dev-main": "3.6-dev"
  12904. }
  12905. },
  12906. "autoload": {
  12907. "psr-4": {
  12908. "Symfony\\Contracts\\Service\\": ""
  12909. },
  12910. "exclude-from-classmap": [
  12911. "/Test/"
  12912. ]
  12913. },
  12914. "notification-url": "https://packagist.org/downloads/",
  12915. "license": [
  12916. "MIT"
  12917. ],
  12918. "authors": [
  12919. {
  12920. "name": "Nicolas Grekas",
  12921. "email": "p@tchwork.com"
  12922. },
  12923. {
  12924. "name": "Symfony Community",
  12925. "homepage": "https://symfony.com/contributors"
  12926. }
  12927. ],
  12928. "description": "Generic abstractions related to writing services",
  12929. "homepage": "https://symfony.com",
  12930. "keywords": [
  12931. "abstractions",
  12932. "contracts",
  12933. "decoupling",
  12934. "interfaces",
  12935. "interoperability",
  12936. "standards"
  12937. ],
  12938. "support": {
  12939. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  12940. },
  12941. "funding": [
  12942. {
  12943. "url": "https://symfony.com/sponsor",
  12944. "type": "custom"
  12945. },
  12946. {
  12947. "url": "https://github.com/fabpot",
  12948. "type": "github"
  12949. },
  12950. {
  12951. "url": "https://github.com/nicolas-grekas",
  12952. "type": "github"
  12953. },
  12954. {
  12955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12956. "type": "tidelift"
  12957. }
  12958. ],
  12959. "time": "2025-07-15T11:30:57+00:00"
  12960. },
  12961. {
  12962. "name": "symfony/string",
  12963. "version": "v6.4.34",
  12964. "source": {
  12965. "type": "git",
  12966. "url": "https://github.com/symfony/string.git",
  12967. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  12968. },
  12969. "dist": {
  12970. "type": "zip",
  12971. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12972. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12973. "shasum": ""
  12974. },
  12975. "require": {
  12976. "php": ">=8.1",
  12977. "symfony/polyfill-ctype": "~1.8",
  12978. "symfony/polyfill-intl-grapheme": "~1.0",
  12979. "symfony/polyfill-intl-normalizer": "~1.0",
  12980. "symfony/polyfill-mbstring": "~1.0"
  12981. },
  12982. "conflict": {
  12983. "symfony/translation-contracts": "<2.5"
  12984. },
  12985. "require-dev": {
  12986. "symfony/http-client": "^5.4|^6.0|^7.0",
  12987. "symfony/intl": "^6.2|^7.0",
  12988. "symfony/translation-contracts": "^2.5|^3.0",
  12989. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12990. },
  12991. "type": "library",
  12992. "autoload": {
  12993. "files": [
  12994. "Resources/functions.php"
  12995. ],
  12996. "psr-4": {
  12997. "Symfony\\Component\\String\\": ""
  12998. },
  12999. "exclude-from-classmap": [
  13000. "/Tests/"
  13001. ]
  13002. },
  13003. "notification-url": "https://packagist.org/downloads/",
  13004. "license": [
  13005. "MIT"
  13006. ],
  13007. "authors": [
  13008. {
  13009. "name": "Nicolas Grekas",
  13010. "email": "p@tchwork.com"
  13011. },
  13012. {
  13013. "name": "Symfony Community",
  13014. "homepage": "https://symfony.com/contributors"
  13015. }
  13016. ],
  13017. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  13018. "homepage": "https://symfony.com",
  13019. "keywords": [
  13020. "grapheme",
  13021. "i18n",
  13022. "string",
  13023. "unicode",
  13024. "utf-8",
  13025. "utf8"
  13026. ],
  13027. "support": {
  13028. "source": "https://github.com/symfony/string/tree/v6.4.34"
  13029. },
  13030. "funding": [
  13031. {
  13032. "url": "https://symfony.com/sponsor",
  13033. "type": "custom"
  13034. },
  13035. {
  13036. "url": "https://github.com/fabpot",
  13037. "type": "github"
  13038. },
  13039. {
  13040. "url": "https://github.com/nicolas-grekas",
  13041. "type": "github"
  13042. },
  13043. {
  13044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13045. "type": "tidelift"
  13046. }
  13047. ],
  13048. "time": "2026-02-08T20:44:54+00:00"
  13049. },
  13050. {
  13051. "name": "symfony/translation-contracts",
  13052. "version": "v3.6.1",
  13053. "source": {
  13054. "type": "git",
  13055. "url": "https://github.com/symfony/translation-contracts.git",
  13056. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  13057. },
  13058. "dist": {
  13059. "type": "zip",
  13060. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  13061. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  13062. "shasum": ""
  13063. },
  13064. "require": {
  13065. "php": ">=8.1"
  13066. },
  13067. "type": "library",
  13068. "extra": {
  13069. "thanks": {
  13070. "url": "https://github.com/symfony/contracts",
  13071. "name": "symfony/contracts"
  13072. },
  13073. "branch-alias": {
  13074. "dev-main": "3.6-dev"
  13075. }
  13076. },
  13077. "autoload": {
  13078. "psr-4": {
  13079. "Symfony\\Contracts\\Translation\\": ""
  13080. },
  13081. "exclude-from-classmap": [
  13082. "/Test/"
  13083. ]
  13084. },
  13085. "notification-url": "https://packagist.org/downloads/",
  13086. "license": [
  13087. "MIT"
  13088. ],
  13089. "authors": [
  13090. {
  13091. "name": "Nicolas Grekas",
  13092. "email": "p@tchwork.com"
  13093. },
  13094. {
  13095. "name": "Symfony Community",
  13096. "homepage": "https://symfony.com/contributors"
  13097. }
  13098. ],
  13099. "description": "Generic abstractions related to translation",
  13100. "homepage": "https://symfony.com",
  13101. "keywords": [
  13102. "abstractions",
  13103. "contracts",
  13104. "decoupling",
  13105. "interfaces",
  13106. "interoperability",
  13107. "standards"
  13108. ],
  13109. "support": {
  13110. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  13111. },
  13112. "funding": [
  13113. {
  13114. "url": "https://symfony.com/sponsor",
  13115. "type": "custom"
  13116. },
  13117. {
  13118. "url": "https://github.com/fabpot",
  13119. "type": "github"
  13120. },
  13121. {
  13122. "url": "https://github.com/nicolas-grekas",
  13123. "type": "github"
  13124. },
  13125. {
  13126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13127. "type": "tidelift"
  13128. }
  13129. ],
  13130. "time": "2025-07-15T13:41:35+00:00"
  13131. },
  13132. {
  13133. "name": "symfony/validator",
  13134. "version": "v6.4.35",
  13135. "source": {
  13136. "type": "git",
  13137. "url": "https://github.com/symfony/validator.git",
  13138. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  13139. },
  13140. "dist": {
  13141. "type": "zip",
  13142. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13143. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13144. "shasum": ""
  13145. },
  13146. "require": {
  13147. "php": ">=8.1",
  13148. "symfony/deprecation-contracts": "^2.5|^3",
  13149. "symfony/polyfill-ctype": "~1.8",
  13150. "symfony/polyfill-mbstring": "~1.0",
  13151. "symfony/polyfill-php83": "^1.27",
  13152. "symfony/translation-contracts": "^2.5|^3"
  13153. },
  13154. "conflict": {
  13155. "doctrine/annotations": "<1.13",
  13156. "doctrine/lexer": "<1.1",
  13157. "symfony/dependency-injection": "<5.4",
  13158. "symfony/expression-language": "<5.4",
  13159. "symfony/http-kernel": "<5.4",
  13160. "symfony/intl": "<5.4",
  13161. "symfony/property-info": "<5.4",
  13162. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13163. "symfony/yaml": "<5.4"
  13164. },
  13165. "require-dev": {
  13166. "doctrine/annotations": "^1.13|^2",
  13167. "egulias/email-validator": "^2.1.10|^3|^4",
  13168. "symfony/cache": "^5.4|^6.0|^7.0",
  13169. "symfony/config": "^5.4|^6.0|^7.0",
  13170. "symfony/console": "^5.4|^6.0|^7.0",
  13171. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13172. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13173. "symfony/finder": "^5.4|^6.0|^7.0",
  13174. "symfony/http-client": "^5.4|^6.0|^7.0",
  13175. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13176. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13177. "symfony/intl": "^5.4|^6.0|^7.0",
  13178. "symfony/mime": "^5.4|^6.0|^7.0",
  13179. "symfony/property-access": "^5.4|^6.0|^7.0",
  13180. "symfony/property-info": "^5.4|^6.0|^7.0",
  13181. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13182. "symfony/yaml": "^5.4|^6.0|^7.0"
  13183. },
  13184. "type": "library",
  13185. "autoload": {
  13186. "psr-4": {
  13187. "Symfony\\Component\\Validator\\": ""
  13188. },
  13189. "exclude-from-classmap": [
  13190. "/Tests/",
  13191. "/Resources/bin/"
  13192. ]
  13193. },
  13194. "notification-url": "https://packagist.org/downloads/",
  13195. "license": [
  13196. "MIT"
  13197. ],
  13198. "authors": [
  13199. {
  13200. "name": "Fabien Potencier",
  13201. "email": "fabien@symfony.com"
  13202. },
  13203. {
  13204. "name": "Symfony Community",
  13205. "homepage": "https://symfony.com/contributors"
  13206. }
  13207. ],
  13208. "description": "Provides tools to validate values",
  13209. "homepage": "https://symfony.com",
  13210. "support": {
  13211. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  13212. },
  13213. "funding": [
  13214. {
  13215. "url": "https://symfony.com/sponsor",
  13216. "type": "custom"
  13217. },
  13218. {
  13219. "url": "https://github.com/fabpot",
  13220. "type": "github"
  13221. },
  13222. {
  13223. "url": "https://github.com/nicolas-grekas",
  13224. "type": "github"
  13225. },
  13226. {
  13227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13228. "type": "tidelift"
  13229. }
  13230. ],
  13231. "time": "2026-03-02T17:53:19+00:00"
  13232. },
  13233. {
  13234. "name": "symfony/var-dumper",
  13235. "version": "v6.4.32",
  13236. "source": {
  13237. "type": "git",
  13238. "url": "https://github.com/symfony/var-dumper.git",
  13239. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  13240. },
  13241. "dist": {
  13242. "type": "zip",
  13243. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  13244. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  13245. "shasum": ""
  13246. },
  13247. "require": {
  13248. "php": ">=8.1",
  13249. "symfony/deprecation-contracts": "^2.5|^3",
  13250. "symfony/polyfill-mbstring": "~1.0"
  13251. },
  13252. "conflict": {
  13253. "symfony/console": "<5.4"
  13254. },
  13255. "require-dev": {
  13256. "symfony/console": "^5.4|^6.0|^7.0",
  13257. "symfony/error-handler": "^6.3|^7.0",
  13258. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13259. "symfony/process": "^5.4|^6.0|^7.0",
  13260. "symfony/uid": "^5.4|^6.0|^7.0",
  13261. "twig/twig": "^2.13|^3.0.4"
  13262. },
  13263. "bin": [
  13264. "Resources/bin/var-dump-server"
  13265. ],
  13266. "type": "library",
  13267. "autoload": {
  13268. "files": [
  13269. "Resources/functions/dump.php"
  13270. ],
  13271. "psr-4": {
  13272. "Symfony\\Component\\VarDumper\\": ""
  13273. },
  13274. "exclude-from-classmap": [
  13275. "/Tests/"
  13276. ]
  13277. },
  13278. "notification-url": "https://packagist.org/downloads/",
  13279. "license": [
  13280. "MIT"
  13281. ],
  13282. "authors": [
  13283. {
  13284. "name": "Nicolas Grekas",
  13285. "email": "p@tchwork.com"
  13286. },
  13287. {
  13288. "name": "Symfony Community",
  13289. "homepage": "https://symfony.com/contributors"
  13290. }
  13291. ],
  13292. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13293. "homepage": "https://symfony.com",
  13294. "keywords": [
  13295. "debug",
  13296. "dump"
  13297. ],
  13298. "support": {
  13299. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  13300. },
  13301. "funding": [
  13302. {
  13303. "url": "https://symfony.com/sponsor",
  13304. "type": "custom"
  13305. },
  13306. {
  13307. "url": "https://github.com/fabpot",
  13308. "type": "github"
  13309. },
  13310. {
  13311. "url": "https://github.com/nicolas-grekas",
  13312. "type": "github"
  13313. },
  13314. {
  13315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13316. "type": "tidelift"
  13317. }
  13318. ],
  13319. "time": "2026-01-01T13:34:06+00:00"
  13320. },
  13321. {
  13322. "name": "symfony/var-exporter",
  13323. "version": "v6.4.26",
  13324. "source": {
  13325. "type": "git",
  13326. "url": "https://github.com/symfony/var-exporter.git",
  13327. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13328. },
  13329. "dist": {
  13330. "type": "zip",
  13331. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13332. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13333. "shasum": ""
  13334. },
  13335. "require": {
  13336. "php": ">=8.1",
  13337. "symfony/deprecation-contracts": "^2.5|^3"
  13338. },
  13339. "require-dev": {
  13340. "symfony/property-access": "^6.4|^7.0",
  13341. "symfony/serializer": "^6.4|^7.0",
  13342. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13343. },
  13344. "type": "library",
  13345. "autoload": {
  13346. "psr-4": {
  13347. "Symfony\\Component\\VarExporter\\": ""
  13348. },
  13349. "exclude-from-classmap": [
  13350. "/Tests/"
  13351. ]
  13352. },
  13353. "notification-url": "https://packagist.org/downloads/",
  13354. "license": [
  13355. "MIT"
  13356. ],
  13357. "authors": [
  13358. {
  13359. "name": "Nicolas Grekas",
  13360. "email": "p@tchwork.com"
  13361. },
  13362. {
  13363. "name": "Symfony Community",
  13364. "homepage": "https://symfony.com/contributors"
  13365. }
  13366. ],
  13367. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13368. "homepage": "https://symfony.com",
  13369. "keywords": [
  13370. "clone",
  13371. "construct",
  13372. "export",
  13373. "hydrate",
  13374. "instantiate",
  13375. "lazy-loading",
  13376. "proxy",
  13377. "serialize"
  13378. ],
  13379. "support": {
  13380. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13381. },
  13382. "funding": [
  13383. {
  13384. "url": "https://symfony.com/sponsor",
  13385. "type": "custom"
  13386. },
  13387. {
  13388. "url": "https://github.com/fabpot",
  13389. "type": "github"
  13390. },
  13391. {
  13392. "url": "https://github.com/nicolas-grekas",
  13393. "type": "github"
  13394. },
  13395. {
  13396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13397. "type": "tidelift"
  13398. }
  13399. ],
  13400. "time": "2025-09-11T09:57:09+00:00"
  13401. },
  13402. {
  13403. "name": "symfony/yaml",
  13404. "version": "v6.4.34",
  13405. "source": {
  13406. "type": "git",
  13407. "url": "https://github.com/symfony/yaml.git",
  13408. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  13409. },
  13410. "dist": {
  13411. "type": "zip",
  13412. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13413. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13414. "shasum": ""
  13415. },
  13416. "require": {
  13417. "php": ">=8.1",
  13418. "symfony/deprecation-contracts": "^2.5|^3",
  13419. "symfony/polyfill-ctype": "^1.8"
  13420. },
  13421. "conflict": {
  13422. "symfony/console": "<5.4"
  13423. },
  13424. "require-dev": {
  13425. "symfony/console": "^5.4|^6.0|^7.0"
  13426. },
  13427. "bin": [
  13428. "Resources/bin/yaml-lint"
  13429. ],
  13430. "type": "library",
  13431. "autoload": {
  13432. "psr-4": {
  13433. "Symfony\\Component\\Yaml\\": ""
  13434. },
  13435. "exclude-from-classmap": [
  13436. "/Tests/"
  13437. ]
  13438. },
  13439. "notification-url": "https://packagist.org/downloads/",
  13440. "license": [
  13441. "MIT"
  13442. ],
  13443. "authors": [
  13444. {
  13445. "name": "Fabien Potencier",
  13446. "email": "fabien@symfony.com"
  13447. },
  13448. {
  13449. "name": "Symfony Community",
  13450. "homepage": "https://symfony.com/contributors"
  13451. }
  13452. ],
  13453. "description": "Loads and dumps YAML files",
  13454. "homepage": "https://symfony.com",
  13455. "support": {
  13456. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  13457. },
  13458. "funding": [
  13459. {
  13460. "url": "https://symfony.com/sponsor",
  13461. "type": "custom"
  13462. },
  13463. {
  13464. "url": "https://github.com/fabpot",
  13465. "type": "github"
  13466. },
  13467. {
  13468. "url": "https://github.com/nicolas-grekas",
  13469. "type": "github"
  13470. },
  13471. {
  13472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13473. "type": "tidelift"
  13474. }
  13475. ],
  13476. "time": "2026-02-06T18:32:11+00:00"
  13477. },
  13478. {
  13479. "name": "twig/twig",
  13480. "version": "v3.22.2",
  13481. "source": {
  13482. "type": "git",
  13483. "url": "https://github.com/twigphp/Twig.git",
  13484. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  13485. },
  13486. "dist": {
  13487. "type": "zip",
  13488. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13489. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13490. "shasum": ""
  13491. },
  13492. "require": {
  13493. "php": ">=8.1.0",
  13494. "symfony/deprecation-contracts": "^2.5|^3",
  13495. "symfony/polyfill-ctype": "^1.8",
  13496. "symfony/polyfill-mbstring": "^1.3"
  13497. },
  13498. "require-dev": {
  13499. "phpstan/phpstan": "^2.0",
  13500. "psr/container": "^1.0|^2.0",
  13501. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13502. },
  13503. "type": "library",
  13504. "autoload": {
  13505. "files": [
  13506. "src/Resources/core.php",
  13507. "src/Resources/debug.php",
  13508. "src/Resources/escaper.php",
  13509. "src/Resources/string_loader.php"
  13510. ],
  13511. "psr-4": {
  13512. "Twig\\": "src/"
  13513. }
  13514. },
  13515. "notification-url": "https://packagist.org/downloads/",
  13516. "license": [
  13517. "BSD-3-Clause"
  13518. ],
  13519. "authors": [
  13520. {
  13521. "name": "Fabien Potencier",
  13522. "email": "fabien@symfony.com",
  13523. "homepage": "http://fabien.potencier.org",
  13524. "role": "Lead Developer"
  13525. },
  13526. {
  13527. "name": "Twig Team",
  13528. "role": "Contributors"
  13529. },
  13530. {
  13531. "name": "Armin Ronacher",
  13532. "email": "armin.ronacher@active-4.com",
  13533. "role": "Project Founder"
  13534. }
  13535. ],
  13536. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13537. "homepage": "https://twig.symfony.com",
  13538. "keywords": [
  13539. "templating"
  13540. ],
  13541. "support": {
  13542. "issues": "https://github.com/twigphp/Twig/issues",
  13543. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  13544. },
  13545. "funding": [
  13546. {
  13547. "url": "https://github.com/fabpot",
  13548. "type": "github"
  13549. },
  13550. {
  13551. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13552. "type": "tidelift"
  13553. }
  13554. ],
  13555. "time": "2025-12-14T11:28:47+00:00"
  13556. },
  13557. {
  13558. "name": "webflo/drupal-finder",
  13559. "version": "1.3.1",
  13560. "source": {
  13561. "type": "git",
  13562. "url": "https://github.com/webflo/drupal-finder.git",
  13563. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13564. },
  13565. "dist": {
  13566. "type": "zip",
  13567. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13568. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13569. "shasum": ""
  13570. },
  13571. "require": {
  13572. "composer-runtime-api": "^2.2",
  13573. "php": ">=8.1"
  13574. },
  13575. "require-dev": {
  13576. "mikey179/vfsstream": "^1.6",
  13577. "phpunit/phpunit": "^10.4",
  13578. "symfony/process": "^6.4"
  13579. },
  13580. "type": "library",
  13581. "autoload": {
  13582. "psr-4": {
  13583. "DrupalFinder\\": "src/"
  13584. }
  13585. },
  13586. "notification-url": "https://packagist.org/downloads/",
  13587. "license": [
  13588. "GPL-2.0-or-later"
  13589. ],
  13590. "authors": [
  13591. {
  13592. "name": "Florian Weber",
  13593. "email": "florian@webflo.org"
  13594. }
  13595. ],
  13596. "description": "Helper class to locate a Drupal installation.",
  13597. "support": {
  13598. "issues": "https://github.com/webflo/drupal-finder/issues",
  13599. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13600. },
  13601. "time": "2024-06-28T13:45:36+00:00"
  13602. },
  13603. {
  13604. "name": "wikimedia/composer-merge-plugin",
  13605. "version": "v2.1.0",
  13606. "source": {
  13607. "type": "git",
  13608. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13609. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13610. },
  13611. "dist": {
  13612. "type": "zip",
  13613. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13614. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13615. "shasum": ""
  13616. },
  13617. "require": {
  13618. "composer-plugin-api": "^1.1||^2.0",
  13619. "php": ">=7.2.0"
  13620. },
  13621. "require-dev": {
  13622. "composer/composer": "^1.1||^2.0",
  13623. "ext-json": "*",
  13624. "mediawiki/mediawiki-phan-config": "0.11.1",
  13625. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13626. "phpspec/prophecy": "~1.15.0",
  13627. "phpunit/phpunit": "^8.5||^9.0",
  13628. "squizlabs/php_codesniffer": "~3.7.1"
  13629. },
  13630. "type": "composer-plugin",
  13631. "extra": {
  13632. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13633. "branch-alias": {
  13634. "dev-master": "2.x-dev"
  13635. }
  13636. },
  13637. "autoload": {
  13638. "psr-4": {
  13639. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13640. }
  13641. },
  13642. "notification-url": "https://packagist.org/downloads/",
  13643. "license": [
  13644. "MIT"
  13645. ],
  13646. "authors": [
  13647. {
  13648. "name": "Bryan Davis",
  13649. "email": "bd808@wikimedia.org"
  13650. }
  13651. ],
  13652. "description": "Composer plugin to merge multiple composer.json files",
  13653. "support": {
  13654. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13655. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13656. },
  13657. "time": "2023-04-15T19:07:00+00:00"
  13658. },
  13659. {
  13660. "name": "willdurand/geocoder",
  13661. "version": "5.0.0",
  13662. "source": {
  13663. "type": "git",
  13664. "url": "https://github.com/geocoder-php/php-common.git",
  13665. "reference": "a749e00819d2929bd0ec40fb79853956332970ba"
  13666. },
  13667. "dist": {
  13668. "type": "zip",
  13669. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/a749e00819d2929bd0ec40fb79853956332970ba",
  13670. "reference": "a749e00819d2929bd0ec40fb79853956332970ba",
  13671. "shasum": ""
  13672. },
  13673. "require": {
  13674. "php": ">=8.2"
  13675. },
  13676. "require-dev": {
  13677. "nyholm/nsa": "^1.1",
  13678. "phpunit/phpunit": "^9.5",
  13679. "symfony/stopwatch": "~2.5 || ~5.0"
  13680. },
  13681. "suggest": {
  13682. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13683. },
  13684. "type": "library",
  13685. "extra": {
  13686. "branch-alias": {
  13687. "dev-master": "5.1-dev"
  13688. }
  13689. },
  13690. "autoload": {
  13691. "psr-4": {
  13692. "Geocoder\\": ""
  13693. },
  13694. "exclude-from-classmap": [
  13695. "/Tests/"
  13696. ]
  13697. },
  13698. "notification-url": "https://packagist.org/downloads/",
  13699. "license": [
  13700. "MIT"
  13701. ],
  13702. "authors": [
  13703. {
  13704. "name": "William Durand",
  13705. "email": "william.durand1@gmail.com"
  13706. }
  13707. ],
  13708. "description": "Common files for PHP Geocoder",
  13709. "homepage": "http://geocoder-php.org",
  13710. "keywords": [
  13711. "abstraction",
  13712. "geocoder",
  13713. "geocoding",
  13714. "geoip"
  13715. ],
  13716. "support": {
  13717. "source": "https://github.com/geocoder-php/php-common/tree/5.0.0"
  13718. },
  13719. "time": "2025-01-01T15:52:42+00:00"
  13720. }
  13721. ],
  13722. "packages-dev": [],
  13723. "aliases": [],
  13724. "minimum-stability": "stable",
  13725. "stability-flags": {
  13726. "drupal/advanced_text_formatter": 5,
  13727. "drupal/computed_token_field": 10,
  13728. "drupal/config_update": 15,
  13729. "drupal/context": 5,
  13730. "drupal/date_range_formatter": 20,
  13731. "drupal/email_registration": 5,
  13732. "drupal/entity_clone": 20,
  13733. "drupal/inline_entity_form": 5,
  13734. "drupal/page_manager": 5,
  13735. "drupal/pathologic": 15,
  13736. "drupal/smtp": 10,
  13737. "drupal/synonyms": 10,
  13738. "drupal/translation_views": 15,
  13739. "drupal/ultimate_cron": 15
  13740. },
  13741. "prefer-stable": true,
  13742. "prefer-lowest": false,
  13743. "platform": {},
  13744. "platform-dev": {},
  13745. "plugin-api-version": "2.9.0"
  13746. }