composer.lock 505 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "921fe83cc519f8269ec5496e65f8e3b7",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  62. },
  63. "time": "2025-03-13T08:50:04+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "clue/stream-filter",
  127. "version": "v1.7.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/clue/stream-filter.git",
  131. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  136. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3"
  141. },
  142. "require-dev": {
  143. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  144. },
  145. "type": "library",
  146. "autoload": {
  147. "files": [
  148. "src/functions_include.php"
  149. ],
  150. "psr-4": {
  151. "Clue\\StreamFilter\\": "src/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "Christian Lück",
  161. "email": "christian@clue.engineering"
  162. }
  163. ],
  164. "description": "A simple and modern approach to stream filtering in PHP",
  165. "homepage": "https://github.com/clue/stream-filter",
  166. "keywords": [
  167. "bucket brigade",
  168. "callback",
  169. "filter",
  170. "php_user_filter",
  171. "stream",
  172. "stream_filter_append",
  173. "stream_filter_register"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/clue/stream-filter/issues",
  177. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  178. },
  179. "funding": [
  180. {
  181. "url": "https://clue.engineering/support",
  182. "type": "custom"
  183. },
  184. {
  185. "url": "https://github.com/clue",
  186. "type": "github"
  187. }
  188. ],
  189. "time": "2023-12-20T15:40:13+00:00"
  190. },
  191. {
  192. "name": "commerceguys/addressing",
  193. "version": "v2.2.4",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda",
  202. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.6 || ^2.0",
  207. "php": ">=8.0"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.11",
  212. "phpunit/phpunit": "^9.6",
  213. "squizlabs/php_codesniffer": "^3.7",
  214. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "2.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "CommerceGuys\\Addressing\\": "src"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Bojan Zivanovic"
  237. },
  238. {
  239. "name": "Damien Tournoud"
  240. }
  241. ],
  242. "description": "Addressing library powered by CLDR and Google's address data.",
  243. "keywords": [
  244. "address",
  245. "internationalization",
  246. "localization",
  247. "postal"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/commerceguys/addressing/issues",
  251. "source": "https://github.com/commerceguys/addressing/tree/v2.2.4"
  252. },
  253. "time": "2025-01-13T16:03:24+00:00"
  254. },
  255. {
  256. "name": "components/highlightjs",
  257. "version": "9.7.0",
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  261. },
  262. "type": "drupal-library"
  263. },
  264. {
  265. "name": "composer/installers",
  266. "version": "v1.12.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/installers.git",
  270. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  275. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "composer-plugin-api": "^1.0 || ^2.0"
  280. },
  281. "replace": {
  282. "roundcube/plugin-installer": "*",
  283. "shama/baton": "*"
  284. },
  285. "require-dev": {
  286. "composer/composer": "1.6.* || ^2.0",
  287. "composer/semver": "^1 || ^3",
  288. "phpstan/phpstan": "^0.12.55",
  289. "phpstan/phpstan-phpunit": "^0.12.16",
  290. "symfony/phpunit-bridge": "^4.2 || ^5",
  291. "symfony/process": "^2.3"
  292. },
  293. "type": "composer-plugin",
  294. "extra": {
  295. "class": "Composer\\Installers\\Plugin",
  296. "branch-alias": {
  297. "dev-main": "1.x-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Composer\\Installers\\": "src/Composer/Installers"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Kyle Robinson Young",
  312. "email": "kyle@dontkry.com",
  313. "homepage": "https://github.com/shama"
  314. }
  315. ],
  316. "description": "A multi-framework Composer library installer",
  317. "homepage": "https://composer.github.io/installers/",
  318. "keywords": [
  319. "Craft",
  320. "Dolibarr",
  321. "Eliasis",
  322. "Hurad",
  323. "ImageCMS",
  324. "Kanboard",
  325. "Lan Management System",
  326. "MODX Evo",
  327. "MantisBT",
  328. "Mautic",
  329. "Maya",
  330. "OXID",
  331. "Plentymarkets",
  332. "Porto",
  333. "RadPHP",
  334. "SMF",
  335. "Starbug",
  336. "Thelia",
  337. "Whmcs",
  338. "WolfCMS",
  339. "agl",
  340. "aimeos",
  341. "annotatecms",
  342. "attogram",
  343. "bitrix",
  344. "cakephp",
  345. "chef",
  346. "cockpit",
  347. "codeigniter",
  348. "concrete5",
  349. "croogo",
  350. "dokuwiki",
  351. "drupal",
  352. "eZ Platform",
  353. "elgg",
  354. "expressionengine",
  355. "fuelphp",
  356. "grav",
  357. "installer",
  358. "itop",
  359. "joomla",
  360. "known",
  361. "kohana",
  362. "laravel",
  363. "lavalite",
  364. "lithium",
  365. "magento",
  366. "majima",
  367. "mako",
  368. "mediawiki",
  369. "miaoxing",
  370. "modulework",
  371. "modx",
  372. "moodle",
  373. "osclass",
  374. "pantheon",
  375. "phpbb",
  376. "piwik",
  377. "ppi",
  378. "processwire",
  379. "puppet",
  380. "pxcms",
  381. "reindex",
  382. "roundcube",
  383. "shopware",
  384. "silverstripe",
  385. "sydes",
  386. "sylius",
  387. "symfony",
  388. "tastyigniter",
  389. "typo3",
  390. "wordpress",
  391. "yawik",
  392. "zend",
  393. "zikula"
  394. ],
  395. "support": {
  396. "issues": "https://github.com/composer/installers/issues",
  397. "source": "https://github.com/composer/installers/tree/v1.12.0"
  398. },
  399. "funding": [
  400. {
  401. "url": "https://packagist.com",
  402. "type": "custom"
  403. },
  404. {
  405. "url": "https://github.com/composer",
  406. "type": "github"
  407. },
  408. {
  409. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  410. "type": "tidelift"
  411. }
  412. ],
  413. "time": "2021-09-13T08:19:44+00:00"
  414. },
  415. {
  416. "name": "composer/semver",
  417. "version": "3.4.4",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/composer/semver.git",
  421. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  426. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": "^5.3.2 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpstan/phpstan": "^1.11",
  434. "symfony/phpunit-bridge": "^3 || ^7"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-main": "3.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Composer\\Semver\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Nils Adermann",
  454. "email": "naderman@naderman.de",
  455. "homepage": "http://www.naderman.de"
  456. },
  457. {
  458. "name": "Jordi Boggiano",
  459. "email": "j.boggiano@seld.be",
  460. "homepage": "http://seld.be"
  461. },
  462. {
  463. "name": "Rob Bast",
  464. "email": "rob.bast@gmail.com",
  465. "homepage": "http://robbast.nl"
  466. }
  467. ],
  468. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  469. "keywords": [
  470. "semantic",
  471. "semver",
  472. "validation",
  473. "versioning"
  474. ],
  475. "support": {
  476. "irc": "ircs://irc.libera.chat:6697/composer",
  477. "issues": "https://github.com/composer/semver/issues",
  478. "source": "https://github.com/composer/semver/tree/3.4.4"
  479. },
  480. "funding": [
  481. {
  482. "url": "https://packagist.com",
  483. "type": "custom"
  484. },
  485. {
  486. "url": "https://github.com/composer",
  487. "type": "github"
  488. }
  489. ],
  490. "time": "2025-08-20T19:15:30+00:00"
  491. },
  492. {
  493. "name": "consolidation/annotated-command",
  494. "version": "4.10.4",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/consolidation/annotated-command.git",
  498. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  503. "reference": "69d29da4acac31a43caa4cea13b6b948f4e5c56d",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "consolidation/output-formatters": "^4.3.1",
  508. "php": ">=7.1.3",
  509. "psr/log": "^1 || ^2 || ^3",
  510. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  511. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  512. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  513. },
  514. "require-dev": {
  515. "composer-runtime-api": "^2.0",
  516. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  517. "squizlabs/php_codesniffer": "^3",
  518. "yoast/phpunit-polyfills": "^0.2.0"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "branch-alias": {
  523. "dev-main": "4.x-dev"
  524. }
  525. },
  526. "autoload": {
  527. "psr-4": {
  528. "Consolidation\\AnnotatedCommand\\": "src"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Greg Anderson",
  538. "email": "greg.1.anderson@greenknowe.org"
  539. }
  540. ],
  541. "description": "Initialize Symfony Console commands from annotated command class methods.",
  542. "support": {
  543. "issues": "https://github.com/consolidation/annotated-command/issues",
  544. "source": "https://github.com/consolidation/annotated-command/tree/4.10.4"
  545. },
  546. "time": "2025-11-14T22:57:49+00:00"
  547. },
  548. {
  549. "name": "consolidation/config",
  550. "version": "3.2.0",
  551. "source": {
  552. "type": "git",
  553. "url": "https://github.com/consolidation/config.git",
  554. "reference": "797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84"
  555. },
  556. "dist": {
  557. "type": "zip",
  558. "url": "https://api.github.com/repos/consolidation/config/zipball/797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84",
  559. "reference": "797652cd5ac870f02eb3ca1a7169d3dbbe6e5f84",
  560. "shasum": ""
  561. },
  562. "require": {
  563. "dflydev/dot-access-data": "^3",
  564. "grasmash/expander": "^3",
  565. "php": ">=8.2.0",
  566. "symfony/event-dispatcher": "^6 || ^7"
  567. },
  568. "require-dev": {
  569. "ext-json": "*",
  570. "phpunit/phpunit": "^9",
  571. "squizlabs/php_codesniffer": "^3",
  572. "symfony/console": "^7",
  573. "symfony/yaml": "^7",
  574. "yoast/phpunit-polyfills": "^1"
  575. },
  576. "suggest": {
  577. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  578. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-main": "3.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Consolidation\\Config\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Greg Anderson",
  598. "email": "greg.1.anderson@greenknowe.org"
  599. }
  600. ],
  601. "description": "Provide configuration services for a commandline tool.",
  602. "support": {
  603. "issues": "https://github.com/consolidation/config/issues",
  604. "source": "https://github.com/consolidation/config/tree/3.2.0"
  605. },
  606. "time": "2025-11-14T18:44:25+00:00"
  607. },
  608. {
  609. "name": "consolidation/filter-via-dot-access-data",
  610. "version": "2.0.3",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  614. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  619. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  620. "shasum": ""
  621. },
  622. "require": {
  623. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  624. "php": ">=7.1.3"
  625. },
  626. "require-dev": {
  627. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  628. "squizlabs/php_codesniffer": "^3",
  629. "yoast/phpunit-polyfills": "^0.2.0"
  630. },
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-main": "2.x-dev"
  635. }
  636. },
  637. "autoload": {
  638. "psr-4": {
  639. "Consolidation\\Filter\\": "src"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Greg Anderson",
  649. "email": "greg.1.anderson@greenknowe.org"
  650. }
  651. ],
  652. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  653. "support": {
  654. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  655. },
  656. "time": "2025-11-14T21:01:06+00:00"
  657. },
  658. {
  659. "name": "consolidation/log",
  660. "version": "3.1.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/consolidation/log.git",
  664. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/consolidation/log/zipball/c1a87a94c01957697ec347fd67404d7f0030d1aa",
  669. "reference": "c1a87a94c01957697ec347fd67404d7f0030d1aa",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=8.0.0",
  674. "psr/log": "^3",
  675. "symfony/console": "^5 || ^6 || ^7"
  676. },
  677. "require-dev": {
  678. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  679. "squizlabs/php_codesniffer": "^3",
  680. "yoast/phpunit-polyfills": "^0.2.0"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "platform": {
  685. "php": "8.2.17"
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "Consolidation\\Log\\": "src"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Greg Anderson",
  700. "email": "greg.1.anderson@greenknowe.org"
  701. }
  702. ],
  703. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  704. "support": {
  705. "issues": "https://github.com/consolidation/log/issues",
  706. "source": "https://github.com/consolidation/log/tree/3.1.1"
  707. },
  708. "time": "2025-11-14T21:11:00+00:00"
  709. },
  710. {
  711. "name": "consolidation/output-formatters",
  712. "version": "4.7.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/consolidation/output-formatters.git",
  716. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  721. "reference": "dfc464c4d4a47594cac5eac01ce265e04b70cb94",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  726. "php": ">=7.1.3",
  727. "symfony/console": "^4 || ^5 || ^6 || ^7",
  728. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  729. },
  730. "require-dev": {
  731. "php-coveralls/php-coveralls": "^2.4.2",
  732. "phpunit/phpunit": "^7 || ^8 || ^9",
  733. "squizlabs/php_codesniffer": "^3",
  734. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  735. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  736. "yoast/phpunit-polyfills": "^1"
  737. },
  738. "suggest": {
  739. "symfony/var-dumper": "For using the var_dump formatter"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "Consolidation\\OutputFormatters\\": "src"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Greg Anderson",
  754. "email": "greg.1.anderson@greenknowe.org"
  755. }
  756. ],
  757. "description": "Format text by applying transformations provided by plug-in formatters.",
  758. "support": {
  759. "issues": "https://github.com/consolidation/output-formatters/issues",
  760. "source": "https://github.com/consolidation/output-formatters/tree/4.7.0"
  761. },
  762. "time": "2025-11-14T21:06:10+00:00"
  763. },
  764. {
  765. "name": "consolidation/robo",
  766. "version": "5.1.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/consolidation/robo.git",
  770. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/consolidation/robo/zipball/6d02c7d800b5e1a3a8977ae74d23bce723486025",
  775. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "consolidation/annotated-command": "^4.8.1",
  780. "consolidation/config": "^3",
  781. "consolidation/log": "^3",
  782. "consolidation/output-formatters": "^4.1.2",
  783. "league/container": "^3.3.1 || ^4.0",
  784. "php": ">=8.2",
  785. "phpowermove/docblock": "^4.0",
  786. "symfony/console": "^6 || ^7",
  787. "symfony/event-dispatcher": "^6 || ^7",
  788. "symfony/filesystem": "^6 || ^7",
  789. "symfony/finder": "^6 || ^7",
  790. "symfony/process": "^6 || ^7",
  791. "symfony/yaml": "^6 || ^7"
  792. },
  793. "conflict": {
  794. "codegyre/robo": "*"
  795. },
  796. "require-dev": {
  797. "natxet/cssmin": "3.0.4",
  798. "patchwork/jsqueeze": "^2",
  799. "pear/archive_tar": "^1.4.4",
  800. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  801. "squizlabs/php_codesniffer": "^3.6",
  802. "yoast/phpunit-polyfills": "^0.2.0"
  803. },
  804. "suggest": {
  805. "consolidation/self-update": "For self-updating a phar-based app built with Robo",
  806. "natxet/cssmin": "For minifying CSS files in taskMinify",
  807. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  808. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  809. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  810. },
  811. "bin": [
  812. "robo"
  813. ],
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Robo\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "MIT"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Davert",
  827. "email": "davert.php@resend.cc"
  828. }
  829. ],
  830. "description": "Modern task runner",
  831. "support": {
  832. "issues": "https://github.com/consolidation/robo/issues",
  833. "source": "https://github.com/consolidation/robo/tree/5.1.1"
  834. },
  835. "time": "2025-11-14T23:30:05+00:00"
  836. },
  837. {
  838. "name": "consolidation/site-alias",
  839. "version": "4.1.2",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/consolidation/site-alias.git",
  843. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  848. "reference": "d92058201fc8475a33fb9a2b80ffe5c89472f5af",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "consolidation/config": "^1.2.1 || ^2 || ^3",
  853. "php": ">=7.4",
  854. "symfony/filesystem": "^5.4 || ^6 || ^7",
  855. "symfony/finder": "^5 || ^6 || ^7"
  856. },
  857. "require-dev": {
  858. "php-coveralls/php-coveralls": "^2.4.2",
  859. "phpunit/phpunit": ">=7",
  860. "squizlabs/php_codesniffer": "^3",
  861. "symfony/var-dumper": "^4",
  862. "yoast/phpunit-polyfills": "^0.2.0"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-main": "4.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Consolidation\\SiteAlias\\": "src"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Greg Anderson",
  882. "email": "greg.1.anderson@greenknowe.org"
  883. },
  884. {
  885. "name": "Moshe Weitzman",
  886. "email": "weitzman@tejasa.com"
  887. }
  888. ],
  889. "description": "Manage alias records for local and remote sites.",
  890. "support": {
  891. "issues": "https://github.com/consolidation/site-alias/issues",
  892. "source": "https://github.com/consolidation/site-alias/tree/4.1.2"
  893. },
  894. "time": "2025-11-14T21:08:14+00:00"
  895. },
  896. {
  897. "name": "consolidation/site-process",
  898. "version": "5.4.2",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/consolidation/site-process.git",
  902. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  907. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "consolidation/config": "^2 || ^3",
  912. "consolidation/site-alias": "^3 || ^4",
  913. "php": ">=8.0.14",
  914. "symfony/console": "^5.4 || ^6 || ^7",
  915. "symfony/process": "^6 || ^7"
  916. },
  917. "require-dev": {
  918. "phpunit/phpunit": "^9",
  919. "squizlabs/php_codesniffer": "^3"
  920. },
  921. "type": "library",
  922. "extra": {
  923. "branch-alias": {
  924. "dev-main": "5.x-dev"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "Consolidation\\SiteProcess\\": "src"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Greg Anderson",
  939. "email": "greg.1.anderson@greenknowe.org"
  940. },
  941. {
  942. "name": "Moshe Weitzman",
  943. "email": "weitzman@tejasa.com"
  944. }
  945. ],
  946. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  947. "support": {
  948. "issues": "https://github.com/consolidation/site-process/issues",
  949. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  950. },
  951. "time": "2024-12-13T19:25:56+00:00"
  952. },
  953. {
  954. "name": "cweagans/composer-patches",
  955. "version": "1.7.3",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/cweagans/composer-patches.git",
  959. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  964. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "composer-plugin-api": "^1.0 || ^2.0",
  969. "php": ">=5.3.0"
  970. },
  971. "require-dev": {
  972. "composer/composer": "~1.0 || ~2.0",
  973. "phpunit/phpunit": "~4.6"
  974. },
  975. "type": "composer-plugin",
  976. "extra": {
  977. "class": "cweagans\\Composer\\Patches"
  978. },
  979. "autoload": {
  980. "psr-4": {
  981. "cweagans\\Composer\\": "src"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "BSD-3-Clause"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Cameron Eagans",
  991. "email": "me@cweagans.net"
  992. }
  993. ],
  994. "description": "Provides a way to patch Composer packages.",
  995. "support": {
  996. "issues": "https://github.com/cweagans/composer-patches/issues",
  997. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  998. },
  999. "time": "2022-12-20T22:53:13+00:00"
  1000. },
  1001. {
  1002. "name": "d3/d3",
  1003. "version": "v3.5.17",
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1007. },
  1008. "type": "drupal-library"
  1009. },
  1010. {
  1011. "name": "davedevelopment/stiphle",
  1012. "version": "0.9.4",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/davedevelopment/stiphle.git",
  1016. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1021. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": "^5.6.0|^7.0|^8.0"
  1026. },
  1027. "require-dev": {
  1028. "doctrine/cache": "^1.0",
  1029. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1030. "predis/predis": "^1.1",
  1031. "zendframework/zend-cache": "^2.8"
  1032. },
  1033. "suggest": {
  1034. "doctrine/cache": "~1.0",
  1035. "predis/predis": "~1.1",
  1036. "zendframework/zend-cache": "^2.8"
  1037. },
  1038. "type": "library",
  1039. "autoload": {
  1040. "psr-0": {
  1041. "Stiphle": "src/"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Dave Marshall",
  1051. "email": "dave.marshall@atstsolutions.co.uk",
  1052. "homepage": "http://davedevelopment.co.uk"
  1053. }
  1054. ],
  1055. "description": "Simple rate limiting/throttling for php",
  1056. "homepage": "http://github.com/davedevelopment/stiphle",
  1057. "keywords": [
  1058. "rate limit",
  1059. "rate limiting",
  1060. "throttle",
  1061. "throttling"
  1062. ],
  1063. "support": {
  1064. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1065. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1066. },
  1067. "time": "2022-11-25T16:30:20+00:00"
  1068. },
  1069. {
  1070. "name": "dekor/php-array-table",
  1071. "version": "2.0",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/deniskoronets/php-array-table.git",
  1075. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1080. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "ext-mbstring": "*",
  1085. "php": ">=5.6.0"
  1086. },
  1087. "require-dev": {
  1088. "phpunit/phpunit": "^10"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "psr-4": {
  1093. "dekor\\": "src"
  1094. }
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "BSD-3-Clause"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Denis Koronets",
  1103. "email": "deniskoronets@woo.zp.ua",
  1104. "homepage": "https://woo.zp.ua/"
  1105. }
  1106. ],
  1107. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1108. "keywords": [
  1109. "library",
  1110. "php"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1114. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1115. },
  1116. "time": "2023-02-10T10:13:42+00:00"
  1117. },
  1118. {
  1119. "name": "dflydev/dot-access-data",
  1120. "version": "v3.0.3",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1124. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1129. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "php": "^7.1 || ^8.0"
  1134. },
  1135. "require-dev": {
  1136. "phpstan/phpstan": "^0.12.42",
  1137. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1138. "scrutinizer/ocular": "1.6.0",
  1139. "squizlabs/php_codesniffer": "^3.5",
  1140. "vimeo/psalm": "^4.0.0"
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-main": "3.x-dev"
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Dflydev\\DotAccessData\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Dragonfly Development Inc.",
  1160. "email": "info@dflydev.com",
  1161. "homepage": "http://dflydev.com"
  1162. },
  1163. {
  1164. "name": "Beau Simensen",
  1165. "email": "beau@dflydev.com",
  1166. "homepage": "http://beausimensen.com"
  1167. },
  1168. {
  1169. "name": "Carlos Frutos",
  1170. "email": "carlos@kiwing.it",
  1171. "homepage": "https://github.com/cfrutos"
  1172. },
  1173. {
  1174. "name": "Colin O'Dell",
  1175. "email": "colinodell@gmail.com",
  1176. "homepage": "https://www.colinodell.com"
  1177. }
  1178. ],
  1179. "description": "Given a deep data structure, access data by dot notation.",
  1180. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1181. "keywords": [
  1182. "access",
  1183. "data",
  1184. "dot",
  1185. "notation"
  1186. ],
  1187. "support": {
  1188. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1189. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1190. },
  1191. "time": "2024-07-08T12:26:09+00:00"
  1192. },
  1193. {
  1194. "name": "doctrine/collections",
  1195. "version": "2.6.0",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/doctrine/collections.git",
  1199. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1204. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  1205. "shasum": ""
  1206. },
  1207. "require": {
  1208. "doctrine/deprecations": "^1",
  1209. "php": "^8.1",
  1210. "symfony/polyfill-php84": "^1.30"
  1211. },
  1212. "require-dev": {
  1213. "doctrine/coding-standard": "^14",
  1214. "ext-json": "*",
  1215. "phpstan/phpstan": "^2.1.30",
  1216. "phpstan/phpstan-phpunit": "^2.0.7",
  1217. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  1218. },
  1219. "type": "library",
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Collections\\": "src"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Guilherme Blanco",
  1232. "email": "guilhermeblanco@gmail.com"
  1233. },
  1234. {
  1235. "name": "Roman Borschel",
  1236. "email": "roman@code-factory.org"
  1237. },
  1238. {
  1239. "name": "Benjamin Eberlei",
  1240. "email": "kontakt@beberlei.de"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1252. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1253. "keywords": [
  1254. "array",
  1255. "collections",
  1256. "iterators",
  1257. "php"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/doctrine/collections/issues",
  1261. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  1262. },
  1263. "funding": [
  1264. {
  1265. "url": "https://www.doctrine-project.org/sponsorship.html",
  1266. "type": "custom"
  1267. },
  1268. {
  1269. "url": "https://www.patreon.com/phpdoctrine",
  1270. "type": "patreon"
  1271. },
  1272. {
  1273. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1274. "type": "tidelift"
  1275. }
  1276. ],
  1277. "time": "2026-01-15T10:01:58+00:00"
  1278. },
  1279. {
  1280. "name": "doctrine/common",
  1281. "version": "3.5.0",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/doctrine/common.git",
  1285. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1290. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1295. "php": "^7.1 || ^8.0"
  1296. },
  1297. "require-dev": {
  1298. "doctrine/coding-standard": "^9.0 || ^10.0",
  1299. "doctrine/collections": "^1",
  1300. "phpstan/phpstan": "^1.4.1",
  1301. "phpstan/phpstan-phpunit": "^1",
  1302. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1303. "squizlabs/php_codesniffer": "^3.0",
  1304. "symfony/phpunit-bridge": "^6.1",
  1305. "vimeo/psalm": "^4.4"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Doctrine\\Common\\": "src"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Guilherme Blanco",
  1320. "email": "guilhermeblanco@gmail.com"
  1321. },
  1322. {
  1323. "name": "Roman Borschel",
  1324. "email": "roman@code-factory.org"
  1325. },
  1326. {
  1327. "name": "Benjamin Eberlei",
  1328. "email": "kontakt@beberlei.de"
  1329. },
  1330. {
  1331. "name": "Jonathan Wage",
  1332. "email": "jonwage@gmail.com"
  1333. },
  1334. {
  1335. "name": "Johannes Schmitt",
  1336. "email": "schmittjoh@gmail.com"
  1337. },
  1338. {
  1339. "name": "Marco Pivetta",
  1340. "email": "ocramius@gmail.com"
  1341. }
  1342. ],
  1343. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1344. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1345. "keywords": [
  1346. "common",
  1347. "doctrine",
  1348. "php"
  1349. ],
  1350. "support": {
  1351. "issues": "https://github.com/doctrine/common/issues",
  1352. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1353. },
  1354. "funding": [
  1355. {
  1356. "url": "https://www.doctrine-project.org/sponsorship.html",
  1357. "type": "custom"
  1358. },
  1359. {
  1360. "url": "https://www.patreon.com/phpdoctrine",
  1361. "type": "patreon"
  1362. },
  1363. {
  1364. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1365. "type": "tidelift"
  1366. }
  1367. ],
  1368. "time": "2025-01-01T22:12:03+00:00"
  1369. },
  1370. {
  1371. "name": "doctrine/deprecations",
  1372. "version": "1.1.6",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/doctrine/deprecations.git",
  1376. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1381. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "php": "^7.1 || ^8.0"
  1386. },
  1387. "conflict": {
  1388. "phpunit/phpunit": "<=7.5 || >=14"
  1389. },
  1390. "require-dev": {
  1391. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1392. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1393. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1394. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1395. "psr/log": "^1 || ^2 || ^3"
  1396. },
  1397. "suggest": {
  1398. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1399. },
  1400. "type": "library",
  1401. "autoload": {
  1402. "psr-4": {
  1403. "Doctrine\\Deprecations\\": "src"
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1411. "homepage": "https://www.doctrine-project.org/",
  1412. "support": {
  1413. "issues": "https://github.com/doctrine/deprecations/issues",
  1414. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1415. },
  1416. "time": "2026-02-07T07:09:04+00:00"
  1417. },
  1418. {
  1419. "name": "doctrine/event-manager",
  1420. "version": "2.1.1",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/doctrine/event-manager.git",
  1424. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1429. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": "^8.1"
  1434. },
  1435. "conflict": {
  1436. "doctrine/common": "<2.9"
  1437. },
  1438. "require-dev": {
  1439. "doctrine/coding-standard": "^14",
  1440. "phpdocumentor/guides-cli": "^1.4",
  1441. "phpstan/phpstan": "^2.1.32",
  1442. "phpunit/phpunit": "^10.5.58"
  1443. },
  1444. "type": "library",
  1445. "autoload": {
  1446. "psr-4": {
  1447. "Doctrine\\Common\\": "src"
  1448. }
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "MIT"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Guilherme Blanco",
  1457. "email": "guilhermeblanco@gmail.com"
  1458. },
  1459. {
  1460. "name": "Roman Borschel",
  1461. "email": "roman@code-factory.org"
  1462. },
  1463. {
  1464. "name": "Benjamin Eberlei",
  1465. "email": "kontakt@beberlei.de"
  1466. },
  1467. {
  1468. "name": "Jonathan Wage",
  1469. "email": "jonwage@gmail.com"
  1470. },
  1471. {
  1472. "name": "Johannes Schmitt",
  1473. "email": "schmittjoh@gmail.com"
  1474. },
  1475. {
  1476. "name": "Marco Pivetta",
  1477. "email": "ocramius@gmail.com"
  1478. }
  1479. ],
  1480. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1481. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1482. "keywords": [
  1483. "event",
  1484. "event dispatcher",
  1485. "event manager",
  1486. "event system",
  1487. "events"
  1488. ],
  1489. "support": {
  1490. "issues": "https://github.com/doctrine/event-manager/issues",
  1491. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1492. },
  1493. "funding": [
  1494. {
  1495. "url": "https://www.doctrine-project.org/sponsorship.html",
  1496. "type": "custom"
  1497. },
  1498. {
  1499. "url": "https://www.patreon.com/phpdoctrine",
  1500. "type": "patreon"
  1501. },
  1502. {
  1503. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1504. "type": "tidelift"
  1505. }
  1506. ],
  1507. "time": "2026-01-29T07:11:08+00:00"
  1508. },
  1509. {
  1510. "name": "doctrine/lexer",
  1511. "version": "2.1.1",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/doctrine/lexer.git",
  1515. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1520. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "doctrine/deprecations": "^1.0",
  1525. "php": "^7.1 || ^8.0"
  1526. },
  1527. "require-dev": {
  1528. "doctrine/coding-standard": "^9 || ^12",
  1529. "phpstan/phpstan": "^1.3",
  1530. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1531. "psalm/plugin-phpunit": "^0.18.3",
  1532. "vimeo/psalm": "^4.11 || ^5.21"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "Doctrine\\Common\\Lexer\\": "src"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "MIT"
  1543. ],
  1544. "authors": [
  1545. {
  1546. "name": "Guilherme Blanco",
  1547. "email": "guilhermeblanco@gmail.com"
  1548. },
  1549. {
  1550. "name": "Roman Borschel",
  1551. "email": "roman@code-factory.org"
  1552. },
  1553. {
  1554. "name": "Johannes Schmitt",
  1555. "email": "schmittjoh@gmail.com"
  1556. }
  1557. ],
  1558. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1559. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1560. "keywords": [
  1561. "annotations",
  1562. "docblock",
  1563. "lexer",
  1564. "parser",
  1565. "php"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/doctrine/lexer/issues",
  1569. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://www.doctrine-project.org/sponsorship.html",
  1574. "type": "custom"
  1575. },
  1576. {
  1577. "url": "https://www.patreon.com/phpdoctrine",
  1578. "type": "patreon"
  1579. },
  1580. {
  1581. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1582. "type": "tidelift"
  1583. }
  1584. ],
  1585. "time": "2024-02-05T11:35:39+00:00"
  1586. },
  1587. {
  1588. "name": "doctrine/persistence",
  1589. "version": "4.1.1",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://github.com/doctrine/persistence.git",
  1593. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1598. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1599. "shasum": ""
  1600. },
  1601. "require": {
  1602. "doctrine/event-manager": "^1 || ^2",
  1603. "php": "^8.1",
  1604. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1605. },
  1606. "require-dev": {
  1607. "doctrine/coding-standard": "^14",
  1608. "phpstan/phpstan": "2.1.30",
  1609. "phpstan/phpstan-phpunit": "^2",
  1610. "phpstan/phpstan-strict-rules": "^2",
  1611. "phpunit/phpunit": "^10.5.58 || ^12",
  1612. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1613. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1614. },
  1615. "type": "library",
  1616. "autoload": {
  1617. "psr-4": {
  1618. "Doctrine\\Persistence\\": "src/Persistence"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Guilherme Blanco",
  1628. "email": "guilhermeblanco@gmail.com"
  1629. },
  1630. {
  1631. "name": "Roman Borschel",
  1632. "email": "roman@code-factory.org"
  1633. },
  1634. {
  1635. "name": "Benjamin Eberlei",
  1636. "email": "kontakt@beberlei.de"
  1637. },
  1638. {
  1639. "name": "Jonathan Wage",
  1640. "email": "jonwage@gmail.com"
  1641. },
  1642. {
  1643. "name": "Johannes Schmitt",
  1644. "email": "schmittjoh@gmail.com"
  1645. },
  1646. {
  1647. "name": "Marco Pivetta",
  1648. "email": "ocramius@gmail.com"
  1649. }
  1650. ],
  1651. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1652. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1653. "keywords": [
  1654. "mapper",
  1655. "object",
  1656. "odm",
  1657. "orm",
  1658. "persistence"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/doctrine/persistence/issues",
  1662. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://www.doctrine-project.org/sponsorship.html",
  1667. "type": "custom"
  1668. },
  1669. {
  1670. "url": "https://www.patreon.com/phpdoctrine",
  1671. "type": "patreon"
  1672. },
  1673. {
  1674. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1675. "type": "tidelift"
  1676. }
  1677. ],
  1678. "time": "2025-10-16T20:13:18+00:00"
  1679. },
  1680. {
  1681. "name": "drupal/address",
  1682. "version": "2.0.4",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://git.drupalcode.org/project/address.git",
  1686. "reference": "2.0.4"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip",
  1691. "reference": "2.0.4",
  1692. "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e"
  1693. },
  1694. "require": {
  1695. "commerceguys/addressing": "^2.1.1",
  1696. "drupal/core": "^9.5 || ^10 || ^11",
  1697. "php": "^8.0"
  1698. },
  1699. "require-dev": {
  1700. "drupal/diff": "^1",
  1701. "drupal/feeds": "^3",
  1702. "drupal/token": "^1"
  1703. },
  1704. "type": "drupal-module",
  1705. "extra": {
  1706. "drupal": {
  1707. "version": "2.0.4",
  1708. "datestamp": "1746462054",
  1709. "security-coverage": {
  1710. "status": "covered",
  1711. "message": "Covered by Drupal's security advisory policy"
  1712. }
  1713. }
  1714. },
  1715. "notification-url": "https://packages.drupal.org/8/downloads",
  1716. "license": [
  1717. "GPL-2.0-or-later"
  1718. ],
  1719. "authors": [
  1720. {
  1721. "name": "bojanz",
  1722. "homepage": "https://www.drupal.org/user/86106"
  1723. },
  1724. {
  1725. "name": "centarro",
  1726. "homepage": "https://www.drupal.org/user/3661446"
  1727. },
  1728. {
  1729. "name": "dww",
  1730. "homepage": "https://www.drupal.org/user/46549"
  1731. },
  1732. {
  1733. "name": "jsacksick",
  1734. "homepage": "https://www.drupal.org/user/972218"
  1735. },
  1736. {
  1737. "name": "rszrama",
  1738. "homepage": "https://www.drupal.org/user/49344"
  1739. }
  1740. ],
  1741. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1742. "homepage": "http://drupal.org/project/address",
  1743. "support": {
  1744. "source": "https://git.drupalcode.org/project/address"
  1745. }
  1746. },
  1747. {
  1748. "name": "drupal/admin_toolbar",
  1749. "version": "3.6.3",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1753. "reference": "3.6.3"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1758. "reference": "3.6.3",
  1759. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1760. },
  1761. "require": {
  1762. "drupal/core": "^9.5 || ^10 || ^11"
  1763. },
  1764. "conflict": {
  1765. "drupal/project_browser": "<2.1.0"
  1766. },
  1767. "type": "drupal-module",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "3.6.3",
  1771. "datestamp": "1767318997",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0-or-later"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "Wilfrid Roze (eme)",
  1785. "homepage": "https://www.drupal.org/u/eme",
  1786. "role": "Maintainer"
  1787. },
  1788. {
  1789. "name": "Romain Jarraud (romainj)",
  1790. "homepage": "https://www.drupal.org/u/romainj",
  1791. "role": "Maintainer"
  1792. },
  1793. {
  1794. "name": "Adrian Cid Almaguer (adriancid)",
  1795. "homepage": "https://www.drupal.org/u/adriancid",
  1796. "email": "adriancid@gmail.com",
  1797. "role": "Maintainer"
  1798. },
  1799. {
  1800. "name": "Mohamed Anis Taktak (matio89)",
  1801. "homepage": "https://www.drupal.org/u/matio89",
  1802. "role": "Maintainer"
  1803. },
  1804. {
  1805. "name": "David Suissa (DYdave)",
  1806. "homepage": "https://www.drupal.org/u/dydave",
  1807. "role": "Maintainer"
  1808. },
  1809. {
  1810. "name": "japerry",
  1811. "homepage": "https://www.drupal.org/user/45640"
  1812. },
  1813. {
  1814. "name": "matio89",
  1815. "homepage": "https://www.drupal.org/user/2320090"
  1816. },
  1817. {
  1818. "name": "musa.thomas",
  1819. "homepage": "https://www.drupal.org/user/1213824"
  1820. },
  1821. {
  1822. "name": "romainj",
  1823. "homepage": "https://www.drupal.org/user/370706"
  1824. }
  1825. ],
  1826. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1827. "homepage": "http://drupal.org/project/admin_toolbar",
  1828. "keywords": [
  1829. "Drupal",
  1830. "Toolbar"
  1831. ],
  1832. "support": {
  1833. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1834. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1835. }
  1836. },
  1837. {
  1838. "name": "drupal/adminimal_theme",
  1839. "version": "1.7.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1843. "reference": "8.x-1.7"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1848. "reference": "8.x-1.7",
  1849. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1850. },
  1851. "require": {
  1852. "drupal/core": "^9.3 || ^10",
  1853. "drupal/seven": "~1.0"
  1854. },
  1855. "type": "drupal-theme",
  1856. "extra": {
  1857. "drupal": {
  1858. "version": "8.x-1.7",
  1859. "datestamp": "1691504486",
  1860. "security-coverage": {
  1861. "status": "covered",
  1862. "message": "Covered by Drupal's security advisory policy"
  1863. }
  1864. }
  1865. },
  1866. "notification-url": "https://packages.drupal.org/8/downloads",
  1867. "license": [
  1868. "GPL-2.0+"
  1869. ],
  1870. "authors": [
  1871. {
  1872. "name": "ANDiTKO",
  1873. "homepage": "https://www.drupal.org/user/1428124"
  1874. },
  1875. {
  1876. "name": "andrey.troeglazov",
  1877. "homepage": "https://www.drupal.org/user/3145389"
  1878. },
  1879. {
  1880. "name": "realityloop",
  1881. "homepage": "https://www.drupal.org/user/139189"
  1882. },
  1883. {
  1884. "name": "rjjakes",
  1885. "homepage": "https://www.drupal.org/user/3457245"
  1886. }
  1887. ],
  1888. "description": "Drupal administration theme with modern minimalist design.",
  1889. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1890. "support": {
  1891. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1892. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1893. }
  1894. },
  1895. {
  1896. "name": "drupal/administerusersbyrole",
  1897. "version": "3.6.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  1901. "reference": "8.x-3.6"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.6.zip",
  1906. "reference": "8.x-3.6",
  1907. "shasum": "ab94307f3b47eac5c18d8c584a14516c6c54327f"
  1908. },
  1909. "require": {
  1910. "drupal/core": "^10 || ^11"
  1911. },
  1912. "type": "drupal-module",
  1913. "extra": {
  1914. "drupal": {
  1915. "version": "8.x-3.6",
  1916. "datestamp": "1762439804",
  1917. "security-coverage": {
  1918. "status": "covered",
  1919. "message": "Covered by Drupal's security advisory policy"
  1920. }
  1921. }
  1922. },
  1923. "notification-url": "https://packages.drupal.org/8/downloads",
  1924. "license": [
  1925. "GPL-2.0-or-later"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "adamps",
  1930. "homepage": "https://www.drupal.org/user/2650563"
  1931. },
  1932. {
  1933. "name": "mrfelton",
  1934. "homepage": "https://www.drupal.org/user/305669"
  1935. },
  1936. {
  1937. "name": "smokris",
  1938. "homepage": "https://www.drupal.org/user/161913"
  1939. }
  1940. ],
  1941. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  1942. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  1943. "support": {
  1944. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  1945. }
  1946. },
  1947. {
  1948. "name": "drupal/advanced_text_formatter",
  1949. "version": "3.0.0-rc2",
  1950. "source": {
  1951. "type": "git",
  1952. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1953. "reference": "3.0.0-rc2"
  1954. },
  1955. "dist": {
  1956. "type": "zip",
  1957. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  1958. "reference": "3.0.0-rc2",
  1959. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  1960. },
  1961. "require": {
  1962. "drupal/core": "^8 || ^9 || ^10 || ^11"
  1963. },
  1964. "type": "drupal-module",
  1965. "extra": {
  1966. "drupal": {
  1967. "version": "3.0.0-rc2",
  1968. "datestamp": "1727826727",
  1969. "security-coverage": {
  1970. "status": "not-covered",
  1971. "message": "RC releases are not covered by Drupal security advisories."
  1972. }
  1973. }
  1974. },
  1975. "notification-url": "https://packages.drupal.org/8/downloads",
  1976. "license": [
  1977. "GPL-2.0-or-later"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "azovsky",
  1982. "homepage": "https://www.drupal.org/user/330533"
  1983. },
  1984. {
  1985. "name": "knectar",
  1986. "homepage": "https://www.drupal.org/user/1184414"
  1987. },
  1988. {
  1989. "name": "realityloop",
  1990. "homepage": "https://www.drupal.org/user/139189"
  1991. },
  1992. {
  1993. "name": "thmnhat",
  1994. "homepage": "https://www.drupal.org/user/998946"
  1995. }
  1996. ],
  1997. "description": "Formatter of textfield, text area and text format.",
  1998. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1999. "support": {
  2000. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2001. }
  2002. },
  2003. {
  2004. "name": "drupal/audiofield",
  2005. "version": "1.13.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://git.drupalcode.org/project/audiofield.git",
  2009. "reference": "8.x-1.13"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2014. "reference": "8.x-1.13",
  2015. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2016. },
  2017. "require": {
  2018. "drupal/core": "^8 || ^9 || ^10"
  2019. },
  2020. "type": "drupal-module",
  2021. "extra": {
  2022. "drupal": {
  2023. "version": "8.x-1.13",
  2024. "datestamp": "1681143245",
  2025. "security-coverage": {
  2026. "status": "covered",
  2027. "message": "Covered by Drupal's security advisory policy"
  2028. }
  2029. },
  2030. "drush": {
  2031. "services": {
  2032. "drush.services.yml": "^9"
  2033. }
  2034. }
  2035. },
  2036. "notification-url": "https://packages.drupal.org/8/downloads",
  2037. "license": [
  2038. "GPL-2.0-or-later"
  2039. ],
  2040. "authors": [
  2041. {
  2042. "name": "Daniel Moberly",
  2043. "homepage": "https://www.drupal.org/u/danielmoberly",
  2044. "role": "Maintainer"
  2045. },
  2046. {
  2047. "name": "tamerzg",
  2048. "homepage": "https://www.drupal.org/user/464564"
  2049. }
  2050. ],
  2051. "description": "AudioField Module",
  2052. "homepage": "https://www.drupal.org/project/audiofield",
  2053. "support": {
  2054. "source": "https://git.drupalcode.org/project/audiofield",
  2055. "issues": "https://www.drupal.org/project/issues/audiofield"
  2056. }
  2057. },
  2058. {
  2059. "name": "drupal/autocomplete_deluxe",
  2060. "version": "2.1.2",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2064. "reference": "2.1.2"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2069. "reference": "2.1.2",
  2070. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2071. },
  2072. "require": {
  2073. "drupal/core": "^10.3 || ^11"
  2074. },
  2075. "type": "drupal-module",
  2076. "extra": {
  2077. "drupal": {
  2078. "version": "2.1.2",
  2079. "datestamp": "1742303934",
  2080. "security-coverage": {
  2081. "status": "covered",
  2082. "message": "Covered by Drupal's security advisory policy"
  2083. }
  2084. }
  2085. },
  2086. "notification-url": "https://packages.drupal.org/8/downloads",
  2087. "license": [
  2088. "GPL-2.0-or-later"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Vardot",
  2093. "homepage": "https://www.drupal.org/vardot",
  2094. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2095. },
  2096. {
  2097. "name": "Mediacurrent",
  2098. "homepage": "https://www.drupal.org/mediacurrent",
  2099. "role": "Supporting organization"
  2100. },
  2101. {
  2102. "name": "mohammed j. razem",
  2103. "homepage": "https://www.drupal.org/user/255384"
  2104. },
  2105. {
  2106. "name": "mpriscella",
  2107. "homepage": "https://www.drupal.org/user/2354820"
  2108. },
  2109. {
  2110. "name": "rajab natshah",
  2111. "homepage": "https://www.drupal.org/user/1414312"
  2112. },
  2113. {
  2114. "name": "sepgil",
  2115. "homepage": "https://www.drupal.org/user/512828"
  2116. }
  2117. ],
  2118. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2119. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2120. "support": {
  2121. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2122. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2123. }
  2124. },
  2125. {
  2126. "name": "drupal/autologout",
  2127. "version": "1.6.0",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://git.drupalcode.org/project/autologout.git",
  2131. "reference": "8.x-1.6"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2136. "reference": "8.x-1.6",
  2137. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2138. },
  2139. "require": {
  2140. "drupal/core": "^9.2 || ^10 || ^11",
  2141. "drupal/js_cookie": "^1.0"
  2142. },
  2143. "type": "drupal-module",
  2144. "extra": {
  2145. "drupal": {
  2146. "version": "8.x-1.6",
  2147. "datestamp": "1732235148",
  2148. "security-coverage": {
  2149. "status": "covered",
  2150. "message": "Covered by Drupal's security advisory policy"
  2151. }
  2152. }
  2153. },
  2154. "notification-url": "https://packages.drupal.org/8/downloads",
  2155. "license": [
  2156. "GPL-2.0-or-later"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "ajits",
  2161. "homepage": "https://www.drupal.org/user/981944"
  2162. },
  2163. {
  2164. "name": "AjK",
  2165. "homepage": "https://www.drupal.org/user/39030"
  2166. },
  2167. {
  2168. "name": "boshtian",
  2169. "homepage": "https://www.drupal.org/user/1773456"
  2170. },
  2171. {
  2172. "name": "dandrews",
  2173. "homepage": "https://www.drupal.org/user/2014490"
  2174. },
  2175. {
  2176. "name": "darksnow",
  2177. "homepage": "https://www.drupal.org/user/391915"
  2178. },
  2179. {
  2180. "name": "japerry",
  2181. "homepage": "https://www.drupal.org/user/45640"
  2182. },
  2183. {
  2184. "name": "johnennew",
  2185. "homepage": "https://www.drupal.org/user/1150042"
  2186. },
  2187. {
  2188. "name": "jrglasgow",
  2189. "homepage": "https://www.drupal.org/user/36590"
  2190. },
  2191. {
  2192. "name": "kmasood",
  2193. "homepage": "https://www.drupal.org/user/1262860"
  2194. },
  2195. {
  2196. "name": "levelos",
  2197. "homepage": "https://www.drupal.org/user/54135"
  2198. },
  2199. {
  2200. "name": "prabeen.giri",
  2201. "homepage": "https://www.drupal.org/user/913078"
  2202. },
  2203. {
  2204. "name": "scott_earnest",
  2205. "homepage": "https://www.drupal.org/user/416158"
  2206. },
  2207. {
  2208. "name": "str8",
  2209. "homepage": "https://www.drupal.org/user/2865063"
  2210. },
  2211. {
  2212. "name": "the_g_bomb",
  2213. "homepage": "https://www.drupal.org/user/492012"
  2214. }
  2215. ],
  2216. "description": "Adds automated timed logout.",
  2217. "homepage": "http://drupal.org/project/autologout",
  2218. "support": {
  2219. "source": "https://git.drupalcode.org/project/autologout",
  2220. "issues": "https://www.drupal.org/project/issues/autologout"
  2221. }
  2222. },
  2223. {
  2224. "name": "drupal/better_exposed_filters",
  2225. "version": "6.0.6",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2229. "reference": "6.0.6"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2234. "reference": "6.0.6",
  2235. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2236. },
  2237. "require": {
  2238. "drupal/core": "^9 || ^10",
  2239. "drupal/jquery_ui": "*",
  2240. "drupal/jquery_ui_datepicker": "*",
  2241. "drupal/jquery_ui_slider": "*",
  2242. "drupal/jquery_ui_touch_punch": "*"
  2243. },
  2244. "type": "drupal-module",
  2245. "extra": {
  2246. "drupal": {
  2247. "version": "6.0.6",
  2248. "datestamp": "1716397541",
  2249. "security-coverage": {
  2250. "status": "covered",
  2251. "message": "Covered by Drupal's security advisory policy"
  2252. }
  2253. }
  2254. },
  2255. "notification-url": "https://packages.drupal.org/8/downloads",
  2256. "license": [
  2257. "GPL-2.0-or-later"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Mike Keran",
  2262. "homepage": "https://www.drupal.org/u/mikeker"
  2263. },
  2264. {
  2265. "name": "Martin Keereman",
  2266. "homepage": "https://www.drupal.org/u/etroid"
  2267. },
  2268. {
  2269. "name": "Neslee Canil Pinto",
  2270. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2271. },
  2272. {
  2273. "name": "mikeker",
  2274. "homepage": "https://www.drupal.org/user/192273"
  2275. },
  2276. {
  2277. "name": "neslee canil pinto",
  2278. "homepage": "https://www.drupal.org/user/3580850"
  2279. },
  2280. {
  2281. "name": "podarok",
  2282. "homepage": "https://www.drupal.org/user/116002"
  2283. },
  2284. {
  2285. "name": "rlhawk",
  2286. "homepage": "https://www.drupal.org/user/352283"
  2287. },
  2288. {
  2289. "name": "smustgrave",
  2290. "homepage": "https://www.drupal.org/user/3252890"
  2291. }
  2292. ],
  2293. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2294. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2295. "support": {
  2296. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2297. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2298. }
  2299. },
  2300. {
  2301. "name": "drupal/betterlogin",
  2302. "version": "2.0.3",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2306. "reference": "2.0.3"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.3.zip",
  2311. "reference": "2.0.3",
  2312. "shasum": "5588632dae5677edf5f71faeb22bd2bc3aff5ac2"
  2313. },
  2314. "require": {
  2315. "drupal/core": "^10.1 || ^11"
  2316. },
  2317. "type": "drupal-module",
  2318. "extra": {
  2319. "drupal": {
  2320. "version": "2.0.3",
  2321. "datestamp": "1762858267",
  2322. "security-coverage": {
  2323. "status": "covered",
  2324. "message": "Covered by Drupal's security advisory policy"
  2325. }
  2326. }
  2327. },
  2328. "notification-url": "https://packages.drupal.org/8/downloads",
  2329. "license": [
  2330. "GPL-2.0-or-later"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "theamoeba",
  2335. "homepage": "https://www.drupal.org/user/251700"
  2336. },
  2337. {
  2338. "name": "yogeshmpawar",
  2339. "homepage": "https://www.drupal.org/user/2922907"
  2340. }
  2341. ],
  2342. "description": "Make the login screens better :)",
  2343. "homepage": "https://www.drupal.org/project/betterlogin",
  2344. "support": {
  2345. "source": "https://git.drupalcode.org/project/betterlogin"
  2346. }
  2347. },
  2348. {
  2349. "name": "drupal/blazy",
  2350. "version": "2.27.0",
  2351. "source": {
  2352. "type": "git",
  2353. "url": "https://git.drupalcode.org/project/blazy.git",
  2354. "reference": "8.x-2.27"
  2355. },
  2356. "dist": {
  2357. "type": "zip",
  2358. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2359. "reference": "8.x-2.27",
  2360. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2361. },
  2362. "require": {
  2363. "drupal/core": "^8.8 || ^9 || ^10"
  2364. },
  2365. "conflict": {
  2366. "drupal/csp": "<1.12"
  2367. },
  2368. "type": "drupal-module",
  2369. "extra": {
  2370. "drupal": {
  2371. "version": "8.x-2.27",
  2372. "datestamp": "1715944090",
  2373. "security-coverage": {
  2374. "status": "covered",
  2375. "message": "Covered by Drupal's security advisory policy"
  2376. }
  2377. }
  2378. },
  2379. "notification-url": "https://packages.drupal.org/8/downloads",
  2380. "license": [
  2381. "GPL-2.0-or-later"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "Gaus Surahman",
  2386. "homepage": "https://www.drupal.org/u/gausarts",
  2387. "role": "Maintainer"
  2388. },
  2389. {
  2390. "name": "Contributors",
  2391. "homepage": "https://www.drupal.org/node/2663268/committers",
  2392. "role": "Contributor"
  2393. },
  2394. {
  2395. "name": "geek-merlin",
  2396. "homepage": "https://www.drupal.org/user/229048"
  2397. },
  2398. {
  2399. "name": "sun",
  2400. "homepage": "https://www.drupal.org/user/54136"
  2401. }
  2402. ],
  2403. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2404. "homepage": "https://drupal.org/project/blazy",
  2405. "keywords": [
  2406. "Drupal",
  2407. "bLazy",
  2408. "lazyload"
  2409. ],
  2410. "support": {
  2411. "source": "https://git.drupalcode.org/project/blazy",
  2412. "issues": "https://drupal.org/project/issues/blazy"
  2413. }
  2414. },
  2415. {
  2416. "name": "drupal/block_class",
  2417. "version": "4.0.2",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://git.drupalcode.org/project/block_class.git",
  2421. "reference": "4.0.2"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.2.zip",
  2426. "reference": "4.0.2",
  2427. "shasum": "10c30a6a113a00722cb42798692c3c0389c35a89"
  2428. },
  2429. "require": {
  2430. "drupal/core": "^9 || ^10 || ^11"
  2431. },
  2432. "type": "drupal-module",
  2433. "extra": {
  2434. "drupal": {
  2435. "version": "4.0.2",
  2436. "datestamp": "1762734005",
  2437. "security-coverage": {
  2438. "status": "covered",
  2439. "message": "Covered by Drupal's security advisory policy"
  2440. }
  2441. }
  2442. },
  2443. "notification-url": "https://packages.drupal.org/8/downloads",
  2444. "license": [
  2445. "GPL-2.0-or-later"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Todd Nienkerk",
  2450. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2451. "role": "Maintainer"
  2452. },
  2453. {
  2454. "name": "Renato Gonçalves (RenatoG)",
  2455. "homepage": "https://www.drupal.org/u/RenatoG",
  2456. "role": "Maintainer"
  2457. },
  2458. {
  2459. "name": "Neslee Canil Pinto",
  2460. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2461. "role": "Maintainer"
  2462. },
  2463. {
  2464. "name": "Aaron Stanush",
  2465. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2466. "role": "Maintainer"
  2467. },
  2468. {
  2469. "name": "David Suissa (DYdave)",
  2470. "homepage": "https://www.drupal.org/u/DYdave",
  2471. "role": "Maintainer"
  2472. },
  2473. {
  2474. "name": "Four Kitchens",
  2475. "homepage": "https://www.drupal.org/user/358502",
  2476. "role": "Maintainer"
  2477. },
  2478. {
  2479. "name": "berenddeboer",
  2480. "homepage": "https://www.drupal.org/u/berenddeboer",
  2481. "role": "Maintainer"
  2482. },
  2483. {
  2484. "name": "elliotttf",
  2485. "homepage": "https://www.drupal.org/u/elliotttf",
  2486. "role": "Maintainer"
  2487. },
  2488. {
  2489. "name": "Michal Minecki (mirzu)",
  2490. "homepage": "https://www.drupal.org/u/mirzu",
  2491. "role": "Maintainer"
  2492. },
  2493. {
  2494. "name": "Patrick Coffey (pcoffey)",
  2495. "homepage": "https://www.drupal.org/u/pcoffey",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "Taylor Smith (tsmith512)",
  2500. "homepage": "https://www.drupal.org/u/tsmith512",
  2501. "role": "Maintainer"
  2502. }
  2503. ],
  2504. "description": "Allows assigning classes, attributes and ID to blocks.",
  2505. "homepage": "https://www.drupal.org/project/block_class",
  2506. "keywords": [
  2507. "Drupal"
  2508. ],
  2509. "support": {
  2510. "source": "https://git.drupalcode.org/project/block_class",
  2511. "issues": "https://www.drupal.org/project/issues/block_class",
  2512. "irc": "irc://irc.freenode.org/drupal-contribute"
  2513. }
  2514. },
  2515. {
  2516. "name": "drupal/computed_field",
  2517. "version": "3.0.0",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://git.drupalcode.org/project/computed_field.git",
  2521. "reference": "3.0.0"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2526. "reference": "3.0.0",
  2527. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2528. },
  2529. "require": {
  2530. "drupal/core": "^8 || ^9 || ^10"
  2531. },
  2532. "type": "drupal-module",
  2533. "extra": {
  2534. "drupal": {
  2535. "version": "3.0.0",
  2536. "datestamp": "1705775905",
  2537. "security-coverage": {
  2538. "status": "covered",
  2539. "message": "Covered by Drupal's security advisory policy"
  2540. }
  2541. }
  2542. },
  2543. "notification-url": "https://packages.drupal.org/8/downloads",
  2544. "license": [
  2545. "GPL-2.0-or-later"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "agileware",
  2550. "homepage": "https://www.drupal.org/user/89106"
  2551. },
  2552. {
  2553. "name": "colan",
  2554. "homepage": "https://www.drupal.org/user/58704"
  2555. },
  2556. {
  2557. "name": "dealancer",
  2558. "homepage": "https://www.drupal.org/user/243418"
  2559. },
  2560. {
  2561. "name": "joachim",
  2562. "homepage": "https://www.drupal.org/user/107701"
  2563. },
  2564. {
  2565. "name": "markus_petrux",
  2566. "homepage": "https://www.drupal.org/user/39593"
  2567. },
  2568. {
  2569. "name": "Moonshine",
  2570. "homepage": "https://www.drupal.org/user/133705"
  2571. },
  2572. {
  2573. "name": "nickcaballero",
  2574. "homepage": "https://www.drupal.org/user/588336"
  2575. },
  2576. {
  2577. "name": "Pedro Lozano",
  2578. "homepage": "https://www.drupal.org/user/123766"
  2579. },
  2580. {
  2581. "name": "ram4nd",
  2582. "homepage": "https://www.drupal.org/user/601534"
  2583. }
  2584. ],
  2585. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2586. "homepage": "https://www.drupal.org/project/computed_field",
  2587. "support": {
  2588. "source": "https://git.drupalcode.org/project/computed_field"
  2589. }
  2590. },
  2591. {
  2592. "name": "drupal/computed_token_field",
  2593. "version": "1.0.0-beta1",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2597. "reference": "1.0.0-beta1"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2602. "reference": "1.0.0-beta1",
  2603. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2604. },
  2605. "require": {
  2606. "drupal/computed_field": "^3.0",
  2607. "drupal/core": "^8 || ^9 || ^10"
  2608. },
  2609. "require-dev": {
  2610. "drupal/eck": "*",
  2611. "drupal/field_permissions": "*",
  2612. "drupal/hide_revision_field": "*",
  2613. "drupal/inline_entity_form": "*"
  2614. },
  2615. "type": "drupal-module",
  2616. "extra": {
  2617. "drupal": {
  2618. "version": "1.0.0-beta1",
  2619. "datestamp": "1741812647",
  2620. "security-coverage": {
  2621. "status": "not-covered",
  2622. "message": "Beta releases are not covered by Drupal security advisories."
  2623. }
  2624. }
  2625. },
  2626. "notification-url": "https://packages.drupal.org/8/downloads",
  2627. "license": [
  2628. "GPLv2 or later"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "Derek Laventure",
  2633. "homepage": "https://www.drupal.org/user/3082389",
  2634. "email": "derek@consensus.enterprises"
  2635. },
  2636. {
  2637. "name": "colan",
  2638. "homepage": "https://www.drupal.org/user/58704"
  2639. },
  2640. {
  2641. "name": "ergonlogic",
  2642. "homepage": "https://www.drupal.org/user/368613"
  2643. },
  2644. {
  2645. "name": "spiderman",
  2646. "homepage": "https://www.drupal.org/user/1631"
  2647. }
  2648. ],
  2649. "description": "Computed field that accepts a token to calculate its value.",
  2650. "homepage": "https://www.drupal.org/project/computed_token_field",
  2651. "support": {
  2652. "source": "https://git.drupalcode.org/project/computed_token_field"
  2653. }
  2654. },
  2655. {
  2656. "name": "drupal/config_devel",
  2657. "version": "1.10.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://git.drupalcode.org/project/config_devel.git",
  2661. "reference": "8.x-1.10"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2666. "reference": "8.x-1.10",
  2667. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2668. },
  2669. "require": {
  2670. "drupal/core": "^9.3 || ^10 || ^11"
  2671. },
  2672. "type": "drupal-module",
  2673. "extra": {
  2674. "drupal": {
  2675. "version": "8.x-1.10",
  2676. "datestamp": "1727184343",
  2677. "security-coverage": {
  2678. "status": "covered",
  2679. "message": "Covered by Drupal's security advisory policy"
  2680. }
  2681. }
  2682. },
  2683. "notification-url": "https://packages.drupal.org/8/downloads",
  2684. "license": [
  2685. "GPL-2.0+"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "alexpott",
  2690. "homepage": "https://www.drupal.org/user/157725"
  2691. },
  2692. {
  2693. "name": "benjy",
  2694. "homepage": "https://www.drupal.org/user/1852732"
  2695. },
  2696. {
  2697. "name": "chx",
  2698. "homepage": "https://www.drupal.org/user/9446"
  2699. },
  2700. {
  2701. "name": "joachim",
  2702. "homepage": "https://www.drupal.org/user/107701"
  2703. },
  2704. {
  2705. "name": "vijaycs85",
  2706. "homepage": "https://www.drupal.org/user/93488"
  2707. }
  2708. ],
  2709. "description": "Helps developers work with configuration.",
  2710. "homepage": "https://www.drupal.org/project/config_devel",
  2711. "support": {
  2712. "source": "https://git.drupalcode.org/project/config_devel"
  2713. }
  2714. },
  2715. {
  2716. "name": "drupal/config_enforce",
  2717. "version": "1.0.7",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2721. "reference": "1.0.7"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2726. "reference": "1.0.7",
  2727. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2728. },
  2729. "require": {
  2730. "drupal/core": "^8 || ^9 || ^10",
  2731. "php": "^7.4 || ^8"
  2732. },
  2733. "suggest": {
  2734. "drush/drush": "Allows for running enforce commands via the CLI"
  2735. },
  2736. "type": "drupal-module",
  2737. "extra": {
  2738. "drupal": {
  2739. "version": "1.0.7",
  2740. "datestamp": "1723136457",
  2741. "security-coverage": {
  2742. "status": "covered",
  2743. "message": "Covered by Drupal's security advisory policy"
  2744. }
  2745. },
  2746. "drush": {
  2747. "services": {
  2748. "drush.services.yml": "^11"
  2749. }
  2750. }
  2751. },
  2752. "notification-url": "https://packages.drupal.org/8/downloads",
  2753. "license": [
  2754. "GPLv3 or later"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Christopher Gervais",
  2759. "homepage": "https://www.drupal.org/user/1131532",
  2760. "email": "chris@ergonlogic.com"
  2761. },
  2762. {
  2763. "name": "Dan Friedman",
  2764. "homepage": "https://www.drupal.org/user/58704",
  2765. "email": "dan@consensus.enterprises"
  2766. },
  2767. {
  2768. "name": "Derek Laventure",
  2769. "homepage": "https://www.drupal.org/user/368613",
  2770. "email": "derek@consensus.enterprises"
  2771. },
  2772. {
  2773. "name": "Matei Stanca",
  2774. "homepage": "https://ambientimpact.com"
  2775. },
  2776. {
  2777. "name": "M Parker",
  2778. "homepage": "https://www.drupal.org/u/mparker17"
  2779. },
  2780. {
  2781. "name": "Serena Zhu",
  2782. "homepage": "https://www.drupal.org/u/szhu"
  2783. },
  2784. {
  2785. "name": "spiderman",
  2786. "homepage": "https://www.drupal.org/user/1631"
  2787. },
  2788. {
  2789. "name": "szhu",
  2790. "homepage": "https://www.drupal.org/user/3525295"
  2791. }
  2792. ],
  2793. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2794. "homepage": "https://www.drupal.org/project/config_enforce",
  2795. "support": {
  2796. "source": "https://git.drupalcode.org/project/config_enforce"
  2797. }
  2798. },
  2799. {
  2800. "name": "drupal/config_filter",
  2801. "version": "2.7.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://git.drupalcode.org/project/config_filter.git",
  2805. "reference": "8.x-2.7"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2810. "reference": "8.x-2.7",
  2811. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2812. },
  2813. "require": {
  2814. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2815. },
  2816. "conflict": {
  2817. "drush/drush": "<10"
  2818. },
  2819. "suggest": {
  2820. "drupal/config_split": "Split site configuration for different environments."
  2821. },
  2822. "type": "drupal-module",
  2823. "extra": {
  2824. "drupal": {
  2825. "version": "8.x-2.7",
  2826. "datestamp": "1727472458",
  2827. "security-coverage": {
  2828. "status": "covered",
  2829. "message": "Covered by Drupal's security advisory policy"
  2830. }
  2831. }
  2832. },
  2833. "notification-url": "https://packages.drupal.org/8/downloads",
  2834. "license": [
  2835. "GPL-2.0-or-later"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "Fabian Bircher",
  2840. "homepage": "https://www.drupal.org/u/bircher",
  2841. "email": "opensource@fabianbircher.com",
  2842. "role": "Maintainer"
  2843. },
  2844. {
  2845. "name": "Nuvole Web",
  2846. "homepage": "http://nuvole.org",
  2847. "email": "info@nuvole.org",
  2848. "role": "Maintainer"
  2849. },
  2850. {
  2851. "name": "pescetti",
  2852. "homepage": "https://www.drupal.org/user/436244"
  2853. }
  2854. ],
  2855. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2856. "homepage": "https://www.drupal.org/project/config_filter",
  2857. "keywords": [
  2858. "Drupal",
  2859. "configuration",
  2860. "configuration management"
  2861. ],
  2862. "support": {
  2863. "source": "https://git.drupalcode.org/project/config_filter",
  2864. "issues": "https://www.drupal.org/project/issues/config_filter",
  2865. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2866. }
  2867. },
  2868. {
  2869. "name": "drupal/config_ignore",
  2870. "version": "3.3.0",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2874. "reference": "8.x-3.3"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2879. "reference": "8.x-3.3",
  2880. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2881. },
  2882. "require": {
  2883. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2884. },
  2885. "require-dev": {
  2886. "drupal/config_filter": "^1.8||^2.2",
  2887. "drush/drush": "^10 || ^11 || ^12"
  2888. },
  2889. "type": "drupal-module",
  2890. "extra": {
  2891. "drupal": {
  2892. "version": "8.x-3.3",
  2893. "datestamp": "1713299496",
  2894. "security-coverage": {
  2895. "status": "covered",
  2896. "message": "Covered by Drupal's security advisory policy"
  2897. }
  2898. }
  2899. },
  2900. "notification-url": "https://packages.drupal.org/8/downloads",
  2901. "license": [
  2902. "GPL-2.0-or-later"
  2903. ],
  2904. "authors": [
  2905. {
  2906. "name": "Tommy Lynge Jørgensen",
  2907. "homepage": "https://www.drupal.org/u/tlyngej",
  2908. "email": "tlyngej@gmail.com",
  2909. "role": "Maintainer"
  2910. },
  2911. {
  2912. "name": "Fabian Bircher",
  2913. "homepage": "https://www.drupal.org/u/bircher",
  2914. "role": "Maintainer"
  2915. },
  2916. {
  2917. "name": "tlyngej",
  2918. "homepage": "https://www.drupal.org/user/413139"
  2919. }
  2920. ],
  2921. "description": "Ignore certain configuration during import and export.",
  2922. "homepage": "http://drupal.org/project/config_ignore",
  2923. "support": {
  2924. "source": "https://git.drupalcode.org/project/config_ignore",
  2925. "issues": "http://drupal.org/project/config_ignore"
  2926. }
  2927. },
  2928. {
  2929. "name": "drupal/config_pages",
  2930. "version": "2.17.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://git.drupalcode.org/project/config_pages.git",
  2934. "reference": "8.x-2.17"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  2939. "reference": "8.x-2.17",
  2940. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  2941. },
  2942. "require": {
  2943. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  2944. },
  2945. "type": "drupal-module",
  2946. "extra": {
  2947. "drupal": {
  2948. "version": "8.x-2.17",
  2949. "datestamp": "1736029180",
  2950. "security-coverage": {
  2951. "status": "covered",
  2952. "message": "Covered by Drupal's security advisory policy"
  2953. }
  2954. },
  2955. "drush": {
  2956. "services": {
  2957. "drush.services.yml": "^9"
  2958. }
  2959. }
  2960. },
  2961. "notification-url": "https://packages.drupal.org/8/downloads",
  2962. "license": [
  2963. "GPL-2.0-or-later"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "m.krestnicov",
  2968. "homepage": "https://www.drupal.org/user/3193903"
  2969. },
  2970. {
  2971. "name": "qwaygon",
  2972. "homepage": "https://www.drupal.org/user/636624"
  2973. },
  2974. {
  2975. "name": "shumer",
  2976. "homepage": "https://www.drupal.org/user/2297432"
  2977. }
  2978. ],
  2979. "description": "ConfigPages module",
  2980. "homepage": "http://drupal.org/project/config_pages",
  2981. "keywords": [
  2982. "Drupal"
  2983. ],
  2984. "support": {
  2985. "source": "http://cgit.drupalcode.org/config_pages",
  2986. "issues": "http://drupal.org/project/issues/config_pages"
  2987. }
  2988. },
  2989. {
  2990. "name": "drupal/config_update",
  2991. "version": "2.0.0-alpha4",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://git.drupalcode.org/project/config_update.git",
  2995. "reference": "2.0.0-alpha4"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3000. "reference": "2.0.0-alpha4",
  3001. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3002. },
  3003. "require": {
  3004. "drupal/core": "^9.4 || ^10 || ^11"
  3005. },
  3006. "type": "drupal-module",
  3007. "extra": {
  3008. "drupal": {
  3009. "version": "2.0.0-alpha4",
  3010. "datestamp": "1724596931",
  3011. "security-coverage": {
  3012. "status": "not-covered",
  3013. "message": "Alpha releases are not covered by Drupal security advisories."
  3014. }
  3015. }
  3016. },
  3017. "notification-url": "https://packages.drupal.org/8/downloads",
  3018. "license": [
  3019. "GPL-2.0-or-later"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "codebymikey",
  3024. "homepage": "https://www.drupal.org/user/3573206"
  3025. },
  3026. {
  3027. "name": "pasqualle",
  3028. "homepage": "https://www.drupal.org/user/80733"
  3029. },
  3030. {
  3031. "name": "vishalkhode",
  3032. "homepage": "https://www.drupal.org/user/2439156"
  3033. }
  3034. ],
  3035. "description": "Provides basic revert and update functionality for other modules.",
  3036. "homepage": "https://www.drupal.org/project/config_update",
  3037. "support": {
  3038. "source": "https://git.drupalcode.org/project/config_update"
  3039. }
  3040. },
  3041. {
  3042. "name": "drupal/content_lock",
  3043. "version": "2.4.0",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://git.drupalcode.org/project/content_lock.git",
  3047. "reference": "8.x-2.4"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3052. "reference": "8.x-2.4",
  3053. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3054. },
  3055. "require": {
  3056. "drupal/core": "^9.0 || ^10.0"
  3057. },
  3058. "type": "drupal-module",
  3059. "extra": {
  3060. "drupal": {
  3061. "version": "8.x-2.4",
  3062. "datestamp": "1715783058",
  3063. "security-coverage": {
  3064. "status": "covered",
  3065. "message": "Covered by Drupal's security advisory policy"
  3066. }
  3067. }
  3068. },
  3069. "notification-url": "https://packages.drupal.org/8/downloads",
  3070. "license": [
  3071. "GPL-2.0-or-later"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "alexpott",
  3076. "homepage": "https://www.drupal.org/user/157725"
  3077. },
  3078. {
  3079. "name": "astonvictor",
  3080. "homepage": "https://www.drupal.org/user/3466615"
  3081. },
  3082. {
  3083. "name": "chr.fritsch",
  3084. "homepage": "https://www.drupal.org/user/2103716"
  3085. },
  3086. {
  3087. "name": "daniel.bosen",
  3088. "homepage": "https://www.drupal.org/user/404865"
  3089. },
  3090. {
  3091. "name": "ergonlogic",
  3092. "homepage": "https://www.drupal.org/user/368613"
  3093. },
  3094. {
  3095. "name": "mfb",
  3096. "homepage": "https://www.drupal.org/user/12302"
  3097. },
  3098. {
  3099. "name": "volkerk",
  3100. "homepage": "https://www.drupal.org/user/57527"
  3101. }
  3102. ],
  3103. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3104. "homepage": "https://www.drupal.org/project/content_lock",
  3105. "support": {
  3106. "source": "https://git.drupalcode.org/project/content_lock"
  3107. }
  3108. },
  3109. {
  3110. "name": "drupal/context",
  3111. "version": "5.0.0-rc2",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://git.drupalcode.org/project/context.git",
  3115. "reference": "5.0.0-rc2"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3120. "reference": "5.0.0-rc2",
  3121. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3122. },
  3123. "require": {
  3124. "drupal/core": "^9.3 || ^10 || ^11"
  3125. },
  3126. "type": "drupal-module",
  3127. "extra": {
  3128. "drupal": {
  3129. "version": "5.0.0-rc2",
  3130. "datestamp": "1741253306",
  3131. "security-coverage": {
  3132. "status": "not-covered",
  3133. "message": "RC releases are not covered by Drupal security advisories."
  3134. }
  3135. }
  3136. },
  3137. "notification-url": "https://packages.drupal.org/8/downloads",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Christoffer Palm",
  3144. "homepage": "http://www.oddhill.se/",
  3145. "email": "christoffer.palm@oddhill.se",
  3146. "role": "Developer"
  3147. },
  3148. {
  3149. "name": "boshtian",
  3150. "homepage": "https://www.drupal.org/user/1773456"
  3151. },
  3152. {
  3153. "name": "colan",
  3154. "homepage": "https://www.drupal.org/user/58704"
  3155. },
  3156. {
  3157. "name": "emanaton",
  3158. "homepage": "https://www.drupal.org/user/120853"
  3159. },
  3160. {
  3161. "name": "febbraro",
  3162. "homepage": "https://www.drupal.org/user/43670"
  3163. },
  3164. {
  3165. "name": "fizk",
  3166. "homepage": "https://www.drupal.org/user/473174"
  3167. },
  3168. {
  3169. "name": "hass",
  3170. "homepage": "https://www.drupal.org/user/85918"
  3171. },
  3172. {
  3173. "name": "hefox",
  3174. "homepage": "https://www.drupal.org/user/426416"
  3175. },
  3176. {
  3177. "name": "jmiccolis",
  3178. "homepage": "https://www.drupal.org/user/31731"
  3179. },
  3180. {
  3181. "name": "kristen pol",
  3182. "homepage": "https://www.drupal.org/user/8389"
  3183. },
  3184. {
  3185. "name": "mandclu",
  3186. "homepage": "https://www.drupal.org/user/52136"
  3187. },
  3188. {
  3189. "name": "nedjo",
  3190. "homepage": "https://www.drupal.org/user/4481"
  3191. },
  3192. {
  3193. "name": "NormySan",
  3194. "homepage": "https://www.drupal.org/user/112352"
  3195. },
  3196. {
  3197. "name": "patricksettle",
  3198. "homepage": "https://www.drupal.org/user/26618"
  3199. },
  3200. {
  3201. "name": "paulocs",
  3202. "homepage": "https://www.drupal.org/user/3640109"
  3203. },
  3204. {
  3205. "name": "steven jones",
  3206. "homepage": "https://www.drupal.org/user/99644"
  3207. },
  3208. {
  3209. "name": "tekante",
  3210. "homepage": "https://www.drupal.org/user/640024"
  3211. },
  3212. {
  3213. "name": "yhahn",
  3214. "homepage": "https://www.drupal.org/user/264833"
  3215. }
  3216. ],
  3217. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3218. "homepage": "https://github.com/oddhill/context",
  3219. "keywords": [
  3220. "Drupal",
  3221. "block",
  3222. "conditions",
  3223. "context",
  3224. "visibility"
  3225. ],
  3226. "support": {
  3227. "source": "https://github.com/oddhill/context",
  3228. "issues": "https://github.com/oddhill/context/issues",
  3229. "docs": "https://github.com/oddhill/context"
  3230. }
  3231. },
  3232. {
  3233. "name": "drupal/core",
  3234. "version": "10.6.5",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/drupal/core.git",
  3238. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  3243. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "asm89/stack-cors": "^2.3",
  3248. "composer-runtime-api": "^2.1",
  3249. "composer/semver": "^3.3",
  3250. "doctrine/lexer": "^2",
  3251. "egulias/email-validator": "^3.2.1|^4.0",
  3252. "ext-date": "*",
  3253. "ext-dom": "*",
  3254. "ext-filter": "*",
  3255. "ext-gd": "*",
  3256. "ext-hash": "*",
  3257. "ext-json": "*",
  3258. "ext-pcre": "*",
  3259. "ext-pdo": "*",
  3260. "ext-session": "*",
  3261. "ext-simplexml": "*",
  3262. "ext-spl": "*",
  3263. "ext-tokenizer": "*",
  3264. "ext-xml": "*",
  3265. "guzzlehttp/guzzle": "^7.5",
  3266. "guzzlehttp/psr7": "^2.4.5",
  3267. "masterminds/html5": "^2.7",
  3268. "mck89/peast": "^1.14",
  3269. "pear/archive_tar": "^1.4.14",
  3270. "php": ">=8.1.0",
  3271. "psr/log": "^3.0",
  3272. "sebastian/diff": "^4",
  3273. "symfony/console": "^6.4",
  3274. "symfony/dependency-injection": "^6.4",
  3275. "symfony/event-dispatcher": "^6.4",
  3276. "symfony/filesystem": "^6.4",
  3277. "symfony/finder": "^6.4",
  3278. "symfony/http-foundation": "^6.4",
  3279. "symfony/http-kernel": "^6.4",
  3280. "symfony/mailer": "^6.4",
  3281. "symfony/mime": "^6.4",
  3282. "symfony/polyfill-iconv": "^1.26",
  3283. "symfony/process": "^6.4.33",
  3284. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3285. "symfony/routing": "^6.4",
  3286. "symfony/serializer": "^6.4",
  3287. "symfony/validator": "^6.4",
  3288. "symfony/yaml": "^6.4",
  3289. "twig/twig": "^3.22.0"
  3290. },
  3291. "conflict": {
  3292. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  3293. "drush/drush": "<12.4.3"
  3294. },
  3295. "replace": {
  3296. "drupal/core-annotation": "self.version",
  3297. "drupal/core-assertion": "self.version",
  3298. "drupal/core-class-finder": "self.version",
  3299. "drupal/core-datetime": "self.version",
  3300. "drupal/core-dependency-injection": "self.version",
  3301. "drupal/core-diff": "self.version",
  3302. "drupal/core-discovery": "self.version",
  3303. "drupal/core-event-dispatcher": "self.version",
  3304. "drupal/core-file-cache": "self.version",
  3305. "drupal/core-file-security": "self.version",
  3306. "drupal/core-filesystem": "self.version",
  3307. "drupal/core-front-matter": "self.version",
  3308. "drupal/core-gettext": "self.version",
  3309. "drupal/core-graph": "self.version",
  3310. "drupal/core-http-foundation": "self.version",
  3311. "drupal/core-php-storage": "self.version",
  3312. "drupal/core-plugin": "self.version",
  3313. "drupal/core-proxy-builder": "self.version",
  3314. "drupal/core-render": "self.version",
  3315. "drupal/core-serialization": "self.version",
  3316. "drupal/core-transliteration": "self.version",
  3317. "drupal/core-utility": "self.version",
  3318. "drupal/core-uuid": "self.version",
  3319. "drupal/core-version": "self.version"
  3320. },
  3321. "suggest": {
  3322. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3323. },
  3324. "type": "drupal-core",
  3325. "extra": {
  3326. "drupal-scaffold": {
  3327. "file-mapping": {
  3328. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3329. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3330. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3331. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3332. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3333. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3334. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3335. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3336. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3337. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3338. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3339. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3340. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3341. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3342. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3343. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3344. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3345. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3346. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3347. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3348. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3349. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3350. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3351. }
  3352. }
  3353. },
  3354. "autoload": {
  3355. "files": [
  3356. "includes/bootstrap.inc"
  3357. ],
  3358. "psr-4": {
  3359. "Drupal\\Core\\": "lib/Drupal/Core",
  3360. "Drupal\\Component\\": "lib/Drupal/Component"
  3361. },
  3362. "classmap": [
  3363. "lib/Drupal.php",
  3364. "lib/Drupal/Component/DependencyInjection/Container.php",
  3365. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3366. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3367. "lib/Drupal/Component/Utility/Timer.php",
  3368. "lib/Drupal/Component/Utility/Unicode.php",
  3369. "lib/Drupal/Core/Cache/Cache.php",
  3370. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3371. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3372. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3373. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3374. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3375. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3376. "lib/Drupal/Core/Database/Connection.php",
  3377. "lib/Drupal/Core/Database/Database.php",
  3378. "lib/Drupal/Core/Database/StatementInterface.php",
  3379. "lib/Drupal/Core/DependencyInjection/Container.php",
  3380. "lib/Drupal/Core/DrupalKernel.php",
  3381. "lib/Drupal/Core/DrupalKernelInterface.php",
  3382. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3383. "lib/Drupal/Core/Site/Settings.php",
  3384. "lib/Drupal/Component/Datetime/Time.php"
  3385. ]
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "GPL-2.0-or-later"
  3390. ],
  3391. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3392. "support": {
  3393. "source": "https://github.com/drupal/core/tree/10.6.5"
  3394. },
  3395. "time": "2026-03-06T09:55:31+00:00"
  3396. },
  3397. {
  3398. "name": "drupal/core-composer-scaffold",
  3399. "version": "10.6.5",
  3400. "source": {
  3401. "type": "git",
  3402. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3403. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3404. },
  3405. "dist": {
  3406. "type": "zip",
  3407. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3408. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3409. "shasum": ""
  3410. },
  3411. "require": {
  3412. "composer-plugin-api": "^2",
  3413. "php": ">=7.3.0"
  3414. },
  3415. "conflict": {
  3416. "drupal-composer/drupal-scaffold": "*"
  3417. },
  3418. "require-dev": {
  3419. "composer/composer": "^1.8@stable"
  3420. },
  3421. "type": "composer-plugin",
  3422. "extra": {
  3423. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3424. "branch-alias": {
  3425. "dev-master": "1.0.x-dev"
  3426. }
  3427. },
  3428. "autoload": {
  3429. "psr-4": {
  3430. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3431. }
  3432. },
  3433. "notification-url": "https://packagist.org/downloads/",
  3434. "license": [
  3435. "GPL-2.0-or-later"
  3436. ],
  3437. "description": "A flexible Composer project scaffold builder.",
  3438. "homepage": "https://www.drupal.org/project/drupal",
  3439. "keywords": [
  3440. "drupal"
  3441. ],
  3442. "support": {
  3443. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  3444. },
  3445. "time": "2024-08-22T14:31:30+00:00"
  3446. },
  3447. {
  3448. "name": "drupal/core-project-message",
  3449. "version": "10.6.5",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/drupal/core-project-message.git",
  3453. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3458. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "composer-plugin-api": "^2",
  3463. "php": ">=7.3.0"
  3464. },
  3465. "type": "composer-plugin",
  3466. "extra": {
  3467. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3468. },
  3469. "autoload": {
  3470. "psr-4": {
  3471. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3472. }
  3473. },
  3474. "notification-url": "https://packagist.org/downloads/",
  3475. "license": [
  3476. "GPL-2.0-or-later"
  3477. ],
  3478. "description": "Adds a message after Composer installation.",
  3479. "homepage": "https://www.drupal.org/project/drupal",
  3480. "keywords": [
  3481. "drupal"
  3482. ],
  3483. "support": {
  3484. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  3485. },
  3486. "time": "2023-07-24T07:55:25+00:00"
  3487. },
  3488. {
  3489. "name": "drupal/core-recommended",
  3490. "version": "10.6.5",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/drupal/core-recommended.git",
  3494. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  3499. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "asm89/stack-cors": "~v2.3.0",
  3504. "composer/semver": "~3.4.4",
  3505. "doctrine/deprecations": "~1.1.5",
  3506. "doctrine/lexer": "~2.1.1",
  3507. "drupal/core": "10.6.5",
  3508. "egulias/email-validator": "~4.0.4",
  3509. "guzzlehttp/guzzle": "~7.10.0",
  3510. "guzzlehttp/promises": "~2.3.0",
  3511. "guzzlehttp/psr7": "~2.8.0",
  3512. "masterminds/html5": "~2.10.0",
  3513. "mck89/peast": "~v1.17.4",
  3514. "pear/archive_tar": "~1.6.0",
  3515. "pear/console_getopt": "~v1.4.3",
  3516. "pear/pear-core-minimal": "~v1.10.16",
  3517. "pear/pear_exception": "~v1.0.2",
  3518. "psr/container": "~2.0.2",
  3519. "psr/event-dispatcher": "~1.0.0",
  3520. "psr/http-client": "~1.0.3",
  3521. "psr/http-factory": "~1.1.0",
  3522. "psr/log": "~3.0.2",
  3523. "ralouphie/getallheaders": "~3.0.3",
  3524. "sebastian/diff": "~4.0.6",
  3525. "symfony/console": "~v6.4.27",
  3526. "symfony/dependency-injection": "~v6.4.26",
  3527. "symfony/deprecation-contracts": "~v3.6.0",
  3528. "symfony/error-handler": "~v6.4.26",
  3529. "symfony/event-dispatcher": "~v6.4.25",
  3530. "symfony/event-dispatcher-contracts": "~v3.6.0",
  3531. "symfony/filesystem": "~v6.4.24",
  3532. "symfony/finder": "~v6.4.27",
  3533. "symfony/http-foundation": "~v6.4.29",
  3534. "symfony/http-kernel": "~v6.4.29",
  3535. "symfony/mailer": "~v6.4.27",
  3536. "symfony/mime": "~v6.4.26",
  3537. "symfony/polyfill-ctype": "~v1.33.0",
  3538. "symfony/polyfill-iconv": "~v1.33.0",
  3539. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  3540. "symfony/polyfill-intl-idn": "~v1.33.0",
  3541. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  3542. "symfony/polyfill-mbstring": "~v1.33.0",
  3543. "symfony/polyfill-php83": "~v1.33.0",
  3544. "symfony/process": "~v6.4.33",
  3545. "symfony/psr-http-message-bridge": "~v6.4.24",
  3546. "symfony/routing": "~v6.4.28",
  3547. "symfony/serializer": "~v6.4.27",
  3548. "symfony/service-contracts": "~v3.6.1",
  3549. "symfony/string": "~v6.4.26",
  3550. "symfony/translation-contracts": "~v3.6.1",
  3551. "symfony/validator": "~v6.4.29",
  3552. "symfony/var-dumper": "~v6.4.26",
  3553. "symfony/var-exporter": "~v6.4.26",
  3554. "symfony/yaml": "~v6.4.26",
  3555. "twig/twig": "~v3.22.0"
  3556. },
  3557. "conflict": {
  3558. "webflo/drupal-core-strict": "*"
  3559. },
  3560. "type": "metapackage",
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "GPL-2.0-or-later"
  3564. ],
  3565. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3566. "support": {
  3567. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  3568. },
  3569. "time": "2026-03-06T09:55:31+00:00"
  3570. },
  3571. {
  3572. "name": "drupal/ctools",
  3573. "version": "4.1.0",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://git.drupalcode.org/project/ctools.git",
  3577. "reference": "4.1.0"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3582. "reference": "4.1.0",
  3583. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3584. },
  3585. "require": {
  3586. "drupal/core": "^9.5 || ^10 || ^11"
  3587. },
  3588. "type": "drupal-module",
  3589. "extra": {
  3590. "drupal": {
  3591. "version": "4.1.0",
  3592. "datestamp": "1718144949",
  3593. "security-coverage": {
  3594. "status": "covered",
  3595. "message": "Covered by Drupal's security advisory policy"
  3596. }
  3597. },
  3598. "branch-alias": {
  3599. "dev-8.x-3.x": "3.x-dev"
  3600. }
  3601. },
  3602. "notification-url": "https://packages.drupal.org/8/downloads",
  3603. "license": [
  3604. "GPL-2.0-or-later"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Kris Vanderwater (EclipseGc)",
  3609. "homepage": "https://www.drupal.org/u/eclipsegc",
  3610. "role": "Maintainer"
  3611. },
  3612. {
  3613. "name": "Jakob Perry (japerry)",
  3614. "homepage": "https://www.drupal.org/u/japerry",
  3615. "role": "Maintainer"
  3616. },
  3617. {
  3618. "name": "Tim Plunkett (tim.plunkett)",
  3619. "homepage": "https://www.drupal.org/u/timplunkett",
  3620. "role": "Maintainer"
  3621. },
  3622. {
  3623. "name": "James Gilliland (neclimdul)",
  3624. "homepage": "https://www.drupal.org/u/neclimdul",
  3625. "role": "Maintainer"
  3626. },
  3627. {
  3628. "name": "Daniel Wehner (dawehner)",
  3629. "homepage": "https://www.drupal.org/u/dawehner",
  3630. "role": "Maintainer"
  3631. },
  3632. {
  3633. "name": "joelpittet",
  3634. "homepage": "https://www.drupal.org/user/160302"
  3635. },
  3636. {
  3637. "name": "merlinofchaos",
  3638. "homepage": "https://www.drupal.org/user/26979"
  3639. },
  3640. {
  3641. "name": "neclimdul",
  3642. "homepage": "https://www.drupal.org/user/48673"
  3643. },
  3644. {
  3645. "name": "sdboyer",
  3646. "homepage": "https://www.drupal.org/user/146719"
  3647. },
  3648. {
  3649. "name": "sun",
  3650. "homepage": "https://www.drupal.org/user/54136"
  3651. },
  3652. {
  3653. "name": "tim.plunkett",
  3654. "homepage": "https://www.drupal.org/user/241634"
  3655. }
  3656. ],
  3657. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3658. "homepage": "https://www.drupal.org/project/ctools",
  3659. "support": {
  3660. "source": "https://git.drupalcode.org/project/ctools",
  3661. "issues": "https://www.drupal.org/project/issues/ctools"
  3662. }
  3663. },
  3664. {
  3665. "name": "drupal/date_range_formatter",
  3666. "version": "dev-9.0.x",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3670. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3671. },
  3672. "require": {
  3673. "drupal/core": "^8 || ^9 || ^10"
  3674. },
  3675. "type": "drupal-module",
  3676. "extra": {
  3677. "branch-alias": {
  3678. "dev-9.0.x": "9.0.x-dev"
  3679. },
  3680. "drupal": {
  3681. "version": "9.0.x-dev",
  3682. "datestamp": "1718887202",
  3683. "security-coverage": {
  3684. "status": "not-covered",
  3685. "message": "Dev releases are not covered by Drupal security advisories."
  3686. }
  3687. }
  3688. },
  3689. "notification-url": "https://packages.drupal.org/8/downloads",
  3690. "license": [
  3691. "GPL-2.0-or-later"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "maximpodorov",
  3696. "homepage": "https://www.drupal.org/user/515310"
  3697. },
  3698. {
  3699. "name": "sudishth",
  3700. "homepage": "https://www.drupal.org/user/1440562"
  3701. }
  3702. ],
  3703. "description": "Formats date ranges.",
  3704. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3705. "support": {
  3706. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3707. }
  3708. },
  3709. {
  3710. "name": "drupal/devel",
  3711. "version": "5.4.0",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://git.drupalcode.org/project/devel.git",
  3715. "reference": "5.4.0"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://ftp.drupal.org/files/projects/devel-5.4.0.zip",
  3720. "reference": "5.4.0",
  3721. "shasum": "fc14fe1c396dbff661f9d13e6e3171d9ab781a46"
  3722. },
  3723. "require": {
  3724. "doctrine/common": "^2.7 || ^3.4",
  3725. "drupal/core": "^10.3 || ^11 || ^12",
  3726. "php": ">=8.1",
  3727. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3728. },
  3729. "conflict": {
  3730. "drupal/core": "<10.3",
  3731. "drush/drush": "<12.5.1"
  3732. },
  3733. "require-dev": {
  3734. "drupal/navigation_extra_tools": "1.0.x-dev",
  3735. "drush/drush": "^13",
  3736. "firephp/firephp-core": "^0.5.3"
  3737. },
  3738. "suggest": {
  3739. "drupal/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3740. },
  3741. "type": "drupal-module",
  3742. "extra": {
  3743. "drupal": {
  3744. "version": "5.4.0",
  3745. "datestamp": "1752755621",
  3746. "security-coverage": {
  3747. "status": "covered",
  3748. "message": "Covered by Drupal's security advisory policy"
  3749. }
  3750. }
  3751. },
  3752. "notification-url": "https://packages.drupal.org/8/downloads",
  3753. "license": [
  3754. "GPL-2.0-or-later"
  3755. ],
  3756. "authors": [
  3757. {
  3758. "name": "moshe weitzman",
  3759. "homepage": "https://www.drupal.org/user/23"
  3760. }
  3761. ],
  3762. "description": "Various blocks, pages, and functions for developers.",
  3763. "homepage": "https://www.drupal.org/project/devel",
  3764. "support": {
  3765. "source": "https://gitlab.com/drupalspoons/devel",
  3766. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3767. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3768. }
  3769. },
  3770. {
  3771. "name": "drupal/devel_kint_extras",
  3772. "version": "1.1.4",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3776. "reference": "1.1.4"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3781. "reference": "1.1.4",
  3782. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3783. },
  3784. "require": {
  3785. "drupal/core": "^9 || ^10 || ^11",
  3786. "drupal/devel": "^4.0 || ^5.0",
  3787. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3788. },
  3789. "type": "drupal-module",
  3790. "extra": {
  3791. "drupal": {
  3792. "version": "1.1.4",
  3793. "datestamp": "1740995042",
  3794. "security-coverage": {
  3795. "status": "covered",
  3796. "message": "Covered by Drupal's security advisory policy"
  3797. }
  3798. }
  3799. },
  3800. "notification-url": "https://packages.drupal.org/8/downloads",
  3801. "license": [
  3802. "GPL-2.0-or-later"
  3803. ],
  3804. "authors": [
  3805. {
  3806. "name": "Jan Chojnacki",
  3807. "homepage": "https://www.drupal.org/u/janchojnacki"
  3808. },
  3809. {
  3810. "name": "Other contributors",
  3811. "homepage": "https://www.drupal.org/node/3164492/committers"
  3812. }
  3813. ],
  3814. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3815. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3816. "support": {
  3817. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3818. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3819. "chat": "irc://irc.freenode.org/drupal-contribute"
  3820. }
  3821. },
  3822. {
  3823. "name": "drupal/email_registration",
  3824. "version": "1.4.0",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://git.drupalcode.org/project/email_registration.git",
  3828. "reference": "8.x-1.4"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3833. "reference": "8.x-1.4",
  3834. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3835. },
  3836. "require": {
  3837. "drupal/core": "^9.1 || ^10"
  3838. },
  3839. "conflict": {
  3840. "drupal/commerce": "<2.12"
  3841. },
  3842. "require-dev": {
  3843. "drupal/commerce": "^2.0",
  3844. "drupal/token": "*"
  3845. },
  3846. "type": "drupal-module",
  3847. "extra": {
  3848. "drupal": {
  3849. "version": "8.x-1.4",
  3850. "datestamp": "1700548925",
  3851. "security-coverage": {
  3852. "status": "covered",
  3853. "message": "Covered by Drupal's security advisory policy"
  3854. }
  3855. }
  3856. },
  3857. "notification-url": "https://packages.drupal.org/8/downloads",
  3858. "license": [
  3859. "GPL-2.0-or-later"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "Greg Knaddison (greggles)",
  3864. "homepage": "https://www.drupal.org/u/greggles",
  3865. "role": "Maintainer"
  3866. },
  3867. {
  3868. "name": "Andrey Postnikov (andypost)",
  3869. "homepage": "https://www.drupal.org/u/andypost",
  3870. "role": "Maintainer"
  3871. },
  3872. {
  3873. "name": "Chris Herberte",
  3874. "homepage": "https://www.drupal.org/u/chris-herberte",
  3875. "role": "Maintainer"
  3876. },
  3877. {
  3878. "name": "Moshe Weitzman (moshe weitzman)",
  3879. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3880. "role": "Maintainer"
  3881. },
  3882. {
  3883. "name": "grevil",
  3884. "homepage": "https://www.drupal.org/user/3668491"
  3885. },
  3886. {
  3887. "name": "moshe weitzman",
  3888. "homepage": "https://www.drupal.org/user/23"
  3889. }
  3890. ],
  3891. "description": "Allows users to register with an email address as their username.",
  3892. "homepage": "https://www.drupal.org/project/email_registration",
  3893. "support": {
  3894. "source": "https://git.drupalcode.org/project/email_registration",
  3895. "issues": "http://drupal.org/project/issues/email_registration"
  3896. }
  3897. },
  3898. {
  3899. "name": "drupal/embed",
  3900. "version": "1.10.0",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://git.drupalcode.org/project/embed.git",
  3904. "reference": "8.x-1.10"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  3909. "reference": "8.x-1.10",
  3910. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  3911. },
  3912. "require": {
  3913. "drupal/core": "^10.2 || ^11"
  3914. },
  3915. "require-dev": {
  3916. "drupal/ckeditor": "^1.0"
  3917. },
  3918. "type": "drupal-module",
  3919. "extra": {
  3920. "drupal": {
  3921. "version": "8.x-1.10",
  3922. "datestamp": "1737663032",
  3923. "security-coverage": {
  3924. "status": "covered",
  3925. "message": "Covered by Drupal's security advisory policy"
  3926. }
  3927. }
  3928. },
  3929. "notification-url": "https://packages.drupal.org/8/downloads",
  3930. "license": [
  3931. "GPL-2.0-or-later"
  3932. ],
  3933. "authors": [
  3934. {
  3935. "name": "cs_shadow",
  3936. "homepage": "https://www.drupal.org/user/2828287"
  3937. },
  3938. {
  3939. "name": "dave reid",
  3940. "homepage": "https://www.drupal.org/user/53892"
  3941. },
  3942. {
  3943. "name": "devin carlson",
  3944. "homepage": "https://www.drupal.org/user/290182"
  3945. },
  3946. {
  3947. "name": "Drupal Media Team",
  3948. "homepage": "https://www.drupal.org/user/3260690"
  3949. },
  3950. {
  3951. "name": "phenaproxima",
  3952. "homepage": "https://www.drupal.org/user/205645"
  3953. },
  3954. {
  3955. "name": "slashrsm",
  3956. "homepage": "https://www.drupal.org/user/744628"
  3957. }
  3958. ],
  3959. "description": "Provides a framework for different types of embeds in text editors.",
  3960. "homepage": "https://www.drupal.org/project/embed",
  3961. "support": {
  3962. "source": "https://git.drupalcode.org/project/embed"
  3963. }
  3964. },
  3965. {
  3966. "name": "drupal/entity_browser",
  3967. "version": "2.15.0",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3971. "reference": "8.x-2.15"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.15.zip",
  3976. "reference": "8.x-2.15",
  3977. "shasum": "86265fadf12f8c2eb4bc0dc813589efe8fa180a2"
  3978. },
  3979. "require": {
  3980. "drupal/core": "^10.2 || ^11"
  3981. },
  3982. "conflict": {
  3983. "drupal/media_entity": "1.*"
  3984. },
  3985. "require-dev": {
  3986. "drupal/embed": "^1.0",
  3987. "drupal/entity_embed": "^1.0",
  3988. "drupal/entity_reference_revisions": "^1.0",
  3989. "drupal/entityqueue": "^1.0",
  3990. "drupal/inline_entity_form": "^1 || ^3",
  3991. "drupal/paragraphs": "^1.0",
  3992. "drupal/search_api": "^1.0",
  3993. "drupal/token": "^1.0"
  3994. },
  3995. "type": "drupal-module",
  3996. "extra": {
  3997. "drupal": {
  3998. "version": "8.x-2.15",
  3999. "datestamp": "1756969160",
  4000. "security-coverage": {
  4001. "status": "covered",
  4002. "message": "Covered by Drupal's security advisory policy"
  4003. }
  4004. }
  4005. },
  4006. "notification-url": "https://packages.drupal.org/8/downloads",
  4007. "license": [
  4008. "GPL-2.0+"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Janez Urevc",
  4013. "homepage": "https://github.com/slashrsm",
  4014. "role": "Maintainer"
  4015. },
  4016. {
  4017. "name": "Primoz Hmeljak",
  4018. "homepage": "https://github.com/primsi",
  4019. "role": "Maintainer"
  4020. },
  4021. {
  4022. "name": "See other contributors",
  4023. "homepage": "https://www.drupal.org/node/1943336/committers",
  4024. "role": "contributor"
  4025. },
  4026. {
  4027. "name": "devin carlson",
  4028. "homepage": "https://www.drupal.org/user/290182"
  4029. },
  4030. {
  4031. "name": "Drupal Media Team",
  4032. "homepage": "https://www.drupal.org/user/3260690"
  4033. },
  4034. {
  4035. "name": "grevil",
  4036. "homepage": "https://www.drupal.org/user/3668491"
  4037. },
  4038. {
  4039. "name": "marcingy",
  4040. "homepage": "https://www.drupal.org/user/77320"
  4041. },
  4042. {
  4043. "name": "oknate",
  4044. "homepage": "https://www.drupal.org/user/471638"
  4045. },
  4046. {
  4047. "name": "primsi",
  4048. "homepage": "https://www.drupal.org/user/282629"
  4049. },
  4050. {
  4051. "name": "samuel.mortenson",
  4052. "homepage": "https://www.drupal.org/user/2582268"
  4053. },
  4054. {
  4055. "name": "slashrsm",
  4056. "homepage": "https://www.drupal.org/user/744628"
  4057. }
  4058. ],
  4059. "description": "Entity browsing and selecting component.",
  4060. "homepage": "https://drupal.org/project/entity_browser",
  4061. "support": {
  4062. "source": "https://git.drupalcode.org/project/entity_browser",
  4063. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4064. "irc": "irc://irc.freenode.org/drupal-contribute"
  4065. }
  4066. },
  4067. {
  4068. "name": "drupal/entity_browser_enhanced",
  4069. "version": "2.0.1",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4073. "reference": "2.0.1"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4078. "reference": "2.0.1",
  4079. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4080. },
  4081. "require": {
  4082. "drupal/core": "^10 || ^11",
  4083. "drupal/entity_browser": "~2.0"
  4084. },
  4085. "type": "drupal-module",
  4086. "extra": {
  4087. "drupal": {
  4088. "version": "2.0.1",
  4089. "datestamp": "1719827338",
  4090. "security-coverage": {
  4091. "status": "covered",
  4092. "message": "Covered by Drupal's security advisory policy"
  4093. }
  4094. }
  4095. },
  4096. "notification-url": "https://packages.drupal.org/8/downloads",
  4097. "license": [
  4098. "GPL-2.0-or-later"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Vardot",
  4103. "homepage": "https://www.drupal.org/vardot",
  4104. "role": "Maintainer"
  4105. },
  4106. {
  4107. "name": "rajab natshah",
  4108. "homepage": "https://www.drupal.org/user/1414312"
  4109. }
  4110. ],
  4111. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4112. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4113. "support": {
  4114. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4115. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4116. }
  4117. },
  4118. {
  4119. "name": "drupal/entity_clone",
  4120. "version": "dev-2.x",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4124. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4125. },
  4126. "require": {
  4127. "drupal/core": "^9 || ^10 || ^11"
  4128. },
  4129. "require-dev": {
  4130. "drupal/entity_browser": "2.x-dev",
  4131. "drupal/entity_usage": "2.x-dev",
  4132. "drupal/paragraphs": "^1.0",
  4133. "drupal/search_api": "^1.0"
  4134. },
  4135. "type": "drupal-module",
  4136. "extra": {
  4137. "branch-alias": {
  4138. "dev-2.x": "2.x-dev"
  4139. },
  4140. "drupal": {
  4141. "version": "2.1.0-beta1+3-dev",
  4142. "datestamp": "1748869926",
  4143. "security-coverage": {
  4144. "status": "not-covered",
  4145. "message": "Dev releases are not covered by Drupal security advisories."
  4146. }
  4147. }
  4148. },
  4149. "notification-url": "https://packages.drupal.org/8/downloads",
  4150. "license": [
  4151. "GPL-2.0-or-later"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "colan",
  4156. "homepage": "https://www.drupal.org/user/58704"
  4157. },
  4158. {
  4159. "name": "joevagyok",
  4160. "homepage": "https://www.drupal.org/user/2876343"
  4161. },
  4162. {
  4163. "name": "nickdickinsonwilde",
  4164. "homepage": "https://www.drupal.org/user/3094661"
  4165. },
  4166. {
  4167. "name": "rajeshreeputra",
  4168. "homepage": "https://www.drupal.org/user/3418561"
  4169. },
  4170. {
  4171. "name": "upchuk",
  4172. "homepage": "https://www.drupal.org/user/1885838"
  4173. },
  4174. {
  4175. "name": "vpeltot",
  4176. "homepage": "https://www.drupal.org/user/1361586"
  4177. }
  4178. ],
  4179. "description": "Add a clone action for all entities.",
  4180. "homepage": "https://drupal.org/project/entity_clone",
  4181. "support": {
  4182. "source": "https://git.drupalcode.org/project/entity_clone"
  4183. }
  4184. },
  4185. {
  4186. "name": "drupal/entity_reference_revisions",
  4187. "version": "1.14.0",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4191. "reference": "8.x-1.14"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.14.zip",
  4196. "reference": "8.x-1.14",
  4197. "shasum": "cb900e41124979a46da1912ff2b502270beda632"
  4198. },
  4199. "require": {
  4200. "drupal/core": "^10.2 || ^11"
  4201. },
  4202. "conflict": {
  4203. "drush/drush": "<12.5.1"
  4204. },
  4205. "require-dev": {
  4206. "drupal/diff": "^1 || ^2"
  4207. },
  4208. "type": "drupal-module",
  4209. "extra": {
  4210. "drupal": {
  4211. "version": "8.x-1.14",
  4212. "datestamp": "1767266825",
  4213. "security-coverage": {
  4214. "status": "covered",
  4215. "message": "Covered by Drupal's security advisory policy"
  4216. }
  4217. }
  4218. },
  4219. "notification-url": "https://packages.drupal.org/8/downloads",
  4220. "license": [
  4221. "GPL-2.0-or-later"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "berdir",
  4226. "homepage": "https://www.drupal.org/user/214652"
  4227. },
  4228. {
  4229. "name": "frans",
  4230. "homepage": "https://www.drupal.org/user/514222"
  4231. },
  4232. {
  4233. "name": "jeroen.b",
  4234. "homepage": "https://www.drupal.org/user/1853532"
  4235. },
  4236. {
  4237. "name": "miro_dietiker",
  4238. "homepage": "https://www.drupal.org/user/227761"
  4239. }
  4240. ],
  4241. "description": "Entity Reference Revisions",
  4242. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4243. "support": {
  4244. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4245. }
  4246. },
  4247. {
  4248. "name": "drupal/entity_type_clone",
  4249. "version": "4.0.6",
  4250. "source": {
  4251. "type": "git",
  4252. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4253. "reference": "4.0.6"
  4254. },
  4255. "dist": {
  4256. "type": "zip",
  4257. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.6.zip",
  4258. "reference": "4.0.6",
  4259. "shasum": "e87d8473151c9a28497d27148a38f44f073773da"
  4260. },
  4261. "require": {
  4262. "drupal/core": "^8 || ^9 || ^10 || ^11"
  4263. },
  4264. "type": "drupal-module",
  4265. "extra": {
  4266. "drupal": {
  4267. "version": "4.0.6",
  4268. "datestamp": "1758390322",
  4269. "security-coverage": {
  4270. "status": "covered",
  4271. "message": "Covered by Drupal's security advisory policy"
  4272. }
  4273. }
  4274. },
  4275. "notification-url": "https://packages.drupal.org/8/downloads",
  4276. "license": [
  4277. "GPL-2.0-or-later"
  4278. ],
  4279. "authors": [
  4280. {
  4281. "name": "ajay_reddy",
  4282. "homepage": "https://www.drupal.org/user/3261994"
  4283. },
  4284. {
  4285. "name": "vuil",
  4286. "homepage": "https://www.drupal.org/user/3568458"
  4287. }
  4288. ],
  4289. "description": "This module provide option to clone entity types and role.",
  4290. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4291. "support": {
  4292. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4293. }
  4294. },
  4295. {
  4296. "name": "drupal/extlink",
  4297. "version": "2.0.5",
  4298. "source": {
  4299. "type": "git",
  4300. "url": "https://git.drupalcode.org/project/extlink.git",
  4301. "reference": "2.0.5"
  4302. },
  4303. "dist": {
  4304. "type": "zip",
  4305. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.5.zip",
  4306. "reference": "2.0.5",
  4307. "shasum": "3b2f73f60483ebf6e7f374f7340b19f228386cca"
  4308. },
  4309. "require": {
  4310. "drupal/core": "^10 || ^11"
  4311. },
  4312. "type": "drupal-module",
  4313. "extra": {
  4314. "drupal": {
  4315. "version": "2.0.5",
  4316. "datestamp": "1757349140",
  4317. "security-coverage": {
  4318. "status": "covered",
  4319. "message": "Covered by Drupal's security advisory policy"
  4320. }
  4321. }
  4322. },
  4323. "notification-url": "https://packages.drupal.org/8/downloads",
  4324. "license": [
  4325. "GPL-2.0-or-later"
  4326. ],
  4327. "authors": [
  4328. {
  4329. "name": "Nate Lampton",
  4330. "homepage": "https://www.drupal.org/u/quicksketch",
  4331. "role": "Maintainer"
  4332. },
  4333. {
  4334. "name": "Lachlan Ennis",
  4335. "homepage": "https://www.drupal.org/u/elachlan",
  4336. "role": "Maintainer"
  4337. },
  4338. {
  4339. "name": "Neslee Canil Pinto",
  4340. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4341. "role": "Maintainer"
  4342. },
  4343. {
  4344. "name": "quicksketch",
  4345. "homepage": "https://www.drupal.org/user/35821"
  4346. },
  4347. {
  4348. "name": "smustgrave",
  4349. "homepage": "https://www.drupal.org/user/3252890"
  4350. }
  4351. ],
  4352. "description": "Modify behavior and appearance of external links.",
  4353. "homepage": "https://www.drupal.org/project/extlink",
  4354. "keywords": [
  4355. "Drupal",
  4356. "External Links"
  4357. ],
  4358. "support": {
  4359. "source": "https://git.drupalcode.org/project/extlink",
  4360. "issues": "https://www.drupal.org/project/issues/extlink"
  4361. }
  4362. },
  4363. {
  4364. "name": "drupal/field_group",
  4365. "version": "3.6.0",
  4366. "source": {
  4367. "type": "git",
  4368. "url": "https://git.drupalcode.org/project/field_group.git",
  4369. "reference": "8.x-3.6"
  4370. },
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4374. "reference": "8.x-3.6",
  4375. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4376. },
  4377. "require": {
  4378. "drupal/core": "^9.2 || ^10 || ^11"
  4379. },
  4380. "require-dev": {
  4381. "drupal/jquery_ui_accordion": "*"
  4382. },
  4383. "type": "drupal-module",
  4384. "extra": {
  4385. "drupal": {
  4386. "version": "8.x-3.6",
  4387. "datestamp": "1722672510",
  4388. "security-coverage": {
  4389. "status": "covered",
  4390. "message": "Covered by Drupal's security advisory policy"
  4391. }
  4392. }
  4393. },
  4394. "notification-url": "https://packages.drupal.org/8/downloads",
  4395. "license": [
  4396. "GPL-2.0-or-later"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "anybody",
  4401. "homepage": "https://www.drupal.org/user/291091"
  4402. },
  4403. {
  4404. "name": "grevil",
  4405. "homepage": "https://www.drupal.org/user/3668491"
  4406. },
  4407. {
  4408. "name": "hydra",
  4409. "homepage": "https://www.drupal.org/user/647364"
  4410. },
  4411. {
  4412. "name": "joevagyok",
  4413. "homepage": "https://www.drupal.org/user/2876343"
  4414. },
  4415. {
  4416. "name": "jyve",
  4417. "homepage": "https://www.drupal.org/user/591438"
  4418. },
  4419. {
  4420. "name": "nils.destoop",
  4421. "homepage": "https://www.drupal.org/user/361625"
  4422. },
  4423. {
  4424. "name": "Stalski",
  4425. "homepage": "https://www.drupal.org/user/322618"
  4426. },
  4427. {
  4428. "name": "swentel",
  4429. "homepage": "https://www.drupal.org/user/107403"
  4430. }
  4431. ],
  4432. "description": "Provides the field_group module.",
  4433. "homepage": "https://www.drupal.org/project/field_group",
  4434. "support": {
  4435. "source": "https://git.drupalcode.org/project/field_group",
  4436. "issues": "https://www.drupal.org/project/issues/field_group"
  4437. }
  4438. },
  4439. {
  4440. "name": "drupal/filter_perms",
  4441. "version": "2.0.2",
  4442. "source": {
  4443. "type": "git",
  4444. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4445. "reference": "2.0.2"
  4446. },
  4447. "dist": {
  4448. "type": "zip",
  4449. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4450. "reference": "2.0.2",
  4451. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4452. },
  4453. "require": {
  4454. "drupal/core": "^10.3 || ^11 || ^12"
  4455. },
  4456. "type": "drupal-module",
  4457. "extra": {
  4458. "drupal": {
  4459. "version": "2.0.2",
  4460. "datestamp": "1745993059",
  4461. "security-coverage": {
  4462. "status": "covered",
  4463. "message": "Covered by Drupal's security advisory policy"
  4464. }
  4465. }
  4466. },
  4467. "notification-url": "https://packages.drupal.org/8/downloads",
  4468. "license": [
  4469. "GPL-2.0+"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "cyu",
  4474. "homepage": "https://www.drupal.org/user/202205"
  4475. },
  4476. {
  4477. "name": "deekayen",
  4478. "homepage": "https://www.drupal.org/user/972"
  4479. },
  4480. {
  4481. "name": "ivavictoria",
  4482. "homepage": "https://www.drupal.org/user/3061533"
  4483. },
  4484. {
  4485. "name": "justcaldwell",
  4486. "homepage": "https://www.drupal.org/user/290069"
  4487. },
  4488. {
  4489. "name": "mgbellaire",
  4490. "homepage": "https://www.drupal.org/user/1831932"
  4491. },
  4492. {
  4493. "name": "scott_euser",
  4494. "homepage": "https://www.drupal.org/user/3267594"
  4495. },
  4496. {
  4497. "name": "willzyx",
  4498. "homepage": "https://www.drupal.org/user/1043862"
  4499. }
  4500. ],
  4501. "description": "Provides role and module filters to simplify the user permissions page.",
  4502. "homepage": "https://www.drupal.org/project/filter_perms",
  4503. "support": {
  4504. "source": "http://cgit.drupalcode.org/filter_perms",
  4505. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4506. }
  4507. },
  4508. {
  4509. "name": "drupal/formatter_suite",
  4510. "version": "2.2.0",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4514. "reference": "2.2.0"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.2.0.zip",
  4519. "reference": "2.2.0",
  4520. "shasum": "d87d11e61d6dbd76da3a5ed0aea8c25505b31c8b"
  4521. },
  4522. "require": {
  4523. "drupal/core": "^10.4 || ^11.1"
  4524. },
  4525. "type": "drupal-module",
  4526. "extra": {
  4527. "drupal": {
  4528. "version": "2.2.0",
  4529. "datestamp": "1768923220",
  4530. "security-coverage": {
  4531. "status": "covered",
  4532. "message": "Covered by Drupal's security advisory policy"
  4533. }
  4534. }
  4535. },
  4536. "notification-url": "https://packages.drupal.org/8/downloads",
  4537. "license": [
  4538. "GPL-2.0-or-later"
  4539. ],
  4540. "authors": [
  4541. {
  4542. "name": "cyoun",
  4543. "homepage": "https://www.drupal.org/user/3819850"
  4544. },
  4545. {
  4546. "name": "liam morland",
  4547. "homepage": "https://www.drupal.org/user/493050"
  4548. },
  4549. {
  4550. "name": "toamit",
  4551. "homepage": "https://www.drupal.org/user/2820523"
  4552. }
  4553. ],
  4554. "description": "Field formaters to present numbers, text, links, etc.",
  4555. "homepage": "https://www.drupal.org/project/formatter_suite",
  4556. "keywords": [
  4557. "Drupal",
  4558. "Format"
  4559. ],
  4560. "support": {
  4561. "source": "http://cgit.drupalcode.org/formatter_suite",
  4562. "issues": "http://drupal.org/project/issues/formatter_suite"
  4563. }
  4564. },
  4565. {
  4566. "name": "drupal/geocoder",
  4567. "version": "4.30.0",
  4568. "source": {
  4569. "type": "git",
  4570. "url": "https://git.drupalcode.org/project/geocoder.git",
  4571. "reference": "8.x-4.30"
  4572. },
  4573. "dist": {
  4574. "type": "zip",
  4575. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.30.zip",
  4576. "reference": "8.x-4.30",
  4577. "shasum": "701115afdf7435ab2ac8841e1d73ad531b465bc0"
  4578. },
  4579. "require": {
  4580. "davedevelopment/stiphle": "^0.9.2",
  4581. "drupal/core": "^9.5 || ^10 || ^11",
  4582. "php": ">=7.3.0",
  4583. "php-http/guzzle7-adapter": "^1.0",
  4584. "php-http/message": "^1.6",
  4585. "willdurand/geocoder": "^4.0|^5.0"
  4586. },
  4587. "require-dev": {
  4588. "drupal/address": "^1.11 || ^2.0",
  4589. "drupal/geocoder_field": "*",
  4590. "drupal/geofield": "^1.52",
  4591. "geo6/geocoder-php-addok-provider": "^1.0",
  4592. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4593. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4594. "geo6/geocoder-php-spw-provider": "^1.0",
  4595. "geocoder-php/arcgis-online-provider": "^4.0",
  4596. "geocoder-php/azure-maps-provider": "^1.2",
  4597. "geocoder-php/bing-maps-provider": "^4.0",
  4598. "geocoder-php/free-geoip-provider": "^4.1",
  4599. "geocoder-php/geo-plugin-provider": "^4.0",
  4600. "geocoder-php/geonames-provider": "^4.1",
  4601. "geocoder-php/google-maps-provider": "^4.2",
  4602. "geocoder-php/graphhopper-provider": "^0.5.0",
  4603. "geocoder-php/host-ip-provider": "^4.0",
  4604. "geocoder-php/ip-info-db-provider": "^4.0",
  4605. "geocoder-php/locationiq-provider": "^1.5",
  4606. "geocoder-php/mapbox-provider": "^1.0",
  4607. "geocoder-php/mapquest-provider": "^4.0",
  4608. "geocoder-php/maptiler-provider": "^1.0",
  4609. "geocoder-php/maxmind-provider": "^4.1",
  4610. "geocoder-php/nominatim-provider": "^5.0",
  4611. "geocoder-php/open-cage-provider": "^4.0",
  4612. "geocoder-php/openrouteservice-provider": "^1.0",
  4613. "geocoder-php/pelias-provider": "^1.1",
  4614. "geocoder-php/photon-provider": "^0.6",
  4615. "geocoder-php/tomtom-provider": "^4.0",
  4616. "geocoder-php/yandex-provider": "^4.0",
  4617. "systonic/ban-france-provider": "^1.0"
  4618. },
  4619. "type": "drupal-module",
  4620. "extra": {
  4621. "drupal": {
  4622. "version": "8.x-4.30",
  4623. "datestamp": "1753886741",
  4624. "security-coverage": {
  4625. "status": "covered",
  4626. "message": "Covered by Drupal's security advisory policy"
  4627. }
  4628. }
  4629. },
  4630. "notification-url": "https://packages.drupal.org/8/downloads",
  4631. "license": [
  4632. "GPL-2.0-or-later"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Pol Dellaiera (@drupol)",
  4637. "homepage": "https://www.drupal.org/u/pol",
  4638. "role": "Maintainer"
  4639. },
  4640. {
  4641. "name": "Italo Mairo (@itamair)",
  4642. "homepage": "https://www.drupal.org/u/itamair",
  4643. "role": "Co-maintainer"
  4644. },
  4645. {
  4646. "name": "michaelfavia",
  4647. "homepage": "https://www.drupal.org/user/49137"
  4648. },
  4649. {
  4650. "name": "poker10",
  4651. "homepage": "https://www.drupal.org/user/272316"
  4652. }
  4653. ],
  4654. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4655. "homepage": "https://drupal.org/project/geocoder",
  4656. "support": {
  4657. "source": "https://git.drupalcode.org/project/geocoder",
  4658. "issues": "https://drupal.org/project/issues/geocoder",
  4659. "irc": "irc://irc.freenode.org/drupal-geo"
  4660. }
  4661. },
  4662. {
  4663. "name": "drupal/geofield",
  4664. "version": "1.67.0",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://git.drupalcode.org/project/geofield.git",
  4668. "reference": "8.x-1.67"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.67.zip",
  4673. "reference": "8.x-1.67",
  4674. "shasum": "c73bf312f3244be23d05caa57086f44310b0b4df"
  4675. },
  4676. "require": {
  4677. "drupal/core": "^9 || ^10 || ^11",
  4678. "itamair/geophp": "^1.6"
  4679. },
  4680. "require-dev": {
  4681. "drupal/diff": "^1.3",
  4682. "drupal/feeds": "^3.0@beta"
  4683. },
  4684. "type": "drupal-module",
  4685. "extra": {
  4686. "drupal": {
  4687. "version": "8.x-1.67",
  4688. "datestamp": "1768051870",
  4689. "security-coverage": {
  4690. "status": "covered",
  4691. "message": "Covered by Drupal's security advisory policy"
  4692. }
  4693. }
  4694. },
  4695. "notification-url": "https://packages.drupal.org/8/downloads",
  4696. "license": [
  4697. "GPL-2.0+"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "Italo Mairo",
  4702. "homepage": "https://www.drupal.org/u/itamair",
  4703. "role": "Drupal 8+ Maintainer"
  4704. },
  4705. {
  4706. "name": "Brandon Morrison",
  4707. "homepage": "https://www.drupal.org/u/brandonian",
  4708. "role": "Drupal 7 Maintainer"
  4709. },
  4710. {
  4711. "name": "Pablo López",
  4712. "homepage": "https://www.drupal.org/u/plopesc",
  4713. "role": "Drupal 7 Maintainer"
  4714. }
  4715. ],
  4716. "description": "Stores geographic and location data (points, lines, and polygons).",
  4717. "homepage": "https://www.drupal.org/project/geofield",
  4718. "support": {
  4719. "source": "https://git.drupalcode.org/project/geofield",
  4720. "issues": "https://www.drupal.org/project/issues/geofield",
  4721. "irc": "irc://irc.freenode.org/drupal-contribute"
  4722. }
  4723. },
  4724. {
  4725. "name": "drupal/honeypot",
  4726. "version": "2.2.2",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://git.drupalcode.org/project/honeypot.git",
  4730. "reference": "2.2.2"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4735. "reference": "2.2.2",
  4736. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4737. },
  4738. "require": {
  4739. "drupal/core": "^10.3 || ^11"
  4740. },
  4741. "require-dev": {
  4742. "drupal/rules": "^4.0",
  4743. "drupal/webform": "^6.2"
  4744. },
  4745. "type": "drupal-module",
  4746. "extra": {
  4747. "drupal": {
  4748. "version": "2.2.2",
  4749. "datestamp": "1739854442",
  4750. "security-coverage": {
  4751. "status": "covered",
  4752. "message": "Covered by Drupal's security advisory policy"
  4753. }
  4754. }
  4755. },
  4756. "notification-url": "https://packages.drupal.org/8/downloads",
  4757. "license": [
  4758. "GPL-2.0-or-later"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Jeff Geerling",
  4763. "homepage": "https://www.drupal.org/user/389011",
  4764. "email": "geerlingguy@mac.com"
  4765. },
  4766. {
  4767. "name": "manuel garcia",
  4768. "homepage": "https://www.drupal.org/user/213194"
  4769. },
  4770. {
  4771. "name": "tr",
  4772. "homepage": "https://www.drupal.org/user/202830"
  4773. },
  4774. {
  4775. "name": "vijaycs85",
  4776. "homepage": "https://www.drupal.org/user/93488"
  4777. }
  4778. ],
  4779. "description": "Mitigates spam form submissions using the honeypot method.",
  4780. "homepage": "https://www.drupal.org/project/honeypot",
  4781. "keywords": [
  4782. "deterrent",
  4783. "form",
  4784. "honeypot",
  4785. "honeytrap",
  4786. "php",
  4787. "spam"
  4788. ],
  4789. "support": {
  4790. "source": "https://git.drupalcode.org/project/honeypot",
  4791. "issues": "https://www.drupal.org/project/issues/honeypot"
  4792. }
  4793. },
  4794. {
  4795. "name": "drupal/image_delta_formatter",
  4796. "version": "1.3.0",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4800. "reference": "8.x-1.3"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4805. "reference": "8.x-1.3",
  4806. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4807. },
  4808. "require": {
  4809. "drupal/core": "^10 || ^11"
  4810. },
  4811. "type": "drupal-module",
  4812. "extra": {
  4813. "drupal": {
  4814. "version": "8.x-1.3",
  4815. "datestamp": "1738516937",
  4816. "security-coverage": {
  4817. "status": "covered",
  4818. "message": "Covered by Drupal's security advisory policy"
  4819. }
  4820. }
  4821. },
  4822. "notification-url": "https://packages.drupal.org/8/downloads",
  4823. "license": [
  4824. "GPL-2.0-or-later"
  4825. ],
  4826. "authors": [
  4827. {
  4828. "name": "bojanz",
  4829. "homepage": "https://www.drupal.org/user/86106"
  4830. },
  4831. {
  4832. "name": "fgm",
  4833. "homepage": "https://www.drupal.org/user/27985"
  4834. },
  4835. {
  4836. "name": "jsacksick",
  4837. "homepage": "https://www.drupal.org/user/972218"
  4838. }
  4839. ],
  4840. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4841. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4842. "support": {
  4843. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4844. }
  4845. },
  4846. {
  4847. "name": "drupal/image_field_caption",
  4848. "version": "3.0.1",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4852. "reference": "3.0.1"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://ftp.drupal.org/files/projects/image_field_caption-3.0.1.zip",
  4857. "reference": "3.0.1",
  4858. "shasum": "e84c3b9534d5824b6a67885187b1c24d4eccaf60"
  4859. },
  4860. "require": {
  4861. "drupal/core": "^10 || ^11"
  4862. },
  4863. "type": "drupal-module",
  4864. "extra": {
  4865. "drupal": {
  4866. "version": "3.0.1",
  4867. "datestamp": "1739400507",
  4868. "security-coverage": {
  4869. "status": "covered",
  4870. "message": "Covered by Drupal's security advisory policy"
  4871. }
  4872. }
  4873. },
  4874. "notification-url": "https://packages.drupal.org/8/downloads",
  4875. "license": [
  4876. "GPL-2.0+"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "awm",
  4881. "homepage": "https://www.drupal.org/user/1059398"
  4882. },
  4883. {
  4884. "name": "foxy-vikvik",
  4885. "homepage": "https://www.drupal.org/user/3706169"
  4886. },
  4887. {
  4888. "name": "hanoii",
  4889. "homepage": "https://www.drupal.org/user/23157"
  4890. },
  4891. {
  4892. "name": "ironsizide",
  4893. "homepage": "https://www.drupal.org/user/787980"
  4894. },
  4895. {
  4896. "name": "istryker",
  4897. "homepage": "https://www.drupal.org/user/303676"
  4898. },
  4899. {
  4900. "name": "robloach",
  4901. "homepage": "https://www.drupal.org/user/61114"
  4902. },
  4903. {
  4904. "name": "tyler.frankenstein",
  4905. "homepage": "https://www.drupal.org/user/150680"
  4906. }
  4907. ],
  4908. "description": "Add caption to image field.",
  4909. "homepage": "https://www.drupal.org/project/image_field_caption",
  4910. "support": {
  4911. "source": "https://git.drupalcode.org/project/image_field_caption",
  4912. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4913. }
  4914. },
  4915. {
  4916. "name": "drupal/inline_entity_form",
  4917. "version": "1.0.0-rc17",
  4918. "source": {
  4919. "type": "git",
  4920. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4921. "reference": "8.x-1.0-rc17"
  4922. },
  4923. "dist": {
  4924. "type": "zip",
  4925. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  4926. "reference": "8.x-1.0-rc17",
  4927. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  4928. },
  4929. "require": {
  4930. "drupal/core": "^8.8 || ^9 || ^10",
  4931. "php": ">=7.1"
  4932. },
  4933. "require-dev": {
  4934. "drupal/entity_reference_revisions": "^1.0"
  4935. },
  4936. "type": "drupal-module",
  4937. "extra": {
  4938. "drupal": {
  4939. "version": "8.x-1.0-rc17",
  4940. "datestamp": "1703020130",
  4941. "security-coverage": {
  4942. "status": "not-covered",
  4943. "message": "RC releases are not covered by Drupal security advisories."
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "bojanz",
  4954. "homepage": "https://www.drupal.org/user/86106"
  4955. },
  4956. {
  4957. "name": "centarro",
  4958. "homepage": "https://www.drupal.org/user/3661446"
  4959. },
  4960. {
  4961. "name": "dawehner",
  4962. "homepage": "https://www.drupal.org/user/99340"
  4963. },
  4964. {
  4965. "name": "dww",
  4966. "homepage": "https://www.drupal.org/user/46549"
  4967. },
  4968. {
  4969. "name": "geek-merlin",
  4970. "homepage": "https://www.drupal.org/user/229048"
  4971. },
  4972. {
  4973. "name": "joachim",
  4974. "homepage": "https://www.drupal.org/user/107701"
  4975. },
  4976. {
  4977. "name": "jsacksick",
  4978. "homepage": "https://www.drupal.org/user/972218"
  4979. },
  4980. {
  4981. "name": "oknate",
  4982. "homepage": "https://www.drupal.org/user/471638"
  4983. },
  4984. {
  4985. "name": "ram4nd",
  4986. "homepage": "https://www.drupal.org/user/601534"
  4987. },
  4988. {
  4989. "name": "rszrama",
  4990. "homepage": "https://www.drupal.org/user/49344"
  4991. },
  4992. {
  4993. "name": "slashrsm",
  4994. "homepage": "https://www.drupal.org/user/744628"
  4995. },
  4996. {
  4997. "name": "webflo",
  4998. "homepage": "https://www.drupal.org/user/254778"
  4999. }
  5000. ],
  5001. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5002. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5003. "support": {
  5004. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5005. }
  5006. },
  5007. {
  5008. "name": "drupal/jquery_ui",
  5009. "version": "1.8.0",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5013. "reference": "8.x-1.8"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.8.zip",
  5018. "reference": "8.x-1.8",
  5019. "shasum": "a53e99216a81d1e35fa357885656a2cf420f1a6a"
  5020. },
  5021. "require": {
  5022. "drupal/core": "^9.2 || ^10 || ^11"
  5023. },
  5024. "type": "drupal-module",
  5025. "extra": {
  5026. "drupal": {
  5027. "version": "8.x-1.8",
  5028. "datestamp": "1758954737",
  5029. "security-coverage": {
  5030. "status": "covered",
  5031. "message": "Covered by Drupal's security advisory policy"
  5032. }
  5033. }
  5034. },
  5035. "notification-url": "https://packages.drupal.org/8/downloads",
  5036. "license": [
  5037. "GPL-2.0-or-later"
  5038. ],
  5039. "authors": [
  5040. {
  5041. "name": "bnjmnm",
  5042. "homepage": "https://www.drupal.org/user/2369194"
  5043. },
  5044. {
  5045. "name": "jjeff",
  5046. "homepage": "https://www.drupal.org/user/17190"
  5047. },
  5048. {
  5049. "name": "lauriii",
  5050. "homepage": "https://www.drupal.org/user/1078742"
  5051. },
  5052. {
  5053. "name": "litwol",
  5054. "homepage": "https://www.drupal.org/user/78134"
  5055. },
  5056. {
  5057. "name": "mfb",
  5058. "homepage": "https://www.drupal.org/user/12302"
  5059. },
  5060. {
  5061. "name": "mfer",
  5062. "homepage": "https://www.drupal.org/user/25701"
  5063. },
  5064. {
  5065. "name": "mikelutz",
  5066. "homepage": "https://www.drupal.org/user/2972409"
  5067. },
  5068. {
  5069. "name": "nod_",
  5070. "homepage": "https://www.drupal.org/user/598310"
  5071. },
  5072. {
  5073. "name": "phenaproxima",
  5074. "homepage": "https://www.drupal.org/user/205645"
  5075. },
  5076. {
  5077. "name": "rajeshreeputra",
  5078. "homepage": "https://www.drupal.org/user/3418561"
  5079. },
  5080. {
  5081. "name": "robloach",
  5082. "homepage": "https://www.drupal.org/user/61114"
  5083. },
  5084. {
  5085. "name": "sun",
  5086. "homepage": "https://www.drupal.org/user/54136"
  5087. },
  5088. {
  5089. "name": "webchick",
  5090. "homepage": "https://www.drupal.org/user/24967"
  5091. },
  5092. {
  5093. "name": "wim leers",
  5094. "homepage": "https://www.drupal.org/user/99777"
  5095. },
  5096. {
  5097. "name": "zrpnr",
  5098. "homepage": "https://www.drupal.org/user/1448368"
  5099. }
  5100. ],
  5101. "description": "Provides jQuery UI library.",
  5102. "homepage": "https://www.drupal.org/project/jquery_ui",
  5103. "support": {
  5104. "source": "https://git.drupalcode.org/project/jquery_ui"
  5105. }
  5106. },
  5107. {
  5108. "name": "drupal/jquery_ui_datepicker",
  5109. "version": "2.1.1",
  5110. "source": {
  5111. "type": "git",
  5112. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5113. "reference": "2.1.1"
  5114. },
  5115. "dist": {
  5116. "type": "zip",
  5117. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5118. "reference": "2.1.1",
  5119. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5120. },
  5121. "require": {
  5122. "drupal/core": "^9.2 || ^10 || ^11",
  5123. "drupal/jquery_ui": "^1.7"
  5124. },
  5125. "type": "drupal-module",
  5126. "extra": {
  5127. "drupal": {
  5128. "version": "2.1.1",
  5129. "datestamp": "1730932612",
  5130. "security-coverage": {
  5131. "status": "covered",
  5132. "message": "Covered by Drupal's security advisory policy"
  5133. }
  5134. }
  5135. },
  5136. "notification-url": "https://packages.drupal.org/8/downloads",
  5137. "license": [
  5138. "GPL-2.0-or-later"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "bnjmnm",
  5143. "homepage": "https://www.drupal.org/user/2369194"
  5144. },
  5145. {
  5146. "name": "jrockowitz",
  5147. "homepage": "https://www.drupal.org/user/371407"
  5148. },
  5149. {
  5150. "name": "lauriii",
  5151. "homepage": "https://www.drupal.org/user/1078742"
  5152. },
  5153. {
  5154. "name": "nod_",
  5155. "homepage": "https://www.drupal.org/user/598310"
  5156. },
  5157. {
  5158. "name": "phenaproxima",
  5159. "homepage": "https://www.drupal.org/user/205645"
  5160. },
  5161. {
  5162. "name": "zrpnr",
  5163. "homepage": "https://www.drupal.org/user/1448368"
  5164. }
  5165. ],
  5166. "description": "Provides jQuery UI Datepicker library.",
  5167. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5168. "support": {
  5169. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5170. }
  5171. },
  5172. {
  5173. "name": "drupal/jquery_ui_draggable",
  5174. "version": "2.1.0",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5178. "reference": "2.1.0"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5183. "reference": "2.1.0",
  5184. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5185. },
  5186. "require": {
  5187. "drupal/core": "^9.2 || ^10 || ^11",
  5188. "drupal/jquery_ui": "^1.7"
  5189. },
  5190. "type": "drupal-module",
  5191. "extra": {
  5192. "drupal": {
  5193. "version": "2.1.0",
  5194. "datestamp": "1717015492",
  5195. "security-coverage": {
  5196. "status": "covered",
  5197. "message": "Covered by Drupal's security advisory policy"
  5198. }
  5199. }
  5200. },
  5201. "notification-url": "https://packages.drupal.org/8/downloads",
  5202. "license": [
  5203. "GPL-2.0-or-later"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "bnjmnm",
  5208. "homepage": "https://www.drupal.org/user/2369194"
  5209. },
  5210. {
  5211. "name": "lauriii",
  5212. "homepage": "https://www.drupal.org/user/1078742"
  5213. },
  5214. {
  5215. "name": "zrpnr",
  5216. "homepage": "https://www.drupal.org/user/1448368"
  5217. }
  5218. ],
  5219. "description": "Provides jQuery UI Draggable library.",
  5220. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5221. "support": {
  5222. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5223. }
  5224. },
  5225. {
  5226. "name": "drupal/jquery_ui_droppable",
  5227. "version": "2.1.0",
  5228. "source": {
  5229. "type": "git",
  5230. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5231. "reference": "2.1.0"
  5232. },
  5233. "dist": {
  5234. "type": "zip",
  5235. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5236. "reference": "2.1.0",
  5237. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5238. },
  5239. "require": {
  5240. "drupal/core": "^9.2 || ^10 || ^11",
  5241. "drupal/jquery_ui": "^1.7",
  5242. "drupal/jquery_ui_draggable": "^2.1"
  5243. },
  5244. "type": "drupal-module",
  5245. "extra": {
  5246. "drupal": {
  5247. "version": "2.1.0",
  5248. "datestamp": "1717031391",
  5249. "security-coverage": {
  5250. "status": "covered",
  5251. "message": "Covered by Drupal's security advisory policy"
  5252. }
  5253. }
  5254. },
  5255. "notification-url": "https://packages.drupal.org/8/downloads",
  5256. "license": [
  5257. "GPL-2.0-or-later"
  5258. ],
  5259. "authors": [
  5260. {
  5261. "name": "bnjmnm",
  5262. "homepage": "https://www.drupal.org/user/2369194"
  5263. },
  5264. {
  5265. "name": "lauriii",
  5266. "homepage": "https://www.drupal.org/user/1078742"
  5267. },
  5268. {
  5269. "name": "zrpnr",
  5270. "homepage": "https://www.drupal.org/user/1448368"
  5271. }
  5272. ],
  5273. "description": "Provides jQuery UI Droppable library.",
  5274. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5275. "support": {
  5276. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5277. }
  5278. },
  5279. {
  5280. "name": "drupal/jquery_ui_slider",
  5281. "version": "2.1.0",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5285. "reference": "2.1.0"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5290. "reference": "2.1.0",
  5291. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5292. },
  5293. "require": {
  5294. "drupal/core": "^9.2 || ^10 || ^11",
  5295. "drupal/jquery_ui": "^1.7"
  5296. },
  5297. "type": "drupal-module",
  5298. "extra": {
  5299. "drupal": {
  5300. "version": "2.1.0",
  5301. "datestamp": "1717031321",
  5302. "security-coverage": {
  5303. "status": "covered",
  5304. "message": "Covered by Drupal's security advisory policy"
  5305. }
  5306. }
  5307. },
  5308. "notification-url": "https://packages.drupal.org/8/downloads",
  5309. "license": [
  5310. "GPL-2.0-or-later"
  5311. ],
  5312. "authors": [
  5313. {
  5314. "name": "bnjmnm",
  5315. "homepage": "https://www.drupal.org/user/2369194"
  5316. },
  5317. {
  5318. "name": "lauriii",
  5319. "homepage": "https://www.drupal.org/user/1078742"
  5320. },
  5321. {
  5322. "name": "zrpnr",
  5323. "homepage": "https://www.drupal.org/user/1448368"
  5324. }
  5325. ],
  5326. "description": "Provides jQuery UI Slider library.",
  5327. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5328. "support": {
  5329. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5330. }
  5331. },
  5332. {
  5333. "name": "drupal/jquery_ui_touch_punch",
  5334. "version": "1.1.1",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5338. "reference": "1.1.1"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5343. "reference": "1.1.1",
  5344. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5345. },
  5346. "require": {
  5347. "drupal/core": "^9.2 || ^10 || ^11",
  5348. "drupal/jquery_ui": "^1.0",
  5349. "politsin/jquery-ui-touch-punch": "^1.0"
  5350. },
  5351. "type": "drupal-module",
  5352. "extra": {
  5353. "drupal": {
  5354. "version": "1.1.1",
  5355. "datestamp": "1717663479",
  5356. "security-coverage": {
  5357. "status": "covered",
  5358. "message": "Covered by Drupal's security advisory policy"
  5359. }
  5360. }
  5361. },
  5362. "notification-url": "https://packages.drupal.org/8/downloads",
  5363. "license": [
  5364. "GPL-2.0-or-later"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "Naveen Valecha",
  5369. "homepage": "https://drupal.org/u/naveenvalecha",
  5370. "role": "Maintainer"
  5371. },
  5372. {
  5373. "name": "naveenvalecha",
  5374. "homepage": "https://www.drupal.org/user/2665733"
  5375. }
  5376. ],
  5377. "description": "Provides jQuery UI Touch Punch library.",
  5378. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5379. "keywords": [
  5380. "Drupal",
  5381. "jquery_ui_touch_punch"
  5382. ],
  5383. "support": {
  5384. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5385. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5386. }
  5387. },
  5388. {
  5389. "name": "drupal/js_cookie",
  5390. "version": "1.0.1",
  5391. "source": {
  5392. "type": "git",
  5393. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5394. "reference": "1.0.1"
  5395. },
  5396. "dist": {
  5397. "type": "zip",
  5398. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5399. "reference": "1.0.1",
  5400. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5401. },
  5402. "require": {
  5403. "drupal/core": "^9 || ^10 || ^11"
  5404. },
  5405. "type": "drupal-module",
  5406. "extra": {
  5407. "drupal": {
  5408. "version": "1.0.1",
  5409. "datestamp": "1693951097",
  5410. "security-coverage": {
  5411. "status": "covered",
  5412. "message": "Covered by Drupal's security advisory policy"
  5413. }
  5414. }
  5415. },
  5416. "notification-url": "https://packages.drupal.org/8/downloads",
  5417. "license": [
  5418. "GPL-2.0-or-later"
  5419. ],
  5420. "authors": [
  5421. {
  5422. "name": "Dave Reid",
  5423. "homepage": "https://www.drupal.org/user/53892"
  5424. }
  5425. ],
  5426. "description": "Provides the js-cookie library as a dependency.",
  5427. "homepage": "https://www.drupal.org/project/js_cookie",
  5428. "support": {
  5429. "source": "https://git.drupalcode.org/project/js_cookie"
  5430. }
  5431. },
  5432. {
  5433. "name": "drupal/leaflet",
  5434. "version": "10.4.4",
  5435. "source": {
  5436. "type": "git",
  5437. "url": "https://git.drupalcode.org/project/leaflet.git",
  5438. "reference": "10.4.4"
  5439. },
  5440. "dist": {
  5441. "type": "zip",
  5442. "url": "https://ftp.drupal.org/files/projects/leaflet-10.4.4.zip",
  5443. "reference": "10.4.4",
  5444. "shasum": "67a10addddac7e2433e61fcd9b5b5e55191301a8"
  5445. },
  5446. "require": {
  5447. "drupal/core": "^10.3 || ^11",
  5448. "drupal/geofield": "^1.31 || ^10.3"
  5449. },
  5450. "type": "drupal-module",
  5451. "extra": {
  5452. "drupal": {
  5453. "version": "10.4.4",
  5454. "datestamp": "1771869182",
  5455. "security-coverage": {
  5456. "status": "covered",
  5457. "message": "Covered by Drupal's security advisory policy"
  5458. }
  5459. }
  5460. },
  5461. "notification-url": "https://packages.drupal.org/8/downloads",
  5462. "license": [
  5463. "GPL-2.0+"
  5464. ],
  5465. "authors": [
  5466. {
  5467. "name": "Italo Mairo",
  5468. "homepage": "https://www.drupal.org/u/itamair",
  5469. "role": "Maintainer"
  5470. },
  5471. {
  5472. "name": "Peter Vanhee (pvhee)",
  5473. "homepage": "https://www.drupal.org/u/pvhee",
  5474. "role": "Maintainer"
  5475. },
  5476. {
  5477. "name": "Rik de Boer (RdeBoer)",
  5478. "homepage": "https://www.drupal.org/u/rdeboer",
  5479. "role": "Maintainer"
  5480. },
  5481. {
  5482. "name": "Gabriel Carleton-Barnes (gcb)",
  5483. "homepage": "https://www.drupal.org/u/gcb",
  5484. "role": "Maintainer"
  5485. },
  5486. {
  5487. "name": "Lev Tsypin (levelos)",
  5488. "homepage": "https://www.drupal.org/u/levelos",
  5489. "role": "Maintainer"
  5490. },
  5491. {
  5492. "name": "Sean Larkin (seanberto)",
  5493. "homepage": "https://www.drupal.org/u/seanberto",
  5494. "role": "Maintainer"
  5495. }
  5496. ],
  5497. "description": "Integration with the Leaflet map scripting library.",
  5498. "homepage": "https://www.drupal.org/project/leaflet",
  5499. "support": {
  5500. "source": "https://git.drupalcode.org/project/leaflet",
  5501. "issues": "https://www.drupal.org/project/issues/leaflet"
  5502. }
  5503. },
  5504. {
  5505. "name": "drupal/leaflet_more_maps",
  5506. "version": "2.2.3",
  5507. "source": {
  5508. "type": "git",
  5509. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5510. "reference": "2.2.3"
  5511. },
  5512. "dist": {
  5513. "type": "zip",
  5514. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5515. "reference": "2.2.3",
  5516. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5517. },
  5518. "require": {
  5519. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5520. "drupal/leaflet": "^2.1.0 || ^10.0"
  5521. },
  5522. "require-dev": {
  5523. "drupal/leaflet": "*"
  5524. },
  5525. "type": "drupal-module",
  5526. "extra": {
  5527. "drupal": {
  5528. "version": "2.2.3",
  5529. "datestamp": "1737668201",
  5530. "security-coverage": {
  5531. "status": "covered",
  5532. "message": "Covered by Drupal's security advisory policy"
  5533. }
  5534. },
  5535. "branch-alias": {
  5536. "dev-8.x-1.x": "1.x-dev"
  5537. }
  5538. },
  5539. "notification-url": "https://packages.drupal.org/8/downloads",
  5540. "license": [
  5541. "GPL-2.0-or-later"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "berramou",
  5546. "homepage": "https://www.drupal.org/user/3535998"
  5547. },
  5548. {
  5549. "name": "itamair",
  5550. "homepage": "https://www.drupal.org/user/1179076"
  5551. },
  5552. {
  5553. "name": "japerry",
  5554. "homepage": "https://www.drupal.org/user/45640"
  5555. },
  5556. {
  5557. "name": "rachel_norfolk",
  5558. "homepage": "https://www.drupal.org/user/66273"
  5559. },
  5560. {
  5561. "name": "rdeboer",
  5562. "homepage": "https://www.drupal.org/user/404007"
  5563. }
  5564. ],
  5565. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5566. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5567. "support": {
  5568. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5569. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5570. }
  5571. },
  5572. {
  5573. "name": "drupal/leaflet_more_markers",
  5574. "version": "1.1.3",
  5575. "source": {
  5576. "type": "git",
  5577. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5578. "reference": "1.1.3"
  5579. },
  5580. "dist": {
  5581. "type": "zip",
  5582. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5583. "reference": "1.1.3",
  5584. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5585. },
  5586. "require": {
  5587. "drupal/core": "^9.3 || ^10 || ^11",
  5588. "drupal/leaflet": "*",
  5589. "drupal/token": "*"
  5590. },
  5591. "type": "drupal-module",
  5592. "extra": {
  5593. "drupal": {
  5594. "version": "1.1.3",
  5595. "datestamp": "1733213620",
  5596. "security-coverage": {
  5597. "status": "covered",
  5598. "message": "Covered by Drupal's security advisory policy"
  5599. }
  5600. }
  5601. },
  5602. "notification-url": "https://packages.drupal.org/8/downloads",
  5603. "license": [
  5604. "GPL-2.0-or-later"
  5605. ],
  5606. "authors": [
  5607. {
  5608. "name": "itamair",
  5609. "homepage": "https://www.drupal.org/user/1179076"
  5610. },
  5611. {
  5612. "name": "rdeboer",
  5613. "homepage": "https://www.drupal.org/user/404007"
  5614. }
  5615. ],
  5616. "description": "Allows every location to feature its own emoji marker or font icon.",
  5617. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5618. "support": {
  5619. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5620. }
  5621. },
  5622. {
  5623. "name": "drupal/link_attributes",
  5624. "version": "2.1.1",
  5625. "source": {
  5626. "type": "git",
  5627. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5628. "reference": "2.1.1"
  5629. },
  5630. "dist": {
  5631. "type": "zip",
  5632. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.1.zip",
  5633. "reference": "2.1.1",
  5634. "shasum": "fc71571fc41adeda6b39ccefd3c8e21955c0d96f"
  5635. },
  5636. "require": {
  5637. "drupal/core": "^9 || ^10 || ^11",
  5638. "php": ">=8.0"
  5639. },
  5640. "require-dev": {
  5641. "drupal/linkit": "~6 || ~7"
  5642. },
  5643. "type": "drupal-module",
  5644. "extra": {
  5645. "drupal": {
  5646. "version": "2.1.1",
  5647. "datestamp": "1721366572",
  5648. "security-coverage": {
  5649. "status": "covered",
  5650. "message": "Covered by Drupal's security advisory policy"
  5651. }
  5652. }
  5653. },
  5654. "notification-url": "https://packages.drupal.org/8/downloads",
  5655. "license": [
  5656. "GPL-2.0-or-later"
  5657. ],
  5658. "authors": [
  5659. {
  5660. "name": "larowlan",
  5661. "homepage": "https://www.drupal.org/user/395439"
  5662. }
  5663. ],
  5664. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5665. "homepage": "https://www.drupal.org/project/link_attributes",
  5666. "keywords": [
  5667. "Drupal"
  5668. ],
  5669. "support": {
  5670. "source": "https://git.drupalcode.org/project/link_attributes",
  5671. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5672. }
  5673. },
  5674. {
  5675. "name": "drupal/linked_field",
  5676. "version": "1.7.0",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://git.drupalcode.org/project/linked_field.git",
  5680. "reference": "8.x-1.7"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5685. "reference": "8.x-1.7",
  5686. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5687. },
  5688. "require": {
  5689. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5690. },
  5691. "type": "drupal-module",
  5692. "extra": {
  5693. "drupal": {
  5694. "version": "8.x-1.7",
  5695. "datestamp": "1748842765",
  5696. "security-coverage": {
  5697. "status": "covered",
  5698. "message": "Covered by Drupal's security advisory policy"
  5699. }
  5700. }
  5701. },
  5702. "notification-url": "https://packages.drupal.org/8/downloads",
  5703. "license": [
  5704. "GPL-2.0-or-later"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "jcnventura",
  5709. "homepage": "https://www.drupal.org/user/122464"
  5710. },
  5711. {
  5712. "name": "yannickoo",
  5713. "homepage": "https://www.drupal.org/user/531118"
  5714. }
  5715. ],
  5716. "description": "Adds the functionality to link fields to a specific destination.",
  5717. "homepage": "https://www.drupal.org/project/linked_field",
  5718. "support": {
  5719. "source": "https://git.drupalcode.org/project/linked_field"
  5720. }
  5721. },
  5722. {
  5723. "name": "drupal/linkit",
  5724. "version": "7.0.7",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://git.drupalcode.org/project/linkit.git",
  5728. "reference": "7.0.7"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip",
  5733. "reference": "7.0.7",
  5734. "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e"
  5735. },
  5736. "require": {
  5737. "drupal/core": "^10.1 || ^11"
  5738. },
  5739. "require-dev": {
  5740. "drupal/ckeditor": "*",
  5741. "drupal/imce": "*"
  5742. },
  5743. "type": "drupal-module",
  5744. "extra": {
  5745. "drupal": {
  5746. "version": "7.0.7",
  5747. "datestamp": "1753116879",
  5748. "security-coverage": {
  5749. "status": "covered",
  5750. "message": "Covered by Drupal's security advisory policy"
  5751. }
  5752. }
  5753. },
  5754. "notification-url": "https://packages.drupal.org/8/downloads",
  5755. "license": [
  5756. "GPL-2.0-or-later"
  5757. ],
  5758. "authors": [
  5759. {
  5760. "name": "Emil Stjerneman",
  5761. "homepage": "https://stjerneman.com",
  5762. "email": "emil@stjerneman.com",
  5763. "role": "Maintainer"
  5764. },
  5765. {
  5766. "name": "johnwebdev",
  5767. "homepage": "https://www.drupal.org/user/3331569"
  5768. },
  5769. {
  5770. "name": "mark_fullmer",
  5771. "homepage": "https://www.drupal.org/user/2612816"
  5772. }
  5773. ],
  5774. "description": "Linkit - Enriched linking experience",
  5775. "homepage": "http://drupal.org/project/linkit",
  5776. "support": {
  5777. "source": "http://cgit.drupalcode.org/linkit",
  5778. "issues": "http://drupal.org/project/linkit"
  5779. }
  5780. },
  5781. {
  5782. "name": "drupal/mailsystem",
  5783. "version": "4.5.0",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5787. "reference": "8.x-4.5"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5792. "reference": "8.x-4.5",
  5793. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5794. },
  5795. "require": {
  5796. "drupal/core": "^9 || ^10.1 || ^11"
  5797. },
  5798. "type": "drupal-module",
  5799. "extra": {
  5800. "drupal": {
  5801. "version": "8.x-4.5",
  5802. "datestamp": "1723379369",
  5803. "security-coverage": {
  5804. "status": "covered",
  5805. "message": "Covered by Drupal's security advisory policy"
  5806. }
  5807. }
  5808. },
  5809. "notification-url": "https://packages.drupal.org/8/downloads",
  5810. "license": [
  5811. "GPL-2.0-or-later"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "berdir",
  5816. "homepage": "https://www.drupal.org/user/214652"
  5817. },
  5818. {
  5819. "name": "emartoni",
  5820. "homepage": "https://www.drupal.org/user/3225331"
  5821. },
  5822. {
  5823. "name": "joseph.olstad",
  5824. "homepage": "https://www.drupal.org/user/1321830"
  5825. },
  5826. {
  5827. "name": "les lim",
  5828. "homepage": "https://www.drupal.org/user/84263"
  5829. },
  5830. {
  5831. "name": "manuel garcia",
  5832. "homepage": "https://www.drupal.org/user/213194"
  5833. },
  5834. {
  5835. "name": "miro_dietiker",
  5836. "homepage": "https://www.drupal.org/user/227761"
  5837. },
  5838. {
  5839. "name": "Nafes",
  5840. "homepage": "https://www.drupal.org/user/2489926"
  5841. },
  5842. {
  5843. "name": "pillarsdotnet",
  5844. "homepage": "https://www.drupal.org/user/36148"
  5845. },
  5846. {
  5847. "name": "renatog",
  5848. "homepage": "https://www.drupal.org/user/3326031"
  5849. },
  5850. {
  5851. "name": "tr",
  5852. "homepage": "https://www.drupal.org/user/202830"
  5853. }
  5854. ],
  5855. "description": "Mail System",
  5856. "homepage": "https://www.drupal.org/project/mailsystem",
  5857. "support": {
  5858. "source": "https://git.drupalcode.org/project/mailsystem"
  5859. }
  5860. },
  5861. {
  5862. "name": "drupal/manage_display",
  5863. "version": "3.0.1",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://git.drupalcode.org/project/manage_display.git",
  5867. "reference": "3.0.1"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5872. "reference": "3.0.1",
  5873. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5874. },
  5875. "require": {
  5876. "drupal/core": "^9.4 || ^10 || ^11"
  5877. },
  5878. "type": "drupal-module",
  5879. "extra": {
  5880. "drupal": {
  5881. "version": "3.0.1",
  5882. "datestamp": "1714834549",
  5883. "security-coverage": {
  5884. "status": "covered",
  5885. "message": "Covered by Drupal's security advisory policy"
  5886. }
  5887. }
  5888. },
  5889. "notification-url": "https://packages.drupal.org/8/downloads",
  5890. "license": [
  5891. "GPL-2.0-or-later"
  5892. ],
  5893. "authors": [
  5894. {
  5895. "name": "Adam Shepherd (AdamPS)",
  5896. "homepage": "https://www.drupal.org/u/adamps",
  5897. "role": "Maintainer"
  5898. },
  5899. {
  5900. "name": "Viktor Holovachek (AstonVictor)",
  5901. "homepage": "https://www.drupal.org/u/astonvictor",
  5902. "role": "Maintainer"
  5903. }
  5904. ],
  5905. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  5906. "homepage": "https://www.drupal.org/project/manage_display",
  5907. "keywords": [
  5908. "Drupal"
  5909. ],
  5910. "support": {
  5911. "source": "https://git.drupalcode.org/project/manage_display",
  5912. "issues": "https://www.drupal.org/project/issues/manage_display"
  5913. }
  5914. },
  5915. {
  5916. "name": "drupal/matomo",
  5917. "version": "1.25.0",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://git.drupalcode.org/project/matomo.git",
  5921. "reference": "8.x-1.25"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.25.zip",
  5926. "reference": "8.x-1.25",
  5927. "shasum": "5e65764f4499061fa33cb5c46afcc26a85b8725e"
  5928. },
  5929. "require": {
  5930. "drupal/core": "^9.0 || ^10"
  5931. },
  5932. "conflict": {
  5933. "drupal/csp": "<1.12"
  5934. },
  5935. "require-dev": {
  5936. "drupal/csp": "~1.12",
  5937. "drupal/php": "~1.1",
  5938. "drupal/token": "~1.9"
  5939. },
  5940. "type": "drupal-module",
  5941. "extra": {
  5942. "drupal": {
  5943. "version": "8.x-1.25",
  5944. "datestamp": "1738948462",
  5945. "security-coverage": {
  5946. "status": "covered",
  5947. "message": "Covered by Drupal's security advisory policy"
  5948. }
  5949. }
  5950. },
  5951. "notification-url": "https://packages.drupal.org/8/downloads",
  5952. "license": [
  5953. "GPL-2.0-or-later"
  5954. ],
  5955. "authors": [
  5956. {
  5957. "name": "c-logemann",
  5958. "homepage": "https://www.drupal.org/user/218368"
  5959. },
  5960. {
  5961. "name": "grimreaper",
  5962. "homepage": "https://www.drupal.org/user/2388214"
  5963. },
  5964. {
  5965. "name": "hass",
  5966. "homepage": "https://www.drupal.org/user/85918"
  5967. },
  5968. {
  5969. "name": "shelane",
  5970. "homepage": "https://www.drupal.org/user/2674989"
  5971. }
  5972. ],
  5973. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5974. "homepage": "https://www.drupal.org/project/matomo",
  5975. "support": {
  5976. "source": "https://git.drupalcode.org/project/matomo"
  5977. }
  5978. },
  5979. {
  5980. "name": "drupal/maxlength",
  5981. "version": "3.1.1",
  5982. "source": {
  5983. "type": "git",
  5984. "url": "https://git.drupalcode.org/project/maxlength.git",
  5985. "reference": "3.1.1"
  5986. },
  5987. "dist": {
  5988. "type": "zip",
  5989. "url": "https://ftp.drupal.org/files/projects/maxlength-3.1.1.zip",
  5990. "reference": "3.1.1",
  5991. "shasum": "85059a5d5107a13c780536aa05972e5e97c1308b"
  5992. },
  5993. "require": {
  5994. "drupal/core": "^10 || ^11"
  5995. },
  5996. "type": "drupal-module",
  5997. "extra": {
  5998. "drupal": {
  5999. "version": "3.1.1",
  6000. "datestamp": "1738341546",
  6001. "security-coverage": {
  6002. "status": "covered",
  6003. "message": "Covered by Drupal's security advisory policy"
  6004. }
  6005. }
  6006. },
  6007. "notification-url": "https://packages.drupal.org/8/downloads",
  6008. "license": [
  6009. "GPL-2.0-or-later"
  6010. ],
  6011. "authors": [
  6012. {
  6013. "name": "Marius Scurtescu (mariuss)",
  6014. "homepage": "https://www.drupal.org/u/mariuss",
  6015. "role": "Maintainer"
  6016. },
  6017. {
  6018. "name": "Clayton Dewey (cedewey)",
  6019. "homepage": "https://www.drupal.org/u/cedewey",
  6020. "role": "Maintainer"
  6021. },
  6022. {
  6023. "name": "Daniel Wehner (dawehner)",
  6024. "homepage": "https://www.drupal.org/u/dawehner",
  6025. "role": "Maintainer"
  6026. },
  6027. {
  6028. "name": "Paulino Michelazzo (pmichelazzo)",
  6029. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6030. "role": "Maintainer"
  6031. },
  6032. {
  6033. "name": "Jeff Hipp (hipp2bsquare)",
  6034. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6035. "role": "Maintainer"
  6036. },
  6037. {
  6038. "name": "Steven DuBois (srdtwc)",
  6039. "homepage": "https://www.drupal.org/u/srdtwc",
  6040. "role": "Maintainer"
  6041. },
  6042. {
  6043. "name": "Adam Nagy (joevagyok)",
  6044. "homepage": "https://www.drupal.org/u/joevagyok",
  6045. "role": "Maintainer"
  6046. }
  6047. ],
  6048. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6049. "homepage": "https://www.drupal.org/project/maxlength",
  6050. "support": {
  6051. "source": "https://git.drupalcode.org/project/maxlength",
  6052. "issues": "https://www.drupal.org/project/issues/maxlength"
  6053. }
  6054. },
  6055. {
  6056. "name": "drupal/menu_admin_per_menu",
  6057. "version": "1.7.0",
  6058. "source": {
  6059. "type": "git",
  6060. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6061. "reference": "8.x-1.7"
  6062. },
  6063. "dist": {
  6064. "type": "zip",
  6065. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6066. "reference": "8.x-1.7",
  6067. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6068. },
  6069. "require": {
  6070. "drupal/core": "^10.2 || ^11.0 || ^12"
  6071. },
  6072. "type": "drupal-module",
  6073. "extra": {
  6074. "drupal": {
  6075. "version": "8.x-1.7",
  6076. "datestamp": "1750246188",
  6077. "security-coverage": {
  6078. "status": "covered",
  6079. "message": "Covered by Drupal's security advisory policy"
  6080. }
  6081. }
  6082. },
  6083. "notification-url": "https://packages.drupal.org/8/downloads",
  6084. "license": [
  6085. "GPL-2.0-or-later"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "anrikun",
  6090. "homepage": "https://www.drupal.org/user/410199"
  6091. },
  6092. {
  6093. "name": "jeroent",
  6094. "homepage": "https://www.drupal.org/user/2228934"
  6095. },
  6096. {
  6097. "name": "jonas139",
  6098. "homepage": "https://www.drupal.org/user/2873401"
  6099. },
  6100. {
  6101. "name": "mkdok",
  6102. "homepage": "https://www.drupal.org/user/3308753"
  6103. }
  6104. ],
  6105. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6106. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6107. "keywords": [
  6108. "Drupal"
  6109. ],
  6110. "support": {
  6111. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6112. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6113. }
  6114. },
  6115. {
  6116. "name": "drupal/menu_block",
  6117. "version": "1.14.0",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://git.drupalcode.org/project/menu_block.git",
  6121. "reference": "8.x-1.14"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6126. "reference": "8.x-1.14",
  6127. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6128. },
  6129. "require": {
  6130. "drupal/core": "^10.1 || ^11"
  6131. },
  6132. "type": "drupal-module",
  6133. "extra": {
  6134. "drupal": {
  6135. "version": "8.x-1.14",
  6136. "datestamp": "1740624449",
  6137. "security-coverage": {
  6138. "status": "covered",
  6139. "message": "Covered by Drupal's security advisory policy"
  6140. }
  6141. }
  6142. },
  6143. "notification-url": "https://packages.drupal.org/8/downloads",
  6144. "license": [
  6145. "GPL-2.0-or-later"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "dave reid",
  6150. "homepage": "https://www.drupal.org/user/53892"
  6151. },
  6152. {
  6153. "name": "joelpittet",
  6154. "homepage": "https://www.drupal.org/user/160302"
  6155. },
  6156. {
  6157. "name": "johnalbin",
  6158. "homepage": "https://www.drupal.org/user/32095"
  6159. },
  6160. {
  6161. "name": "kim.pepper",
  6162. "homepage": "https://www.drupal.org/user/370574"
  6163. },
  6164. {
  6165. "name": "renatog",
  6166. "homepage": "https://www.drupal.org/user/3326031"
  6167. },
  6168. {
  6169. "name": "rrrob",
  6170. "homepage": "https://www.drupal.org/user/273533"
  6171. }
  6172. ],
  6173. "description": "Provides configurable blocks of menu links.",
  6174. "homepage": "https://www.drupal.org/project/menu_block",
  6175. "support": {
  6176. "source": "https://git.drupalcode.org/project/menu_block"
  6177. }
  6178. },
  6179. {
  6180. "name": "drupal/page_manager",
  6181. "version": "4.0.0-rc3",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://git.drupalcode.org/project/page_manager.git",
  6185. "reference": "8.x-4.0-rc3"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6190. "reference": "8.x-4.0-rc3",
  6191. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6192. },
  6193. "require": {
  6194. "drupal/core": "^9.5 || ^10 || ^11",
  6195. "drupal/ctools": "^3.15 || ^4.1"
  6196. },
  6197. "type": "drupal-module",
  6198. "extra": {
  6199. "drupal": {
  6200. "version": "8.x-4.0-rc3",
  6201. "datestamp": "1721976404",
  6202. "security-coverage": {
  6203. "status": "not-covered",
  6204. "message": "RC releases are not covered by Drupal security advisories."
  6205. }
  6206. },
  6207. "branch-alias": {
  6208. "dev-8.x-4.x": "4.x-dev"
  6209. }
  6210. },
  6211. "notification-url": "https://packages.drupal.org/8/downloads",
  6212. "license": [
  6213. "GPL-2.0-or-later"
  6214. ],
  6215. "authors": [
  6216. {
  6217. "name": "Tim Plunkett",
  6218. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6219. "role": "Maintainer"
  6220. },
  6221. {
  6222. "name": "EclipseGc",
  6223. "homepage": "https://www.drupal.org/user/61203"
  6224. },
  6225. {
  6226. "name": "japerry",
  6227. "homepage": "https://www.drupal.org/user/45640"
  6228. },
  6229. {
  6230. "name": "joelpittet",
  6231. "homepage": "https://www.drupal.org/user/160302"
  6232. },
  6233. {
  6234. "name": "manuel.adan",
  6235. "homepage": "https://www.drupal.org/user/516420"
  6236. },
  6237. {
  6238. "name": "phenaproxima",
  6239. "homepage": "https://www.drupal.org/user/205645"
  6240. }
  6241. ],
  6242. "description": "Provides a way to place blocks on a custom page.",
  6243. "homepage": "https://www.drupal.org/project/page_manager",
  6244. "support": {
  6245. "source": "https://git.drupal.org/project/page_manager.git",
  6246. "issues": "https://www.drupal.org/project/issues/page_manager",
  6247. "irc": "irc://irc.freenode.org/drupal-contribute"
  6248. }
  6249. },
  6250. {
  6251. "name": "drupal/panels",
  6252. "version": "4.9.0",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://git.drupalcode.org/project/panels.git",
  6256. "reference": "8.x-4.9"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6261. "reference": "8.x-4.9",
  6262. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6263. },
  6264. "require": {
  6265. "drupal/core": "^9.5 || ^10 || ^11",
  6266. "drupal/ctools": "^3.15 || ^4.1",
  6267. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6268. },
  6269. "require-dev": {
  6270. "drupal/jquery_ui_droppable": "*",
  6271. "drupal/page_manager": "^4"
  6272. },
  6273. "type": "drupal-module",
  6274. "extra": {
  6275. "drupal": {
  6276. "version": "8.x-4.9",
  6277. "datestamp": "1744218203",
  6278. "security-coverage": {
  6279. "status": "covered",
  6280. "message": "Covered by Drupal's security advisory policy"
  6281. }
  6282. },
  6283. "branch-alias": {
  6284. "dev-8.x-4.x": "4.x-dev"
  6285. }
  6286. },
  6287. "notification-url": "https://packages.drupal.org/8/downloads",
  6288. "license": [
  6289. "GPL-2.0+"
  6290. ],
  6291. "authors": [
  6292. {
  6293. "name": "Jakob Perry",
  6294. "homepage": "https://www.drupal.org/u/japerry"
  6295. },
  6296. {
  6297. "name": "Samuel Mortenson",
  6298. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6299. },
  6300. {
  6301. "name": "See other contributors",
  6302. "homepage": "https://www.drupal.org/node/74958/committers"
  6303. },
  6304. {
  6305. "name": "joelpittet",
  6306. "homepage": "https://www.drupal.org/user/160302"
  6307. },
  6308. {
  6309. "name": "Letharion",
  6310. "homepage": "https://www.drupal.org/user/373603"
  6311. },
  6312. {
  6313. "name": "merlinofchaos",
  6314. "homepage": "https://www.drupal.org/user/26979"
  6315. },
  6316. {
  6317. "name": "neclimdul",
  6318. "homepage": "https://www.drupal.org/user/48673"
  6319. },
  6320. {
  6321. "name": "phenaproxima",
  6322. "homepage": "https://www.drupal.org/user/205645"
  6323. },
  6324. {
  6325. "name": "samuel.mortenson",
  6326. "homepage": "https://www.drupal.org/user/2582268"
  6327. }
  6328. ],
  6329. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6330. "homepage": "https://www.drupal.org/project/panels",
  6331. "support": {
  6332. "source": "https://git.drupalcode.org/project/panels",
  6333. "issues": "https://www.drupal.org/project/issues/panels",
  6334. "irc": "irc://irc.freenode.org/drupal-scotch"
  6335. }
  6336. },
  6337. {
  6338. "name": "drupal/paragraphs",
  6339. "version": "1.19.0",
  6340. "source": {
  6341. "type": "git",
  6342. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6343. "reference": "8.x-1.19"
  6344. },
  6345. "dist": {
  6346. "type": "zip",
  6347. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6348. "reference": "8.x-1.19",
  6349. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6350. },
  6351. "require": {
  6352. "drupal/core": "^10.2 || ^11",
  6353. "drupal/entity_reference_revisions": "~1.3"
  6354. },
  6355. "require-dev": {
  6356. "drupal/block_field": "1.x-dev",
  6357. "drupal/diff": "1.x-dev",
  6358. "drupal/entity_browser": "2.x-dev",
  6359. "drupal/entity_usage": "2.x-dev",
  6360. "drupal/feeds": "^3",
  6361. "drupal/field_group": "3.x-dev",
  6362. "drupal/inline_entity_form": "3.x-dev",
  6363. "drupal/paragraphs-paragraphs_library": "*",
  6364. "drupal/replicate": "1.x-dev",
  6365. "drupal/search_api": "^1",
  6366. "drupal/search_api_db": "*"
  6367. },
  6368. "suggest": {
  6369. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6370. },
  6371. "type": "drupal-module",
  6372. "extra": {
  6373. "drupal": {
  6374. "version": "8.x-1.19",
  6375. "datestamp": "1740907076",
  6376. "security-coverage": {
  6377. "status": "covered",
  6378. "message": "Covered by Drupal's security advisory policy"
  6379. }
  6380. }
  6381. },
  6382. "notification-url": "https://packages.drupal.org/8/downloads",
  6383. "license": [
  6384. "GPL-2.0-or-later"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "berdir",
  6389. "homepage": "https://www.drupal.org/user/214652"
  6390. },
  6391. {
  6392. "name": "frans",
  6393. "homepage": "https://www.drupal.org/user/514222"
  6394. },
  6395. {
  6396. "name": "jeroen.b",
  6397. "homepage": "https://www.drupal.org/user/1853532"
  6398. },
  6399. {
  6400. "name": "jstoller",
  6401. "homepage": "https://www.drupal.org/user/99012"
  6402. },
  6403. {
  6404. "name": "miro_dietiker",
  6405. "homepage": "https://www.drupal.org/user/227761"
  6406. },
  6407. {
  6408. "name": "primsi",
  6409. "homepage": "https://www.drupal.org/user/282629"
  6410. }
  6411. ],
  6412. "description": "Enables the creation of Paragraphs entities.",
  6413. "homepage": "https://www.drupal.org/project/paragraphs",
  6414. "support": {
  6415. "source": "https://git.drupalcode.org/project/paragraphs"
  6416. }
  6417. },
  6418. {
  6419. "name": "drupal/pathauto",
  6420. "version": "1.13.0",
  6421. "source": {
  6422. "type": "git",
  6423. "url": "https://git.drupalcode.org/project/pathauto.git",
  6424. "reference": "8.x-1.13"
  6425. },
  6426. "dist": {
  6427. "type": "zip",
  6428. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  6429. "reference": "8.x-1.13",
  6430. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  6431. },
  6432. "require": {
  6433. "drupal/core": "^9.4 || ^10 || ^11",
  6434. "drupal/ctools": "*",
  6435. "drupal/token": "*"
  6436. },
  6437. "require-dev": {
  6438. "drupal/forum": "*"
  6439. },
  6440. "suggest": {
  6441. "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."
  6442. },
  6443. "type": "drupal-module",
  6444. "extra": {
  6445. "drupal": {
  6446. "version": "8.x-1.13",
  6447. "datestamp": "1739552840",
  6448. "security-coverage": {
  6449. "status": "covered",
  6450. "message": "Covered by Drupal's security advisory policy"
  6451. }
  6452. },
  6453. "drush": {
  6454. "services": {
  6455. "drush.services.yml": "^9 || ^10"
  6456. }
  6457. }
  6458. },
  6459. "notification-url": "https://packages.drupal.org/8/downloads",
  6460. "license": [
  6461. "GPL-2.0-or-later"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "berdir",
  6466. "homepage": "https://www.drupal.org/user/214652"
  6467. },
  6468. {
  6469. "name": "dave reid",
  6470. "homepage": "https://www.drupal.org/user/53892"
  6471. },
  6472. {
  6473. "name": "Freso",
  6474. "homepage": "https://www.drupal.org/user/27504"
  6475. },
  6476. {
  6477. "name": "greggles",
  6478. "homepage": "https://www.drupal.org/user/36762"
  6479. }
  6480. ],
  6481. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6482. "homepage": "https://www.drupal.org/project/pathauto",
  6483. "support": {
  6484. "source": "https://cgit.drupalcode.org/pathauto",
  6485. "issues": "https://www.drupal.org/project/issues/pathauto",
  6486. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6487. }
  6488. },
  6489. {
  6490. "name": "drupal/pathologic",
  6491. "version": "2.0.0-alpha3",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://git.drupalcode.org/project/pathologic.git",
  6495. "reference": "2.0.0-alpha3"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6500. "reference": "2.0.0-alpha3",
  6501. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6502. },
  6503. "require": {
  6504. "drupal/core": "^9 || ^10 || ^11"
  6505. },
  6506. "type": "drupal-module",
  6507. "extra": {
  6508. "drupal": {
  6509. "version": "2.0.0-alpha3",
  6510. "datestamp": "1733441073",
  6511. "security-coverage": {
  6512. "status": "not-covered",
  6513. "message": "Alpha releases are not covered by Drupal security advisories."
  6514. }
  6515. }
  6516. },
  6517. "notification-url": "https://packages.drupal.org/8/downloads",
  6518. "license": [
  6519. "GPL-2.0+"
  6520. ],
  6521. "authors": [
  6522. {
  6523. "name": "berdir",
  6524. "homepage": "https://www.drupal.org/user/214652"
  6525. },
  6526. {
  6527. "name": "dww",
  6528. "homepage": "https://www.drupal.org/user/46549"
  6529. },
  6530. {
  6531. "name": "Garrett Albright",
  6532. "homepage": "https://www.drupal.org/user/191212"
  6533. },
  6534. {
  6535. "name": "mark_fullmer",
  6536. "homepage": "https://www.drupal.org/user/2612816"
  6537. }
  6538. ],
  6539. "description": "Helps avoid broken links and incorrect paths in content.",
  6540. "homepage": "https://www.drupal.org/project/pathologic",
  6541. "support": {
  6542. "source": "https://git.drupalcode.org/project/pathologic"
  6543. }
  6544. },
  6545. {
  6546. "name": "drupal/persistent_login",
  6547. "version": "2.2.4",
  6548. "source": {
  6549. "type": "git",
  6550. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6551. "reference": "2.2.4"
  6552. },
  6553. "dist": {
  6554. "type": "zip",
  6555. "url": "https://ftp.drupal.org/files/projects/persistent_login-2.2.4.zip",
  6556. "reference": "2.2.4",
  6557. "shasum": "7048ecf440938f0245f87bfb8c21f61292fce12d"
  6558. },
  6559. "require": {
  6560. "drupal/core": "^10 || ^11"
  6561. },
  6562. "type": "drupal-module",
  6563. "extra": {
  6564. "drupal": {
  6565. "version": "2.2.4",
  6566. "datestamp": "1728082564",
  6567. "security-coverage": {
  6568. "status": "covered",
  6569. "message": "Covered by Drupal's security advisory policy"
  6570. }
  6571. }
  6572. },
  6573. "notification-url": "https://packages.drupal.org/8/downloads",
  6574. "license": [
  6575. "GPL-2.0-or-later"
  6576. ],
  6577. "authors": [
  6578. {
  6579. "name": "gapple",
  6580. "homepage": "https://www.drupal.org/user/490940"
  6581. }
  6582. ],
  6583. "description": "Provides a \"Remember Me\" feature on the login form.",
  6584. "homepage": "https://www.drupal.org/project/persistent_login",
  6585. "keywords": [
  6586. "Drupal"
  6587. ],
  6588. "support": {
  6589. "source": "https://git.drupalcode.org/project/persistent_login",
  6590. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6591. }
  6592. },
  6593. {
  6594. "name": "drupal/redirect",
  6595. "version": "1.11.0",
  6596. "source": {
  6597. "type": "git",
  6598. "url": "https://git.drupalcode.org/project/redirect.git",
  6599. "reference": "8.x-1.11"
  6600. },
  6601. "dist": {
  6602. "type": "zip",
  6603. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
  6604. "reference": "8.x-1.11",
  6605. "shasum": "7df8b3524bbde07d254216039636947a689140ef"
  6606. },
  6607. "require": {
  6608. "drupal/core": "^9.2 || ^10 || ^11"
  6609. },
  6610. "type": "drupal-module",
  6611. "extra": {
  6612. "drupal": {
  6613. "version": "8.x-1.11",
  6614. "datestamp": "1737382886",
  6615. "security-coverage": {
  6616. "status": "covered",
  6617. "message": "Covered by Drupal's security advisory policy"
  6618. }
  6619. }
  6620. },
  6621. "notification-url": "https://packages.drupal.org/8/downloads",
  6622. "license": [
  6623. "GPL-2.0-or-later"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "berdir",
  6628. "homepage": "https://www.drupal.org/user/214652"
  6629. },
  6630. {
  6631. "name": "dave reid",
  6632. "homepage": "https://www.drupal.org/user/53892"
  6633. },
  6634. {
  6635. "name": "kristen pol",
  6636. "homepage": "https://www.drupal.org/user/8389"
  6637. },
  6638. {
  6639. "name": "pifagor",
  6640. "homepage": "https://www.drupal.org/user/2375692"
  6641. }
  6642. ],
  6643. "description": "Allows users to redirect from old URLs to new URLs.",
  6644. "homepage": "https://www.drupal.org/project/redirect",
  6645. "support": {
  6646. "source": "https://git.drupalcode.org/project/redirect"
  6647. }
  6648. },
  6649. {
  6650. "name": "drupal/redis",
  6651. "version": "1.9.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://git.drupalcode.org/project/redis.git",
  6655. "reference": "8.x-1.9"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.9.zip",
  6660. "reference": "8.x-1.9",
  6661. "shasum": "77e2e8ddb95be08f3fe9f74182c7ff0476e15674"
  6662. },
  6663. "require": {
  6664. "drupal/core": "^9.3 || ^10 || ^11"
  6665. },
  6666. "suggest": {
  6667. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6668. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6669. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6670. },
  6671. "type": "drupal-module",
  6672. "extra": {
  6673. "drupal": {
  6674. "version": "8.x-1.9",
  6675. "datestamp": "1737932099",
  6676. "security-coverage": {
  6677. "status": "covered",
  6678. "message": "Covered by Drupal's security advisory policy"
  6679. }
  6680. }
  6681. },
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Drupal\\redis\\": "src"
  6685. }
  6686. },
  6687. "notification-url": "https://packages.drupal.org/8/downloads",
  6688. "license": [
  6689. "GPL-2.0-or-later"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "berdir",
  6694. "homepage": "https://www.drupal.org/user/214652"
  6695. },
  6696. {
  6697. "name": "greg.1.anderson",
  6698. "homepage": "https://www.drupal.org/user/438598"
  6699. },
  6700. {
  6701. "name": "kporras07",
  6702. "homepage": "https://www.drupal.org/user/1349780"
  6703. },
  6704. {
  6705. "name": "pounard",
  6706. "homepage": "https://www.drupal.org/user/240164"
  6707. }
  6708. ],
  6709. "description": "Integration of Drupal with the Redis key-value store.",
  6710. "homepage": "https://www.drupal.org/project/redis",
  6711. "support": {
  6712. "source": "https://git.drupalcode.org/project/redis"
  6713. }
  6714. },
  6715. {
  6716. "name": "drupal/role_delegation",
  6717. "version": "1.4.0",
  6718. "source": {
  6719. "type": "git",
  6720. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6721. "reference": "8.x-1.4"
  6722. },
  6723. "dist": {
  6724. "type": "zip",
  6725. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip",
  6726. "reference": "8.x-1.4",
  6727. "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa"
  6728. },
  6729. "require": {
  6730. "drupal/core": "^10.3 || ^11"
  6731. },
  6732. "type": "drupal-module",
  6733. "extra": {
  6734. "drupal": {
  6735. "version": "8.x-1.4",
  6736. "datestamp": "1751012870",
  6737. "security-coverage": {
  6738. "status": "covered",
  6739. "message": "Covered by Drupal's security advisory policy"
  6740. }
  6741. }
  6742. },
  6743. "notification-url": "https://packages.drupal.org/8/downloads",
  6744. "license": [
  6745. "GPL-2.0-or-later"
  6746. ],
  6747. "authors": [
  6748. {
  6749. "name": "Jeroen Tubex",
  6750. "homepage": "https://www.drupal.org/u/jeroent",
  6751. "role": "Maintainer"
  6752. },
  6753. {
  6754. "name": "benjy",
  6755. "homepage": "https://www.drupal.org/user/1852732"
  6756. },
  6757. {
  6758. "name": "dieterholvoet",
  6759. "homepage": "https://www.drupal.org/user/3567222"
  6760. },
  6761. {
  6762. "name": "jeroent",
  6763. "homepage": "https://www.drupal.org/user/2228934"
  6764. }
  6765. ],
  6766. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6767. "homepage": "http://drupal.org/project/role_delegation",
  6768. "support": {
  6769. "source": "https://git.drupalcode.org/project/role_delegation",
  6770. "issues": "http://drupal.org/project/role_delegation"
  6771. }
  6772. },
  6773. {
  6774. "name": "drupal/search_api",
  6775. "version": "1.38.0",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://git.drupalcode.org/project/search_api.git",
  6779. "reference": "8.x-1.38"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
  6784. "reference": "8.x-1.38",
  6785. "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
  6786. },
  6787. "require": {
  6788. "drupal/core": "^10.2 || ^11"
  6789. },
  6790. "conflict": {
  6791. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6792. },
  6793. "require-dev": {
  6794. "drupal/language_fallback_fix": "@dev",
  6795. "drupal/search_api_autocomplete": "@dev",
  6796. "drupal/search_api_db": "*"
  6797. },
  6798. "suggest": {
  6799. "drupal/facets": "Adds the ability to create faceted searches.",
  6800. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6801. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6802. },
  6803. "type": "drupal-module",
  6804. "extra": {
  6805. "drupal": {
  6806. "version": "8.x-1.38",
  6807. "datestamp": "1740298961",
  6808. "security-coverage": {
  6809. "status": "covered",
  6810. "message": "Covered by Drupal's security advisory policy"
  6811. }
  6812. }
  6813. },
  6814. "notification-url": "https://packages.drupal.org/8/downloads",
  6815. "license": [
  6816. "GPL-2.0-or-later"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Thomas Seidl",
  6821. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6822. },
  6823. {
  6824. "name": "Nick Veenhof",
  6825. "homepage": "https://www.drupal.org/u/nick_vh"
  6826. },
  6827. {
  6828. "name": "See other contributors",
  6829. "homepage": "https://www.drupal.org/node/790418/committers"
  6830. }
  6831. ],
  6832. "description": "Provides a generic framework for modules offering search capabilities.",
  6833. "homepage": "https://www.drupal.org/project/search_api",
  6834. "support": {
  6835. "source": "https://git.drupalcode.org/project/search_api",
  6836. "issues": "https://www.drupal.org/project/issues/search_api",
  6837. "irc": "irc://irc.freenode.org/drupal-search-api"
  6838. }
  6839. },
  6840. {
  6841. "name": "drupal/search_api_db",
  6842. "version": "1.38.0",
  6843. "require": {
  6844. "drupal/core": "^10.2 || ^11",
  6845. "drupal/search_api": "*"
  6846. },
  6847. "type": "metapackage",
  6848. "extra": {
  6849. "drupal": {
  6850. "version": "8.x-1.38",
  6851. "datestamp": "1740298961",
  6852. "security-coverage": {
  6853. "status": "covered",
  6854. "message": "Covered by Drupal's security advisory policy"
  6855. }
  6856. }
  6857. },
  6858. "notification-url": "https://packages.drupal.org/8/downloads",
  6859. "license": [
  6860. "GPL-2.0-or-later"
  6861. ],
  6862. "authors": [
  6863. {
  6864. "name": "borisson_",
  6865. "homepage": "https://www.drupal.org/user/2393360"
  6866. },
  6867. {
  6868. "name": "drunken monkey",
  6869. "homepage": "https://www.drupal.org/user/205582"
  6870. },
  6871. {
  6872. "name": "nick_vh",
  6873. "homepage": "https://www.drupal.org/user/122682"
  6874. }
  6875. ],
  6876. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6877. "homepage": "https://www.drupal.org/project/search_api",
  6878. "support": {
  6879. "source": "https://git.drupalcode.org/project/search_api"
  6880. }
  6881. },
  6882. {
  6883. "name": "drupal/seven",
  6884. "version": "1.0.0",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://git.drupalcode.org/project/seven.git",
  6888. "reference": "1.0.0"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6893. "reference": "1.0.0",
  6894. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6895. },
  6896. "require": {
  6897. "drupal/core": "^9 || ^10"
  6898. },
  6899. "type": "drupal-theme",
  6900. "extra": {
  6901. "drupal": {
  6902. "version": "1.0.0",
  6903. "datestamp": "1758908691",
  6904. "security-coverage": {
  6905. "status": "covered",
  6906. "message": "Covered by Drupal's security advisory policy"
  6907. }
  6908. }
  6909. },
  6910. "notification-url": "https://packages.drupal.org/8/downloads",
  6911. "license": [
  6912. "GPL-2.0-or-later"
  6913. ],
  6914. "authors": [
  6915. {
  6916. "name": "avpaderno",
  6917. "homepage": "https://www.drupal.org/user/55077"
  6918. },
  6919. {
  6920. "name": "bnjmnm",
  6921. "homepage": "https://www.drupal.org/user/2369194"
  6922. },
  6923. {
  6924. "name": "krakenbite",
  6925. "homepage": "https://www.drupal.org/user/3805933"
  6926. },
  6927. {
  6928. "name": "lauriii",
  6929. "homepage": "https://www.drupal.org/user/1078742"
  6930. },
  6931. {
  6932. "name": "mcrittenden",
  6933. "homepage": "https://www.drupal.org/user/420631"
  6934. },
  6935. {
  6936. "name": "mrfelton",
  6937. "homepage": "https://www.drupal.org/user/305669"
  6938. }
  6939. ],
  6940. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6941. "homepage": "https://www.drupal.org/project/seven",
  6942. "support": {
  6943. "source": "https://git.drupalcode.org/project/seven"
  6944. }
  6945. },
  6946. {
  6947. "name": "drupal/slick",
  6948. "version": "2.11.0",
  6949. "source": {
  6950. "type": "git",
  6951. "url": "https://git.drupalcode.org/project/slick.git",
  6952. "reference": "8.x-2.11"
  6953. },
  6954. "dist": {
  6955. "type": "zip",
  6956. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  6957. "reference": "8.x-2.11",
  6958. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  6959. },
  6960. "require": {
  6961. "drupal/blazy": "^2.17",
  6962. "drupal/core": "^8.8 || ^9 || ^10"
  6963. },
  6964. "type": "drupal-module",
  6965. "extra": {
  6966. "drupal": {
  6967. "version": "8.x-2.11",
  6968. "datestamp": "1712817716",
  6969. "security-coverage": {
  6970. "status": "covered",
  6971. "message": "Covered by Drupal's security advisory policy"
  6972. }
  6973. }
  6974. },
  6975. "notification-url": "https://packages.drupal.org/8/downloads",
  6976. "license": [
  6977. "GPL-2.0-or-later"
  6978. ],
  6979. "authors": [
  6980. {
  6981. "name": "Contributors",
  6982. "homepage": "https://www.drupal.org/node/2232779/committers",
  6983. "role": "Contributors"
  6984. },
  6985. {
  6986. "name": "shadcn",
  6987. "homepage": "https://www.drupal.org/user/571032"
  6988. },
  6989. {
  6990. "name": "thalles",
  6991. "homepage": "https://www.drupal.org/user/3589086"
  6992. }
  6993. ],
  6994. "description": "Slick carousel, the last carousel you'll ever need.",
  6995. "homepage": "https://drupal.org/project/slick",
  6996. "keywords": [
  6997. "Drupal",
  6998. "carousel",
  6999. "slideshow"
  7000. ],
  7001. "support": {
  7002. "source": "https://git.drupalcode.org/project/slick",
  7003. "issues": "https://drupal.org/project/issues/slick"
  7004. }
  7005. },
  7006. {
  7007. "name": "drupal/smart_trim",
  7008. "version": "2.2.0",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7012. "reference": "2.2.0"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.2.0.zip",
  7017. "reference": "2.2.0",
  7018. "shasum": "564737cf0895e1b8a38af575ab7ca23f55335d9a"
  7019. },
  7020. "require": {
  7021. "drupal/core": "^9.5 || ^10 || ^11",
  7022. "drupal/token": "^1.0",
  7023. "php": ">=8.1"
  7024. },
  7025. "require-dev": {
  7026. "drupal/token_filter": "^2.1 || ^2.2"
  7027. },
  7028. "type": "drupal-module",
  7029. "extra": {
  7030. "drupal": {
  7031. "version": "2.2.0",
  7032. "datestamp": "1723847275",
  7033. "security-coverage": {
  7034. "status": "covered",
  7035. "message": "Covered by Drupal's security advisory policy"
  7036. }
  7037. }
  7038. },
  7039. "notification-url": "https://packages.drupal.org/8/downloads",
  7040. "license": [
  7041. "GPL-2.0-or-later"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "Mark Casias (markie)",
  7046. "homepage": "https://www.drupal.org/u/markie",
  7047. "role": "Maintainer"
  7048. },
  7049. {
  7050. "name": "AmyJune Hineline (volkswagenchick)",
  7051. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7052. "role": "Maintainer"
  7053. },
  7054. {
  7055. "name": "Michael Anello (ultimike)",
  7056. "homepage": "https://www.drupal.org/u/ultimike",
  7057. "role": "Maintainer"
  7058. }
  7059. ],
  7060. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7061. "homepage": "https://drupal.org/project/smart_trim",
  7062. "support": {
  7063. "source": "https://git.drupalcode.org/project/smart_trim",
  7064. "issues": "https://drupal.org/project/issues/smart_trim"
  7065. }
  7066. },
  7067. {
  7068. "name": "drupal/smtp",
  7069. "version": "1.4.0",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://git.drupalcode.org/project/smtp.git",
  7073. "reference": "8.x-1.4"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7078. "reference": "8.x-1.4",
  7079. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7080. },
  7081. "require": {
  7082. "drupal/core": "^9.5 || ^10 || ^11",
  7083. "phpmailer/phpmailer": "^6.1.7"
  7084. },
  7085. "suggest": {
  7086. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7087. },
  7088. "type": "drupal-module",
  7089. "extra": {
  7090. "drupal": {
  7091. "version": "8.x-1.4",
  7092. "datestamp": "1722032780",
  7093. "security-coverage": {
  7094. "status": "covered",
  7095. "message": "Covered by Drupal's security advisory policy"
  7096. }
  7097. },
  7098. "branch-alias": {
  7099. "dev-8.x-1.x": "1.x-dev"
  7100. }
  7101. },
  7102. "notification-url": "https://packages.drupal.org/8/downloads",
  7103. "license": [
  7104. "GPL-2.0-or-later"
  7105. ],
  7106. "authors": [
  7107. {
  7108. "name": "japerry",
  7109. "homepage": "https://www.drupal.org/user/45640"
  7110. },
  7111. {
  7112. "name": "joseph.olstad",
  7113. "homepage": "https://www.drupal.org/user/1321830"
  7114. },
  7115. {
  7116. "name": "LukeLast",
  7117. "homepage": "https://www.drupal.org/user/30151"
  7118. },
  7119. {
  7120. "name": "oadaeh",
  7121. "homepage": "https://www.drupal.org/user/4649"
  7122. },
  7123. {
  7124. "name": "sadashiv",
  7125. "homepage": "https://www.drupal.org/user/1773304"
  7126. },
  7127. {
  7128. "name": "wundo",
  7129. "homepage": "https://www.drupal.org/user/25523"
  7130. },
  7131. {
  7132. "name": "yettyn",
  7133. "homepage": "https://www.drupal.org/user/93281"
  7134. }
  7135. ],
  7136. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7137. "homepage": "https://www.drupal.org/project/smtp",
  7138. "support": {
  7139. "source": "https://git.drupalcode.org/project/smtp",
  7140. "issues": "https://www.drupal.org/project/issues/smtp"
  7141. }
  7142. },
  7143. {
  7144. "name": "drupal/structure_sync",
  7145. "version": "2.0.8",
  7146. "source": {
  7147. "type": "git",
  7148. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7149. "reference": "2.0.8"
  7150. },
  7151. "dist": {
  7152. "type": "zip",
  7153. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7154. "reference": "2.0.8",
  7155. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7156. },
  7157. "require": {
  7158. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7159. "php": ">=7.1"
  7160. },
  7161. "require-dev": {
  7162. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7163. },
  7164. "type": "drupal-module",
  7165. "extra": {
  7166. "drupal": {
  7167. "version": "2.0.8",
  7168. "datestamp": "1728580642",
  7169. "security-coverage": {
  7170. "status": "covered",
  7171. "message": "Covered by Drupal's security advisory policy"
  7172. }
  7173. },
  7174. "drush": {
  7175. "services": {
  7176. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7177. }
  7178. }
  7179. },
  7180. "notification-url": "https://packages.drupal.org/8/downloads",
  7181. "license": [
  7182. "GPL-2.0-or-later"
  7183. ],
  7184. "authors": [
  7185. {
  7186. "name": "colan",
  7187. "homepage": "https://www.drupal.org/user/58704"
  7188. },
  7189. {
  7190. "name": "fidovdbos",
  7191. "homepage": "https://www.drupal.org/user/1494332"
  7192. },
  7193. {
  7194. "name": "joachim",
  7195. "homepage": "https://www.drupal.org/user/107701"
  7196. },
  7197. {
  7198. "name": "louis-cuny",
  7199. "homepage": "https://www.drupal.org/user/3606332"
  7200. },
  7201. {
  7202. "name": "mparker17",
  7203. "homepage": "https://www.drupal.org/user/536298"
  7204. },
  7205. {
  7206. "name": "spiderman",
  7207. "homepage": "https://www.drupal.org/user/1631"
  7208. },
  7209. {
  7210. "name": "timKruijsen",
  7211. "homepage": "https://www.drupal.org/user/3513437"
  7212. },
  7213. {
  7214. "name": "vinlaurens",
  7215. "homepage": "https://www.drupal.org/user/2945689"
  7216. }
  7217. ],
  7218. "description": "Tool for syncing structural data that is stored as content.",
  7219. "homepage": "https://www.drupal.org/project/structure_sync",
  7220. "support": {
  7221. "source": "https://git.drupalcode.org/project/structure_sync"
  7222. }
  7223. },
  7224. {
  7225. "name": "drupal/synonyms",
  7226. "version": "2.1.4",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://git.drupalcode.org/project/synonyms.git",
  7230. "reference": "2.1.4"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7235. "reference": "2.1.4",
  7236. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7237. },
  7238. "require": {
  7239. "drupal/core": "^9 || ^10 || ^11"
  7240. },
  7241. "require-dev": {
  7242. "drupal/synonyms_list_field": "*"
  7243. },
  7244. "type": "drupal-module",
  7245. "extra": {
  7246. "drupal": {
  7247. "version": "2.1.4",
  7248. "datestamp": "1723069842",
  7249. "security-coverage": {
  7250. "status": "covered",
  7251. "message": "Covered by Drupal's security advisory policy"
  7252. }
  7253. }
  7254. },
  7255. "notification-url": "https://packages.drupal.org/8/downloads",
  7256. "license": [
  7257. "GPL-2.0-or-later"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Bojan Zivanovic",
  7262. "homepage": "https://www.drupal.org/u/bojanz",
  7263. "role": "Author and D5, D6 and D7 versions developer."
  7264. },
  7265. {
  7266. "name": "Alex Trosenko",
  7267. "homepage": "https://www.drupal.org/u/bucefal91",
  7268. "role": "D7 and D8 versions developer."
  7269. },
  7270. {
  7271. "name": "Duro Arezina",
  7272. "homepage": "https://www.drupal.org/u/devad",
  7273. "role": "D8+ versions maintenance"
  7274. },
  7275. {
  7276. "name": "See other contributors",
  7277. "homepage": "https://www.drupal.org/node/148775/committers"
  7278. }
  7279. ],
  7280. "description": "Provides synonyms feature for all entities.",
  7281. "homepage": "https://www.drupal.org/project/synonyms",
  7282. "support": {
  7283. "source": "https://git.drupalcode.org/project/synonyms",
  7284. "issues": "https://www.drupal.org/project/issues/synonyms"
  7285. }
  7286. },
  7287. {
  7288. "name": "drupal/token",
  7289. "version": "1.15.0",
  7290. "source": {
  7291. "type": "git",
  7292. "url": "https://git.drupalcode.org/project/token.git",
  7293. "reference": "8.x-1.15"
  7294. },
  7295. "dist": {
  7296. "type": "zip",
  7297. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  7298. "reference": "8.x-1.15",
  7299. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  7300. },
  7301. "require": {
  7302. "drupal/core": "^9.2 || ^10 || ^11"
  7303. },
  7304. "require-dev": {
  7305. "drupal/book": "*"
  7306. },
  7307. "type": "drupal-module",
  7308. "extra": {
  7309. "drupal": {
  7310. "version": "8.x-1.15",
  7311. "datestamp": "1722206211",
  7312. "security-coverage": {
  7313. "status": "covered",
  7314. "message": "Covered by Drupal's security advisory policy"
  7315. }
  7316. },
  7317. "drush": {
  7318. "services": {
  7319. "drush.services.yml": ">=9"
  7320. }
  7321. }
  7322. },
  7323. "notification-url": "https://packages.drupal.org/8/downloads",
  7324. "license": [
  7325. "GPL-2.0-or-later"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "berdir",
  7330. "homepage": "https://www.drupal.org/user/214652"
  7331. },
  7332. {
  7333. "name": "dave reid",
  7334. "homepage": "https://www.drupal.org/user/53892"
  7335. },
  7336. {
  7337. "name": "eaton",
  7338. "homepage": "https://www.drupal.org/user/16496"
  7339. },
  7340. {
  7341. "name": "fago",
  7342. "homepage": "https://www.drupal.org/user/16747"
  7343. },
  7344. {
  7345. "name": "greggles",
  7346. "homepage": "https://www.drupal.org/user/36762"
  7347. },
  7348. {
  7349. "name": "mikeryan",
  7350. "homepage": "https://www.drupal.org/user/4420"
  7351. }
  7352. ],
  7353. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7354. "homepage": "https://www.drupal.org/project/token",
  7355. "support": {
  7356. "source": "https://git.drupalcode.org/project/token"
  7357. }
  7358. },
  7359. {
  7360. "name": "drupal/translation_views",
  7361. "version": "1.0.0-alpha11",
  7362. "source": {
  7363. "type": "git",
  7364. "url": "https://git.drupalcode.org/project/translation_views.git",
  7365. "reference": "8.x-1.0-alpha11"
  7366. },
  7367. "dist": {
  7368. "type": "zip",
  7369. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7370. "reference": "8.x-1.0-alpha11",
  7371. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7372. },
  7373. "require": {
  7374. "drupal/core": "^8.8 || ^9 || ^10"
  7375. },
  7376. "require-dev": {
  7377. "drupal/translators_content": "^1.0@alpha"
  7378. },
  7379. "type": "drupal-module",
  7380. "extra": {
  7381. "drupal": {
  7382. "version": "8.x-1.0-alpha11",
  7383. "datestamp": "1679660668",
  7384. "security-coverage": {
  7385. "status": "not-covered",
  7386. "message": "Alpha releases are not covered by Drupal security advisories."
  7387. }
  7388. }
  7389. },
  7390. "notification-url": "https://packages.drupal.org/8/downloads",
  7391. "license": [
  7392. "GPL-2.0-or-later"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "matsbla",
  7397. "homepage": "https://www.drupal.org/user/2325394"
  7398. },
  7399. {
  7400. "name": "vlad.dancer",
  7401. "homepage": "https://www.drupal.org/user/903844"
  7402. }
  7403. ],
  7404. "description": "Create customized lists and queries of translations from your database.",
  7405. "homepage": "https://www.drupal.org/project/translation_views",
  7406. "support": {
  7407. "source": "https://git.drupalcode.org/project/translation_views"
  7408. }
  7409. },
  7410. {
  7411. "name": "drupal/ultimate_cron",
  7412. "version": "2.0.0-beta1",
  7413. "source": {
  7414. "type": "git",
  7415. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7416. "reference": "8.x-2.0-beta1"
  7417. },
  7418. "dist": {
  7419. "type": "zip",
  7420. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7421. "reference": "8.x-2.0-beta1",
  7422. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7423. },
  7424. "require": {
  7425. "drupal/core": "^9.3 || ^10.1 || ^11"
  7426. },
  7427. "type": "drupal-module",
  7428. "extra": {
  7429. "drupal": {
  7430. "version": "8.x-2.0-beta1",
  7431. "datestamp": "1732830342",
  7432. "security-coverage": {
  7433. "status": "not-covered",
  7434. "message": "Beta releases are not covered by Drupal security advisories."
  7435. }
  7436. },
  7437. "drush": {
  7438. "services": {
  7439. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7440. }
  7441. }
  7442. },
  7443. "notification-url": "https://packages.drupal.org/8/downloads",
  7444. "license": [
  7445. "GPL-2.0+"
  7446. ],
  7447. "authors": [
  7448. {
  7449. "name": "arnested",
  7450. "homepage": "https://www.drupal.org/user/245635"
  7451. },
  7452. {
  7453. "name": "berdir",
  7454. "homepage": "https://www.drupal.org/user/214652"
  7455. },
  7456. {
  7457. "name": "gielfeldt",
  7458. "homepage": "https://www.drupal.org/user/366993"
  7459. },
  7460. {
  7461. "name": "miro_dietiker",
  7462. "homepage": "https://www.drupal.org/user/227761"
  7463. },
  7464. {
  7465. "name": "primsi",
  7466. "homepage": "https://www.drupal.org/user/282629"
  7467. }
  7468. ],
  7469. "description": "Ultimate cron",
  7470. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7471. "support": {
  7472. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7473. }
  7474. },
  7475. {
  7476. "name": "drupal/upgrade_status",
  7477. "version": "4.3.8",
  7478. "source": {
  7479. "type": "git",
  7480. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7481. "reference": "4.3.8"
  7482. },
  7483. "dist": {
  7484. "type": "zip",
  7485. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  7486. "reference": "4.3.8",
  7487. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  7488. },
  7489. "require": {
  7490. "dekor/php-array-table": "^2.0",
  7491. "drupal/core": "^9 || ^10 || ^11",
  7492. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7493. "nikic/php-parser": "^4.0.0|^5.0.0",
  7494. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7495. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7496. "webflo/drupal-finder": "^1.2"
  7497. },
  7498. "require-dev": {
  7499. "drush/drush": "^11|^12|^13"
  7500. },
  7501. "type": "drupal-module",
  7502. "extra": {
  7503. "drupal": {
  7504. "version": "4.3.8",
  7505. "datestamp": "1751485112",
  7506. "security-coverage": {
  7507. "status": "covered",
  7508. "message": "Covered by Drupal's security advisory policy"
  7509. }
  7510. },
  7511. "drush": {
  7512. "services": {
  7513. "drush.services.yml": "^9 || ^10"
  7514. }
  7515. }
  7516. },
  7517. "notification-url": "https://packages.drupal.org/8/downloads",
  7518. "license": [
  7519. "GPL-2.0-or-later"
  7520. ],
  7521. "authors": [
  7522. {
  7523. "name": "gábor hojtsy",
  7524. "homepage": "https://www.drupal.org/user/4166"
  7525. }
  7526. ],
  7527. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7528. "homepage": "http://drupal.org/project/upgrade_status",
  7529. "support": {
  7530. "source": "https://git.drupalcode.org/project/upgrade_status"
  7531. }
  7532. },
  7533. {
  7534. "name": "drupal/video_embed_dailymotion",
  7535. "version": "2.0.0",
  7536. "source": {
  7537. "type": "git",
  7538. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7539. "reference": "2.0.0"
  7540. },
  7541. "dist": {
  7542. "type": "zip",
  7543. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7544. "reference": "2.0.0",
  7545. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7546. },
  7547. "require": {
  7548. "drupal/core": "^9 || ^10",
  7549. "drupal/video_embed_field": "*"
  7550. },
  7551. "type": "drupal-module",
  7552. "extra": {
  7553. "drupal": {
  7554. "version": "2.0.0",
  7555. "datestamp": "1699434830",
  7556. "security-coverage": {
  7557. "status": "covered",
  7558. "message": "Covered by Drupal's security advisory policy"
  7559. }
  7560. }
  7561. },
  7562. "notification-url": "https://packages.drupal.org/8/downloads",
  7563. "license": [
  7564. "GPL-2.0-or-later"
  7565. ],
  7566. "authors": [
  7567. {
  7568. "name": "flocondetoile",
  7569. "homepage": "https://www.drupal.org/user/2006064"
  7570. },
  7571. {
  7572. "name": "mohs3n71",
  7573. "homepage": "https://www.drupal.org/user/2295854"
  7574. },
  7575. {
  7576. "name": "Sam152",
  7577. "homepage": "https://www.drupal.org/user/1485048"
  7578. }
  7579. ],
  7580. "description": "A video_embed_field integration with Dailymotion.",
  7581. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7582. "support": {
  7583. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7584. }
  7585. },
  7586. {
  7587. "name": "drupal/video_embed_field",
  7588. "version": "2.5.0",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7592. "reference": "8.x-2.5"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7597. "reference": "8.x-2.5",
  7598. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7599. },
  7600. "require": {
  7601. "drupal/core": "^9.2 || ^10"
  7602. },
  7603. "require-dev": {
  7604. "drupal/ckeditor": "^1",
  7605. "drupal/colorbox": "^2",
  7606. "drupal/video_embed_media": "*"
  7607. },
  7608. "type": "drupal-module",
  7609. "extra": {
  7610. "drupal": {
  7611. "version": "8.x-2.5",
  7612. "datestamp": "1671413311",
  7613. "security-coverage": {
  7614. "status": "covered",
  7615. "message": "Covered by Drupal's security advisory policy"
  7616. }
  7617. }
  7618. },
  7619. "notification-url": "https://packages.drupal.org/8/downloads",
  7620. "license": [
  7621. "GPL-2.0-or-later"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "abhinesh",
  7626. "homepage": "https://www.drupal.org/user/3645979"
  7627. },
  7628. {
  7629. "name": "jec006",
  7630. "homepage": "https://www.drupal.org/user/855980"
  7631. },
  7632. {
  7633. "name": "mably",
  7634. "homepage": "https://www.drupal.org/user/3375160"
  7635. },
  7636. {
  7637. "name": "plopesc",
  7638. "homepage": "https://www.drupal.org/user/282415"
  7639. },
  7640. {
  7641. "name": "sam152",
  7642. "homepage": "https://www.drupal.org/user/1485048"
  7643. }
  7644. ],
  7645. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7646. "homepage": "https://www.drupal.org/project/video_embed_field",
  7647. "support": {
  7648. "source": "https://git.drupalcode.org/project/video_embed_field"
  7649. }
  7650. },
  7651. {
  7652. "name": "drupal/views_bulk_edit",
  7653. "version": "3.0.0",
  7654. "source": {
  7655. "type": "git",
  7656. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7657. "reference": "3.0.0"
  7658. },
  7659. "dist": {
  7660. "type": "zip",
  7661. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  7662. "reference": "3.0.0",
  7663. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  7664. },
  7665. "require": {
  7666. "drupal/core": "^9.4 || ^10 || ^11",
  7667. "php": ">=8.1"
  7668. },
  7669. "require-dev": {
  7670. "drupal/views_bulk_operations": "~4.2.4"
  7671. },
  7672. "suggest": {
  7673. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7674. },
  7675. "type": "drupal-module",
  7676. "extra": {
  7677. "drupal": {
  7678. "version": "3.0.0",
  7679. "datestamp": "1725358398",
  7680. "security-coverage": {
  7681. "status": "covered",
  7682. "message": "Covered by Drupal's security advisory policy"
  7683. }
  7684. }
  7685. },
  7686. "notification-url": "https://packages.drupal.org/8/downloads",
  7687. "license": [
  7688. "GPL-2.0+"
  7689. ],
  7690. "authors": [
  7691. {
  7692. "name": "Marcin Grabias",
  7693. "homepage": "https://www.drupal.org/u/graber"
  7694. },
  7695. {
  7696. "name": "benjy",
  7697. "homepage": "https://www.drupal.org/user/1852732"
  7698. },
  7699. {
  7700. "name": "graber",
  7701. "homepage": "https://www.drupal.org/user/1599440"
  7702. },
  7703. {
  7704. "name": "grevil",
  7705. "homepage": "https://www.drupal.org/user/3668491"
  7706. },
  7707. {
  7708. "name": "joseph.olstad",
  7709. "homepage": "https://www.drupal.org/user/1321830"
  7710. }
  7711. ],
  7712. "description": "Allows bulk edition of entity field values.",
  7713. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7714. "support": {
  7715. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7716. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7717. }
  7718. },
  7719. {
  7720. "name": "drupal/views_bulk_operations",
  7721. "version": "4.3.4",
  7722. "source": {
  7723. "type": "git",
  7724. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7725. "reference": "4.3.4"
  7726. },
  7727. "dist": {
  7728. "type": "zip",
  7729. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  7730. "reference": "4.3.4",
  7731. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  7732. },
  7733. "require": {
  7734. "drupal/core": "^10.3 || ^11"
  7735. },
  7736. "conflict": {
  7737. "drush/drush": "<12.5.1"
  7738. },
  7739. "require-dev": {
  7740. "drush/drush": "^12 || ^13"
  7741. },
  7742. "suggest": {
  7743. "drush/drush": "^12 || ^13"
  7744. },
  7745. "type": "drupal-module",
  7746. "extra": {
  7747. "drupal": {
  7748. "version": "4.3.4",
  7749. "datestamp": "1741604495",
  7750. "security-coverage": {
  7751. "status": "covered",
  7752. "message": "Covered by Drupal's security advisory policy"
  7753. }
  7754. }
  7755. },
  7756. "notification-url": "https://packages.drupal.org/8/downloads",
  7757. "license": [
  7758. "GPL-2.0-or-later"
  7759. ],
  7760. "authors": [
  7761. {
  7762. "name": "Marcin Grabias",
  7763. "homepage": "https://www.drupal.org/u/graber"
  7764. },
  7765. {
  7766. "name": "graber",
  7767. "homepage": "https://www.drupal.org/user/1599440"
  7768. },
  7769. {
  7770. "name": "joelpittet",
  7771. "homepage": "https://www.drupal.org/user/160302"
  7772. }
  7773. ],
  7774. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7775. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7776. "support": {
  7777. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7778. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7779. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7780. }
  7781. },
  7782. {
  7783. "name": "drupal/views_conditional",
  7784. "version": "1.10.0",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7788. "reference": "8.x-1.10"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7793. "reference": "8.x-1.10",
  7794. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7795. },
  7796. "require": {
  7797. "drupal/core": "^9 || ^10 || ^11"
  7798. },
  7799. "type": "drupal-module",
  7800. "extra": {
  7801. "drupal": {
  7802. "version": "8.x-1.10",
  7803. "datestamp": "1727901408",
  7804. "security-coverage": {
  7805. "status": "covered",
  7806. "message": "Covered by Drupal's security advisory policy"
  7807. }
  7808. }
  7809. },
  7810. "notification-url": "https://packages.drupal.org/8/downloads",
  7811. "license": [
  7812. "GPL-2.0-or-later"
  7813. ],
  7814. "authors": [
  7815. {
  7816. "name": "anand.toshniwal93",
  7817. "homepage": "https://www.drupal.org/user/3345088"
  7818. },
  7819. {
  7820. "name": "joelpittet",
  7821. "homepage": "https://www.drupal.org/user/160302"
  7822. },
  7823. {
  7824. "name": "MChittenden",
  7825. "homepage": "https://www.drupal.org/user/2288348"
  7826. },
  7827. {
  7828. "name": "shelane",
  7829. "homepage": "https://www.drupal.org/user/2674989"
  7830. }
  7831. ],
  7832. "description": "Allows conditional views output.",
  7833. "homepage": "https://www.drupal.org/project/views_conditional",
  7834. "support": {
  7835. "source": "https://git.drupalcode.org/project/views_conditional"
  7836. }
  7837. },
  7838. {
  7839. "name": "drupal/views_ef_fieldset",
  7840. "version": "1.10.0",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7844. "reference": "8.x-1.10"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7849. "reference": "8.x-1.10",
  7850. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7851. },
  7852. "require": {
  7853. "drupal/core": "^10 || ^11"
  7854. },
  7855. "type": "drupal-module",
  7856. "extra": {
  7857. "drupal": {
  7858. "version": "8.x-1.10",
  7859. "datestamp": "1731071552",
  7860. "security-coverage": {
  7861. "status": "covered",
  7862. "message": "Covered by Drupal's security advisory policy"
  7863. }
  7864. }
  7865. },
  7866. "notification-url": "https://packages.drupal.org/8/downloads",
  7867. "license": [
  7868. "GPL-2.0-or-later"
  7869. ],
  7870. "authors": [
  7871. {
  7872. "name": "ciss",
  7873. "homepage": "https://www.drupal.org/user/1632364"
  7874. },
  7875. {
  7876. "name": "eli-t",
  7877. "homepage": "https://www.drupal.org/user/516878"
  7878. },
  7879. {
  7880. "name": "pol",
  7881. "homepage": "https://www.drupal.org/user/47194"
  7882. }
  7883. ],
  7884. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  7885. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  7886. "support": {
  7887. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7888. }
  7889. },
  7890. {
  7891. "name": "drupal/webform",
  7892. "version": "6.2.9",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://git.drupalcode.org/project/webform.git",
  7896. "reference": "6.2.9"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  7901. "reference": "6.2.9",
  7902. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  7903. },
  7904. "require": {
  7905. "drupal/core": "^10.2",
  7906. "php": ">=8.1"
  7907. },
  7908. "require-dev": {
  7909. "drupal/address": "1.x-dev",
  7910. "drupal/bootstrap": "3.x-dev",
  7911. "drupal/captcha": "^1 || ^2",
  7912. "drupal/chosen": "3.0.x-dev",
  7913. "drupal/ckeditor": "1.0.x-dev",
  7914. "drupal/clientside_validation": "^3 || ^4",
  7915. "drupal/clientside_validation_jquery": "*",
  7916. "drupal/devel": "5.x-dev",
  7917. "drupal/entity": "1.x-dev",
  7918. "drupal/entity_print": "2.x-dev",
  7919. "drupal/group": "1.x-dev",
  7920. "drupal/hal": "1 - 2",
  7921. "drupal/jquery_ui": "1.x-dev",
  7922. "drupal/jquery_ui_button": "2.x-dev",
  7923. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7924. "drupal/jquery_ui_datepicker": "2.x-dev",
  7925. "drupal/mailsystem": "4.x-dev",
  7926. "drupal/metatag": "1.x-dev",
  7927. "drupal/paragraphs": "1.x-dev",
  7928. "drupal/select2": "1.x-dev",
  7929. "drupal/smtp": "1.x-dev",
  7930. "drupal/styleguide": "^1 || ^2",
  7931. "drupal/telephone_validation": "2.x-dev",
  7932. "drupal/token": "1.x-dev",
  7933. "drupal/variationcache": "1.x-dev",
  7934. "drupal/webform_access": "*",
  7935. "drupal/webform_attachment": "*",
  7936. "drupal/webform_clientside_validation": "*",
  7937. "drupal/webform_devel": "*",
  7938. "drupal/webform_entity_print": "*",
  7939. "drupal/webform_node": "*",
  7940. "drupal/webform_options_limit": "*",
  7941. "drupal/webform_scheduled_email": "*",
  7942. "drupal/webform_share": "*",
  7943. "drupal/webform_ui": "*"
  7944. },
  7945. "suggest": {
  7946. "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.",
  7947. "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."
  7948. },
  7949. "type": "drupal-module",
  7950. "extra": {
  7951. "drupal": {
  7952. "version": "6.2.9",
  7953. "datestamp": "1733851063",
  7954. "security-coverage": {
  7955. "status": "covered",
  7956. "message": "Covered by Drupal's security advisory policy"
  7957. }
  7958. },
  7959. "drush": {
  7960. "services": {
  7961. "drush.services.yml": ">=9"
  7962. }
  7963. }
  7964. },
  7965. "notification-url": "https://packages.drupal.org/8/downloads",
  7966. "license": [
  7967. "GPL-2.0-or-later"
  7968. ],
  7969. "authors": [
  7970. {
  7971. "name": "Jacob Rockowitz (jrockowitz)",
  7972. "homepage": "https://www.drupal.org/u/jrockowitz",
  7973. "role": "Maintainer"
  7974. },
  7975. {
  7976. "name": "Contributors",
  7977. "homepage": "https://www.drupal.org/node/7404/committers",
  7978. "role": "Contributor"
  7979. },
  7980. {
  7981. "name": "liam morland",
  7982. "homepage": "https://www.drupal.org/user/493050"
  7983. },
  7984. {
  7985. "name": "mandclu",
  7986. "homepage": "https://www.drupal.org/user/52136"
  7987. },
  7988. {
  7989. "name": "quicksketch",
  7990. "homepage": "https://www.drupal.org/user/35821"
  7991. }
  7992. ],
  7993. "description": "Enables the creation of webforms and questionnaires.",
  7994. "homepage": "https://drupal.org/project/webform",
  7995. "support": {
  7996. "source": "https://git.drupalcode.org/project/webform",
  7997. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7998. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7999. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8000. }
  8001. },
  8002. {
  8003. "name": "drush/drush",
  8004. "version": "13.7.1",
  8005. "source": {
  8006. "type": "git",
  8007. "url": "https://github.com/drush-ops/drush.git",
  8008. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc"
  8009. },
  8010. "dist": {
  8011. "type": "zip",
  8012. "url": "https://api.github.com/repos/drush-ops/drush/zipball/4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8013. "reference": "4049dd4332bfc47d19ce849cb50380bd0498e4cc",
  8014. "shasum": ""
  8015. },
  8016. "require": {
  8017. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  8018. "composer-runtime-api": "^2.2",
  8019. "composer/semver": "^1.4 || ^3",
  8020. "consolidation/annotated-command": "^4.10.2",
  8021. "consolidation/config": "^2.1.2 || ^3.1.1",
  8022. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8023. "consolidation/output-formatters": "^4.6.1",
  8024. "consolidation/robo": "^4.0.6 || ^5.1.0",
  8025. "consolidation/site-alias": "^4.1.1",
  8026. "consolidation/site-process": "^5.4.2",
  8027. "dflydev/dot-access-data": "^3.0.2",
  8028. "ext-dom": "*",
  8029. "grasmash/yaml-cli": "^3.2",
  8030. "guzzlehttp/guzzle": "^7.0",
  8031. "laravel/prompts": "^0.3.5",
  8032. "league/container": "^4.2",
  8033. "php": ">=8.3",
  8034. "psy/psysh": "~0.12",
  8035. "symfony/event-dispatcher": "^6 || ^7",
  8036. "symfony/filesystem": "^6.1 || ^7",
  8037. "symfony/finder": "^6 || ^7",
  8038. "symfony/var-dumper": "^6.0 || ^7",
  8039. "symfony/yaml": "^6.0 || ^7"
  8040. },
  8041. "conflict": {
  8042. "drupal/core": "< 10.4",
  8043. "drupal/migrate_run": "*",
  8044. "drupal/migrate_tools": "<= 5"
  8045. },
  8046. "require-dev": {
  8047. "composer/installers": "^2",
  8048. "cweagans/composer-patches": "~1.7.3",
  8049. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  8050. "drupal/semver_example": "2.3.0",
  8051. "jetbrains/phpstorm-attributes": "^1.0",
  8052. "mglaman/phpstan-drupal": "^2",
  8053. "phpunit/phpunit": "^9 || ^10 || ^11",
  8054. "rector/rector": "^2",
  8055. "squizlabs/php_codesniffer": "^3.7"
  8056. },
  8057. "bin": [
  8058. "drush",
  8059. "drush.php"
  8060. ],
  8061. "type": "library",
  8062. "extra": {
  8063. "patches-file": "composer.patches.json",
  8064. "installer-paths": {
  8065. "sut/core": [
  8066. "type:drupal-core"
  8067. ],
  8068. "sut/libraries/{$name}": [
  8069. "type:drupal-library"
  8070. ],
  8071. "sut/themes/unish/{$name}": [
  8072. "drupal/empty_theme"
  8073. ],
  8074. "sut/drush/contrib/{$name}": [
  8075. "type:drupal-drush"
  8076. ],
  8077. "sut/modules/unish/{$name}": [
  8078. "drupal/devel"
  8079. ],
  8080. "sut/themes/contrib/{$name}": [
  8081. "type:drupal-theme"
  8082. ],
  8083. "sut/modules/contrib/{$name}": [
  8084. "type:drupal-module"
  8085. ],
  8086. "sut/profiles/contrib/{$name}": [
  8087. "type:drupal-profile"
  8088. ]
  8089. }
  8090. },
  8091. "autoload": {
  8092. "psr-4": {
  8093. "Drush\\": "src/"
  8094. }
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "GPL-2.0-or-later"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "Moshe Weitzman",
  8103. "email": "weitzman@tejasa.com"
  8104. },
  8105. {
  8106. "name": "Owen Barton",
  8107. "email": "drupal@owenbarton.com"
  8108. },
  8109. {
  8110. "name": "Greg Anderson",
  8111. "email": "greg.1.anderson@greenknowe.org"
  8112. },
  8113. {
  8114. "name": "Jonathan Araña Cruz",
  8115. "email": "jonhattan@faita.net"
  8116. },
  8117. {
  8118. "name": "Jonathan Hedstrom",
  8119. "email": "jhedstrom@gmail.com"
  8120. },
  8121. {
  8122. "name": "Christopher Gervais",
  8123. "email": "chris@ergonlogic.com"
  8124. },
  8125. {
  8126. "name": "Dave Reid",
  8127. "email": "dave@davereid.net"
  8128. },
  8129. {
  8130. "name": "Damian Lee",
  8131. "email": "damiankloip@googlemail.com"
  8132. }
  8133. ],
  8134. "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.",
  8135. "homepage": "http://www.drush.org",
  8136. "support": {
  8137. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8138. "issues": "https://github.com/drush-ops/drush/issues",
  8139. "security": "https://github.com/drush-ops/drush/security/advisories",
  8140. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8141. "source": "https://github.com/drush-ops/drush/tree/13.7.1"
  8142. },
  8143. "funding": [
  8144. {
  8145. "url": "https://github.com/weitzman",
  8146. "type": "github"
  8147. }
  8148. ],
  8149. "time": "2026-01-28T22:21:17+00:00"
  8150. },
  8151. {
  8152. "name": "egulias/email-validator",
  8153. "version": "4.0.4",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/egulias/EmailValidator.git",
  8157. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8162. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8163. "shasum": ""
  8164. },
  8165. "require": {
  8166. "doctrine/lexer": "^2.0 || ^3.0",
  8167. "php": ">=8.1",
  8168. "symfony/polyfill-intl-idn": "^1.26"
  8169. },
  8170. "require-dev": {
  8171. "phpunit/phpunit": "^10.2",
  8172. "vimeo/psalm": "^5.12"
  8173. },
  8174. "suggest": {
  8175. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-master": "4.0.x-dev"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "psr-4": {
  8185. "Egulias\\EmailValidator\\": "src"
  8186. }
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "MIT"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Eduardo Gulias Davis"
  8195. }
  8196. ],
  8197. "description": "A library for validating emails against several RFCs",
  8198. "homepage": "https://github.com/egulias/EmailValidator",
  8199. "keywords": [
  8200. "email",
  8201. "emailvalidation",
  8202. "emailvalidator",
  8203. "validation",
  8204. "validator"
  8205. ],
  8206. "support": {
  8207. "issues": "https://github.com/egulias/EmailValidator/issues",
  8208. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8209. },
  8210. "funding": [
  8211. {
  8212. "url": "https://github.com/egulias",
  8213. "type": "github"
  8214. }
  8215. ],
  8216. "time": "2025-03-06T22:45:56+00:00"
  8217. },
  8218. {
  8219. "name": "geocoder-php/common-http",
  8220. "version": "4.7.0",
  8221. "source": {
  8222. "type": "git",
  8223. "url": "https://github.com/geocoder-php/php-common-http.git",
  8224. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8225. },
  8226. "dist": {
  8227. "type": "zip",
  8228. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8229. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8230. "shasum": ""
  8231. },
  8232. "require": {
  8233. "php": "^8.0",
  8234. "php-http/discovery": "^1.17",
  8235. "psr/http-client-implementation": "^1.0",
  8236. "psr/http-factory-implementation": "^1.0",
  8237. "willdurand/geocoder": "^4.0|^5.0"
  8238. },
  8239. "require-dev": {
  8240. "nyholm/psr7": "^1.0",
  8241. "php-http/message": "^1.0",
  8242. "php-http/mock-client": "^1.0",
  8243. "phpunit/phpunit": "^9.5",
  8244. "symfony/stopwatch": "~2.5 || ~5.0"
  8245. },
  8246. "type": "library",
  8247. "extra": {
  8248. "branch-alias": {
  8249. "dev-master": "4.0-dev"
  8250. }
  8251. },
  8252. "autoload": {
  8253. "psr-4": {
  8254. "Geocoder\\Http\\": ""
  8255. },
  8256. "exclude-from-classmap": [
  8257. "/Tests/"
  8258. ]
  8259. },
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "MIT"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "Tobias Nyholm",
  8267. "email": "tobias.nyholm@gmail.com"
  8268. }
  8269. ],
  8270. "description": "Common files for HTTP based Geocoders",
  8271. "homepage": "http://geocoder-php.org",
  8272. "keywords": [
  8273. "http geocoder"
  8274. ],
  8275. "support": {
  8276. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8277. },
  8278. "time": "2025-04-15T12:38:11+00:00"
  8279. },
  8280. {
  8281. "name": "geocoder-php/mapquest-provider",
  8282. "version": "4.4.0",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8286. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8291. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8292. "shasum": ""
  8293. },
  8294. "require": {
  8295. "geocoder-php/common-http": "^4.6",
  8296. "php": "^8.0",
  8297. "willdurand/geocoder": "^4.0|^5.0"
  8298. },
  8299. "provide": {
  8300. "geocoder-php/provider-implementation": "1.0"
  8301. },
  8302. "require-dev": {
  8303. "geocoder-php/provider-integration-tests": "^1.6.3",
  8304. "php-http/message": "^1.0",
  8305. "phpunit/phpunit": "^9.5"
  8306. },
  8307. "type": "library",
  8308. "extra": {
  8309. "branch-alias": {
  8310. "dev-master": "4.0-dev"
  8311. }
  8312. },
  8313. "autoload": {
  8314. "psr-4": {
  8315. "Geocoder\\Provider\\MapQuest\\": ""
  8316. },
  8317. "exclude-from-classmap": [
  8318. "/Tests/"
  8319. ]
  8320. },
  8321. "notification-url": "https://packagist.org/downloads/",
  8322. "license": [
  8323. "MIT"
  8324. ],
  8325. "authors": [
  8326. {
  8327. "name": "William Durand",
  8328. "email": "william.durand1@gmail.com"
  8329. }
  8330. ],
  8331. "description": "Geocoder MapQuest adapter",
  8332. "homepage": "http://geocoder-php.org/Geocoder/",
  8333. "support": {
  8334. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8335. },
  8336. "time": "2025-04-15T13:24:32+00:00"
  8337. },
  8338. {
  8339. "name": "grasmash/expander",
  8340. "version": "3.0.1",
  8341. "source": {
  8342. "type": "git",
  8343. "url": "https://github.com/grasmash/expander.git",
  8344. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8345. },
  8346. "dist": {
  8347. "type": "zip",
  8348. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8349. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8350. "shasum": ""
  8351. },
  8352. "require": {
  8353. "dflydev/dot-access-data": "^3.0.0",
  8354. "php": ">=8.0",
  8355. "psr/log": "^2 | ^3"
  8356. },
  8357. "require-dev": {
  8358. "greg-1-anderson/composer-test-scenarios": "^1",
  8359. "php-coveralls/php-coveralls": "^2.5",
  8360. "phpunit/phpunit": "^9",
  8361. "squizlabs/php_codesniffer": "^3.3"
  8362. },
  8363. "type": "library",
  8364. "extra": {
  8365. "branch-alias": {
  8366. "dev-master": "1.x-dev"
  8367. }
  8368. },
  8369. "autoload": {
  8370. "psr-4": {
  8371. "Grasmash\\Expander\\": "src/"
  8372. }
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Matthew Grasmick"
  8381. }
  8382. ],
  8383. "description": "Expands internal property references in PHP arrays file.",
  8384. "support": {
  8385. "issues": "https://github.com/grasmash/expander/issues",
  8386. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8387. },
  8388. "time": "2024-11-25T23:28:05+00:00"
  8389. },
  8390. {
  8391. "name": "grasmash/yaml-cli",
  8392. "version": "3.2.1",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/grasmash/yaml-cli.git",
  8396. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8401. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "dflydev/dot-access-data": "^3",
  8406. "php": ">=8.0",
  8407. "symfony/console": "^6 || ^7",
  8408. "symfony/filesystem": "^6 || ^7",
  8409. "symfony/yaml": "^6 || ^7"
  8410. },
  8411. "require-dev": {
  8412. "php-coveralls/php-coveralls": "^2",
  8413. "phpunit/phpunit": "^9",
  8414. "squizlabs/php_codesniffer": "^3.0"
  8415. },
  8416. "bin": [
  8417. "bin/yaml-cli"
  8418. ],
  8419. "type": "library",
  8420. "extra": {
  8421. "branch-alias": {
  8422. "dev-master": "3.x-dev"
  8423. }
  8424. },
  8425. "autoload": {
  8426. "psr-4": {
  8427. "Grasmash\\YamlCli\\": "src/"
  8428. }
  8429. },
  8430. "notification-url": "https://packagist.org/downloads/",
  8431. "license": [
  8432. "MIT"
  8433. ],
  8434. "authors": [
  8435. {
  8436. "name": "Matthew Grasmick"
  8437. }
  8438. ],
  8439. "description": "A command line tool for reading and manipulating yaml files.",
  8440. "support": {
  8441. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8442. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8443. },
  8444. "time": "2024-04-23T02:10:57+00:00"
  8445. },
  8446. {
  8447. "name": "guzzlehttp/guzzle",
  8448. "version": "7.10.0",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/guzzle/guzzle.git",
  8452. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8457. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "ext-json": "*",
  8462. "guzzlehttp/promises": "^2.3",
  8463. "guzzlehttp/psr7": "^2.8",
  8464. "php": "^7.2.5 || ^8.0",
  8465. "psr/http-client": "^1.0",
  8466. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8467. },
  8468. "provide": {
  8469. "psr/http-client-implementation": "1.0"
  8470. },
  8471. "require-dev": {
  8472. "bamarni/composer-bin-plugin": "^1.8.2",
  8473. "ext-curl": "*",
  8474. "guzzle/client-integration-tests": "3.0.2",
  8475. "php-http/message-factory": "^1.1",
  8476. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8477. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8478. },
  8479. "suggest": {
  8480. "ext-curl": "Required for CURL handler support",
  8481. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8482. "psr/log": "Required for using the Log middleware"
  8483. },
  8484. "type": "library",
  8485. "extra": {
  8486. "bamarni-bin": {
  8487. "bin-links": true,
  8488. "forward-command": false
  8489. }
  8490. },
  8491. "autoload": {
  8492. "files": [
  8493. "src/functions_include.php"
  8494. ],
  8495. "psr-4": {
  8496. "GuzzleHttp\\": "src/"
  8497. }
  8498. },
  8499. "notification-url": "https://packagist.org/downloads/",
  8500. "license": [
  8501. "MIT"
  8502. ],
  8503. "authors": [
  8504. {
  8505. "name": "Graham Campbell",
  8506. "email": "hello@gjcampbell.co.uk",
  8507. "homepage": "https://github.com/GrahamCampbell"
  8508. },
  8509. {
  8510. "name": "Michael Dowling",
  8511. "email": "mtdowling@gmail.com",
  8512. "homepage": "https://github.com/mtdowling"
  8513. },
  8514. {
  8515. "name": "Jeremy Lindblom",
  8516. "email": "jeremeamia@gmail.com",
  8517. "homepage": "https://github.com/jeremeamia"
  8518. },
  8519. {
  8520. "name": "George Mponos",
  8521. "email": "gmponos@gmail.com",
  8522. "homepage": "https://github.com/gmponos"
  8523. },
  8524. {
  8525. "name": "Tobias Nyholm",
  8526. "email": "tobias.nyholm@gmail.com",
  8527. "homepage": "https://github.com/Nyholm"
  8528. },
  8529. {
  8530. "name": "Márk Sági-Kazár",
  8531. "email": "mark.sagikazar@gmail.com",
  8532. "homepage": "https://github.com/sagikazarmark"
  8533. },
  8534. {
  8535. "name": "Tobias Schultze",
  8536. "email": "webmaster@tubo-world.de",
  8537. "homepage": "https://github.com/Tobion"
  8538. }
  8539. ],
  8540. "description": "Guzzle is a PHP HTTP client library",
  8541. "keywords": [
  8542. "client",
  8543. "curl",
  8544. "framework",
  8545. "http",
  8546. "http client",
  8547. "psr-18",
  8548. "psr-7",
  8549. "rest",
  8550. "web service"
  8551. ],
  8552. "support": {
  8553. "issues": "https://github.com/guzzle/guzzle/issues",
  8554. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  8555. },
  8556. "funding": [
  8557. {
  8558. "url": "https://github.com/GrahamCampbell",
  8559. "type": "github"
  8560. },
  8561. {
  8562. "url": "https://github.com/Nyholm",
  8563. "type": "github"
  8564. },
  8565. {
  8566. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8567. "type": "tidelift"
  8568. }
  8569. ],
  8570. "time": "2025-08-23T22:36:01+00:00"
  8571. },
  8572. {
  8573. "name": "guzzlehttp/promises",
  8574. "version": "2.3.0",
  8575. "source": {
  8576. "type": "git",
  8577. "url": "https://github.com/guzzle/promises.git",
  8578. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  8579. },
  8580. "dist": {
  8581. "type": "zip",
  8582. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  8583. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  8584. "shasum": ""
  8585. },
  8586. "require": {
  8587. "php": "^7.2.5 || ^8.0"
  8588. },
  8589. "require-dev": {
  8590. "bamarni/composer-bin-plugin": "^1.8.2",
  8591. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8592. },
  8593. "type": "library",
  8594. "extra": {
  8595. "bamarni-bin": {
  8596. "bin-links": true,
  8597. "forward-command": false
  8598. }
  8599. },
  8600. "autoload": {
  8601. "psr-4": {
  8602. "GuzzleHttp\\Promise\\": "src/"
  8603. }
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "license": [
  8607. "MIT"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Graham Campbell",
  8612. "email": "hello@gjcampbell.co.uk",
  8613. "homepage": "https://github.com/GrahamCampbell"
  8614. },
  8615. {
  8616. "name": "Michael Dowling",
  8617. "email": "mtdowling@gmail.com",
  8618. "homepage": "https://github.com/mtdowling"
  8619. },
  8620. {
  8621. "name": "Tobias Nyholm",
  8622. "email": "tobias.nyholm@gmail.com",
  8623. "homepage": "https://github.com/Nyholm"
  8624. },
  8625. {
  8626. "name": "Tobias Schultze",
  8627. "email": "webmaster@tubo-world.de",
  8628. "homepage": "https://github.com/Tobion"
  8629. }
  8630. ],
  8631. "description": "Guzzle promises library",
  8632. "keywords": [
  8633. "promise"
  8634. ],
  8635. "support": {
  8636. "issues": "https://github.com/guzzle/promises/issues",
  8637. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  8638. },
  8639. "funding": [
  8640. {
  8641. "url": "https://github.com/GrahamCampbell",
  8642. "type": "github"
  8643. },
  8644. {
  8645. "url": "https://github.com/Nyholm",
  8646. "type": "github"
  8647. },
  8648. {
  8649. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8650. "type": "tidelift"
  8651. }
  8652. ],
  8653. "time": "2025-08-22T14:34:08+00:00"
  8654. },
  8655. {
  8656. "name": "guzzlehttp/psr7",
  8657. "version": "2.8.0",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/guzzle/psr7.git",
  8661. "reference": "21dc724a0583619cd1652f673303492272778051"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  8666. "reference": "21dc724a0583619cd1652f673303492272778051",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": "^7.2.5 || ^8.0",
  8671. "psr/http-factory": "^1.0",
  8672. "psr/http-message": "^1.1 || ^2.0",
  8673. "ralouphie/getallheaders": "^3.0"
  8674. },
  8675. "provide": {
  8676. "psr/http-factory-implementation": "1.0",
  8677. "psr/http-message-implementation": "1.0"
  8678. },
  8679. "require-dev": {
  8680. "bamarni/composer-bin-plugin": "^1.8.2",
  8681. "http-interop/http-factory-tests": "0.9.0",
  8682. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  8683. },
  8684. "suggest": {
  8685. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8686. },
  8687. "type": "library",
  8688. "extra": {
  8689. "bamarni-bin": {
  8690. "bin-links": true,
  8691. "forward-command": false
  8692. }
  8693. },
  8694. "autoload": {
  8695. "psr-4": {
  8696. "GuzzleHttp\\Psr7\\": "src/"
  8697. }
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "MIT"
  8702. ],
  8703. "authors": [
  8704. {
  8705. "name": "Graham Campbell",
  8706. "email": "hello@gjcampbell.co.uk",
  8707. "homepage": "https://github.com/GrahamCampbell"
  8708. },
  8709. {
  8710. "name": "Michael Dowling",
  8711. "email": "mtdowling@gmail.com",
  8712. "homepage": "https://github.com/mtdowling"
  8713. },
  8714. {
  8715. "name": "George Mponos",
  8716. "email": "gmponos@gmail.com",
  8717. "homepage": "https://github.com/gmponos"
  8718. },
  8719. {
  8720. "name": "Tobias Nyholm",
  8721. "email": "tobias.nyholm@gmail.com",
  8722. "homepage": "https://github.com/Nyholm"
  8723. },
  8724. {
  8725. "name": "Márk Sági-Kazár",
  8726. "email": "mark.sagikazar@gmail.com",
  8727. "homepage": "https://github.com/sagikazarmark"
  8728. },
  8729. {
  8730. "name": "Tobias Schultze",
  8731. "email": "webmaster@tubo-world.de",
  8732. "homepage": "https://github.com/Tobion"
  8733. },
  8734. {
  8735. "name": "Márk Sági-Kazár",
  8736. "email": "mark.sagikazar@gmail.com",
  8737. "homepage": "https://sagikazarmark.hu"
  8738. }
  8739. ],
  8740. "description": "PSR-7 message implementation that also provides common utility methods",
  8741. "keywords": [
  8742. "http",
  8743. "message",
  8744. "psr-7",
  8745. "request",
  8746. "response",
  8747. "stream",
  8748. "uri",
  8749. "url"
  8750. ],
  8751. "support": {
  8752. "issues": "https://github.com/guzzle/psr7/issues",
  8753. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  8754. },
  8755. "funding": [
  8756. {
  8757. "url": "https://github.com/GrahamCampbell",
  8758. "type": "github"
  8759. },
  8760. {
  8761. "url": "https://github.com/Nyholm",
  8762. "type": "github"
  8763. },
  8764. {
  8765. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8766. "type": "tidelift"
  8767. }
  8768. ],
  8769. "time": "2025-08-23T21:21:41+00:00"
  8770. },
  8771. {
  8772. "name": "itamair/geophp",
  8773. "version": "1.10",
  8774. "source": {
  8775. "type": "git",
  8776. "url": "https://github.com/itamair/geoPHP.git",
  8777. "reference": "7403410f7252e4d0ce128a705ba8b40613195e16"
  8778. },
  8779. "dist": {
  8780. "type": "zip",
  8781. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/7403410f7252e4d0ce128a705ba8b40613195e16",
  8782. "reference": "7403410f7252e4d0ce128a705ba8b40613195e16",
  8783. "shasum": ""
  8784. },
  8785. "require-dev": {
  8786. "phpunit/phpunit": "4.1.* || 9.5.*"
  8787. },
  8788. "type": "library",
  8789. "autoload": {
  8790. "classmap": [
  8791. "geoPHP.inc"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "GPL-2.0+"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Italo Mairo",
  8801. "homepage": "https://www.linkedin.com/in/italomairo/",
  8802. "role": "Maintanier of this Library Repo"
  8803. },
  8804. {
  8805. "name": "Patrick Hayes",
  8806. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8807. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8808. }
  8809. ],
  8810. "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.",
  8811. "homepage": "https://github.com/itamair/geoPHP",
  8812. "support": {
  8813. "issues": "https://github.com/itamair/geoPHP/issues",
  8814. "source": "https://github.com/itamair/geoPHP/tree/1.10"
  8815. },
  8816. "time": "2026-03-09T17:22:59+00:00"
  8817. },
  8818. {
  8819. "name": "kint-php/kint",
  8820. "version": "3.3",
  8821. "source": {
  8822. "type": "git",
  8823. "url": "https://github.com/kint-php/kint.git",
  8824. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8825. },
  8826. "dist": {
  8827. "type": "zip",
  8828. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8829. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8830. "shasum": ""
  8831. },
  8832. "require": {
  8833. "php": ">=5.3.6"
  8834. },
  8835. "require-dev": {
  8836. "friendsofphp/php-cs-fixer": "^2.0",
  8837. "phpunit/phpunit": "^4.0",
  8838. "seld/phar-utils": "^1.0",
  8839. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8840. "vimeo/psalm": "^3.0"
  8841. },
  8842. "suggest": {
  8843. "ext-ctype": "Simple data type tests",
  8844. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8845. "ext-mbstring": "Provides string encoding detection",
  8846. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8847. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8848. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8849. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8850. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8851. },
  8852. "type": "library",
  8853. "autoload": {
  8854. "files": [
  8855. "init.php"
  8856. ],
  8857. "psr-4": {
  8858. "Kint\\": "src/"
  8859. }
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "MIT"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Jonathan Vollebregt",
  8868. "homepage": "https://github.com/jnvsor"
  8869. },
  8870. {
  8871. "name": "Rokas Šleinius",
  8872. "homepage": "https://github.com/raveren"
  8873. },
  8874. {
  8875. "name": "Contributors",
  8876. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8877. }
  8878. ],
  8879. "description": "Kint - debugging tool for PHP developers",
  8880. "homepage": "https://kint-php.github.io/kint/",
  8881. "keywords": [
  8882. "debug",
  8883. "kint",
  8884. "php"
  8885. ],
  8886. "support": {
  8887. "issues": "https://github.com/kint-php/kint/issues",
  8888. "source": "https://github.com/kint-php/kint/tree/master"
  8889. },
  8890. "time": "2019-10-17T18:05:24+00:00"
  8891. },
  8892. {
  8893. "name": "laravel/prompts",
  8894. "version": "v0.3.13",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/laravel/prompts.git",
  8898. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d",
  8903. "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "composer-runtime-api": "^2.2",
  8908. "ext-mbstring": "*",
  8909. "php": "^8.1",
  8910. "symfony/console": "^6.2|^7.0|^8.0"
  8911. },
  8912. "conflict": {
  8913. "illuminate/console": ">=10.17.0 <10.25.0",
  8914. "laravel/framework": ">=10.17.0 <10.25.0"
  8915. },
  8916. "require-dev": {
  8917. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  8918. "mockery/mockery": "^1.5",
  8919. "pestphp/pest": "^2.3|^3.4|^4.0",
  8920. "phpstan/phpstan": "^1.12.28",
  8921. "phpstan/phpstan-mockery": "^1.1.3"
  8922. },
  8923. "suggest": {
  8924. "ext-pcntl": "Required for the spinner to be animated."
  8925. },
  8926. "type": "library",
  8927. "extra": {
  8928. "branch-alias": {
  8929. "dev-main": "0.3.x-dev"
  8930. }
  8931. },
  8932. "autoload": {
  8933. "files": [
  8934. "src/helpers.php"
  8935. ],
  8936. "psr-4": {
  8937. "Laravel\\Prompts\\": "src/"
  8938. }
  8939. },
  8940. "notification-url": "https://packagist.org/downloads/",
  8941. "license": [
  8942. "MIT"
  8943. ],
  8944. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  8945. "support": {
  8946. "issues": "https://github.com/laravel/prompts/issues",
  8947. "source": "https://github.com/laravel/prompts/tree/v0.3.13"
  8948. },
  8949. "time": "2026-02-06T12:17:10+00:00"
  8950. },
  8951. {
  8952. "name": "league/container",
  8953. "version": "4.2.5",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/thephpleague/container.git",
  8957. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8962. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  8963. "shasum": ""
  8964. },
  8965. "require": {
  8966. "php": "^7.2 || ^8.0",
  8967. "psr/container": "^1.1 || ^2.0"
  8968. },
  8969. "provide": {
  8970. "psr/container-implementation": "^1.0"
  8971. },
  8972. "replace": {
  8973. "orno/di": "~2.0"
  8974. },
  8975. "require-dev": {
  8976. "nette/php-generator": "^3.4",
  8977. "nikic/php-parser": "^4.10",
  8978. "phpstan/phpstan": "^0.12.47",
  8979. "phpunit/phpunit": "^8.5.17",
  8980. "roave/security-advisories": "dev-latest",
  8981. "scrutinizer/ocular": "^1.8",
  8982. "squizlabs/php_codesniffer": "^3.6"
  8983. },
  8984. "type": "library",
  8985. "extra": {
  8986. "branch-alias": {
  8987. "dev-1.x": "1.x-dev",
  8988. "dev-2.x": "2.x-dev",
  8989. "dev-3.x": "3.x-dev",
  8990. "dev-4.x": "4.x-dev",
  8991. "dev-master": "4.x-dev"
  8992. }
  8993. },
  8994. "autoload": {
  8995. "psr-4": {
  8996. "League\\Container\\": "src"
  8997. }
  8998. },
  8999. "notification-url": "https://packagist.org/downloads/",
  9000. "license": [
  9001. "MIT"
  9002. ],
  9003. "authors": [
  9004. {
  9005. "name": "Phil Bennett",
  9006. "email": "mail@philbennett.co.uk",
  9007. "role": "Developer"
  9008. }
  9009. ],
  9010. "description": "A fast and intuitive dependency injection container.",
  9011. "homepage": "https://github.com/thephpleague/container",
  9012. "keywords": [
  9013. "container",
  9014. "dependency",
  9015. "di",
  9016. "injection",
  9017. "league",
  9018. "provider",
  9019. "service"
  9020. ],
  9021. "support": {
  9022. "issues": "https://github.com/thephpleague/container/issues",
  9023. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9024. },
  9025. "funding": [
  9026. {
  9027. "url": "https://github.com/philipobenito",
  9028. "type": "github"
  9029. }
  9030. ],
  9031. "time": "2025-05-20T12:55:37+00:00"
  9032. },
  9033. {
  9034. "name": "masterminds/html5",
  9035. "version": "2.10.0",
  9036. "source": {
  9037. "type": "git",
  9038. "url": "https://github.com/Masterminds/html5-php.git",
  9039. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  9040. },
  9041. "dist": {
  9042. "type": "zip",
  9043. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  9044. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  9045. "shasum": ""
  9046. },
  9047. "require": {
  9048. "ext-dom": "*",
  9049. "php": ">=5.3.0"
  9050. },
  9051. "require-dev": {
  9052. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9053. },
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "2.7-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "psr-4": {
  9062. "Masterminds\\": "src"
  9063. }
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "MIT"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Matt Butcher",
  9072. "email": "technosophos@gmail.com"
  9073. },
  9074. {
  9075. "name": "Matt Farina",
  9076. "email": "matt@mattfarina.com"
  9077. },
  9078. {
  9079. "name": "Asmir Mustafic",
  9080. "email": "goetas@gmail.com"
  9081. }
  9082. ],
  9083. "description": "An HTML5 parser and serializer.",
  9084. "homepage": "http://masterminds.github.io/html5-php",
  9085. "keywords": [
  9086. "HTML5",
  9087. "dom",
  9088. "html",
  9089. "parser",
  9090. "querypath",
  9091. "serializer",
  9092. "xml"
  9093. ],
  9094. "support": {
  9095. "issues": "https://github.com/Masterminds/html5-php/issues",
  9096. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  9097. },
  9098. "time": "2025-07-25T09:04:22+00:00"
  9099. },
  9100. {
  9101. "name": "mck89/peast",
  9102. "version": "v1.17.4",
  9103. "source": {
  9104. "type": "git",
  9105. "url": "https://github.com/mck89/peast.git",
  9106. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d"
  9107. },
  9108. "dist": {
  9109. "type": "zip",
  9110. "url": "https://api.github.com/repos/mck89/peast/zipball/c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9111. "reference": "c6a63f32410d2e4ee2cd20fe94b35af147fb852d",
  9112. "shasum": ""
  9113. },
  9114. "require": {
  9115. "ext-mbstring": "*",
  9116. "php": ">=5.4.0"
  9117. },
  9118. "require-dev": {
  9119. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9120. },
  9121. "type": "library",
  9122. "extra": {
  9123. "branch-alias": {
  9124. "dev-master": "1.17.4-dev"
  9125. }
  9126. },
  9127. "autoload": {
  9128. "psr-4": {
  9129. "Peast\\": "lib/Peast/"
  9130. }
  9131. },
  9132. "notification-url": "https://packagist.org/downloads/",
  9133. "license": [
  9134. "BSD-3-Clause"
  9135. ],
  9136. "authors": [
  9137. {
  9138. "name": "Marco Marchiò",
  9139. "email": "marco.mm89@gmail.com"
  9140. }
  9141. ],
  9142. "description": "Peast is PHP library that generates AST for JavaScript code",
  9143. "support": {
  9144. "issues": "https://github.com/mck89/peast/issues",
  9145. "source": "https://github.com/mck89/peast/tree/v1.17.4"
  9146. },
  9147. "time": "2025-10-10T12:53:17+00:00"
  9148. },
  9149. {
  9150. "name": "mglaman/phpstan-drupal",
  9151. "version": "2.0.7",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9155. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e",
  9160. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": "^8.1",
  9165. "phpstan/phpstan": "^2.1",
  9166. "phpstan/phpstan-deprecation-rules": "^2.0",
  9167. "symfony/finder": "^6.2 || ^7.0",
  9168. "symfony/yaml": "^6.2 || ^7.0",
  9169. "webflo/drupal-finder": "^1.3.1"
  9170. },
  9171. "require-dev": {
  9172. "behat/mink": "^1.10",
  9173. "composer/installers": "^1.9",
  9174. "drupal/core-recommended": "^10",
  9175. "drush/drush": "^11 || ^12 || ^13",
  9176. "phpstan/extension-installer": "^1.4.3",
  9177. "phpstan/phpstan-strict-rules": "^2.0",
  9178. "phpunit/phpunit": "^9 || ^10 || ^11",
  9179. "slevomat/coding-standard": "^8.6",
  9180. "squizlabs/php_codesniffer": "^3.7",
  9181. "symfony/phpunit-bridge": "^6.2 || ^7.0"
  9182. },
  9183. "suggest": {
  9184. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9185. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9186. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9187. },
  9188. "type": "phpstan-extension",
  9189. "extra": {
  9190. "phpstan": {
  9191. "includes": [
  9192. "extension.neon",
  9193. "rules.neon"
  9194. ]
  9195. },
  9196. "installer-paths": {
  9197. "tests/fixtures/drupal/core": [
  9198. "type:drupal-core"
  9199. ],
  9200. "tests/fixtures/drupal/libraries/{$name}": [
  9201. "type:drupal-library"
  9202. ],
  9203. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9204. "type:drupal-theme"
  9205. ],
  9206. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9207. "type:drupal-module"
  9208. ],
  9209. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9210. "type:drupal-profile"
  9211. ]
  9212. }
  9213. },
  9214. "autoload": {
  9215. "psr-4": {
  9216. "mglaman\\PHPStanDrupal\\": "src/"
  9217. }
  9218. },
  9219. "notification-url": "https://packagist.org/downloads/",
  9220. "license": [
  9221. "MIT"
  9222. ],
  9223. "authors": [
  9224. {
  9225. "name": "Matt Glaman",
  9226. "email": "nmd.matt@gmail.com"
  9227. }
  9228. ],
  9229. "description": "Drupal extension and rules for PHPStan",
  9230. "support": {
  9231. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9232. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.7"
  9233. },
  9234. "funding": [
  9235. {
  9236. "url": "https://github.com/mglaman",
  9237. "type": "github"
  9238. },
  9239. {
  9240. "url": "https://opencollective.com/phpstan-drupal",
  9241. "type": "open_collective"
  9242. },
  9243. {
  9244. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9245. "type": "tidelift"
  9246. }
  9247. ],
  9248. "time": "2025-05-22T18:06:14+00:00"
  9249. },
  9250. {
  9251. "name": "nikic/php-parser",
  9252. "version": "v5.7.0",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/nikic/PHP-Parser.git",
  9256. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9261. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "ext-ctype": "*",
  9266. "ext-json": "*",
  9267. "ext-tokenizer": "*",
  9268. "php": ">=7.4"
  9269. },
  9270. "require-dev": {
  9271. "ircmaxell/php-yacc": "^0.0.7",
  9272. "phpunit/phpunit": "^9.0"
  9273. },
  9274. "bin": [
  9275. "bin/php-parse"
  9276. ],
  9277. "type": "library",
  9278. "extra": {
  9279. "branch-alias": {
  9280. "dev-master": "5.x-dev"
  9281. }
  9282. },
  9283. "autoload": {
  9284. "psr-4": {
  9285. "PhpParser\\": "lib/PhpParser"
  9286. }
  9287. },
  9288. "notification-url": "https://packagist.org/downloads/",
  9289. "license": [
  9290. "BSD-3-Clause"
  9291. ],
  9292. "authors": [
  9293. {
  9294. "name": "Nikita Popov"
  9295. }
  9296. ],
  9297. "description": "A PHP parser written in PHP",
  9298. "keywords": [
  9299. "parser",
  9300. "php"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9304. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  9305. },
  9306. "time": "2025-12-06T11:56:16+00:00"
  9307. },
  9308. {
  9309. "name": "pear/archive_tar",
  9310. "version": "1.6.0",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/pear/Archive_Tar.git",
  9314. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9319. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "pear/pear-core-minimal": "^1.10.0alpha2",
  9324. "php": ">=5.4.0"
  9325. },
  9326. "require-dev": {
  9327. "phpunit/phpunit": "*"
  9328. },
  9329. "suggest": {
  9330. "ext-bz2": "Bz2 compression support.",
  9331. "ext-xz": "Lzma2 compression support.",
  9332. "ext-zlib": "Gzip compression support."
  9333. },
  9334. "type": "library",
  9335. "extra": {
  9336. "branch-alias": {
  9337. "dev-master": "1.4.x-dev"
  9338. }
  9339. },
  9340. "autoload": {
  9341. "psr-0": {
  9342. "Archive_Tar": ""
  9343. }
  9344. },
  9345. "notification-url": "https://packagist.org/downloads/",
  9346. "include-path": [
  9347. "./"
  9348. ],
  9349. "license": [
  9350. "BSD-2-Clause"
  9351. ],
  9352. "authors": [
  9353. {
  9354. "name": "Vincent Blavet",
  9355. "email": "vincent@phpconcept.net"
  9356. },
  9357. {
  9358. "name": "Greg Beaver",
  9359. "email": "greg@chiaraquartet.net"
  9360. },
  9361. {
  9362. "name": "Michiel Rook",
  9363. "email": "mrook@php.net"
  9364. }
  9365. ],
  9366. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9367. "homepage": "https://github.com/pear/Archive_Tar",
  9368. "keywords": [
  9369. "archive",
  9370. "tar"
  9371. ],
  9372. "support": {
  9373. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9374. "source": "https://github.com/pear/Archive_Tar"
  9375. },
  9376. "time": "2025-07-19T14:49:16+00:00"
  9377. },
  9378. {
  9379. "name": "pear/console_getopt",
  9380. "version": "v1.4.3",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/pear/Console_Getopt.git",
  9384. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9389. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9390. "shasum": ""
  9391. },
  9392. "type": "library",
  9393. "autoload": {
  9394. "psr-0": {
  9395. "Console": "./"
  9396. }
  9397. },
  9398. "notification-url": "https://packagist.org/downloads/",
  9399. "include-path": [
  9400. "./"
  9401. ],
  9402. "license": [
  9403. "BSD-2-Clause"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "Andrei Zmievski",
  9408. "email": "andrei@php.net",
  9409. "role": "Lead"
  9410. },
  9411. {
  9412. "name": "Stig Bakken",
  9413. "email": "stig@php.net",
  9414. "role": "Developer"
  9415. },
  9416. {
  9417. "name": "Greg Beaver",
  9418. "email": "cellog@php.net",
  9419. "role": "Helper"
  9420. }
  9421. ],
  9422. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9423. "support": {
  9424. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9425. "source": "https://github.com/pear/Console_Getopt"
  9426. },
  9427. "abandoned": true,
  9428. "time": "2019-11-20T18:27:48+00:00"
  9429. },
  9430. {
  9431. "name": "pear/pear-core-minimal",
  9432. "version": "v1.10.18",
  9433. "source": {
  9434. "type": "git",
  9435. "url": "https://github.com/pear/pear-core-minimal.git",
  9436. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  9437. },
  9438. "dist": {
  9439. "type": "zip",
  9440. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9441. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  9442. "shasum": ""
  9443. },
  9444. "require": {
  9445. "pear/console_getopt": "~1.4",
  9446. "pear/pear_exception": "~1.0",
  9447. "php": ">=5.4"
  9448. },
  9449. "replace": {
  9450. "rsky/pear-core-min": "self.version"
  9451. },
  9452. "type": "library",
  9453. "autoload": {
  9454. "classmap": [
  9455. "src/"
  9456. ]
  9457. },
  9458. "notification-url": "https://packagist.org/downloads/",
  9459. "include-path": [
  9460. "src/"
  9461. ],
  9462. "license": [
  9463. "BSD-3-Clause"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Christian Weiske",
  9468. "email": "cweiske@php.net",
  9469. "role": "Lead"
  9470. }
  9471. ],
  9472. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9473. "support": {
  9474. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9475. "source": "https://github.com/pear/pear-core-minimal"
  9476. },
  9477. "time": "2025-12-14T20:37:07+00:00"
  9478. },
  9479. {
  9480. "name": "pear/pear_exception",
  9481. "version": "v1.0.2",
  9482. "source": {
  9483. "type": "git",
  9484. "url": "https://github.com/pear/PEAR_Exception.git",
  9485. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9486. },
  9487. "dist": {
  9488. "type": "zip",
  9489. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9490. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9491. "shasum": ""
  9492. },
  9493. "require": {
  9494. "php": ">=5.2.0"
  9495. },
  9496. "require-dev": {
  9497. "phpunit/phpunit": "<9"
  9498. },
  9499. "type": "class",
  9500. "extra": {
  9501. "branch-alias": {
  9502. "dev-master": "1.0.x-dev"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "classmap": [
  9507. "PEAR/"
  9508. ]
  9509. },
  9510. "notification-url": "https://packagist.org/downloads/",
  9511. "include-path": [
  9512. "."
  9513. ],
  9514. "license": [
  9515. "BSD-2-Clause"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Helgi Thormar",
  9520. "email": "dufuz@php.net"
  9521. },
  9522. {
  9523. "name": "Greg Beaver",
  9524. "email": "cellog@php.net"
  9525. }
  9526. ],
  9527. "description": "The PEAR Exception base class.",
  9528. "homepage": "https://github.com/pear/PEAR_Exception",
  9529. "keywords": [
  9530. "exception"
  9531. ],
  9532. "support": {
  9533. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9534. "source": "https://github.com/pear/PEAR_Exception"
  9535. },
  9536. "time": "2021-03-21T15:43:46+00:00"
  9537. },
  9538. {
  9539. "name": "phootwork/collection",
  9540. "version": "v3.2.3",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/phootwork/collection.git",
  9544. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9549. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9550. "shasum": ""
  9551. },
  9552. "require": {
  9553. "phootwork/lang": "^3.0",
  9554. "php": ">=8.0"
  9555. },
  9556. "type": "library",
  9557. "autoload": {
  9558. "psr-4": {
  9559. "phootwork\\collection\\": ""
  9560. }
  9561. },
  9562. "notification-url": "https://packagist.org/downloads/",
  9563. "license": [
  9564. "MIT"
  9565. ],
  9566. "authors": [
  9567. {
  9568. "name": "Thomas Gossmann",
  9569. "homepage": "http://gos.si"
  9570. }
  9571. ],
  9572. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9573. "homepage": "https://phootwork.github.io/collection/",
  9574. "keywords": [
  9575. "Array object",
  9576. "Text object",
  9577. "collection",
  9578. "collections",
  9579. "json",
  9580. "list",
  9581. "map",
  9582. "queue",
  9583. "set",
  9584. "stack",
  9585. "xml"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/phootwork/phootwork/issues",
  9589. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9590. },
  9591. "time": "2022-08-27T12:51:24+00:00"
  9592. },
  9593. {
  9594. "name": "phootwork/lang",
  9595. "version": "v3.2.3",
  9596. "source": {
  9597. "type": "git",
  9598. "url": "https://github.com/phootwork/lang.git",
  9599. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9600. },
  9601. "dist": {
  9602. "type": "zip",
  9603. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9604. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9605. "shasum": ""
  9606. },
  9607. "require": {
  9608. "php": ">=8.0",
  9609. "symfony/polyfill-mbstring": "^1.12",
  9610. "symfony/polyfill-php81": "^1.22"
  9611. },
  9612. "type": "library",
  9613. "autoload": {
  9614. "psr-4": {
  9615. "phootwork\\lang\\": ""
  9616. }
  9617. },
  9618. "notification-url": "https://packagist.org/downloads/",
  9619. "license": [
  9620. "MIT"
  9621. ],
  9622. "authors": [
  9623. {
  9624. "name": "Thomas Gossmann",
  9625. "homepage": "http://gos.si"
  9626. }
  9627. ],
  9628. "description": "Missing PHP language constructs",
  9629. "homepage": "https://phootwork.github.io/lang/",
  9630. "keywords": [
  9631. "array",
  9632. "comparator",
  9633. "comparison",
  9634. "string"
  9635. ],
  9636. "support": {
  9637. "issues": "https://github.com/phootwork/phootwork/issues",
  9638. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9639. },
  9640. "time": "2024-10-03T13:43:19+00:00"
  9641. },
  9642. {
  9643. "name": "php-http/discovery",
  9644. "version": "1.20.0",
  9645. "source": {
  9646. "type": "git",
  9647. "url": "https://github.com/php-http/discovery.git",
  9648. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9649. },
  9650. "dist": {
  9651. "type": "zip",
  9652. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9653. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9654. "shasum": ""
  9655. },
  9656. "require": {
  9657. "composer-plugin-api": "^1.0|^2.0",
  9658. "php": "^7.1 || ^8.0"
  9659. },
  9660. "conflict": {
  9661. "nyholm/psr7": "<1.0",
  9662. "zendframework/zend-diactoros": "*"
  9663. },
  9664. "provide": {
  9665. "php-http/async-client-implementation": "*",
  9666. "php-http/client-implementation": "*",
  9667. "psr/http-client-implementation": "*",
  9668. "psr/http-factory-implementation": "*",
  9669. "psr/http-message-implementation": "*"
  9670. },
  9671. "require-dev": {
  9672. "composer/composer": "^1.0.2|^2.0",
  9673. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9674. "php-http/httplug": "^1.0 || ^2.0",
  9675. "php-http/message-factory": "^1.0",
  9676. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9677. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9678. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9679. },
  9680. "type": "composer-plugin",
  9681. "extra": {
  9682. "class": "Http\\Discovery\\Composer\\Plugin",
  9683. "plugin-optional": true
  9684. },
  9685. "autoload": {
  9686. "psr-4": {
  9687. "Http\\Discovery\\": "src/"
  9688. },
  9689. "exclude-from-classmap": [
  9690. "src/Composer/Plugin.php"
  9691. ]
  9692. },
  9693. "notification-url": "https://packagist.org/downloads/",
  9694. "license": [
  9695. "MIT"
  9696. ],
  9697. "authors": [
  9698. {
  9699. "name": "Márk Sági-Kazár",
  9700. "email": "mark.sagikazar@gmail.com"
  9701. }
  9702. ],
  9703. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9704. "homepage": "http://php-http.org",
  9705. "keywords": [
  9706. "adapter",
  9707. "client",
  9708. "discovery",
  9709. "factory",
  9710. "http",
  9711. "message",
  9712. "psr17",
  9713. "psr7"
  9714. ],
  9715. "support": {
  9716. "issues": "https://github.com/php-http/discovery/issues",
  9717. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9718. },
  9719. "time": "2024-10-02T11:20:13+00:00"
  9720. },
  9721. {
  9722. "name": "php-http/guzzle7-adapter",
  9723. "version": "1.1.0",
  9724. "source": {
  9725. "type": "git",
  9726. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9727. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9728. },
  9729. "dist": {
  9730. "type": "zip",
  9731. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9732. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9733. "shasum": ""
  9734. },
  9735. "require": {
  9736. "guzzlehttp/guzzle": "^7.0",
  9737. "php": "^7.3 | ^8.0",
  9738. "php-http/httplug": "^2.0",
  9739. "psr/http-client": "^1.0"
  9740. },
  9741. "provide": {
  9742. "php-http/async-client-implementation": "1.0",
  9743. "php-http/client-implementation": "1.0",
  9744. "psr/http-client-implementation": "1.0"
  9745. },
  9746. "require-dev": {
  9747. "php-http/client-integration-tests": "^3.0",
  9748. "php-http/message-factory": "^1.1",
  9749. "phpspec/prophecy-phpunit": "^2.0",
  9750. "phpunit/phpunit": "^8.0|^9.3"
  9751. },
  9752. "type": "library",
  9753. "autoload": {
  9754. "psr-4": {
  9755. "Http\\Adapter\\Guzzle7\\": "src/"
  9756. }
  9757. },
  9758. "notification-url": "https://packagist.org/downloads/",
  9759. "license": [
  9760. "MIT"
  9761. ],
  9762. "authors": [
  9763. {
  9764. "name": "Tobias Nyholm",
  9765. "email": "tobias.nyholm@gmail.com"
  9766. }
  9767. ],
  9768. "description": "Guzzle 7 HTTP Adapter",
  9769. "homepage": "http://httplug.io",
  9770. "keywords": [
  9771. "Guzzle",
  9772. "http"
  9773. ],
  9774. "support": {
  9775. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9776. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9777. },
  9778. "time": "2024-11-26T11:14:36+00:00"
  9779. },
  9780. {
  9781. "name": "php-http/httplug",
  9782. "version": "2.4.1",
  9783. "source": {
  9784. "type": "git",
  9785. "url": "https://github.com/php-http/httplug.git",
  9786. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9787. },
  9788. "dist": {
  9789. "type": "zip",
  9790. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9791. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9792. "shasum": ""
  9793. },
  9794. "require": {
  9795. "php": "^7.1 || ^8.0",
  9796. "php-http/promise": "^1.1",
  9797. "psr/http-client": "^1.0",
  9798. "psr/http-message": "^1.0 || ^2.0"
  9799. },
  9800. "require-dev": {
  9801. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9802. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9803. },
  9804. "type": "library",
  9805. "autoload": {
  9806. "psr-4": {
  9807. "Http\\Client\\": "src/"
  9808. }
  9809. },
  9810. "notification-url": "https://packagist.org/downloads/",
  9811. "license": [
  9812. "MIT"
  9813. ],
  9814. "authors": [
  9815. {
  9816. "name": "Eric GELOEN",
  9817. "email": "geloen.eric@gmail.com"
  9818. },
  9819. {
  9820. "name": "Márk Sági-Kazár",
  9821. "email": "mark.sagikazar@gmail.com",
  9822. "homepage": "https://sagikazarmark.hu"
  9823. }
  9824. ],
  9825. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9826. "homepage": "http://httplug.io",
  9827. "keywords": [
  9828. "client",
  9829. "http"
  9830. ],
  9831. "support": {
  9832. "issues": "https://github.com/php-http/httplug/issues",
  9833. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9834. },
  9835. "time": "2024-09-23T11:39:58+00:00"
  9836. },
  9837. {
  9838. "name": "php-http/message",
  9839. "version": "1.16.2",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/php-http/message.git",
  9843. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9848. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9849. "shasum": ""
  9850. },
  9851. "require": {
  9852. "clue/stream-filter": "^1.5",
  9853. "php": "^7.2 || ^8.0",
  9854. "psr/http-message": "^1.1 || ^2.0"
  9855. },
  9856. "provide": {
  9857. "php-http/message-factory-implementation": "1.0"
  9858. },
  9859. "require-dev": {
  9860. "ergebnis/composer-normalize": "^2.6",
  9861. "ext-zlib": "*",
  9862. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9863. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9864. "php-http/message-factory": "^1.0.2",
  9865. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9866. "slim/slim": "^3.0"
  9867. },
  9868. "suggest": {
  9869. "ext-zlib": "Used with compressor/decompressor streams",
  9870. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9871. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9872. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9873. },
  9874. "type": "library",
  9875. "autoload": {
  9876. "files": [
  9877. "src/filters.php"
  9878. ],
  9879. "psr-4": {
  9880. "Http\\Message\\": "src/"
  9881. }
  9882. },
  9883. "notification-url": "https://packagist.org/downloads/",
  9884. "license": [
  9885. "MIT"
  9886. ],
  9887. "authors": [
  9888. {
  9889. "name": "Márk Sági-Kazár",
  9890. "email": "mark.sagikazar@gmail.com"
  9891. }
  9892. ],
  9893. "description": "HTTP Message related tools",
  9894. "homepage": "http://php-http.org",
  9895. "keywords": [
  9896. "http",
  9897. "message",
  9898. "psr-7"
  9899. ],
  9900. "support": {
  9901. "issues": "https://github.com/php-http/message/issues",
  9902. "source": "https://github.com/php-http/message/tree/1.16.2"
  9903. },
  9904. "time": "2024-10-02T11:34:13+00:00"
  9905. },
  9906. {
  9907. "name": "php-http/promise",
  9908. "version": "1.3.1",
  9909. "source": {
  9910. "type": "git",
  9911. "url": "https://github.com/php-http/promise.git",
  9912. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9913. },
  9914. "dist": {
  9915. "type": "zip",
  9916. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9917. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9918. "shasum": ""
  9919. },
  9920. "require": {
  9921. "php": "^7.1 || ^8.0"
  9922. },
  9923. "require-dev": {
  9924. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9925. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9926. },
  9927. "type": "library",
  9928. "autoload": {
  9929. "psr-4": {
  9930. "Http\\Promise\\": "src/"
  9931. }
  9932. },
  9933. "notification-url": "https://packagist.org/downloads/",
  9934. "license": [
  9935. "MIT"
  9936. ],
  9937. "authors": [
  9938. {
  9939. "name": "Joel Wurtz",
  9940. "email": "joel.wurtz@gmail.com"
  9941. },
  9942. {
  9943. "name": "Márk Sági-Kazár",
  9944. "email": "mark.sagikazar@gmail.com"
  9945. }
  9946. ],
  9947. "description": "Promise used for asynchronous HTTP requests",
  9948. "homepage": "http://httplug.io",
  9949. "keywords": [
  9950. "promise"
  9951. ],
  9952. "support": {
  9953. "issues": "https://github.com/php-http/promise/issues",
  9954. "source": "https://github.com/php-http/promise/tree/1.3.1"
  9955. },
  9956. "time": "2024-03-15T13:55:21+00:00"
  9957. },
  9958. {
  9959. "name": "phpmailer/phpmailer",
  9960. "version": "v6.10.0",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9964. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9969. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "ext-ctype": "*",
  9974. "ext-filter": "*",
  9975. "ext-hash": "*",
  9976. "php": ">=5.5.0"
  9977. },
  9978. "require-dev": {
  9979. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9980. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9981. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9982. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9983. "phpcompatibility/php-compatibility": "^9.3.5",
  9984. "roave/security-advisories": "dev-latest",
  9985. "squizlabs/php_codesniffer": "^3.7.2",
  9986. "yoast/phpunit-polyfills": "^1.0.4"
  9987. },
  9988. "suggest": {
  9989. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  9990. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9991. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9992. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9993. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9994. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9995. "psr/log": "For optional PSR-3 debug logging",
  9996. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9997. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9998. },
  9999. "type": "library",
  10000. "autoload": {
  10001. "psr-4": {
  10002. "PHPMailer\\PHPMailer\\": "src/"
  10003. }
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "LGPL-2.1-only"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Marcus Bointon",
  10012. "email": "phpmailer@synchromedia.co.uk"
  10013. },
  10014. {
  10015. "name": "Jim Jagielski",
  10016. "email": "jimjag@gmail.com"
  10017. },
  10018. {
  10019. "name": "Andy Prevost",
  10020. "email": "codeworxtech@users.sourceforge.net"
  10021. },
  10022. {
  10023. "name": "Brent R. Matzelle"
  10024. }
  10025. ],
  10026. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10027. "support": {
  10028. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10029. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10030. },
  10031. "funding": [
  10032. {
  10033. "url": "https://github.com/Synchro",
  10034. "type": "github"
  10035. }
  10036. ],
  10037. "time": "2025-04-24T15:19:31+00:00"
  10038. },
  10039. {
  10040. "name": "phpowermove/docblock",
  10041. "version": "v4.0",
  10042. "source": {
  10043. "type": "git",
  10044. "url": "https://github.com/phpowermove/docblock.git",
  10045. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10046. },
  10047. "dist": {
  10048. "type": "zip",
  10049. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10050. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10051. "shasum": ""
  10052. },
  10053. "require": {
  10054. "phootwork/collection": "^3.0",
  10055. "phootwork/lang": "^3.0",
  10056. "php": ">=8.0"
  10057. },
  10058. "require-dev": {
  10059. "phootwork/php-cs-fixer-config": "^0.4",
  10060. "phpunit/phpunit": "^9.0",
  10061. "psalm/phar": "^4.3"
  10062. },
  10063. "type": "library",
  10064. "autoload": {
  10065. "psr-4": {
  10066. "phpowermove\\docblock\\": "src/"
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Thomas Gossmann",
  10076. "homepage": "http://gos.si"
  10077. }
  10078. ],
  10079. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10080. "keywords": [
  10081. "docblock",
  10082. "generator",
  10083. "parser"
  10084. ],
  10085. "support": {
  10086. "issues": "https://github.com/phpowermove/docblock/issues",
  10087. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10088. },
  10089. "time": "2021-09-22T16:57:06+00:00"
  10090. },
  10091. {
  10092. "name": "phpstan/phpstan",
  10093. "version": "2.1.19",
  10094. "source": {
  10095. "type": "git",
  10096. "url": "https://github.com/phpstan/phpstan.git",
  10097. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf"
  10098. },
  10099. "dist": {
  10100. "type": "zip",
  10101. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf",
  10102. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf",
  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": "2025-07-21T19:58:24+00:00"
  10148. },
  10149. {
  10150. "name": "phpstan/phpstan-deprecation-rules",
  10151. "version": "2.0.3",
  10152. "source": {
  10153. "type": "git",
  10154. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10155. "reference": "468e02c9176891cc901143da118f09dc9505fc2f"
  10156. },
  10157. "dist": {
  10158. "type": "zip",
  10159. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f",
  10160. "reference": "468e02c9176891cc901143da118f09dc9505fc2f",
  10161. "shasum": ""
  10162. },
  10163. "require": {
  10164. "php": "^7.4 || ^8.0",
  10165. "phpstan/phpstan": "^2.1.15"
  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. "support": {
  10191. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10192. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3"
  10193. },
  10194. "time": "2025-05-14T10:56:57+00:00"
  10195. },
  10196. {
  10197. "name": "politsin/jquery-ui-touch-punch",
  10198. "version": "1.0",
  10199. "source": {
  10200. "type": "git",
  10201. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10202. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10203. },
  10204. "dist": {
  10205. "type": "zip",
  10206. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10207. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10208. "shasum": ""
  10209. },
  10210. "type": "drupal-library",
  10211. "notification-url": "https://packagist.org/downloads/",
  10212. "license": [
  10213. "MIT"
  10214. ],
  10215. "authors": [
  10216. {
  10217. "name": "Dave Furfero",
  10218. "email": "furf@furf.com"
  10219. }
  10220. ],
  10221. "description": "Extension to jQuery UI for mobile touch event support.",
  10222. "homepage": "http://touchpunch.furf.com/",
  10223. "keywords": [
  10224. "gestures",
  10225. "mobile",
  10226. "touch"
  10227. ],
  10228. "support": {
  10229. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10230. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10231. },
  10232. "time": "2020-12-15T10:26:18+00:00"
  10233. },
  10234. {
  10235. "name": "psr/cache",
  10236. "version": "3.0.0",
  10237. "source": {
  10238. "type": "git",
  10239. "url": "https://github.com/php-fig/cache.git",
  10240. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10241. },
  10242. "dist": {
  10243. "type": "zip",
  10244. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10245. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10246. "shasum": ""
  10247. },
  10248. "require": {
  10249. "php": ">=8.0.0"
  10250. },
  10251. "type": "library",
  10252. "extra": {
  10253. "branch-alias": {
  10254. "dev-master": "1.0.x-dev"
  10255. }
  10256. },
  10257. "autoload": {
  10258. "psr-4": {
  10259. "Psr\\Cache\\": "src/"
  10260. }
  10261. },
  10262. "notification-url": "https://packagist.org/downloads/",
  10263. "license": [
  10264. "MIT"
  10265. ],
  10266. "authors": [
  10267. {
  10268. "name": "PHP-FIG",
  10269. "homepage": "https://www.php-fig.org/"
  10270. }
  10271. ],
  10272. "description": "Common interface for caching libraries",
  10273. "keywords": [
  10274. "cache",
  10275. "psr",
  10276. "psr-6"
  10277. ],
  10278. "support": {
  10279. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10280. },
  10281. "time": "2021-02-03T23:26:27+00:00"
  10282. },
  10283. {
  10284. "name": "psr/container",
  10285. "version": "2.0.2",
  10286. "source": {
  10287. "type": "git",
  10288. "url": "https://github.com/php-fig/container.git",
  10289. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10290. },
  10291. "dist": {
  10292. "type": "zip",
  10293. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10294. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10295. "shasum": ""
  10296. },
  10297. "require": {
  10298. "php": ">=7.4.0"
  10299. },
  10300. "type": "library",
  10301. "extra": {
  10302. "branch-alias": {
  10303. "dev-master": "2.0.x-dev"
  10304. }
  10305. },
  10306. "autoload": {
  10307. "psr-4": {
  10308. "Psr\\Container\\": "src/"
  10309. }
  10310. },
  10311. "notification-url": "https://packagist.org/downloads/",
  10312. "license": [
  10313. "MIT"
  10314. ],
  10315. "authors": [
  10316. {
  10317. "name": "PHP-FIG",
  10318. "homepage": "https://www.php-fig.org/"
  10319. }
  10320. ],
  10321. "description": "Common Container Interface (PHP FIG PSR-11)",
  10322. "homepage": "https://github.com/php-fig/container",
  10323. "keywords": [
  10324. "PSR-11",
  10325. "container",
  10326. "container-interface",
  10327. "container-interop",
  10328. "psr"
  10329. ],
  10330. "support": {
  10331. "issues": "https://github.com/php-fig/container/issues",
  10332. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10333. },
  10334. "time": "2021-11-05T16:47:00+00:00"
  10335. },
  10336. {
  10337. "name": "psr/event-dispatcher",
  10338. "version": "1.0.0",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/php-fig/event-dispatcher.git",
  10342. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10347. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10348. "shasum": ""
  10349. },
  10350. "require": {
  10351. "php": ">=7.2.0"
  10352. },
  10353. "type": "library",
  10354. "extra": {
  10355. "branch-alias": {
  10356. "dev-master": "1.0.x-dev"
  10357. }
  10358. },
  10359. "autoload": {
  10360. "psr-4": {
  10361. "Psr\\EventDispatcher\\": "src/"
  10362. }
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "MIT"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "PHP-FIG",
  10371. "homepage": "http://www.php-fig.org/"
  10372. }
  10373. ],
  10374. "description": "Standard interfaces for event handling.",
  10375. "keywords": [
  10376. "events",
  10377. "psr",
  10378. "psr-14"
  10379. ],
  10380. "support": {
  10381. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10382. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10383. },
  10384. "time": "2019-01-08T18:20:26+00:00"
  10385. },
  10386. {
  10387. "name": "psr/http-client",
  10388. "version": "1.0.3",
  10389. "source": {
  10390. "type": "git",
  10391. "url": "https://github.com/php-fig/http-client.git",
  10392. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10393. },
  10394. "dist": {
  10395. "type": "zip",
  10396. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10397. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10398. "shasum": ""
  10399. },
  10400. "require": {
  10401. "php": "^7.0 || ^8.0",
  10402. "psr/http-message": "^1.0 || ^2.0"
  10403. },
  10404. "type": "library",
  10405. "extra": {
  10406. "branch-alias": {
  10407. "dev-master": "1.0.x-dev"
  10408. }
  10409. },
  10410. "autoload": {
  10411. "psr-4": {
  10412. "Psr\\Http\\Client\\": "src/"
  10413. }
  10414. },
  10415. "notification-url": "https://packagist.org/downloads/",
  10416. "license": [
  10417. "MIT"
  10418. ],
  10419. "authors": [
  10420. {
  10421. "name": "PHP-FIG",
  10422. "homepage": "https://www.php-fig.org/"
  10423. }
  10424. ],
  10425. "description": "Common interface for HTTP clients",
  10426. "homepage": "https://github.com/php-fig/http-client",
  10427. "keywords": [
  10428. "http",
  10429. "http-client",
  10430. "psr",
  10431. "psr-18"
  10432. ],
  10433. "support": {
  10434. "source": "https://github.com/php-fig/http-client"
  10435. },
  10436. "time": "2023-09-23T14:17:50+00:00"
  10437. },
  10438. {
  10439. "name": "psr/http-factory",
  10440. "version": "1.1.0",
  10441. "source": {
  10442. "type": "git",
  10443. "url": "https://github.com/php-fig/http-factory.git",
  10444. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10445. },
  10446. "dist": {
  10447. "type": "zip",
  10448. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10449. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10450. "shasum": ""
  10451. },
  10452. "require": {
  10453. "php": ">=7.1",
  10454. "psr/http-message": "^1.0 || ^2.0"
  10455. },
  10456. "type": "library",
  10457. "extra": {
  10458. "branch-alias": {
  10459. "dev-master": "1.0.x-dev"
  10460. }
  10461. },
  10462. "autoload": {
  10463. "psr-4": {
  10464. "Psr\\Http\\Message\\": "src/"
  10465. }
  10466. },
  10467. "notification-url": "https://packagist.org/downloads/",
  10468. "license": [
  10469. "MIT"
  10470. ],
  10471. "authors": [
  10472. {
  10473. "name": "PHP-FIG",
  10474. "homepage": "https://www.php-fig.org/"
  10475. }
  10476. ],
  10477. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10478. "keywords": [
  10479. "factory",
  10480. "http",
  10481. "message",
  10482. "psr",
  10483. "psr-17",
  10484. "psr-7",
  10485. "request",
  10486. "response"
  10487. ],
  10488. "support": {
  10489. "source": "https://github.com/php-fig/http-factory"
  10490. },
  10491. "time": "2024-04-15T12:06:14+00:00"
  10492. },
  10493. {
  10494. "name": "psr/http-message",
  10495. "version": "2.0",
  10496. "source": {
  10497. "type": "git",
  10498. "url": "https://github.com/php-fig/http-message.git",
  10499. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10500. },
  10501. "dist": {
  10502. "type": "zip",
  10503. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10504. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10505. "shasum": ""
  10506. },
  10507. "require": {
  10508. "php": "^7.2 || ^8.0"
  10509. },
  10510. "type": "library",
  10511. "extra": {
  10512. "branch-alias": {
  10513. "dev-master": "2.0.x-dev"
  10514. }
  10515. },
  10516. "autoload": {
  10517. "psr-4": {
  10518. "Psr\\Http\\Message\\": "src/"
  10519. }
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "MIT"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "PHP-FIG",
  10528. "homepage": "https://www.php-fig.org/"
  10529. }
  10530. ],
  10531. "description": "Common interface for HTTP messages",
  10532. "homepage": "https://github.com/php-fig/http-message",
  10533. "keywords": [
  10534. "http",
  10535. "http-message",
  10536. "psr",
  10537. "psr-7",
  10538. "request",
  10539. "response"
  10540. ],
  10541. "support": {
  10542. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10543. },
  10544. "time": "2023-04-04T09:54:51+00:00"
  10545. },
  10546. {
  10547. "name": "psr/log",
  10548. "version": "3.0.2",
  10549. "source": {
  10550. "type": "git",
  10551. "url": "https://github.com/php-fig/log.git",
  10552. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10553. },
  10554. "dist": {
  10555. "type": "zip",
  10556. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10557. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10558. "shasum": ""
  10559. },
  10560. "require": {
  10561. "php": ">=8.0.0"
  10562. },
  10563. "type": "library",
  10564. "extra": {
  10565. "branch-alias": {
  10566. "dev-master": "3.x-dev"
  10567. }
  10568. },
  10569. "autoload": {
  10570. "psr-4": {
  10571. "Psr\\Log\\": "src"
  10572. }
  10573. },
  10574. "notification-url": "https://packagist.org/downloads/",
  10575. "license": [
  10576. "MIT"
  10577. ],
  10578. "authors": [
  10579. {
  10580. "name": "PHP-FIG",
  10581. "homepage": "https://www.php-fig.org/"
  10582. }
  10583. ],
  10584. "description": "Common interface for logging libraries",
  10585. "homepage": "https://github.com/php-fig/log",
  10586. "keywords": [
  10587. "log",
  10588. "psr",
  10589. "psr-3"
  10590. ],
  10591. "support": {
  10592. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10593. },
  10594. "time": "2024-09-11T13:17:53+00:00"
  10595. },
  10596. {
  10597. "name": "psy/psysh",
  10598. "version": "v0.12.21",
  10599. "source": {
  10600. "type": "git",
  10601. "url": "https://github.com/bobthecow/psysh.git",
  10602. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97"
  10603. },
  10604. "dist": {
  10605. "type": "zip",
  10606. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10607. "reference": "4821fab5b7cd8c49a673a9fd5754dc9162bb9e97",
  10608. "shasum": ""
  10609. },
  10610. "require": {
  10611. "ext-json": "*",
  10612. "ext-tokenizer": "*",
  10613. "nikic/php-parser": "^5.0 || ^4.0",
  10614. "php": "^8.0 || ^7.4",
  10615. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10616. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10617. },
  10618. "conflict": {
  10619. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10620. },
  10621. "require-dev": {
  10622. "bamarni/composer-bin-plugin": "^1.2",
  10623. "composer/class-map-generator": "^1.6"
  10624. },
  10625. "suggest": {
  10626. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  10627. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10628. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10629. },
  10630. "bin": [
  10631. "bin/psysh"
  10632. ],
  10633. "type": "library",
  10634. "extra": {
  10635. "bamarni-bin": {
  10636. "bin-links": false,
  10637. "forward-command": false
  10638. },
  10639. "branch-alias": {
  10640. "dev-main": "0.12.x-dev"
  10641. }
  10642. },
  10643. "autoload": {
  10644. "files": [
  10645. "src/functions.php"
  10646. ],
  10647. "psr-4": {
  10648. "Psy\\": "src/"
  10649. }
  10650. },
  10651. "notification-url": "https://packagist.org/downloads/",
  10652. "license": [
  10653. "MIT"
  10654. ],
  10655. "authors": [
  10656. {
  10657. "name": "Justin Hileman",
  10658. "email": "justin@justinhileman.info"
  10659. }
  10660. ],
  10661. "description": "An interactive shell for modern PHP.",
  10662. "homepage": "https://psysh.org",
  10663. "keywords": [
  10664. "REPL",
  10665. "console",
  10666. "interactive",
  10667. "shell"
  10668. ],
  10669. "support": {
  10670. "issues": "https://github.com/bobthecow/psysh/issues",
  10671. "source": "https://github.com/bobthecow/psysh/tree/v0.12.21"
  10672. },
  10673. "time": "2026-03-06T21:21:28+00:00"
  10674. },
  10675. {
  10676. "name": "ralouphie/getallheaders",
  10677. "version": "3.0.3",
  10678. "source": {
  10679. "type": "git",
  10680. "url": "https://github.com/ralouphie/getallheaders.git",
  10681. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10682. },
  10683. "dist": {
  10684. "type": "zip",
  10685. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10686. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10687. "shasum": ""
  10688. },
  10689. "require": {
  10690. "php": ">=5.6"
  10691. },
  10692. "require-dev": {
  10693. "php-coveralls/php-coveralls": "^2.1",
  10694. "phpunit/phpunit": "^5 || ^6.5"
  10695. },
  10696. "type": "library",
  10697. "autoload": {
  10698. "files": [
  10699. "src/getallheaders.php"
  10700. ]
  10701. },
  10702. "notification-url": "https://packagist.org/downloads/",
  10703. "license": [
  10704. "MIT"
  10705. ],
  10706. "authors": [
  10707. {
  10708. "name": "Ralph Khattar",
  10709. "email": "ralph.khattar@gmail.com"
  10710. }
  10711. ],
  10712. "description": "A polyfill for getallheaders.",
  10713. "support": {
  10714. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10715. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10716. },
  10717. "time": "2019-03-08T08:55:37+00:00"
  10718. },
  10719. {
  10720. "name": "sebastian/diff",
  10721. "version": "4.0.6",
  10722. "source": {
  10723. "type": "git",
  10724. "url": "https://github.com/sebastianbergmann/diff.git",
  10725. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10726. },
  10727. "dist": {
  10728. "type": "zip",
  10729. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10730. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10731. "shasum": ""
  10732. },
  10733. "require": {
  10734. "php": ">=7.3"
  10735. },
  10736. "require-dev": {
  10737. "phpunit/phpunit": "^9.3",
  10738. "symfony/process": "^4.2 || ^5"
  10739. },
  10740. "type": "library",
  10741. "extra": {
  10742. "branch-alias": {
  10743. "dev-master": "4.0-dev"
  10744. }
  10745. },
  10746. "autoload": {
  10747. "classmap": [
  10748. "src/"
  10749. ]
  10750. },
  10751. "notification-url": "https://packagist.org/downloads/",
  10752. "license": [
  10753. "BSD-3-Clause"
  10754. ],
  10755. "authors": [
  10756. {
  10757. "name": "Sebastian Bergmann",
  10758. "email": "sebastian@phpunit.de"
  10759. },
  10760. {
  10761. "name": "Kore Nordmann",
  10762. "email": "mail@kore-nordmann.de"
  10763. }
  10764. ],
  10765. "description": "Diff implementation",
  10766. "homepage": "https://github.com/sebastianbergmann/diff",
  10767. "keywords": [
  10768. "diff",
  10769. "udiff",
  10770. "unidiff",
  10771. "unified diff"
  10772. ],
  10773. "support": {
  10774. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10775. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10776. },
  10777. "funding": [
  10778. {
  10779. "url": "https://github.com/sebastianbergmann",
  10780. "type": "github"
  10781. }
  10782. ],
  10783. "time": "2024-03-02T06:30:58+00:00"
  10784. },
  10785. {
  10786. "name": "symfony/console",
  10787. "version": "v6.4.35",
  10788. "source": {
  10789. "type": "git",
  10790. "url": "https://github.com/symfony/console.git",
  10791. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  10792. },
  10793. "dist": {
  10794. "type": "zip",
  10795. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  10796. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  10797. "shasum": ""
  10798. },
  10799. "require": {
  10800. "php": ">=8.1",
  10801. "symfony/deprecation-contracts": "^2.5|^3",
  10802. "symfony/polyfill-mbstring": "~1.0",
  10803. "symfony/service-contracts": "^2.5|^3",
  10804. "symfony/string": "^5.4|^6.0|^7.0"
  10805. },
  10806. "conflict": {
  10807. "symfony/dependency-injection": "<5.4",
  10808. "symfony/dotenv": "<5.4",
  10809. "symfony/event-dispatcher": "<5.4",
  10810. "symfony/lock": "<5.4",
  10811. "symfony/process": "<5.4"
  10812. },
  10813. "provide": {
  10814. "psr/log-implementation": "1.0|2.0|3.0"
  10815. },
  10816. "require-dev": {
  10817. "psr/log": "^1|^2|^3",
  10818. "symfony/config": "^5.4|^6.0|^7.0",
  10819. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10820. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10821. "symfony/http-foundation": "^6.4|^7.0",
  10822. "symfony/http-kernel": "^6.4|^7.0",
  10823. "symfony/lock": "^5.4|^6.0|^7.0",
  10824. "symfony/messenger": "^5.4|^6.0|^7.0",
  10825. "symfony/process": "^5.4|^6.0|^7.0",
  10826. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10827. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10828. },
  10829. "type": "library",
  10830. "autoload": {
  10831. "psr-4": {
  10832. "Symfony\\Component\\Console\\": ""
  10833. },
  10834. "exclude-from-classmap": [
  10835. "/Tests/"
  10836. ]
  10837. },
  10838. "notification-url": "https://packagist.org/downloads/",
  10839. "license": [
  10840. "MIT"
  10841. ],
  10842. "authors": [
  10843. {
  10844. "name": "Fabien Potencier",
  10845. "email": "fabien@symfony.com"
  10846. },
  10847. {
  10848. "name": "Symfony Community",
  10849. "homepage": "https://symfony.com/contributors"
  10850. }
  10851. ],
  10852. "description": "Eases the creation of beautiful and testable command line interfaces",
  10853. "homepage": "https://symfony.com",
  10854. "keywords": [
  10855. "cli",
  10856. "command-line",
  10857. "console",
  10858. "terminal"
  10859. ],
  10860. "support": {
  10861. "source": "https://github.com/symfony/console/tree/v6.4.35"
  10862. },
  10863. "funding": [
  10864. {
  10865. "url": "https://symfony.com/sponsor",
  10866. "type": "custom"
  10867. },
  10868. {
  10869. "url": "https://github.com/fabpot",
  10870. "type": "github"
  10871. },
  10872. {
  10873. "url": "https://github.com/nicolas-grekas",
  10874. "type": "github"
  10875. },
  10876. {
  10877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10878. "type": "tidelift"
  10879. }
  10880. ],
  10881. "time": "2026-03-06T13:31:08+00:00"
  10882. },
  10883. {
  10884. "name": "symfony/dependency-injection",
  10885. "version": "v6.4.35",
  10886. "source": {
  10887. "type": "git",
  10888. "url": "https://github.com/symfony/dependency-injection.git",
  10889. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  10890. },
  10891. "dist": {
  10892. "type": "zip",
  10893. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  10894. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  10895. "shasum": ""
  10896. },
  10897. "require": {
  10898. "php": ">=8.1",
  10899. "psr/container": "^1.1|^2.0",
  10900. "symfony/deprecation-contracts": "^2.5|^3",
  10901. "symfony/service-contracts": "^2.5|^3.0",
  10902. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10903. },
  10904. "conflict": {
  10905. "ext-psr": "<1.1|>=2",
  10906. "symfony/config": "<6.1",
  10907. "symfony/finder": "<5.4",
  10908. "symfony/proxy-manager-bridge": "<6.3",
  10909. "symfony/yaml": "<5.4"
  10910. },
  10911. "provide": {
  10912. "psr/container-implementation": "1.1|2.0",
  10913. "symfony/service-implementation": "1.1|2.0|3.0"
  10914. },
  10915. "require-dev": {
  10916. "symfony/config": "^6.1|^7.0",
  10917. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10918. "symfony/yaml": "^5.4|^6.0|^7.0"
  10919. },
  10920. "type": "library",
  10921. "autoload": {
  10922. "psr-4": {
  10923. "Symfony\\Component\\DependencyInjection\\": ""
  10924. },
  10925. "exclude-from-classmap": [
  10926. "/Tests/"
  10927. ]
  10928. },
  10929. "notification-url": "https://packagist.org/downloads/",
  10930. "license": [
  10931. "MIT"
  10932. ],
  10933. "authors": [
  10934. {
  10935. "name": "Fabien Potencier",
  10936. "email": "fabien@symfony.com"
  10937. },
  10938. {
  10939. "name": "Symfony Community",
  10940. "homepage": "https://symfony.com/contributors"
  10941. }
  10942. ],
  10943. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10944. "homepage": "https://symfony.com",
  10945. "support": {
  10946. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  10947. },
  10948. "funding": [
  10949. {
  10950. "url": "https://symfony.com/sponsor",
  10951. "type": "custom"
  10952. },
  10953. {
  10954. "url": "https://github.com/fabpot",
  10955. "type": "github"
  10956. },
  10957. {
  10958. "url": "https://github.com/nicolas-grekas",
  10959. "type": "github"
  10960. },
  10961. {
  10962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10963. "type": "tidelift"
  10964. }
  10965. ],
  10966. "time": "2026-02-26T12:16:01+00:00"
  10967. },
  10968. {
  10969. "name": "symfony/deprecation-contracts",
  10970. "version": "v3.6.0",
  10971. "source": {
  10972. "type": "git",
  10973. "url": "https://github.com/symfony/deprecation-contracts.git",
  10974. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  10975. },
  10976. "dist": {
  10977. "type": "zip",
  10978. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10979. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  10980. "shasum": ""
  10981. },
  10982. "require": {
  10983. "php": ">=8.1"
  10984. },
  10985. "type": "library",
  10986. "extra": {
  10987. "thanks": {
  10988. "url": "https://github.com/symfony/contracts",
  10989. "name": "symfony/contracts"
  10990. },
  10991. "branch-alias": {
  10992. "dev-main": "3.6-dev"
  10993. }
  10994. },
  10995. "autoload": {
  10996. "files": [
  10997. "function.php"
  10998. ]
  10999. },
  11000. "notification-url": "https://packagist.org/downloads/",
  11001. "license": [
  11002. "MIT"
  11003. ],
  11004. "authors": [
  11005. {
  11006. "name": "Nicolas Grekas",
  11007. "email": "p@tchwork.com"
  11008. },
  11009. {
  11010. "name": "Symfony Community",
  11011. "homepage": "https://symfony.com/contributors"
  11012. }
  11013. ],
  11014. "description": "A generic function and convention to trigger deprecation notices",
  11015. "homepage": "https://symfony.com",
  11016. "support": {
  11017. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  11018. },
  11019. "funding": [
  11020. {
  11021. "url": "https://symfony.com/sponsor",
  11022. "type": "custom"
  11023. },
  11024. {
  11025. "url": "https://github.com/fabpot",
  11026. "type": "github"
  11027. },
  11028. {
  11029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11030. "type": "tidelift"
  11031. }
  11032. ],
  11033. "time": "2024-09-25T14:21:43+00:00"
  11034. },
  11035. {
  11036. "name": "symfony/error-handler",
  11037. "version": "v6.4.32",
  11038. "source": {
  11039. "type": "git",
  11040. "url": "https://github.com/symfony/error-handler.git",
  11041. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  11042. },
  11043. "dist": {
  11044. "type": "zip",
  11045. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11046. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  11047. "shasum": ""
  11048. },
  11049. "require": {
  11050. "php": ">=8.1",
  11051. "psr/log": "^1|^2|^3",
  11052. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11053. },
  11054. "conflict": {
  11055. "symfony/deprecation-contracts": "<2.5",
  11056. "symfony/http-kernel": "<6.4"
  11057. },
  11058. "require-dev": {
  11059. "symfony/deprecation-contracts": "^2.5|^3",
  11060. "symfony/http-kernel": "^6.4|^7.0",
  11061. "symfony/serializer": "^5.4|^6.0|^7.0"
  11062. },
  11063. "bin": [
  11064. "Resources/bin/patch-type-declarations"
  11065. ],
  11066. "type": "library",
  11067. "autoload": {
  11068. "psr-4": {
  11069. "Symfony\\Component\\ErrorHandler\\": ""
  11070. },
  11071. "exclude-from-classmap": [
  11072. "/Tests/"
  11073. ]
  11074. },
  11075. "notification-url": "https://packagist.org/downloads/",
  11076. "license": [
  11077. "MIT"
  11078. ],
  11079. "authors": [
  11080. {
  11081. "name": "Fabien Potencier",
  11082. "email": "fabien@symfony.com"
  11083. },
  11084. {
  11085. "name": "Symfony Community",
  11086. "homepage": "https://symfony.com/contributors"
  11087. }
  11088. ],
  11089. "description": "Provides tools to manage errors and ease debugging PHP code",
  11090. "homepage": "https://symfony.com",
  11091. "support": {
  11092. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  11093. },
  11094. "funding": [
  11095. {
  11096. "url": "https://symfony.com/sponsor",
  11097. "type": "custom"
  11098. },
  11099. {
  11100. "url": "https://github.com/fabpot",
  11101. "type": "github"
  11102. },
  11103. {
  11104. "url": "https://github.com/nicolas-grekas",
  11105. "type": "github"
  11106. },
  11107. {
  11108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11109. "type": "tidelift"
  11110. }
  11111. ],
  11112. "time": "2026-01-19T19:28:19+00:00"
  11113. },
  11114. {
  11115. "name": "symfony/event-dispatcher",
  11116. "version": "v6.4.32",
  11117. "source": {
  11118. "type": "git",
  11119. "url": "https://github.com/symfony/event-dispatcher.git",
  11120. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  11121. },
  11122. "dist": {
  11123. "type": "zip",
  11124. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  11125. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  11126. "shasum": ""
  11127. },
  11128. "require": {
  11129. "php": ">=8.1",
  11130. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11131. },
  11132. "conflict": {
  11133. "symfony/dependency-injection": "<5.4",
  11134. "symfony/service-contracts": "<2.5"
  11135. },
  11136. "provide": {
  11137. "psr/event-dispatcher-implementation": "1.0",
  11138. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11139. },
  11140. "require-dev": {
  11141. "psr/log": "^1|^2|^3",
  11142. "symfony/config": "^5.4|^6.0|^7.0",
  11143. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11144. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11145. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11146. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11147. "symfony/service-contracts": "^2.5|^3",
  11148. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11149. },
  11150. "type": "library",
  11151. "autoload": {
  11152. "psr-4": {
  11153. "Symfony\\Component\\EventDispatcher\\": ""
  11154. },
  11155. "exclude-from-classmap": [
  11156. "/Tests/"
  11157. ]
  11158. },
  11159. "notification-url": "https://packagist.org/downloads/",
  11160. "license": [
  11161. "MIT"
  11162. ],
  11163. "authors": [
  11164. {
  11165. "name": "Fabien Potencier",
  11166. "email": "fabien@symfony.com"
  11167. },
  11168. {
  11169. "name": "Symfony Community",
  11170. "homepage": "https://symfony.com/contributors"
  11171. }
  11172. ],
  11173. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11174. "homepage": "https://symfony.com",
  11175. "support": {
  11176. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  11177. },
  11178. "funding": [
  11179. {
  11180. "url": "https://symfony.com/sponsor",
  11181. "type": "custom"
  11182. },
  11183. {
  11184. "url": "https://github.com/fabpot",
  11185. "type": "github"
  11186. },
  11187. {
  11188. "url": "https://github.com/nicolas-grekas",
  11189. "type": "github"
  11190. },
  11191. {
  11192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11193. "type": "tidelift"
  11194. }
  11195. ],
  11196. "time": "2026-01-05T11:13:48+00:00"
  11197. },
  11198. {
  11199. "name": "symfony/event-dispatcher-contracts",
  11200. "version": "v3.6.0",
  11201. "source": {
  11202. "type": "git",
  11203. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11204. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  11205. },
  11206. "dist": {
  11207. "type": "zip",
  11208. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  11209. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  11210. "shasum": ""
  11211. },
  11212. "require": {
  11213. "php": ">=8.1",
  11214. "psr/event-dispatcher": "^1"
  11215. },
  11216. "type": "library",
  11217. "extra": {
  11218. "thanks": {
  11219. "url": "https://github.com/symfony/contracts",
  11220. "name": "symfony/contracts"
  11221. },
  11222. "branch-alias": {
  11223. "dev-main": "3.6-dev"
  11224. }
  11225. },
  11226. "autoload": {
  11227. "psr-4": {
  11228. "Symfony\\Contracts\\EventDispatcher\\": ""
  11229. }
  11230. },
  11231. "notification-url": "https://packagist.org/downloads/",
  11232. "license": [
  11233. "MIT"
  11234. ],
  11235. "authors": [
  11236. {
  11237. "name": "Nicolas Grekas",
  11238. "email": "p@tchwork.com"
  11239. },
  11240. {
  11241. "name": "Symfony Community",
  11242. "homepage": "https://symfony.com/contributors"
  11243. }
  11244. ],
  11245. "description": "Generic abstractions related to dispatching event",
  11246. "homepage": "https://symfony.com",
  11247. "keywords": [
  11248. "abstractions",
  11249. "contracts",
  11250. "decoupling",
  11251. "interfaces",
  11252. "interoperability",
  11253. "standards"
  11254. ],
  11255. "support": {
  11256. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  11257. },
  11258. "funding": [
  11259. {
  11260. "url": "https://symfony.com/sponsor",
  11261. "type": "custom"
  11262. },
  11263. {
  11264. "url": "https://github.com/fabpot",
  11265. "type": "github"
  11266. },
  11267. {
  11268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11269. "type": "tidelift"
  11270. }
  11271. ],
  11272. "time": "2024-09-25T14:21:43+00:00"
  11273. },
  11274. {
  11275. "name": "symfony/filesystem",
  11276. "version": "v6.4.34",
  11277. "source": {
  11278. "type": "git",
  11279. "url": "https://github.com/symfony/filesystem.git",
  11280. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  11281. },
  11282. "dist": {
  11283. "type": "zip",
  11284. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11285. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  11286. "shasum": ""
  11287. },
  11288. "require": {
  11289. "php": ">=8.1",
  11290. "symfony/polyfill-ctype": "~1.8",
  11291. "symfony/polyfill-mbstring": "~1.8"
  11292. },
  11293. "require-dev": {
  11294. "symfony/process": "^5.4|^6.4|^7.0"
  11295. },
  11296. "type": "library",
  11297. "autoload": {
  11298. "psr-4": {
  11299. "Symfony\\Component\\Filesystem\\": ""
  11300. },
  11301. "exclude-from-classmap": [
  11302. "/Tests/"
  11303. ]
  11304. },
  11305. "notification-url": "https://packagist.org/downloads/",
  11306. "license": [
  11307. "MIT"
  11308. ],
  11309. "authors": [
  11310. {
  11311. "name": "Fabien Potencier",
  11312. "email": "fabien@symfony.com"
  11313. },
  11314. {
  11315. "name": "Symfony Community",
  11316. "homepage": "https://symfony.com/contributors"
  11317. }
  11318. ],
  11319. "description": "Provides basic utilities for the filesystem",
  11320. "homepage": "https://symfony.com",
  11321. "support": {
  11322. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  11323. },
  11324. "funding": [
  11325. {
  11326. "url": "https://symfony.com/sponsor",
  11327. "type": "custom"
  11328. },
  11329. {
  11330. "url": "https://github.com/fabpot",
  11331. "type": "github"
  11332. },
  11333. {
  11334. "url": "https://github.com/nicolas-grekas",
  11335. "type": "github"
  11336. },
  11337. {
  11338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11339. "type": "tidelift"
  11340. }
  11341. ],
  11342. "time": "2026-02-24T17:51:06+00:00"
  11343. },
  11344. {
  11345. "name": "symfony/finder",
  11346. "version": "v6.4.34",
  11347. "source": {
  11348. "type": "git",
  11349. "url": "https://github.com/symfony/finder.git",
  11350. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  11351. },
  11352. "dist": {
  11353. "type": "zip",
  11354. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  11355. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  11356. "shasum": ""
  11357. },
  11358. "require": {
  11359. "php": ">=8.1"
  11360. },
  11361. "require-dev": {
  11362. "symfony/filesystem": "^6.0|^7.0"
  11363. },
  11364. "type": "library",
  11365. "autoload": {
  11366. "psr-4": {
  11367. "Symfony\\Component\\Finder\\": ""
  11368. },
  11369. "exclude-from-classmap": [
  11370. "/Tests/"
  11371. ]
  11372. },
  11373. "notification-url": "https://packagist.org/downloads/",
  11374. "license": [
  11375. "MIT"
  11376. ],
  11377. "authors": [
  11378. {
  11379. "name": "Fabien Potencier",
  11380. "email": "fabien@symfony.com"
  11381. },
  11382. {
  11383. "name": "Symfony Community",
  11384. "homepage": "https://symfony.com/contributors"
  11385. }
  11386. ],
  11387. "description": "Finds files and directories via an intuitive fluent interface",
  11388. "homepage": "https://symfony.com",
  11389. "support": {
  11390. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  11391. },
  11392. "funding": [
  11393. {
  11394. "url": "https://symfony.com/sponsor",
  11395. "type": "custom"
  11396. },
  11397. {
  11398. "url": "https://github.com/fabpot",
  11399. "type": "github"
  11400. },
  11401. {
  11402. "url": "https://github.com/nicolas-grekas",
  11403. "type": "github"
  11404. },
  11405. {
  11406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11407. "type": "tidelift"
  11408. }
  11409. ],
  11410. "time": "2026-01-28T15:16:37+00:00"
  11411. },
  11412. {
  11413. "name": "symfony/http-foundation",
  11414. "version": "v6.4.35",
  11415. "source": {
  11416. "type": "git",
  11417. "url": "https://github.com/symfony/http-foundation.git",
  11418. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  11419. },
  11420. "dist": {
  11421. "type": "zip",
  11422. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11423. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  11424. "shasum": ""
  11425. },
  11426. "require": {
  11427. "php": ">=8.1",
  11428. "symfony/deprecation-contracts": "^2.5|^3",
  11429. "symfony/polyfill-mbstring": "~1.1",
  11430. "symfony/polyfill-php83": "^1.27"
  11431. },
  11432. "conflict": {
  11433. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11434. },
  11435. "require-dev": {
  11436. "doctrine/dbal": "^2.13.1|^3|^4",
  11437. "predis/predis": "^1.1|^2.0",
  11438. "symfony/cache": "^6.4.12|^7.1.5",
  11439. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11440. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11441. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11442. "symfony/mime": "^5.4|^6.0|^7.0",
  11443. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11444. },
  11445. "type": "library",
  11446. "autoload": {
  11447. "psr-4": {
  11448. "Symfony\\Component\\HttpFoundation\\": ""
  11449. },
  11450. "exclude-from-classmap": [
  11451. "/Tests/"
  11452. ]
  11453. },
  11454. "notification-url": "https://packagist.org/downloads/",
  11455. "license": [
  11456. "MIT"
  11457. ],
  11458. "authors": [
  11459. {
  11460. "name": "Fabien Potencier",
  11461. "email": "fabien@symfony.com"
  11462. },
  11463. {
  11464. "name": "Symfony Community",
  11465. "homepage": "https://symfony.com/contributors"
  11466. }
  11467. ],
  11468. "description": "Defines an object-oriented layer for the HTTP specification",
  11469. "homepage": "https://symfony.com",
  11470. "support": {
  11471. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  11472. },
  11473. "funding": [
  11474. {
  11475. "url": "https://symfony.com/sponsor",
  11476. "type": "custom"
  11477. },
  11478. {
  11479. "url": "https://github.com/fabpot",
  11480. "type": "github"
  11481. },
  11482. {
  11483. "url": "https://github.com/nicolas-grekas",
  11484. "type": "github"
  11485. },
  11486. {
  11487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11488. "type": "tidelift"
  11489. }
  11490. ],
  11491. "time": "2026-03-06T11:15:58+00:00"
  11492. },
  11493. {
  11494. "name": "symfony/http-kernel",
  11495. "version": "v6.4.35",
  11496. "source": {
  11497. "type": "git",
  11498. "url": "https://github.com/symfony/http-kernel.git",
  11499. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  11500. },
  11501. "dist": {
  11502. "type": "zip",
  11503. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  11504. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  11505. "shasum": ""
  11506. },
  11507. "require": {
  11508. "php": ">=8.1",
  11509. "psr/log": "^1|^2|^3",
  11510. "symfony/deprecation-contracts": "^2.5|^3",
  11511. "symfony/error-handler": "^6.4|^7.0",
  11512. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11513. "symfony/http-foundation": "^6.4|^7.0",
  11514. "symfony/polyfill-ctype": "^1.8"
  11515. },
  11516. "conflict": {
  11517. "symfony/browser-kit": "<5.4",
  11518. "symfony/cache": "<5.4",
  11519. "symfony/config": "<6.1",
  11520. "symfony/console": "<5.4",
  11521. "symfony/dependency-injection": "<6.4",
  11522. "symfony/doctrine-bridge": "<5.4",
  11523. "symfony/form": "<5.4",
  11524. "symfony/http-client": "<5.4",
  11525. "symfony/http-client-contracts": "<2.5",
  11526. "symfony/mailer": "<5.4",
  11527. "symfony/messenger": "<5.4",
  11528. "symfony/translation": "<5.4",
  11529. "symfony/translation-contracts": "<2.5",
  11530. "symfony/twig-bridge": "<5.4",
  11531. "symfony/validator": "<6.4",
  11532. "symfony/var-dumper": "<6.3",
  11533. "twig/twig": "<2.13"
  11534. },
  11535. "provide": {
  11536. "psr/log-implementation": "1.0|2.0|3.0"
  11537. },
  11538. "require-dev": {
  11539. "psr/cache": "^1.0|^2.0|^3.0",
  11540. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11541. "symfony/clock": "^6.2|^7.0",
  11542. "symfony/config": "^6.1|^7.0",
  11543. "symfony/console": "^5.4|^6.0|^7.0",
  11544. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11545. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  11546. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11547. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11548. "symfony/finder": "^5.4|^6.0|^7.0",
  11549. "symfony/http-client-contracts": "^2.5|^3",
  11550. "symfony/process": "^5.4|^6.0|^7.0",
  11551. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11552. "symfony/routing": "^5.4|^6.0|^7.0",
  11553. "symfony/serializer": "^6.4.4|^7.0.4",
  11554. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11555. "symfony/translation": "^5.4|^6.0|^7.0",
  11556. "symfony/translation-contracts": "^2.5|^3",
  11557. "symfony/uid": "^5.4|^6.0|^7.0",
  11558. "symfony/validator": "^6.4|^7.0",
  11559. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11560. "symfony/var-exporter": "^6.2|^7.0",
  11561. "twig/twig": "^2.13|^3.0.4"
  11562. },
  11563. "type": "library",
  11564. "autoload": {
  11565. "psr-4": {
  11566. "Symfony\\Component\\HttpKernel\\": ""
  11567. },
  11568. "exclude-from-classmap": [
  11569. "/Tests/"
  11570. ]
  11571. },
  11572. "notification-url": "https://packagist.org/downloads/",
  11573. "license": [
  11574. "MIT"
  11575. ],
  11576. "authors": [
  11577. {
  11578. "name": "Fabien Potencier",
  11579. "email": "fabien@symfony.com"
  11580. },
  11581. {
  11582. "name": "Symfony Community",
  11583. "homepage": "https://symfony.com/contributors"
  11584. }
  11585. ],
  11586. "description": "Provides a structured process for converting a Request into a Response",
  11587. "homepage": "https://symfony.com",
  11588. "support": {
  11589. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  11590. },
  11591. "funding": [
  11592. {
  11593. "url": "https://symfony.com/sponsor",
  11594. "type": "custom"
  11595. },
  11596. {
  11597. "url": "https://github.com/fabpot",
  11598. "type": "github"
  11599. },
  11600. {
  11601. "url": "https://github.com/nicolas-grekas",
  11602. "type": "github"
  11603. },
  11604. {
  11605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11606. "type": "tidelift"
  11607. }
  11608. ],
  11609. "time": "2026-03-06T16:28:07+00:00"
  11610. },
  11611. {
  11612. "name": "symfony/mailer",
  11613. "version": "v6.4.34",
  11614. "source": {
  11615. "type": "git",
  11616. "url": "https://github.com/symfony/mailer.git",
  11617. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  11618. },
  11619. "dist": {
  11620. "type": "zip",
  11621. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  11622. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  11623. "shasum": ""
  11624. },
  11625. "require": {
  11626. "egulias/email-validator": "^2.1.10|^3|^4",
  11627. "php": ">=8.1",
  11628. "psr/event-dispatcher": "^1",
  11629. "psr/log": "^1|^2|^3",
  11630. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11631. "symfony/mime": "^6.2|^7.0",
  11632. "symfony/service-contracts": "^2.5|^3"
  11633. },
  11634. "conflict": {
  11635. "symfony/http-client-contracts": "<2.5",
  11636. "symfony/http-kernel": "<5.4",
  11637. "symfony/messenger": "<6.2",
  11638. "symfony/mime": "<6.2",
  11639. "symfony/twig-bridge": "<6.2.1"
  11640. },
  11641. "require-dev": {
  11642. "symfony/console": "^5.4|^6.0|^7.0",
  11643. "symfony/http-client": "^5.4|^6.0|^7.0",
  11644. "symfony/messenger": "^6.2|^7.0",
  11645. "symfony/twig-bridge": "^6.2|^7.0"
  11646. },
  11647. "type": "library",
  11648. "autoload": {
  11649. "psr-4": {
  11650. "Symfony\\Component\\Mailer\\": ""
  11651. },
  11652. "exclude-from-classmap": [
  11653. "/Tests/"
  11654. ]
  11655. },
  11656. "notification-url": "https://packagist.org/downloads/",
  11657. "license": [
  11658. "MIT"
  11659. ],
  11660. "authors": [
  11661. {
  11662. "name": "Fabien Potencier",
  11663. "email": "fabien@symfony.com"
  11664. },
  11665. {
  11666. "name": "Symfony Community",
  11667. "homepage": "https://symfony.com/contributors"
  11668. }
  11669. ],
  11670. "description": "Helps sending emails",
  11671. "homepage": "https://symfony.com",
  11672. "support": {
  11673. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  11674. },
  11675. "funding": [
  11676. {
  11677. "url": "https://symfony.com/sponsor",
  11678. "type": "custom"
  11679. },
  11680. {
  11681. "url": "https://github.com/fabpot",
  11682. "type": "github"
  11683. },
  11684. {
  11685. "url": "https://github.com/nicolas-grekas",
  11686. "type": "github"
  11687. },
  11688. {
  11689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11690. "type": "tidelift"
  11691. }
  11692. ],
  11693. "time": "2026-02-24T09:34:36+00:00"
  11694. },
  11695. {
  11696. "name": "symfony/mime",
  11697. "version": "v6.4.35",
  11698. "source": {
  11699. "type": "git",
  11700. "url": "https://github.com/symfony/mime.git",
  11701. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  11702. },
  11703. "dist": {
  11704. "type": "zip",
  11705. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11706. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  11707. "shasum": ""
  11708. },
  11709. "require": {
  11710. "php": ">=8.1",
  11711. "symfony/deprecation-contracts": "^2.5|^3",
  11712. "symfony/polyfill-intl-idn": "^1.10",
  11713. "symfony/polyfill-mbstring": "^1.0"
  11714. },
  11715. "conflict": {
  11716. "egulias/email-validator": "~3.0.0",
  11717. "phpdocumentor/reflection-docblock": "<3.2.2",
  11718. "phpdocumentor/type-resolver": "<1.4.0",
  11719. "symfony/mailer": "<5.4",
  11720. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11721. },
  11722. "require-dev": {
  11723. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11724. "league/html-to-markdown": "^5.0",
  11725. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11726. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11727. "symfony/process": "^5.4|^6.4|^7.0",
  11728. "symfony/property-access": "^5.4|^6.0|^7.0",
  11729. "symfony/property-info": "^5.4|^6.0|^7.0",
  11730. "symfony/serializer": "^6.4.3|^7.0.3"
  11731. },
  11732. "type": "library",
  11733. "autoload": {
  11734. "psr-4": {
  11735. "Symfony\\Component\\Mime\\": ""
  11736. },
  11737. "exclude-from-classmap": [
  11738. "/Tests/"
  11739. ]
  11740. },
  11741. "notification-url": "https://packagist.org/downloads/",
  11742. "license": [
  11743. "MIT"
  11744. ],
  11745. "authors": [
  11746. {
  11747. "name": "Fabien Potencier",
  11748. "email": "fabien@symfony.com"
  11749. },
  11750. {
  11751. "name": "Symfony Community",
  11752. "homepage": "https://symfony.com/contributors"
  11753. }
  11754. ],
  11755. "description": "Allows manipulating MIME messages",
  11756. "homepage": "https://symfony.com",
  11757. "keywords": [
  11758. "mime",
  11759. "mime-type"
  11760. ],
  11761. "support": {
  11762. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  11763. },
  11764. "funding": [
  11765. {
  11766. "url": "https://symfony.com/sponsor",
  11767. "type": "custom"
  11768. },
  11769. {
  11770. "url": "https://github.com/fabpot",
  11771. "type": "github"
  11772. },
  11773. {
  11774. "url": "https://github.com/nicolas-grekas",
  11775. "type": "github"
  11776. },
  11777. {
  11778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11779. "type": "tidelift"
  11780. }
  11781. ],
  11782. "time": "2026-03-05T11:25:28+00:00"
  11783. },
  11784. {
  11785. "name": "symfony/polyfill-ctype",
  11786. "version": "v1.33.0",
  11787. "source": {
  11788. "type": "git",
  11789. "url": "https://github.com/symfony/polyfill-ctype.git",
  11790. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11791. },
  11792. "dist": {
  11793. "type": "zip",
  11794. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11795. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11796. "shasum": ""
  11797. },
  11798. "require": {
  11799. "php": ">=7.2"
  11800. },
  11801. "provide": {
  11802. "ext-ctype": "*"
  11803. },
  11804. "suggest": {
  11805. "ext-ctype": "For best performance"
  11806. },
  11807. "type": "library",
  11808. "extra": {
  11809. "thanks": {
  11810. "url": "https://github.com/symfony/polyfill",
  11811. "name": "symfony/polyfill"
  11812. }
  11813. },
  11814. "autoload": {
  11815. "files": [
  11816. "bootstrap.php"
  11817. ],
  11818. "psr-4": {
  11819. "Symfony\\Polyfill\\Ctype\\": ""
  11820. }
  11821. },
  11822. "notification-url": "https://packagist.org/downloads/",
  11823. "license": [
  11824. "MIT"
  11825. ],
  11826. "authors": [
  11827. {
  11828. "name": "Gert de Pagter",
  11829. "email": "BackEndTea@gmail.com"
  11830. },
  11831. {
  11832. "name": "Symfony Community",
  11833. "homepage": "https://symfony.com/contributors"
  11834. }
  11835. ],
  11836. "description": "Symfony polyfill for ctype functions",
  11837. "homepage": "https://symfony.com",
  11838. "keywords": [
  11839. "compatibility",
  11840. "ctype",
  11841. "polyfill",
  11842. "portable"
  11843. ],
  11844. "support": {
  11845. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  11846. },
  11847. "funding": [
  11848. {
  11849. "url": "https://symfony.com/sponsor",
  11850. "type": "custom"
  11851. },
  11852. {
  11853. "url": "https://github.com/fabpot",
  11854. "type": "github"
  11855. },
  11856. {
  11857. "url": "https://github.com/nicolas-grekas",
  11858. "type": "github"
  11859. },
  11860. {
  11861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11862. "type": "tidelift"
  11863. }
  11864. ],
  11865. "time": "2024-09-09T11:45:10+00:00"
  11866. },
  11867. {
  11868. "name": "symfony/polyfill-iconv",
  11869. "version": "v1.33.0",
  11870. "source": {
  11871. "type": "git",
  11872. "url": "https://github.com/symfony/polyfill-iconv.git",
  11873. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  11874. },
  11875. "dist": {
  11876. "type": "zip",
  11877. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11878. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  11879. "shasum": ""
  11880. },
  11881. "require": {
  11882. "php": ">=7.2"
  11883. },
  11884. "provide": {
  11885. "ext-iconv": "*"
  11886. },
  11887. "suggest": {
  11888. "ext-iconv": "For best performance"
  11889. },
  11890. "type": "library",
  11891. "extra": {
  11892. "thanks": {
  11893. "url": "https://github.com/symfony/polyfill",
  11894. "name": "symfony/polyfill"
  11895. }
  11896. },
  11897. "autoload": {
  11898. "files": [
  11899. "bootstrap.php"
  11900. ],
  11901. "psr-4": {
  11902. "Symfony\\Polyfill\\Iconv\\": ""
  11903. }
  11904. },
  11905. "notification-url": "https://packagist.org/downloads/",
  11906. "license": [
  11907. "MIT"
  11908. ],
  11909. "authors": [
  11910. {
  11911. "name": "Nicolas Grekas",
  11912. "email": "p@tchwork.com"
  11913. },
  11914. {
  11915. "name": "Symfony Community",
  11916. "homepage": "https://symfony.com/contributors"
  11917. }
  11918. ],
  11919. "description": "Symfony polyfill for the Iconv extension",
  11920. "homepage": "https://symfony.com",
  11921. "keywords": [
  11922. "compatibility",
  11923. "iconv",
  11924. "polyfill",
  11925. "portable",
  11926. "shim"
  11927. ],
  11928. "support": {
  11929. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  11930. },
  11931. "funding": [
  11932. {
  11933. "url": "https://symfony.com/sponsor",
  11934. "type": "custom"
  11935. },
  11936. {
  11937. "url": "https://github.com/fabpot",
  11938. "type": "github"
  11939. },
  11940. {
  11941. "url": "https://github.com/nicolas-grekas",
  11942. "type": "github"
  11943. },
  11944. {
  11945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11946. "type": "tidelift"
  11947. }
  11948. ],
  11949. "time": "2024-09-17T14:58:18+00:00"
  11950. },
  11951. {
  11952. "name": "symfony/polyfill-intl-grapheme",
  11953. "version": "v1.33.0",
  11954. "source": {
  11955. "type": "git",
  11956. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11957. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  11958. },
  11959. "dist": {
  11960. "type": "zip",
  11961. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11962. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  11963. "shasum": ""
  11964. },
  11965. "require": {
  11966. "php": ">=7.2"
  11967. },
  11968. "suggest": {
  11969. "ext-intl": "For best performance"
  11970. },
  11971. "type": "library",
  11972. "extra": {
  11973. "thanks": {
  11974. "url": "https://github.com/symfony/polyfill",
  11975. "name": "symfony/polyfill"
  11976. }
  11977. },
  11978. "autoload": {
  11979. "files": [
  11980. "bootstrap.php"
  11981. ],
  11982. "psr-4": {
  11983. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11984. }
  11985. },
  11986. "notification-url": "https://packagist.org/downloads/",
  11987. "license": [
  11988. "MIT"
  11989. ],
  11990. "authors": [
  11991. {
  11992. "name": "Nicolas Grekas",
  11993. "email": "p@tchwork.com"
  11994. },
  11995. {
  11996. "name": "Symfony Community",
  11997. "homepage": "https://symfony.com/contributors"
  11998. }
  11999. ],
  12000. "description": "Symfony polyfill for intl's grapheme_* functions",
  12001. "homepage": "https://symfony.com",
  12002. "keywords": [
  12003. "compatibility",
  12004. "grapheme",
  12005. "intl",
  12006. "polyfill",
  12007. "portable",
  12008. "shim"
  12009. ],
  12010. "support": {
  12011. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  12012. },
  12013. "funding": [
  12014. {
  12015. "url": "https://symfony.com/sponsor",
  12016. "type": "custom"
  12017. },
  12018. {
  12019. "url": "https://github.com/fabpot",
  12020. "type": "github"
  12021. },
  12022. {
  12023. "url": "https://github.com/nicolas-grekas",
  12024. "type": "github"
  12025. },
  12026. {
  12027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12028. "type": "tidelift"
  12029. }
  12030. ],
  12031. "time": "2025-06-27T09:58:17+00:00"
  12032. },
  12033. {
  12034. "name": "symfony/polyfill-intl-idn",
  12035. "version": "v1.33.0",
  12036. "source": {
  12037. "type": "git",
  12038. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12039. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  12040. },
  12041. "dist": {
  12042. "type": "zip",
  12043. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12044. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  12045. "shasum": ""
  12046. },
  12047. "require": {
  12048. "php": ">=7.2",
  12049. "symfony/polyfill-intl-normalizer": "^1.10"
  12050. },
  12051. "suggest": {
  12052. "ext-intl": "For best performance"
  12053. },
  12054. "type": "library",
  12055. "extra": {
  12056. "thanks": {
  12057. "url": "https://github.com/symfony/polyfill",
  12058. "name": "symfony/polyfill"
  12059. }
  12060. },
  12061. "autoload": {
  12062. "files": [
  12063. "bootstrap.php"
  12064. ],
  12065. "psr-4": {
  12066. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12067. }
  12068. },
  12069. "notification-url": "https://packagist.org/downloads/",
  12070. "license": [
  12071. "MIT"
  12072. ],
  12073. "authors": [
  12074. {
  12075. "name": "Laurent Bassin",
  12076. "email": "laurent@bassin.info"
  12077. },
  12078. {
  12079. "name": "Trevor Rowbotham",
  12080. "email": "trevor.rowbotham@pm.me"
  12081. },
  12082. {
  12083. "name": "Symfony Community",
  12084. "homepage": "https://symfony.com/contributors"
  12085. }
  12086. ],
  12087. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12088. "homepage": "https://symfony.com",
  12089. "keywords": [
  12090. "compatibility",
  12091. "idn",
  12092. "intl",
  12093. "polyfill",
  12094. "portable",
  12095. "shim"
  12096. ],
  12097. "support": {
  12098. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  12099. },
  12100. "funding": [
  12101. {
  12102. "url": "https://symfony.com/sponsor",
  12103. "type": "custom"
  12104. },
  12105. {
  12106. "url": "https://github.com/fabpot",
  12107. "type": "github"
  12108. },
  12109. {
  12110. "url": "https://github.com/nicolas-grekas",
  12111. "type": "github"
  12112. },
  12113. {
  12114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12115. "type": "tidelift"
  12116. }
  12117. ],
  12118. "time": "2024-09-10T14:38:51+00:00"
  12119. },
  12120. {
  12121. "name": "symfony/polyfill-intl-normalizer",
  12122. "version": "v1.33.0",
  12123. "source": {
  12124. "type": "git",
  12125. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12126. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12127. },
  12128. "dist": {
  12129. "type": "zip",
  12130. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12131. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12132. "shasum": ""
  12133. },
  12134. "require": {
  12135. "php": ">=7.2"
  12136. },
  12137. "suggest": {
  12138. "ext-intl": "For best performance"
  12139. },
  12140. "type": "library",
  12141. "extra": {
  12142. "thanks": {
  12143. "url": "https://github.com/symfony/polyfill",
  12144. "name": "symfony/polyfill"
  12145. }
  12146. },
  12147. "autoload": {
  12148. "files": [
  12149. "bootstrap.php"
  12150. ],
  12151. "psr-4": {
  12152. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12153. },
  12154. "classmap": [
  12155. "Resources/stubs"
  12156. ]
  12157. },
  12158. "notification-url": "https://packagist.org/downloads/",
  12159. "license": [
  12160. "MIT"
  12161. ],
  12162. "authors": [
  12163. {
  12164. "name": "Nicolas Grekas",
  12165. "email": "p@tchwork.com"
  12166. },
  12167. {
  12168. "name": "Symfony Community",
  12169. "homepage": "https://symfony.com/contributors"
  12170. }
  12171. ],
  12172. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12173. "homepage": "https://symfony.com",
  12174. "keywords": [
  12175. "compatibility",
  12176. "intl",
  12177. "normalizer",
  12178. "polyfill",
  12179. "portable",
  12180. "shim"
  12181. ],
  12182. "support": {
  12183. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  12184. },
  12185. "funding": [
  12186. {
  12187. "url": "https://symfony.com/sponsor",
  12188. "type": "custom"
  12189. },
  12190. {
  12191. "url": "https://github.com/fabpot",
  12192. "type": "github"
  12193. },
  12194. {
  12195. "url": "https://github.com/nicolas-grekas",
  12196. "type": "github"
  12197. },
  12198. {
  12199. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12200. "type": "tidelift"
  12201. }
  12202. ],
  12203. "time": "2024-09-09T11:45:10+00:00"
  12204. },
  12205. {
  12206. "name": "symfony/polyfill-mbstring",
  12207. "version": "v1.33.0",
  12208. "source": {
  12209. "type": "git",
  12210. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12211. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  12212. },
  12213. "dist": {
  12214. "type": "zip",
  12215. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12216. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  12217. "shasum": ""
  12218. },
  12219. "require": {
  12220. "ext-iconv": "*",
  12221. "php": ">=7.2"
  12222. },
  12223. "provide": {
  12224. "ext-mbstring": "*"
  12225. },
  12226. "suggest": {
  12227. "ext-mbstring": "For best performance"
  12228. },
  12229. "type": "library",
  12230. "extra": {
  12231. "thanks": {
  12232. "url": "https://github.com/symfony/polyfill",
  12233. "name": "symfony/polyfill"
  12234. }
  12235. },
  12236. "autoload": {
  12237. "files": [
  12238. "bootstrap.php"
  12239. ],
  12240. "psr-4": {
  12241. "Symfony\\Polyfill\\Mbstring\\": ""
  12242. }
  12243. },
  12244. "notification-url": "https://packagist.org/downloads/",
  12245. "license": [
  12246. "MIT"
  12247. ],
  12248. "authors": [
  12249. {
  12250. "name": "Nicolas Grekas",
  12251. "email": "p@tchwork.com"
  12252. },
  12253. {
  12254. "name": "Symfony Community",
  12255. "homepage": "https://symfony.com/contributors"
  12256. }
  12257. ],
  12258. "description": "Symfony polyfill for the Mbstring extension",
  12259. "homepage": "https://symfony.com",
  12260. "keywords": [
  12261. "compatibility",
  12262. "mbstring",
  12263. "polyfill",
  12264. "portable",
  12265. "shim"
  12266. ],
  12267. "support": {
  12268. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  12269. },
  12270. "funding": [
  12271. {
  12272. "url": "https://symfony.com/sponsor",
  12273. "type": "custom"
  12274. },
  12275. {
  12276. "url": "https://github.com/fabpot",
  12277. "type": "github"
  12278. },
  12279. {
  12280. "url": "https://github.com/nicolas-grekas",
  12281. "type": "github"
  12282. },
  12283. {
  12284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12285. "type": "tidelift"
  12286. }
  12287. ],
  12288. "time": "2024-12-23T08:48:59+00:00"
  12289. },
  12290. {
  12291. "name": "symfony/polyfill-php81",
  12292. "version": "v1.33.0",
  12293. "source": {
  12294. "type": "git",
  12295. "url": "https://github.com/symfony/polyfill-php81.git",
  12296. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12297. },
  12298. "dist": {
  12299. "type": "zip",
  12300. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12301. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12302. "shasum": ""
  12303. },
  12304. "require": {
  12305. "php": ">=7.2"
  12306. },
  12307. "type": "library",
  12308. "extra": {
  12309. "thanks": {
  12310. "url": "https://github.com/symfony/polyfill",
  12311. "name": "symfony/polyfill"
  12312. }
  12313. },
  12314. "autoload": {
  12315. "files": [
  12316. "bootstrap.php"
  12317. ],
  12318. "psr-4": {
  12319. "Symfony\\Polyfill\\Php81\\": ""
  12320. },
  12321. "classmap": [
  12322. "Resources/stubs"
  12323. ]
  12324. },
  12325. "notification-url": "https://packagist.org/downloads/",
  12326. "license": [
  12327. "MIT"
  12328. ],
  12329. "authors": [
  12330. {
  12331. "name": "Nicolas Grekas",
  12332. "email": "p@tchwork.com"
  12333. },
  12334. {
  12335. "name": "Symfony Community",
  12336. "homepage": "https://symfony.com/contributors"
  12337. }
  12338. ],
  12339. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12340. "homepage": "https://symfony.com",
  12341. "keywords": [
  12342. "compatibility",
  12343. "polyfill",
  12344. "portable",
  12345. "shim"
  12346. ],
  12347. "support": {
  12348. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12349. },
  12350. "funding": [
  12351. {
  12352. "url": "https://symfony.com/sponsor",
  12353. "type": "custom"
  12354. },
  12355. {
  12356. "url": "https://github.com/fabpot",
  12357. "type": "github"
  12358. },
  12359. {
  12360. "url": "https://github.com/nicolas-grekas",
  12361. "type": "github"
  12362. },
  12363. {
  12364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12365. "type": "tidelift"
  12366. }
  12367. ],
  12368. "time": "2024-09-09T11:45:10+00:00"
  12369. },
  12370. {
  12371. "name": "symfony/polyfill-php83",
  12372. "version": "v1.33.0",
  12373. "source": {
  12374. "type": "git",
  12375. "url": "https://github.com/symfony/polyfill-php83.git",
  12376. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  12377. },
  12378. "dist": {
  12379. "type": "zip",
  12380. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12381. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  12382. "shasum": ""
  12383. },
  12384. "require": {
  12385. "php": ">=7.2"
  12386. },
  12387. "type": "library",
  12388. "extra": {
  12389. "thanks": {
  12390. "url": "https://github.com/symfony/polyfill",
  12391. "name": "symfony/polyfill"
  12392. }
  12393. },
  12394. "autoload": {
  12395. "files": [
  12396. "bootstrap.php"
  12397. ],
  12398. "psr-4": {
  12399. "Symfony\\Polyfill\\Php83\\": ""
  12400. },
  12401. "classmap": [
  12402. "Resources/stubs"
  12403. ]
  12404. },
  12405. "notification-url": "https://packagist.org/downloads/",
  12406. "license": [
  12407. "MIT"
  12408. ],
  12409. "authors": [
  12410. {
  12411. "name": "Nicolas Grekas",
  12412. "email": "p@tchwork.com"
  12413. },
  12414. {
  12415. "name": "Symfony Community",
  12416. "homepage": "https://symfony.com/contributors"
  12417. }
  12418. ],
  12419. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12420. "homepage": "https://symfony.com",
  12421. "keywords": [
  12422. "compatibility",
  12423. "polyfill",
  12424. "portable",
  12425. "shim"
  12426. ],
  12427. "support": {
  12428. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  12429. },
  12430. "funding": [
  12431. {
  12432. "url": "https://symfony.com/sponsor",
  12433. "type": "custom"
  12434. },
  12435. {
  12436. "url": "https://github.com/fabpot",
  12437. "type": "github"
  12438. },
  12439. {
  12440. "url": "https://github.com/nicolas-grekas",
  12441. "type": "github"
  12442. },
  12443. {
  12444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12445. "type": "tidelift"
  12446. }
  12447. ],
  12448. "time": "2025-07-08T02:45:35+00:00"
  12449. },
  12450. {
  12451. "name": "symfony/polyfill-php84",
  12452. "version": "v1.33.0",
  12453. "source": {
  12454. "type": "git",
  12455. "url": "https://github.com/symfony/polyfill-php84.git",
  12456. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12457. },
  12458. "dist": {
  12459. "type": "zip",
  12460. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12461. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12462. "shasum": ""
  12463. },
  12464. "require": {
  12465. "php": ">=7.2"
  12466. },
  12467. "type": "library",
  12468. "extra": {
  12469. "thanks": {
  12470. "url": "https://github.com/symfony/polyfill",
  12471. "name": "symfony/polyfill"
  12472. }
  12473. },
  12474. "autoload": {
  12475. "files": [
  12476. "bootstrap.php"
  12477. ],
  12478. "psr-4": {
  12479. "Symfony\\Polyfill\\Php84\\": ""
  12480. },
  12481. "classmap": [
  12482. "Resources/stubs"
  12483. ]
  12484. },
  12485. "notification-url": "https://packagist.org/downloads/",
  12486. "license": [
  12487. "MIT"
  12488. ],
  12489. "authors": [
  12490. {
  12491. "name": "Nicolas Grekas",
  12492. "email": "p@tchwork.com"
  12493. },
  12494. {
  12495. "name": "Symfony Community",
  12496. "homepage": "https://symfony.com/contributors"
  12497. }
  12498. ],
  12499. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12500. "homepage": "https://symfony.com",
  12501. "keywords": [
  12502. "compatibility",
  12503. "polyfill",
  12504. "portable",
  12505. "shim"
  12506. ],
  12507. "support": {
  12508. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12509. },
  12510. "funding": [
  12511. {
  12512. "url": "https://symfony.com/sponsor",
  12513. "type": "custom"
  12514. },
  12515. {
  12516. "url": "https://github.com/fabpot",
  12517. "type": "github"
  12518. },
  12519. {
  12520. "url": "https://github.com/nicolas-grekas",
  12521. "type": "github"
  12522. },
  12523. {
  12524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12525. "type": "tidelift"
  12526. }
  12527. ],
  12528. "time": "2025-06-24T13:30:11+00:00"
  12529. },
  12530. {
  12531. "name": "symfony/process",
  12532. "version": "v6.4.33",
  12533. "source": {
  12534. "type": "git",
  12535. "url": "https://github.com/symfony/process.git",
  12536. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  12537. },
  12538. "dist": {
  12539. "type": "zip",
  12540. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  12541. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  12542. "shasum": ""
  12543. },
  12544. "require": {
  12545. "php": ">=8.1"
  12546. },
  12547. "type": "library",
  12548. "autoload": {
  12549. "psr-4": {
  12550. "Symfony\\Component\\Process\\": ""
  12551. },
  12552. "exclude-from-classmap": [
  12553. "/Tests/"
  12554. ]
  12555. },
  12556. "notification-url": "https://packagist.org/downloads/",
  12557. "license": [
  12558. "MIT"
  12559. ],
  12560. "authors": [
  12561. {
  12562. "name": "Fabien Potencier",
  12563. "email": "fabien@symfony.com"
  12564. },
  12565. {
  12566. "name": "Symfony Community",
  12567. "homepage": "https://symfony.com/contributors"
  12568. }
  12569. ],
  12570. "description": "Executes commands in sub-processes",
  12571. "homepage": "https://symfony.com",
  12572. "support": {
  12573. "source": "https://github.com/symfony/process/tree/v6.4.33"
  12574. },
  12575. "funding": [
  12576. {
  12577. "url": "https://symfony.com/sponsor",
  12578. "type": "custom"
  12579. },
  12580. {
  12581. "url": "https://github.com/fabpot",
  12582. "type": "github"
  12583. },
  12584. {
  12585. "url": "https://github.com/nicolas-grekas",
  12586. "type": "github"
  12587. },
  12588. {
  12589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12590. "type": "tidelift"
  12591. }
  12592. ],
  12593. "time": "2026-01-23T16:02:12+00:00"
  12594. },
  12595. {
  12596. "name": "symfony/psr-http-message-bridge",
  12597. "version": "v6.4.32",
  12598. "source": {
  12599. "type": "git",
  12600. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12601. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  12602. },
  12603. "dist": {
  12604. "type": "zip",
  12605. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  12606. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  12607. "shasum": ""
  12608. },
  12609. "require": {
  12610. "php": ">=8.1",
  12611. "psr/http-message": "^1.0|^2.0",
  12612. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12613. },
  12614. "conflict": {
  12615. "php-http/discovery": "<1.15",
  12616. "symfony/http-kernel": "<6.2"
  12617. },
  12618. "require-dev": {
  12619. "nyholm/psr7": "^1.1",
  12620. "php-http/discovery": "^1.15",
  12621. "psr/log": "^1.1.4|^2|^3",
  12622. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12623. "symfony/config": "^5.4|^6.0|^7.0",
  12624. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12625. "symfony/framework-bundle": "^6.2|^7.0",
  12626. "symfony/http-kernel": "^6.2|^7.0"
  12627. },
  12628. "type": "symfony-bridge",
  12629. "autoload": {
  12630. "psr-4": {
  12631. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12632. },
  12633. "exclude-from-classmap": [
  12634. "/Tests/"
  12635. ]
  12636. },
  12637. "notification-url": "https://packagist.org/downloads/",
  12638. "license": [
  12639. "MIT"
  12640. ],
  12641. "authors": [
  12642. {
  12643. "name": "Fabien Potencier",
  12644. "email": "fabien@symfony.com"
  12645. },
  12646. {
  12647. "name": "Symfony Community",
  12648. "homepage": "https://symfony.com/contributors"
  12649. }
  12650. ],
  12651. "description": "PSR HTTP message bridge",
  12652. "homepage": "https://symfony.com",
  12653. "keywords": [
  12654. "http",
  12655. "http-message",
  12656. "psr-17",
  12657. "psr-7"
  12658. ],
  12659. "support": {
  12660. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  12661. },
  12662. "funding": [
  12663. {
  12664. "url": "https://symfony.com/sponsor",
  12665. "type": "custom"
  12666. },
  12667. {
  12668. "url": "https://github.com/fabpot",
  12669. "type": "github"
  12670. },
  12671. {
  12672. "url": "https://github.com/nicolas-grekas",
  12673. "type": "github"
  12674. },
  12675. {
  12676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12677. "type": "tidelift"
  12678. }
  12679. ],
  12680. "time": "2026-01-02T11:59:06+00:00"
  12681. },
  12682. {
  12683. "name": "symfony/routing",
  12684. "version": "v6.4.34",
  12685. "source": {
  12686. "type": "git",
  12687. "url": "https://github.com/symfony/routing.git",
  12688. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  12689. },
  12690. "dist": {
  12691. "type": "zip",
  12692. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12693. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  12694. "shasum": ""
  12695. },
  12696. "require": {
  12697. "php": ">=8.1",
  12698. "symfony/deprecation-contracts": "^2.5|^3"
  12699. },
  12700. "conflict": {
  12701. "doctrine/annotations": "<1.12",
  12702. "symfony/config": "<6.2",
  12703. "symfony/dependency-injection": "<5.4",
  12704. "symfony/yaml": "<5.4"
  12705. },
  12706. "require-dev": {
  12707. "doctrine/annotations": "^1.12|^2",
  12708. "psr/log": "^1|^2|^3",
  12709. "symfony/config": "^6.2|^7.0",
  12710. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12711. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12712. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12713. "symfony/yaml": "^5.4|^6.0|^7.0"
  12714. },
  12715. "type": "library",
  12716. "autoload": {
  12717. "psr-4": {
  12718. "Symfony\\Component\\Routing\\": ""
  12719. },
  12720. "exclude-from-classmap": [
  12721. "/Tests/"
  12722. ]
  12723. },
  12724. "notification-url": "https://packagist.org/downloads/",
  12725. "license": [
  12726. "MIT"
  12727. ],
  12728. "authors": [
  12729. {
  12730. "name": "Fabien Potencier",
  12731. "email": "fabien@symfony.com"
  12732. },
  12733. {
  12734. "name": "Symfony Community",
  12735. "homepage": "https://symfony.com/contributors"
  12736. }
  12737. ],
  12738. "description": "Maps an HTTP request to a set of configuration variables",
  12739. "homepage": "https://symfony.com",
  12740. "keywords": [
  12741. "router",
  12742. "routing",
  12743. "uri",
  12744. "url"
  12745. ],
  12746. "support": {
  12747. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  12748. },
  12749. "funding": [
  12750. {
  12751. "url": "https://symfony.com/sponsor",
  12752. "type": "custom"
  12753. },
  12754. {
  12755. "url": "https://github.com/fabpot",
  12756. "type": "github"
  12757. },
  12758. {
  12759. "url": "https://github.com/nicolas-grekas",
  12760. "type": "github"
  12761. },
  12762. {
  12763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12764. "type": "tidelift"
  12765. }
  12766. ],
  12767. "time": "2026-02-24T17:34:50+00:00"
  12768. },
  12769. {
  12770. "name": "symfony/serializer",
  12771. "version": "v6.4.35",
  12772. "source": {
  12773. "type": "git",
  12774. "url": "https://github.com/symfony/serializer.git",
  12775. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  12776. },
  12777. "dist": {
  12778. "type": "zip",
  12779. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  12780. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  12781. "shasum": ""
  12782. },
  12783. "require": {
  12784. "php": ">=8.1",
  12785. "symfony/deprecation-contracts": "^2.5|^3",
  12786. "symfony/polyfill-ctype": "~1.8"
  12787. },
  12788. "conflict": {
  12789. "doctrine/annotations": "<1.12",
  12790. "phpdocumentor/reflection-docblock": "<3.2.2",
  12791. "phpdocumentor/type-resolver": "<1.4.0",
  12792. "symfony/dependency-injection": "<5.4",
  12793. "symfony/property-access": "<5.4",
  12794. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12795. "symfony/uid": "<5.4",
  12796. "symfony/validator": "<6.4",
  12797. "symfony/yaml": "<5.4"
  12798. },
  12799. "require-dev": {
  12800. "doctrine/annotations": "^1.12|^2",
  12801. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12802. "seld/jsonlint": "^1.10",
  12803. "symfony/cache": "^5.4|^6.0|^7.0",
  12804. "symfony/config": "^5.4|^6.0|^7.0",
  12805. "symfony/console": "^5.4|^6.0|^7.0",
  12806. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12807. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12808. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12809. "symfony/form": "^5.4|^6.0|^7.0",
  12810. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12811. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12812. "symfony/messenger": "^5.4|^6.0|^7.0",
  12813. "symfony/mime": "^5.4|^6.0|^7.0",
  12814. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12815. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12816. "symfony/translation-contracts": "^2.5|^3",
  12817. "symfony/uid": "^5.4|^6.0|^7.0",
  12818. "symfony/validator": "^6.4|^7.0",
  12819. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12820. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12821. "symfony/yaml": "^5.4|^6.0|^7.0"
  12822. },
  12823. "type": "library",
  12824. "autoload": {
  12825. "psr-4": {
  12826. "Symfony\\Component\\Serializer\\": ""
  12827. },
  12828. "exclude-from-classmap": [
  12829. "/Tests/"
  12830. ]
  12831. },
  12832. "notification-url": "https://packagist.org/downloads/",
  12833. "license": [
  12834. "MIT"
  12835. ],
  12836. "authors": [
  12837. {
  12838. "name": "Fabien Potencier",
  12839. "email": "fabien@symfony.com"
  12840. },
  12841. {
  12842. "name": "Symfony Community",
  12843. "homepage": "https://symfony.com/contributors"
  12844. }
  12845. ],
  12846. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12847. "homepage": "https://symfony.com",
  12848. "support": {
  12849. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  12850. },
  12851. "funding": [
  12852. {
  12853. "url": "https://symfony.com/sponsor",
  12854. "type": "custom"
  12855. },
  12856. {
  12857. "url": "https://github.com/fabpot",
  12858. "type": "github"
  12859. },
  12860. {
  12861. "url": "https://github.com/nicolas-grekas",
  12862. "type": "github"
  12863. },
  12864. {
  12865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12866. "type": "tidelift"
  12867. }
  12868. ],
  12869. "time": "2026-03-06T11:03:24+00:00"
  12870. },
  12871. {
  12872. "name": "symfony/service-contracts",
  12873. "version": "v3.6.1",
  12874. "source": {
  12875. "type": "git",
  12876. "url": "https://github.com/symfony/service-contracts.git",
  12877. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  12878. },
  12879. "dist": {
  12880. "type": "zip",
  12881. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  12882. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  12883. "shasum": ""
  12884. },
  12885. "require": {
  12886. "php": ">=8.1",
  12887. "psr/container": "^1.1|^2.0",
  12888. "symfony/deprecation-contracts": "^2.5|^3"
  12889. },
  12890. "conflict": {
  12891. "ext-psr": "<1.1|>=2"
  12892. },
  12893. "type": "library",
  12894. "extra": {
  12895. "thanks": {
  12896. "url": "https://github.com/symfony/contracts",
  12897. "name": "symfony/contracts"
  12898. },
  12899. "branch-alias": {
  12900. "dev-main": "3.6-dev"
  12901. }
  12902. },
  12903. "autoload": {
  12904. "psr-4": {
  12905. "Symfony\\Contracts\\Service\\": ""
  12906. },
  12907. "exclude-from-classmap": [
  12908. "/Test/"
  12909. ]
  12910. },
  12911. "notification-url": "https://packagist.org/downloads/",
  12912. "license": [
  12913. "MIT"
  12914. ],
  12915. "authors": [
  12916. {
  12917. "name": "Nicolas Grekas",
  12918. "email": "p@tchwork.com"
  12919. },
  12920. {
  12921. "name": "Symfony Community",
  12922. "homepage": "https://symfony.com/contributors"
  12923. }
  12924. ],
  12925. "description": "Generic abstractions related to writing services",
  12926. "homepage": "https://symfony.com",
  12927. "keywords": [
  12928. "abstractions",
  12929. "contracts",
  12930. "decoupling",
  12931. "interfaces",
  12932. "interoperability",
  12933. "standards"
  12934. ],
  12935. "support": {
  12936. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  12937. },
  12938. "funding": [
  12939. {
  12940. "url": "https://symfony.com/sponsor",
  12941. "type": "custom"
  12942. },
  12943. {
  12944. "url": "https://github.com/fabpot",
  12945. "type": "github"
  12946. },
  12947. {
  12948. "url": "https://github.com/nicolas-grekas",
  12949. "type": "github"
  12950. },
  12951. {
  12952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12953. "type": "tidelift"
  12954. }
  12955. ],
  12956. "time": "2025-07-15T11:30:57+00:00"
  12957. },
  12958. {
  12959. "name": "symfony/string",
  12960. "version": "v6.4.34",
  12961. "source": {
  12962. "type": "git",
  12963. "url": "https://github.com/symfony/string.git",
  12964. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  12965. },
  12966. "dist": {
  12967. "type": "zip",
  12968. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12969. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  12970. "shasum": ""
  12971. },
  12972. "require": {
  12973. "php": ">=8.1",
  12974. "symfony/polyfill-ctype": "~1.8",
  12975. "symfony/polyfill-intl-grapheme": "~1.0",
  12976. "symfony/polyfill-intl-normalizer": "~1.0",
  12977. "symfony/polyfill-mbstring": "~1.0"
  12978. },
  12979. "conflict": {
  12980. "symfony/translation-contracts": "<2.5"
  12981. },
  12982. "require-dev": {
  12983. "symfony/http-client": "^5.4|^6.0|^7.0",
  12984. "symfony/intl": "^6.2|^7.0",
  12985. "symfony/translation-contracts": "^2.5|^3.0",
  12986. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12987. },
  12988. "type": "library",
  12989. "autoload": {
  12990. "files": [
  12991. "Resources/functions.php"
  12992. ],
  12993. "psr-4": {
  12994. "Symfony\\Component\\String\\": ""
  12995. },
  12996. "exclude-from-classmap": [
  12997. "/Tests/"
  12998. ]
  12999. },
  13000. "notification-url": "https://packagist.org/downloads/",
  13001. "license": [
  13002. "MIT"
  13003. ],
  13004. "authors": [
  13005. {
  13006. "name": "Nicolas Grekas",
  13007. "email": "p@tchwork.com"
  13008. },
  13009. {
  13010. "name": "Symfony Community",
  13011. "homepage": "https://symfony.com/contributors"
  13012. }
  13013. ],
  13014. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  13015. "homepage": "https://symfony.com",
  13016. "keywords": [
  13017. "grapheme",
  13018. "i18n",
  13019. "string",
  13020. "unicode",
  13021. "utf-8",
  13022. "utf8"
  13023. ],
  13024. "support": {
  13025. "source": "https://github.com/symfony/string/tree/v6.4.34"
  13026. },
  13027. "funding": [
  13028. {
  13029. "url": "https://symfony.com/sponsor",
  13030. "type": "custom"
  13031. },
  13032. {
  13033. "url": "https://github.com/fabpot",
  13034. "type": "github"
  13035. },
  13036. {
  13037. "url": "https://github.com/nicolas-grekas",
  13038. "type": "github"
  13039. },
  13040. {
  13041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13042. "type": "tidelift"
  13043. }
  13044. ],
  13045. "time": "2026-02-08T20:44:54+00:00"
  13046. },
  13047. {
  13048. "name": "symfony/translation-contracts",
  13049. "version": "v3.6.1",
  13050. "source": {
  13051. "type": "git",
  13052. "url": "https://github.com/symfony/translation-contracts.git",
  13053. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  13054. },
  13055. "dist": {
  13056. "type": "zip",
  13057. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  13058. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  13059. "shasum": ""
  13060. },
  13061. "require": {
  13062. "php": ">=8.1"
  13063. },
  13064. "type": "library",
  13065. "extra": {
  13066. "thanks": {
  13067. "url": "https://github.com/symfony/contracts",
  13068. "name": "symfony/contracts"
  13069. },
  13070. "branch-alias": {
  13071. "dev-main": "3.6-dev"
  13072. }
  13073. },
  13074. "autoload": {
  13075. "psr-4": {
  13076. "Symfony\\Contracts\\Translation\\": ""
  13077. },
  13078. "exclude-from-classmap": [
  13079. "/Test/"
  13080. ]
  13081. },
  13082. "notification-url": "https://packagist.org/downloads/",
  13083. "license": [
  13084. "MIT"
  13085. ],
  13086. "authors": [
  13087. {
  13088. "name": "Nicolas Grekas",
  13089. "email": "p@tchwork.com"
  13090. },
  13091. {
  13092. "name": "Symfony Community",
  13093. "homepage": "https://symfony.com/contributors"
  13094. }
  13095. ],
  13096. "description": "Generic abstractions related to translation",
  13097. "homepage": "https://symfony.com",
  13098. "keywords": [
  13099. "abstractions",
  13100. "contracts",
  13101. "decoupling",
  13102. "interfaces",
  13103. "interoperability",
  13104. "standards"
  13105. ],
  13106. "support": {
  13107. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  13108. },
  13109. "funding": [
  13110. {
  13111. "url": "https://symfony.com/sponsor",
  13112. "type": "custom"
  13113. },
  13114. {
  13115. "url": "https://github.com/fabpot",
  13116. "type": "github"
  13117. },
  13118. {
  13119. "url": "https://github.com/nicolas-grekas",
  13120. "type": "github"
  13121. },
  13122. {
  13123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13124. "type": "tidelift"
  13125. }
  13126. ],
  13127. "time": "2025-07-15T13:41:35+00:00"
  13128. },
  13129. {
  13130. "name": "symfony/validator",
  13131. "version": "v6.4.35",
  13132. "source": {
  13133. "type": "git",
  13134. "url": "https://github.com/symfony/validator.git",
  13135. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  13136. },
  13137. "dist": {
  13138. "type": "zip",
  13139. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13140. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  13141. "shasum": ""
  13142. },
  13143. "require": {
  13144. "php": ">=8.1",
  13145. "symfony/deprecation-contracts": "^2.5|^3",
  13146. "symfony/polyfill-ctype": "~1.8",
  13147. "symfony/polyfill-mbstring": "~1.0",
  13148. "symfony/polyfill-php83": "^1.27",
  13149. "symfony/translation-contracts": "^2.5|^3"
  13150. },
  13151. "conflict": {
  13152. "doctrine/annotations": "<1.13",
  13153. "doctrine/lexer": "<1.1",
  13154. "symfony/dependency-injection": "<5.4",
  13155. "symfony/expression-language": "<5.4",
  13156. "symfony/http-kernel": "<5.4",
  13157. "symfony/intl": "<5.4",
  13158. "symfony/property-info": "<5.4",
  13159. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13160. "symfony/yaml": "<5.4"
  13161. },
  13162. "require-dev": {
  13163. "doctrine/annotations": "^1.13|^2",
  13164. "egulias/email-validator": "^2.1.10|^3|^4",
  13165. "symfony/cache": "^5.4|^6.0|^7.0",
  13166. "symfony/config": "^5.4|^6.0|^7.0",
  13167. "symfony/console": "^5.4|^6.0|^7.0",
  13168. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13169. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13170. "symfony/finder": "^5.4|^6.0|^7.0",
  13171. "symfony/http-client": "^5.4|^6.0|^7.0",
  13172. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13173. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13174. "symfony/intl": "^5.4|^6.0|^7.0",
  13175. "symfony/mime": "^5.4|^6.0|^7.0",
  13176. "symfony/property-access": "^5.4|^6.0|^7.0",
  13177. "symfony/property-info": "^5.4|^6.0|^7.0",
  13178. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13179. "symfony/yaml": "^5.4|^6.0|^7.0"
  13180. },
  13181. "type": "library",
  13182. "autoload": {
  13183. "psr-4": {
  13184. "Symfony\\Component\\Validator\\": ""
  13185. },
  13186. "exclude-from-classmap": [
  13187. "/Tests/",
  13188. "/Resources/bin/"
  13189. ]
  13190. },
  13191. "notification-url": "https://packagist.org/downloads/",
  13192. "license": [
  13193. "MIT"
  13194. ],
  13195. "authors": [
  13196. {
  13197. "name": "Fabien Potencier",
  13198. "email": "fabien@symfony.com"
  13199. },
  13200. {
  13201. "name": "Symfony Community",
  13202. "homepage": "https://symfony.com/contributors"
  13203. }
  13204. ],
  13205. "description": "Provides tools to validate values",
  13206. "homepage": "https://symfony.com",
  13207. "support": {
  13208. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  13209. },
  13210. "funding": [
  13211. {
  13212. "url": "https://symfony.com/sponsor",
  13213. "type": "custom"
  13214. },
  13215. {
  13216. "url": "https://github.com/fabpot",
  13217. "type": "github"
  13218. },
  13219. {
  13220. "url": "https://github.com/nicolas-grekas",
  13221. "type": "github"
  13222. },
  13223. {
  13224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13225. "type": "tidelift"
  13226. }
  13227. ],
  13228. "time": "2026-03-02T17:53:19+00:00"
  13229. },
  13230. {
  13231. "name": "symfony/var-dumper",
  13232. "version": "v6.4.32",
  13233. "source": {
  13234. "type": "git",
  13235. "url": "https://github.com/symfony/var-dumper.git",
  13236. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  13237. },
  13238. "dist": {
  13239. "type": "zip",
  13240. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  13241. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  13242. "shasum": ""
  13243. },
  13244. "require": {
  13245. "php": ">=8.1",
  13246. "symfony/deprecation-contracts": "^2.5|^3",
  13247. "symfony/polyfill-mbstring": "~1.0"
  13248. },
  13249. "conflict": {
  13250. "symfony/console": "<5.4"
  13251. },
  13252. "require-dev": {
  13253. "symfony/console": "^5.4|^6.0|^7.0",
  13254. "symfony/error-handler": "^6.3|^7.0",
  13255. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13256. "symfony/process": "^5.4|^6.0|^7.0",
  13257. "symfony/uid": "^5.4|^6.0|^7.0",
  13258. "twig/twig": "^2.13|^3.0.4"
  13259. },
  13260. "bin": [
  13261. "Resources/bin/var-dump-server"
  13262. ],
  13263. "type": "library",
  13264. "autoload": {
  13265. "files": [
  13266. "Resources/functions/dump.php"
  13267. ],
  13268. "psr-4": {
  13269. "Symfony\\Component\\VarDumper\\": ""
  13270. },
  13271. "exclude-from-classmap": [
  13272. "/Tests/"
  13273. ]
  13274. },
  13275. "notification-url": "https://packagist.org/downloads/",
  13276. "license": [
  13277. "MIT"
  13278. ],
  13279. "authors": [
  13280. {
  13281. "name": "Nicolas Grekas",
  13282. "email": "p@tchwork.com"
  13283. },
  13284. {
  13285. "name": "Symfony Community",
  13286. "homepage": "https://symfony.com/contributors"
  13287. }
  13288. ],
  13289. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13290. "homepage": "https://symfony.com",
  13291. "keywords": [
  13292. "debug",
  13293. "dump"
  13294. ],
  13295. "support": {
  13296. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  13297. },
  13298. "funding": [
  13299. {
  13300. "url": "https://symfony.com/sponsor",
  13301. "type": "custom"
  13302. },
  13303. {
  13304. "url": "https://github.com/fabpot",
  13305. "type": "github"
  13306. },
  13307. {
  13308. "url": "https://github.com/nicolas-grekas",
  13309. "type": "github"
  13310. },
  13311. {
  13312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13313. "type": "tidelift"
  13314. }
  13315. ],
  13316. "time": "2026-01-01T13:34:06+00:00"
  13317. },
  13318. {
  13319. "name": "symfony/var-exporter",
  13320. "version": "v6.4.26",
  13321. "source": {
  13322. "type": "git",
  13323. "url": "https://github.com/symfony/var-exporter.git",
  13324. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13325. },
  13326. "dist": {
  13327. "type": "zip",
  13328. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13329. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13330. "shasum": ""
  13331. },
  13332. "require": {
  13333. "php": ">=8.1",
  13334. "symfony/deprecation-contracts": "^2.5|^3"
  13335. },
  13336. "require-dev": {
  13337. "symfony/property-access": "^6.4|^7.0",
  13338. "symfony/serializer": "^6.4|^7.0",
  13339. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13340. },
  13341. "type": "library",
  13342. "autoload": {
  13343. "psr-4": {
  13344. "Symfony\\Component\\VarExporter\\": ""
  13345. },
  13346. "exclude-from-classmap": [
  13347. "/Tests/"
  13348. ]
  13349. },
  13350. "notification-url": "https://packagist.org/downloads/",
  13351. "license": [
  13352. "MIT"
  13353. ],
  13354. "authors": [
  13355. {
  13356. "name": "Nicolas Grekas",
  13357. "email": "p@tchwork.com"
  13358. },
  13359. {
  13360. "name": "Symfony Community",
  13361. "homepage": "https://symfony.com/contributors"
  13362. }
  13363. ],
  13364. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13365. "homepage": "https://symfony.com",
  13366. "keywords": [
  13367. "clone",
  13368. "construct",
  13369. "export",
  13370. "hydrate",
  13371. "instantiate",
  13372. "lazy-loading",
  13373. "proxy",
  13374. "serialize"
  13375. ],
  13376. "support": {
  13377. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13378. },
  13379. "funding": [
  13380. {
  13381. "url": "https://symfony.com/sponsor",
  13382. "type": "custom"
  13383. },
  13384. {
  13385. "url": "https://github.com/fabpot",
  13386. "type": "github"
  13387. },
  13388. {
  13389. "url": "https://github.com/nicolas-grekas",
  13390. "type": "github"
  13391. },
  13392. {
  13393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13394. "type": "tidelift"
  13395. }
  13396. ],
  13397. "time": "2025-09-11T09:57:09+00:00"
  13398. },
  13399. {
  13400. "name": "symfony/yaml",
  13401. "version": "v6.4.34",
  13402. "source": {
  13403. "type": "git",
  13404. "url": "https://github.com/symfony/yaml.git",
  13405. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  13406. },
  13407. "dist": {
  13408. "type": "zip",
  13409. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13410. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  13411. "shasum": ""
  13412. },
  13413. "require": {
  13414. "php": ">=8.1",
  13415. "symfony/deprecation-contracts": "^2.5|^3",
  13416. "symfony/polyfill-ctype": "^1.8"
  13417. },
  13418. "conflict": {
  13419. "symfony/console": "<5.4"
  13420. },
  13421. "require-dev": {
  13422. "symfony/console": "^5.4|^6.0|^7.0"
  13423. },
  13424. "bin": [
  13425. "Resources/bin/yaml-lint"
  13426. ],
  13427. "type": "library",
  13428. "autoload": {
  13429. "psr-4": {
  13430. "Symfony\\Component\\Yaml\\": ""
  13431. },
  13432. "exclude-from-classmap": [
  13433. "/Tests/"
  13434. ]
  13435. },
  13436. "notification-url": "https://packagist.org/downloads/",
  13437. "license": [
  13438. "MIT"
  13439. ],
  13440. "authors": [
  13441. {
  13442. "name": "Fabien Potencier",
  13443. "email": "fabien@symfony.com"
  13444. },
  13445. {
  13446. "name": "Symfony Community",
  13447. "homepage": "https://symfony.com/contributors"
  13448. }
  13449. ],
  13450. "description": "Loads and dumps YAML files",
  13451. "homepage": "https://symfony.com",
  13452. "support": {
  13453. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  13454. },
  13455. "funding": [
  13456. {
  13457. "url": "https://symfony.com/sponsor",
  13458. "type": "custom"
  13459. },
  13460. {
  13461. "url": "https://github.com/fabpot",
  13462. "type": "github"
  13463. },
  13464. {
  13465. "url": "https://github.com/nicolas-grekas",
  13466. "type": "github"
  13467. },
  13468. {
  13469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13470. "type": "tidelift"
  13471. }
  13472. ],
  13473. "time": "2026-02-06T18:32:11+00:00"
  13474. },
  13475. {
  13476. "name": "twig/twig",
  13477. "version": "v3.22.2",
  13478. "source": {
  13479. "type": "git",
  13480. "url": "https://github.com/twigphp/Twig.git",
  13481. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  13482. },
  13483. "dist": {
  13484. "type": "zip",
  13485. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13486. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  13487. "shasum": ""
  13488. },
  13489. "require": {
  13490. "php": ">=8.1.0",
  13491. "symfony/deprecation-contracts": "^2.5|^3",
  13492. "symfony/polyfill-ctype": "^1.8",
  13493. "symfony/polyfill-mbstring": "^1.3"
  13494. },
  13495. "require-dev": {
  13496. "phpstan/phpstan": "^2.0",
  13497. "psr/container": "^1.0|^2.0",
  13498. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13499. },
  13500. "type": "library",
  13501. "autoload": {
  13502. "files": [
  13503. "src/Resources/core.php",
  13504. "src/Resources/debug.php",
  13505. "src/Resources/escaper.php",
  13506. "src/Resources/string_loader.php"
  13507. ],
  13508. "psr-4": {
  13509. "Twig\\": "src/"
  13510. }
  13511. },
  13512. "notification-url": "https://packagist.org/downloads/",
  13513. "license": [
  13514. "BSD-3-Clause"
  13515. ],
  13516. "authors": [
  13517. {
  13518. "name": "Fabien Potencier",
  13519. "email": "fabien@symfony.com",
  13520. "homepage": "http://fabien.potencier.org",
  13521. "role": "Lead Developer"
  13522. },
  13523. {
  13524. "name": "Twig Team",
  13525. "role": "Contributors"
  13526. },
  13527. {
  13528. "name": "Armin Ronacher",
  13529. "email": "armin.ronacher@active-4.com",
  13530. "role": "Project Founder"
  13531. }
  13532. ],
  13533. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13534. "homepage": "https://twig.symfony.com",
  13535. "keywords": [
  13536. "templating"
  13537. ],
  13538. "support": {
  13539. "issues": "https://github.com/twigphp/Twig/issues",
  13540. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  13541. },
  13542. "funding": [
  13543. {
  13544. "url": "https://github.com/fabpot",
  13545. "type": "github"
  13546. },
  13547. {
  13548. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13549. "type": "tidelift"
  13550. }
  13551. ],
  13552. "time": "2025-12-14T11:28:47+00:00"
  13553. },
  13554. {
  13555. "name": "webflo/drupal-finder",
  13556. "version": "1.3.1",
  13557. "source": {
  13558. "type": "git",
  13559. "url": "https://github.com/webflo/drupal-finder.git",
  13560. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13561. },
  13562. "dist": {
  13563. "type": "zip",
  13564. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13565. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13566. "shasum": ""
  13567. },
  13568. "require": {
  13569. "composer-runtime-api": "^2.2",
  13570. "php": ">=8.1"
  13571. },
  13572. "require-dev": {
  13573. "mikey179/vfsstream": "^1.6",
  13574. "phpunit/phpunit": "^10.4",
  13575. "symfony/process": "^6.4"
  13576. },
  13577. "type": "library",
  13578. "autoload": {
  13579. "psr-4": {
  13580. "DrupalFinder\\": "src/"
  13581. }
  13582. },
  13583. "notification-url": "https://packagist.org/downloads/",
  13584. "license": [
  13585. "GPL-2.0-or-later"
  13586. ],
  13587. "authors": [
  13588. {
  13589. "name": "Florian Weber",
  13590. "email": "florian@webflo.org"
  13591. }
  13592. ],
  13593. "description": "Helper class to locate a Drupal installation.",
  13594. "support": {
  13595. "issues": "https://github.com/webflo/drupal-finder/issues",
  13596. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13597. },
  13598. "time": "2024-06-28T13:45:36+00:00"
  13599. },
  13600. {
  13601. "name": "wikimedia/composer-merge-plugin",
  13602. "version": "v2.1.0",
  13603. "source": {
  13604. "type": "git",
  13605. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13606. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13607. },
  13608. "dist": {
  13609. "type": "zip",
  13610. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13611. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13612. "shasum": ""
  13613. },
  13614. "require": {
  13615. "composer-plugin-api": "^1.1||^2.0",
  13616. "php": ">=7.2.0"
  13617. },
  13618. "require-dev": {
  13619. "composer/composer": "^1.1||^2.0",
  13620. "ext-json": "*",
  13621. "mediawiki/mediawiki-phan-config": "0.11.1",
  13622. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13623. "phpspec/prophecy": "~1.15.0",
  13624. "phpunit/phpunit": "^8.5||^9.0",
  13625. "squizlabs/php_codesniffer": "~3.7.1"
  13626. },
  13627. "type": "composer-plugin",
  13628. "extra": {
  13629. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13630. "branch-alias": {
  13631. "dev-master": "2.x-dev"
  13632. }
  13633. },
  13634. "autoload": {
  13635. "psr-4": {
  13636. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13637. }
  13638. },
  13639. "notification-url": "https://packagist.org/downloads/",
  13640. "license": [
  13641. "MIT"
  13642. ],
  13643. "authors": [
  13644. {
  13645. "name": "Bryan Davis",
  13646. "email": "bd808@wikimedia.org"
  13647. }
  13648. ],
  13649. "description": "Composer plugin to merge multiple composer.json files",
  13650. "support": {
  13651. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13652. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13653. },
  13654. "time": "2023-04-15T19:07:00+00:00"
  13655. },
  13656. {
  13657. "name": "willdurand/geocoder",
  13658. "version": "5.0.0",
  13659. "source": {
  13660. "type": "git",
  13661. "url": "https://github.com/geocoder-php/php-common.git",
  13662. "reference": "a749e00819d2929bd0ec40fb79853956332970ba"
  13663. },
  13664. "dist": {
  13665. "type": "zip",
  13666. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/a749e00819d2929bd0ec40fb79853956332970ba",
  13667. "reference": "a749e00819d2929bd0ec40fb79853956332970ba",
  13668. "shasum": ""
  13669. },
  13670. "require": {
  13671. "php": ">=8.2"
  13672. },
  13673. "require-dev": {
  13674. "nyholm/nsa": "^1.1",
  13675. "phpunit/phpunit": "^9.5",
  13676. "symfony/stopwatch": "~2.5 || ~5.0"
  13677. },
  13678. "suggest": {
  13679. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13680. },
  13681. "type": "library",
  13682. "extra": {
  13683. "branch-alias": {
  13684. "dev-master": "5.1-dev"
  13685. }
  13686. },
  13687. "autoload": {
  13688. "psr-4": {
  13689. "Geocoder\\": ""
  13690. },
  13691. "exclude-from-classmap": [
  13692. "/Tests/"
  13693. ]
  13694. },
  13695. "notification-url": "https://packagist.org/downloads/",
  13696. "license": [
  13697. "MIT"
  13698. ],
  13699. "authors": [
  13700. {
  13701. "name": "William Durand",
  13702. "email": "william.durand1@gmail.com"
  13703. }
  13704. ],
  13705. "description": "Common files for PHP Geocoder",
  13706. "homepage": "http://geocoder-php.org",
  13707. "keywords": [
  13708. "abstraction",
  13709. "geocoder",
  13710. "geocoding",
  13711. "geoip"
  13712. ],
  13713. "support": {
  13714. "source": "https://github.com/geocoder-php/php-common/tree/5.0.0"
  13715. },
  13716. "time": "2025-01-01T15:52:42+00:00"
  13717. }
  13718. ],
  13719. "packages-dev": [],
  13720. "aliases": [],
  13721. "minimum-stability": "stable",
  13722. "stability-flags": {
  13723. "drupal/advanced_text_formatter": 5,
  13724. "drupal/computed_token_field": 10,
  13725. "drupal/config_update": 15,
  13726. "drupal/context": 5,
  13727. "drupal/date_range_formatter": 20,
  13728. "drupal/email_registration": 5,
  13729. "drupal/entity_clone": 20,
  13730. "drupal/inline_entity_form": 5,
  13731. "drupal/page_manager": 5,
  13732. "drupal/pathologic": 15,
  13733. "drupal/smtp": 10,
  13734. "drupal/synonyms": 10,
  13735. "drupal/translation_views": 15,
  13736. "drupal/ultimate_cron": 15
  13737. },
  13738. "prefer-stable": true,
  13739. "prefer-lowest": false,
  13740. "platform": {},
  13741. "platform-dev": {},
  13742. "plugin-api-version": "2.9.0"
  13743. }