composer.lock 500 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623
  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": "56f475aa59e6258701b645396adaf71f",
  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": "commerceguys/addressing",
  127. "version": "v1.4.2",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/commerceguys/addressing.git",
  131. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  136. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "doctrine/collections": "^1.2 || ^2.0",
  141. "php": ">=7.3"
  142. },
  143. "require-dev": {
  144. "ext-json": "*",
  145. "mikey179/vfsstream": "^1.6.10",
  146. "phpunit/phpunit": "^9.5",
  147. "squizlabs/php_codesniffer": "^3.6",
  148. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  149. },
  150. "suggest": {
  151. "symfony/validator": "to validate addresses"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "CommerceGuys\\Addressing\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Bojan Zivanovic"
  171. },
  172. {
  173. "name": "Damien Tournoud"
  174. }
  175. ],
  176. "description": "Addressing library powered by CLDR and Google's address data.",
  177. "keywords": [
  178. "address",
  179. "internationalization",
  180. "localization",
  181. "postal"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/commerceguys/addressing/issues",
  185. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  186. },
  187. "time": "2023-02-15T10:11:14+00:00"
  188. },
  189. {
  190. "name": "components/highlightjs",
  191. "version": "9.7.0",
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  195. },
  196. "type": "drupal-library"
  197. },
  198. {
  199. "name": "composer/installers",
  200. "version": "v2.2.0",
  201. "source": {
  202. "type": "git",
  203. "url": "https://github.com/composer/installers.git",
  204. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  205. },
  206. "dist": {
  207. "type": "zip",
  208. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  209. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "shasum": ""
  211. },
  212. "require": {
  213. "composer-plugin-api": "^1.0 || ^2.0",
  214. "php": "^7.2 || ^8.0"
  215. },
  216. "require-dev": {
  217. "composer/composer": "1.6.* || ^2.0",
  218. "composer/semver": "^1 || ^3",
  219. "phpstan/phpstan": "^0.12.55",
  220. "phpstan/phpstan-phpunit": "^0.12.16",
  221. "symfony/phpunit-bridge": "^5.3",
  222. "symfony/process": "^5"
  223. },
  224. "type": "composer-plugin",
  225. "extra": {
  226. "class": "Composer\\Installers\\Plugin",
  227. "branch-alias": {
  228. "dev-main": "2.x-dev"
  229. },
  230. "plugin-modifies-install-path": true
  231. },
  232. "autoload": {
  233. "psr-4": {
  234. "Composer\\Installers\\": "src/Composer/Installers"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Kyle Robinson Young",
  244. "email": "kyle@dontkry.com",
  245. "homepage": "https://github.com/shama"
  246. }
  247. ],
  248. "description": "A multi-framework Composer library installer",
  249. "homepage": "https://composer.github.io/installers/",
  250. "keywords": [
  251. "Dolibarr",
  252. "Eliasis",
  253. "Hurad",
  254. "ImageCMS",
  255. "Kanboard",
  256. "Lan Management System",
  257. "MODX Evo",
  258. "MantisBT",
  259. "Mautic",
  260. "Maya",
  261. "OXID",
  262. "Plentymarkets",
  263. "Porto",
  264. "RadPHP",
  265. "SMF",
  266. "Starbug",
  267. "Thelia",
  268. "Whmcs",
  269. "WolfCMS",
  270. "agl",
  271. "annotatecms",
  272. "attogram",
  273. "bitrix",
  274. "cakephp",
  275. "chef",
  276. "cockpit",
  277. "codeigniter",
  278. "concrete5",
  279. "croogo",
  280. "dokuwiki",
  281. "drupal",
  282. "eZ Platform",
  283. "elgg",
  284. "expressionengine",
  285. "fuelphp",
  286. "grav",
  287. "installer",
  288. "itop",
  289. "known",
  290. "kohana",
  291. "laravel",
  292. "lavalite",
  293. "lithium",
  294. "magento",
  295. "majima",
  296. "mako",
  297. "matomo",
  298. "mediawiki",
  299. "miaoxing",
  300. "modulework",
  301. "modx",
  302. "moodle",
  303. "osclass",
  304. "pantheon",
  305. "phpbb",
  306. "piwik",
  307. "ppi",
  308. "processwire",
  309. "puppet",
  310. "pxcms",
  311. "reindex",
  312. "roundcube",
  313. "shopware",
  314. "silverstripe",
  315. "sydes",
  316. "sylius",
  317. "tastyigniter",
  318. "wordpress",
  319. "yawik",
  320. "zend",
  321. "zikula"
  322. ],
  323. "support": {
  324. "issues": "https://github.com/composer/installers/issues",
  325. "source": "https://github.com/composer/installers/tree/v2.2.0"
  326. },
  327. "funding": [
  328. {
  329. "url": "https://packagist.com",
  330. "type": "custom"
  331. },
  332. {
  333. "url": "https://github.com/composer",
  334. "type": "github"
  335. },
  336. {
  337. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  338. "type": "tidelift"
  339. }
  340. ],
  341. "time": "2022-08-20T06:45:11+00:00"
  342. },
  343. {
  344. "name": "composer/semver",
  345. "version": "3.4.4",
  346. "source": {
  347. "type": "git",
  348. "url": "https://github.com/composer/semver.git",
  349. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  350. },
  351. "dist": {
  352. "type": "zip",
  353. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  354. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  355. "shasum": ""
  356. },
  357. "require": {
  358. "php": "^5.3.2 || ^7.0 || ^8.0"
  359. },
  360. "require-dev": {
  361. "phpstan/phpstan": "^1.11",
  362. "symfony/phpunit-bridge": "^3 || ^7"
  363. },
  364. "type": "library",
  365. "extra": {
  366. "branch-alias": {
  367. "dev-main": "3.x-dev"
  368. }
  369. },
  370. "autoload": {
  371. "psr-4": {
  372. "Composer\\Semver\\": "src"
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "MIT"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Nils Adermann",
  382. "email": "naderman@naderman.de",
  383. "homepage": "http://www.naderman.de"
  384. },
  385. {
  386. "name": "Jordi Boggiano",
  387. "email": "j.boggiano@seld.be",
  388. "homepage": "http://seld.be"
  389. },
  390. {
  391. "name": "Rob Bast",
  392. "email": "rob.bast@gmail.com",
  393. "homepage": "http://robbast.nl"
  394. }
  395. ],
  396. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  397. "keywords": [
  398. "semantic",
  399. "semver",
  400. "validation",
  401. "versioning"
  402. ],
  403. "support": {
  404. "irc": "ircs://irc.libera.chat:6697/composer",
  405. "issues": "https://github.com/composer/semver/issues",
  406. "source": "https://github.com/composer/semver/tree/3.4.4"
  407. },
  408. "funding": [
  409. {
  410. "url": "https://packagist.com",
  411. "type": "custom"
  412. },
  413. {
  414. "url": "https://github.com/composer",
  415. "type": "github"
  416. }
  417. ],
  418. "time": "2025-08-20T19:15:30+00:00"
  419. },
  420. {
  421. "name": "consolidation/annotated-command",
  422. "version": "4.10.2",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/consolidation/annotated-command.git",
  426. "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e550ea4f177f199e0e9451168342bf3f321d92b0",
  431. "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "consolidation/output-formatters": "^4.3.1",
  436. "php": ">=7.1.3",
  437. "psr/log": "^1 || ^2 || ^3",
  438. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  439. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  440. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  441. },
  442. "require-dev": {
  443. "composer-runtime-api": "^2.0",
  444. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  445. "squizlabs/php_codesniffer": "^3",
  446. "yoast/phpunit-polyfills": "^0.2.0"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "branch-alias": {
  451. "dev-main": "4.x-dev"
  452. }
  453. },
  454. "autoload": {
  455. "psr-4": {
  456. "Consolidation\\AnnotatedCommand\\": "src"
  457. }
  458. },
  459. "notification-url": "https://packagist.org/downloads/",
  460. "license": [
  461. "MIT"
  462. ],
  463. "authors": [
  464. {
  465. "name": "Greg Anderson",
  466. "email": "greg.1.anderson@greenknowe.org"
  467. }
  468. ],
  469. "description": "Initialize Symfony Console commands from annotated command class methods.",
  470. "support": {
  471. "issues": "https://github.com/consolidation/annotated-command/issues",
  472. "source": "https://github.com/consolidation/annotated-command/tree/4.10.2"
  473. },
  474. "time": "2025-07-16T20:54:09+00:00"
  475. },
  476. {
  477. "name": "consolidation/config",
  478. "version": "2.1.2",
  479. "source": {
  480. "type": "git",
  481. "url": "https://github.com/consolidation/config.git",
  482. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  483. },
  484. "dist": {
  485. "type": "zip",
  486. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  488. "shasum": ""
  489. },
  490. "require": {
  491. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  492. "grasmash/expander": "^2.0.1 || ^3",
  493. "php": ">=7.1.3",
  494. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  495. },
  496. "require-dev": {
  497. "ext-json": "*",
  498. "phpunit/phpunit": ">=7.5.20",
  499. "squizlabs/php_codesniffer": "^3",
  500. "symfony/console": "^4 || ^5 || ^6",
  501. "symfony/yaml": "^4 || ^5 || ^6",
  502. "yoast/phpunit-polyfills": "^1"
  503. },
  504. "suggest": {
  505. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  506. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  507. },
  508. "type": "library",
  509. "extra": {
  510. "branch-alias": {
  511. "dev-main": "2.x-dev"
  512. }
  513. },
  514. "autoload": {
  515. "psr-4": {
  516. "Consolidation\\Config\\": "src"
  517. }
  518. },
  519. "notification-url": "https://packagist.org/downloads/",
  520. "license": [
  521. "MIT"
  522. ],
  523. "authors": [
  524. {
  525. "name": "Greg Anderson",
  526. "email": "greg.1.anderson@greenknowe.org"
  527. }
  528. ],
  529. "description": "Provide configuration services for a commandline tool.",
  530. "support": {
  531. "issues": "https://github.com/consolidation/config/issues",
  532. "source": "https://github.com/consolidation/config/tree/2.1.2"
  533. },
  534. "time": "2022-10-06T17:48:03+00:00"
  535. },
  536. {
  537. "name": "consolidation/filter-via-dot-access-data",
  538. "version": "2.0.2",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  542. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  548. "shasum": ""
  549. },
  550. "require": {
  551. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  552. "php": ">=7.1.3"
  553. },
  554. "require-dev": {
  555. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  556. "squizlabs/php_codesniffer": "^3",
  557. "yoast/phpunit-polyfills": "^0.2.0"
  558. },
  559. "type": "library",
  560. "extra": {
  561. "branch-alias": {
  562. "dev-main": "2.x-dev"
  563. }
  564. },
  565. "autoload": {
  566. "psr-4": {
  567. "Consolidation\\Filter\\": "src"
  568. }
  569. },
  570. "notification-url": "https://packagist.org/downloads/",
  571. "license": [
  572. "MIT"
  573. ],
  574. "authors": [
  575. {
  576. "name": "Greg Anderson",
  577. "email": "greg.1.anderson@greenknowe.org"
  578. }
  579. ],
  580. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  581. "support": {
  582. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  583. },
  584. "time": "2021-12-30T03:56:08+00:00"
  585. },
  586. {
  587. "name": "consolidation/log",
  588. "version": "3.1.0",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/consolidation/log.git",
  592. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
  597. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "php": ">=8.0.0",
  602. "psr/log": "^3",
  603. "symfony/console": "^5 || ^6 || ^7"
  604. },
  605. "require-dev": {
  606. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  607. "squizlabs/php_codesniffer": "^3",
  608. "yoast/phpunit-polyfills": "^0.2.0"
  609. },
  610. "type": "library",
  611. "extra": {
  612. "platform": {
  613. "php": "8.2.17"
  614. }
  615. },
  616. "autoload": {
  617. "psr-4": {
  618. "Consolidation\\Log\\": "src"
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "Greg Anderson",
  628. "email": "greg.1.anderson@greenknowe.org"
  629. }
  630. ],
  631. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  632. "support": {
  633. "issues": "https://github.com/consolidation/log/issues",
  634. "source": "https://github.com/consolidation/log/tree/3.1.0"
  635. },
  636. "time": "2024-04-04T23:50:25+00:00"
  637. },
  638. {
  639. "name": "consolidation/output-formatters",
  640. "version": "4.6.1",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/consolidation/output-formatters.git",
  644. "reference": "b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d",
  649. "reference": "b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d",
  650. "shasum": ""
  651. },
  652. "require": {
  653. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  654. "php": ">=7.1.3",
  655. "symfony/console": "^4 || ^5 || ^6 || ^7",
  656. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  657. },
  658. "require-dev": {
  659. "php-coveralls/php-coveralls": "^2.4.2",
  660. "phpunit/phpunit": "^7 || ^8 || ^9",
  661. "squizlabs/php_codesniffer": "^3",
  662. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  663. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  664. "yoast/phpunit-polyfills": "^1"
  665. },
  666. "suggest": {
  667. "symfony/var-dumper": "For using the var_dump formatter"
  668. },
  669. "type": "library",
  670. "autoload": {
  671. "psr-4": {
  672. "Consolidation\\OutputFormatters\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Greg Anderson",
  682. "email": "greg.1.anderson@greenknowe.org"
  683. }
  684. ],
  685. "description": "Format text by applying transformations provided by plug-in formatters.",
  686. "support": {
  687. "issues": "https://github.com/consolidation/output-formatters/issues",
  688. "source": "https://github.com/consolidation/output-formatters/tree/4.6.1"
  689. },
  690. "time": "2024-12-13T18:38:45+00:00"
  691. },
  692. {
  693. "name": "consolidation/robo",
  694. "version": "4.0.6",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/consolidation/robo.git",
  698. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "consolidation/annotated-command": "^4.8.1",
  708. "consolidation/config": "^2.0.1",
  709. "consolidation/log": "^2.0.2 || ^3",
  710. "consolidation/output-formatters": "^4.1.2",
  711. "consolidation/self-update": "^2.0",
  712. "league/container": "^3.3.1 || ^4.0",
  713. "php": ">=8.0",
  714. "phpowermove/docblock": "^4.0",
  715. "symfony/console": "^6",
  716. "symfony/event-dispatcher": "^6",
  717. "symfony/filesystem": "^6",
  718. "symfony/finder": "^6",
  719. "symfony/process": "^6",
  720. "symfony/yaml": "^6"
  721. },
  722. "conflict": {
  723. "codegyre/robo": "*"
  724. },
  725. "require-dev": {
  726. "natxet/cssmin": "3.0.4",
  727. "patchwork/jsqueeze": "^2",
  728. "pear/archive_tar": "^1.4.4",
  729. "phpunit/phpunit": "^7.5.20 || ^8",
  730. "squizlabs/php_codesniffer": "^3.6",
  731. "yoast/phpunit-polyfills": "^0.2.0"
  732. },
  733. "suggest": {
  734. "natxet/cssmin": "For minifying CSS files in taskMinify",
  735. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  736. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  737. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  738. },
  739. "bin": [
  740. "robo"
  741. ],
  742. "type": "library",
  743. "autoload": {
  744. "psr-4": {
  745. "Robo\\": "src"
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Davert",
  755. "email": "davert.php@resend.cc"
  756. }
  757. ],
  758. "description": "Modern task runner",
  759. "support": {
  760. "issues": "https://github.com/consolidation/robo/issues",
  761. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  762. },
  763. "time": "2023-04-30T21:49:04+00:00"
  764. },
  765. {
  766. "name": "consolidation/self-update",
  767. "version": "2.2.0",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/consolidation/self-update.git",
  771. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "composer/semver": "^3.2",
  781. "php": ">=5.5.0",
  782. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  783. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  784. },
  785. "bin": [
  786. "scripts/release"
  787. ],
  788. "type": "library",
  789. "extra": {
  790. "branch-alias": {
  791. "dev-main": "2.x-dev"
  792. }
  793. },
  794. "autoload": {
  795. "psr-4": {
  796. "SelfUpdate\\": "src"
  797. }
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Alexander Menk",
  806. "email": "menk@mestrona.net"
  807. },
  808. {
  809. "name": "Greg Anderson",
  810. "email": "greg.1.anderson@greenknowe.org"
  811. }
  812. ],
  813. "description": "Provides a self:update command for Symfony Console applications.",
  814. "support": {
  815. "issues": "https://github.com/consolidation/self-update/issues",
  816. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  817. },
  818. "time": "2023-03-18T01:37:41+00:00"
  819. },
  820. {
  821. "name": "consolidation/site-alias",
  822. "version": "4.1.1",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/consolidation/site-alias.git",
  826. "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40",
  831. "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "consolidation/config": "^1.2.1 || ^2 || ^3",
  836. "php": ">=7.4",
  837. "symfony/filesystem": "^5.4 || ^6 || ^7",
  838. "symfony/finder": "^5 || ^6 || ^7"
  839. },
  840. "require-dev": {
  841. "php-coveralls/php-coveralls": "^2.4.2",
  842. "phpunit/phpunit": ">=7",
  843. "squizlabs/php_codesniffer": "^3",
  844. "symfony/var-dumper": "^4",
  845. "yoast/phpunit-polyfills": "^0.2.0"
  846. },
  847. "type": "library",
  848. "extra": {
  849. "branch-alias": {
  850. "dev-main": "4.x-dev"
  851. }
  852. },
  853. "autoload": {
  854. "psr-4": {
  855. "Consolidation\\SiteAlias\\": "src"
  856. }
  857. },
  858. "notification-url": "https://packagist.org/downloads/",
  859. "license": [
  860. "MIT"
  861. ],
  862. "authors": [
  863. {
  864. "name": "Greg Anderson",
  865. "email": "greg.1.anderson@greenknowe.org"
  866. },
  867. {
  868. "name": "Moshe Weitzman",
  869. "email": "weitzman@tejasa.com"
  870. }
  871. ],
  872. "description": "Manage alias records for local and remote sites.",
  873. "support": {
  874. "issues": "https://github.com/consolidation/site-alias/issues",
  875. "source": "https://github.com/consolidation/site-alias/tree/4.1.1"
  876. },
  877. "time": "2024-12-13T19:05:11+00:00"
  878. },
  879. {
  880. "name": "consolidation/site-process",
  881. "version": "5.4.2",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/consolidation/site-process.git",
  885. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  890. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "consolidation/config": "^2 || ^3",
  895. "consolidation/site-alias": "^3 || ^4",
  896. "php": ">=8.0.14",
  897. "symfony/console": "^5.4 || ^6 || ^7",
  898. "symfony/process": "^6 || ^7"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^9",
  902. "squizlabs/php_codesniffer": "^3"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-main": "5.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Consolidation\\SiteProcess\\": "src"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Greg Anderson",
  922. "email": "greg.1.anderson@greenknowe.org"
  923. },
  924. {
  925. "name": "Moshe Weitzman",
  926. "email": "weitzman@tejasa.com"
  927. }
  928. ],
  929. "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.",
  930. "support": {
  931. "issues": "https://github.com/consolidation/site-process/issues",
  932. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  933. },
  934. "time": "2024-12-13T19:25:56+00:00"
  935. },
  936. {
  937. "name": "cweagans/composer-patches",
  938. "version": "1.7.3",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/cweagans/composer-patches.git",
  942. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "composer-plugin-api": "^1.0 || ^2.0",
  952. "php": ">=5.3.0"
  953. },
  954. "require-dev": {
  955. "composer/composer": "~1.0 || ~2.0",
  956. "phpunit/phpunit": "~4.6"
  957. },
  958. "type": "composer-plugin",
  959. "extra": {
  960. "class": "cweagans\\Composer\\Patches"
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "cweagans\\Composer\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "BSD-3-Clause"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Cameron Eagans",
  974. "email": "me@cweagans.net"
  975. }
  976. ],
  977. "description": "Provides a way to patch Composer packages.",
  978. "support": {
  979. "issues": "https://github.com/cweagans/composer-patches/issues",
  980. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  981. },
  982. "time": "2022-12-20T22:53:13+00:00"
  983. },
  984. {
  985. "name": "d3/d3",
  986. "version": "v3.5.17",
  987. "dist": {
  988. "type": "zip",
  989. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  990. },
  991. "type": "drupal-library"
  992. },
  993. {
  994. "name": "dflydev/dot-access-data",
  995. "version": "v3.0.3",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  999. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1004. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.1 || ^8.0"
  1009. },
  1010. "require-dev": {
  1011. "phpstan/phpstan": "^0.12.42",
  1012. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1013. "scrutinizer/ocular": "1.6.0",
  1014. "squizlabs/php_codesniffer": "^3.5",
  1015. "vimeo/psalm": "^4.0.0"
  1016. },
  1017. "type": "library",
  1018. "extra": {
  1019. "branch-alias": {
  1020. "dev-main": "3.x-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Dflydev\\DotAccessData\\": "src/"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Dragonfly Development Inc.",
  1035. "email": "info@dflydev.com",
  1036. "homepage": "http://dflydev.com"
  1037. },
  1038. {
  1039. "name": "Beau Simensen",
  1040. "email": "beau@dflydev.com",
  1041. "homepage": "http://beausimensen.com"
  1042. },
  1043. {
  1044. "name": "Carlos Frutos",
  1045. "email": "carlos@kiwing.it",
  1046. "homepage": "https://github.com/cfrutos"
  1047. },
  1048. {
  1049. "name": "Colin O'Dell",
  1050. "email": "colinodell@gmail.com",
  1051. "homepage": "https://www.colinodell.com"
  1052. }
  1053. ],
  1054. "description": "Given a deep data structure, access data by dot notation.",
  1055. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1056. "keywords": [
  1057. "access",
  1058. "data",
  1059. "dot",
  1060. "notation"
  1061. ],
  1062. "support": {
  1063. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1064. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1065. },
  1066. "time": "2024-07-08T12:26:09+00:00"
  1067. },
  1068. {
  1069. "name": "doctrine/annotations",
  1070. "version": "1.14.4",
  1071. "source": {
  1072. "type": "git",
  1073. "url": "https://github.com/doctrine/annotations.git",
  1074. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
  1075. },
  1076. "dist": {
  1077. "type": "zip",
  1078. "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1079. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1080. "shasum": ""
  1081. },
  1082. "require": {
  1083. "doctrine/lexer": "^1 || ^2",
  1084. "ext-tokenizer": "*",
  1085. "php": "^7.1 || ^8.0",
  1086. "psr/cache": "^1 || ^2 || ^3"
  1087. },
  1088. "require-dev": {
  1089. "doctrine/cache": "^1.11 || ^2.0",
  1090. "doctrine/coding-standard": "^9 || ^12",
  1091. "phpstan/phpstan": "~1.4.10 || ^1.10.28",
  1092. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1093. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
  1094. "vimeo/psalm": "^4.30 || ^5.14"
  1095. },
  1096. "suggest": {
  1097. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1098. },
  1099. "type": "library",
  1100. "autoload": {
  1101. "psr-4": {
  1102. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Guilherme Blanco",
  1112. "email": "guilhermeblanco@gmail.com"
  1113. },
  1114. {
  1115. "name": "Roman Borschel",
  1116. "email": "roman@code-factory.org"
  1117. },
  1118. {
  1119. "name": "Benjamin Eberlei",
  1120. "email": "kontakt@beberlei.de"
  1121. },
  1122. {
  1123. "name": "Jonathan Wage",
  1124. "email": "jonwage@gmail.com"
  1125. },
  1126. {
  1127. "name": "Johannes Schmitt",
  1128. "email": "schmittjoh@gmail.com"
  1129. }
  1130. ],
  1131. "description": "Docblock Annotations Parser",
  1132. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1133. "keywords": [
  1134. "annotations",
  1135. "docblock",
  1136. "parser"
  1137. ],
  1138. "support": {
  1139. "issues": "https://github.com/doctrine/annotations/issues",
  1140. "source": "https://github.com/doctrine/annotations/tree/1.14.4"
  1141. },
  1142. "time": "2024-09-05T10:15:52+00:00"
  1143. },
  1144. {
  1145. "name": "doctrine/collections",
  1146. "version": "2.3.0",
  1147. "source": {
  1148. "type": "git",
  1149. "url": "https://github.com/doctrine/collections.git",
  1150. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  1151. },
  1152. "dist": {
  1153. "type": "zip",
  1154. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  1155. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  1156. "shasum": ""
  1157. },
  1158. "require": {
  1159. "doctrine/deprecations": "^1",
  1160. "php": "^8.1",
  1161. "symfony/polyfill-php84": "^1.30"
  1162. },
  1163. "require-dev": {
  1164. "doctrine/coding-standard": "^12",
  1165. "ext-json": "*",
  1166. "phpstan/phpstan": "^1.8",
  1167. "phpstan/phpstan-phpunit": "^1.0",
  1168. "phpunit/phpunit": "^10.5"
  1169. },
  1170. "type": "library",
  1171. "autoload": {
  1172. "psr-4": {
  1173. "Doctrine\\Common\\Collections\\": "src"
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "MIT"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Guilherme Blanco",
  1183. "email": "guilhermeblanco@gmail.com"
  1184. },
  1185. {
  1186. "name": "Roman Borschel",
  1187. "email": "roman@code-factory.org"
  1188. },
  1189. {
  1190. "name": "Benjamin Eberlei",
  1191. "email": "kontakt@beberlei.de"
  1192. },
  1193. {
  1194. "name": "Jonathan Wage",
  1195. "email": "jonwage@gmail.com"
  1196. },
  1197. {
  1198. "name": "Johannes Schmitt",
  1199. "email": "schmittjoh@gmail.com"
  1200. }
  1201. ],
  1202. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1203. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1204. "keywords": [
  1205. "array",
  1206. "collections",
  1207. "iterators",
  1208. "php"
  1209. ],
  1210. "support": {
  1211. "issues": "https://github.com/doctrine/collections/issues",
  1212. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  1213. },
  1214. "funding": [
  1215. {
  1216. "url": "https://www.doctrine-project.org/sponsorship.html",
  1217. "type": "custom"
  1218. },
  1219. {
  1220. "url": "https://www.patreon.com/phpdoctrine",
  1221. "type": "patreon"
  1222. },
  1223. {
  1224. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1225. "type": "tidelift"
  1226. }
  1227. ],
  1228. "time": "2025-03-22T10:17:19+00:00"
  1229. },
  1230. {
  1231. "name": "doctrine/common",
  1232. "version": "3.5.0",
  1233. "source": {
  1234. "type": "git",
  1235. "url": "https://github.com/doctrine/common.git",
  1236. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1237. },
  1238. "dist": {
  1239. "type": "zip",
  1240. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1241. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1242. "shasum": ""
  1243. },
  1244. "require": {
  1245. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1246. "php": "^7.1 || ^8.0"
  1247. },
  1248. "require-dev": {
  1249. "doctrine/coding-standard": "^9.0 || ^10.0",
  1250. "doctrine/collections": "^1",
  1251. "phpstan/phpstan": "^1.4.1",
  1252. "phpstan/phpstan-phpunit": "^1",
  1253. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1254. "squizlabs/php_codesniffer": "^3.0",
  1255. "symfony/phpunit-bridge": "^6.1",
  1256. "vimeo/psalm": "^4.4"
  1257. },
  1258. "type": "library",
  1259. "autoload": {
  1260. "psr-4": {
  1261. "Doctrine\\Common\\": "src"
  1262. }
  1263. },
  1264. "notification-url": "https://packagist.org/downloads/",
  1265. "license": [
  1266. "MIT"
  1267. ],
  1268. "authors": [
  1269. {
  1270. "name": "Guilherme Blanco",
  1271. "email": "guilhermeblanco@gmail.com"
  1272. },
  1273. {
  1274. "name": "Roman Borschel",
  1275. "email": "roman@code-factory.org"
  1276. },
  1277. {
  1278. "name": "Benjamin Eberlei",
  1279. "email": "kontakt@beberlei.de"
  1280. },
  1281. {
  1282. "name": "Jonathan Wage",
  1283. "email": "jonwage@gmail.com"
  1284. },
  1285. {
  1286. "name": "Johannes Schmitt",
  1287. "email": "schmittjoh@gmail.com"
  1288. },
  1289. {
  1290. "name": "Marco Pivetta",
  1291. "email": "ocramius@gmail.com"
  1292. }
  1293. ],
  1294. "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.",
  1295. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1296. "keywords": [
  1297. "common",
  1298. "doctrine",
  1299. "php"
  1300. ],
  1301. "support": {
  1302. "issues": "https://github.com/doctrine/common/issues",
  1303. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1304. },
  1305. "funding": [
  1306. {
  1307. "url": "https://www.doctrine-project.org/sponsorship.html",
  1308. "type": "custom"
  1309. },
  1310. {
  1311. "url": "https://www.patreon.com/phpdoctrine",
  1312. "type": "patreon"
  1313. },
  1314. {
  1315. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1316. "type": "tidelift"
  1317. }
  1318. ],
  1319. "time": "2025-01-01T22:12:03+00:00"
  1320. },
  1321. {
  1322. "name": "doctrine/deprecations",
  1323. "version": "1.1.5",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/doctrine/deprecations.git",
  1327. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1332. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "php": "^7.1 || ^8.0"
  1337. },
  1338. "conflict": {
  1339. "phpunit/phpunit": "<=7.5 || >=13"
  1340. },
  1341. "require-dev": {
  1342. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1343. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1344. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1345. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1346. "psr/log": "^1 || ^2 || ^3"
  1347. },
  1348. "suggest": {
  1349. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1350. },
  1351. "type": "library",
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Doctrine\\Deprecations\\": "src"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "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.",
  1362. "homepage": "https://www.doctrine-project.org/",
  1363. "support": {
  1364. "issues": "https://github.com/doctrine/deprecations/issues",
  1365. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1366. },
  1367. "time": "2025-04-07T20:06:18+00:00"
  1368. },
  1369. {
  1370. "name": "doctrine/event-manager",
  1371. "version": "2.0.1",
  1372. "source": {
  1373. "type": "git",
  1374. "url": "https://github.com/doctrine/event-manager.git",
  1375. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1376. },
  1377. "dist": {
  1378. "type": "zip",
  1379. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1380. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1381. "shasum": ""
  1382. },
  1383. "require": {
  1384. "php": "^8.1"
  1385. },
  1386. "conflict": {
  1387. "doctrine/common": "<2.9"
  1388. },
  1389. "require-dev": {
  1390. "doctrine/coding-standard": "^12",
  1391. "phpstan/phpstan": "^1.8.8",
  1392. "phpunit/phpunit": "^10.5",
  1393. "vimeo/psalm": "^5.24"
  1394. },
  1395. "type": "library",
  1396. "autoload": {
  1397. "psr-4": {
  1398. "Doctrine\\Common\\": "src"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Guilherme Blanco",
  1408. "email": "guilhermeblanco@gmail.com"
  1409. },
  1410. {
  1411. "name": "Roman Borschel",
  1412. "email": "roman@code-factory.org"
  1413. },
  1414. {
  1415. "name": "Benjamin Eberlei",
  1416. "email": "kontakt@beberlei.de"
  1417. },
  1418. {
  1419. "name": "Jonathan Wage",
  1420. "email": "jonwage@gmail.com"
  1421. },
  1422. {
  1423. "name": "Johannes Schmitt",
  1424. "email": "schmittjoh@gmail.com"
  1425. },
  1426. {
  1427. "name": "Marco Pivetta",
  1428. "email": "ocramius@gmail.com"
  1429. }
  1430. ],
  1431. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1432. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1433. "keywords": [
  1434. "event",
  1435. "event dispatcher",
  1436. "event manager",
  1437. "event system",
  1438. "events"
  1439. ],
  1440. "support": {
  1441. "issues": "https://github.com/doctrine/event-manager/issues",
  1442. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1443. },
  1444. "funding": [
  1445. {
  1446. "url": "https://www.doctrine-project.org/sponsorship.html",
  1447. "type": "custom"
  1448. },
  1449. {
  1450. "url": "https://www.patreon.com/phpdoctrine",
  1451. "type": "patreon"
  1452. },
  1453. {
  1454. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1455. "type": "tidelift"
  1456. }
  1457. ],
  1458. "time": "2024-05-22T20:47:39+00:00"
  1459. },
  1460. {
  1461. "name": "doctrine/lexer",
  1462. "version": "2.1.1",
  1463. "source": {
  1464. "type": "git",
  1465. "url": "https://github.com/doctrine/lexer.git",
  1466. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1467. },
  1468. "dist": {
  1469. "type": "zip",
  1470. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1471. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1472. "shasum": ""
  1473. },
  1474. "require": {
  1475. "doctrine/deprecations": "^1.0",
  1476. "php": "^7.1 || ^8.0"
  1477. },
  1478. "require-dev": {
  1479. "doctrine/coding-standard": "^9 || ^12",
  1480. "phpstan/phpstan": "^1.3",
  1481. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1482. "psalm/plugin-phpunit": "^0.18.3",
  1483. "vimeo/psalm": "^4.11 || ^5.21"
  1484. },
  1485. "type": "library",
  1486. "autoload": {
  1487. "psr-4": {
  1488. "Doctrine\\Common\\Lexer\\": "src"
  1489. }
  1490. },
  1491. "notification-url": "https://packagist.org/downloads/",
  1492. "license": [
  1493. "MIT"
  1494. ],
  1495. "authors": [
  1496. {
  1497. "name": "Guilherme Blanco",
  1498. "email": "guilhermeblanco@gmail.com"
  1499. },
  1500. {
  1501. "name": "Roman Borschel",
  1502. "email": "roman@code-factory.org"
  1503. },
  1504. {
  1505. "name": "Johannes Schmitt",
  1506. "email": "schmittjoh@gmail.com"
  1507. }
  1508. ],
  1509. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1510. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1511. "keywords": [
  1512. "annotations",
  1513. "docblock",
  1514. "lexer",
  1515. "parser",
  1516. "php"
  1517. ],
  1518. "support": {
  1519. "issues": "https://github.com/doctrine/lexer/issues",
  1520. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1521. },
  1522. "funding": [
  1523. {
  1524. "url": "https://www.doctrine-project.org/sponsorship.html",
  1525. "type": "custom"
  1526. },
  1527. {
  1528. "url": "https://www.patreon.com/phpdoctrine",
  1529. "type": "patreon"
  1530. },
  1531. {
  1532. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1533. "type": "tidelift"
  1534. }
  1535. ],
  1536. "time": "2024-02-05T11:35:39+00:00"
  1537. },
  1538. {
  1539. "name": "doctrine/persistence",
  1540. "version": "4.1.0",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/doctrine/persistence.git",
  1544. "reference": "dcbdfe4b211ae09478e192289cae7ab0987b29a4"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/doctrine/persistence/zipball/dcbdfe4b211ae09478e192289cae7ab0987b29a4",
  1549. "reference": "dcbdfe4b211ae09478e192289cae7ab0987b29a4",
  1550. "shasum": ""
  1551. },
  1552. "require": {
  1553. "doctrine/event-manager": "^1 || ^2",
  1554. "php": "^8.1",
  1555. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1556. },
  1557. "require-dev": {
  1558. "doctrine/coding-standard": "^12",
  1559. "phpstan/phpstan": "1.12.7",
  1560. "phpstan/phpstan-phpunit": "^1",
  1561. "phpstan/phpstan-strict-rules": "^1.6",
  1562. "phpunit/phpunit": "^9.6",
  1563. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1564. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1565. },
  1566. "type": "library",
  1567. "autoload": {
  1568. "psr-4": {
  1569. "Doctrine\\Persistence\\": "src/Persistence"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Guilherme Blanco",
  1579. "email": "guilhermeblanco@gmail.com"
  1580. },
  1581. {
  1582. "name": "Roman Borschel",
  1583. "email": "roman@code-factory.org"
  1584. },
  1585. {
  1586. "name": "Benjamin Eberlei",
  1587. "email": "kontakt@beberlei.de"
  1588. },
  1589. {
  1590. "name": "Jonathan Wage",
  1591. "email": "jonwage@gmail.com"
  1592. },
  1593. {
  1594. "name": "Johannes Schmitt",
  1595. "email": "schmittjoh@gmail.com"
  1596. },
  1597. {
  1598. "name": "Marco Pivetta",
  1599. "email": "ocramius@gmail.com"
  1600. }
  1601. ],
  1602. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1603. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1604. "keywords": [
  1605. "mapper",
  1606. "object",
  1607. "odm",
  1608. "orm",
  1609. "persistence"
  1610. ],
  1611. "support": {
  1612. "issues": "https://github.com/doctrine/persistence/issues",
  1613. "source": "https://github.com/doctrine/persistence/tree/4.1.0"
  1614. },
  1615. "funding": [
  1616. {
  1617. "url": "https://www.doctrine-project.org/sponsorship.html",
  1618. "type": "custom"
  1619. },
  1620. {
  1621. "url": "https://www.patreon.com/phpdoctrine",
  1622. "type": "patreon"
  1623. },
  1624. {
  1625. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1626. "type": "tidelift"
  1627. }
  1628. ],
  1629. "time": "2025-08-21T16:00:31+00:00"
  1630. },
  1631. {
  1632. "name": "drupal/address",
  1633. "version": "1.12.0",
  1634. "source": {
  1635. "type": "git",
  1636. "url": "https://git.drupalcode.org/project/address.git",
  1637. "reference": "8.x-1.12"
  1638. },
  1639. "dist": {
  1640. "type": "zip",
  1641. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1642. "reference": "8.x-1.12",
  1643. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1644. },
  1645. "require": {
  1646. "commerceguys/addressing": "^1.4.2",
  1647. "drupal/core": "^9.2 || ^10",
  1648. "php": "^7.3 || ^8.0"
  1649. },
  1650. "require-dev": {
  1651. "drupal/token": "^1.0"
  1652. },
  1653. "type": "drupal-module",
  1654. "extra": {
  1655. "drupal": {
  1656. "version": "8.x-1.12",
  1657. "datestamp": "1684710176",
  1658. "security-coverage": {
  1659. "status": "covered",
  1660. "message": "Covered by Drupal's security advisory policy"
  1661. }
  1662. }
  1663. },
  1664. "notification-url": "https://packages.drupal.org/8/downloads",
  1665. "license": [
  1666. "GPL-2.0-or-later"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "bojanz",
  1671. "homepage": "https://www.drupal.org/user/86106"
  1672. },
  1673. {
  1674. "name": "Centarro",
  1675. "homepage": "https://www.drupal.org/user/3661446"
  1676. },
  1677. {
  1678. "name": "dww",
  1679. "homepage": "https://www.drupal.org/user/46549"
  1680. },
  1681. {
  1682. "name": "googletorp",
  1683. "homepage": "https://www.drupal.org/user/386230"
  1684. },
  1685. {
  1686. "name": "jsacksick",
  1687. "homepage": "https://www.drupal.org/user/972218"
  1688. },
  1689. {
  1690. "name": "mglaman",
  1691. "homepage": "https://www.drupal.org/user/2416470"
  1692. },
  1693. {
  1694. "name": "rszrama",
  1695. "homepage": "https://www.drupal.org/user/49344"
  1696. }
  1697. ],
  1698. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1699. "homepage": "http://drupal.org/project/address",
  1700. "support": {
  1701. "source": "https://git.drupalcode.org/project/address"
  1702. }
  1703. },
  1704. {
  1705. "name": "drupal/admin_theme",
  1706. "version": "1.0.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://git.drupalcode.org/project/admin_theme.git",
  1710. "reference": "8.x-1.0"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://ftp.drupal.org/files/projects/admin_theme-8.x-1.0.zip",
  1715. "reference": "8.x-1.0",
  1716. "shasum": "5dafd7457840963609502567d60f7fdf0b3e81c3"
  1717. },
  1718. "require": {
  1719. "drupal/core": "^8.8 || ^9 || ^10",
  1720. "php": ">=5.5.9"
  1721. },
  1722. "type": "drupal-module",
  1723. "extra": {
  1724. "drupal": {
  1725. "version": "8.x-1.0",
  1726. "datestamp": "1681407048",
  1727. "security-coverage": {
  1728. "status": "covered",
  1729. "message": "Covered by Drupal's security advisory policy"
  1730. }
  1731. }
  1732. },
  1733. "notification-url": "https://packages.drupal.org/8/downloads",
  1734. "license": [
  1735. "GPL-2.0+"
  1736. ],
  1737. "authors": [
  1738. {
  1739. "name": "geek-merlin",
  1740. "homepage": "https://www.drupal.org/user/229048"
  1741. },
  1742. {
  1743. "name": "justy",
  1744. "homepage": "https://www.drupal.org/user/115811"
  1745. }
  1746. ],
  1747. "description": "Enable the administration theme on more paths than possible with Drupal's default administration page.",
  1748. "homepage": "https://www.drupal.org/project/admin_theme",
  1749. "keywords": [
  1750. "drupal"
  1751. ],
  1752. "support": {
  1753. "source": "https://git.drupalcode.org/project/admin_theme"
  1754. }
  1755. },
  1756. {
  1757. "name": "drupal/admin_toolbar",
  1758. "version": "3.4.2",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1762. "reference": "3.4.2"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1767. "reference": "3.4.2",
  1768. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1769. },
  1770. "require": {
  1771. "drupal/core": "^9.2 || ^10"
  1772. },
  1773. "require-dev": {
  1774. "drupal/admin_toolbar_tools": "*"
  1775. },
  1776. "type": "drupal-module",
  1777. "extra": {
  1778. "drupal": {
  1779. "version": "3.4.2",
  1780. "datestamp": "1696006195",
  1781. "security-coverage": {
  1782. "status": "covered",
  1783. "message": "Covered by Drupal's security advisory policy"
  1784. }
  1785. }
  1786. },
  1787. "notification-url": "https://packages.drupal.org/8/downloads",
  1788. "license": [
  1789. "GPL-2.0-or-later"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Wilfrid Roze (eme)",
  1794. "homepage": "https://www.drupal.org/u/eme",
  1795. "role": "Maintainer"
  1796. },
  1797. {
  1798. "name": "Romain Jarraud (romainj)",
  1799. "homepage": "https://www.drupal.org/u/romainj",
  1800. "role": "Maintainer"
  1801. },
  1802. {
  1803. "name": "Adrian Cid Almaguer (adriancid)",
  1804. "homepage": "https://www.drupal.org/u/adriancid",
  1805. "email": "adriancid@gmail.com",
  1806. "role": "Maintainer"
  1807. },
  1808. {
  1809. "name": "Mohamed Anis Taktak (matio89)",
  1810. "homepage": "https://www.drupal.org/u/matio89",
  1811. "role": "Maintainer"
  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.4.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  1901. "reference": "8.x-3.4"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.4.zip",
  1906. "reference": "8.x-3.4",
  1907. "shasum": "17cd7107c8fdd0c65049ee2b8dceefa0432024fa"
  1908. },
  1909. "require": {
  1910. "drupal/core": "^8 || ^9 || ^10"
  1911. },
  1912. "type": "drupal-module",
  1913. "extra": {
  1914. "drupal": {
  1915. "version": "8.x-3.4",
  1916. "datestamp": "1682265550",
  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_email_validation",
  1949. "version": "1.1.5",
  1950. "source": {
  1951. "type": "git",
  1952. "url": "https://git.drupalcode.org/project/advanced_email_validation.git",
  1953. "reference": "1.1.5"
  1954. },
  1955. "dist": {
  1956. "type": "zip",
  1957. "url": "https://ftp.drupal.org/files/projects/advanced_email_validation-1.1.5.zip",
  1958. "reference": "1.1.5",
  1959. "shasum": "39bb313fe3be5c329012aa5310a6081cdc7e9df0"
  1960. },
  1961. "require": {
  1962. "drupal/core": "^9.3 || ^10",
  1963. "stymiee/email-validator": "^1.0.1"
  1964. },
  1965. "type": "drupal-module",
  1966. "extra": {
  1967. "drupal": {
  1968. "version": "1.1.5",
  1969. "datestamp": "1686705109",
  1970. "security-coverage": {
  1971. "status": "covered",
  1972. "message": "Covered by Drupal's security advisory policy"
  1973. }
  1974. }
  1975. },
  1976. "notification-url": "https://packages.drupal.org/8/downloads",
  1977. "license": [
  1978. "GPL-2.0+"
  1979. ],
  1980. "authors": [
  1981. {
  1982. "name": "Max Pogonowski (darvanen)",
  1983. "homepage": "https://www.drupal.org/u/darvanen",
  1984. "role": "Maintainer"
  1985. }
  1986. ],
  1987. "description": "User account email validation using MX records and lists of free or disposable emails (configurable).",
  1988. "homepage": "https://www.drupal.org/project/advanced_email_validation",
  1989. "keywords": [
  1990. "Drupal"
  1991. ],
  1992. "support": {
  1993. "source": "http://cgit.drupalcode.org/advanced_email_validation",
  1994. "issues": "https://www.drupal.org/project/issues/advanced_email_validation"
  1995. }
  1996. },
  1997. {
  1998. "name": "drupal/advanced_text_formatter",
  1999. "version": "3.0.0-rc1",
  2000. "source": {
  2001. "type": "git",
  2002. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2003. "reference": "3.0.0-rc1"
  2004. },
  2005. "dist": {
  2006. "type": "zip",
  2007. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  2008. "reference": "3.0.0-rc1",
  2009. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  2010. },
  2011. "require": {
  2012. "drupal/core": "^8 || ^9 || ^10"
  2013. },
  2014. "type": "drupal-module",
  2015. "extra": {
  2016. "drupal": {
  2017. "version": "3.0.0-rc1",
  2018. "datestamp": "1675163352",
  2019. "security-coverage": {
  2020. "status": "not-covered",
  2021. "message": "RC releases are not covered by Drupal security advisories."
  2022. }
  2023. }
  2024. },
  2025. "notification-url": "https://packages.drupal.org/8/downloads",
  2026. "license": [
  2027. "GPL-2.0-or-later"
  2028. ],
  2029. "authors": [
  2030. {
  2031. "name": "azovsky",
  2032. "homepage": "https://www.drupal.org/user/330533"
  2033. },
  2034. {
  2035. "name": "thmnhat",
  2036. "homepage": "https://www.drupal.org/user/998946"
  2037. }
  2038. ],
  2039. "description": "Provides an additional formatter for text field, text area and text format.",
  2040. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2041. "support": {
  2042. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2043. }
  2044. },
  2045. {
  2046. "name": "drupal/amswap",
  2047. "version": "3.2.1",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://git.drupalcode.org/project/amswap.git",
  2051. "reference": "3.2.1"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://ftp.drupal.org/files/projects/amswap-3.2.1.zip",
  2056. "reference": "3.2.1",
  2057. "shasum": "6fdfb96eb3a000d6b01e9d72071ad736f2e81889"
  2058. },
  2059. "require": {
  2060. "drupal/core": "^8 || ^9 || ^10"
  2061. },
  2062. "type": "drupal-module",
  2063. "extra": {
  2064. "drupal": {
  2065. "version": "3.2.1",
  2066. "datestamp": "1680451461",
  2067. "security-coverage": {
  2068. "status": "not-covered",
  2069. "message": "Project has not opted into security advisory coverage!"
  2070. }
  2071. }
  2072. },
  2073. "notification-url": "https://packages.drupal.org/8/downloads",
  2074. "license": [
  2075. "GPL-2.0-or-later"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "cedewey",
  2080. "homepage": "https://www.drupal.org/user/38694"
  2081. },
  2082. {
  2083. "name": "droces",
  2084. "homepage": "https://www.drupal.org/user/2996575"
  2085. }
  2086. ],
  2087. "description": "Allows the administration menu to be customised per user role.",
  2088. "homepage": "https://www.drupal.org/project/amswap",
  2089. "keywords": [
  2090. "Drupal"
  2091. ],
  2092. "support": {
  2093. "source": "http://cgit.drupalcode.org/amswap",
  2094. "issues": "https://www.drupal.org/project/issues/amswap"
  2095. }
  2096. },
  2097. {
  2098. "name": "drupal/audiofield",
  2099. "version": "1.13.0",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://git.drupalcode.org/project/audiofield.git",
  2103. "reference": "8.x-1.13"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2108. "reference": "8.x-1.13",
  2109. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2110. },
  2111. "require": {
  2112. "drupal/core": "^8 || ^9 || ^10"
  2113. },
  2114. "type": "drupal-module",
  2115. "extra": {
  2116. "drupal": {
  2117. "version": "8.x-1.13",
  2118. "datestamp": "1681143245",
  2119. "security-coverage": {
  2120. "status": "covered",
  2121. "message": "Covered by Drupal's security advisory policy"
  2122. }
  2123. },
  2124. "drush": {
  2125. "services": {
  2126. "drush.services.yml": "^9"
  2127. }
  2128. }
  2129. },
  2130. "notification-url": "https://packages.drupal.org/8/downloads",
  2131. "license": [
  2132. "GPL-2.0-or-later"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "Daniel Moberly",
  2137. "homepage": "https://www.drupal.org/u/danielmoberly",
  2138. "role": "Maintainer"
  2139. },
  2140. {
  2141. "name": "tamerzg",
  2142. "homepage": "https://www.drupal.org/user/464564"
  2143. }
  2144. ],
  2145. "description": "AudioField Module",
  2146. "homepage": "https://www.drupal.org/project/audiofield",
  2147. "support": {
  2148. "source": "https://git.drupalcode.org/project/audiofield",
  2149. "issues": "https://www.drupal.org/project/issues/audiofield"
  2150. }
  2151. },
  2152. {
  2153. "name": "drupal/autocomplete_deluxe",
  2154. "version": "2.0.3",
  2155. "source": {
  2156. "type": "git",
  2157. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2158. "reference": "2.0.3"
  2159. },
  2160. "dist": {
  2161. "type": "zip",
  2162. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  2163. "reference": "2.0.3",
  2164. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  2165. },
  2166. "require": {
  2167. "drupal/core": "^8 || ^9 || ^10"
  2168. },
  2169. "type": "drupal-module",
  2170. "extra": {
  2171. "drupal": {
  2172. "version": "2.0.3",
  2173. "datestamp": "1673454732",
  2174. "security-coverage": {
  2175. "status": "covered",
  2176. "message": "Covered by Drupal's security advisory policy"
  2177. }
  2178. }
  2179. },
  2180. "notification-url": "https://packages.drupal.org/8/downloads",
  2181. "license": [
  2182. "GPL-2.0-or-later"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "Vardot",
  2187. "homepage": "https://www.drupal.org/vardot",
  2188. "role": "Maintenance for D8 and D9 versions"
  2189. },
  2190. {
  2191. "name": "Mediacurrent",
  2192. "homepage": "https://www.drupal.org/mediacurrent",
  2193. "role": "Supporting organization"
  2194. },
  2195. {
  2196. "name": "Mohammed J. Razem",
  2197. "homepage": "https://www.drupal.org/user/255384"
  2198. },
  2199. {
  2200. "name": "mpriscella",
  2201. "homepage": "https://www.drupal.org/user/2354820"
  2202. },
  2203. {
  2204. "name": "Rajab Natshah",
  2205. "homepage": "https://www.drupal.org/user/1414312"
  2206. },
  2207. {
  2208. "name": "sepgil",
  2209. "homepage": "https://www.drupal.org/user/512828"
  2210. }
  2211. ],
  2212. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2213. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2214. "support": {
  2215. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2216. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2217. }
  2218. },
  2219. {
  2220. "name": "drupal/autologout",
  2221. "version": "1.4.0",
  2222. "source": {
  2223. "type": "git",
  2224. "url": "https://git.drupalcode.org/project/autologout.git",
  2225. "reference": "8.x-1.4"
  2226. },
  2227. "dist": {
  2228. "type": "zip",
  2229. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2230. "reference": "8.x-1.4",
  2231. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2232. },
  2233. "require": {
  2234. "drupal/core": "^9.2 || ^10"
  2235. },
  2236. "type": "drupal-module",
  2237. "extra": {
  2238. "drupal": {
  2239. "version": "8.x-1.4",
  2240. "datestamp": "1658168199",
  2241. "security-coverage": {
  2242. "status": "covered",
  2243. "message": "Covered by Drupal's security advisory policy"
  2244. }
  2245. }
  2246. },
  2247. "notification-url": "https://packages.drupal.org/8/downloads",
  2248. "license": [
  2249. "GPL-2.0-or-later"
  2250. ],
  2251. "authors": [
  2252. {
  2253. "name": "AjitS",
  2254. "homepage": "https://www.drupal.org/user/981944"
  2255. },
  2256. {
  2257. "name": "AjK",
  2258. "homepage": "https://www.drupal.org/user/39030"
  2259. },
  2260. {
  2261. "name": "boshtian",
  2262. "homepage": "https://www.drupal.org/user/1773456"
  2263. },
  2264. {
  2265. "name": "dandrews",
  2266. "homepage": "https://www.drupal.org/user/2014490"
  2267. },
  2268. {
  2269. "name": "darksnow",
  2270. "homepage": "https://www.drupal.org/user/391915"
  2271. },
  2272. {
  2273. "name": "japerry",
  2274. "homepage": "https://www.drupal.org/user/45640"
  2275. },
  2276. {
  2277. "name": "johnennew",
  2278. "homepage": "https://www.drupal.org/user/1150042"
  2279. },
  2280. {
  2281. "name": "jrglasgow",
  2282. "homepage": "https://www.drupal.org/user/36590"
  2283. },
  2284. {
  2285. "name": "kmasood",
  2286. "homepage": "https://www.drupal.org/user/1262860"
  2287. },
  2288. {
  2289. "name": "levelos",
  2290. "homepage": "https://www.drupal.org/user/54135"
  2291. },
  2292. {
  2293. "name": "prabeen.giri",
  2294. "homepage": "https://www.drupal.org/user/913078"
  2295. },
  2296. {
  2297. "name": "str8",
  2298. "homepage": "https://www.drupal.org/user/2865063"
  2299. }
  2300. ],
  2301. "description": "Adds automated timed logout.",
  2302. "homepage": "http://drupal.org/project/autologout",
  2303. "support": {
  2304. "source": "https://git.drupalcode.org/project/autologout"
  2305. }
  2306. },
  2307. {
  2308. "name": "drupal/autotitle",
  2309. "version": "1.3.0",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://git.drupalcode.org/project/autotitle.git",
  2313. "reference": "8.x-1.3"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://ftp.drupal.org/files/projects/autotitle-8.x-1.3.zip",
  2318. "reference": "8.x-1.3",
  2319. "shasum": "b11ce6bd0f87a1ecc9ca3c93df8f3271d3b99277"
  2320. },
  2321. "require": {
  2322. "drupal/core": "^8.0 || ^9.0 || ^10"
  2323. },
  2324. "type": "drupal-module",
  2325. "extra": {
  2326. "drupal": {
  2327. "version": "8.x-1.3",
  2328. "datestamp": "1707520242",
  2329. "security-coverage": {
  2330. "status": "covered",
  2331. "message": "Covered by Drupal's security advisory policy"
  2332. }
  2333. }
  2334. },
  2335. "notification-url": "https://packages.drupal.org/8/downloads",
  2336. "license": [
  2337. "GPL-2.0-or-later"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Mariusz Andrzejewski (sayco)",
  2342. "homepage": "https://www.drupal.org/u/sayco",
  2343. "role": "Maintainer"
  2344. },
  2345. {
  2346. "name": "Marco Fernandes",
  2347. "homepage": "https://www.drupal.org/u/marcofernandes",
  2348. "role": "maintainer"
  2349. },
  2350. {
  2351. "name": "Roberto Ornelas",
  2352. "homepage": "https://www.drupal.org/u/roborn",
  2353. "role": "maintainer"
  2354. },
  2355. {
  2356. "name": "sayco",
  2357. "homepage": "https://www.drupal.org/user/3517832"
  2358. },
  2359. {
  2360. "name": "thorandre",
  2361. "homepage": "https://www.drupal.org/user/223878"
  2362. }
  2363. ],
  2364. "description": "Provides a way to automatically generate the title of a node based on its fields.",
  2365. "homepage": "https://www.drupal.org/project/autotitle",
  2366. "support": {
  2367. "source": "https://git.drupalcode.org/project/autotitle",
  2368. "issues": "https://www.drupal.org/project/issues/autotitle"
  2369. }
  2370. },
  2371. {
  2372. "name": "drupal/better_exposed_filters",
  2373. "version": "6.0.6",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2377. "reference": "6.0.6"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2382. "reference": "6.0.6",
  2383. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2384. },
  2385. "require": {
  2386. "drupal/core": "^9 || ^10",
  2387. "drupal/jquery_ui": "*",
  2388. "drupal/jquery_ui_datepicker": "*",
  2389. "drupal/jquery_ui_slider": "*",
  2390. "drupal/jquery_ui_touch_punch": "*"
  2391. },
  2392. "type": "drupal-module",
  2393. "extra": {
  2394. "drupal": {
  2395. "version": "6.0.6",
  2396. "datestamp": "1716397541",
  2397. "security-coverage": {
  2398. "status": "covered",
  2399. "message": "Covered by Drupal's security advisory policy"
  2400. }
  2401. }
  2402. },
  2403. "notification-url": "https://packages.drupal.org/8/downloads",
  2404. "license": [
  2405. "GPL-2.0-or-later"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Mike Keran",
  2410. "homepage": "https://www.drupal.org/u/mikeker"
  2411. },
  2412. {
  2413. "name": "Martin Keereman",
  2414. "homepage": "https://www.drupal.org/u/etroid"
  2415. },
  2416. {
  2417. "name": "Neslee Canil Pinto",
  2418. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2419. },
  2420. {
  2421. "name": "mikeker",
  2422. "homepage": "https://www.drupal.org/user/192273"
  2423. },
  2424. {
  2425. "name": "neslee canil pinto",
  2426. "homepage": "https://www.drupal.org/user/3580850"
  2427. },
  2428. {
  2429. "name": "podarok",
  2430. "homepage": "https://www.drupal.org/user/116002"
  2431. },
  2432. {
  2433. "name": "rlhawk",
  2434. "homepage": "https://www.drupal.org/user/352283"
  2435. },
  2436. {
  2437. "name": "smustgrave",
  2438. "homepage": "https://www.drupal.org/user/3252890"
  2439. }
  2440. ],
  2441. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2442. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2443. "support": {
  2444. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2445. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2446. }
  2447. },
  2448. {
  2449. "name": "drupal/block_class",
  2450. "version": "2.0.11",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://git.drupalcode.org/project/block_class.git",
  2454. "reference": "2.0.11"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2459. "reference": "2.0.11",
  2460. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2461. },
  2462. "require": {
  2463. "drupal/core": "^8 || ^9 || ^10"
  2464. },
  2465. "type": "drupal-module",
  2466. "extra": {
  2467. "drupal": {
  2468. "version": "2.0.11",
  2469. "datestamp": "1672065313",
  2470. "security-coverage": {
  2471. "status": "covered",
  2472. "message": "Covered by Drupal's security advisory policy"
  2473. }
  2474. }
  2475. },
  2476. "notification-url": "https://packages.drupal.org/8/downloads",
  2477. "license": [
  2478. "GPL-2.0-or-later"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Todd Nienkerk",
  2483. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2484. "role": "Maintainer"
  2485. },
  2486. {
  2487. "name": "Renato Gonçalves (RenatoG)",
  2488. "homepage": "https://www.drupal.org/u/RenatoG",
  2489. "role": "Maintainer"
  2490. },
  2491. {
  2492. "name": "Neslee Canil Pinto",
  2493. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2494. "role": "Maintainer"
  2495. },
  2496. {
  2497. "name": "Aaron Stanush",
  2498. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2499. "role": "Maintainer"
  2500. },
  2501. {
  2502. "name": "David Suissa (DYdave)",
  2503. "homepage": "https://www.drupal.org/u/DYdave",
  2504. "role": "Maintainer"
  2505. },
  2506. {
  2507. "name": "Four Kitchens",
  2508. "homepage": "https://www.drupal.org/user/358502",
  2509. "role": "Maintainer"
  2510. },
  2511. {
  2512. "name": "berenddeboer",
  2513. "homepage": "https://www.drupal.org/u/berenddeboer",
  2514. "role": "Maintainer"
  2515. },
  2516. {
  2517. "name": "elliotttf",
  2518. "homepage": "https://www.drupal.org/u/elliotttf",
  2519. "role": "Maintainer"
  2520. },
  2521. {
  2522. "name": "Michal Minecki (mirzu)",
  2523. "homepage": "https://www.drupal.org/u/mirzu",
  2524. "role": "Maintainer"
  2525. },
  2526. {
  2527. "name": "Patrick Coffey (pcoffey)",
  2528. "homepage": "https://www.drupal.org/u/pcoffey",
  2529. "role": "Maintainer"
  2530. },
  2531. {
  2532. "name": "Taylor Smith (tsmith512)",
  2533. "homepage": "https://www.drupal.org/u/tsmith512",
  2534. "role": "Maintainer"
  2535. }
  2536. ],
  2537. "description": "Allows assigning classes to Blocks.",
  2538. "homepage": "https://www.drupal.org/project/block_class",
  2539. "keywords": [
  2540. "Drupal"
  2541. ],
  2542. "support": {
  2543. "source": "https://git.drupalcode.org/project/block_class",
  2544. "issues": "https://www.drupal.org/project/issues/block_class",
  2545. "irc": "irc://irc.freenode.org/drupal-contribute"
  2546. }
  2547. },
  2548. {
  2549. "name": "drupal/bulkdelete",
  2550. "version": "dev-1.x",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2554. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2555. },
  2556. "require": {
  2557. "drupal/core": "^8.7.7 || ^9 || ^10"
  2558. },
  2559. "type": "drupal-module",
  2560. "extra": {
  2561. "branch-alias": {
  2562. "dev-1.x": "1.x-dev"
  2563. },
  2564. "drupal": {
  2565. "version": "8.x-1.x-dev",
  2566. "datestamp": "1655322426",
  2567. "security-coverage": {
  2568. "status": "not-covered",
  2569. "message": "Dev releases are not covered by Drupal security advisories."
  2570. }
  2571. }
  2572. },
  2573. "notification-url": "https://packages.drupal.org/8/downloads",
  2574. "license": [
  2575. "GPL-2.0-or-later"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Kars-T",
  2580. "homepage": "https://www.drupal.org/user/224499"
  2581. },
  2582. {
  2583. "name": "Rahul Seth",
  2584. "homepage": "https://www.drupal.org/user/2694359"
  2585. },
  2586. {
  2587. "name": "adriancid",
  2588. "homepage": "https://www.drupal.org/user/1962106"
  2589. },
  2590. {
  2591. "name": "robertDouglass",
  2592. "homepage": "https://www.drupal.org/user/5449"
  2593. }
  2594. ],
  2595. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2596. "homepage": "https://www.drupal.org/project/bulkdelete",
  2597. "support": {
  2598. "source": "https://git.drupalcode.org/project/bulkdelete"
  2599. }
  2600. },
  2601. {
  2602. "name": "drupal/ckeditor5_youtube",
  2603. "version": "1.0.5",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://git.drupalcode.org/project/ckeditor5_youtube.git",
  2607. "reference": "1.0.5"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://ftp.drupal.org/files/projects/ckeditor5_youtube-1.0.5.zip",
  2612. "reference": "1.0.5",
  2613. "shasum": "b3b168ccd7a17943d9b8b3adc01a1b6e2c0754cd"
  2614. },
  2615. "require": {
  2616. "drupal/core": "^9 || ^10 || ^11"
  2617. },
  2618. "type": "drupal-module",
  2619. "extra": {
  2620. "drupal": {
  2621. "version": "1.0.5",
  2622. "datestamp": "1752852966",
  2623. "security-coverage": {
  2624. "status": "covered",
  2625. "message": "Covered by Drupal's security advisory policy"
  2626. }
  2627. }
  2628. },
  2629. "notification-url": "https://packages.drupal.org/8/downloads",
  2630. "license": [
  2631. "GPL-2.0-or-later"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "b.khouy",
  2636. "homepage": "https://www.drupal.org/user/3562758"
  2637. },
  2638. {
  2639. "name": "g.abderrahim",
  2640. "homepage": "https://www.drupal.org/user/2826131"
  2641. }
  2642. ],
  2643. "description": "Adds a YouTube embed button to CKEditor 5.",
  2644. "homepage": "https://www.drupal.org/project/ckeditor5_youtube",
  2645. "support": {
  2646. "source": "https://git.drupalcode.org/project/ckeditor5_youtube"
  2647. }
  2648. },
  2649. {
  2650. "name": "drupal/conditional_fields",
  2651. "version": "4.0.0-alpha5",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://git.drupalcode.org/project/conditional_fields.git",
  2655. "reference": "4.0.0-alpha5"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://ftp.drupal.org/files/projects/conditional_fields-4.0.0-alpha5.zip",
  2660. "reference": "4.0.0-alpha5",
  2661. "shasum": "f0788b3cc91b390c3ebbdf544ecb2e78c57eb183"
  2662. },
  2663. "require": {
  2664. "drupal/core": "^8 || ^9 || ^10"
  2665. },
  2666. "require-dev": {
  2667. "drupal/paragraphs": "*"
  2668. },
  2669. "type": "drupal-module",
  2670. "extra": {
  2671. "drupal": {
  2672. "version": "4.0.0-alpha5",
  2673. "datestamp": "1695850051",
  2674. "security-coverage": {
  2675. "status": "not-covered",
  2676. "message": "Alpha releases are not covered by Drupal security advisories."
  2677. }
  2678. }
  2679. },
  2680. "notification-url": "https://packages.drupal.org/8/downloads",
  2681. "license": [
  2682. "GPL-2.0-or-later"
  2683. ],
  2684. "authors": [
  2685. {
  2686. "name": "benjifisher",
  2687. "homepage": "https://www.drupal.org/user/683300"
  2688. },
  2689. {
  2690. "name": "colan",
  2691. "homepage": "https://www.drupal.org/user/58704"
  2692. },
  2693. {
  2694. "name": "dqd",
  2695. "homepage": "https://www.drupal.org/user/1001934"
  2696. },
  2697. {
  2698. "name": "ergonlogic",
  2699. "homepage": "https://www.drupal.org/user/368613"
  2700. },
  2701. {
  2702. "name": "geek-merlin",
  2703. "homepage": "https://www.drupal.org/user/229048"
  2704. },
  2705. {
  2706. "name": "heddn",
  2707. "homepage": "https://www.drupal.org/user/1463982"
  2708. },
  2709. {
  2710. "name": "itsekhmistro",
  2711. "homepage": "https://www.drupal.org/user/928152"
  2712. },
  2713. {
  2714. "name": "mparker17",
  2715. "homepage": "https://www.drupal.org/user/536298"
  2716. },
  2717. {
  2718. "name": "OlgaRabodzei",
  2719. "homepage": "https://www.drupal.org/user/3389198"
  2720. },
  2721. {
  2722. "name": "peterpoe",
  2723. "homepage": "https://www.drupal.org/user/55674"
  2724. },
  2725. {
  2726. "name": "saurabh-2k17",
  2727. "homepage": "https://www.drupal.org/user/3622252"
  2728. },
  2729. {
  2730. "name": "szhu",
  2731. "homepage": "https://www.drupal.org/user/3525295"
  2732. },
  2733. {
  2734. "name": "thalles",
  2735. "homepage": "https://www.drupal.org/user/3589086"
  2736. }
  2737. ],
  2738. "description": "Define dependencies between fields based on their states and values.",
  2739. "homepage": "https://www.drupal.org/project/conditional_fields",
  2740. "support": {
  2741. "source": "https://git.drupalcode.org/project/conditional_fields"
  2742. }
  2743. },
  2744. {
  2745. "name": "drupal/config_devel",
  2746. "version": "dev-1.x",
  2747. "source": {
  2748. "type": "git",
  2749. "url": "https://git.drupalcode.org/project/config_devel.git",
  2750. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2751. },
  2752. "require": {
  2753. "drupal/core": "^9.3 || ^10"
  2754. },
  2755. "type": "drupal-module",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-1.x": "1.x-dev"
  2759. },
  2760. "drupal": {
  2761. "version": "8.x-1.8+2-dev",
  2762. "datestamp": "1678264720",
  2763. "security-coverage": {
  2764. "status": "not-covered",
  2765. "message": "Dev releases are not covered by Drupal security advisories."
  2766. }
  2767. }
  2768. },
  2769. "notification-url": "https://packages.drupal.org/8/downloads",
  2770. "license": [
  2771. "GPL-2.0+"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "alexpott",
  2776. "homepage": "https://www.drupal.org/user/157725"
  2777. },
  2778. {
  2779. "name": "benjy",
  2780. "homepage": "https://www.drupal.org/user/1852732"
  2781. },
  2782. {
  2783. "name": "chx",
  2784. "homepage": "https://www.drupal.org/user/9446"
  2785. },
  2786. {
  2787. "name": "joachim",
  2788. "homepage": "https://www.drupal.org/user/107701"
  2789. },
  2790. {
  2791. "name": "nedjo",
  2792. "homepage": "https://www.drupal.org/user/4481"
  2793. },
  2794. {
  2795. "name": "vijaycs85",
  2796. "homepage": "https://www.drupal.org/user/93488"
  2797. }
  2798. ],
  2799. "description": "Helps developers work with configuration.",
  2800. "homepage": "https://www.drupal.org/project/config_devel",
  2801. "support": {
  2802. "source": "https://git.drupalcode.org/project/config_devel"
  2803. }
  2804. },
  2805. {
  2806. "name": "drupal/config_filter",
  2807. "version": "2.6.0",
  2808. "source": {
  2809. "type": "git",
  2810. "url": "https://git.drupalcode.org/project/config_filter.git",
  2811. "reference": "8.x-2.6"
  2812. },
  2813. "dist": {
  2814. "type": "zip",
  2815. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2816. "reference": "8.x-2.6",
  2817. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2818. },
  2819. "require": {
  2820. "drupal/core": "^8.8 || ^9 || ^10"
  2821. },
  2822. "conflict": {
  2823. "drush/drush": "<10"
  2824. },
  2825. "suggest": {
  2826. "drupal/config_split": "Split site configuration for different environments."
  2827. },
  2828. "type": "drupal-module",
  2829. "extra": {
  2830. "drupal": {
  2831. "version": "8.x-2.6",
  2832. "datestamp": "1698308577",
  2833. "security-coverage": {
  2834. "status": "covered",
  2835. "message": "Covered by Drupal's security advisory policy"
  2836. }
  2837. }
  2838. },
  2839. "notification-url": "https://packages.drupal.org/8/downloads",
  2840. "license": [
  2841. "GPL-2.0-or-later"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "Fabian Bircher",
  2846. "homepage": "https://www.drupal.org/u/bircher",
  2847. "email": "opensource@fabianbircher.com",
  2848. "role": "Maintainer"
  2849. },
  2850. {
  2851. "name": "Nuvole Web",
  2852. "homepage": "http://nuvole.org",
  2853. "email": "info@nuvole.org",
  2854. "role": "Maintainer"
  2855. },
  2856. {
  2857. "name": "pescetti",
  2858. "homepage": "https://www.drupal.org/user/436244"
  2859. }
  2860. ],
  2861. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2862. "homepage": "https://www.drupal.org/project/config_filter",
  2863. "keywords": [
  2864. "Drupal",
  2865. "configuration",
  2866. "configuration management"
  2867. ],
  2868. "support": {
  2869. "source": "https://git.drupalcode.org/project/config_filter",
  2870. "issues": "https://www.drupal.org/project/issues/config_filter",
  2871. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2872. }
  2873. },
  2874. {
  2875. "name": "drupal/config_ignore",
  2876. "version": "2.4.0",
  2877. "source": {
  2878. "type": "git",
  2879. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2880. "reference": "8.x-2.4"
  2881. },
  2882. "dist": {
  2883. "type": "zip",
  2884. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2885. "reference": "8.x-2.4",
  2886. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2887. },
  2888. "require": {
  2889. "drupal/config_filter": "^1 || ^2",
  2890. "drupal/core": "^8 || ^9 || ^10"
  2891. },
  2892. "type": "drupal-module",
  2893. "extra": {
  2894. "drupal": {
  2895. "version": "8.x-2.4",
  2896. "datestamp": "1676045435",
  2897. "security-coverage": {
  2898. "status": "covered",
  2899. "message": "Covered by Drupal's security advisory policy"
  2900. }
  2901. }
  2902. },
  2903. "notification-url": "https://packages.drupal.org/8/downloads",
  2904. "license": [
  2905. "GPL-2.0-or-later"
  2906. ],
  2907. "authors": [
  2908. {
  2909. "name": "Tommy Lynge Jørgensen",
  2910. "homepage": "https://www.drupal.org/u/tlyngej",
  2911. "email": "tlyngej@gmail.com",
  2912. "role": "Maintainer"
  2913. },
  2914. {
  2915. "name": "Fabian Bircher",
  2916. "homepage": "https://www.drupal.org/u/bircher",
  2917. "role": "Maintainer"
  2918. },
  2919. {
  2920. "name": "tlyngej",
  2921. "homepage": "https://www.drupal.org/user/413139"
  2922. }
  2923. ],
  2924. "description": "Ignore certain configuration during import.",
  2925. "homepage": "http://drupal.org/project/config_ignore",
  2926. "support": {
  2927. "source": "https://git.drupalcode.org/project/config_ignore",
  2928. "issues": "https://drupal.org/project/config_ignore",
  2929. "irc": "irc://irc.freenode.org/drupal-contribute"
  2930. }
  2931. },
  2932. {
  2933. "name": "drupal/config_pages",
  2934. "version": "2.15.0",
  2935. "source": {
  2936. "type": "git",
  2937. "url": "https://git.drupalcode.org/project/config_pages.git",
  2938. "reference": "8.x-2.15"
  2939. },
  2940. "dist": {
  2941. "type": "zip",
  2942. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2943. "reference": "8.x-2.15",
  2944. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2945. },
  2946. "require": {
  2947. "drupal/core": "^8.5 | ^9 || ^10"
  2948. },
  2949. "type": "drupal-module",
  2950. "extra": {
  2951. "drupal": {
  2952. "version": "8.x-2.15",
  2953. "datestamp": "1688847929",
  2954. "security-coverage": {
  2955. "status": "covered",
  2956. "message": "Covered by Drupal's security advisory policy"
  2957. }
  2958. },
  2959. "drush": {
  2960. "services": {
  2961. "drush.services.yml": "^9"
  2962. }
  2963. }
  2964. },
  2965. "notification-url": "https://packages.drupal.org/8/downloads",
  2966. "license": [
  2967. "GPL-2.0-or-later"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "m.krestnicov",
  2972. "homepage": "https://www.drupal.org/user/3193903"
  2973. },
  2974. {
  2975. "name": "Qwaygon",
  2976. "homepage": "https://www.drupal.org/user/636624"
  2977. },
  2978. {
  2979. "name": "shumer",
  2980. "homepage": "https://www.drupal.org/user/2297432"
  2981. }
  2982. ],
  2983. "description": "ConfigPages module",
  2984. "homepage": "http://drupal.org/project/config_pages",
  2985. "keywords": [
  2986. "Drupal"
  2987. ],
  2988. "support": {
  2989. "source": "http://cgit.drupalcode.org/config_pages",
  2990. "issues": "http://drupal.org/project/issues/config_pages"
  2991. }
  2992. },
  2993. {
  2994. "name": "drupal/config_update",
  2995. "version": "2.0.0-alpha3",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://git.drupalcode.org/project/config_update.git",
  2999. "reference": "2.0.0-alpha3"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  3004. "reference": "2.0.0-alpha3",
  3005. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  3006. },
  3007. "require": {
  3008. "drupal/core": "^9.4 || ^10"
  3009. },
  3010. "type": "drupal-module",
  3011. "extra": {
  3012. "drupal": {
  3013. "version": "2.0.0-alpha3",
  3014. "datestamp": "1683807608",
  3015. "security-coverage": {
  3016. "status": "not-covered",
  3017. "message": "Alpha releases are not covered by Drupal security advisories."
  3018. }
  3019. }
  3020. },
  3021. "notification-url": "https://packages.drupal.org/8/downloads",
  3022. "license": [
  3023. "GPL-2.0-or-later"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "codebymikey",
  3028. "homepage": "https://www.drupal.org/user/3573206"
  3029. },
  3030. {
  3031. "name": "Pasqualle",
  3032. "homepage": "https://www.drupal.org/user/80733"
  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_as_config",
  3043. "version": "1.0.10",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://git.drupalcode.org/project/content_as_config.git",
  3047. "reference": "1.0.10"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  3052. "reference": "1.0.10",
  3053. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  3054. },
  3055. "require": {
  3056. "drupal/core": "^9.3 || ^10"
  3057. },
  3058. "conflict": {
  3059. "drupal/structure_sync": "*"
  3060. },
  3061. "require-dev": {
  3062. "drupal/feeds": "*",
  3063. "drupal/group": "*"
  3064. },
  3065. "suggest": {
  3066. "drupal/markdown": "Render module help more elegantly."
  3067. },
  3068. "type": "drupal-module",
  3069. "extra": {
  3070. "drupal": {
  3071. "version": "1.0.10",
  3072. "datestamp": "1665066743",
  3073. "security-coverage": {
  3074. "status": "covered",
  3075. "message": "Covered by Drupal's security advisory policy"
  3076. }
  3077. },
  3078. "drush": {
  3079. "services": {
  3080. "drush.services.yml": "^9"
  3081. }
  3082. }
  3083. },
  3084. "notification-url": "https://packages.drupal.org/8/downloads",
  3085. "license": [
  3086. "GPL-2.0-or-later"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Daniel Johnson (daniel_j)",
  3091. "homepage": "https://www.drupal.org/u/daniel_j",
  3092. "role": "Maintainer"
  3093. }
  3094. ],
  3095. "description": "Allows content entities to be exported/imported as configuration.",
  3096. "homepage": "https://drupal.org/project/content_as_config",
  3097. "keywords": [
  3098. "Configuration",
  3099. "Drupal"
  3100. ],
  3101. "support": {
  3102. "source": "https://git.drupalcode.org/project/content_as_config",
  3103. "issues": "https://www.drupal.org/project/issues/content_as_config"
  3104. }
  3105. },
  3106. {
  3107. "name": "drupal/content_lock",
  3108. "version": "2.3.0",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://git.drupalcode.org/project/content_lock.git",
  3112. "reference": "8.x-2.3"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  3117. "reference": "8.x-2.3",
  3118. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  3119. },
  3120. "require": {
  3121. "drupal/core": "^9.0 || ^10.0"
  3122. },
  3123. "type": "drupal-module",
  3124. "extra": {
  3125. "drupal": {
  3126. "version": "8.x-2.3",
  3127. "datestamp": "1668427342",
  3128. "security-coverage": {
  3129. "status": "covered",
  3130. "message": "Covered by Drupal's security advisory policy"
  3131. }
  3132. }
  3133. },
  3134. "notification-url": "https://packages.drupal.org/8/downloads",
  3135. "license": [
  3136. "GPL-2.0-or-later"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "alexpott",
  3141. "homepage": "https://www.drupal.org/user/157725"
  3142. },
  3143. {
  3144. "name": "chr.fritsch",
  3145. "homepage": "https://www.drupal.org/user/2103716"
  3146. },
  3147. {
  3148. "name": "daniel.bosen",
  3149. "homepage": "https://www.drupal.org/user/404865"
  3150. },
  3151. {
  3152. "name": "ergonlogic",
  3153. "homepage": "https://www.drupal.org/user/368613"
  3154. },
  3155. {
  3156. "name": "mfb",
  3157. "homepage": "https://www.drupal.org/user/12302"
  3158. },
  3159. {
  3160. "name": "pandaski",
  3161. "homepage": "https://www.drupal.org/user/1987218"
  3162. },
  3163. {
  3164. "name": "volkerk",
  3165. "homepage": "https://www.drupal.org/user/57527"
  3166. }
  3167. ],
  3168. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3169. "homepage": "https://www.drupal.org/project/content_lock",
  3170. "support": {
  3171. "source": "https://git.drupalcode.org/project/content_lock"
  3172. }
  3173. },
  3174. {
  3175. "name": "drupal/context",
  3176. "version": "5.0.0-rc1",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://git.drupalcode.org/project/context.git",
  3180. "reference": "5.0.0-rc1"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  3185. "reference": "5.0.0-rc1",
  3186. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  3187. },
  3188. "require": {
  3189. "drupal/core": "^9.3 || ^10"
  3190. },
  3191. "type": "drupal-module",
  3192. "extra": {
  3193. "drupal": {
  3194. "version": "5.0.0-rc1",
  3195. "datestamp": "1677054769",
  3196. "security-coverage": {
  3197. "status": "not-covered",
  3198. "message": "RC releases are not covered by Drupal security advisories."
  3199. }
  3200. }
  3201. },
  3202. "notification-url": "https://packages.drupal.org/8/downloads",
  3203. "license": [
  3204. "MIT"
  3205. ],
  3206. "authors": [
  3207. {
  3208. "name": "Christoffer Palm",
  3209. "homepage": "http://www.oddhill.se/",
  3210. "email": "christoffer.palm@oddhill.se",
  3211. "role": "Developer"
  3212. },
  3213. {
  3214. "name": "boshtian",
  3215. "homepage": "https://www.drupal.org/user/1773456"
  3216. },
  3217. {
  3218. "name": "colan",
  3219. "homepage": "https://www.drupal.org/user/58704"
  3220. },
  3221. {
  3222. "name": "emanaton",
  3223. "homepage": "https://www.drupal.org/user/120853"
  3224. },
  3225. {
  3226. "name": "febbraro",
  3227. "homepage": "https://www.drupal.org/user/43670"
  3228. },
  3229. {
  3230. "name": "fizk",
  3231. "homepage": "https://www.drupal.org/user/473174"
  3232. },
  3233. {
  3234. "name": "hass",
  3235. "homepage": "https://www.drupal.org/user/85918"
  3236. },
  3237. {
  3238. "name": "hefox",
  3239. "homepage": "https://www.drupal.org/user/426416"
  3240. },
  3241. {
  3242. "name": "jmiccolis",
  3243. "homepage": "https://www.drupal.org/user/31731"
  3244. },
  3245. {
  3246. "name": "Kristen Pol",
  3247. "homepage": "https://www.drupal.org/user/8389"
  3248. },
  3249. {
  3250. "name": "nedjo",
  3251. "homepage": "https://www.drupal.org/user/4481"
  3252. },
  3253. {
  3254. "name": "NormySan",
  3255. "homepage": "https://www.drupal.org/user/112352"
  3256. },
  3257. {
  3258. "name": "patricksettle",
  3259. "homepage": "https://www.drupal.org/user/26618"
  3260. },
  3261. {
  3262. "name": "paulocs",
  3263. "homepage": "https://www.drupal.org/user/3640109"
  3264. },
  3265. {
  3266. "name": "Steven Jones",
  3267. "homepage": "https://www.drupal.org/user/99644"
  3268. },
  3269. {
  3270. "name": "tekante",
  3271. "homepage": "https://www.drupal.org/user/640024"
  3272. },
  3273. {
  3274. "name": "yhahn",
  3275. "homepage": "https://www.drupal.org/user/264833"
  3276. }
  3277. ],
  3278. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3279. "homepage": "https://github.com/oddhill/context",
  3280. "keywords": [
  3281. "Drupal",
  3282. "block",
  3283. "conditions",
  3284. "context",
  3285. "visibility"
  3286. ],
  3287. "support": {
  3288. "source": "https://github.com/oddhill/context",
  3289. "issues": "https://github.com/oddhill/context/issues",
  3290. "docs": "https://github.com/oddhill/context"
  3291. }
  3292. },
  3293. {
  3294. "name": "drupal/core",
  3295. "version": "10.5.3",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/drupal/core.git",
  3299. "reference": "acfb3b6eab3c3b1480e353d2e2e508bc6ae703c9"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/drupal/core/zipball/acfb3b6eab3c3b1480e353d2e2e508bc6ae703c9",
  3304. "reference": "acfb3b6eab3c3b1480e353d2e2e508bc6ae703c9",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "asm89/stack-cors": "^2.3",
  3309. "composer-runtime-api": "^2.1",
  3310. "composer/semver": "^3.3",
  3311. "doctrine/annotations": "^1.14",
  3312. "egulias/email-validator": "^3.2.1|^4.0",
  3313. "ext-date": "*",
  3314. "ext-dom": "*",
  3315. "ext-filter": "*",
  3316. "ext-gd": "*",
  3317. "ext-hash": "*",
  3318. "ext-json": "*",
  3319. "ext-pcre": "*",
  3320. "ext-pdo": "*",
  3321. "ext-session": "*",
  3322. "ext-simplexml": "*",
  3323. "ext-spl": "*",
  3324. "ext-tokenizer": "*",
  3325. "ext-xml": "*",
  3326. "guzzlehttp/guzzle": "^7.5",
  3327. "guzzlehttp/psr7": "^2.4.5",
  3328. "masterminds/html5": "^2.7",
  3329. "mck89/peast": "^1.14",
  3330. "pear/archive_tar": "^1.4.14",
  3331. "php": ">=8.1.0",
  3332. "psr/log": "^3.0",
  3333. "sebastian/diff": "^4",
  3334. "symfony/console": "^6.4",
  3335. "symfony/dependency-injection": "^6.4",
  3336. "symfony/event-dispatcher": "^6.4",
  3337. "symfony/filesystem": "^6.4",
  3338. "symfony/finder": "^6.4",
  3339. "symfony/http-foundation": "^6.4",
  3340. "symfony/http-kernel": "^6.4",
  3341. "symfony/mailer": "^6.4",
  3342. "symfony/mime": "^6.4",
  3343. "symfony/polyfill-iconv": "^1.26",
  3344. "symfony/process": "^6.4",
  3345. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3346. "symfony/routing": "^6.4",
  3347. "symfony/serializer": "^6.4",
  3348. "symfony/validator": "^6.4",
  3349. "symfony/yaml": "^6.4",
  3350. "twig/twig": "^3.15.0"
  3351. },
  3352. "conflict": {
  3353. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  3354. "drush/drush": "<12.4.3"
  3355. },
  3356. "replace": {
  3357. "drupal/core-annotation": "self.version",
  3358. "drupal/core-assertion": "self.version",
  3359. "drupal/core-class-finder": "self.version",
  3360. "drupal/core-datetime": "self.version",
  3361. "drupal/core-dependency-injection": "self.version",
  3362. "drupal/core-diff": "self.version",
  3363. "drupal/core-discovery": "self.version",
  3364. "drupal/core-event-dispatcher": "self.version",
  3365. "drupal/core-file-cache": "self.version",
  3366. "drupal/core-file-security": "self.version",
  3367. "drupal/core-filesystem": "self.version",
  3368. "drupal/core-front-matter": "self.version",
  3369. "drupal/core-gettext": "self.version",
  3370. "drupal/core-graph": "self.version",
  3371. "drupal/core-http-foundation": "self.version",
  3372. "drupal/core-php-storage": "self.version",
  3373. "drupal/core-plugin": "self.version",
  3374. "drupal/core-proxy-builder": "self.version",
  3375. "drupal/core-render": "self.version",
  3376. "drupal/core-serialization": "self.version",
  3377. "drupal/core-transliteration": "self.version",
  3378. "drupal/core-utility": "self.version",
  3379. "drupal/core-uuid": "self.version",
  3380. "drupal/core-version": "self.version"
  3381. },
  3382. "suggest": {
  3383. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3384. },
  3385. "type": "drupal-core",
  3386. "extra": {
  3387. "drupal-scaffold": {
  3388. "file-mapping": {
  3389. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3390. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3391. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3392. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3393. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3394. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3395. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3396. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3397. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3398. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3399. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3400. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3401. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3402. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3403. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3404. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3405. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3406. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3407. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3408. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3409. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3410. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3411. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3412. }
  3413. }
  3414. },
  3415. "autoload": {
  3416. "files": [
  3417. "includes/bootstrap.inc"
  3418. ],
  3419. "psr-4": {
  3420. "Drupal\\Core\\": "lib/Drupal/Core",
  3421. "Drupal\\Component\\": "lib/Drupal/Component"
  3422. },
  3423. "classmap": [
  3424. "lib/Drupal.php",
  3425. "lib/Drupal/Component/DependencyInjection/Container.php",
  3426. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3427. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3428. "lib/Drupal/Component/Utility/Timer.php",
  3429. "lib/Drupal/Component/Utility/Unicode.php",
  3430. "lib/Drupal/Core/Cache/Cache.php",
  3431. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3432. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3433. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3434. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3435. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3436. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3437. "lib/Drupal/Core/Database/Connection.php",
  3438. "lib/Drupal/Core/Database/Database.php",
  3439. "lib/Drupal/Core/Database/StatementInterface.php",
  3440. "lib/Drupal/Core/DependencyInjection/Container.php",
  3441. "lib/Drupal/Core/DrupalKernel.php",
  3442. "lib/Drupal/Core/DrupalKernelInterface.php",
  3443. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3444. "lib/Drupal/Core/Site/Settings.php",
  3445. "lib/Drupal/Component/Datetime/Time.php"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "GPL-2.0-or-later"
  3451. ],
  3452. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3453. "support": {
  3454. "source": "https://github.com/drupal/core/tree/10.5.3"
  3455. },
  3456. "time": "2025-09-04T09:07:02+00:00"
  3457. },
  3458. {
  3459. "name": "drupal/core-composer-scaffold",
  3460. "version": "10.1.6",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3464. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3465. },
  3466. "dist": {
  3467. "type": "zip",
  3468. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3469. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3470. "shasum": ""
  3471. },
  3472. "require": {
  3473. "composer-plugin-api": "^2",
  3474. "php": ">=7.3.0"
  3475. },
  3476. "conflict": {
  3477. "drupal-composer/drupal-scaffold": "*"
  3478. },
  3479. "require-dev": {
  3480. "composer/composer": "^1.8@stable"
  3481. },
  3482. "type": "composer-plugin",
  3483. "extra": {
  3484. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3485. "branch-alias": {
  3486. "dev-master": "1.0.x-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-4": {
  3491. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3492. }
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "GPL-2.0-or-later"
  3497. ],
  3498. "description": "A flexible Composer project scaffold builder.",
  3499. "homepage": "https://www.drupal.org/project/drupal",
  3500. "keywords": [
  3501. "drupal"
  3502. ],
  3503. "support": {
  3504. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3505. },
  3506. "time": "2023-04-30T16:15:32+00:00"
  3507. },
  3508. {
  3509. "name": "drupal/core-project-message",
  3510. "version": "10.1.6",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/drupal/core-project-message.git",
  3514. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3519. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3520. "shasum": ""
  3521. },
  3522. "require": {
  3523. "composer-plugin-api": "^2",
  3524. "php": ">=7.3.0"
  3525. },
  3526. "type": "composer-plugin",
  3527. "extra": {
  3528. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3529. },
  3530. "autoload": {
  3531. "psr-4": {
  3532. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3533. }
  3534. },
  3535. "notification-url": "https://packagist.org/downloads/",
  3536. "license": [
  3537. "GPL-2.0-or-later"
  3538. ],
  3539. "description": "Adds a message after Composer installation.",
  3540. "homepage": "https://www.drupal.org/project/drupal",
  3541. "keywords": [
  3542. "drupal"
  3543. ],
  3544. "support": {
  3545. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3546. },
  3547. "time": "2022-07-01T08:32:39+00:00"
  3548. },
  3549. {
  3550. "name": "drupal/core-recommended",
  3551. "version": "10.5.3",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/drupal/core-recommended.git",
  3555. "reference": "f0463740dbeaaa3b6bb44064055ad5deef004048"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/f0463740dbeaaa3b6bb44064055ad5deef004048",
  3560. "reference": "f0463740dbeaaa3b6bb44064055ad5deef004048",
  3561. "shasum": ""
  3562. },
  3563. "require": {
  3564. "asm89/stack-cors": "~v2.3.0",
  3565. "composer/semver": "~3.4.3",
  3566. "doctrine/annotations": "~1.14.4",
  3567. "doctrine/deprecations": "~1.1.5",
  3568. "doctrine/lexer": "~2.1.1",
  3569. "drupal/core": "10.5.3",
  3570. "egulias/email-validator": "~4.0.4",
  3571. "guzzlehttp/guzzle": "~7.9.3",
  3572. "guzzlehttp/promises": "~2.2.0",
  3573. "guzzlehttp/psr7": "~2.7.1",
  3574. "masterminds/html5": "~2.9.0",
  3575. "mck89/peast": "~v1.17.0",
  3576. "pear/archive_tar": "~1.5.0",
  3577. "pear/console_getopt": "~v1.4.3",
  3578. "pear/pear-core-minimal": "~v1.10.16",
  3579. "pear/pear_exception": "~v1.0.2",
  3580. "psr/cache": "~3.0.0",
  3581. "psr/container": "~2.0.2",
  3582. "psr/event-dispatcher": "~1.0.0",
  3583. "psr/http-client": "~1.0.3",
  3584. "psr/http-factory": "~1.1.0",
  3585. "psr/log": "~3.0.2",
  3586. "ralouphie/getallheaders": "~3.0.3",
  3587. "sebastian/diff": "~4.0.6",
  3588. "symfony/console": "~v6.4.21",
  3589. "symfony/dependency-injection": "~v6.4.20",
  3590. "symfony/deprecation-contracts": "~v3.5.1",
  3591. "symfony/error-handler": "~v6.4.20",
  3592. "symfony/event-dispatcher": "~v6.4.13",
  3593. "symfony/event-dispatcher-contracts": "~v3.5.1",
  3594. "symfony/filesystem": "~v6.4.13",
  3595. "symfony/finder": "~v6.4.17",
  3596. "symfony/http-foundation": "~v6.4.21",
  3597. "symfony/http-kernel": "~v6.4.21",
  3598. "symfony/mailer": "~v6.4.21",
  3599. "symfony/mime": "~v6.4.21",
  3600. "symfony/polyfill-ctype": "~v1.31.0",
  3601. "symfony/polyfill-iconv": "~v1.31.0",
  3602. "symfony/polyfill-intl-grapheme": "~v1.31.0",
  3603. "symfony/polyfill-intl-idn": "~v1.31.0",
  3604. "symfony/polyfill-intl-normalizer": "~v1.31.0",
  3605. "symfony/polyfill-mbstring": "~v1.31.0",
  3606. "symfony/polyfill-php83": "~v1.31.0",
  3607. "symfony/process": "~v6.4.20",
  3608. "symfony/psr-http-message-bridge": "~v6.4.13",
  3609. "symfony/routing": "~v6.4.18",
  3610. "symfony/serializer": "~v6.4.21",
  3611. "symfony/service-contracts": "~v3.5.1",
  3612. "symfony/string": "~v6.4.21",
  3613. "symfony/translation-contracts": "~v3.5.1",
  3614. "symfony/validator": "~v6.4.21",
  3615. "symfony/var-dumper": "~v6.4.21",
  3616. "symfony/var-exporter": "~v6.4.21",
  3617. "symfony/yaml": "~v6.4.21",
  3618. "twig/twig": "~v3.20.0"
  3619. },
  3620. "conflict": {
  3621. "webflo/drupal-core-strict": "*"
  3622. },
  3623. "type": "metapackage",
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "GPL-2.0-or-later"
  3627. ],
  3628. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3629. "support": {
  3630. "source": "https://github.com/drupal/core-recommended/tree/10.5.3"
  3631. },
  3632. "time": "2025-09-04T09:07:02+00:00"
  3633. },
  3634. {
  3635. "name": "drupal/cshs",
  3636. "version": "4.0.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://git.drupalcode.org/project/cshs.git",
  3640. "reference": "4.0.0"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3645. "reference": "4.0.0",
  3646. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3647. },
  3648. "require": {
  3649. "drupal/core": "^9 || ^10",
  3650. "php": ">=8.0"
  3651. },
  3652. "type": "drupal-module",
  3653. "extra": {
  3654. "drupal": {
  3655. "version": "4.0.0",
  3656. "datestamp": "1668457722",
  3657. "security-coverage": {
  3658. "status": "covered",
  3659. "message": "Covered by Drupal's security advisory policy"
  3660. }
  3661. }
  3662. },
  3663. "notification-url": "https://packages.drupal.org/8/downloads",
  3664. "license": [
  3665. "GPL-2.0-or-later"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Walter Jenner",
  3670. "homepage": "https://drupal.org/u/valderama"
  3671. },
  3672. {
  3673. "name": "Sergii Bondarenko",
  3674. "homepage": "https://drupal.org/u/BR0kEN",
  3675. "email": "sb@firstvector.org"
  3676. },
  3677. {
  3678. "name": "Daneel Cruz",
  3679. "homepage": "https://drupal.org/u/daneelcm"
  3680. },
  3681. {
  3682. "name": "Purushotam Rai",
  3683. "homepage": "https://drupal.org/u/purushotam.rai"
  3684. }
  3685. ],
  3686. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3687. "homepage": "https://www.drupal.org/project/cshs",
  3688. "keywords": [
  3689. "client-side-select",
  3690. "hierarchical-select",
  3691. "module",
  3692. "select",
  3693. "taxonomy"
  3694. ],
  3695. "support": {
  3696. "source": "https://git.drupalcode.org/project/cshs",
  3697. "issues": "https://www.drupal.org/project/issues/cshs"
  3698. }
  3699. },
  3700. {
  3701. "name": "drupal/ctools",
  3702. "version": "3.14.0",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://git.drupalcode.org/project/ctools.git",
  3706. "reference": "8.x-3.14"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3711. "reference": "8.x-3.14",
  3712. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3713. },
  3714. "require": {
  3715. "drupal/core": "^9.3 || ^10"
  3716. },
  3717. "type": "drupal-module",
  3718. "extra": {
  3719. "drupal": {
  3720. "version": "8.x-3.14",
  3721. "datestamp": "1684299793",
  3722. "security-coverage": {
  3723. "status": "covered",
  3724. "message": "Covered by Drupal's security advisory policy"
  3725. }
  3726. },
  3727. "branch-alias": {
  3728. "dev-8.x-3.x": "3.x-dev"
  3729. }
  3730. },
  3731. "notification-url": "https://packages.drupal.org/8/downloads",
  3732. "license": [
  3733. "GPL-2.0-or-later"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "Kris Vanderwater (EclipseGc)",
  3738. "homepage": "https://www.drupal.org/u/eclipsegc",
  3739. "role": "Maintainer"
  3740. },
  3741. {
  3742. "name": "Jakob Perry (japerry)",
  3743. "homepage": "https://www.drupal.org/u/japerry",
  3744. "role": "Maintainer"
  3745. },
  3746. {
  3747. "name": "Tim Plunkett (tim.plunkett)",
  3748. "homepage": "https://www.drupal.org/u/timplunkett",
  3749. "role": "Maintainer"
  3750. },
  3751. {
  3752. "name": "James Gilliland (neclimdul)",
  3753. "homepage": "https://www.drupal.org/u/neclimdul",
  3754. "role": "Maintainer"
  3755. },
  3756. {
  3757. "name": "Daniel Wehner (dawehner)",
  3758. "homepage": "https://www.drupal.org/u/dawehner",
  3759. "role": "Maintainer"
  3760. },
  3761. {
  3762. "name": "joelpittet",
  3763. "homepage": "https://www.drupal.org/user/160302"
  3764. },
  3765. {
  3766. "name": "merlinofchaos",
  3767. "homepage": "https://www.drupal.org/user/26979"
  3768. },
  3769. {
  3770. "name": "neclimdul",
  3771. "homepage": "https://www.drupal.org/user/48673"
  3772. },
  3773. {
  3774. "name": "sdboyer",
  3775. "homepage": "https://www.drupal.org/user/146719"
  3776. },
  3777. {
  3778. "name": "sun",
  3779. "homepage": "https://www.drupal.org/user/54136"
  3780. },
  3781. {
  3782. "name": "tim.plunkett",
  3783. "homepage": "https://www.drupal.org/user/241634"
  3784. }
  3785. ],
  3786. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3787. "homepage": "https://www.drupal.org/project/ctools",
  3788. "support": {
  3789. "source": "https://git.drupalcode.org/project/ctools",
  3790. "issues": "https://www.drupal.org/project/issues/ctools"
  3791. }
  3792. },
  3793. {
  3794. "name": "drupal/date_range_formatter",
  3795. "version": "dev-9.0.x",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3799. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3800. },
  3801. "require": {
  3802. "drupal/core": "^8 || ^9 || ^10"
  3803. },
  3804. "type": "drupal-module",
  3805. "extra": {
  3806. "branch-alias": {
  3807. "dev-9.0.x": "9.0.x-dev"
  3808. },
  3809. "drupal": {
  3810. "version": "9.0.x-dev",
  3811. "datestamp": "1661511425",
  3812. "security-coverage": {
  3813. "status": "not-covered",
  3814. "message": "Dev releases are not covered by Drupal security advisories."
  3815. }
  3816. }
  3817. },
  3818. "notification-url": "https://packages.drupal.org/8/downloads",
  3819. "license": [
  3820. "GPL-2.0-or-later"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "maximpodorov",
  3825. "homepage": "https://www.drupal.org/user/515310"
  3826. },
  3827. {
  3828. "name": "sudishth",
  3829. "homepage": "https://www.drupal.org/user/1440562"
  3830. }
  3831. ],
  3832. "description": "Formats date ranges.",
  3833. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3834. "support": {
  3835. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3836. }
  3837. },
  3838. {
  3839. "name": "drupal/devel",
  3840. "version": "5.1.2",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://git.drupalcode.org/project/devel.git",
  3844. "reference": "5.1.2"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3849. "reference": "5.1.2",
  3850. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3851. },
  3852. "require": {
  3853. "doctrine/common": "^2.7 || ^3.4",
  3854. "drupal/core": "^9 || ^10",
  3855. "php": ">=7.4",
  3856. "symfony/var-dumper": "^4 || ^5 || ^6"
  3857. },
  3858. "conflict": {
  3859. "kint-php/kint": "<3"
  3860. },
  3861. "require-dev": {
  3862. "drush/drush": "^11"
  3863. },
  3864. "suggest": {
  3865. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3866. },
  3867. "type": "drupal-module",
  3868. "extra": {
  3869. "drupal": {
  3870. "version": "5.1.2",
  3871. "datestamp": "1686161028",
  3872. "security-coverage": {
  3873. "status": "covered",
  3874. "message": "Covered by Drupal's security advisory policy"
  3875. }
  3876. },
  3877. "drush": {
  3878. "services": {
  3879. "drush.services.yml": "^9 || ^10 || ^11"
  3880. }
  3881. }
  3882. },
  3883. "notification-url": "https://packages.drupal.org/8/downloads",
  3884. "license": [
  3885. "GPL-2.0-or-later"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "drupalspoons",
  3890. "homepage": "https://www.drupal.org/user/3647684"
  3891. },
  3892. {
  3893. "name": "moshe weitzman",
  3894. "homepage": "https://www.drupal.org/user/23"
  3895. }
  3896. ],
  3897. "description": "Various blocks, pages, and functions for developers.",
  3898. "homepage": "https://www.drupal.org/project/devel",
  3899. "support": {
  3900. "source": "https://gitlab.com/drupalspoons/devel",
  3901. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3902. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3903. }
  3904. },
  3905. {
  3906. "name": "drupal/devel_kint_extras",
  3907. "version": "1.1.0",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3911. "reference": "1.1.0"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3916. "reference": "1.1.0",
  3917. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3918. },
  3919. "require": {
  3920. "drupal/core": "^9 || ^10",
  3921. "drupal/devel": "^4.0 || ^5.0",
  3922. "kint-php/kint": "^3.3 || ^4.0"
  3923. },
  3924. "type": "drupal-module",
  3925. "extra": {
  3926. "drupal": {
  3927. "version": "1.1.0",
  3928. "datestamp": "1663760998",
  3929. "security-coverage": {
  3930. "status": "covered",
  3931. "message": "Covered by Drupal's security advisory policy"
  3932. }
  3933. }
  3934. },
  3935. "notification-url": "https://packages.drupal.org/8/downloads",
  3936. "license": [
  3937. "GPL-2.0-or-later"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "Jan Chojnacki",
  3942. "homepage": "https://www.drupal.org/u/janchojnacki"
  3943. },
  3944. {
  3945. "name": "Other contributors",
  3946. "homepage": "https://www.drupal.org/node/3164492/committers"
  3947. }
  3948. ],
  3949. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3950. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3951. "support": {
  3952. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3953. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3954. "chat": "irc://irc.freenode.org/drupal-contribute"
  3955. }
  3956. },
  3957. {
  3958. "name": "drupal/email_registration",
  3959. "version": "1.3.0",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://git.drupalcode.org/project/email_registration.git",
  3963. "reference": "8.x-1.3"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3968. "reference": "8.x-1.3",
  3969. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3970. },
  3971. "require": {
  3972. "drupal/core": "^9.1 || ^10"
  3973. },
  3974. "conflict": {
  3975. "drupal/commerce": "<2.12"
  3976. },
  3977. "require-dev": {
  3978. "drupal/commerce": "^2.0",
  3979. "drupal/token": "*"
  3980. },
  3981. "type": "drupal-module",
  3982. "extra": {
  3983. "drupal": {
  3984. "version": "8.x-1.3",
  3985. "datestamp": "1697182609",
  3986. "security-coverage": {
  3987. "status": "covered",
  3988. "message": "Covered by Drupal's security advisory policy"
  3989. }
  3990. }
  3991. },
  3992. "notification-url": "https://packages.drupal.org/8/downloads",
  3993. "license": [
  3994. "GPL-2.0-or-later"
  3995. ],
  3996. "authors": [
  3997. {
  3998. "name": "Greg Knaddison (greggles)",
  3999. "homepage": "https://www.drupal.org/u/greggles",
  4000. "role": "Maintainer"
  4001. },
  4002. {
  4003. "name": "Andrey Postnikov (andypost)",
  4004. "homepage": "https://www.drupal.org/u/andypost",
  4005. "role": "Maintainer"
  4006. },
  4007. {
  4008. "name": "Chris Herberte",
  4009. "homepage": "https://www.drupal.org/u/chris-herberte",
  4010. "role": "Maintainer"
  4011. },
  4012. {
  4013. "name": "Moshe Weitzman (moshe weitzman)",
  4014. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4015. "role": "Maintainer"
  4016. },
  4017. {
  4018. "name": "Grevil",
  4019. "homepage": "https://www.drupal.org/user/3668491"
  4020. },
  4021. {
  4022. "name": "moshe weitzman",
  4023. "homepage": "https://www.drupal.org/user/23"
  4024. }
  4025. ],
  4026. "description": "Allows users to register with an email address as their username.",
  4027. "homepage": "https://www.drupal.org/project/email_registration",
  4028. "support": {
  4029. "source": "https://git.drupalcode.org/project/email_registration",
  4030. "issues": "http://drupal.org/project/issues/email_registration"
  4031. }
  4032. },
  4033. {
  4034. "name": "drupal/embed",
  4035. "version": "1.7.0",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://git.drupalcode.org/project/embed.git",
  4039. "reference": "8.x-1.7"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  4044. "reference": "8.x-1.7",
  4045. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  4046. },
  4047. "require": {
  4048. "drupal/core": "^9.3 | ^10"
  4049. },
  4050. "require-dev": {
  4051. "drupal/ckeditor": "*"
  4052. },
  4053. "type": "drupal-module",
  4054. "extra": {
  4055. "drupal": {
  4056. "version": "8.x-1.7",
  4057. "datestamp": "1697642867",
  4058. "security-coverage": {
  4059. "status": "covered",
  4060. "message": "Covered by Drupal's security advisory policy"
  4061. }
  4062. }
  4063. },
  4064. "notification-url": "https://packages.drupal.org/8/downloads",
  4065. "license": [
  4066. "GPL-2.0-or-later"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "cs_shadow",
  4071. "homepage": "https://www.drupal.org/user/2828287"
  4072. },
  4073. {
  4074. "name": "Dave Reid",
  4075. "homepage": "https://www.drupal.org/user/53892"
  4076. },
  4077. {
  4078. "name": "Devin Carlson",
  4079. "homepage": "https://www.drupal.org/user/290182"
  4080. },
  4081. {
  4082. "name": "Drupal Media Team",
  4083. "homepage": "https://www.drupal.org/user/3260690"
  4084. },
  4085. {
  4086. "name": "phenaproxima",
  4087. "homepage": "https://www.drupal.org/user/205645"
  4088. },
  4089. {
  4090. "name": "slashrsm",
  4091. "homepage": "https://www.drupal.org/user/744628"
  4092. }
  4093. ],
  4094. "description": "Provides a framework for different types of embeds in text editors.",
  4095. "homepage": "https://www.drupal.org/project/embed",
  4096. "support": {
  4097. "source": "https://git.drupalcode.org/project/embed"
  4098. }
  4099. },
  4100. {
  4101. "name": "drupal/entity",
  4102. "version": "1.4.0",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://git.drupalcode.org/project/entity.git",
  4106. "reference": "8.x-1.4"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  4111. "reference": "8.x-1.4",
  4112. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  4113. },
  4114. "require": {
  4115. "drupal/core": "^9.2|^10.0"
  4116. },
  4117. "type": "drupal-module",
  4118. "extra": {
  4119. "drupal": {
  4120. "version": "8.x-1.4",
  4121. "datestamp": "1661898023",
  4122. "security-coverage": {
  4123. "status": "covered",
  4124. "message": "Covered by Drupal's security advisory policy"
  4125. }
  4126. }
  4127. },
  4128. "notification-url": "https://packages.drupal.org/8/downloads",
  4129. "license": [
  4130. "GPL-2.0-or-later"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "Berdir",
  4135. "homepage": "https://www.drupal.org/user/214652"
  4136. },
  4137. {
  4138. "name": "bojanz",
  4139. "homepage": "https://www.drupal.org/user/86106"
  4140. },
  4141. {
  4142. "name": "dawehner",
  4143. "homepage": "https://www.drupal.org/user/99340"
  4144. },
  4145. {
  4146. "name": "dixon_",
  4147. "homepage": "https://www.drupal.org/user/239911"
  4148. },
  4149. {
  4150. "name": "fago",
  4151. "homepage": "https://www.drupal.org/user/16747"
  4152. },
  4153. {
  4154. "name": "mglaman",
  4155. "homepage": "https://www.drupal.org/user/2416470"
  4156. },
  4157. {
  4158. "name": "TR",
  4159. "homepage": "https://www.drupal.org/user/202830"
  4160. }
  4161. ],
  4162. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4163. "homepage": "https://www.drupal.org/project/entity",
  4164. "support": {
  4165. "source": "https://git.drupalcode.org/project/entity",
  4166. "issues": "https://www.drupal.org/project/issues/entity"
  4167. }
  4168. },
  4169. {
  4170. "name": "drupal/entity_browser",
  4171. "version": "2.9.0",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4175. "reference": "8.x-2.9"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  4180. "reference": "8.x-2.9",
  4181. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  4182. },
  4183. "require": {
  4184. "drupal/core": "^9.2 || ^10"
  4185. },
  4186. "require-dev": {
  4187. "drupal/embed": "~1.0",
  4188. "drupal/entity_embed": "1.x-dev",
  4189. "drupal/entity_reference_revisions": "1.x-dev",
  4190. "drupal/entityqueue": "1.x-dev",
  4191. "drupal/inline_entity_form": "1.x-dev",
  4192. "drupal/paragraphs": "1.x-dev",
  4193. "drupal/token": "1.x-dev"
  4194. },
  4195. "type": "drupal-module",
  4196. "extra": {
  4197. "drupal": {
  4198. "version": "8.x-2.9",
  4199. "datestamp": "1674070933",
  4200. "security-coverage": {
  4201. "status": "covered",
  4202. "message": "Covered by Drupal's security advisory policy"
  4203. }
  4204. }
  4205. },
  4206. "notification-url": "https://packages.drupal.org/8/downloads",
  4207. "license": [
  4208. "GPL-2.0+"
  4209. ],
  4210. "authors": [
  4211. {
  4212. "name": "Janez Urevc",
  4213. "homepage": "https://github.com/slashrsm",
  4214. "role": "Maintainer"
  4215. },
  4216. {
  4217. "name": "Primoz Hmeljak",
  4218. "homepage": "https://github.com/primsi",
  4219. "role": "Maintainer"
  4220. },
  4221. {
  4222. "name": "See other contributors",
  4223. "homepage": "https://www.drupal.org/node/1943336/committers",
  4224. "role": "contributor"
  4225. },
  4226. {
  4227. "name": "Drupal Media Team",
  4228. "homepage": "https://www.drupal.org/user/3260690"
  4229. },
  4230. {
  4231. "name": "marcingy",
  4232. "homepage": "https://www.drupal.org/user/77320"
  4233. },
  4234. {
  4235. "name": "oknate",
  4236. "homepage": "https://www.drupal.org/user/471638"
  4237. },
  4238. {
  4239. "name": "Primsi",
  4240. "homepage": "https://www.drupal.org/user/282629"
  4241. },
  4242. {
  4243. "name": "samuel.mortenson",
  4244. "homepage": "https://www.drupal.org/user/2582268"
  4245. },
  4246. {
  4247. "name": "slashrsm",
  4248. "homepage": "https://www.drupal.org/user/744628"
  4249. }
  4250. ],
  4251. "description": "Entity browsing and selecting component.",
  4252. "homepage": "http://drupal.org/project/entity_browser",
  4253. "support": {
  4254. "source": "https://git.drupalcode.org/project/entity_browser",
  4255. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4256. "irc": "irc://irc.freenode.org/drupal-contribute"
  4257. }
  4258. },
  4259. {
  4260. "name": "drupal/entity_browser_enhanced",
  4261. "version": "2.0.0",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4265. "reference": "2.0.0"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  4270. "reference": "2.0.0",
  4271. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  4272. },
  4273. "require": {
  4274. "drupal/core": "^9 || ^10",
  4275. "drupal/entity_browser": "~2.0"
  4276. },
  4277. "type": "drupal-module",
  4278. "extra": {
  4279. "drupal": {
  4280. "version": "2.0.0",
  4281. "datestamp": "1697211243",
  4282. "security-coverage": {
  4283. "status": "covered",
  4284. "message": "Covered by Drupal's security advisory policy"
  4285. }
  4286. }
  4287. },
  4288. "notification-url": "https://packages.drupal.org/8/downloads",
  4289. "license": [
  4290. "GPL-2.0-or-later"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Vardot",
  4295. "homepage": "https://www.drupal.org/vardot",
  4296. "role": "Maintainer"
  4297. },
  4298. {
  4299. "name": "Rajab Natshah",
  4300. "homepage": "https://www.drupal.org/user/1414312"
  4301. }
  4302. ],
  4303. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4304. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4305. "support": {
  4306. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4307. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4308. }
  4309. },
  4310. {
  4311. "name": "drupal/entity_clone",
  4312. "version": "dev-2.x",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4316. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  4317. },
  4318. "require": {
  4319. "drupal/core": "^8.8 || ^9 || ^10"
  4320. },
  4321. "require-dev": {
  4322. "drupal/entity_browser": "2.x-dev",
  4323. "drupal/entity_usage": "2.x-dev",
  4324. "drupal/paragraphs": "^1.0",
  4325. "drupal/search_api": "~1.0"
  4326. },
  4327. "type": "drupal-module",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-2.x": "2.x-dev"
  4331. },
  4332. "drupal": {
  4333. "version": "2.0.0-beta4+3-dev",
  4334. "datestamp": "1697545494",
  4335. "security-coverage": {
  4336. "status": "not-covered",
  4337. "message": "Dev releases are not covered by Drupal security advisories."
  4338. }
  4339. }
  4340. },
  4341. "notification-url": "https://packages.drupal.org/8/downloads",
  4342. "license": [
  4343. "GPL-2.0-or-later"
  4344. ],
  4345. "authors": [
  4346. {
  4347. "name": "colan",
  4348. "homepage": "https://www.drupal.org/user/58704"
  4349. },
  4350. {
  4351. "name": "joevagyok",
  4352. "homepage": "https://www.drupal.org/user/2876343"
  4353. },
  4354. {
  4355. "name": "NickDickinsonWilde",
  4356. "homepage": "https://www.drupal.org/user/3094661"
  4357. },
  4358. {
  4359. "name": "Rajeshreeputra",
  4360. "homepage": "https://www.drupal.org/user/3418561"
  4361. },
  4362. {
  4363. "name": "Upchuk",
  4364. "homepage": "https://www.drupal.org/user/1885838"
  4365. },
  4366. {
  4367. "name": "vpeltot",
  4368. "homepage": "https://www.drupal.org/user/1361586"
  4369. }
  4370. ],
  4371. "description": "Add a clone action for all entities.",
  4372. "homepage": "https://drupal.org/project/entity_clone",
  4373. "support": {
  4374. "source": "https://git.drupalcode.org/project/entity_clone"
  4375. }
  4376. },
  4377. {
  4378. "name": "drupal/entity_reference_revisions",
  4379. "version": "1.10.0",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4383. "reference": "8.x-1.10"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4388. "reference": "8.x-1.10",
  4389. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4390. },
  4391. "require": {
  4392. "drupal/core": "^9 || ^10"
  4393. },
  4394. "require-dev": {
  4395. "drupal/diff": "1.x-dev"
  4396. },
  4397. "type": "drupal-module",
  4398. "extra": {
  4399. "drupal": {
  4400. "version": "8.x-1.10",
  4401. "datestamp": "1660664712",
  4402. "security-coverage": {
  4403. "status": "covered",
  4404. "message": "Covered by Drupal's security advisory policy"
  4405. }
  4406. },
  4407. "drush": {
  4408. "services": {
  4409. "drush.services.yml": "^9 || ^10 || ^11"
  4410. }
  4411. }
  4412. },
  4413. "notification-url": "https://packages.drupal.org/8/downloads",
  4414. "license": [
  4415. "GPL-2.0-or-later"
  4416. ],
  4417. "authors": [
  4418. {
  4419. "name": "Berdir",
  4420. "homepage": "https://www.drupal.org/user/214652"
  4421. },
  4422. {
  4423. "name": "Frans",
  4424. "homepage": "https://www.drupal.org/user/514222"
  4425. },
  4426. {
  4427. "name": "jeroen.b",
  4428. "homepage": "https://www.drupal.org/user/1853532"
  4429. },
  4430. {
  4431. "name": "miro_dietiker",
  4432. "homepage": "https://www.drupal.org/user/227761"
  4433. }
  4434. ],
  4435. "description": "Entity Reference Revisions",
  4436. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4437. "support": {
  4438. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4439. }
  4440. },
  4441. {
  4442. "name": "drupal/extlink",
  4443. "version": "1.7.0",
  4444. "source": {
  4445. "type": "git",
  4446. "url": "https://git.drupalcode.org/project/extlink.git",
  4447. "reference": "8.x-1.7"
  4448. },
  4449. "dist": {
  4450. "type": "zip",
  4451. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4452. "reference": "8.x-1.7",
  4453. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4454. },
  4455. "require": {
  4456. "drupal/core": "^8 || ^9 || ^10"
  4457. },
  4458. "type": "drupal-module",
  4459. "extra": {
  4460. "drupal": {
  4461. "version": "8.x-1.7",
  4462. "datestamp": "1665770295",
  4463. "security-coverage": {
  4464. "status": "covered",
  4465. "message": "Covered by Drupal's security advisory policy"
  4466. }
  4467. }
  4468. },
  4469. "notification-url": "https://packages.drupal.org/8/downloads",
  4470. "license": [
  4471. "GPL-2.0-or-later"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "Nate Lampton",
  4476. "homepage": "https://www.drupal.org/u/quicksketch",
  4477. "role": "Maintainer"
  4478. },
  4479. {
  4480. "name": "Lachlan Ennis",
  4481. "homepage": "https://www.drupal.org/u/elachlan",
  4482. "role": "Maintainer"
  4483. },
  4484. {
  4485. "name": "Neslee Canil Pinto",
  4486. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4487. "role": "Maintainer"
  4488. }
  4489. ],
  4490. "description": "Modify behavior and appearance of external links.",
  4491. "homepage": "https://www.drupal.org/project/extlink",
  4492. "keywords": [
  4493. "Drupal",
  4494. "External Links"
  4495. ],
  4496. "support": {
  4497. "source": "https://git.drupalcode.org/project/extlink",
  4498. "issues": "https://www.drupal.org/project/issues/extlink"
  4499. }
  4500. },
  4501. {
  4502. "name": "drupal/field_group",
  4503. "version": "dev-3.x",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://git.drupalcode.org/project/field_group.git",
  4507. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4508. },
  4509. "require": {
  4510. "drupal/core": "^9.2 || ^10"
  4511. },
  4512. "type": "drupal-module",
  4513. "extra": {
  4514. "branch-alias": {
  4515. "dev-3.x": "3.x-dev"
  4516. },
  4517. "drupal": {
  4518. "version": "8.x-3.4+4-dev",
  4519. "datestamp": "1696831482",
  4520. "security-coverage": {
  4521. "status": "not-covered",
  4522. "message": "Dev releases are not covered by Drupal security advisories."
  4523. }
  4524. }
  4525. },
  4526. "notification-url": "https://packages.drupal.org/8/downloads",
  4527. "license": [
  4528. "GPL-2.0-or-later"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "Anybody",
  4533. "homepage": "https://www.drupal.org/user/291091"
  4534. },
  4535. {
  4536. "name": "Hydra",
  4537. "homepage": "https://www.drupal.org/user/647364"
  4538. },
  4539. {
  4540. "name": "jyve",
  4541. "homepage": "https://www.drupal.org/user/591438"
  4542. },
  4543. {
  4544. "name": "nils.destoop",
  4545. "homepage": "https://www.drupal.org/user/361625"
  4546. },
  4547. {
  4548. "name": "Stalski",
  4549. "homepage": "https://www.drupal.org/user/322618"
  4550. },
  4551. {
  4552. "name": "swentel",
  4553. "homepage": "https://www.drupal.org/user/107403"
  4554. }
  4555. ],
  4556. "description": "Provides the field_group module.",
  4557. "homepage": "https://www.drupal.org/project/field_group",
  4558. "support": {
  4559. "source": "https://git.drupalcode.org/project/field_group",
  4560. "issues": "https://www.drupal.org/project/issues/field_group"
  4561. }
  4562. },
  4563. {
  4564. "name": "drupal/field_permissions",
  4565. "version": "1.3.0",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://git.drupalcode.org/project/field_permissions.git",
  4569. "reference": "8.x-1.3"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.3.zip",
  4574. "reference": "8.x-1.3",
  4575. "shasum": "f3815d21b423c94e800388f3c29237fc1a00189d"
  4576. },
  4577. "require": {
  4578. "drupal/core": ">=8.9 <11"
  4579. },
  4580. "type": "drupal-module",
  4581. "extra": {
  4582. "drupal": {
  4583. "version": "8.x-1.3",
  4584. "datestamp": "1703264421",
  4585. "security-coverage": {
  4586. "status": "covered",
  4587. "message": "Covered by Drupal's security advisory policy"
  4588. }
  4589. },
  4590. "branch-alias": {
  4591. "dev-8.x-1.x": "1.x-dev"
  4592. }
  4593. },
  4594. "notification-url": "https://packages.drupal.org/8/downloads",
  4595. "license": [
  4596. "GPL-2.0-or-later"
  4597. ],
  4598. "authors": [
  4599. {
  4600. "name": "japerry",
  4601. "homepage": "https://www.drupal.org/user/45640"
  4602. },
  4603. {
  4604. "name": "jhedstrom",
  4605. "homepage": "https://www.drupal.org/user/208732"
  4606. },
  4607. {
  4608. "name": "mariacha1",
  4609. "homepage": "https://www.drupal.org/user/2210776"
  4610. },
  4611. {
  4612. "name": "markus_petrux",
  4613. "homepage": "https://www.drupal.org/user/39593"
  4614. },
  4615. {
  4616. "name": "RobLoach",
  4617. "homepage": "https://www.drupal.org/user/61114"
  4618. }
  4619. ],
  4620. "description": "The Field Permissions module allows site administrators to set field-level permissions to edit, view and create fields on any entity.",
  4621. "homepage": "https://www.drupal.org/project/field_permissions",
  4622. "support": {
  4623. "source": "https://git.drupalcode.org/project/field_permissions",
  4624. "issues": "https://www.drupal.org/project/issues/field_permissions"
  4625. }
  4626. },
  4627. {
  4628. "name": "drupal/file_mdm",
  4629. "version": "2.6.0",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4633. "reference": "8.x-2.6"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4638. "reference": "8.x-2.6",
  4639. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4640. },
  4641. "require": {
  4642. "drupal/core": "^9.3 | ^10",
  4643. "fileeye/pel": "^0.9.20",
  4644. "phenx/php-font-lib": "^0.5.4"
  4645. },
  4646. "require-dev": {
  4647. "drupal/vendor_stream_wrapper": "^2.0.2",
  4648. "fileeye/linuxlibertine-fonts": "^5.3"
  4649. },
  4650. "type": "drupal-module",
  4651. "extra": {
  4652. "drupal": {
  4653. "version": "8.x-2.6",
  4654. "datestamp": "1688489716",
  4655. "security-coverage": {
  4656. "status": "covered",
  4657. "message": "Covered by Drupal's security advisory policy"
  4658. }
  4659. }
  4660. },
  4661. "notification-url": "https://packages.drupal.org/8/downloads",
  4662. "license": [
  4663. "GPL-2.0-or-later"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "mondrake",
  4668. "homepage": "https://www.drupal.org/user/1307444"
  4669. }
  4670. ],
  4671. "description": "Provides a service to manage file metadata.",
  4672. "homepage": "https://www.drupal.org/project/file_mdm",
  4673. "support": {
  4674. "source": "https://git.drupalcode.org/project/file_mdm"
  4675. }
  4676. },
  4677. {
  4678. "name": "drupal/filter_perms",
  4679. "version": "dev-1.x",
  4680. "source": {
  4681. "type": "git",
  4682. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4683. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4684. },
  4685. "require": {
  4686. "drupal/core": "^9.0 || ^10.0"
  4687. },
  4688. "type": "drupal-module",
  4689. "extra": {
  4690. "branch-alias": {
  4691. "dev-1.x": "1.x-dev"
  4692. },
  4693. "drupal": {
  4694. "version": "8.x-1.0-alpha2+1-dev",
  4695. "datestamp": "1697635045",
  4696. "security-coverage": {
  4697. "status": "not-covered",
  4698. "message": "Dev releases are not covered by Drupal security advisories."
  4699. }
  4700. }
  4701. },
  4702. "notification-url": "https://packages.drupal.org/8/downloads",
  4703. "license": [
  4704. "GPL-2.0+"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "cYu",
  4709. "homepage": "https://www.drupal.org/user/202205"
  4710. },
  4711. {
  4712. "name": "deekayen",
  4713. "homepage": "https://www.drupal.org/user/972"
  4714. },
  4715. {
  4716. "name": "ivavictoria",
  4717. "homepage": "https://www.drupal.org/user/3061533"
  4718. },
  4719. {
  4720. "name": "justcaldwell",
  4721. "homepage": "https://www.drupal.org/user/290069"
  4722. },
  4723. {
  4724. "name": "mgbellaire",
  4725. "homepage": "https://www.drupal.org/user/1831932"
  4726. },
  4727. {
  4728. "name": "willzyx",
  4729. "homepage": "https://www.drupal.org/user/1043862"
  4730. }
  4731. ],
  4732. "description": "Provides role and module filters to simplify the user permissions page.",
  4733. "homepage": "https://www.drupal.org/project/filter_perms",
  4734. "support": {
  4735. "source": "http://cgit.drupalcode.org/filter_perms",
  4736. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4737. }
  4738. },
  4739. {
  4740. "name": "drupal/formatter_suite",
  4741. "version": "2.0.0",
  4742. "source": {
  4743. "type": "git",
  4744. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4745. "reference": "2.0.0"
  4746. },
  4747. "dist": {
  4748. "type": "zip",
  4749. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4750. "reference": "2.0.0",
  4751. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4752. },
  4753. "require": {
  4754. "drupal/core": "^9 || ^10"
  4755. },
  4756. "type": "drupal-module",
  4757. "extra": {
  4758. "drupal": {
  4759. "version": "2.0.0",
  4760. "datestamp": "1694036572",
  4761. "security-coverage": {
  4762. "status": "covered",
  4763. "message": "Covered by Drupal's security advisory policy"
  4764. }
  4765. }
  4766. },
  4767. "notification-url": "https://packages.drupal.org/8/downloads",
  4768. "license": [
  4769. "GPL-2.0-or-later"
  4770. ],
  4771. "authors": [
  4772. {
  4773. "name": "thecooltechguy",
  4774. "homepage": "https://www.drupal.org/user/3674323"
  4775. },
  4776. {
  4777. "name": "toamit",
  4778. "homepage": "https://www.drupal.org/user/2820523"
  4779. }
  4780. ],
  4781. "description": "Field formaters to present numbers, text, links, etc.",
  4782. "homepage": "https://www.drupal.org/project/formatter_suite",
  4783. "keywords": [
  4784. "Drupal",
  4785. "Format"
  4786. ],
  4787. "support": {
  4788. "source": "http://cgit.drupalcode.org/formatter_suite",
  4789. "issues": "http://drupal.org/project/issues/formatter_suite"
  4790. }
  4791. },
  4792. {
  4793. "name": "drupal/honeypot",
  4794. "version": "2.1.3",
  4795. "source": {
  4796. "type": "git",
  4797. "url": "https://git.drupalcode.org/project/honeypot.git",
  4798. "reference": "2.1.3"
  4799. },
  4800. "dist": {
  4801. "type": "zip",
  4802. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4803. "reference": "2.1.3",
  4804. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4805. },
  4806. "require": {
  4807. "drupal/core": "^9.2 || ^10"
  4808. },
  4809. "require-dev": {
  4810. "drupal/rules": "^3.0"
  4811. },
  4812. "type": "drupal-module",
  4813. "extra": {
  4814. "drupal": {
  4815. "version": "2.1.3",
  4816. "datestamp": "1695604754",
  4817. "security-coverage": {
  4818. "status": "covered",
  4819. "message": "Covered by Drupal's security advisory policy"
  4820. }
  4821. }
  4822. },
  4823. "notification-url": "https://packages.drupal.org/8/downloads",
  4824. "license": [
  4825. "GPL-2.0-or-later"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Jeff Geerling",
  4830. "homepage": "https://www.drupal.org/user/389011",
  4831. "email": "geerlingguy@mac.com"
  4832. },
  4833. {
  4834. "name": "Manuel Garcia",
  4835. "homepage": "https://www.drupal.org/user/213194"
  4836. },
  4837. {
  4838. "name": "TR",
  4839. "homepage": "https://www.drupal.org/user/202830"
  4840. },
  4841. {
  4842. "name": "vijaycs85",
  4843. "homepage": "https://www.drupal.org/user/93488"
  4844. }
  4845. ],
  4846. "description": "Mitigates spam form submissions using the honeypot method.",
  4847. "homepage": "https://www.drupal.org/project/honeypot",
  4848. "keywords": [
  4849. "deterrent",
  4850. "form",
  4851. "honeypot",
  4852. "honeytrap",
  4853. "php",
  4854. "spam"
  4855. ],
  4856. "support": {
  4857. "source": "https://git.drupalcode.org/project/honeypot",
  4858. "issues": "https://www.drupal.org/project/issues/honeypot"
  4859. }
  4860. },
  4861. {
  4862. "name": "drupal/image_delta_formatter",
  4863. "version": "1.2.0",
  4864. "source": {
  4865. "type": "git",
  4866. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4867. "reference": "8.x-1.2"
  4868. },
  4869. "dist": {
  4870. "type": "zip",
  4871. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.2.zip",
  4872. "reference": "8.x-1.2",
  4873. "shasum": "e236790ad92bdbc8a0ba0aa042a8580d8ce9f425"
  4874. },
  4875. "require": {
  4876. "drupal/core": "^8 || ^9 || ^10"
  4877. },
  4878. "type": "drupal-module",
  4879. "extra": {
  4880. "drupal": {
  4881. "version": "8.x-1.2",
  4882. "datestamp": "1685543777",
  4883. "security-coverage": {
  4884. "status": "covered",
  4885. "message": "Covered by Drupal's security advisory policy"
  4886. }
  4887. }
  4888. },
  4889. "notification-url": "https://packages.drupal.org/8/downloads",
  4890. "license": [
  4891. "GPL-2.0-or-later"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "bojanz",
  4896. "homepage": "https://www.drupal.org/user/86106"
  4897. },
  4898. {
  4899. "name": "fgm",
  4900. "homepage": "https://www.drupal.org/user/27985"
  4901. },
  4902. {
  4903. "name": "jsacksick",
  4904. "homepage": "https://www.drupal.org/user/972218"
  4905. }
  4906. ],
  4907. "description": "Provides a formatter that displays a specific delta of a multivalue imagefield.",
  4908. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4909. "support": {
  4910. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4911. }
  4912. },
  4913. {
  4914. "name": "drupal/image_field_caption",
  4915. "version": "2.0.1",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4919. "reference": "2.0.1"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://ftp.drupal.org/files/projects/image_field_caption-2.0.1.zip",
  4924. "reference": "2.0.1",
  4925. "shasum": "053e1ccfc638b3b2cd5c59c3c6a053e4e5041183"
  4926. },
  4927. "require": {
  4928. "drupal/core": "^9 || ^10"
  4929. },
  4930. "type": "drupal-module",
  4931. "extra": {
  4932. "drupal": {
  4933. "version": "2.0.1",
  4934. "datestamp": "1705443097",
  4935. "security-coverage": {
  4936. "status": "covered",
  4937. "message": "Covered by Drupal's security advisory policy"
  4938. }
  4939. }
  4940. },
  4941. "notification-url": "https://packages.drupal.org/8/downloads",
  4942. "license": [
  4943. "GPL-2.0+"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "awm",
  4948. "homepage": "https://www.drupal.org/user/1059398"
  4949. },
  4950. {
  4951. "name": "hanoii",
  4952. "homepage": "https://www.drupal.org/user/23157"
  4953. },
  4954. {
  4955. "name": "ironsizide",
  4956. "homepage": "https://www.drupal.org/user/787980"
  4957. },
  4958. {
  4959. "name": "iStryker",
  4960. "homepage": "https://www.drupal.org/user/303676"
  4961. },
  4962. {
  4963. "name": "RobLoach",
  4964. "homepage": "https://www.drupal.org/user/61114"
  4965. },
  4966. {
  4967. "name": "tyler.frankenstein",
  4968. "homepage": "https://www.drupal.org/user/150680"
  4969. }
  4970. ],
  4971. "description": "Add caption to image field.",
  4972. "homepage": "https://www.drupal.org/project/image_field_caption",
  4973. "support": {
  4974. "source": "https://git.drupalcode.org/project/image_field_caption",
  4975. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4976. }
  4977. },
  4978. {
  4979. "name": "drupal/imagemagick",
  4980. "version": "3.4.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4984. "reference": "8.x-3.4"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4989. "reference": "8.x-3.4",
  4990. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4991. },
  4992. "require": {
  4993. "drupal/core": "^9.3 || ^10",
  4994. "drupal/file_mdm": "^2.5",
  4995. "drupal/sophron": "^1.2 || ^2"
  4996. },
  4997. "type": "drupal-module",
  4998. "extra": {
  4999. "drupal": {
  5000. "version": "8.x-3.4",
  5001. "datestamp": "1663947784",
  5002. "security-coverage": {
  5003. "status": "covered",
  5004. "message": "Covered by Drupal's security advisory policy"
  5005. }
  5006. }
  5007. },
  5008. "notification-url": "https://packages.drupal.org/8/downloads",
  5009. "license": [
  5010. "GPL-2.0-or-later"
  5011. ],
  5012. "authors": [
  5013. {
  5014. "name": "Chris Charlton",
  5015. "homepage": "https://www.drupal.org/user/17089"
  5016. },
  5017. {
  5018. "name": "chx",
  5019. "homepage": "https://www.drupal.org/user/9446"
  5020. },
  5021. {
  5022. "name": "claudiu.cristea",
  5023. "homepage": "https://www.drupal.org/user/56348"
  5024. },
  5025. {
  5026. "name": "dman",
  5027. "homepage": "https://www.drupal.org/user/33240"
  5028. },
  5029. {
  5030. "name": "dopry",
  5031. "homepage": "https://www.drupal.org/user/22202"
  5032. },
  5033. {
  5034. "name": "drewish",
  5035. "homepage": "https://www.drupal.org/user/34869"
  5036. },
  5037. {
  5038. "name": "gdl",
  5039. "homepage": "https://www.drupal.org/user/507326"
  5040. },
  5041. {
  5042. "name": "mondrake",
  5043. "homepage": "https://www.drupal.org/user/1307444"
  5044. },
  5045. {
  5046. "name": "quicksketch",
  5047. "homepage": "https://www.drupal.org/user/35821"
  5048. },
  5049. {
  5050. "name": "sun",
  5051. "homepage": "https://www.drupal.org/user/54136"
  5052. },
  5053. {
  5054. "name": "walkah",
  5055. "homepage": "https://www.drupal.org/user/1531"
  5056. }
  5057. ],
  5058. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5059. "homepage": "https://www.drupal.org/project/imagemagick",
  5060. "support": {
  5061. "source": "https://git.drupalcode.org/project/imagemagick"
  5062. }
  5063. },
  5064. {
  5065. "name": "drupal/inline_entity_form",
  5066. "version": "1.0.0-rc15",
  5067. "source": {
  5068. "type": "git",
  5069. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5070. "reference": "8.x-1.0-rc15"
  5071. },
  5072. "dist": {
  5073. "type": "zip",
  5074. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  5075. "reference": "8.x-1.0-rc15",
  5076. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  5077. },
  5078. "require": {
  5079. "drupal/core": "^8.8 || ^9 || ^10",
  5080. "php": ">=7.1"
  5081. },
  5082. "require-dev": {
  5083. "drupal/entity_reference_revisions": "^1.0"
  5084. },
  5085. "type": "drupal-module",
  5086. "extra": {
  5087. "drupal": {
  5088. "version": "8.x-1.0-rc15",
  5089. "datestamp": "1678126675",
  5090. "security-coverage": {
  5091. "status": "not-covered",
  5092. "message": "RC releases are not covered by Drupal security advisories."
  5093. }
  5094. }
  5095. },
  5096. "notification-url": "https://packages.drupal.org/8/downloads",
  5097. "license": [
  5098. "GPL-2.0-or-later"
  5099. ],
  5100. "authors": [
  5101. {
  5102. "name": "bojanz",
  5103. "homepage": "https://www.drupal.org/user/86106"
  5104. },
  5105. {
  5106. "name": "Centarro",
  5107. "homepage": "https://www.drupal.org/user/3661446"
  5108. },
  5109. {
  5110. "name": "dawehner",
  5111. "homepage": "https://www.drupal.org/user/99340"
  5112. },
  5113. {
  5114. "name": "geek-merlin",
  5115. "homepage": "https://www.drupal.org/user/229048"
  5116. },
  5117. {
  5118. "name": "joachim",
  5119. "homepage": "https://www.drupal.org/user/107701"
  5120. },
  5121. {
  5122. "name": "jsacksick",
  5123. "homepage": "https://www.drupal.org/user/972218"
  5124. },
  5125. {
  5126. "name": "oknate",
  5127. "homepage": "https://www.drupal.org/user/471638"
  5128. },
  5129. {
  5130. "name": "podarok",
  5131. "homepage": "https://www.drupal.org/user/116002"
  5132. },
  5133. {
  5134. "name": "ram4nd",
  5135. "homepage": "https://www.drupal.org/user/601534"
  5136. },
  5137. {
  5138. "name": "rszrama",
  5139. "homepage": "https://www.drupal.org/user/49344"
  5140. },
  5141. {
  5142. "name": "slashrsm",
  5143. "homepage": "https://www.drupal.org/user/744628"
  5144. },
  5145. {
  5146. "name": "webflo",
  5147. "homepage": "https://www.drupal.org/user/254778"
  5148. }
  5149. ],
  5150. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5151. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5152. "support": {
  5153. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5154. }
  5155. },
  5156. {
  5157. "name": "drupal/jquery_ui",
  5158. "version": "1.6.0",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5162. "reference": "8.x-1.6"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  5167. "reference": "8.x-1.6",
  5168. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  5169. },
  5170. "require": {
  5171. "drupal/core": "^9.2 || ^10"
  5172. },
  5173. "type": "drupal-module",
  5174. "extra": {
  5175. "drupal": {
  5176. "version": "8.x-1.6",
  5177. "datestamp": "1668521197",
  5178. "security-coverage": {
  5179. "status": "covered",
  5180. "message": "Covered by Drupal's security advisory policy"
  5181. }
  5182. }
  5183. },
  5184. "notification-url": "https://packages.drupal.org/8/downloads",
  5185. "license": [
  5186. "GPL-2.0-or-later"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "bnjmnm",
  5191. "homepage": "https://www.drupal.org/user/2369194"
  5192. },
  5193. {
  5194. "name": "jjeff",
  5195. "homepage": "https://www.drupal.org/user/17190"
  5196. },
  5197. {
  5198. "name": "lauriii",
  5199. "homepage": "https://www.drupal.org/user/1078742"
  5200. },
  5201. {
  5202. "name": "litwol",
  5203. "homepage": "https://www.drupal.org/user/78134"
  5204. },
  5205. {
  5206. "name": "mfb",
  5207. "homepage": "https://www.drupal.org/user/12302"
  5208. },
  5209. {
  5210. "name": "mfer",
  5211. "homepage": "https://www.drupal.org/user/25701"
  5212. },
  5213. {
  5214. "name": "mikelutz",
  5215. "homepage": "https://www.drupal.org/user/2972409"
  5216. },
  5217. {
  5218. "name": "nod_",
  5219. "homepage": "https://www.drupal.org/user/598310"
  5220. },
  5221. {
  5222. "name": "phenaproxima",
  5223. "homepage": "https://www.drupal.org/user/205645"
  5224. },
  5225. {
  5226. "name": "RobLoach",
  5227. "homepage": "https://www.drupal.org/user/61114"
  5228. },
  5229. {
  5230. "name": "sun",
  5231. "homepage": "https://www.drupal.org/user/54136"
  5232. },
  5233. {
  5234. "name": "webchick",
  5235. "homepage": "https://www.drupal.org/user/24967"
  5236. },
  5237. {
  5238. "name": "Wim Leers",
  5239. "homepage": "https://www.drupal.org/user/99777"
  5240. },
  5241. {
  5242. "name": "zrpnr",
  5243. "homepage": "https://www.drupal.org/user/1448368"
  5244. }
  5245. ],
  5246. "description": "Provides jQuery UI library.",
  5247. "homepage": "https://www.drupal.org/project/jquery_ui",
  5248. "support": {
  5249. "source": "https://git.drupalcode.org/project/jquery_ui"
  5250. }
  5251. },
  5252. {
  5253. "name": "drupal/jquery_ui_datepicker",
  5254. "version": "2.0.0",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5258. "reference": "2.0.0"
  5259. },
  5260. "dist": {
  5261. "type": "zip",
  5262. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  5263. "reference": "2.0.0",
  5264. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  5265. },
  5266. "require": {
  5267. "drupal/core": "^9.2 || ^10",
  5268. "drupal/jquery_ui": "^1.6"
  5269. },
  5270. "type": "drupal-module",
  5271. "extra": {
  5272. "drupal": {
  5273. "version": "2.0.0",
  5274. "datestamp": "1670871494",
  5275. "security-coverage": {
  5276. "status": "covered",
  5277. "message": "Covered by Drupal's security advisory policy"
  5278. }
  5279. }
  5280. },
  5281. "notification-url": "https://packages.drupal.org/8/downloads",
  5282. "license": [
  5283. "GPL-2.0-or-later"
  5284. ],
  5285. "authors": [
  5286. {
  5287. "name": "bnjmnm",
  5288. "homepage": "https://www.drupal.org/user/2369194"
  5289. },
  5290. {
  5291. "name": "jrockowitz",
  5292. "homepage": "https://www.drupal.org/user/371407"
  5293. },
  5294. {
  5295. "name": "lauriii",
  5296. "homepage": "https://www.drupal.org/user/1078742"
  5297. },
  5298. {
  5299. "name": "nod_",
  5300. "homepage": "https://www.drupal.org/user/598310"
  5301. },
  5302. {
  5303. "name": "phenaproxima",
  5304. "homepage": "https://www.drupal.org/user/205645"
  5305. },
  5306. {
  5307. "name": "zrpnr",
  5308. "homepage": "https://www.drupal.org/user/1448368"
  5309. }
  5310. ],
  5311. "description": "Provides jQuery UI Datepicker library.",
  5312. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5313. "support": {
  5314. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5315. }
  5316. },
  5317. {
  5318. "name": "drupal/jquery_ui_draggable",
  5319. "version": "2.0.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5323. "reference": "2.0.0"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  5328. "reference": "2.0.0",
  5329. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  5330. },
  5331. "require": {
  5332. "drupal/core": "^9.2 || ^10",
  5333. "drupal/jquery_ui": "^1.6"
  5334. },
  5335. "type": "drupal-module",
  5336. "extra": {
  5337. "drupal": {
  5338. "version": "2.0.0",
  5339. "datestamp": "1670871516",
  5340. "security-coverage": {
  5341. "status": "covered",
  5342. "message": "Covered by Drupal's security advisory policy"
  5343. }
  5344. }
  5345. },
  5346. "notification-url": "https://packages.drupal.org/8/downloads",
  5347. "license": [
  5348. "GPL-2.0-or-later"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "bnjmnm",
  5353. "homepage": "https://www.drupal.org/user/2369194"
  5354. },
  5355. {
  5356. "name": "lauriii",
  5357. "homepage": "https://www.drupal.org/user/1078742"
  5358. },
  5359. {
  5360. "name": "zrpnr",
  5361. "homepage": "https://www.drupal.org/user/1448368"
  5362. }
  5363. ],
  5364. "description": "Provides jQuery UI Draggable library.",
  5365. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5366. "support": {
  5367. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5368. }
  5369. },
  5370. {
  5371. "name": "drupal/jquery_ui_droppable",
  5372. "version": "1.5.0",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5376. "reference": "8.x-1.5"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  5381. "reference": "8.x-1.5",
  5382. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  5383. },
  5384. "require": {
  5385. "drupal/core": "^9.2 || ^10",
  5386. "drupal/jquery_ui": "^1.5",
  5387. "drupal/jquery_ui_draggable": "*"
  5388. },
  5389. "type": "drupal-module",
  5390. "extra": {
  5391. "drupal": {
  5392. "version": "8.x-1.5",
  5393. "datestamp": "1668452746",
  5394. "security-coverage": {
  5395. "status": "covered",
  5396. "message": "Covered by Drupal's security advisory policy"
  5397. }
  5398. }
  5399. },
  5400. "notification-url": "https://packages.drupal.org/8/downloads",
  5401. "license": [
  5402. "GPL-2.0-or-later"
  5403. ],
  5404. "authors": [
  5405. {
  5406. "name": "bnjmnm",
  5407. "homepage": "https://www.drupal.org/user/2369194"
  5408. },
  5409. {
  5410. "name": "lauriii",
  5411. "homepage": "https://www.drupal.org/user/1078742"
  5412. },
  5413. {
  5414. "name": "zrpnr",
  5415. "homepage": "https://www.drupal.org/user/1448368"
  5416. }
  5417. ],
  5418. "description": "Provides jQuery UI Droppable library.",
  5419. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5420. "support": {
  5421. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5422. }
  5423. },
  5424. {
  5425. "name": "drupal/jquery_ui_slider",
  5426. "version": "2.0.0",
  5427. "source": {
  5428. "type": "git",
  5429. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5430. "reference": "2.0.0"
  5431. },
  5432. "dist": {
  5433. "type": "zip",
  5434. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  5435. "reference": "2.0.0",
  5436. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  5437. },
  5438. "require": {
  5439. "drupal/core": "^9.2 || ^10",
  5440. "drupal/jquery_ui": "^1.6"
  5441. },
  5442. "type": "drupal-module",
  5443. "extra": {
  5444. "drupal": {
  5445. "version": "2.0.0",
  5446. "datestamp": "1670871571",
  5447. "security-coverage": {
  5448. "status": "covered",
  5449. "message": "Covered by Drupal's security advisory policy"
  5450. }
  5451. }
  5452. },
  5453. "notification-url": "https://packages.drupal.org/8/downloads",
  5454. "license": [
  5455. "GPL-2.0-or-later"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "bnjmnm",
  5460. "homepage": "https://www.drupal.org/user/2369194"
  5461. },
  5462. {
  5463. "name": "lauriii",
  5464. "homepage": "https://www.drupal.org/user/1078742"
  5465. },
  5466. {
  5467. "name": "zrpnr",
  5468. "homepage": "https://www.drupal.org/user/1448368"
  5469. }
  5470. ],
  5471. "description": "Provides jQuery UI Slider library.",
  5472. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5473. "support": {
  5474. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5475. }
  5476. },
  5477. {
  5478. "name": "drupal/jquery_ui_touch_punch",
  5479. "version": "1.1.0",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5483. "reference": "1.1.0"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  5488. "reference": "1.1.0",
  5489. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  5490. },
  5491. "require": {
  5492. "drupal/core": "^8 || ^9 || ^10",
  5493. "drupal/jquery_ui": "^1.0",
  5494. "politsin/jquery-ui-touch-punch": "^1.0"
  5495. },
  5496. "type": "drupal-module",
  5497. "extra": {
  5498. "drupal": {
  5499. "version": "1.1.0",
  5500. "datestamp": "1662744607",
  5501. "security-coverage": {
  5502. "status": "covered",
  5503. "message": "Covered by Drupal's security advisory policy"
  5504. }
  5505. }
  5506. },
  5507. "notification-url": "https://packages.drupal.org/8/downloads",
  5508. "license": [
  5509. "GPL-2.0-or-later"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Naveen Valecha",
  5514. "homepage": "https://drupal.org/u/naveenvalecha",
  5515. "role": "Maintainer"
  5516. },
  5517. {
  5518. "name": "naveenvalecha",
  5519. "homepage": "https://www.drupal.org/user/2665733"
  5520. }
  5521. ],
  5522. "description": "Provides jQuery UI Touch Punch library.",
  5523. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5524. "keywords": [
  5525. "Drupal",
  5526. "jquery_ui_touch_punch"
  5527. ],
  5528. "support": {
  5529. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5530. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5531. }
  5532. },
  5533. {
  5534. "name": "drupal/link_attributes",
  5535. "version": "1.14.0",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5539. "reference": "8.x-1.14"
  5540. },
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  5544. "reference": "8.x-1.14",
  5545. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  5546. },
  5547. "require": {
  5548. "drupal/core": "^9 || ^10"
  5549. },
  5550. "type": "drupal-module",
  5551. "extra": {
  5552. "drupal": {
  5553. "version": "8.x-1.14",
  5554. "datestamp": "1687393687",
  5555. "security-coverage": {
  5556. "status": "covered",
  5557. "message": "Covered by Drupal's security advisory policy"
  5558. }
  5559. }
  5560. },
  5561. "notification-url": "https://packages.drupal.org/8/downloads",
  5562. "license": [
  5563. "GPL-2.0-or-later"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "larowlan",
  5568. "homepage": "https://www.drupal.org/user/395439"
  5569. }
  5570. ],
  5571. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5572. "homepage": "https://www.drupal.org/project/link_attributes",
  5573. "keywords": [
  5574. "Drupal"
  5575. ],
  5576. "support": {
  5577. "source": "https://git.drupalcode.org/project/link_attributes",
  5578. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5579. }
  5580. },
  5581. {
  5582. "name": "drupal/linked_field",
  5583. "version": "1.5.0",
  5584. "source": {
  5585. "type": "git",
  5586. "url": "https://git.drupalcode.org/project/linked_field.git",
  5587. "reference": "8.x-1.5"
  5588. },
  5589. "dist": {
  5590. "type": "zip",
  5591. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5592. "reference": "8.x-1.5",
  5593. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5594. },
  5595. "require": {
  5596. "drupal/core": "^8.8 || ^9 || ^10"
  5597. },
  5598. "type": "drupal-module",
  5599. "extra": {
  5600. "drupal": {
  5601. "version": "8.x-1.5",
  5602. "datestamp": "1677239525",
  5603. "security-coverage": {
  5604. "status": "covered",
  5605. "message": "Covered by Drupal's security advisory policy"
  5606. }
  5607. }
  5608. },
  5609. "notification-url": "https://packages.drupal.org/8/downloads",
  5610. "license": [
  5611. "GPL-2.0-or-later"
  5612. ],
  5613. "authors": [
  5614. {
  5615. "name": "jcnventura",
  5616. "homepage": "https://www.drupal.org/user/122464"
  5617. },
  5618. {
  5619. "name": "yannickoo",
  5620. "homepage": "https://www.drupal.org/user/531118"
  5621. }
  5622. ],
  5623. "description": "Adds the functionality to link fields to a specific destination.",
  5624. "homepage": "https://www.drupal.org/project/linked_field",
  5625. "support": {
  5626. "source": "https://git.drupalcode.org/project/linked_field"
  5627. }
  5628. },
  5629. {
  5630. "name": "drupal/linkit",
  5631. "version": "6.1.2",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://git.drupalcode.org/project/linkit.git",
  5635. "reference": "6.1.2"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5640. "reference": "6.1.2",
  5641. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5642. },
  5643. "require": {
  5644. "drupal/core": "^10.1"
  5645. },
  5646. "require-dev": {
  5647. "drupal/ckeditor": "*",
  5648. "drupal/imce": "*"
  5649. },
  5650. "type": "drupal-module",
  5651. "extra": {
  5652. "drupal": {
  5653. "version": "6.1.2",
  5654. "datestamp": "1696865478",
  5655. "security-coverage": {
  5656. "status": "covered",
  5657. "message": "Covered by Drupal's security advisory policy"
  5658. }
  5659. }
  5660. },
  5661. "notification-url": "https://packages.drupal.org/8/downloads",
  5662. "license": [
  5663. "GPL-2.0-or-later"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Emil Stjerneman",
  5668. "homepage": "https://stjerneman.com",
  5669. "email": "emil@stjerneman.com",
  5670. "role": "Maintainer"
  5671. },
  5672. {
  5673. "name": "johnwebdev",
  5674. "homepage": "https://www.drupal.org/user/3331569"
  5675. },
  5676. {
  5677. "name": "mark_fullmer",
  5678. "homepage": "https://www.drupal.org/user/2612816"
  5679. }
  5680. ],
  5681. "description": "Linkit - Enriched linking experience",
  5682. "homepage": "http://drupal.org/project/linkit",
  5683. "support": {
  5684. "source": "http://cgit.drupalcode.org/linkit",
  5685. "issues": "http://drupal.org/project/linkit"
  5686. }
  5687. },
  5688. {
  5689. "name": "drupal/login_destination",
  5690. "version": "dev-2.x",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://git.drupalcode.org/project/login_destination.git",
  5694. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5695. },
  5696. "require": {
  5697. "drupal/core": "^8.7.10 || ^9 || ^10"
  5698. },
  5699. "require-dev": {
  5700. "drupal/admin_toolbar": "^1.23",
  5701. "drupal/admin_toolbar_tools": "*"
  5702. },
  5703. "type": "drupal-module",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-2.x": "2.x-dev"
  5707. },
  5708. "drupal": {
  5709. "version": "8.x-2.0-beta5+3-dev",
  5710. "datestamp": "1680181961",
  5711. "security-coverage": {
  5712. "status": "not-covered",
  5713. "message": "Dev releases are not covered by Drupal security advisories."
  5714. }
  5715. }
  5716. },
  5717. "notification-url": "https://packages.drupal.org/8/downloads",
  5718. "license": [
  5719. "GPL-2.0-or-later"
  5720. ],
  5721. "authors": [
  5722. {
  5723. "name": "rsvelko",
  5724. "homepage": "https://www.drupal.org/u/rsvelko",
  5725. "role": "Creator, Maintainer"
  5726. },
  5727. {
  5728. "name": "Other Contributors",
  5729. "homepage": "https://www.drupal.org/node/69051/committers",
  5730. "role": "Contributors"
  5731. },
  5732. {
  5733. "name": "ddrozdik",
  5734. "homepage": "https://www.drupal.org/user/574124"
  5735. },
  5736. {
  5737. "name": "jng12",
  5738. "homepage": "https://www.drupal.org/user/204316"
  5739. },
  5740. {
  5741. "name": "marcp",
  5742. "homepage": "https://www.drupal.org/user/20885"
  5743. },
  5744. {
  5745. "name": "mithy",
  5746. "homepage": "https://www.drupal.org/user/258911"
  5747. },
  5748. {
  5749. "name": "moshe weitzman",
  5750. "homepage": "https://www.drupal.org/user/23"
  5751. },
  5752. {
  5753. "name": "Oliver Huynh",
  5754. "homepage": "https://www.drupal.org/user/243730"
  5755. },
  5756. {
  5757. "name": "perennial.sky",
  5758. "homepage": "https://www.drupal.org/user/2622667"
  5759. },
  5760. {
  5761. "name": "rsvelko",
  5762. "homepage": "https://www.drupal.org/user/337401"
  5763. }
  5764. ],
  5765. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5766. "homepage": "https://drupal.org/project/login_destination",
  5767. "support": {
  5768. "source": "https://git.drupalcode.org/project/login_destination",
  5769. "issues": "https://drupal.org/project/issues/login_destination"
  5770. }
  5771. },
  5772. {
  5773. "name": "drupal/maillog",
  5774. "version": "dev-1.x",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://git.drupalcode.org/project/maillog.git",
  5778. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5779. },
  5780. "require": {
  5781. "drupal/core": "^9 || ^10"
  5782. },
  5783. "type": "drupal-module",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-1.x": "1.x-dev"
  5787. },
  5788. "drupal": {
  5789. "version": "8.x-1.1+2-dev",
  5790. "datestamp": "1686405787",
  5791. "security-coverage": {
  5792. "status": "not-covered",
  5793. "message": "Dev releases are not covered by Drupal security advisories."
  5794. }
  5795. }
  5796. },
  5797. "notification-url": "https://packages.drupal.org/8/downloads",
  5798. "license": [
  5799. "GPL-2.0-or-later"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "Berdir",
  5804. "homepage": "https://www.drupal.org/user/214652"
  5805. },
  5806. {
  5807. "name": "DamienMcKenna",
  5808. "homepage": "https://www.drupal.org/user/108450"
  5809. },
  5810. {
  5811. "name": "miro_dietiker",
  5812. "homepage": "https://www.drupal.org/user/227761"
  5813. },
  5814. {
  5815. "name": "pluess",
  5816. "homepage": "https://www.drupal.org/user/84659"
  5817. }
  5818. ],
  5819. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5820. "homepage": "https://www.drupal.org/project/maillog",
  5821. "support": {
  5822. "source": "https://git.drupalcode.org/project/maillog"
  5823. }
  5824. },
  5825. {
  5826. "name": "drupal/mailsystem",
  5827. "version": "4.4.0",
  5828. "source": {
  5829. "type": "git",
  5830. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5831. "reference": "8.x-4.4"
  5832. },
  5833. "dist": {
  5834. "type": "zip",
  5835. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.4.zip",
  5836. "reference": "8.x-4.4",
  5837. "shasum": "49b2e9efd090cdb4a282c7638b1c76d6723c47b6"
  5838. },
  5839. "require": {
  5840. "drupal/core": "^9 || ^10"
  5841. },
  5842. "type": "drupal-module",
  5843. "extra": {
  5844. "drupal": {
  5845. "version": "8.x-4.4",
  5846. "datestamp": "1657576306",
  5847. "security-coverage": {
  5848. "status": "covered",
  5849. "message": "Covered by Drupal's security advisory policy"
  5850. }
  5851. }
  5852. },
  5853. "notification-url": "https://packages.drupal.org/8/downloads",
  5854. "license": [
  5855. "GPL-2.0-or-later"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Berdir",
  5860. "homepage": "https://www.drupal.org/user/214652"
  5861. },
  5862. {
  5863. "name": "Les Lim",
  5864. "homepage": "https://www.drupal.org/user/84263"
  5865. },
  5866. {
  5867. "name": "Manuel Garcia",
  5868. "homepage": "https://www.drupal.org/user/213194"
  5869. },
  5870. {
  5871. "name": "miro_dietiker",
  5872. "homepage": "https://www.drupal.org/user/227761"
  5873. },
  5874. {
  5875. "name": "Nafes",
  5876. "homepage": "https://www.drupal.org/user/2489926"
  5877. },
  5878. {
  5879. "name": "pillarsdotnet",
  5880. "homepage": "https://www.drupal.org/user/36148"
  5881. }
  5882. ],
  5883. "description": "Mail System",
  5884. "homepage": "https://www.drupal.org/project/mailsystem",
  5885. "support": {
  5886. "source": "https://git.drupalcode.org/project/mailsystem"
  5887. }
  5888. },
  5889. {
  5890. "name": "drupal/matomo",
  5891. "version": "1.23.0",
  5892. "source": {
  5893. "type": "git",
  5894. "url": "https://git.drupalcode.org/project/matomo.git",
  5895. "reference": "8.x-1.23"
  5896. },
  5897. "dist": {
  5898. "type": "zip",
  5899. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  5900. "reference": "8.x-1.23",
  5901. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  5902. },
  5903. "require": {
  5904. "drupal/core": "^9.0 || ^10"
  5905. },
  5906. "conflict": {
  5907. "drupal/csp": "<1.12"
  5908. },
  5909. "require-dev": {
  5910. "drupal/csp": "~1.12",
  5911. "drupal/php": "~1.1",
  5912. "drupal/token": "~1.9"
  5913. },
  5914. "type": "drupal-module",
  5915. "extra": {
  5916. "drupal": {
  5917. "version": "8.x-1.23",
  5918. "datestamp": "1700936102",
  5919. "security-coverage": {
  5920. "status": "covered",
  5921. "message": "Covered by Drupal's security advisory policy"
  5922. }
  5923. }
  5924. },
  5925. "notification-url": "https://packages.drupal.org/8/downloads",
  5926. "license": [
  5927. "GPL-2.0-or-later"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "C-Logemann",
  5932. "homepage": "https://www.drupal.org/user/218368"
  5933. },
  5934. {
  5935. "name": "Grimreaper",
  5936. "homepage": "https://www.drupal.org/user/2388214"
  5937. },
  5938. {
  5939. "name": "hass",
  5940. "homepage": "https://www.drupal.org/user/85918"
  5941. },
  5942. {
  5943. "name": "shelane",
  5944. "homepage": "https://www.drupal.org/user/2674989"
  5945. }
  5946. ],
  5947. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5948. "homepage": "https://www.drupal.org/project/matomo",
  5949. "support": {
  5950. "source": "https://git.drupalcode.org/project/matomo"
  5951. }
  5952. },
  5953. {
  5954. "name": "drupal/maxlength",
  5955. "version": "2.1.2",
  5956. "source": {
  5957. "type": "git",
  5958. "url": "https://git.drupalcode.org/project/maxlength.git",
  5959. "reference": "2.1.2"
  5960. },
  5961. "dist": {
  5962. "type": "zip",
  5963. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5964. "reference": "2.1.2",
  5965. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5966. },
  5967. "require": {
  5968. "drupal/core": "^9.2 || ^10"
  5969. },
  5970. "type": "drupal-module",
  5971. "extra": {
  5972. "drupal": {
  5973. "version": "2.1.2",
  5974. "datestamp": "1689974531",
  5975. "security-coverage": {
  5976. "status": "covered",
  5977. "message": "Covered by Drupal's security advisory policy"
  5978. }
  5979. }
  5980. },
  5981. "notification-url": "https://packages.drupal.org/8/downloads",
  5982. "license": [
  5983. "GPL-2.0-or-later"
  5984. ],
  5985. "authors": [
  5986. {
  5987. "name": "Marius Scurtescu (mariuss)",
  5988. "homepage": "https://www.drupal.org/u/mariuss",
  5989. "role": "Maintainer"
  5990. },
  5991. {
  5992. "name": "Clayton Dewey (cedewey)",
  5993. "homepage": "https://www.drupal.org/u/cedewey",
  5994. "role": "Maintainer"
  5995. },
  5996. {
  5997. "name": "Daniel Wehner (dawehner)",
  5998. "homepage": "https://www.drupal.org/u/dawehner",
  5999. "role": "Maintainer"
  6000. },
  6001. {
  6002. "name": "Paulino Michelazzo (pmichelazzo)",
  6003. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6004. "role": "Maintainer"
  6005. },
  6006. {
  6007. "name": "Jeff Hipp (hipp2bsquare)",
  6008. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6009. "role": "Maintainer"
  6010. },
  6011. {
  6012. "name": "Steven DuBois (srdtwc)",
  6013. "homepage": "https://www.drupal.org/u/srdtwc",
  6014. "role": "Maintainer"
  6015. },
  6016. {
  6017. "name": "srdtwc",
  6018. "homepage": "https://www.drupal.org/user/3422763"
  6019. }
  6020. ],
  6021. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6022. "homepage": "https://www.drupal.org/project/maxlength",
  6023. "support": {
  6024. "source": "https://git.drupalcode.org/project/maxlength",
  6025. "issues": "https://www.drupal.org/project/issues/maxlength"
  6026. }
  6027. },
  6028. {
  6029. "name": "drupal/menu_admin_per_menu",
  6030. "version": "1.5.0",
  6031. "source": {
  6032. "type": "git",
  6033. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6034. "reference": "8.x-1.5"
  6035. },
  6036. "dist": {
  6037. "type": "zip",
  6038. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  6039. "reference": "8.x-1.5",
  6040. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  6041. },
  6042. "require": {
  6043. "drupal/core": "^9 || ^10"
  6044. },
  6045. "type": "drupal-module",
  6046. "extra": {
  6047. "drupal": {
  6048. "version": "8.x-1.5",
  6049. "datestamp": "1660918821",
  6050. "security-coverage": {
  6051. "status": "covered",
  6052. "message": "Covered by Drupal's security advisory policy"
  6053. }
  6054. }
  6055. },
  6056. "notification-url": "https://packages.drupal.org/8/downloads",
  6057. "license": [
  6058. "GPL-2.0-or-later"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "anrikun",
  6063. "homepage": "https://www.drupal.org/user/410199"
  6064. },
  6065. {
  6066. "name": "JeroenT",
  6067. "homepage": "https://www.drupal.org/user/2228934"
  6068. },
  6069. {
  6070. "name": "jonas139",
  6071. "homepage": "https://www.drupal.org/user/2873401"
  6072. },
  6073. {
  6074. "name": "mkdok",
  6075. "homepage": "https://www.drupal.org/user/3308753"
  6076. }
  6077. ],
  6078. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6079. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6080. "support": {
  6081. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6082. }
  6083. },
  6084. {
  6085. "name": "drupal/menu_block",
  6086. "version": "dev-1.x",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://git.drupalcode.org/project/menu_block.git",
  6090. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  6091. },
  6092. "require": {
  6093. "drupal/core": "^9.1 || ^10"
  6094. },
  6095. "type": "drupal-module",
  6096. "extra": {
  6097. "branch-alias": {
  6098. "dev-1.x": "1.x-dev"
  6099. },
  6100. "drupal": {
  6101. "version": "8.x-1.9+1-dev",
  6102. "datestamp": "1667434044",
  6103. "security-coverage": {
  6104. "status": "not-covered",
  6105. "message": "Dev releases are not covered by Drupal security advisories."
  6106. }
  6107. }
  6108. },
  6109. "notification-url": "https://packages.drupal.org/8/downloads",
  6110. "license": [
  6111. "GPL-2.0-or-later"
  6112. ],
  6113. "authors": [
  6114. {
  6115. "name": "Dave Reid",
  6116. "homepage": "https://www.drupal.org/user/53892"
  6117. },
  6118. {
  6119. "name": "joelpittet",
  6120. "homepage": "https://www.drupal.org/user/160302"
  6121. },
  6122. {
  6123. "name": "JohnAlbin",
  6124. "homepage": "https://www.drupal.org/user/32095"
  6125. },
  6126. {
  6127. "name": "kim.pepper",
  6128. "homepage": "https://www.drupal.org/user/370574"
  6129. },
  6130. {
  6131. "name": "RenatoG",
  6132. "homepage": "https://www.drupal.org/user/3326031"
  6133. },
  6134. {
  6135. "name": "rrrob",
  6136. "homepage": "https://www.drupal.org/user/273533"
  6137. }
  6138. ],
  6139. "description": "Provides configurable blocks of menu links.",
  6140. "homepage": "https://www.drupal.org/project/menu_block",
  6141. "support": {
  6142. "source": "https://git.drupalcode.org/project/menu_block"
  6143. }
  6144. },
  6145. {
  6146. "name": "drupal/menu_position",
  6147. "version": "dev-1.x",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://git.drupalcode.org/project/menu_position.git",
  6151. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  6152. },
  6153. "require": {
  6154. "drupal/core": "^8 || ^9 || ^10"
  6155. },
  6156. "type": "drupal-module",
  6157. "extra": {
  6158. "branch-alias": {
  6159. "dev-1.x": "1.x-dev"
  6160. },
  6161. "drupal": {
  6162. "version": "8.x-1.0+6-dev",
  6163. "datestamp": "1685505680",
  6164. "security-coverage": {
  6165. "status": "not-covered",
  6166. "message": "Dev releases are not covered by Drupal security advisories."
  6167. }
  6168. }
  6169. },
  6170. "notification-url": "https://packages.drupal.org/8/downloads",
  6171. "license": [
  6172. "GPL-2.0-or-later"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "BarisW",
  6177. "homepage": "https://www.drupal.org/user/107229"
  6178. },
  6179. {
  6180. "name": "joelpittet",
  6181. "homepage": "https://www.drupal.org/user/160302"
  6182. },
  6183. {
  6184. "name": "JohnAlbin",
  6185. "homepage": "https://www.drupal.org/user/32095"
  6186. },
  6187. {
  6188. "name": "lbainbridge",
  6189. "homepage": "https://www.drupal.org/user/2406996"
  6190. },
  6191. {
  6192. "name": "Rajab Natshah",
  6193. "homepage": "https://www.drupal.org/user/1414312"
  6194. },
  6195. {
  6196. "name": "Sutharsan",
  6197. "homepage": "https://www.drupal.org/user/73854"
  6198. }
  6199. ],
  6200. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6201. "homepage": "https://www.drupal.org/project/menu_position",
  6202. "support": {
  6203. "source": "https://git.drupalcode.org/project/menu_position",
  6204. "issues": "https://www.drupal.org/project/issues/menu_position"
  6205. }
  6206. },
  6207. {
  6208. "name": "drupal/menu_trail_by_path",
  6209. "version": "2.0.1",
  6210. "source": {
  6211. "type": "git",
  6212. "url": "https://git.drupalcode.org/project/menu_trail_by_path.git",
  6213. "reference": "2.0.1"
  6214. },
  6215. "dist": {
  6216. "type": "zip",
  6217. "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.0.1.zip",
  6218. "reference": "2.0.1",
  6219. "shasum": "3c2c1b0ee669c26e6ccba8a345605b7c932be2bf"
  6220. },
  6221. "require": {
  6222. "drupal/core": "^8.8 || ^9.0 || ^10"
  6223. },
  6224. "type": "drupal-module",
  6225. "extra": {
  6226. "drupal": {
  6227. "version": "2.0.1",
  6228. "datestamp": "1701298206",
  6229. "security-coverage": {
  6230. "status": "covered",
  6231. "message": "Covered by Drupal's security advisory policy"
  6232. }
  6233. }
  6234. },
  6235. "notification-url": "https://packages.drupal.org/8/downloads",
  6236. "license": [
  6237. "GPL-2.0"
  6238. ],
  6239. "authors": [
  6240. {
  6241. "name": "Berdir",
  6242. "homepage": "https://www.drupal.org/user/214652"
  6243. },
  6244. {
  6245. "name": "davy-r",
  6246. "homepage": "https://www.drupal.org/user/3278771"
  6247. },
  6248. {
  6249. "name": "mbovan",
  6250. "homepage": "https://www.drupal.org/user/3149657"
  6251. },
  6252. {
  6253. "name": "redndahead",
  6254. "homepage": "https://www.drupal.org/user/160320"
  6255. },
  6256. {
  6257. "name": "SeriousMatters",
  6258. "homepage": "https://www.drupal.org/user/290439"
  6259. }
  6260. ],
  6261. "description": "Expand menus and set active-trail according to the current path.",
  6262. "homepage": "https://www.drupal.org/project/menu_trail_by_path",
  6263. "support": {
  6264. "source": "https://git.drupalcode.org/project/menu_trail_by_path"
  6265. }
  6266. },
  6267. {
  6268. "name": "drupal/mimemail",
  6269. "version": "1.0.0-alpha6",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://git.drupalcode.org/project/mimemail.git",
  6273. "reference": "8.x-1.0-alpha6"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha6.zip",
  6278. "reference": "8.x-1.0-alpha6",
  6279. "shasum": "c25246747dac4372c7d5a5a5fd0f276d9e468eff"
  6280. },
  6281. "require": {
  6282. "drupal/core": "^9.3 || ^10",
  6283. "drupal/mailsystem": "^4"
  6284. },
  6285. "require-dev": {
  6286. "drupal/rules": "^3"
  6287. },
  6288. "type": "drupal-module",
  6289. "extra": {
  6290. "drupal": {
  6291. "version": "8.x-1.0-alpha6",
  6292. "datestamp": "1697143284",
  6293. "security-coverage": {
  6294. "status": "not-covered",
  6295. "message": "Alpha releases are not covered by Drupal security advisories."
  6296. }
  6297. }
  6298. },
  6299. "notification-url": "https://packages.drupal.org/8/downloads",
  6300. "license": [
  6301. "GPL-2.0-or-later"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "TR",
  6306. "homepage": "https://www.drupal.org/user/202830"
  6307. }
  6308. ],
  6309. "description": "Sends MIME-encoded emails with embedded images and attachments.",
  6310. "homepage": "https://www.drupal.org/project/mimemail",
  6311. "support": {
  6312. "source": "https://git.drupalcode.org/project/mimemail",
  6313. "issues": "https://www.drupal.org/project/issues/mimemail"
  6314. }
  6315. },
  6316. {
  6317. "name": "drupal/notify",
  6318. "version": "2.0.0-beta1",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://git.drupalcode.org/project/notify.git",
  6322. "reference": "2.0.0-beta1"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://ftp.drupal.org/files/projects/notify-2.0.0-beta1.zip",
  6327. "reference": "2.0.0-beta1",
  6328. "shasum": "a0f06792b4aed38c8c466389ae4c03497c4c9270"
  6329. },
  6330. "require": {
  6331. "drupal/core": "^9 || ^10"
  6332. },
  6333. "type": "drupal-module",
  6334. "extra": {
  6335. "drupal": {
  6336. "version": "2.0.0-beta1",
  6337. "datestamp": "1699808614",
  6338. "security-coverage": {
  6339. "status": "not-covered",
  6340. "message": "Beta releases are not covered by Drupal security advisories."
  6341. }
  6342. }
  6343. },
  6344. "notification-url": "https://packages.drupal.org/8/downloads",
  6345. "license": [
  6346. "GPL-2.0-or-later"
  6347. ],
  6348. "authors": [
  6349. {
  6350. "name": "gisle",
  6351. "homepage": "https://www.drupal.org/user/409554"
  6352. },
  6353. {
  6354. "name": "matt2000",
  6355. "homepage": "https://www.drupal.org/user/143172"
  6356. },
  6357. {
  6358. "name": "rik.scholten",
  6359. "homepage": "https://www.drupal.org/user/3661104"
  6360. }
  6361. ],
  6362. "description": "Enables notifications of new content and comments by e-mail.",
  6363. "homepage": "https://www.drupal.org/project/notify",
  6364. "support": {
  6365. "source": "https://git.drupalcode.org/project/notify"
  6366. }
  6367. },
  6368. {
  6369. "name": "drupal/page_manager",
  6370. "version": "4.0.0-rc2",
  6371. "source": {
  6372. "type": "git",
  6373. "url": "https://git.drupalcode.org/project/page_manager.git",
  6374. "reference": "8.x-4.0-rc2"
  6375. },
  6376. "dist": {
  6377. "type": "zip",
  6378. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  6379. "reference": "8.x-4.0-rc2",
  6380. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  6381. },
  6382. "require": {
  6383. "drupal/core": "^9.3 || ^10",
  6384. "drupal/ctools": "^3.11 || ^4.0"
  6385. },
  6386. "type": "drupal-module",
  6387. "extra": {
  6388. "drupal": {
  6389. "version": "8.x-4.0-rc2",
  6390. "datestamp": "1671210021",
  6391. "security-coverage": {
  6392. "status": "not-covered",
  6393. "message": "RC releases are not covered by Drupal security advisories."
  6394. }
  6395. },
  6396. "branch-alias": {
  6397. "dev-8.x-4.x": "4.x-dev"
  6398. }
  6399. },
  6400. "notification-url": "https://packages.drupal.org/8/downloads",
  6401. "license": [
  6402. "GPL-2.0-or-later"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Tim Plunkett",
  6407. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6408. "role": "Maintainer"
  6409. },
  6410. {
  6411. "name": "EclipseGc",
  6412. "homepage": "https://www.drupal.org/user/61203"
  6413. },
  6414. {
  6415. "name": "ivnish",
  6416. "homepage": "https://www.drupal.org/user/3547706"
  6417. },
  6418. {
  6419. "name": "japerry",
  6420. "homepage": "https://www.drupal.org/user/45640"
  6421. },
  6422. {
  6423. "name": "joelpittet",
  6424. "homepage": "https://www.drupal.org/user/160302"
  6425. },
  6426. {
  6427. "name": "manuel.adan",
  6428. "homepage": "https://www.drupal.org/user/516420"
  6429. },
  6430. {
  6431. "name": "phenaproxima",
  6432. "homepage": "https://www.drupal.org/user/205645"
  6433. }
  6434. ],
  6435. "description": "Provides a way to place blocks on a custom page.",
  6436. "homepage": "https://www.drupal.org/project/page_manager",
  6437. "support": {
  6438. "source": "https://git.drupal.org/project/page_manager.git",
  6439. "issues": "https://www.drupal.org/project/issues/page_manager",
  6440. "irc": "irc://irc.freenode.org/drupal-contribute"
  6441. }
  6442. },
  6443. {
  6444. "name": "drupal/pagerer",
  6445. "version": "3.0.0",
  6446. "source": {
  6447. "type": "git",
  6448. "url": "https://git.drupalcode.org/project/pagerer.git",
  6449. "reference": "3.0.0"
  6450. },
  6451. "dist": {
  6452. "type": "zip",
  6453. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  6454. "reference": "3.0.0",
  6455. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  6456. },
  6457. "require": {
  6458. "drupal/core": "^10"
  6459. },
  6460. "type": "drupal-module",
  6461. "extra": {
  6462. "drupal": {
  6463. "version": "3.0.0",
  6464. "datestamp": "1663962586",
  6465. "security-coverage": {
  6466. "status": "covered",
  6467. "message": "Covered by Drupal's security advisory policy"
  6468. }
  6469. }
  6470. },
  6471. "notification-url": "https://packages.drupal.org/8/downloads",
  6472. "license": [
  6473. "GPL-2.0-or-later"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "mondrake",
  6478. "homepage": "https://www.drupal.org/user/1307444"
  6479. }
  6480. ],
  6481. "description": "Configurable pager styles.",
  6482. "homepage": "https://www.drupal.org/project/pagerer",
  6483. "support": {
  6484. "source": "https://git.drupalcode.org/project/pagerer"
  6485. }
  6486. },
  6487. {
  6488. "name": "drupal/panels",
  6489. "version": "4.7.0",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://git.drupalcode.org/project/panels.git",
  6493. "reference": "8.x-4.7"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  6498. "reference": "8.x-4.7",
  6499. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  6500. },
  6501. "require": {
  6502. "drupal/core": "^9.2 || ^10",
  6503. "drupal/ctools": "^3.12",
  6504. "drupal/jquery_ui_droppable": "^1.5"
  6505. },
  6506. "require-dev": {
  6507. "drupal/jquery_ui_droppable": "*",
  6508. "drupal/page_manager": "^4"
  6509. },
  6510. "type": "drupal-module",
  6511. "extra": {
  6512. "drupal": {
  6513. "version": "8.x-4.7",
  6514. "datestamp": "1668632919",
  6515. "security-coverage": {
  6516. "status": "covered",
  6517. "message": "Covered by Drupal's security advisory policy"
  6518. }
  6519. },
  6520. "branch-alias": {
  6521. "dev-8.x-4.x": "4.x-dev"
  6522. }
  6523. },
  6524. "notification-url": "https://packages.drupal.org/8/downloads",
  6525. "license": [
  6526. "GPL-2.0+"
  6527. ],
  6528. "authors": [
  6529. {
  6530. "name": "Jakob Perry",
  6531. "homepage": "https://www.drupal.org/u/japerry"
  6532. },
  6533. {
  6534. "name": "Samuel Mortenson",
  6535. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6536. },
  6537. {
  6538. "name": "See other contributors",
  6539. "homepage": "https://www.drupal.org/node/74958/committers"
  6540. },
  6541. {
  6542. "name": "joelpittet",
  6543. "homepage": "https://www.drupal.org/user/160302"
  6544. },
  6545. {
  6546. "name": "Letharion",
  6547. "homepage": "https://www.drupal.org/user/373603"
  6548. },
  6549. {
  6550. "name": "merlinofchaos",
  6551. "homepage": "https://www.drupal.org/user/26979"
  6552. },
  6553. {
  6554. "name": "neclimdul",
  6555. "homepage": "https://www.drupal.org/user/48673"
  6556. },
  6557. {
  6558. "name": "phenaproxima",
  6559. "homepage": "https://www.drupal.org/user/205645"
  6560. },
  6561. {
  6562. "name": "samuel.mortenson",
  6563. "homepage": "https://www.drupal.org/user/2582268"
  6564. }
  6565. ],
  6566. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6567. "homepage": "https://www.drupal.org/project/panels",
  6568. "support": {
  6569. "source": "http://git.drupal.org/project/panels.git",
  6570. "issues": "https://www.drupal.org/project/issues/panels",
  6571. "irc": "irc://irc.freenode.org/drupal-scotch"
  6572. }
  6573. },
  6574. {
  6575. "name": "drupal/paragraphs",
  6576. "version": "1.16.0",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6580. "reference": "8.x-1.16"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  6585. "reference": "8.x-1.16",
  6586. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  6587. },
  6588. "require": {
  6589. "drupal/core": "^9.3 || ^10",
  6590. "drupal/entity_reference_revisions": "~1.3"
  6591. },
  6592. "require-dev": {
  6593. "drupal/block_field": "1.x-dev",
  6594. "drupal/diff": "1.x-dev",
  6595. "drupal/entity_browser": "2.x-dev",
  6596. "drupal/entity_usage": "2.x-dev",
  6597. "drupal/field_group": "3.x-dev",
  6598. "drupal/inline_entity_form": "1.x-dev",
  6599. "drupal/paragraphs-paragraphs_library": "*",
  6600. "drupal/replicate": "1.x-dev",
  6601. "drupal/search_api": "1.x-dev",
  6602. "drupal/search_api_db": "*"
  6603. },
  6604. "suggest": {
  6605. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6606. },
  6607. "type": "drupal-module",
  6608. "extra": {
  6609. "drupal": {
  6610. "version": "8.x-1.16",
  6611. "datestamp": "1694007797",
  6612. "security-coverage": {
  6613. "status": "covered",
  6614. "message": "Covered by Drupal's security advisory policy"
  6615. }
  6616. }
  6617. },
  6618. "notification-url": "https://packages.drupal.org/8/downloads",
  6619. "license": [
  6620. "GPL-2.0-or-later"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Berdir",
  6625. "homepage": "https://www.drupal.org/user/214652"
  6626. },
  6627. {
  6628. "name": "Frans",
  6629. "homepage": "https://www.drupal.org/user/514222"
  6630. },
  6631. {
  6632. "name": "jeroen.b",
  6633. "homepage": "https://www.drupal.org/user/1853532"
  6634. },
  6635. {
  6636. "name": "jstoller",
  6637. "homepage": "https://www.drupal.org/user/99012"
  6638. },
  6639. {
  6640. "name": "miro_dietiker",
  6641. "homepage": "https://www.drupal.org/user/227761"
  6642. },
  6643. {
  6644. "name": "Primsi",
  6645. "homepage": "https://www.drupal.org/user/282629"
  6646. }
  6647. ],
  6648. "description": "Enables the creation of Paragraphs entities.",
  6649. "homepage": "https://www.drupal.org/project/paragraphs",
  6650. "support": {
  6651. "source": "https://git.drupalcode.org/project/paragraphs"
  6652. }
  6653. },
  6654. {
  6655. "name": "drupal/path_alias_xt",
  6656. "version": "dev-1.x",
  6657. "source": {
  6658. "type": "git",
  6659. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6660. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  6661. },
  6662. "require": {
  6663. "drupal/core": "^9.3 || ^10"
  6664. },
  6665. "type": "drupal-module",
  6666. "extra": {
  6667. "branch-alias": {
  6668. "dev-1.x": "1.x-dev"
  6669. },
  6670. "drupal": {
  6671. "version": "8.x-1.x-dev",
  6672. "datestamp": "1658166545",
  6673. "security-coverage": {
  6674. "status": "not-covered",
  6675. "message": "Dev releases are not covered by Drupal security advisories."
  6676. }
  6677. }
  6678. },
  6679. "notification-url": "https://packages.drupal.org/8/downloads",
  6680. "license": [
  6681. "GPL-2.0-or-later"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "adriancid",
  6686. "homepage": "https://www.drupal.org/user/1962106"
  6687. },
  6688. {
  6689. "name": "RdeBoer",
  6690. "homepage": "https://www.drupal.org/user/404007"
  6691. },
  6692. {
  6693. "name": "sdstyles",
  6694. "homepage": "https://www.drupal.org/user/1420228"
  6695. }
  6696. ],
  6697. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  6698. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6699. "support": {
  6700. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6701. }
  6702. },
  6703. {
  6704. "name": "drupal/pathauto",
  6705. "version": "1.12.0",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://git.drupalcode.org/project/pathauto.git",
  6709. "reference": "8.x-1.12"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  6714. "reference": "8.x-1.12",
  6715. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  6716. },
  6717. "require": {
  6718. "drupal/core": "^9.3 || ^10",
  6719. "drupal/ctools": "*",
  6720. "drupal/token": "*"
  6721. },
  6722. "suggest": {
  6723. "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."
  6724. },
  6725. "type": "drupal-module",
  6726. "extra": {
  6727. "drupal": {
  6728. "version": "8.x-1.12",
  6729. "datestamp": "1696776683",
  6730. "security-coverage": {
  6731. "status": "covered",
  6732. "message": "Covered by Drupal's security advisory policy"
  6733. }
  6734. },
  6735. "drush": {
  6736. "services": {
  6737. "drush.services.yml": "^9 || ^10"
  6738. }
  6739. }
  6740. },
  6741. "notification-url": "https://packages.drupal.org/8/downloads",
  6742. "license": [
  6743. "GPL-2.0-or-later"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "Berdir",
  6748. "homepage": "https://www.drupal.org/user/214652"
  6749. },
  6750. {
  6751. "name": "Dave Reid",
  6752. "homepage": "https://www.drupal.org/user/53892"
  6753. },
  6754. {
  6755. "name": "Freso",
  6756. "homepage": "https://www.drupal.org/user/27504"
  6757. },
  6758. {
  6759. "name": "greggles",
  6760. "homepage": "https://www.drupal.org/user/36762"
  6761. }
  6762. ],
  6763. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6764. "homepage": "https://www.drupal.org/project/pathauto",
  6765. "support": {
  6766. "source": "https://cgit.drupalcode.org/pathauto",
  6767. "issues": "https://www.drupal.org/project/issues/pathauto",
  6768. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6769. }
  6770. },
  6771. {
  6772. "name": "drupal/pathologic",
  6773. "version": "2.0.0-alpha1",
  6774. "source": {
  6775. "type": "git",
  6776. "url": "https://git.drupalcode.org/project/pathologic.git",
  6777. "reference": "2.0.0-alpha1"
  6778. },
  6779. "dist": {
  6780. "type": "zip",
  6781. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6782. "reference": "2.0.0-alpha1",
  6783. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6784. },
  6785. "require": {
  6786. "drupal/core": "^9 || ^10"
  6787. },
  6788. "type": "drupal-module",
  6789. "extra": {
  6790. "drupal": {
  6791. "version": "2.0.0-alpha1",
  6792. "datestamp": "1681263978",
  6793. "security-coverage": {
  6794. "status": "not-covered",
  6795. "message": "Alpha releases are not covered by Drupal security advisories."
  6796. }
  6797. }
  6798. },
  6799. "notification-url": "https://packages.drupal.org/8/downloads",
  6800. "license": [
  6801. "GPL-2.0+"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Berdir",
  6806. "homepage": "https://www.drupal.org/user/214652"
  6807. },
  6808. {
  6809. "name": "dww",
  6810. "homepage": "https://www.drupal.org/user/46549"
  6811. },
  6812. {
  6813. "name": "Garrett Albright",
  6814. "homepage": "https://www.drupal.org/user/191212"
  6815. },
  6816. {
  6817. "name": "mark_fullmer",
  6818. "homepage": "https://www.drupal.org/user/2612816"
  6819. }
  6820. ],
  6821. "description": "Helps avoid broken links and incorrect paths in content.",
  6822. "homepage": "https://www.drupal.org/project/pathologic",
  6823. "support": {
  6824. "source": "https://git.drupalcode.org/project/pathologic"
  6825. }
  6826. },
  6827. {
  6828. "name": "drupal/persistent_login",
  6829. "version": "1.6.0",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6833. "reference": "8.x-1.6"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6838. "reference": "8.x-1.6",
  6839. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6840. },
  6841. "require": {
  6842. "drupal/core": "^9.2 || ^10"
  6843. },
  6844. "type": "drupal-module",
  6845. "extra": {
  6846. "drupal": {
  6847. "version": "8.x-1.6",
  6848. "datestamp": "1679547817",
  6849. "security-coverage": {
  6850. "status": "covered",
  6851. "message": "Covered by Drupal's security advisory policy"
  6852. }
  6853. }
  6854. },
  6855. "notification-url": "https://packages.drupal.org/8/downloads",
  6856. "license": [
  6857. "GPL-2.0-or-later"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "gapple",
  6862. "homepage": "https://www.drupal.org/user/490940"
  6863. }
  6864. ],
  6865. "description": "Provides a \"Remember Me\" feature on the login form.",
  6866. "homepage": "https://www.drupal.org/project/persistent_login",
  6867. "keywords": [
  6868. "Drupal"
  6869. ],
  6870. "support": {
  6871. "source": "https://git.drupalcode.org/project/persistent_login",
  6872. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6873. }
  6874. },
  6875. {
  6876. "name": "drupal/phone_number",
  6877. "version": "2.0.0-alpha5",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://git.drupalcode.org/project/phone_number.git",
  6881. "reference": "2.0.0-alpha5"
  6882. },
  6883. "dist": {
  6884. "type": "zip",
  6885. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6886. "reference": "2.0.0-alpha5",
  6887. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6888. },
  6889. "require": {
  6890. "drupal/core": "^9.2 || ^10",
  6891. "giggsey/libphonenumber-for-php": "^8.0"
  6892. },
  6893. "type": "drupal-module",
  6894. "extra": {
  6895. "drupal": {
  6896. "version": "2.0.0-alpha5",
  6897. "datestamp": "1698159525",
  6898. "security-coverage": {
  6899. "status": "not-covered",
  6900. "message": "Alpha releases are not covered by Drupal security advisories."
  6901. }
  6902. }
  6903. },
  6904. "notification-url": "https://packages.drupal.org/8/downloads",
  6905. "license": [
  6906. "GPL-2.0+"
  6907. ],
  6908. "authors": [
  6909. {
  6910. "name": "Christopher Caldwell",
  6911. "homepage": "https://www.drupal.org/u/chrisolof",
  6912. "email": "chrisolof@gmail.com",
  6913. "role": "Maintainer"
  6914. },
  6915. {
  6916. "name": "nyariv",
  6917. "homepage": "https://www.drupal.org/user/2747789"
  6918. },
  6919. {
  6920. "name": "tim-diels",
  6921. "homepage": "https://www.drupal.org/user/2915097"
  6922. },
  6923. {
  6924. "name": "vaish",
  6925. "homepage": "https://www.drupal.org/user/92189"
  6926. }
  6927. ],
  6928. "description": "A validated phone number field.",
  6929. "homepage": "http://drupal.org/project/phone_number",
  6930. "support": {
  6931. "source": "https://git.drupalcode.org/project/phone_number"
  6932. }
  6933. },
  6934. {
  6935. "name": "drupal/profile",
  6936. "version": "1.7.0",
  6937. "source": {
  6938. "type": "git",
  6939. "url": "https://git.drupalcode.org/project/profile.git",
  6940. "reference": "8.x-1.7"
  6941. },
  6942. "dist": {
  6943. "type": "zip",
  6944. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6945. "reference": "8.x-1.7",
  6946. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6947. },
  6948. "require": {
  6949. "drupal/core": "^9 || ^10",
  6950. "drupal/entity": "^1.0"
  6951. },
  6952. "require-dev": {
  6953. "drupal/token": "^1.7"
  6954. },
  6955. "type": "drupal-module",
  6956. "extra": {
  6957. "drupal": {
  6958. "version": "8.x-1.7",
  6959. "datestamp": "1665131792",
  6960. "security-coverage": {
  6961. "status": "covered",
  6962. "message": "Covered by Drupal's security advisory policy"
  6963. }
  6964. }
  6965. },
  6966. "notification-url": "https://packages.drupal.org/8/downloads",
  6967. "license": [
  6968. "GPL-2.0-or-later"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "bojanz",
  6973. "homepage": "https://www.drupal.org/user/86106"
  6974. },
  6975. {
  6976. "name": "daggerhart",
  6977. "homepage": "https://www.drupal.org/user/167806"
  6978. },
  6979. {
  6980. "name": "fago",
  6981. "homepage": "https://www.drupal.org/user/16747"
  6982. },
  6983. {
  6984. "name": "jsacksick",
  6985. "homepage": "https://www.drupal.org/user/972218"
  6986. },
  6987. {
  6988. "name": "mglaman",
  6989. "homepage": "https://www.drupal.org/user/2416470"
  6990. },
  6991. {
  6992. "name": "pcambra",
  6993. "homepage": "https://www.drupal.org/user/122101"
  6994. }
  6995. ],
  6996. "description": "Provides configurable user profiles.",
  6997. "homepage": "https://drupal.org/project/profile",
  6998. "support": {
  6999. "source": "https://git.drupalcode.org/project/profile"
  7000. }
  7001. },
  7002. {
  7003. "name": "drupal/quick_node_clone",
  7004. "version": "1.18.0",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://git.drupalcode.org/project/quick_node_clone.git",
  7008. "reference": "8.x-1.18"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://ftp.drupal.org/files/projects/quick_node_clone-8.x-1.18.zip",
  7013. "reference": "8.x-1.18",
  7014. "shasum": "ab17077eccb24e5c651fedc5056a50051882a13d"
  7015. },
  7016. "require": {
  7017. "drupal/core": "^8.8 || ^9 || ^10"
  7018. },
  7019. "require-dev": {
  7020. "drupal/group": "^1 || ^2 || ^3",
  7021. "drupal/paragraphs": "1.x-dev"
  7022. },
  7023. "type": "drupal-module",
  7024. "extra": {
  7025. "drupal": {
  7026. "version": "8.x-1.18",
  7027. "datestamp": "1707833857",
  7028. "security-coverage": {
  7029. "status": "covered",
  7030. "message": "Covered by Drupal's security advisory policy"
  7031. }
  7032. }
  7033. },
  7034. "notification-url": "https://packages.drupal.org/8/downloads",
  7035. "license": [
  7036. "GPL-2.0-or-later"
  7037. ],
  7038. "authors": [
  7039. {
  7040. "name": "vilepickle",
  7041. "homepage": "https://www.drupal.org/u/vilepickle",
  7042. "role": "Maintainer"
  7043. },
  7044. {
  7045. "name": "Neslee Canil Pinto",
  7046. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  7047. "role": "Maintainer"
  7048. }
  7049. ],
  7050. "description": "Quickly clone a node with regular fields.",
  7051. "homepage": "https://www.drupal.org/project/quick_node_clone",
  7052. "support": {
  7053. "source": "https://git.drupalcode.org/project/quick_node_clone",
  7054. "issues": "https://www.drupal.org/project/issues/quick_node_clone"
  7055. }
  7056. },
  7057. {
  7058. "name": "drupal/redirect",
  7059. "version": "1.9.0",
  7060. "source": {
  7061. "type": "git",
  7062. "url": "https://git.drupalcode.org/project/redirect.git",
  7063. "reference": "8.x-1.9"
  7064. },
  7065. "dist": {
  7066. "type": "zip",
  7067. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  7068. "reference": "8.x-1.9",
  7069. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  7070. },
  7071. "require": {
  7072. "drupal/core": "^9.2 || ^10"
  7073. },
  7074. "type": "drupal-module",
  7075. "extra": {
  7076. "drupal": {
  7077. "version": "8.x-1.9",
  7078. "datestamp": "1693393506",
  7079. "security-coverage": {
  7080. "status": "covered",
  7081. "message": "Covered by Drupal's security advisory policy"
  7082. }
  7083. }
  7084. },
  7085. "notification-url": "https://packages.drupal.org/8/downloads",
  7086. "license": [
  7087. "GPL-2.0-or-later"
  7088. ],
  7089. "authors": [
  7090. {
  7091. "name": "Berdir",
  7092. "homepage": "https://www.drupal.org/user/214652"
  7093. },
  7094. {
  7095. "name": "Dave Reid",
  7096. "homepage": "https://www.drupal.org/user/53892"
  7097. },
  7098. {
  7099. "name": "Kristen Pol",
  7100. "homepage": "https://www.drupal.org/user/8389"
  7101. },
  7102. {
  7103. "name": "pifagor",
  7104. "homepage": "https://www.drupal.org/user/2375692"
  7105. }
  7106. ],
  7107. "description": "Allows users to redirect from old URLs to new URLs.",
  7108. "homepage": "https://www.drupal.org/project/redirect",
  7109. "support": {
  7110. "source": "https://git.drupalcode.org/project/redirect"
  7111. }
  7112. },
  7113. {
  7114. "name": "drupal/redis",
  7115. "version": "1.7.0",
  7116. "source": {
  7117. "type": "git",
  7118. "url": "https://git.drupalcode.org/project/redis.git",
  7119. "reference": "8.x-1.7"
  7120. },
  7121. "dist": {
  7122. "type": "zip",
  7123. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  7124. "reference": "8.x-1.7",
  7125. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  7126. },
  7127. "require": {
  7128. "drupal/core": "^9.3 || ^10"
  7129. },
  7130. "suggest": {
  7131. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  7132. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  7133. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  7134. },
  7135. "type": "drupal-module",
  7136. "extra": {
  7137. "drupal": {
  7138. "version": "8.x-1.7",
  7139. "datestamp": "1686175620",
  7140. "security-coverage": {
  7141. "status": "covered",
  7142. "message": "Covered by Drupal's security advisory policy"
  7143. }
  7144. }
  7145. },
  7146. "autoload": {
  7147. "psr-4": {
  7148. "Drupal\\redis\\": "src"
  7149. }
  7150. },
  7151. "notification-url": "https://packages.drupal.org/8/downloads",
  7152. "license": [
  7153. "GPL-2.0-or-later"
  7154. ],
  7155. "authors": [
  7156. {
  7157. "name": "Berdir",
  7158. "homepage": "https://www.drupal.org/user/214652"
  7159. },
  7160. {
  7161. "name": "greg.1.anderson",
  7162. "homepage": "https://www.drupal.org/user/438598"
  7163. },
  7164. {
  7165. "name": "kporras07",
  7166. "homepage": "https://www.drupal.org/user/1349780"
  7167. },
  7168. {
  7169. "name": "pounard",
  7170. "homepage": "https://www.drupal.org/user/240164"
  7171. }
  7172. ],
  7173. "description": "Integration of Drupal with the Redis key-value store.",
  7174. "homepage": "https://www.drupal.org/project/redis",
  7175. "support": {
  7176. "source": "https://git.drupalcode.org/project/redis"
  7177. }
  7178. },
  7179. {
  7180. "name": "drupal/rules",
  7181. "version": "4.0.0",
  7182. "source": {
  7183. "type": "git",
  7184. "url": "https://git.drupalcode.org/project/rules.git",
  7185. "reference": "4.0.0"
  7186. },
  7187. "dist": {
  7188. "type": "zip",
  7189. "url": "https://ftp.drupal.org/files/projects/rules-4.0.0.zip",
  7190. "reference": "4.0.0",
  7191. "shasum": "685c8cbcf7950e07459957f4536df77d9bf53531"
  7192. },
  7193. "require": {
  7194. "drupal/core": "^10.3 || ^11",
  7195. "drupal/typed_data": "^2.1"
  7196. },
  7197. "type": "drupal-module",
  7198. "extra": {
  7199. "drupal": {
  7200. "version": "4.0.0",
  7201. "datestamp": "1721935272",
  7202. "security-coverage": {
  7203. "status": "covered",
  7204. "message": "Covered by Drupal's security advisory policy"
  7205. }
  7206. },
  7207. "drush": {
  7208. "services": {
  7209. "drush.services.yml": ">=9"
  7210. }
  7211. }
  7212. },
  7213. "notification-url": "https://packages.drupal.org/8/downloads",
  7214. "license": [
  7215. "GPL-2.0-or-later"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "fago",
  7220. "homepage": "https://www.drupal.org/user/16747"
  7221. },
  7222. {
  7223. "name": "klausi",
  7224. "homepage": "https://www.drupal.org/user/262198"
  7225. },
  7226. {
  7227. "name": "tr",
  7228. "homepage": "https://www.drupal.org/user/202830"
  7229. }
  7230. ],
  7231. "description": "React on events and conditionally evaluate actions.",
  7232. "homepage": "https://www.drupal.org/project/rules",
  7233. "support": {
  7234. "source": "https://git.drupalcode.org/project/rules",
  7235. "issues": "https://www.drupal.org/project/issues/rules"
  7236. }
  7237. },
  7238. {
  7239. "name": "drupal/search_api",
  7240. "version": "1.30.0",
  7241. "source": {
  7242. "type": "git",
  7243. "url": "https://git.drupalcode.org/project/search_api.git",
  7244. "reference": "8.x-1.30"
  7245. },
  7246. "dist": {
  7247. "type": "zip",
  7248. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  7249. "reference": "8.x-1.30",
  7250. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  7251. },
  7252. "require": {
  7253. "drupal/core": "^9.3 || ^10.0"
  7254. },
  7255. "conflict": {
  7256. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7257. },
  7258. "require-dev": {
  7259. "drupal/language_fallback_fix": "@dev",
  7260. "drupal/search_api_autocomplete": "@dev",
  7261. "drupal/search_api_db": "*"
  7262. },
  7263. "suggest": {
  7264. "drupal/facets": "Adds the ability to create faceted searches.",
  7265. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7266. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7267. },
  7268. "type": "drupal-module",
  7269. "extra": {
  7270. "drupal": {
  7271. "version": "8.x-1.30",
  7272. "datestamp": "1697366291",
  7273. "security-coverage": {
  7274. "status": "covered",
  7275. "message": "Covered by Drupal's security advisory policy"
  7276. }
  7277. },
  7278. "drush": {
  7279. "services": {
  7280. "drush.services.yml": "^9 || ^10 || ^11"
  7281. }
  7282. }
  7283. },
  7284. "notification-url": "https://packages.drupal.org/8/downloads",
  7285. "license": [
  7286. "GPL-2.0-or-later"
  7287. ],
  7288. "authors": [
  7289. {
  7290. "name": "Thomas Seidl",
  7291. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7292. },
  7293. {
  7294. "name": "Nick Veenhof",
  7295. "homepage": "https://www.drupal.org/u/nick_vh"
  7296. },
  7297. {
  7298. "name": "See other contributors",
  7299. "homepage": "https://www.drupal.org/node/790418/committers"
  7300. }
  7301. ],
  7302. "description": "Provides a generic framework for modules offering search capabilities.",
  7303. "homepage": "https://www.drupal.org/project/search_api",
  7304. "support": {
  7305. "source": "https://git.drupalcode.org/project/search_api",
  7306. "issues": "https://www.drupal.org/project/issues/search_api",
  7307. "irc": "irc://irc.freenode.org/drupal-search-api"
  7308. }
  7309. },
  7310. {
  7311. "name": "drupal/search_api_db",
  7312. "version": "1.30.0",
  7313. "require": {
  7314. "drupal/core": "^9.2 || ^10.0",
  7315. "drupal/search_api": "*"
  7316. },
  7317. "type": "metapackage",
  7318. "extra": {
  7319. "drupal": {
  7320. "version": "8.x-1.30",
  7321. "datestamp": "1697366291",
  7322. "security-coverage": {
  7323. "status": "covered",
  7324. "message": "Covered by Drupal's security advisory policy"
  7325. }
  7326. }
  7327. },
  7328. "notification-url": "https://packages.drupal.org/8/downloads",
  7329. "license": [
  7330. "GPL-2.0-or-later"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "borisson_",
  7335. "homepage": "https://www.drupal.org/user/2393360"
  7336. },
  7337. {
  7338. "name": "drunken monkey",
  7339. "homepage": "https://www.drupal.org/user/205582"
  7340. },
  7341. {
  7342. "name": "Nick_vh",
  7343. "homepage": "https://www.drupal.org/user/122682"
  7344. }
  7345. ],
  7346. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7347. "homepage": "https://www.drupal.org/project/search_api",
  7348. "support": {
  7349. "source": "https://git.drupalcode.org/project/search_api"
  7350. }
  7351. },
  7352. {
  7353. "name": "drupal/seven",
  7354. "version": "1.0.0",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://git.drupalcode.org/project/seven.git",
  7358. "reference": "1.0.0"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  7363. "reference": "1.0.0",
  7364. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  7365. },
  7366. "require": {
  7367. "drupal/core": "^9 || ^10"
  7368. },
  7369. "type": "drupal-theme",
  7370. "extra": {
  7371. "drupal": {
  7372. "version": "1.0.0",
  7373. "datestamp": "1758908691",
  7374. "security-coverage": {
  7375. "status": "covered",
  7376. "message": "Covered by Drupal's security advisory policy"
  7377. }
  7378. }
  7379. },
  7380. "notification-url": "https://packages.drupal.org/8/downloads",
  7381. "license": [
  7382. "GPL-2.0-or-later"
  7383. ],
  7384. "authors": [
  7385. {
  7386. "name": "avpaderno",
  7387. "homepage": "https://www.drupal.org/user/55077"
  7388. },
  7389. {
  7390. "name": "bnjmnm",
  7391. "homepage": "https://www.drupal.org/user/2369194"
  7392. },
  7393. {
  7394. "name": "krakenbite",
  7395. "homepage": "https://www.drupal.org/user/3805933"
  7396. },
  7397. {
  7398. "name": "lauriii",
  7399. "homepage": "https://www.drupal.org/user/1078742"
  7400. },
  7401. {
  7402. "name": "mcrittenden",
  7403. "homepage": "https://www.drupal.org/user/420631"
  7404. },
  7405. {
  7406. "name": "mrfelton",
  7407. "homepage": "https://www.drupal.org/user/305669"
  7408. }
  7409. ],
  7410. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  7411. "homepage": "https://www.drupal.org/project/seven",
  7412. "support": {
  7413. "source": "https://git.drupalcode.org/project/seven"
  7414. }
  7415. },
  7416. {
  7417. "name": "drupal/smart_trim",
  7418. "version": "2.1.0",
  7419. "source": {
  7420. "type": "git",
  7421. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7422. "reference": "2.1.0"
  7423. },
  7424. "dist": {
  7425. "type": "zip",
  7426. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  7427. "reference": "2.1.0",
  7428. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  7429. },
  7430. "require": {
  7431. "drupal/core": "^8 || ^9 || ^10",
  7432. "drupal/token": "^1.0",
  7433. "php": ">=7.4.0"
  7434. },
  7435. "require-dev": {
  7436. "drupal/token_filter": "^2.0"
  7437. },
  7438. "type": "drupal-module",
  7439. "extra": {
  7440. "drupal": {
  7441. "version": "2.1.0",
  7442. "datestamp": "1686152417",
  7443. "security-coverage": {
  7444. "status": "covered",
  7445. "message": "Covered by Drupal's security advisory policy"
  7446. }
  7447. }
  7448. },
  7449. "notification-url": "https://packages.drupal.org/8/downloads",
  7450. "license": [
  7451. "GPL-2.0-or-later"
  7452. ],
  7453. "authors": [
  7454. {
  7455. "name": "Mark Casias (markie)",
  7456. "homepage": "https://www.drupal.org/u/markie",
  7457. "role": "Maintainer"
  7458. },
  7459. {
  7460. "name": "AmyJune Hineline (volkswagenchick)",
  7461. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7462. "role": "Maintainer"
  7463. },
  7464. {
  7465. "name": "Michael Anello (ultimike)",
  7466. "homepage": "https://www.drupal.org/u/ultimike",
  7467. "role": "Maintainer"
  7468. }
  7469. ],
  7470. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7471. "homepage": "https://drupal.org/project/smart_trim",
  7472. "support": {
  7473. "source": "https://git.drupalcode.org/project/smart_trim",
  7474. "issues": "https://drupal.org/project/issues/smart_trim"
  7475. }
  7476. },
  7477. {
  7478. "name": "drupal/smtp",
  7479. "version": "1.2.0",
  7480. "source": {
  7481. "type": "git",
  7482. "url": "https://git.drupalcode.org/project/smtp.git",
  7483. "reference": "8.x-1.2"
  7484. },
  7485. "dist": {
  7486. "type": "zip",
  7487. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  7488. "reference": "8.x-1.2",
  7489. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  7490. },
  7491. "require": {
  7492. "drupal/core": ">=8.9 <11",
  7493. "phpmailer/phpmailer": "^6.1.7"
  7494. },
  7495. "suggest": {
  7496. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7497. },
  7498. "type": "drupal-module",
  7499. "extra": {
  7500. "drupal": {
  7501. "version": "8.x-1.2",
  7502. "datestamp": "1667416337",
  7503. "security-coverage": {
  7504. "status": "covered",
  7505. "message": "Covered by Drupal's security advisory policy"
  7506. }
  7507. },
  7508. "branch-alias": {
  7509. "dev-8.x-1.x": "1.x-dev"
  7510. }
  7511. },
  7512. "notification-url": "https://packages.drupal.org/8/downloads",
  7513. "license": [
  7514. "GPL-2.0-or-later"
  7515. ],
  7516. "authors": [
  7517. {
  7518. "name": "japerry",
  7519. "homepage": "https://www.drupal.org/user/45640"
  7520. },
  7521. {
  7522. "name": "joseph.olstad",
  7523. "homepage": "https://www.drupal.org/user/1321830"
  7524. },
  7525. {
  7526. "name": "josesanmartin",
  7527. "homepage": "https://www.drupal.org/user/72012"
  7528. },
  7529. {
  7530. "name": "LukeLast",
  7531. "homepage": "https://www.drupal.org/user/30151"
  7532. },
  7533. {
  7534. "name": "oadaeh",
  7535. "homepage": "https://www.drupal.org/user/4649"
  7536. },
  7537. {
  7538. "name": "sadashiv",
  7539. "homepage": "https://www.drupal.org/user/1773304"
  7540. },
  7541. {
  7542. "name": "wundo",
  7543. "homepage": "https://www.drupal.org/user/25523"
  7544. },
  7545. {
  7546. "name": "yettyn",
  7547. "homepage": "https://www.drupal.org/user/93281"
  7548. }
  7549. ],
  7550. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7551. "homepage": "https://www.drupal.org/project/smtp",
  7552. "support": {
  7553. "source": "https://git.drupalcode.org/project/smtp",
  7554. "issues": "https://www.drupal.org/project/issues/smtp"
  7555. }
  7556. },
  7557. {
  7558. "name": "drupal/social_media_links",
  7559. "version": "2.9.0",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://git.drupalcode.org/project/social_media_links.git",
  7563. "reference": "8.x-2.9"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip",
  7568. "reference": "8.x-2.9",
  7569. "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a"
  7570. },
  7571. "require": {
  7572. "drupal/core": "^8 || ^9 || ^10"
  7573. },
  7574. "type": "drupal-module",
  7575. "extra": {
  7576. "drupal": {
  7577. "version": "8.x-2.9",
  7578. "datestamp": "1665768361",
  7579. "security-coverage": {
  7580. "status": "covered",
  7581. "message": "Covered by Drupal's security advisory policy"
  7582. }
  7583. }
  7584. },
  7585. "notification-url": "https://packages.drupal.org/8/downloads",
  7586. "license": [
  7587. "GPL-2.0-or-later"
  7588. ],
  7589. "authors": [
  7590. {
  7591. "name": "Neslee Canil Pinto",
  7592. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  7593. "role": "Maintainer"
  7594. },
  7595. {
  7596. "name": "Christian Beier",
  7597. "homepage": "https://www.drupal.org/u/cbeier",
  7598. "role": "Maintainer"
  7599. }
  7600. ],
  7601. "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
  7602. "homepage": "https://www.drupal.org/project/social_media_links",
  7603. "support": {
  7604. "source": "https://git.drupalcode.org/project/social_media_links",
  7605. "issues": "https://www.drupal.org/project/issues/social_media_links"
  7606. }
  7607. },
  7608. {
  7609. "name": "drupal/sophron",
  7610. "version": "2.0.1",
  7611. "source": {
  7612. "type": "git",
  7613. "url": "https://git.drupalcode.org/project/sophron.git",
  7614. "reference": "2.0.1"
  7615. },
  7616. "dist": {
  7617. "type": "zip",
  7618. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  7619. "reference": "2.0.1",
  7620. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  7621. },
  7622. "require": {
  7623. "drupal/core": "^10",
  7624. "fileeye/mimemap": "^2.0.1"
  7625. },
  7626. "type": "drupal-module",
  7627. "extra": {
  7628. "drupal": {
  7629. "version": "2.0.1",
  7630. "datestamp": "1676319965",
  7631. "security-coverage": {
  7632. "status": "covered",
  7633. "message": "Covered by Drupal's security advisory policy"
  7634. }
  7635. }
  7636. },
  7637. "autoload": {
  7638. "psr-4": {
  7639. "Drupal\\sophron\\": "src/"
  7640. }
  7641. },
  7642. "notification-url": "https://packages.drupal.org/8/downloads",
  7643. "license": [
  7644. "GPL-2.0-or-later"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "mondrake",
  7649. "homepage": "https://www.drupal.org/user/1307444"
  7650. }
  7651. ],
  7652. "description": "Provides an extensive MIME types management API",
  7653. "homepage": "https://www.drupal.org/project/sophron",
  7654. "support": {
  7655. "source": "https://git.drupalcode.org/project/sophron"
  7656. }
  7657. },
  7658. {
  7659. "name": "drupal/synonyms",
  7660. "version": "2.1.2",
  7661. "source": {
  7662. "type": "git",
  7663. "url": "https://git.drupalcode.org/project/synonyms.git",
  7664. "reference": "2.1.2"
  7665. },
  7666. "dist": {
  7667. "type": "zip",
  7668. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  7669. "reference": "2.1.2",
  7670. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  7671. },
  7672. "require": {
  7673. "drupal/core": "^9 || ^10"
  7674. },
  7675. "require-dev": {
  7676. "drupal/synonyms_list_field": "*"
  7677. },
  7678. "type": "drupal-module",
  7679. "extra": {
  7680. "drupal": {
  7681. "version": "2.1.2",
  7682. "datestamp": "1665785027",
  7683. "security-coverage": {
  7684. "status": "covered",
  7685. "message": "Covered by Drupal's security advisory policy"
  7686. }
  7687. }
  7688. },
  7689. "notification-url": "https://packages.drupal.org/8/downloads",
  7690. "license": [
  7691. "GPL-2.0-or-later"
  7692. ],
  7693. "authors": [
  7694. {
  7695. "name": "Bojan Zivanovic",
  7696. "homepage": "https://www.drupal.org/u/bojanz",
  7697. "role": "Author and D5, D6 and D7 versions developer."
  7698. },
  7699. {
  7700. "name": "Alex Trosenko",
  7701. "homepage": "https://www.drupal.org/u/bucefal91",
  7702. "role": "D7 and D8 versions developer."
  7703. },
  7704. {
  7705. "name": "Duro Arezina",
  7706. "homepage": "https://www.drupal.org/u/devad",
  7707. "role": "D8, D9 and D10 versions maintenance"
  7708. },
  7709. {
  7710. "name": "See other contributors",
  7711. "homepage": "https://www.drupal.org/node/148775/committers"
  7712. }
  7713. ],
  7714. "description": "Provides synonyms feature for all entities.",
  7715. "homepage": "https://www.drupal.org/project/synonyms",
  7716. "support": {
  7717. "source": "https://git.drupalcode.org/project/synonyms",
  7718. "issues": "https://www.drupal.org/project/issues/synonyms"
  7719. }
  7720. },
  7721. {
  7722. "name": "drupal/token",
  7723. "version": "1.13.0",
  7724. "source": {
  7725. "type": "git",
  7726. "url": "https://git.drupalcode.org/project/token.git",
  7727. "reference": "8.x-1.13"
  7728. },
  7729. "dist": {
  7730. "type": "zip",
  7731. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  7732. "reference": "8.x-1.13",
  7733. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  7734. },
  7735. "require": {
  7736. "drupal/core": "^9.2 || ^10"
  7737. },
  7738. "type": "drupal-module",
  7739. "extra": {
  7740. "drupal": {
  7741. "version": "8.x-1.13",
  7742. "datestamp": "1697885927",
  7743. "security-coverage": {
  7744. "status": "covered",
  7745. "message": "Covered by Drupal's security advisory policy"
  7746. }
  7747. },
  7748. "drush": {
  7749. "services": {
  7750. "drush.services.yml": ">=9"
  7751. }
  7752. }
  7753. },
  7754. "notification-url": "https://packages.drupal.org/8/downloads",
  7755. "license": [
  7756. "GPL-2.0-or-later"
  7757. ],
  7758. "authors": [
  7759. {
  7760. "name": "Berdir",
  7761. "homepage": "https://www.drupal.org/user/214652"
  7762. },
  7763. {
  7764. "name": "Dave Reid",
  7765. "homepage": "https://www.drupal.org/user/53892"
  7766. },
  7767. {
  7768. "name": "eaton",
  7769. "homepage": "https://www.drupal.org/user/16496"
  7770. },
  7771. {
  7772. "name": "fago",
  7773. "homepage": "https://www.drupal.org/user/16747"
  7774. },
  7775. {
  7776. "name": "greggles",
  7777. "homepage": "https://www.drupal.org/user/36762"
  7778. },
  7779. {
  7780. "name": "mikeryan",
  7781. "homepage": "https://www.drupal.org/user/4420"
  7782. }
  7783. ],
  7784. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7785. "homepage": "https://www.drupal.org/project/token",
  7786. "support": {
  7787. "source": "https://git.drupalcode.org/project/token"
  7788. }
  7789. },
  7790. {
  7791. "name": "drupal/translation_views",
  7792. "version": "1.0.0-alpha11",
  7793. "source": {
  7794. "type": "git",
  7795. "url": "https://git.drupalcode.org/project/translation_views.git",
  7796. "reference": "8.x-1.0-alpha11"
  7797. },
  7798. "dist": {
  7799. "type": "zip",
  7800. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7801. "reference": "8.x-1.0-alpha11",
  7802. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7803. },
  7804. "require": {
  7805. "drupal/core": "^8.8 || ^9 || ^10"
  7806. },
  7807. "require-dev": {
  7808. "drupal/translators_content": "^1.0@alpha"
  7809. },
  7810. "type": "drupal-module",
  7811. "extra": {
  7812. "drupal": {
  7813. "version": "8.x-1.0-alpha11",
  7814. "datestamp": "1679660668",
  7815. "security-coverage": {
  7816. "status": "not-covered",
  7817. "message": "Project has not opted into security advisory coverage!"
  7818. }
  7819. }
  7820. },
  7821. "notification-url": "https://packages.drupal.org/8/downloads",
  7822. "license": [
  7823. "GPL-2.0-or-later"
  7824. ],
  7825. "authors": [
  7826. {
  7827. "name": "matsbla",
  7828. "homepage": "https://www.drupal.org/user/2325394"
  7829. },
  7830. {
  7831. "name": "vlad.dancer",
  7832. "homepage": "https://www.drupal.org/user/903844"
  7833. }
  7834. ],
  7835. "description": "Create customized lists and queries of translations from your database.",
  7836. "homepage": "https://www.drupal.org/project/translation_views",
  7837. "support": {
  7838. "source": "https://git.drupalcode.org/project/translation_views"
  7839. }
  7840. },
  7841. {
  7842. "name": "drupal/typed_data",
  7843. "version": "2.1.1",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://git.drupalcode.org/project/typed_data.git",
  7847. "reference": "2.1.1"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://ftp.drupal.org/files/projects/typed_data-2.1.1.zip",
  7852. "reference": "2.1.1",
  7853. "shasum": "600cb9527dd93b200355f57ad4da71172ee5f6dc"
  7854. },
  7855. "require": {
  7856. "drupal/core": "^10.3 | ^11"
  7857. },
  7858. "type": "drupal-module",
  7859. "extra": {
  7860. "drupal": {
  7861. "version": "2.1.1",
  7862. "datestamp": "1728332112",
  7863. "security-coverage": {
  7864. "status": "covered",
  7865. "message": "Covered by Drupal's security advisory policy"
  7866. }
  7867. }
  7868. },
  7869. "notification-url": "https://packages.drupal.org/8/downloads",
  7870. "license": [
  7871. "GPL-2.0-or-later"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "fago",
  7876. "homepage": "https://www.drupal.org/user/16747"
  7877. },
  7878. {
  7879. "name": "tr",
  7880. "homepage": "https://www.drupal.org/user/202830"
  7881. }
  7882. ],
  7883. "description": "Extends the core Typed Data API with new APIs and features.",
  7884. "homepage": "https://www.drupal.org/project/typed_data",
  7885. "support": {
  7886. "source": "https://git.drupalcode.org/project/typed_data",
  7887. "issues": "https://www.drupal.org/project/issues/typed_data"
  7888. }
  7889. },
  7890. {
  7891. "name": "drupal/ultimate_cron",
  7892. "version": "2.0.0-alpha6",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7896. "reference": "8.x-2.0-alpha6"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  7901. "reference": "8.x-2.0-alpha6",
  7902. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  7903. },
  7904. "require": {
  7905. "drupal/core": "^9 || ^10"
  7906. },
  7907. "type": "drupal-module",
  7908. "extra": {
  7909. "drupal": {
  7910. "version": "8.x-2.0-alpha6",
  7911. "datestamp": "1666471448",
  7912. "security-coverage": {
  7913. "status": "not-covered",
  7914. "message": "Alpha releases are not covered by Drupal security advisories."
  7915. }
  7916. },
  7917. "drush": {
  7918. "services": {
  7919. "drush.services.yml": "^9 || ^10 || ^11"
  7920. }
  7921. }
  7922. },
  7923. "notification-url": "https://packages.drupal.org/8/downloads",
  7924. "license": [
  7925. "GPL-2.0+"
  7926. ],
  7927. "authors": [
  7928. {
  7929. "name": "arnested",
  7930. "homepage": "https://www.drupal.org/user/245635"
  7931. },
  7932. {
  7933. "name": "Berdir",
  7934. "homepage": "https://www.drupal.org/user/214652"
  7935. },
  7936. {
  7937. "name": "Dane Powell",
  7938. "homepage": "https://www.drupal.org/user/339326"
  7939. },
  7940. {
  7941. "name": "gielfeldt",
  7942. "homepage": "https://www.drupal.org/user/366993"
  7943. },
  7944. {
  7945. "name": "miro_dietiker",
  7946. "homepage": "https://www.drupal.org/user/227761"
  7947. },
  7948. {
  7949. "name": "Primsi",
  7950. "homepage": "https://www.drupal.org/user/282629"
  7951. }
  7952. ],
  7953. "description": "Ultimate cron",
  7954. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7955. "support": {
  7956. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7957. }
  7958. },
  7959. {
  7960. "name": "drupal/video_embed_field",
  7961. "version": "2.5.0",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7965. "reference": "8.x-2.5"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7970. "reference": "8.x-2.5",
  7971. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7972. },
  7973. "require": {
  7974. "drupal/core": "^9.2 || ^10"
  7975. },
  7976. "require-dev": {
  7977. "drupal/ckeditor": "^1",
  7978. "drupal/colorbox": "^2",
  7979. "drupal/video_embed_media": "*"
  7980. },
  7981. "type": "drupal-module",
  7982. "extra": {
  7983. "drupal": {
  7984. "version": "8.x-2.5",
  7985. "datestamp": "1671413311",
  7986. "security-coverage": {
  7987. "status": "covered",
  7988. "message": "Covered by Drupal's security advisory policy"
  7989. }
  7990. }
  7991. },
  7992. "notification-url": "https://packages.drupal.org/8/downloads",
  7993. "license": [
  7994. "GPL-2.0-or-later"
  7995. ],
  7996. "authors": [
  7997. {
  7998. "name": "abhinesh",
  7999. "homepage": "https://www.drupal.org/user/3645979"
  8000. },
  8001. {
  8002. "name": "jec006",
  8003. "homepage": "https://www.drupal.org/user/855980"
  8004. },
  8005. {
  8006. "name": "plopesc",
  8007. "homepage": "https://www.drupal.org/user/282415"
  8008. },
  8009. {
  8010. "name": "Sam152",
  8011. "homepage": "https://www.drupal.org/user/1485048"
  8012. }
  8013. ],
  8014. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  8015. "homepage": "https://www.drupal.org/project/video_embed_field",
  8016. "support": {
  8017. "source": "https://git.drupalcode.org/project/video_embed_field"
  8018. }
  8019. },
  8020. {
  8021. "name": "drupal/views_argument_token",
  8022. "version": "2.0.2",
  8023. "source": {
  8024. "type": "git",
  8025. "url": "https://git.drupalcode.org/project/views_argument_token.git",
  8026. "reference": "2.0.2"
  8027. },
  8028. "dist": {
  8029. "type": "zip",
  8030. "url": "https://ftp.drupal.org/files/projects/views_argument_token-2.0.2.zip",
  8031. "reference": "2.0.2",
  8032. "shasum": "37ec2b8865bb84878f3cb53c5472de27dbc4646b"
  8033. },
  8034. "require": {
  8035. "drupal/core": "^8 || ^9 || ^10",
  8036. "drupal/token": "^1.9"
  8037. },
  8038. "type": "drupal-module",
  8039. "extra": {
  8040. "drupal": {
  8041. "version": "2.0.2",
  8042. "datestamp": "1697637709",
  8043. "security-coverage": {
  8044. "status": "covered",
  8045. "message": "Covered by Drupal's security advisory policy"
  8046. }
  8047. }
  8048. },
  8049. "notification-url": "https://packages.drupal.org/8/downloads",
  8050. "license": [
  8051. "GPL-2.0+"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "eme",
  8056. "homepage": "https://www.drupal.org/u/eme"
  8057. },
  8058. {
  8059. "name": "Mohamed Anis Taktak",
  8060. "homepage": "https://www.drupal.org/u/matio89"
  8061. },
  8062. {
  8063. "name": "Dakwamine",
  8064. "homepage": "https://www.drupal.org/u/dakwamine"
  8065. },
  8066. {
  8067. "name": "Stephen Mulvihill",
  8068. "homepage": "https://www.drupal.org/u/smulvih2"
  8069. },
  8070. {
  8071. "name": "MichaelB",
  8072. "homepage": "https://www.drupal.org/user/2309046"
  8073. },
  8074. {
  8075. "name": "smulvih2",
  8076. "homepage": "https://www.drupal.org/user/795442"
  8077. },
  8078. {
  8079. "name": "snake_plissken",
  8080. "homepage": "https://www.drupal.org/user/3624793"
  8081. }
  8082. ],
  8083. "description": "Views Token Argument allows you to use token as contextual filter for Views.",
  8084. "homepage": "http://drupal.org/project/views_argument_token",
  8085. "support": {
  8086. "source": "https://git.drupalcode.org/project/views_argument_token",
  8087. "issues": "https://www.drupal.org/project/issues/views_argument_token"
  8088. }
  8089. },
  8090. {
  8091. "name": "drupal/views_bulk_edit",
  8092. "version": "2.9.0",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8096. "reference": "8.x-2.9"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  8101. "reference": "8.x-2.9",
  8102. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  8103. },
  8104. "require": {
  8105. "drupal/core": "^9.4 || ^10"
  8106. },
  8107. "require-dev": {
  8108. "drupal/views_bulk_operations": "~4.2.4"
  8109. },
  8110. "suggest": {
  8111. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8112. },
  8113. "type": "drupal-module",
  8114. "extra": {
  8115. "drupal": {
  8116. "version": "8.x-2.9",
  8117. "datestamp": "1690222256",
  8118. "security-coverage": {
  8119. "status": "covered",
  8120. "message": "Covered by Drupal's security advisory policy"
  8121. }
  8122. }
  8123. },
  8124. "notification-url": "https://packages.drupal.org/8/downloads",
  8125. "license": [
  8126. "GPL-2.0+"
  8127. ],
  8128. "authors": [
  8129. {
  8130. "name": "Marcin Grabias",
  8131. "homepage": "https://www.drupal.org/u/graber"
  8132. },
  8133. {
  8134. "name": "Graber",
  8135. "homepage": "https://www.drupal.org/user/1599440"
  8136. },
  8137. {
  8138. "name": "joseph.olstad",
  8139. "homepage": "https://www.drupal.org/user/1321830"
  8140. }
  8141. ],
  8142. "description": "Allows bulk edition of entity field values.",
  8143. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8144. "support": {
  8145. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8146. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8147. }
  8148. },
  8149. {
  8150. "name": "drupal/views_bulk_operations",
  8151. "version": "4.2.5",
  8152. "source": {
  8153. "type": "git",
  8154. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8155. "reference": "4.2.5"
  8156. },
  8157. "dist": {
  8158. "type": "zip",
  8159. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  8160. "reference": "4.2.5",
  8161. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  8162. },
  8163. "require": {
  8164. "drupal/core": "^9.4 || ^10",
  8165. "php": ">=7.4.0"
  8166. },
  8167. "require-dev": {
  8168. "drush/drush": "^11"
  8169. },
  8170. "suggest": {
  8171. "drush/drush": "^10 || ^11"
  8172. },
  8173. "type": "drupal-module",
  8174. "extra": {
  8175. "drupal": {
  8176. "version": "4.2.5",
  8177. "datestamp": "1691066184",
  8178. "security-coverage": {
  8179. "status": "covered",
  8180. "message": "Covered by Drupal's security advisory policy"
  8181. }
  8182. },
  8183. "drush": {
  8184. "services": {
  8185. "drush.services.yml": "^10 || ^11"
  8186. }
  8187. }
  8188. },
  8189. "notification-url": "https://packages.drupal.org/8/downloads",
  8190. "license": [
  8191. "GPL-2.0-or-later"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Marcin Grabias",
  8196. "homepage": "https://www.drupal.org/u/graber"
  8197. },
  8198. {
  8199. "name": "Graber",
  8200. "homepage": "https://www.drupal.org/user/1599440"
  8201. },
  8202. {
  8203. "name": "joelpittet",
  8204. "homepage": "https://www.drupal.org/user/160302"
  8205. }
  8206. ],
  8207. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8208. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8209. "support": {
  8210. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8211. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8212. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8213. }
  8214. },
  8215. {
  8216. "name": "drupal/views_core_entity_reference",
  8217. "version": "1.0.0-alpha3",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://git.drupalcode.org/project/views_core_entity_reference.git",
  8221. "reference": "1.0.0-alpha3"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://ftp.drupal.org/files/projects/views_core_entity_reference-1.0.0-alpha3.zip",
  8226. "reference": "1.0.0-alpha3",
  8227. "shasum": "d31cc22d7d12c2cf1a3edf3d46e4c0c8642b5518"
  8228. },
  8229. "require": {
  8230. "drupal/core": "^10.2 || ^11"
  8231. },
  8232. "type": "drupal-module",
  8233. "extra": {
  8234. "drupal": {
  8235. "version": "1.0.0-alpha3",
  8236. "datestamp": "1736951307",
  8237. "security-coverage": {
  8238. "status": "not-covered",
  8239. "message": "Alpha releases are not covered by Drupal security advisories."
  8240. }
  8241. }
  8242. },
  8243. "notification-url": "https://packages.drupal.org/8/downloads",
  8244. "license": [
  8245. "GPL-2.0-or-later"
  8246. ],
  8247. "authors": [
  8248. {
  8249. "name": "scott_euser",
  8250. "homepage": "https://www.drupal.org/user/3267594"
  8251. }
  8252. ],
  8253. "description": "Opts-in to using the Entity Reference filter provided by Drupal Core.",
  8254. "homepage": "https://www.drupal.org/project/views_core_entity_reference",
  8255. "support": {
  8256. "source": "https://git.drupalcode.org/project/views_core_entity_reference"
  8257. }
  8258. },
  8259. {
  8260. "name": "drupal/webform",
  8261. "version": "6.2.0",
  8262. "source": {
  8263. "type": "git",
  8264. "url": "https://git.drupalcode.org/project/webform.git",
  8265. "reference": "6.2.0"
  8266. },
  8267. "dist": {
  8268. "type": "zip",
  8269. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  8270. "reference": "6.2.0",
  8271. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  8272. },
  8273. "require": {
  8274. "drupal/core": "^9.4 || ^10",
  8275. "php": ">=8.1"
  8276. },
  8277. "require-dev": {
  8278. "drupal/address": "1.x-dev",
  8279. "drupal/bootstrap": "3.x-dev",
  8280. "drupal/captcha": "^1 || ^2",
  8281. "drupal/chosen": "3.0.x-dev",
  8282. "drupal/ckeditor": "1.0.x-dev",
  8283. "drupal/clientside_validation": "^3 || ^4",
  8284. "drupal/clientside_validation_jquery": "*",
  8285. "drupal/devel": "5.x-dev",
  8286. "drupal/entity": "1.x-dev",
  8287. "drupal/entity_print": "2.x-dev",
  8288. "drupal/group": "1.x-dev",
  8289. "drupal/hal": "1 - 2",
  8290. "drupal/jquery_ui": "1.x-dev",
  8291. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  8292. "drupal/jquery_ui_datepicker": "2.x-dev",
  8293. "drupal/mailsystem": "4.x-dev",
  8294. "drupal/metatag": "1.x-dev",
  8295. "drupal/paragraphs": "1.x-dev",
  8296. "drupal/select2": "1.x-dev",
  8297. "drupal/smtp": "1.x-dev",
  8298. "drupal/styleguide": "^1 || ^2",
  8299. "drupal/telephone_validation": "2.x-dev",
  8300. "drupal/token": "1.x-dev",
  8301. "drupal/variationcache": "1.x-dev",
  8302. "drupal/webform_access": "*",
  8303. "drupal/webform_attachment": "*",
  8304. "drupal/webform_clientside_validation": "*",
  8305. "drupal/webform_devel": "*",
  8306. "drupal/webform_entity_print": "*",
  8307. "drupal/webform_node": "*",
  8308. "drupal/webform_options_limit": "*",
  8309. "drupal/webform_scheduled_email": "*",
  8310. "drupal/webform_share": "*",
  8311. "drupal/webform_ui": "*"
  8312. },
  8313. "suggest": {
  8314. "drupal/jquery_ui_checkboxradio": "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.",
  8315. "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."
  8316. },
  8317. "type": "drupal-module",
  8318. "extra": {
  8319. "drupal": {
  8320. "version": "6.2.0",
  8321. "datestamp": "1698674300",
  8322. "security-coverage": {
  8323. "status": "covered",
  8324. "message": "Covered by Drupal's security advisory policy"
  8325. }
  8326. },
  8327. "drush": {
  8328. "services": {
  8329. "drush.services.yml": ">=9"
  8330. }
  8331. }
  8332. },
  8333. "notification-url": "https://packages.drupal.org/8/downloads",
  8334. "license": [
  8335. "GPL-2.0-or-later"
  8336. ],
  8337. "authors": [
  8338. {
  8339. "name": "Jacob Rockowitz (jrockowitz)",
  8340. "homepage": "https://www.drupal.org/u/jrockowitz",
  8341. "role": "Maintainer"
  8342. },
  8343. {
  8344. "name": "Contributors",
  8345. "homepage": "https://www.drupal.org/node/7404/committers",
  8346. "role": "Contributor"
  8347. },
  8348. {
  8349. "name": "Liam Morland",
  8350. "homepage": "https://www.drupal.org/user/493050"
  8351. },
  8352. {
  8353. "name": "quicksketch",
  8354. "homepage": "https://www.drupal.org/user/35821"
  8355. },
  8356. {
  8357. "name": "torotil",
  8358. "homepage": "https://www.drupal.org/user/865256"
  8359. }
  8360. ],
  8361. "description": "Enables the creation of webforms and questionnaires.",
  8362. "homepage": "https://drupal.org/project/webform",
  8363. "support": {
  8364. "source": "https://git.drupalcode.org/project/webform",
  8365. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8366. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8367. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8368. }
  8369. },
  8370. {
  8371. "name": "drush/drush",
  8372. "version": "12.5.3",
  8373. "source": {
  8374. "type": "git",
  8375. "url": "https://github.com/drush-ops/drush.git",
  8376. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  8377. },
  8378. "dist": {
  8379. "type": "zip",
  8380. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8381. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8382. "shasum": ""
  8383. },
  8384. "require": {
  8385. "chi-teck/drupal-code-generator": "^3.0",
  8386. "composer-runtime-api": "^2.2",
  8387. "composer/semver": "^1.4 || ^3",
  8388. "consolidation/annotated-command": "^4.9.2",
  8389. "consolidation/config": "^2.1.2",
  8390. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8391. "consolidation/output-formatters": "^4.3.2",
  8392. "consolidation/robo": "^4.0.6",
  8393. "consolidation/site-alias": "^4",
  8394. "consolidation/site-process": "^5.2.0",
  8395. "ext-dom": "*",
  8396. "grasmash/yaml-cli": "^3.1",
  8397. "guzzlehttp/guzzle": "^7.0",
  8398. "league/container": "^4",
  8399. "php": ">=8.1",
  8400. "psy/psysh": "~0.11",
  8401. "symfony/event-dispatcher": "^6",
  8402. "symfony/filesystem": "^6.1",
  8403. "symfony/finder": "^6",
  8404. "symfony/var-dumper": "^6.0",
  8405. "symfony/yaml": "^6.0",
  8406. "webflo/drupal-finder": "^1.2"
  8407. },
  8408. "conflict": {
  8409. "drupal/core": "< 10.0",
  8410. "drupal/migrate_run": "*",
  8411. "drupal/migrate_tools": "<= 5"
  8412. },
  8413. "require-dev": {
  8414. "composer/installers": "^2",
  8415. "cweagans/composer-patches": "~1.0",
  8416. "drupal/core-recommended": "^10",
  8417. "drupal/semver_example": "2.3.0",
  8418. "phpunit/phpunit": "^9",
  8419. "rector/rector": "^0.12",
  8420. "squizlabs/php_codesniffer": "^3.7"
  8421. },
  8422. "bin": [
  8423. "drush"
  8424. ],
  8425. "type": "library",
  8426. "extra": {
  8427. "installer-paths": {
  8428. "sut/core": [
  8429. "type:drupal-core"
  8430. ],
  8431. "sut/libraries/{$name}": [
  8432. "type:drupal-library"
  8433. ],
  8434. "sut/themes/unish/{$name}": [
  8435. "drupal/empty_theme"
  8436. ],
  8437. "sut/drush/contrib/{$name}": [
  8438. "type:drupal-drush"
  8439. ],
  8440. "sut/modules/unish/{$name}": [
  8441. "drupal/devel"
  8442. ],
  8443. "sut/themes/contrib/{$name}": [
  8444. "type:drupal-theme"
  8445. ],
  8446. "sut/modules/contrib/{$name}": [
  8447. "type:drupal-module"
  8448. ],
  8449. "sut/profiles/contrib/{$name}": [
  8450. "type:drupal-profile"
  8451. ]
  8452. }
  8453. },
  8454. "autoload": {
  8455. "psr-4": {
  8456. "Drush\\": "src/"
  8457. }
  8458. },
  8459. "notification-url": "https://packagist.org/downloads/",
  8460. "license": [
  8461. "GPL-2.0-or-later"
  8462. ],
  8463. "authors": [
  8464. {
  8465. "name": "Moshe Weitzman",
  8466. "email": "weitzman@tejasa.com"
  8467. },
  8468. {
  8469. "name": "Owen Barton",
  8470. "email": "drupal@owenbarton.com"
  8471. },
  8472. {
  8473. "name": "Greg Anderson",
  8474. "email": "greg.1.anderson@greenknowe.org"
  8475. },
  8476. {
  8477. "name": "Jonathan Araña Cruz",
  8478. "email": "jonhattan@faita.net"
  8479. },
  8480. {
  8481. "name": "Jonathan Hedstrom",
  8482. "email": "jhedstrom@gmail.com"
  8483. },
  8484. {
  8485. "name": "Christopher Gervais",
  8486. "email": "chris@ergonlogic.com"
  8487. },
  8488. {
  8489. "name": "Dave Reid",
  8490. "email": "dave@davereid.net"
  8491. },
  8492. {
  8493. "name": "Damian Lee",
  8494. "email": "damiankloip@googlemail.com"
  8495. }
  8496. ],
  8497. "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.",
  8498. "homepage": "http://www.drush.org",
  8499. "support": {
  8500. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8501. "issues": "https://github.com/drush-ops/drush/issues",
  8502. "security": "https://github.com/drush-ops/drush/security/advisories",
  8503. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8504. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  8505. },
  8506. "funding": [
  8507. {
  8508. "url": "https://github.com/weitzman",
  8509. "type": "github"
  8510. }
  8511. ],
  8512. "time": "2024-08-02T11:57:29+00:00"
  8513. },
  8514. {
  8515. "name": "egulias/email-validator",
  8516. "version": "4.0.4",
  8517. "source": {
  8518. "type": "git",
  8519. "url": "https://github.com/egulias/EmailValidator.git",
  8520. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8521. },
  8522. "dist": {
  8523. "type": "zip",
  8524. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8525. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8526. "shasum": ""
  8527. },
  8528. "require": {
  8529. "doctrine/lexer": "^2.0 || ^3.0",
  8530. "php": ">=8.1",
  8531. "symfony/polyfill-intl-idn": "^1.26"
  8532. },
  8533. "require-dev": {
  8534. "phpunit/phpunit": "^10.2",
  8535. "vimeo/psalm": "^5.12"
  8536. },
  8537. "suggest": {
  8538. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8539. },
  8540. "type": "library",
  8541. "extra": {
  8542. "branch-alias": {
  8543. "dev-master": "4.0.x-dev"
  8544. }
  8545. },
  8546. "autoload": {
  8547. "psr-4": {
  8548. "Egulias\\EmailValidator\\": "src"
  8549. }
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Eduardo Gulias Davis"
  8558. }
  8559. ],
  8560. "description": "A library for validating emails against several RFCs",
  8561. "homepage": "https://github.com/egulias/EmailValidator",
  8562. "keywords": [
  8563. "email",
  8564. "emailvalidation",
  8565. "emailvalidator",
  8566. "validation",
  8567. "validator"
  8568. ],
  8569. "support": {
  8570. "issues": "https://github.com/egulias/EmailValidator/issues",
  8571. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8572. },
  8573. "funding": [
  8574. {
  8575. "url": "https://github.com/egulias",
  8576. "type": "github"
  8577. }
  8578. ],
  8579. "time": "2025-03-06T22:45:56+00:00"
  8580. },
  8581. {
  8582. "name": "fileeye/mimemap",
  8583. "version": "2.0.2",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/FileEye/MimeMap.git",
  8587. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  8592. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  8593. "shasum": ""
  8594. },
  8595. "require": {
  8596. "php": ">=7.3"
  8597. },
  8598. "require-dev": {
  8599. "composer-runtime-api": "^2.0.0",
  8600. "phpstan/phpstan": "^1.2",
  8601. "phpunit/phpunit": "^9 | ^10",
  8602. "sebastian/comparator": ">=4",
  8603. "sebastian/diff": ">=4",
  8604. "squizlabs/php_codesniffer": ">=3.6",
  8605. "symfony/console": ">=5.4",
  8606. "symfony/filesystem": ">=5.4",
  8607. "symfony/var-dumper": ">=5.4",
  8608. "symfony/yaml": ">=5.4",
  8609. "vimeo/psalm": "^4.23 | ^5"
  8610. },
  8611. "bin": [
  8612. "bin/fileeye-mimemap"
  8613. ],
  8614. "type": "library",
  8615. "extra": {
  8616. "branch-alias": {
  8617. "dev-master": "2.x-dev"
  8618. }
  8619. },
  8620. "autoload": {
  8621. "psr-4": {
  8622. "FileEye\\MimeMap\\": "src/"
  8623. }
  8624. },
  8625. "notification-url": "https://packagist.org/downloads/",
  8626. "license": [
  8627. "LGPL-3.0-or-later"
  8628. ],
  8629. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8630. "homepage": "https://github.com/FileEye/MimeMap",
  8631. "keywords": [
  8632. "mime",
  8633. "mime-database",
  8634. "mime-parser",
  8635. "mime-type"
  8636. ],
  8637. "support": {
  8638. "issues": "https://github.com/FileEye/MimeMap/issues",
  8639. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  8640. },
  8641. "time": "2023-08-29T16:20:26+00:00"
  8642. },
  8643. {
  8644. "name": "fileeye/pel",
  8645. "version": "0.9.20",
  8646. "source": {
  8647. "type": "git",
  8648. "url": "https://github.com/FileEye/pel.git",
  8649. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  8650. },
  8651. "dist": {
  8652. "type": "zip",
  8653. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8654. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8655. "shasum": ""
  8656. },
  8657. "require": {
  8658. "php": ">=7.1.0"
  8659. },
  8660. "require-dev": {
  8661. "ext-exif": "*",
  8662. "ext-gd": "*",
  8663. "php-coveralls/php-coveralls": ">2.4",
  8664. "phpstan/phpstan": "^1.4",
  8665. "squizlabs/php_codesniffer": ">3.5",
  8666. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  8667. },
  8668. "type": "library",
  8669. "autoload": {
  8670. "psr-4": {
  8671. "lsolesen\\pel\\": "src/"
  8672. }
  8673. },
  8674. "notification-url": "https://packagist.org/downloads/",
  8675. "license": [
  8676. "GPL-2.0"
  8677. ],
  8678. "authors": [
  8679. {
  8680. "name": "Lars Olesen",
  8681. "email": "lars@intraface.dk",
  8682. "homepage": "http://intraface.dk",
  8683. "role": "Developer"
  8684. },
  8685. {
  8686. "name": "Martin Geisler",
  8687. "email": "martin@geisler.net",
  8688. "homepage": "http://geisler.net",
  8689. "role": "Developer"
  8690. }
  8691. ],
  8692. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8693. "homepage": "https://github.com/FileEye/pel",
  8694. "keywords": [
  8695. "exif",
  8696. "image"
  8697. ],
  8698. "support": {
  8699. "issues": "https://github.com/FileEye/pel/issues",
  8700. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  8701. },
  8702. "time": "2023-06-20T07:10:35+00:00"
  8703. },
  8704. {
  8705. "name": "giggsey/libphonenumber-for-php",
  8706. "version": "8.13.25",
  8707. "source": {
  8708. "type": "git",
  8709. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  8710. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  8711. },
  8712. "dist": {
  8713. "type": "zip",
  8714. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  8715. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  8716. "shasum": ""
  8717. },
  8718. "require": {
  8719. "giggsey/locale": "^1.7|^2.0",
  8720. "php": ">=5.3.2",
  8721. "symfony/polyfill-mbstring": "^1.17"
  8722. },
  8723. "require-dev": {
  8724. "pear/pear-core-minimal": "^1.9",
  8725. "pear/pear_exception": "^1.0",
  8726. "pear/versioncontrol_git": "^0.5",
  8727. "phing/phing": "^2.7",
  8728. "php-coveralls/php-coveralls": "^1.0|^2.0",
  8729. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  8730. "symfony/phpunit-bridge": "^4.2 || ^5"
  8731. },
  8732. "type": "library",
  8733. "extra": {
  8734. "branch-alias": {
  8735. "dev-master": "8.x-dev"
  8736. }
  8737. },
  8738. "autoload": {
  8739. "psr-4": {
  8740. "libphonenumber\\": "src/"
  8741. },
  8742. "exclude-from-classmap": [
  8743. "/src/data/",
  8744. "/src/carrier/data/",
  8745. "/src/geocoding/data/",
  8746. "/src/timezone/data/"
  8747. ]
  8748. },
  8749. "notification-url": "https://packagist.org/downloads/",
  8750. "license": [
  8751. "Apache-2.0"
  8752. ],
  8753. "authors": [
  8754. {
  8755. "name": "Joshua Gigg",
  8756. "email": "giggsey@gmail.com",
  8757. "homepage": "https://giggsey.com/"
  8758. }
  8759. ],
  8760. "description": "PHP Port of Google's libphonenumber",
  8761. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  8762. "keywords": [
  8763. "geocoding",
  8764. "geolocation",
  8765. "libphonenumber",
  8766. "mobile",
  8767. "phonenumber",
  8768. "validation"
  8769. ],
  8770. "support": {
  8771. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  8772. "source": "https://github.com/giggsey/libphonenumber-for-php"
  8773. },
  8774. "time": "2023-11-13T09:34:15+00:00"
  8775. },
  8776. {
  8777. "name": "giggsey/locale",
  8778. "version": "2.5",
  8779. "source": {
  8780. "type": "git",
  8781. "url": "https://github.com/giggsey/Locale.git",
  8782. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  8783. },
  8784. "dist": {
  8785. "type": "zip",
  8786. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8787. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8788. "shasum": ""
  8789. },
  8790. "require": {
  8791. "php": ">=7.2"
  8792. },
  8793. "require-dev": {
  8794. "ext-json": "*",
  8795. "pear/pear-core-minimal": "^1.9",
  8796. "pear/pear_exception": "^1.0",
  8797. "pear/versioncontrol_git": "^0.5",
  8798. "phing/phing": "^2.7",
  8799. "php-coveralls/php-coveralls": "^2.0",
  8800. "phpunit/phpunit": "^8.5|^9.5",
  8801. "symfony/console": "^5.0|^6.0",
  8802. "symfony/filesystem": "^5.0|^6.0",
  8803. "symfony/finder": "^5.0|^6.0",
  8804. "symfony/process": "^5.0|^6.0"
  8805. },
  8806. "type": "library",
  8807. "autoload": {
  8808. "psr-4": {
  8809. "Giggsey\\Locale\\": "src/"
  8810. }
  8811. },
  8812. "notification-url": "https://packagist.org/downloads/",
  8813. "license": [
  8814. "MIT"
  8815. ],
  8816. "authors": [
  8817. {
  8818. "name": "Joshua Gigg",
  8819. "email": "giggsey@gmail.com",
  8820. "homepage": "https://giggsey.com/"
  8821. }
  8822. ],
  8823. "description": "Locale functions required by libphonenumber-for-php",
  8824. "support": {
  8825. "issues": "https://github.com/giggsey/Locale/issues",
  8826. "source": "https://github.com/giggsey/Locale/tree/2.5"
  8827. },
  8828. "time": "2023-11-01T17:19:48+00:00"
  8829. },
  8830. {
  8831. "name": "grasmash/expander",
  8832. "version": "3.0.1",
  8833. "source": {
  8834. "type": "git",
  8835. "url": "https://github.com/grasmash/expander.git",
  8836. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8837. },
  8838. "dist": {
  8839. "type": "zip",
  8840. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8841. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8842. "shasum": ""
  8843. },
  8844. "require": {
  8845. "dflydev/dot-access-data": "^3.0.0",
  8846. "php": ">=8.0",
  8847. "psr/log": "^2 | ^3"
  8848. },
  8849. "require-dev": {
  8850. "greg-1-anderson/composer-test-scenarios": "^1",
  8851. "php-coveralls/php-coveralls": "^2.5",
  8852. "phpunit/phpunit": "^9",
  8853. "squizlabs/php_codesniffer": "^3.3"
  8854. },
  8855. "type": "library",
  8856. "extra": {
  8857. "branch-alias": {
  8858. "dev-master": "1.x-dev"
  8859. }
  8860. },
  8861. "autoload": {
  8862. "psr-4": {
  8863. "Grasmash\\Expander\\": "src/"
  8864. }
  8865. },
  8866. "notification-url": "https://packagist.org/downloads/",
  8867. "license": [
  8868. "MIT"
  8869. ],
  8870. "authors": [
  8871. {
  8872. "name": "Matthew Grasmick"
  8873. }
  8874. ],
  8875. "description": "Expands internal property references in PHP arrays file.",
  8876. "support": {
  8877. "issues": "https://github.com/grasmash/expander/issues",
  8878. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8879. },
  8880. "time": "2024-11-25T23:28:05+00:00"
  8881. },
  8882. {
  8883. "name": "grasmash/yaml-cli",
  8884. "version": "3.2.1",
  8885. "source": {
  8886. "type": "git",
  8887. "url": "https://github.com/grasmash/yaml-cli.git",
  8888. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8889. },
  8890. "dist": {
  8891. "type": "zip",
  8892. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8893. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8894. "shasum": ""
  8895. },
  8896. "require": {
  8897. "dflydev/dot-access-data": "^3",
  8898. "php": ">=8.0",
  8899. "symfony/console": "^6 || ^7",
  8900. "symfony/filesystem": "^6 || ^7",
  8901. "symfony/yaml": "^6 || ^7"
  8902. },
  8903. "require-dev": {
  8904. "php-coveralls/php-coveralls": "^2",
  8905. "phpunit/phpunit": "^9",
  8906. "squizlabs/php_codesniffer": "^3.0"
  8907. },
  8908. "bin": [
  8909. "bin/yaml-cli"
  8910. ],
  8911. "type": "library",
  8912. "extra": {
  8913. "branch-alias": {
  8914. "dev-master": "3.x-dev"
  8915. }
  8916. },
  8917. "autoload": {
  8918. "psr-4": {
  8919. "Grasmash\\YamlCli\\": "src/"
  8920. }
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "MIT"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Matthew Grasmick"
  8929. }
  8930. ],
  8931. "description": "A command line tool for reading and manipulating yaml files.",
  8932. "support": {
  8933. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8934. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8935. },
  8936. "time": "2024-04-23T02:10:57+00:00"
  8937. },
  8938. {
  8939. "name": "guzzlehttp/guzzle",
  8940. "version": "7.9.3",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/guzzle/guzzle.git",
  8944. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8949. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "ext-json": "*",
  8954. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  8955. "guzzlehttp/psr7": "^2.7.0",
  8956. "php": "^7.2.5 || ^8.0",
  8957. "psr/http-client": "^1.0",
  8958. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8959. },
  8960. "provide": {
  8961. "psr/http-client-implementation": "1.0"
  8962. },
  8963. "require-dev": {
  8964. "bamarni/composer-bin-plugin": "^1.8.2",
  8965. "ext-curl": "*",
  8966. "guzzle/client-integration-tests": "3.0.2",
  8967. "php-http/message-factory": "^1.1",
  8968. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8969. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8970. },
  8971. "suggest": {
  8972. "ext-curl": "Required for CURL handler support",
  8973. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8974. "psr/log": "Required for using the Log middleware"
  8975. },
  8976. "type": "library",
  8977. "extra": {
  8978. "bamarni-bin": {
  8979. "bin-links": true,
  8980. "forward-command": false
  8981. }
  8982. },
  8983. "autoload": {
  8984. "files": [
  8985. "src/functions_include.php"
  8986. ],
  8987. "psr-4": {
  8988. "GuzzleHttp\\": "src/"
  8989. }
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "authors": [
  8996. {
  8997. "name": "Graham Campbell",
  8998. "email": "hello@gjcampbell.co.uk",
  8999. "homepage": "https://github.com/GrahamCampbell"
  9000. },
  9001. {
  9002. "name": "Michael Dowling",
  9003. "email": "mtdowling@gmail.com",
  9004. "homepage": "https://github.com/mtdowling"
  9005. },
  9006. {
  9007. "name": "Jeremy Lindblom",
  9008. "email": "jeremeamia@gmail.com",
  9009. "homepage": "https://github.com/jeremeamia"
  9010. },
  9011. {
  9012. "name": "George Mponos",
  9013. "email": "gmponos@gmail.com",
  9014. "homepage": "https://github.com/gmponos"
  9015. },
  9016. {
  9017. "name": "Tobias Nyholm",
  9018. "email": "tobias.nyholm@gmail.com",
  9019. "homepage": "https://github.com/Nyholm"
  9020. },
  9021. {
  9022. "name": "Márk Sági-Kazár",
  9023. "email": "mark.sagikazar@gmail.com",
  9024. "homepage": "https://github.com/sagikazarmark"
  9025. },
  9026. {
  9027. "name": "Tobias Schultze",
  9028. "email": "webmaster@tubo-world.de",
  9029. "homepage": "https://github.com/Tobion"
  9030. }
  9031. ],
  9032. "description": "Guzzle is a PHP HTTP client library",
  9033. "keywords": [
  9034. "client",
  9035. "curl",
  9036. "framework",
  9037. "http",
  9038. "http client",
  9039. "psr-18",
  9040. "psr-7",
  9041. "rest",
  9042. "web service"
  9043. ],
  9044. "support": {
  9045. "issues": "https://github.com/guzzle/guzzle/issues",
  9046. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://github.com/GrahamCampbell",
  9051. "type": "github"
  9052. },
  9053. {
  9054. "url": "https://github.com/Nyholm",
  9055. "type": "github"
  9056. },
  9057. {
  9058. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  9059. "type": "tidelift"
  9060. }
  9061. ],
  9062. "time": "2025-03-27T13:37:11+00:00"
  9063. },
  9064. {
  9065. "name": "guzzlehttp/promises",
  9066. "version": "2.2.0",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/guzzle/promises.git",
  9070. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  9075. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "php": "^7.2.5 || ^8.0"
  9080. },
  9081. "require-dev": {
  9082. "bamarni/composer-bin-plugin": "^1.8.2",
  9083. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "bamarni-bin": {
  9088. "bin-links": true,
  9089. "forward-command": false
  9090. }
  9091. },
  9092. "autoload": {
  9093. "psr-4": {
  9094. "GuzzleHttp\\Promise\\": "src/"
  9095. }
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Graham Campbell",
  9104. "email": "hello@gjcampbell.co.uk",
  9105. "homepage": "https://github.com/GrahamCampbell"
  9106. },
  9107. {
  9108. "name": "Michael Dowling",
  9109. "email": "mtdowling@gmail.com",
  9110. "homepage": "https://github.com/mtdowling"
  9111. },
  9112. {
  9113. "name": "Tobias Nyholm",
  9114. "email": "tobias.nyholm@gmail.com",
  9115. "homepage": "https://github.com/Nyholm"
  9116. },
  9117. {
  9118. "name": "Tobias Schultze",
  9119. "email": "webmaster@tubo-world.de",
  9120. "homepage": "https://github.com/Tobion"
  9121. }
  9122. ],
  9123. "description": "Guzzle promises library",
  9124. "keywords": [
  9125. "promise"
  9126. ],
  9127. "support": {
  9128. "issues": "https://github.com/guzzle/promises/issues",
  9129. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  9130. },
  9131. "funding": [
  9132. {
  9133. "url": "https://github.com/GrahamCampbell",
  9134. "type": "github"
  9135. },
  9136. {
  9137. "url": "https://github.com/Nyholm",
  9138. "type": "github"
  9139. },
  9140. {
  9141. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  9142. "type": "tidelift"
  9143. }
  9144. ],
  9145. "time": "2025-03-27T13:27:01+00:00"
  9146. },
  9147. {
  9148. "name": "guzzlehttp/psr7",
  9149. "version": "2.7.1",
  9150. "source": {
  9151. "type": "git",
  9152. "url": "https://github.com/guzzle/psr7.git",
  9153. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  9154. },
  9155. "dist": {
  9156. "type": "zip",
  9157. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  9158. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  9159. "shasum": ""
  9160. },
  9161. "require": {
  9162. "php": "^7.2.5 || ^8.0",
  9163. "psr/http-factory": "^1.0",
  9164. "psr/http-message": "^1.1 || ^2.0",
  9165. "ralouphie/getallheaders": "^3.0"
  9166. },
  9167. "provide": {
  9168. "psr/http-factory-implementation": "1.0",
  9169. "psr/http-message-implementation": "1.0"
  9170. },
  9171. "require-dev": {
  9172. "bamarni/composer-bin-plugin": "^1.8.2",
  9173. "http-interop/http-factory-tests": "0.9.0",
  9174. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  9175. },
  9176. "suggest": {
  9177. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  9178. },
  9179. "type": "library",
  9180. "extra": {
  9181. "bamarni-bin": {
  9182. "bin-links": true,
  9183. "forward-command": false
  9184. }
  9185. },
  9186. "autoload": {
  9187. "psr-4": {
  9188. "GuzzleHttp\\Psr7\\": "src/"
  9189. }
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "MIT"
  9194. ],
  9195. "authors": [
  9196. {
  9197. "name": "Graham Campbell",
  9198. "email": "hello@gjcampbell.co.uk",
  9199. "homepage": "https://github.com/GrahamCampbell"
  9200. },
  9201. {
  9202. "name": "Michael Dowling",
  9203. "email": "mtdowling@gmail.com",
  9204. "homepage": "https://github.com/mtdowling"
  9205. },
  9206. {
  9207. "name": "George Mponos",
  9208. "email": "gmponos@gmail.com",
  9209. "homepage": "https://github.com/gmponos"
  9210. },
  9211. {
  9212. "name": "Tobias Nyholm",
  9213. "email": "tobias.nyholm@gmail.com",
  9214. "homepage": "https://github.com/Nyholm"
  9215. },
  9216. {
  9217. "name": "Márk Sági-Kazár",
  9218. "email": "mark.sagikazar@gmail.com",
  9219. "homepage": "https://github.com/sagikazarmark"
  9220. },
  9221. {
  9222. "name": "Tobias Schultze",
  9223. "email": "webmaster@tubo-world.de",
  9224. "homepage": "https://github.com/Tobion"
  9225. },
  9226. {
  9227. "name": "Márk Sági-Kazár",
  9228. "email": "mark.sagikazar@gmail.com",
  9229. "homepage": "https://sagikazarmark.hu"
  9230. }
  9231. ],
  9232. "description": "PSR-7 message implementation that also provides common utility methods",
  9233. "keywords": [
  9234. "http",
  9235. "message",
  9236. "psr-7",
  9237. "request",
  9238. "response",
  9239. "stream",
  9240. "uri",
  9241. "url"
  9242. ],
  9243. "support": {
  9244. "issues": "https://github.com/guzzle/psr7/issues",
  9245. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  9246. },
  9247. "funding": [
  9248. {
  9249. "url": "https://github.com/GrahamCampbell",
  9250. "type": "github"
  9251. },
  9252. {
  9253. "url": "https://github.com/Nyholm",
  9254. "type": "github"
  9255. },
  9256. {
  9257. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  9258. "type": "tidelift"
  9259. }
  9260. ],
  9261. "time": "2025-03-27T12:30:47+00:00"
  9262. },
  9263. {
  9264. "name": "kint-php/kint",
  9265. "version": "3.3",
  9266. "source": {
  9267. "type": "git",
  9268. "url": "https://github.com/kint-php/kint.git",
  9269. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  9270. },
  9271. "dist": {
  9272. "type": "zip",
  9273. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9274. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9275. "shasum": ""
  9276. },
  9277. "require": {
  9278. "php": ">=5.3.6"
  9279. },
  9280. "require-dev": {
  9281. "friendsofphp/php-cs-fixer": "^2.0",
  9282. "phpunit/phpunit": "^4.0",
  9283. "seld/phar-utils": "^1.0",
  9284. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  9285. "vimeo/psalm": "^3.0"
  9286. },
  9287. "suggest": {
  9288. "ext-ctype": "Simple data type tests",
  9289. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  9290. "ext-mbstring": "Provides string encoding detection",
  9291. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  9292. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  9293. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  9294. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  9295. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  9296. },
  9297. "type": "library",
  9298. "autoload": {
  9299. "files": [
  9300. "init.php"
  9301. ],
  9302. "psr-4": {
  9303. "Kint\\": "src/"
  9304. }
  9305. },
  9306. "notification-url": "https://packagist.org/downloads/",
  9307. "license": [
  9308. "MIT"
  9309. ],
  9310. "authors": [
  9311. {
  9312. "name": "Jonathan Vollebregt",
  9313. "homepage": "https://github.com/jnvsor"
  9314. },
  9315. {
  9316. "name": "Rokas Šleinius",
  9317. "homepage": "https://github.com/raveren"
  9318. },
  9319. {
  9320. "name": "Contributors",
  9321. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  9322. }
  9323. ],
  9324. "description": "Kint - debugging tool for PHP developers",
  9325. "homepage": "https://kint-php.github.io/kint/",
  9326. "keywords": [
  9327. "debug",
  9328. "kint",
  9329. "php"
  9330. ],
  9331. "support": {
  9332. "issues": "https://github.com/kint-php/kint/issues",
  9333. "source": "https://github.com/kint-php/kint/tree/master"
  9334. },
  9335. "time": "2019-10-17T18:05:24+00:00"
  9336. },
  9337. {
  9338. "name": "league/container",
  9339. "version": "4.2.5",
  9340. "source": {
  9341. "type": "git",
  9342. "url": "https://github.com/thephpleague/container.git",
  9343. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  9344. },
  9345. "dist": {
  9346. "type": "zip",
  9347. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9348. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9349. "shasum": ""
  9350. },
  9351. "require": {
  9352. "php": "^7.2 || ^8.0",
  9353. "psr/container": "^1.1 || ^2.0"
  9354. },
  9355. "provide": {
  9356. "psr/container-implementation": "^1.0"
  9357. },
  9358. "replace": {
  9359. "orno/di": "~2.0"
  9360. },
  9361. "require-dev": {
  9362. "nette/php-generator": "^3.4",
  9363. "nikic/php-parser": "^4.10",
  9364. "phpstan/phpstan": "^0.12.47",
  9365. "phpunit/phpunit": "^8.5.17",
  9366. "roave/security-advisories": "dev-latest",
  9367. "scrutinizer/ocular": "^1.8",
  9368. "squizlabs/php_codesniffer": "^3.6"
  9369. },
  9370. "type": "library",
  9371. "extra": {
  9372. "branch-alias": {
  9373. "dev-1.x": "1.x-dev",
  9374. "dev-2.x": "2.x-dev",
  9375. "dev-3.x": "3.x-dev",
  9376. "dev-4.x": "4.x-dev",
  9377. "dev-master": "4.x-dev"
  9378. }
  9379. },
  9380. "autoload": {
  9381. "psr-4": {
  9382. "League\\Container\\": "src"
  9383. }
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "MIT"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Phil Bennett",
  9392. "email": "mail@philbennett.co.uk",
  9393. "role": "Developer"
  9394. }
  9395. ],
  9396. "description": "A fast and intuitive dependency injection container.",
  9397. "homepage": "https://github.com/thephpleague/container",
  9398. "keywords": [
  9399. "container",
  9400. "dependency",
  9401. "di",
  9402. "injection",
  9403. "league",
  9404. "provider",
  9405. "service"
  9406. ],
  9407. "support": {
  9408. "issues": "https://github.com/thephpleague/container/issues",
  9409. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9410. },
  9411. "funding": [
  9412. {
  9413. "url": "https://github.com/philipobenito",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2025-05-20T12:55:37+00:00"
  9418. },
  9419. {
  9420. "name": "masterminds/html5",
  9421. "version": "2.9.0",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/Masterminds/html5-php.git",
  9425. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9430. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "ext-dom": "*",
  9435. "php": ">=5.3.0"
  9436. },
  9437. "require-dev": {
  9438. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9439. },
  9440. "type": "library",
  9441. "extra": {
  9442. "branch-alias": {
  9443. "dev-master": "2.7-dev"
  9444. }
  9445. },
  9446. "autoload": {
  9447. "psr-4": {
  9448. "Masterminds\\": "src"
  9449. }
  9450. },
  9451. "notification-url": "https://packagist.org/downloads/",
  9452. "license": [
  9453. "MIT"
  9454. ],
  9455. "authors": [
  9456. {
  9457. "name": "Matt Butcher",
  9458. "email": "technosophos@gmail.com"
  9459. },
  9460. {
  9461. "name": "Matt Farina",
  9462. "email": "matt@mattfarina.com"
  9463. },
  9464. {
  9465. "name": "Asmir Mustafic",
  9466. "email": "goetas@gmail.com"
  9467. }
  9468. ],
  9469. "description": "An HTML5 parser and serializer.",
  9470. "homepage": "http://masterminds.github.io/html5-php",
  9471. "keywords": [
  9472. "HTML5",
  9473. "dom",
  9474. "html",
  9475. "parser",
  9476. "querypath",
  9477. "serializer",
  9478. "xml"
  9479. ],
  9480. "support": {
  9481. "issues": "https://github.com/Masterminds/html5-php/issues",
  9482. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9483. },
  9484. "time": "2024-03-31T07:05:07+00:00"
  9485. },
  9486. {
  9487. "name": "mck89/peast",
  9488. "version": "v1.17.2",
  9489. "source": {
  9490. "type": "git",
  9491. "url": "https://github.com/mck89/peast.git",
  9492. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea"
  9493. },
  9494. "dist": {
  9495. "type": "zip",
  9496. "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea",
  9497. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea",
  9498. "shasum": ""
  9499. },
  9500. "require": {
  9501. "ext-mbstring": "*",
  9502. "php": ">=5.4.0"
  9503. },
  9504. "require-dev": {
  9505. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-master": "1.17.2-dev"
  9511. }
  9512. },
  9513. "autoload": {
  9514. "psr-4": {
  9515. "Peast\\": "lib/Peast/"
  9516. }
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "BSD-3-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Marco Marchiò",
  9525. "email": "marco.mm89@gmail.com"
  9526. }
  9527. ],
  9528. "description": "Peast is PHP library that generates AST for JavaScript code",
  9529. "support": {
  9530. "issues": "https://github.com/mck89/peast/issues",
  9531. "source": "https://github.com/mck89/peast/tree/v1.17.2"
  9532. },
  9533. "time": "2025-07-01T09:30:45+00:00"
  9534. },
  9535. {
  9536. "name": "nikic/php-parser",
  9537. "version": "v5.6.1",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/nikic/PHP-Parser.git",
  9541. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  9546. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "ext-ctype": "*",
  9551. "ext-json": "*",
  9552. "ext-tokenizer": "*",
  9553. "php": ">=7.4"
  9554. },
  9555. "require-dev": {
  9556. "ircmaxell/php-yacc": "^0.0.7",
  9557. "phpunit/phpunit": "^9.0"
  9558. },
  9559. "bin": [
  9560. "bin/php-parse"
  9561. ],
  9562. "type": "library",
  9563. "extra": {
  9564. "branch-alias": {
  9565. "dev-master": "5.x-dev"
  9566. }
  9567. },
  9568. "autoload": {
  9569. "psr-4": {
  9570. "PhpParser\\": "lib/PhpParser"
  9571. }
  9572. },
  9573. "notification-url": "https://packagist.org/downloads/",
  9574. "license": [
  9575. "BSD-3-Clause"
  9576. ],
  9577. "authors": [
  9578. {
  9579. "name": "Nikita Popov"
  9580. }
  9581. ],
  9582. "description": "A PHP parser written in PHP",
  9583. "keywords": [
  9584. "parser",
  9585. "php"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9589. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  9590. },
  9591. "time": "2025-08-13T20:13:15+00:00"
  9592. },
  9593. {
  9594. "name": "pear/archive_tar",
  9595. "version": "1.5.0",
  9596. "source": {
  9597. "type": "git",
  9598. "url": "https://github.com/pear/Archive_Tar.git",
  9599. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  9600. },
  9601. "dist": {
  9602. "type": "zip",
  9603. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  9604. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  9605. "shasum": ""
  9606. },
  9607. "require": {
  9608. "pear/pear-core-minimal": "^1.10.0alpha2",
  9609. "php": ">=5.2.0"
  9610. },
  9611. "require-dev": {
  9612. "phpunit/phpunit": "*"
  9613. },
  9614. "suggest": {
  9615. "ext-bz2": "Bz2 compression support.",
  9616. "ext-xz": "Lzma2 compression support.",
  9617. "ext-zlib": "Gzip compression support."
  9618. },
  9619. "type": "library",
  9620. "extra": {
  9621. "branch-alias": {
  9622. "dev-master": "1.4.x-dev"
  9623. }
  9624. },
  9625. "autoload": {
  9626. "psr-0": {
  9627. "Archive_Tar": ""
  9628. }
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "include-path": [
  9632. "./"
  9633. ],
  9634. "license": [
  9635. "BSD-2-Clause"
  9636. ],
  9637. "authors": [
  9638. {
  9639. "name": "Vincent Blavet",
  9640. "email": "vincent@phpconcept.net"
  9641. },
  9642. {
  9643. "name": "Greg Beaver",
  9644. "email": "greg@chiaraquartet.net"
  9645. },
  9646. {
  9647. "name": "Michiel Rook",
  9648. "email": "mrook@php.net"
  9649. }
  9650. ],
  9651. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9652. "homepage": "https://github.com/pear/Archive_Tar",
  9653. "keywords": [
  9654. "archive",
  9655. "tar"
  9656. ],
  9657. "support": {
  9658. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9659. "source": "https://github.com/pear/Archive_Tar"
  9660. },
  9661. "time": "2024-03-16T16:21:40+00:00"
  9662. },
  9663. {
  9664. "name": "pear/console_getopt",
  9665. "version": "v1.4.3",
  9666. "source": {
  9667. "type": "git",
  9668. "url": "https://github.com/pear/Console_Getopt.git",
  9669. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9670. },
  9671. "dist": {
  9672. "type": "zip",
  9673. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9674. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9675. "shasum": ""
  9676. },
  9677. "type": "library",
  9678. "autoload": {
  9679. "psr-0": {
  9680. "Console": "./"
  9681. }
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "include-path": [
  9685. "./"
  9686. ],
  9687. "license": [
  9688. "BSD-2-Clause"
  9689. ],
  9690. "authors": [
  9691. {
  9692. "name": "Andrei Zmievski",
  9693. "email": "andrei@php.net",
  9694. "role": "Lead"
  9695. },
  9696. {
  9697. "name": "Stig Bakken",
  9698. "email": "stig@php.net",
  9699. "role": "Developer"
  9700. },
  9701. {
  9702. "name": "Greg Beaver",
  9703. "email": "cellog@php.net",
  9704. "role": "Helper"
  9705. }
  9706. ],
  9707. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9708. "support": {
  9709. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9710. "source": "https://github.com/pear/Console_Getopt"
  9711. },
  9712. "time": "2019-11-20T18:27:48+00:00"
  9713. },
  9714. {
  9715. "name": "pear/pear-core-minimal",
  9716. "version": "v1.10.16",
  9717. "source": {
  9718. "type": "git",
  9719. "url": "https://github.com/pear/pear-core-minimal.git",
  9720. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  9721. },
  9722. "dist": {
  9723. "type": "zip",
  9724. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9725. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9726. "shasum": ""
  9727. },
  9728. "require": {
  9729. "pear/console_getopt": "~1.4",
  9730. "pear/pear_exception": "~1.0",
  9731. "php": ">=5.4"
  9732. },
  9733. "replace": {
  9734. "rsky/pear-core-min": "self.version"
  9735. },
  9736. "type": "library",
  9737. "autoload": {
  9738. "classmap": [
  9739. "src/"
  9740. ]
  9741. },
  9742. "notification-url": "https://packagist.org/downloads/",
  9743. "include-path": [
  9744. "src/"
  9745. ],
  9746. "license": [
  9747. "BSD-3-Clause"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Christian Weiske",
  9752. "email": "cweiske@php.net",
  9753. "role": "Lead"
  9754. }
  9755. ],
  9756. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9757. "support": {
  9758. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9759. "source": "https://github.com/pear/pear-core-minimal"
  9760. },
  9761. "time": "2024-11-24T22:27:58+00:00"
  9762. },
  9763. {
  9764. "name": "pear/pear_exception",
  9765. "version": "v1.0.2",
  9766. "source": {
  9767. "type": "git",
  9768. "url": "https://github.com/pear/PEAR_Exception.git",
  9769. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9770. },
  9771. "dist": {
  9772. "type": "zip",
  9773. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9774. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9775. "shasum": ""
  9776. },
  9777. "require": {
  9778. "php": ">=5.2.0"
  9779. },
  9780. "require-dev": {
  9781. "phpunit/phpunit": "<9"
  9782. },
  9783. "type": "class",
  9784. "extra": {
  9785. "branch-alias": {
  9786. "dev-master": "1.0.x-dev"
  9787. }
  9788. },
  9789. "autoload": {
  9790. "classmap": [
  9791. "PEAR/"
  9792. ]
  9793. },
  9794. "notification-url": "https://packagist.org/downloads/",
  9795. "include-path": [
  9796. "."
  9797. ],
  9798. "license": [
  9799. "BSD-2-Clause"
  9800. ],
  9801. "authors": [
  9802. {
  9803. "name": "Helgi Thormar",
  9804. "email": "dufuz@php.net"
  9805. },
  9806. {
  9807. "name": "Greg Beaver",
  9808. "email": "cellog@php.net"
  9809. }
  9810. ],
  9811. "description": "The PEAR Exception base class.",
  9812. "homepage": "https://github.com/pear/PEAR_Exception",
  9813. "keywords": [
  9814. "exception"
  9815. ],
  9816. "support": {
  9817. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9818. "source": "https://github.com/pear/PEAR_Exception"
  9819. },
  9820. "time": "2021-03-21T15:43:46+00:00"
  9821. },
  9822. {
  9823. "name": "phenx/php-font-lib",
  9824. "version": "0.5.4",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/dompdf/php-font-lib.git",
  9828. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  9833. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  9834. "shasum": ""
  9835. },
  9836. "require": {
  9837. "ext-mbstring": "*"
  9838. },
  9839. "require-dev": {
  9840. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  9841. },
  9842. "type": "library",
  9843. "autoload": {
  9844. "psr-4": {
  9845. "FontLib\\": "src/FontLib"
  9846. }
  9847. },
  9848. "notification-url": "https://packagist.org/downloads/",
  9849. "license": [
  9850. "LGPL-3.0"
  9851. ],
  9852. "authors": [
  9853. {
  9854. "name": "Fabien Ménager",
  9855. "email": "fabien.menager@gmail.com"
  9856. }
  9857. ],
  9858. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9859. "homepage": "https://github.com/PhenX/php-font-lib",
  9860. "support": {
  9861. "issues": "https://github.com/dompdf/php-font-lib/issues",
  9862. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  9863. },
  9864. "time": "2021-12-17T19:44:54+00:00"
  9865. },
  9866. {
  9867. "name": "phootwork/collection",
  9868. "version": "v3.2.3",
  9869. "source": {
  9870. "type": "git",
  9871. "url": "https://github.com/phootwork/collection.git",
  9872. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9873. },
  9874. "dist": {
  9875. "type": "zip",
  9876. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9877. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9878. "shasum": ""
  9879. },
  9880. "require": {
  9881. "phootwork/lang": "^3.0",
  9882. "php": ">=8.0"
  9883. },
  9884. "type": "library",
  9885. "autoload": {
  9886. "psr-4": {
  9887. "phootwork\\collection\\": ""
  9888. }
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "MIT"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Thomas Gossmann",
  9897. "homepage": "http://gos.si"
  9898. }
  9899. ],
  9900. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9901. "homepage": "https://phootwork.github.io/collection/",
  9902. "keywords": [
  9903. "Array object",
  9904. "Text object",
  9905. "collection",
  9906. "collections",
  9907. "json",
  9908. "list",
  9909. "map",
  9910. "queue",
  9911. "set",
  9912. "stack",
  9913. "xml"
  9914. ],
  9915. "support": {
  9916. "issues": "https://github.com/phootwork/phootwork/issues",
  9917. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9918. },
  9919. "time": "2022-08-27T12:51:24+00:00"
  9920. },
  9921. {
  9922. "name": "phootwork/lang",
  9923. "version": "v3.2.3",
  9924. "source": {
  9925. "type": "git",
  9926. "url": "https://github.com/phootwork/lang.git",
  9927. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9928. },
  9929. "dist": {
  9930. "type": "zip",
  9931. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9932. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9933. "shasum": ""
  9934. },
  9935. "require": {
  9936. "php": ">=8.0",
  9937. "symfony/polyfill-mbstring": "^1.12",
  9938. "symfony/polyfill-php81": "^1.22"
  9939. },
  9940. "type": "library",
  9941. "autoload": {
  9942. "psr-4": {
  9943. "phootwork\\lang\\": ""
  9944. }
  9945. },
  9946. "notification-url": "https://packagist.org/downloads/",
  9947. "license": [
  9948. "MIT"
  9949. ],
  9950. "authors": [
  9951. {
  9952. "name": "Thomas Gossmann",
  9953. "homepage": "http://gos.si"
  9954. }
  9955. ],
  9956. "description": "Missing PHP language constructs",
  9957. "homepage": "https://phootwork.github.io/lang/",
  9958. "keywords": [
  9959. "array",
  9960. "comparator",
  9961. "comparison",
  9962. "string"
  9963. ],
  9964. "support": {
  9965. "issues": "https://github.com/phootwork/phootwork/issues",
  9966. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9967. },
  9968. "time": "2024-10-03T13:43:19+00:00"
  9969. },
  9970. {
  9971. "name": "phpmailer/phpmailer",
  9972. "version": "v6.8.1",
  9973. "source": {
  9974. "type": "git",
  9975. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9976. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  9977. },
  9978. "dist": {
  9979. "type": "zip",
  9980. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  9981. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  9982. "shasum": ""
  9983. },
  9984. "require": {
  9985. "ext-ctype": "*",
  9986. "ext-filter": "*",
  9987. "ext-hash": "*",
  9988. "php": ">=5.5.0"
  9989. },
  9990. "require-dev": {
  9991. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9992. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9993. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9994. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9995. "phpcompatibility/php-compatibility": "^9.3.5",
  9996. "roave/security-advisories": "dev-latest",
  9997. "squizlabs/php_codesniffer": "^3.7.2",
  9998. "yoast/phpunit-polyfills": "^1.0.4"
  9999. },
  10000. "suggest": {
  10001. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10002. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  10003. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  10004. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10005. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10006. "psr/log": "For optional PSR-3 debug logging",
  10007. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  10008. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  10009. },
  10010. "type": "library",
  10011. "autoload": {
  10012. "psr-4": {
  10013. "PHPMailer\\PHPMailer\\": "src/"
  10014. }
  10015. },
  10016. "notification-url": "https://packagist.org/downloads/",
  10017. "license": [
  10018. "LGPL-2.1-only"
  10019. ],
  10020. "authors": [
  10021. {
  10022. "name": "Marcus Bointon",
  10023. "email": "phpmailer@synchromedia.co.uk"
  10024. },
  10025. {
  10026. "name": "Jim Jagielski",
  10027. "email": "jimjag@gmail.com"
  10028. },
  10029. {
  10030. "name": "Andy Prevost",
  10031. "email": "codeworxtech@users.sourceforge.net"
  10032. },
  10033. {
  10034. "name": "Brent R. Matzelle"
  10035. }
  10036. ],
  10037. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10038. "support": {
  10039. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10040. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  10041. },
  10042. "funding": [
  10043. {
  10044. "url": "https://github.com/Synchro",
  10045. "type": "github"
  10046. }
  10047. ],
  10048. "time": "2023-08-29T08:26:30+00:00"
  10049. },
  10050. {
  10051. "name": "phpowermove/docblock",
  10052. "version": "v4.0",
  10053. "source": {
  10054. "type": "git",
  10055. "url": "https://github.com/phpowermove/docblock.git",
  10056. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10057. },
  10058. "dist": {
  10059. "type": "zip",
  10060. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10061. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10062. "shasum": ""
  10063. },
  10064. "require": {
  10065. "phootwork/collection": "^3.0",
  10066. "phootwork/lang": "^3.0",
  10067. "php": ">=8.0"
  10068. },
  10069. "require-dev": {
  10070. "phootwork/php-cs-fixer-config": "^0.4",
  10071. "phpunit/phpunit": "^9.0",
  10072. "psalm/phar": "^4.3"
  10073. },
  10074. "type": "library",
  10075. "autoload": {
  10076. "psr-4": {
  10077. "phpowermove\\docblock\\": "src/"
  10078. }
  10079. },
  10080. "notification-url": "https://packagist.org/downloads/",
  10081. "license": [
  10082. "MIT"
  10083. ],
  10084. "authors": [
  10085. {
  10086. "name": "Thomas Gossmann",
  10087. "homepage": "http://gos.si"
  10088. }
  10089. ],
  10090. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10091. "keywords": [
  10092. "docblock",
  10093. "generator",
  10094. "parser"
  10095. ],
  10096. "support": {
  10097. "issues": "https://github.com/phpowermove/docblock/issues",
  10098. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10099. },
  10100. "time": "2021-09-22T16:57:06+00:00"
  10101. },
  10102. {
  10103. "name": "politsin/jquery-ui-touch-punch",
  10104. "version": "1.0",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10108. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10113. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10114. "shasum": ""
  10115. },
  10116. "type": "drupal-library",
  10117. "notification-url": "https://packagist.org/downloads/",
  10118. "license": [
  10119. "MIT"
  10120. ],
  10121. "authors": [
  10122. {
  10123. "name": "Dave Furfero",
  10124. "email": "furf@furf.com"
  10125. }
  10126. ],
  10127. "description": "Extension to jQuery UI for mobile touch event support.",
  10128. "homepage": "http://touchpunch.furf.com/",
  10129. "keywords": [
  10130. "gestures",
  10131. "mobile",
  10132. "touch"
  10133. ],
  10134. "support": {
  10135. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10136. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10137. },
  10138. "time": "2020-12-15T10:26:18+00:00"
  10139. },
  10140. {
  10141. "name": "psr/cache",
  10142. "version": "3.0.0",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/php-fig/cache.git",
  10146. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10151. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10152. "shasum": ""
  10153. },
  10154. "require": {
  10155. "php": ">=8.0.0"
  10156. },
  10157. "type": "library",
  10158. "extra": {
  10159. "branch-alias": {
  10160. "dev-master": "1.0.x-dev"
  10161. }
  10162. },
  10163. "autoload": {
  10164. "psr-4": {
  10165. "Psr\\Cache\\": "src/"
  10166. }
  10167. },
  10168. "notification-url": "https://packagist.org/downloads/",
  10169. "license": [
  10170. "MIT"
  10171. ],
  10172. "authors": [
  10173. {
  10174. "name": "PHP-FIG",
  10175. "homepage": "https://www.php-fig.org/"
  10176. }
  10177. ],
  10178. "description": "Common interface for caching libraries",
  10179. "keywords": [
  10180. "cache",
  10181. "psr",
  10182. "psr-6"
  10183. ],
  10184. "support": {
  10185. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10186. },
  10187. "time": "2021-02-03T23:26:27+00:00"
  10188. },
  10189. {
  10190. "name": "psr/container",
  10191. "version": "2.0.2",
  10192. "source": {
  10193. "type": "git",
  10194. "url": "https://github.com/php-fig/container.git",
  10195. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10196. },
  10197. "dist": {
  10198. "type": "zip",
  10199. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10200. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10201. "shasum": ""
  10202. },
  10203. "require": {
  10204. "php": ">=7.4.0"
  10205. },
  10206. "type": "library",
  10207. "extra": {
  10208. "branch-alias": {
  10209. "dev-master": "2.0.x-dev"
  10210. }
  10211. },
  10212. "autoload": {
  10213. "psr-4": {
  10214. "Psr\\Container\\": "src/"
  10215. }
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "MIT"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "PHP-FIG",
  10224. "homepage": "https://www.php-fig.org/"
  10225. }
  10226. ],
  10227. "description": "Common Container Interface (PHP FIG PSR-11)",
  10228. "homepage": "https://github.com/php-fig/container",
  10229. "keywords": [
  10230. "PSR-11",
  10231. "container",
  10232. "container-interface",
  10233. "container-interop",
  10234. "psr"
  10235. ],
  10236. "support": {
  10237. "issues": "https://github.com/php-fig/container/issues",
  10238. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10239. },
  10240. "time": "2021-11-05T16:47:00+00:00"
  10241. },
  10242. {
  10243. "name": "psr/event-dispatcher",
  10244. "version": "1.0.0",
  10245. "source": {
  10246. "type": "git",
  10247. "url": "https://github.com/php-fig/event-dispatcher.git",
  10248. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10249. },
  10250. "dist": {
  10251. "type": "zip",
  10252. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10253. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10254. "shasum": ""
  10255. },
  10256. "require": {
  10257. "php": ">=7.2.0"
  10258. },
  10259. "type": "library",
  10260. "extra": {
  10261. "branch-alias": {
  10262. "dev-master": "1.0.x-dev"
  10263. }
  10264. },
  10265. "autoload": {
  10266. "psr-4": {
  10267. "Psr\\EventDispatcher\\": "src/"
  10268. }
  10269. },
  10270. "notification-url": "https://packagist.org/downloads/",
  10271. "license": [
  10272. "MIT"
  10273. ],
  10274. "authors": [
  10275. {
  10276. "name": "PHP-FIG",
  10277. "homepage": "http://www.php-fig.org/"
  10278. }
  10279. ],
  10280. "description": "Standard interfaces for event handling.",
  10281. "keywords": [
  10282. "events",
  10283. "psr",
  10284. "psr-14"
  10285. ],
  10286. "support": {
  10287. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10288. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10289. },
  10290. "time": "2019-01-08T18:20:26+00:00"
  10291. },
  10292. {
  10293. "name": "psr/http-client",
  10294. "version": "1.0.3",
  10295. "source": {
  10296. "type": "git",
  10297. "url": "https://github.com/php-fig/http-client.git",
  10298. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10299. },
  10300. "dist": {
  10301. "type": "zip",
  10302. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10303. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10304. "shasum": ""
  10305. },
  10306. "require": {
  10307. "php": "^7.0 || ^8.0",
  10308. "psr/http-message": "^1.0 || ^2.0"
  10309. },
  10310. "type": "library",
  10311. "extra": {
  10312. "branch-alias": {
  10313. "dev-master": "1.0.x-dev"
  10314. }
  10315. },
  10316. "autoload": {
  10317. "psr-4": {
  10318. "Psr\\Http\\Client\\": "src/"
  10319. }
  10320. },
  10321. "notification-url": "https://packagist.org/downloads/",
  10322. "license": [
  10323. "MIT"
  10324. ],
  10325. "authors": [
  10326. {
  10327. "name": "PHP-FIG",
  10328. "homepage": "https://www.php-fig.org/"
  10329. }
  10330. ],
  10331. "description": "Common interface for HTTP clients",
  10332. "homepage": "https://github.com/php-fig/http-client",
  10333. "keywords": [
  10334. "http",
  10335. "http-client",
  10336. "psr",
  10337. "psr-18"
  10338. ],
  10339. "support": {
  10340. "source": "https://github.com/php-fig/http-client"
  10341. },
  10342. "time": "2023-09-23T14:17:50+00:00"
  10343. },
  10344. {
  10345. "name": "psr/http-factory",
  10346. "version": "1.1.0",
  10347. "source": {
  10348. "type": "git",
  10349. "url": "https://github.com/php-fig/http-factory.git",
  10350. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10351. },
  10352. "dist": {
  10353. "type": "zip",
  10354. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10355. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10356. "shasum": ""
  10357. },
  10358. "require": {
  10359. "php": ">=7.1",
  10360. "psr/http-message": "^1.0 || ^2.0"
  10361. },
  10362. "type": "library",
  10363. "extra": {
  10364. "branch-alias": {
  10365. "dev-master": "1.0.x-dev"
  10366. }
  10367. },
  10368. "autoload": {
  10369. "psr-4": {
  10370. "Psr\\Http\\Message\\": "src/"
  10371. }
  10372. },
  10373. "notification-url": "https://packagist.org/downloads/",
  10374. "license": [
  10375. "MIT"
  10376. ],
  10377. "authors": [
  10378. {
  10379. "name": "PHP-FIG",
  10380. "homepage": "https://www.php-fig.org/"
  10381. }
  10382. ],
  10383. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10384. "keywords": [
  10385. "factory",
  10386. "http",
  10387. "message",
  10388. "psr",
  10389. "psr-17",
  10390. "psr-7",
  10391. "request",
  10392. "response"
  10393. ],
  10394. "support": {
  10395. "source": "https://github.com/php-fig/http-factory"
  10396. },
  10397. "time": "2024-04-15T12:06:14+00:00"
  10398. },
  10399. {
  10400. "name": "psr/http-message",
  10401. "version": "2.0",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/php-fig/http-message.git",
  10405. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10410. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "php": "^7.2 || ^8.0"
  10415. },
  10416. "type": "library",
  10417. "extra": {
  10418. "branch-alias": {
  10419. "dev-master": "2.0.x-dev"
  10420. }
  10421. },
  10422. "autoload": {
  10423. "psr-4": {
  10424. "Psr\\Http\\Message\\": "src/"
  10425. }
  10426. },
  10427. "notification-url": "https://packagist.org/downloads/",
  10428. "license": [
  10429. "MIT"
  10430. ],
  10431. "authors": [
  10432. {
  10433. "name": "PHP-FIG",
  10434. "homepage": "https://www.php-fig.org/"
  10435. }
  10436. ],
  10437. "description": "Common interface for HTTP messages",
  10438. "homepage": "https://github.com/php-fig/http-message",
  10439. "keywords": [
  10440. "http",
  10441. "http-message",
  10442. "psr",
  10443. "psr-7",
  10444. "request",
  10445. "response"
  10446. ],
  10447. "support": {
  10448. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10449. },
  10450. "time": "2023-04-04T09:54:51+00:00"
  10451. },
  10452. {
  10453. "name": "psr/log",
  10454. "version": "3.0.2",
  10455. "source": {
  10456. "type": "git",
  10457. "url": "https://github.com/php-fig/log.git",
  10458. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10459. },
  10460. "dist": {
  10461. "type": "zip",
  10462. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10463. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10464. "shasum": ""
  10465. },
  10466. "require": {
  10467. "php": ">=8.0.0"
  10468. },
  10469. "type": "library",
  10470. "extra": {
  10471. "branch-alias": {
  10472. "dev-master": "3.x-dev"
  10473. }
  10474. },
  10475. "autoload": {
  10476. "psr-4": {
  10477. "Psr\\Log\\": "src"
  10478. }
  10479. },
  10480. "notification-url": "https://packagist.org/downloads/",
  10481. "license": [
  10482. "MIT"
  10483. ],
  10484. "authors": [
  10485. {
  10486. "name": "PHP-FIG",
  10487. "homepage": "https://www.php-fig.org/"
  10488. }
  10489. ],
  10490. "description": "Common interface for logging libraries",
  10491. "homepage": "https://github.com/php-fig/log",
  10492. "keywords": [
  10493. "log",
  10494. "psr",
  10495. "psr-3"
  10496. ],
  10497. "support": {
  10498. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10499. },
  10500. "time": "2024-09-11T13:17:53+00:00"
  10501. },
  10502. {
  10503. "name": "psy/psysh",
  10504. "version": "v0.12.12",
  10505. "source": {
  10506. "type": "git",
  10507. "url": "https://github.com/bobthecow/psysh.git",
  10508. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7"
  10509. },
  10510. "dist": {
  10511. "type": "zip",
  10512. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7",
  10513. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7",
  10514. "shasum": ""
  10515. },
  10516. "require": {
  10517. "ext-json": "*",
  10518. "ext-tokenizer": "*",
  10519. "nikic/php-parser": "^5.0 || ^4.0",
  10520. "php": "^8.0 || ^7.4",
  10521. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10522. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10523. },
  10524. "conflict": {
  10525. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10526. },
  10527. "require-dev": {
  10528. "bamarni/composer-bin-plugin": "^1.2"
  10529. },
  10530. "suggest": {
  10531. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10532. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10533. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10534. },
  10535. "bin": [
  10536. "bin/psysh"
  10537. ],
  10538. "type": "library",
  10539. "extra": {
  10540. "bamarni-bin": {
  10541. "bin-links": false,
  10542. "forward-command": false
  10543. },
  10544. "branch-alias": {
  10545. "dev-main": "0.12.x-dev"
  10546. }
  10547. },
  10548. "autoload": {
  10549. "files": [
  10550. "src/functions.php"
  10551. ],
  10552. "psr-4": {
  10553. "Psy\\": "src/"
  10554. }
  10555. },
  10556. "notification-url": "https://packagist.org/downloads/",
  10557. "license": [
  10558. "MIT"
  10559. ],
  10560. "authors": [
  10561. {
  10562. "name": "Justin Hileman",
  10563. "email": "justin@justinhileman.info"
  10564. }
  10565. ],
  10566. "description": "An interactive shell for modern PHP.",
  10567. "homepage": "https://psysh.org",
  10568. "keywords": [
  10569. "REPL",
  10570. "console",
  10571. "interactive",
  10572. "shell"
  10573. ],
  10574. "support": {
  10575. "issues": "https://github.com/bobthecow/psysh/issues",
  10576. "source": "https://github.com/bobthecow/psysh/tree/v0.12.12"
  10577. },
  10578. "time": "2025-09-20T13:46:31+00:00"
  10579. },
  10580. {
  10581. "name": "ralouphie/getallheaders",
  10582. "version": "3.0.3",
  10583. "source": {
  10584. "type": "git",
  10585. "url": "https://github.com/ralouphie/getallheaders.git",
  10586. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10587. },
  10588. "dist": {
  10589. "type": "zip",
  10590. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10591. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10592. "shasum": ""
  10593. },
  10594. "require": {
  10595. "php": ">=5.6"
  10596. },
  10597. "require-dev": {
  10598. "php-coveralls/php-coveralls": "^2.1",
  10599. "phpunit/phpunit": "^5 || ^6.5"
  10600. },
  10601. "type": "library",
  10602. "autoload": {
  10603. "files": [
  10604. "src/getallheaders.php"
  10605. ]
  10606. },
  10607. "notification-url": "https://packagist.org/downloads/",
  10608. "license": [
  10609. "MIT"
  10610. ],
  10611. "authors": [
  10612. {
  10613. "name": "Ralph Khattar",
  10614. "email": "ralph.khattar@gmail.com"
  10615. }
  10616. ],
  10617. "description": "A polyfill for getallheaders.",
  10618. "support": {
  10619. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10620. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10621. },
  10622. "time": "2019-03-08T08:55:37+00:00"
  10623. },
  10624. {
  10625. "name": "sebastian/diff",
  10626. "version": "4.0.6",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/sebastianbergmann/diff.git",
  10630. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10635. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "php": ">=7.3"
  10640. },
  10641. "require-dev": {
  10642. "phpunit/phpunit": "^9.3",
  10643. "symfony/process": "^4.2 || ^5"
  10644. },
  10645. "type": "library",
  10646. "extra": {
  10647. "branch-alias": {
  10648. "dev-master": "4.0-dev"
  10649. }
  10650. },
  10651. "autoload": {
  10652. "classmap": [
  10653. "src/"
  10654. ]
  10655. },
  10656. "notification-url": "https://packagist.org/downloads/",
  10657. "license": [
  10658. "BSD-3-Clause"
  10659. ],
  10660. "authors": [
  10661. {
  10662. "name": "Sebastian Bergmann",
  10663. "email": "sebastian@phpunit.de"
  10664. },
  10665. {
  10666. "name": "Kore Nordmann",
  10667. "email": "mail@kore-nordmann.de"
  10668. }
  10669. ],
  10670. "description": "Diff implementation",
  10671. "homepage": "https://github.com/sebastianbergmann/diff",
  10672. "keywords": [
  10673. "diff",
  10674. "udiff",
  10675. "unidiff",
  10676. "unified diff"
  10677. ],
  10678. "support": {
  10679. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10680. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10681. },
  10682. "funding": [
  10683. {
  10684. "url": "https://github.com/sebastianbergmann",
  10685. "type": "github"
  10686. }
  10687. ],
  10688. "time": "2024-03-02T06:30:58+00:00"
  10689. },
  10690. {
  10691. "name": "stymiee/email-validator",
  10692. "version": "1.1.3",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/stymiee/email-validator.git",
  10696. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  10701. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "ext-json": "*",
  10706. "php": ">=7.2.0"
  10707. },
  10708. "require-dev": {
  10709. "nunomaduro/phpinsights": "@stable",
  10710. "phpmd/phpmd": "@stable",
  10711. "phpunit/phpunit": "^8",
  10712. "squizlabs/php_codesniffer": "3.*"
  10713. },
  10714. "type": "library",
  10715. "autoload": {
  10716. "psr-4": {
  10717. "EmailValidator\\": [
  10718. "src/EmailValidator/"
  10719. ]
  10720. }
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "Apache-2.0"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "John Conde",
  10729. "email": "stymiee@gmail.com",
  10730. "homepage": "https://stymiee.dev",
  10731. "role": "Developer"
  10732. }
  10733. ],
  10734. "description": "The Email Validator library builds upon PHP's built in filter_var($emailAddress, FILTER_VALIDATE_EMAIL); by adding a default MX record check. It also offers additional validation against disposable email addresses, free email address providers, and a custom banned domain list.",
  10735. "homepage": "https://github.com/stymiee/php-simple-encryption",
  10736. "keywords": [
  10737. "email",
  10738. "php",
  10739. "validation"
  10740. ],
  10741. "support": {
  10742. "issues": "https://github.com/stymiee/email-validator/issues",
  10743. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  10744. },
  10745. "time": "2022-10-11T19:23:13+00:00"
  10746. },
  10747. {
  10748. "name": "symfony/console",
  10749. "version": "v6.4.26",
  10750. "source": {
  10751. "type": "git",
  10752. "url": "https://github.com/symfony/console.git",
  10753. "reference": "492de6dfd93910d7d7a729c5a04ddcd2b9e99c4f"
  10754. },
  10755. "dist": {
  10756. "type": "zip",
  10757. "url": "https://api.github.com/repos/symfony/console/zipball/492de6dfd93910d7d7a729c5a04ddcd2b9e99c4f",
  10758. "reference": "492de6dfd93910d7d7a729c5a04ddcd2b9e99c4f",
  10759. "shasum": ""
  10760. },
  10761. "require": {
  10762. "php": ">=8.1",
  10763. "symfony/deprecation-contracts": "^2.5|^3",
  10764. "symfony/polyfill-mbstring": "~1.0",
  10765. "symfony/service-contracts": "^2.5|^3",
  10766. "symfony/string": "^5.4|^6.0|^7.0"
  10767. },
  10768. "conflict": {
  10769. "symfony/dependency-injection": "<5.4",
  10770. "symfony/dotenv": "<5.4",
  10771. "symfony/event-dispatcher": "<5.4",
  10772. "symfony/lock": "<5.4",
  10773. "symfony/process": "<5.4"
  10774. },
  10775. "provide": {
  10776. "psr/log-implementation": "1.0|2.0|3.0"
  10777. },
  10778. "require-dev": {
  10779. "psr/log": "^1|^2|^3",
  10780. "symfony/config": "^5.4|^6.0|^7.0",
  10781. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10782. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10783. "symfony/http-foundation": "^6.4|^7.0",
  10784. "symfony/http-kernel": "^6.4|^7.0",
  10785. "symfony/lock": "^5.4|^6.0|^7.0",
  10786. "symfony/messenger": "^5.4|^6.0|^7.0",
  10787. "symfony/process": "^5.4|^6.0|^7.0",
  10788. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10789. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10790. },
  10791. "type": "library",
  10792. "autoload": {
  10793. "psr-4": {
  10794. "Symfony\\Component\\Console\\": ""
  10795. },
  10796. "exclude-from-classmap": [
  10797. "/Tests/"
  10798. ]
  10799. },
  10800. "notification-url": "https://packagist.org/downloads/",
  10801. "license": [
  10802. "MIT"
  10803. ],
  10804. "authors": [
  10805. {
  10806. "name": "Fabien Potencier",
  10807. "email": "fabien@symfony.com"
  10808. },
  10809. {
  10810. "name": "Symfony Community",
  10811. "homepage": "https://symfony.com/contributors"
  10812. }
  10813. ],
  10814. "description": "Eases the creation of beautiful and testable command line interfaces",
  10815. "homepage": "https://symfony.com",
  10816. "keywords": [
  10817. "cli",
  10818. "command-line",
  10819. "console",
  10820. "terminal"
  10821. ],
  10822. "support": {
  10823. "source": "https://github.com/symfony/console/tree/v6.4.26"
  10824. },
  10825. "funding": [
  10826. {
  10827. "url": "https://symfony.com/sponsor",
  10828. "type": "custom"
  10829. },
  10830. {
  10831. "url": "https://github.com/fabpot",
  10832. "type": "github"
  10833. },
  10834. {
  10835. "url": "https://github.com/nicolas-grekas",
  10836. "type": "github"
  10837. },
  10838. {
  10839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10840. "type": "tidelift"
  10841. }
  10842. ],
  10843. "time": "2025-09-26T12:13:46+00:00"
  10844. },
  10845. {
  10846. "name": "symfony/dependency-injection",
  10847. "version": "v6.4.26",
  10848. "source": {
  10849. "type": "git",
  10850. "url": "https://github.com/symfony/dependency-injection.git",
  10851. "reference": "5f311eaf0b321f8ec640f6bae12da43a14026898"
  10852. },
  10853. "dist": {
  10854. "type": "zip",
  10855. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5f311eaf0b321f8ec640f6bae12da43a14026898",
  10856. "reference": "5f311eaf0b321f8ec640f6bae12da43a14026898",
  10857. "shasum": ""
  10858. },
  10859. "require": {
  10860. "php": ">=8.1",
  10861. "psr/container": "^1.1|^2.0",
  10862. "symfony/deprecation-contracts": "^2.5|^3",
  10863. "symfony/service-contracts": "^2.5|^3.0",
  10864. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10865. },
  10866. "conflict": {
  10867. "ext-psr": "<1.1|>=2",
  10868. "symfony/config": "<6.1",
  10869. "symfony/finder": "<5.4",
  10870. "symfony/proxy-manager-bridge": "<6.3",
  10871. "symfony/yaml": "<5.4"
  10872. },
  10873. "provide": {
  10874. "psr/container-implementation": "1.1|2.0",
  10875. "symfony/service-implementation": "1.1|2.0|3.0"
  10876. },
  10877. "require-dev": {
  10878. "symfony/config": "^6.1|^7.0",
  10879. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10880. "symfony/yaml": "^5.4|^6.0|^7.0"
  10881. },
  10882. "type": "library",
  10883. "autoload": {
  10884. "psr-4": {
  10885. "Symfony\\Component\\DependencyInjection\\": ""
  10886. },
  10887. "exclude-from-classmap": [
  10888. "/Tests/"
  10889. ]
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "MIT"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Fabien Potencier",
  10898. "email": "fabien@symfony.com"
  10899. },
  10900. {
  10901. "name": "Symfony Community",
  10902. "homepage": "https://symfony.com/contributors"
  10903. }
  10904. ],
  10905. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10906. "homepage": "https://symfony.com",
  10907. "support": {
  10908. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.26"
  10909. },
  10910. "funding": [
  10911. {
  10912. "url": "https://symfony.com/sponsor",
  10913. "type": "custom"
  10914. },
  10915. {
  10916. "url": "https://github.com/fabpot",
  10917. "type": "github"
  10918. },
  10919. {
  10920. "url": "https://github.com/nicolas-grekas",
  10921. "type": "github"
  10922. },
  10923. {
  10924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10925. "type": "tidelift"
  10926. }
  10927. ],
  10928. "time": "2025-09-11T09:57:09+00:00"
  10929. },
  10930. {
  10931. "name": "symfony/deprecation-contracts",
  10932. "version": "v3.5.1",
  10933. "source": {
  10934. "type": "git",
  10935. "url": "https://github.com/symfony/deprecation-contracts.git",
  10936. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  10937. },
  10938. "dist": {
  10939. "type": "zip",
  10940. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  10941. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  10942. "shasum": ""
  10943. },
  10944. "require": {
  10945. "php": ">=8.1"
  10946. },
  10947. "type": "library",
  10948. "extra": {
  10949. "thanks": {
  10950. "url": "https://github.com/symfony/contracts",
  10951. "name": "symfony/contracts"
  10952. },
  10953. "branch-alias": {
  10954. "dev-main": "3.5-dev"
  10955. }
  10956. },
  10957. "autoload": {
  10958. "files": [
  10959. "function.php"
  10960. ]
  10961. },
  10962. "notification-url": "https://packagist.org/downloads/",
  10963. "license": [
  10964. "MIT"
  10965. ],
  10966. "authors": [
  10967. {
  10968. "name": "Nicolas Grekas",
  10969. "email": "p@tchwork.com"
  10970. },
  10971. {
  10972. "name": "Symfony Community",
  10973. "homepage": "https://symfony.com/contributors"
  10974. }
  10975. ],
  10976. "description": "A generic function and convention to trigger deprecation notices",
  10977. "homepage": "https://symfony.com",
  10978. "support": {
  10979. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  10980. },
  10981. "funding": [
  10982. {
  10983. "url": "https://symfony.com/sponsor",
  10984. "type": "custom"
  10985. },
  10986. {
  10987. "url": "https://github.com/fabpot",
  10988. "type": "github"
  10989. },
  10990. {
  10991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10992. "type": "tidelift"
  10993. }
  10994. ],
  10995. "time": "2024-09-25T14:20:29+00:00"
  10996. },
  10997. {
  10998. "name": "symfony/error-handler",
  10999. "version": "v6.4.26",
  11000. "source": {
  11001. "type": "git",
  11002. "url": "https://github.com/symfony/error-handler.git",
  11003. "reference": "41bedcaec5b72640b0ec2096547b75fda72ead6c"
  11004. },
  11005. "dist": {
  11006. "type": "zip",
  11007. "url": "https://api.github.com/repos/symfony/error-handler/zipball/41bedcaec5b72640b0ec2096547b75fda72ead6c",
  11008. "reference": "41bedcaec5b72640b0ec2096547b75fda72ead6c",
  11009. "shasum": ""
  11010. },
  11011. "require": {
  11012. "php": ">=8.1",
  11013. "psr/log": "^1|^2|^3",
  11014. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11015. },
  11016. "conflict": {
  11017. "symfony/deprecation-contracts": "<2.5",
  11018. "symfony/http-kernel": "<6.4"
  11019. },
  11020. "require-dev": {
  11021. "symfony/deprecation-contracts": "^2.5|^3",
  11022. "symfony/http-kernel": "^6.4|^7.0",
  11023. "symfony/serializer": "^5.4|^6.0|^7.0"
  11024. },
  11025. "bin": [
  11026. "Resources/bin/patch-type-declarations"
  11027. ],
  11028. "type": "library",
  11029. "autoload": {
  11030. "psr-4": {
  11031. "Symfony\\Component\\ErrorHandler\\": ""
  11032. },
  11033. "exclude-from-classmap": [
  11034. "/Tests/"
  11035. ]
  11036. },
  11037. "notification-url": "https://packagist.org/downloads/",
  11038. "license": [
  11039. "MIT"
  11040. ],
  11041. "authors": [
  11042. {
  11043. "name": "Fabien Potencier",
  11044. "email": "fabien@symfony.com"
  11045. },
  11046. {
  11047. "name": "Symfony Community",
  11048. "homepage": "https://symfony.com/contributors"
  11049. }
  11050. ],
  11051. "description": "Provides tools to manage errors and ease debugging PHP code",
  11052. "homepage": "https://symfony.com",
  11053. "support": {
  11054. "source": "https://github.com/symfony/error-handler/tree/v6.4.26"
  11055. },
  11056. "funding": [
  11057. {
  11058. "url": "https://symfony.com/sponsor",
  11059. "type": "custom"
  11060. },
  11061. {
  11062. "url": "https://github.com/fabpot",
  11063. "type": "github"
  11064. },
  11065. {
  11066. "url": "https://github.com/nicolas-grekas",
  11067. "type": "github"
  11068. },
  11069. {
  11070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11071. "type": "tidelift"
  11072. }
  11073. ],
  11074. "time": "2025-09-11T09:57:09+00:00"
  11075. },
  11076. {
  11077. "name": "symfony/event-dispatcher",
  11078. "version": "v6.4.25",
  11079. "source": {
  11080. "type": "git",
  11081. "url": "https://github.com/symfony/event-dispatcher.git",
  11082. "reference": "b0cf3162020603587363f0551cd3be43958611ff"
  11083. },
  11084. "dist": {
  11085. "type": "zip",
  11086. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b0cf3162020603587363f0551cd3be43958611ff",
  11087. "reference": "b0cf3162020603587363f0551cd3be43958611ff",
  11088. "shasum": ""
  11089. },
  11090. "require": {
  11091. "php": ">=8.1",
  11092. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11093. },
  11094. "conflict": {
  11095. "symfony/dependency-injection": "<5.4",
  11096. "symfony/service-contracts": "<2.5"
  11097. },
  11098. "provide": {
  11099. "psr/event-dispatcher-implementation": "1.0",
  11100. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11101. },
  11102. "require-dev": {
  11103. "psr/log": "^1|^2|^3",
  11104. "symfony/config": "^5.4|^6.0|^7.0",
  11105. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11106. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11107. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11108. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11109. "symfony/service-contracts": "^2.5|^3",
  11110. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11111. },
  11112. "type": "library",
  11113. "autoload": {
  11114. "psr-4": {
  11115. "Symfony\\Component\\EventDispatcher\\": ""
  11116. },
  11117. "exclude-from-classmap": [
  11118. "/Tests/"
  11119. ]
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "Fabien Potencier",
  11128. "email": "fabien@symfony.com"
  11129. },
  11130. {
  11131. "name": "Symfony Community",
  11132. "homepage": "https://symfony.com/contributors"
  11133. }
  11134. ],
  11135. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11136. "homepage": "https://symfony.com",
  11137. "support": {
  11138. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.25"
  11139. },
  11140. "funding": [
  11141. {
  11142. "url": "https://symfony.com/sponsor",
  11143. "type": "custom"
  11144. },
  11145. {
  11146. "url": "https://github.com/fabpot",
  11147. "type": "github"
  11148. },
  11149. {
  11150. "url": "https://github.com/nicolas-grekas",
  11151. "type": "github"
  11152. },
  11153. {
  11154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11155. "type": "tidelift"
  11156. }
  11157. ],
  11158. "time": "2025-08-13T09:41:44+00:00"
  11159. },
  11160. {
  11161. "name": "symfony/event-dispatcher-contracts",
  11162. "version": "v3.5.1",
  11163. "source": {
  11164. "type": "git",
  11165. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11166. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11167. },
  11168. "dist": {
  11169. "type": "zip",
  11170. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11171. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11172. "shasum": ""
  11173. },
  11174. "require": {
  11175. "php": ">=8.1",
  11176. "psr/event-dispatcher": "^1"
  11177. },
  11178. "type": "library",
  11179. "extra": {
  11180. "thanks": {
  11181. "url": "https://github.com/symfony/contracts",
  11182. "name": "symfony/contracts"
  11183. },
  11184. "branch-alias": {
  11185. "dev-main": "3.5-dev"
  11186. }
  11187. },
  11188. "autoload": {
  11189. "psr-4": {
  11190. "Symfony\\Contracts\\EventDispatcher\\": ""
  11191. }
  11192. },
  11193. "notification-url": "https://packagist.org/downloads/",
  11194. "license": [
  11195. "MIT"
  11196. ],
  11197. "authors": [
  11198. {
  11199. "name": "Nicolas Grekas",
  11200. "email": "p@tchwork.com"
  11201. },
  11202. {
  11203. "name": "Symfony Community",
  11204. "homepage": "https://symfony.com/contributors"
  11205. }
  11206. ],
  11207. "description": "Generic abstractions related to dispatching event",
  11208. "homepage": "https://symfony.com",
  11209. "keywords": [
  11210. "abstractions",
  11211. "contracts",
  11212. "decoupling",
  11213. "interfaces",
  11214. "interoperability",
  11215. "standards"
  11216. ],
  11217. "support": {
  11218. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11219. },
  11220. "funding": [
  11221. {
  11222. "url": "https://symfony.com/sponsor",
  11223. "type": "custom"
  11224. },
  11225. {
  11226. "url": "https://github.com/fabpot",
  11227. "type": "github"
  11228. },
  11229. {
  11230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11231. "type": "tidelift"
  11232. }
  11233. ],
  11234. "time": "2024-09-25T14:20:29+00:00"
  11235. },
  11236. {
  11237. "name": "symfony/filesystem",
  11238. "version": "v6.4.24",
  11239. "source": {
  11240. "type": "git",
  11241. "url": "https://github.com/symfony/filesystem.git",
  11242. "reference": "75ae2edb7cdcc0c53766c30b0a2512b8df574bd8"
  11243. },
  11244. "dist": {
  11245. "type": "zip",
  11246. "url": "https://api.github.com/repos/symfony/filesystem/zipball/75ae2edb7cdcc0c53766c30b0a2512b8df574bd8",
  11247. "reference": "75ae2edb7cdcc0c53766c30b0a2512b8df574bd8",
  11248. "shasum": ""
  11249. },
  11250. "require": {
  11251. "php": ">=8.1",
  11252. "symfony/polyfill-ctype": "~1.8",
  11253. "symfony/polyfill-mbstring": "~1.8"
  11254. },
  11255. "require-dev": {
  11256. "symfony/process": "^5.4|^6.4|^7.0"
  11257. },
  11258. "type": "library",
  11259. "autoload": {
  11260. "psr-4": {
  11261. "Symfony\\Component\\Filesystem\\": ""
  11262. },
  11263. "exclude-from-classmap": [
  11264. "/Tests/"
  11265. ]
  11266. },
  11267. "notification-url": "https://packagist.org/downloads/",
  11268. "license": [
  11269. "MIT"
  11270. ],
  11271. "authors": [
  11272. {
  11273. "name": "Fabien Potencier",
  11274. "email": "fabien@symfony.com"
  11275. },
  11276. {
  11277. "name": "Symfony Community",
  11278. "homepage": "https://symfony.com/contributors"
  11279. }
  11280. ],
  11281. "description": "Provides basic utilities for the filesystem",
  11282. "homepage": "https://symfony.com",
  11283. "support": {
  11284. "source": "https://github.com/symfony/filesystem/tree/v6.4.24"
  11285. },
  11286. "funding": [
  11287. {
  11288. "url": "https://symfony.com/sponsor",
  11289. "type": "custom"
  11290. },
  11291. {
  11292. "url": "https://github.com/fabpot",
  11293. "type": "github"
  11294. },
  11295. {
  11296. "url": "https://github.com/nicolas-grekas",
  11297. "type": "github"
  11298. },
  11299. {
  11300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11301. "type": "tidelift"
  11302. }
  11303. ],
  11304. "time": "2025-07-10T08:14:14+00:00"
  11305. },
  11306. {
  11307. "name": "symfony/finder",
  11308. "version": "v6.4.24",
  11309. "source": {
  11310. "type": "git",
  11311. "url": "https://github.com/symfony/finder.git",
  11312. "reference": "73089124388c8510efb8d2d1689285d285937b08"
  11313. },
  11314. "dist": {
  11315. "type": "zip",
  11316. "url": "https://api.github.com/repos/symfony/finder/zipball/73089124388c8510efb8d2d1689285d285937b08",
  11317. "reference": "73089124388c8510efb8d2d1689285d285937b08",
  11318. "shasum": ""
  11319. },
  11320. "require": {
  11321. "php": ">=8.1"
  11322. },
  11323. "require-dev": {
  11324. "symfony/filesystem": "^6.0|^7.0"
  11325. },
  11326. "type": "library",
  11327. "autoload": {
  11328. "psr-4": {
  11329. "Symfony\\Component\\Finder\\": ""
  11330. },
  11331. "exclude-from-classmap": [
  11332. "/Tests/"
  11333. ]
  11334. },
  11335. "notification-url": "https://packagist.org/downloads/",
  11336. "license": [
  11337. "MIT"
  11338. ],
  11339. "authors": [
  11340. {
  11341. "name": "Fabien Potencier",
  11342. "email": "fabien@symfony.com"
  11343. },
  11344. {
  11345. "name": "Symfony Community",
  11346. "homepage": "https://symfony.com/contributors"
  11347. }
  11348. ],
  11349. "description": "Finds files and directories via an intuitive fluent interface",
  11350. "homepage": "https://symfony.com",
  11351. "support": {
  11352. "source": "https://github.com/symfony/finder/tree/v6.4.24"
  11353. },
  11354. "funding": [
  11355. {
  11356. "url": "https://symfony.com/sponsor",
  11357. "type": "custom"
  11358. },
  11359. {
  11360. "url": "https://github.com/fabpot",
  11361. "type": "github"
  11362. },
  11363. {
  11364. "url": "https://github.com/nicolas-grekas",
  11365. "type": "github"
  11366. },
  11367. {
  11368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11369. "type": "tidelift"
  11370. }
  11371. ],
  11372. "time": "2025-07-15T12:02:45+00:00"
  11373. },
  11374. {
  11375. "name": "symfony/http-foundation",
  11376. "version": "v6.4.26",
  11377. "source": {
  11378. "type": "git",
  11379. "url": "https://github.com/symfony/http-foundation.git",
  11380. "reference": "369241591d92bb5dfb4c6ccd6ee94378a45b1521"
  11381. },
  11382. "dist": {
  11383. "type": "zip",
  11384. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/369241591d92bb5dfb4c6ccd6ee94378a45b1521",
  11385. "reference": "369241591d92bb5dfb4c6ccd6ee94378a45b1521",
  11386. "shasum": ""
  11387. },
  11388. "require": {
  11389. "php": ">=8.1",
  11390. "symfony/deprecation-contracts": "^2.5|^3",
  11391. "symfony/polyfill-mbstring": "~1.1",
  11392. "symfony/polyfill-php83": "^1.27"
  11393. },
  11394. "conflict": {
  11395. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11396. },
  11397. "require-dev": {
  11398. "doctrine/dbal": "^2.13.1|^3|^4",
  11399. "predis/predis": "^1.1|^2.0",
  11400. "symfony/cache": "^6.4.12|^7.1.5",
  11401. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11402. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11403. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11404. "symfony/mime": "^5.4|^6.0|^7.0",
  11405. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11406. },
  11407. "type": "library",
  11408. "autoload": {
  11409. "psr-4": {
  11410. "Symfony\\Component\\HttpFoundation\\": ""
  11411. },
  11412. "exclude-from-classmap": [
  11413. "/Tests/"
  11414. ]
  11415. },
  11416. "notification-url": "https://packagist.org/downloads/",
  11417. "license": [
  11418. "MIT"
  11419. ],
  11420. "authors": [
  11421. {
  11422. "name": "Fabien Potencier",
  11423. "email": "fabien@symfony.com"
  11424. },
  11425. {
  11426. "name": "Symfony Community",
  11427. "homepage": "https://symfony.com/contributors"
  11428. }
  11429. ],
  11430. "description": "Defines an object-oriented layer for the HTTP specification",
  11431. "homepage": "https://symfony.com",
  11432. "support": {
  11433. "source": "https://github.com/symfony/http-foundation/tree/v6.4.26"
  11434. },
  11435. "funding": [
  11436. {
  11437. "url": "https://symfony.com/sponsor",
  11438. "type": "custom"
  11439. },
  11440. {
  11441. "url": "https://github.com/fabpot",
  11442. "type": "github"
  11443. },
  11444. {
  11445. "url": "https://github.com/nicolas-grekas",
  11446. "type": "github"
  11447. },
  11448. {
  11449. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11450. "type": "tidelift"
  11451. }
  11452. ],
  11453. "time": "2025-09-16T08:22:30+00:00"
  11454. },
  11455. {
  11456. "name": "symfony/http-kernel",
  11457. "version": "v6.4.26",
  11458. "source": {
  11459. "type": "git",
  11460. "url": "https://github.com/symfony/http-kernel.git",
  11461. "reference": "8b0f963293aede77593c9845c8c0af34752e893a"
  11462. },
  11463. "dist": {
  11464. "type": "zip",
  11465. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8b0f963293aede77593c9845c8c0af34752e893a",
  11466. "reference": "8b0f963293aede77593c9845c8c0af34752e893a",
  11467. "shasum": ""
  11468. },
  11469. "require": {
  11470. "php": ">=8.1",
  11471. "psr/log": "^1|^2|^3",
  11472. "symfony/deprecation-contracts": "^2.5|^3",
  11473. "symfony/error-handler": "^6.4|^7.0",
  11474. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11475. "symfony/http-foundation": "^6.4|^7.0",
  11476. "symfony/polyfill-ctype": "^1.8"
  11477. },
  11478. "conflict": {
  11479. "symfony/browser-kit": "<5.4",
  11480. "symfony/cache": "<5.4",
  11481. "symfony/config": "<6.1",
  11482. "symfony/console": "<5.4",
  11483. "symfony/dependency-injection": "<6.4",
  11484. "symfony/doctrine-bridge": "<5.4",
  11485. "symfony/form": "<5.4",
  11486. "symfony/http-client": "<5.4",
  11487. "symfony/http-client-contracts": "<2.5",
  11488. "symfony/mailer": "<5.4",
  11489. "symfony/messenger": "<5.4",
  11490. "symfony/translation": "<5.4",
  11491. "symfony/translation-contracts": "<2.5",
  11492. "symfony/twig-bridge": "<5.4",
  11493. "symfony/validator": "<6.4",
  11494. "symfony/var-dumper": "<6.3",
  11495. "twig/twig": "<2.13"
  11496. },
  11497. "provide": {
  11498. "psr/log-implementation": "1.0|2.0|3.0"
  11499. },
  11500. "require-dev": {
  11501. "psr/cache": "^1.0|^2.0|^3.0",
  11502. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11503. "symfony/clock": "^6.2|^7.0",
  11504. "symfony/config": "^6.1|^7.0",
  11505. "symfony/console": "^5.4|^6.0|^7.0",
  11506. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11507. "symfony/dependency-injection": "^6.4|^7.0",
  11508. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11509. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11510. "symfony/finder": "^5.4|^6.0|^7.0",
  11511. "symfony/http-client-contracts": "^2.5|^3",
  11512. "symfony/process": "^5.4|^6.0|^7.0",
  11513. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11514. "symfony/routing": "^5.4|^6.0|^7.0",
  11515. "symfony/serializer": "^6.4.4|^7.0.4",
  11516. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11517. "symfony/translation": "^5.4|^6.0|^7.0",
  11518. "symfony/translation-contracts": "^2.5|^3",
  11519. "symfony/uid": "^5.4|^6.0|^7.0",
  11520. "symfony/validator": "^6.4|^7.0",
  11521. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11522. "symfony/var-exporter": "^6.2|^7.0",
  11523. "twig/twig": "^2.13|^3.0.4"
  11524. },
  11525. "type": "library",
  11526. "autoload": {
  11527. "psr-4": {
  11528. "Symfony\\Component\\HttpKernel\\": ""
  11529. },
  11530. "exclude-from-classmap": [
  11531. "/Tests/"
  11532. ]
  11533. },
  11534. "notification-url": "https://packagist.org/downloads/",
  11535. "license": [
  11536. "MIT"
  11537. ],
  11538. "authors": [
  11539. {
  11540. "name": "Fabien Potencier",
  11541. "email": "fabien@symfony.com"
  11542. },
  11543. {
  11544. "name": "Symfony Community",
  11545. "homepage": "https://symfony.com/contributors"
  11546. }
  11547. ],
  11548. "description": "Provides a structured process for converting a Request into a Response",
  11549. "homepage": "https://symfony.com",
  11550. "support": {
  11551. "source": "https://github.com/symfony/http-kernel/tree/v6.4.26"
  11552. },
  11553. "funding": [
  11554. {
  11555. "url": "https://symfony.com/sponsor",
  11556. "type": "custom"
  11557. },
  11558. {
  11559. "url": "https://github.com/fabpot",
  11560. "type": "github"
  11561. },
  11562. {
  11563. "url": "https://github.com/nicolas-grekas",
  11564. "type": "github"
  11565. },
  11566. {
  11567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11568. "type": "tidelift"
  11569. }
  11570. ],
  11571. "time": "2025-09-27T12:20:56+00:00"
  11572. },
  11573. {
  11574. "name": "symfony/mailer",
  11575. "version": "v6.4.26",
  11576. "source": {
  11577. "type": "git",
  11578. "url": "https://github.com/symfony/mailer.git",
  11579. "reference": "012185cd31689b799d39505bd706be6d3a57cd3f"
  11580. },
  11581. "dist": {
  11582. "type": "zip",
  11583. "url": "https://api.github.com/repos/symfony/mailer/zipball/012185cd31689b799d39505bd706be6d3a57cd3f",
  11584. "reference": "012185cd31689b799d39505bd706be6d3a57cd3f",
  11585. "shasum": ""
  11586. },
  11587. "require": {
  11588. "egulias/email-validator": "^2.1.10|^3|^4",
  11589. "php": ">=8.1",
  11590. "psr/event-dispatcher": "^1",
  11591. "psr/log": "^1|^2|^3",
  11592. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11593. "symfony/mime": "^6.2|^7.0",
  11594. "symfony/service-contracts": "^2.5|^3"
  11595. },
  11596. "conflict": {
  11597. "symfony/http-client-contracts": "<2.5",
  11598. "symfony/http-kernel": "<5.4",
  11599. "symfony/messenger": "<6.2",
  11600. "symfony/mime": "<6.2",
  11601. "symfony/twig-bridge": "<6.2.1"
  11602. },
  11603. "require-dev": {
  11604. "symfony/console": "^5.4|^6.0|^7.0",
  11605. "symfony/http-client": "^5.4|^6.0|^7.0",
  11606. "symfony/messenger": "^6.2|^7.0",
  11607. "symfony/twig-bridge": "^6.2|^7.0"
  11608. },
  11609. "type": "library",
  11610. "autoload": {
  11611. "psr-4": {
  11612. "Symfony\\Component\\Mailer\\": ""
  11613. },
  11614. "exclude-from-classmap": [
  11615. "/Tests/"
  11616. ]
  11617. },
  11618. "notification-url": "https://packagist.org/downloads/",
  11619. "license": [
  11620. "MIT"
  11621. ],
  11622. "authors": [
  11623. {
  11624. "name": "Fabien Potencier",
  11625. "email": "fabien@symfony.com"
  11626. },
  11627. {
  11628. "name": "Symfony Community",
  11629. "homepage": "https://symfony.com/contributors"
  11630. }
  11631. ],
  11632. "description": "Helps sending emails",
  11633. "homepage": "https://symfony.com",
  11634. "support": {
  11635. "source": "https://github.com/symfony/mailer/tree/v6.4.26"
  11636. },
  11637. "funding": [
  11638. {
  11639. "url": "https://symfony.com/sponsor",
  11640. "type": "custom"
  11641. },
  11642. {
  11643. "url": "https://github.com/fabpot",
  11644. "type": "github"
  11645. },
  11646. {
  11647. "url": "https://github.com/nicolas-grekas",
  11648. "type": "github"
  11649. },
  11650. {
  11651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11652. "type": "tidelift"
  11653. }
  11654. ],
  11655. "time": "2025-09-11T09:57:09+00:00"
  11656. },
  11657. {
  11658. "name": "symfony/mime",
  11659. "version": "v6.4.26",
  11660. "source": {
  11661. "type": "git",
  11662. "url": "https://github.com/symfony/mime.git",
  11663. "reference": "61ab9681cdfe315071eb4fa79b6ad6ab030a9235"
  11664. },
  11665. "dist": {
  11666. "type": "zip",
  11667. "url": "https://api.github.com/repos/symfony/mime/zipball/61ab9681cdfe315071eb4fa79b6ad6ab030a9235",
  11668. "reference": "61ab9681cdfe315071eb4fa79b6ad6ab030a9235",
  11669. "shasum": ""
  11670. },
  11671. "require": {
  11672. "php": ">=8.1",
  11673. "symfony/deprecation-contracts": "^2.5|^3",
  11674. "symfony/polyfill-intl-idn": "^1.10",
  11675. "symfony/polyfill-mbstring": "^1.0"
  11676. },
  11677. "conflict": {
  11678. "egulias/email-validator": "~3.0.0",
  11679. "phpdocumentor/reflection-docblock": "<3.2.2",
  11680. "phpdocumentor/type-resolver": "<1.4.0",
  11681. "symfony/mailer": "<5.4",
  11682. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11683. },
  11684. "require-dev": {
  11685. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11686. "league/html-to-markdown": "^5.0",
  11687. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11688. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11689. "symfony/process": "^5.4|^6.4|^7.0",
  11690. "symfony/property-access": "^5.4|^6.0|^7.0",
  11691. "symfony/property-info": "^5.4|^6.0|^7.0",
  11692. "symfony/serializer": "^6.4.3|^7.0.3"
  11693. },
  11694. "type": "library",
  11695. "autoload": {
  11696. "psr-4": {
  11697. "Symfony\\Component\\Mime\\": ""
  11698. },
  11699. "exclude-from-classmap": [
  11700. "/Tests/"
  11701. ]
  11702. },
  11703. "notification-url": "https://packagist.org/downloads/",
  11704. "license": [
  11705. "MIT"
  11706. ],
  11707. "authors": [
  11708. {
  11709. "name": "Fabien Potencier",
  11710. "email": "fabien@symfony.com"
  11711. },
  11712. {
  11713. "name": "Symfony Community",
  11714. "homepage": "https://symfony.com/contributors"
  11715. }
  11716. ],
  11717. "description": "Allows manipulating MIME messages",
  11718. "homepage": "https://symfony.com",
  11719. "keywords": [
  11720. "mime",
  11721. "mime-type"
  11722. ],
  11723. "support": {
  11724. "source": "https://github.com/symfony/mime/tree/v6.4.26"
  11725. },
  11726. "funding": [
  11727. {
  11728. "url": "https://symfony.com/sponsor",
  11729. "type": "custom"
  11730. },
  11731. {
  11732. "url": "https://github.com/fabpot",
  11733. "type": "github"
  11734. },
  11735. {
  11736. "url": "https://github.com/nicolas-grekas",
  11737. "type": "github"
  11738. },
  11739. {
  11740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11741. "type": "tidelift"
  11742. }
  11743. ],
  11744. "time": "2025-09-16T08:22:30+00:00"
  11745. },
  11746. {
  11747. "name": "symfony/polyfill-ctype",
  11748. "version": "v1.31.0",
  11749. "source": {
  11750. "type": "git",
  11751. "url": "https://github.com/symfony/polyfill-ctype.git",
  11752. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11753. },
  11754. "dist": {
  11755. "type": "zip",
  11756. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11757. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11758. "shasum": ""
  11759. },
  11760. "require": {
  11761. "php": ">=7.2"
  11762. },
  11763. "provide": {
  11764. "ext-ctype": "*"
  11765. },
  11766. "suggest": {
  11767. "ext-ctype": "For best performance"
  11768. },
  11769. "type": "library",
  11770. "extra": {
  11771. "thanks": {
  11772. "url": "https://github.com/symfony/polyfill",
  11773. "name": "symfony/polyfill"
  11774. }
  11775. },
  11776. "autoload": {
  11777. "files": [
  11778. "bootstrap.php"
  11779. ],
  11780. "psr-4": {
  11781. "Symfony\\Polyfill\\Ctype\\": ""
  11782. }
  11783. },
  11784. "notification-url": "https://packagist.org/downloads/",
  11785. "license": [
  11786. "MIT"
  11787. ],
  11788. "authors": [
  11789. {
  11790. "name": "Gert de Pagter",
  11791. "email": "BackEndTea@gmail.com"
  11792. },
  11793. {
  11794. "name": "Symfony Community",
  11795. "homepage": "https://symfony.com/contributors"
  11796. }
  11797. ],
  11798. "description": "Symfony polyfill for ctype functions",
  11799. "homepage": "https://symfony.com",
  11800. "keywords": [
  11801. "compatibility",
  11802. "ctype",
  11803. "polyfill",
  11804. "portable"
  11805. ],
  11806. "support": {
  11807. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  11808. },
  11809. "funding": [
  11810. {
  11811. "url": "https://symfony.com/sponsor",
  11812. "type": "custom"
  11813. },
  11814. {
  11815. "url": "https://github.com/fabpot",
  11816. "type": "github"
  11817. },
  11818. {
  11819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11820. "type": "tidelift"
  11821. }
  11822. ],
  11823. "time": "2024-09-09T11:45:10+00:00"
  11824. },
  11825. {
  11826. "name": "symfony/polyfill-iconv",
  11827. "version": "v1.31.0",
  11828. "source": {
  11829. "type": "git",
  11830. "url": "https://github.com/symfony/polyfill-iconv.git",
  11831. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  11832. },
  11833. "dist": {
  11834. "type": "zip",
  11835. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  11836. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  11837. "shasum": ""
  11838. },
  11839. "require": {
  11840. "php": ">=7.2"
  11841. },
  11842. "provide": {
  11843. "ext-iconv": "*"
  11844. },
  11845. "suggest": {
  11846. "ext-iconv": "For best performance"
  11847. },
  11848. "type": "library",
  11849. "extra": {
  11850. "thanks": {
  11851. "url": "https://github.com/symfony/polyfill",
  11852. "name": "symfony/polyfill"
  11853. }
  11854. },
  11855. "autoload": {
  11856. "files": [
  11857. "bootstrap.php"
  11858. ],
  11859. "psr-4": {
  11860. "Symfony\\Polyfill\\Iconv\\": ""
  11861. }
  11862. },
  11863. "notification-url": "https://packagist.org/downloads/",
  11864. "license": [
  11865. "MIT"
  11866. ],
  11867. "authors": [
  11868. {
  11869. "name": "Nicolas Grekas",
  11870. "email": "p@tchwork.com"
  11871. },
  11872. {
  11873. "name": "Symfony Community",
  11874. "homepage": "https://symfony.com/contributors"
  11875. }
  11876. ],
  11877. "description": "Symfony polyfill for the Iconv extension",
  11878. "homepage": "https://symfony.com",
  11879. "keywords": [
  11880. "compatibility",
  11881. "iconv",
  11882. "polyfill",
  11883. "portable",
  11884. "shim"
  11885. ],
  11886. "support": {
  11887. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  11888. },
  11889. "funding": [
  11890. {
  11891. "url": "https://symfony.com/sponsor",
  11892. "type": "custom"
  11893. },
  11894. {
  11895. "url": "https://github.com/fabpot",
  11896. "type": "github"
  11897. },
  11898. {
  11899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11900. "type": "tidelift"
  11901. }
  11902. ],
  11903. "time": "2024-09-09T11:45:10+00:00"
  11904. },
  11905. {
  11906. "name": "symfony/polyfill-intl-grapheme",
  11907. "version": "v1.31.0",
  11908. "source": {
  11909. "type": "git",
  11910. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11911. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  11912. },
  11913. "dist": {
  11914. "type": "zip",
  11915. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11916. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11917. "shasum": ""
  11918. },
  11919. "require": {
  11920. "php": ">=7.2"
  11921. },
  11922. "suggest": {
  11923. "ext-intl": "For best performance"
  11924. },
  11925. "type": "library",
  11926. "extra": {
  11927. "thanks": {
  11928. "url": "https://github.com/symfony/polyfill",
  11929. "name": "symfony/polyfill"
  11930. }
  11931. },
  11932. "autoload": {
  11933. "files": [
  11934. "bootstrap.php"
  11935. ],
  11936. "psr-4": {
  11937. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11938. }
  11939. },
  11940. "notification-url": "https://packagist.org/downloads/",
  11941. "license": [
  11942. "MIT"
  11943. ],
  11944. "authors": [
  11945. {
  11946. "name": "Nicolas Grekas",
  11947. "email": "p@tchwork.com"
  11948. },
  11949. {
  11950. "name": "Symfony Community",
  11951. "homepage": "https://symfony.com/contributors"
  11952. }
  11953. ],
  11954. "description": "Symfony polyfill for intl's grapheme_* functions",
  11955. "homepage": "https://symfony.com",
  11956. "keywords": [
  11957. "compatibility",
  11958. "grapheme",
  11959. "intl",
  11960. "polyfill",
  11961. "portable",
  11962. "shim"
  11963. ],
  11964. "support": {
  11965. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  11966. },
  11967. "funding": [
  11968. {
  11969. "url": "https://symfony.com/sponsor",
  11970. "type": "custom"
  11971. },
  11972. {
  11973. "url": "https://github.com/fabpot",
  11974. "type": "github"
  11975. },
  11976. {
  11977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11978. "type": "tidelift"
  11979. }
  11980. ],
  11981. "time": "2024-09-09T11:45:10+00:00"
  11982. },
  11983. {
  11984. "name": "symfony/polyfill-intl-idn",
  11985. "version": "v1.31.0",
  11986. "source": {
  11987. "type": "git",
  11988. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11989. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  11990. },
  11991. "dist": {
  11992. "type": "zip",
  11993. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  11994. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  11995. "shasum": ""
  11996. },
  11997. "require": {
  11998. "php": ">=7.2",
  11999. "symfony/polyfill-intl-normalizer": "^1.10"
  12000. },
  12001. "suggest": {
  12002. "ext-intl": "For best performance"
  12003. },
  12004. "type": "library",
  12005. "extra": {
  12006. "thanks": {
  12007. "url": "https://github.com/symfony/polyfill",
  12008. "name": "symfony/polyfill"
  12009. }
  12010. },
  12011. "autoload": {
  12012. "files": [
  12013. "bootstrap.php"
  12014. ],
  12015. "psr-4": {
  12016. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12017. }
  12018. },
  12019. "notification-url": "https://packagist.org/downloads/",
  12020. "license": [
  12021. "MIT"
  12022. ],
  12023. "authors": [
  12024. {
  12025. "name": "Laurent Bassin",
  12026. "email": "laurent@bassin.info"
  12027. },
  12028. {
  12029. "name": "Trevor Rowbotham",
  12030. "email": "trevor.rowbotham@pm.me"
  12031. },
  12032. {
  12033. "name": "Symfony Community",
  12034. "homepage": "https://symfony.com/contributors"
  12035. }
  12036. ],
  12037. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12038. "homepage": "https://symfony.com",
  12039. "keywords": [
  12040. "compatibility",
  12041. "idn",
  12042. "intl",
  12043. "polyfill",
  12044. "portable",
  12045. "shim"
  12046. ],
  12047. "support": {
  12048. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  12049. },
  12050. "funding": [
  12051. {
  12052. "url": "https://symfony.com/sponsor",
  12053. "type": "custom"
  12054. },
  12055. {
  12056. "url": "https://github.com/fabpot",
  12057. "type": "github"
  12058. },
  12059. {
  12060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12061. "type": "tidelift"
  12062. }
  12063. ],
  12064. "time": "2024-09-09T11:45:10+00:00"
  12065. },
  12066. {
  12067. "name": "symfony/polyfill-intl-normalizer",
  12068. "version": "v1.31.0",
  12069. "source": {
  12070. "type": "git",
  12071. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12072. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12073. },
  12074. "dist": {
  12075. "type": "zip",
  12076. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12077. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12078. "shasum": ""
  12079. },
  12080. "require": {
  12081. "php": ">=7.2"
  12082. },
  12083. "suggest": {
  12084. "ext-intl": "For best performance"
  12085. },
  12086. "type": "library",
  12087. "extra": {
  12088. "thanks": {
  12089. "url": "https://github.com/symfony/polyfill",
  12090. "name": "symfony/polyfill"
  12091. }
  12092. },
  12093. "autoload": {
  12094. "files": [
  12095. "bootstrap.php"
  12096. ],
  12097. "psr-4": {
  12098. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12099. },
  12100. "classmap": [
  12101. "Resources/stubs"
  12102. ]
  12103. },
  12104. "notification-url": "https://packagist.org/downloads/",
  12105. "license": [
  12106. "MIT"
  12107. ],
  12108. "authors": [
  12109. {
  12110. "name": "Nicolas Grekas",
  12111. "email": "p@tchwork.com"
  12112. },
  12113. {
  12114. "name": "Symfony Community",
  12115. "homepage": "https://symfony.com/contributors"
  12116. }
  12117. ],
  12118. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12119. "homepage": "https://symfony.com",
  12120. "keywords": [
  12121. "compatibility",
  12122. "intl",
  12123. "normalizer",
  12124. "polyfill",
  12125. "portable",
  12126. "shim"
  12127. ],
  12128. "support": {
  12129. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  12130. },
  12131. "funding": [
  12132. {
  12133. "url": "https://symfony.com/sponsor",
  12134. "type": "custom"
  12135. },
  12136. {
  12137. "url": "https://github.com/fabpot",
  12138. "type": "github"
  12139. },
  12140. {
  12141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12142. "type": "tidelift"
  12143. }
  12144. ],
  12145. "time": "2024-09-09T11:45:10+00:00"
  12146. },
  12147. {
  12148. "name": "symfony/polyfill-mbstring",
  12149. "version": "v1.31.0",
  12150. "source": {
  12151. "type": "git",
  12152. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12153. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  12154. },
  12155. "dist": {
  12156. "type": "zip",
  12157. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12158. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12159. "shasum": ""
  12160. },
  12161. "require": {
  12162. "php": ">=7.2"
  12163. },
  12164. "provide": {
  12165. "ext-mbstring": "*"
  12166. },
  12167. "suggest": {
  12168. "ext-mbstring": "For best performance"
  12169. },
  12170. "type": "library",
  12171. "extra": {
  12172. "thanks": {
  12173. "url": "https://github.com/symfony/polyfill",
  12174. "name": "symfony/polyfill"
  12175. }
  12176. },
  12177. "autoload": {
  12178. "files": [
  12179. "bootstrap.php"
  12180. ],
  12181. "psr-4": {
  12182. "Symfony\\Polyfill\\Mbstring\\": ""
  12183. }
  12184. },
  12185. "notification-url": "https://packagist.org/downloads/",
  12186. "license": [
  12187. "MIT"
  12188. ],
  12189. "authors": [
  12190. {
  12191. "name": "Nicolas Grekas",
  12192. "email": "p@tchwork.com"
  12193. },
  12194. {
  12195. "name": "Symfony Community",
  12196. "homepage": "https://symfony.com/contributors"
  12197. }
  12198. ],
  12199. "description": "Symfony polyfill for the Mbstring extension",
  12200. "homepage": "https://symfony.com",
  12201. "keywords": [
  12202. "compatibility",
  12203. "mbstring",
  12204. "polyfill",
  12205. "portable",
  12206. "shim"
  12207. ],
  12208. "support": {
  12209. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  12210. },
  12211. "funding": [
  12212. {
  12213. "url": "https://symfony.com/sponsor",
  12214. "type": "custom"
  12215. },
  12216. {
  12217. "url": "https://github.com/fabpot",
  12218. "type": "github"
  12219. },
  12220. {
  12221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12222. "type": "tidelift"
  12223. }
  12224. ],
  12225. "time": "2024-09-09T11:45:10+00:00"
  12226. },
  12227. {
  12228. "name": "symfony/polyfill-php81",
  12229. "version": "v1.33.0",
  12230. "source": {
  12231. "type": "git",
  12232. "url": "https://github.com/symfony/polyfill-php81.git",
  12233. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12234. },
  12235. "dist": {
  12236. "type": "zip",
  12237. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12238. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12239. "shasum": ""
  12240. },
  12241. "require": {
  12242. "php": ">=7.2"
  12243. },
  12244. "type": "library",
  12245. "extra": {
  12246. "thanks": {
  12247. "url": "https://github.com/symfony/polyfill",
  12248. "name": "symfony/polyfill"
  12249. }
  12250. },
  12251. "autoload": {
  12252. "files": [
  12253. "bootstrap.php"
  12254. ],
  12255. "psr-4": {
  12256. "Symfony\\Polyfill\\Php81\\": ""
  12257. },
  12258. "classmap": [
  12259. "Resources/stubs"
  12260. ]
  12261. },
  12262. "notification-url": "https://packagist.org/downloads/",
  12263. "license": [
  12264. "MIT"
  12265. ],
  12266. "authors": [
  12267. {
  12268. "name": "Nicolas Grekas",
  12269. "email": "p@tchwork.com"
  12270. },
  12271. {
  12272. "name": "Symfony Community",
  12273. "homepage": "https://symfony.com/contributors"
  12274. }
  12275. ],
  12276. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12277. "homepage": "https://symfony.com",
  12278. "keywords": [
  12279. "compatibility",
  12280. "polyfill",
  12281. "portable",
  12282. "shim"
  12283. ],
  12284. "support": {
  12285. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12286. },
  12287. "funding": [
  12288. {
  12289. "url": "https://symfony.com/sponsor",
  12290. "type": "custom"
  12291. },
  12292. {
  12293. "url": "https://github.com/fabpot",
  12294. "type": "github"
  12295. },
  12296. {
  12297. "url": "https://github.com/nicolas-grekas",
  12298. "type": "github"
  12299. },
  12300. {
  12301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12302. "type": "tidelift"
  12303. }
  12304. ],
  12305. "time": "2024-09-09T11:45:10+00:00"
  12306. },
  12307. {
  12308. "name": "symfony/polyfill-php83",
  12309. "version": "v1.31.0",
  12310. "source": {
  12311. "type": "git",
  12312. "url": "https://github.com/symfony/polyfill-php83.git",
  12313. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  12314. },
  12315. "dist": {
  12316. "type": "zip",
  12317. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  12318. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  12319. "shasum": ""
  12320. },
  12321. "require": {
  12322. "php": ">=7.2"
  12323. },
  12324. "type": "library",
  12325. "extra": {
  12326. "thanks": {
  12327. "url": "https://github.com/symfony/polyfill",
  12328. "name": "symfony/polyfill"
  12329. }
  12330. },
  12331. "autoload": {
  12332. "files": [
  12333. "bootstrap.php"
  12334. ],
  12335. "psr-4": {
  12336. "Symfony\\Polyfill\\Php83\\": ""
  12337. },
  12338. "classmap": [
  12339. "Resources/stubs"
  12340. ]
  12341. },
  12342. "notification-url": "https://packagist.org/downloads/",
  12343. "license": [
  12344. "MIT"
  12345. ],
  12346. "authors": [
  12347. {
  12348. "name": "Nicolas Grekas",
  12349. "email": "p@tchwork.com"
  12350. },
  12351. {
  12352. "name": "Symfony Community",
  12353. "homepage": "https://symfony.com/contributors"
  12354. }
  12355. ],
  12356. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12357. "homepage": "https://symfony.com",
  12358. "keywords": [
  12359. "compatibility",
  12360. "polyfill",
  12361. "portable",
  12362. "shim"
  12363. ],
  12364. "support": {
  12365. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12366. },
  12367. "funding": [
  12368. {
  12369. "url": "https://symfony.com/sponsor",
  12370. "type": "custom"
  12371. },
  12372. {
  12373. "url": "https://github.com/fabpot",
  12374. "type": "github"
  12375. },
  12376. {
  12377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12378. "type": "tidelift"
  12379. }
  12380. ],
  12381. "time": "2024-09-09T11:45:10+00:00"
  12382. },
  12383. {
  12384. "name": "symfony/polyfill-php84",
  12385. "version": "v1.33.0",
  12386. "source": {
  12387. "type": "git",
  12388. "url": "https://github.com/symfony/polyfill-php84.git",
  12389. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12390. },
  12391. "dist": {
  12392. "type": "zip",
  12393. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12394. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12395. "shasum": ""
  12396. },
  12397. "require": {
  12398. "php": ">=7.2"
  12399. },
  12400. "type": "library",
  12401. "extra": {
  12402. "thanks": {
  12403. "url": "https://github.com/symfony/polyfill",
  12404. "name": "symfony/polyfill"
  12405. }
  12406. },
  12407. "autoload": {
  12408. "files": [
  12409. "bootstrap.php"
  12410. ],
  12411. "psr-4": {
  12412. "Symfony\\Polyfill\\Php84\\": ""
  12413. },
  12414. "classmap": [
  12415. "Resources/stubs"
  12416. ]
  12417. },
  12418. "notification-url": "https://packagist.org/downloads/",
  12419. "license": [
  12420. "MIT"
  12421. ],
  12422. "authors": [
  12423. {
  12424. "name": "Nicolas Grekas",
  12425. "email": "p@tchwork.com"
  12426. },
  12427. {
  12428. "name": "Symfony Community",
  12429. "homepage": "https://symfony.com/contributors"
  12430. }
  12431. ],
  12432. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12433. "homepage": "https://symfony.com",
  12434. "keywords": [
  12435. "compatibility",
  12436. "polyfill",
  12437. "portable",
  12438. "shim"
  12439. ],
  12440. "support": {
  12441. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12442. },
  12443. "funding": [
  12444. {
  12445. "url": "https://symfony.com/sponsor",
  12446. "type": "custom"
  12447. },
  12448. {
  12449. "url": "https://github.com/fabpot",
  12450. "type": "github"
  12451. },
  12452. {
  12453. "url": "https://github.com/nicolas-grekas",
  12454. "type": "github"
  12455. },
  12456. {
  12457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12458. "type": "tidelift"
  12459. }
  12460. ],
  12461. "time": "2025-06-24T13:30:11+00:00"
  12462. },
  12463. {
  12464. "name": "symfony/process",
  12465. "version": "v6.4.26",
  12466. "source": {
  12467. "type": "git",
  12468. "url": "https://github.com/symfony/process.git",
  12469. "reference": "48bad913268c8cafabbf7034b39c8bb24fbc5ab8"
  12470. },
  12471. "dist": {
  12472. "type": "zip",
  12473. "url": "https://api.github.com/repos/symfony/process/zipball/48bad913268c8cafabbf7034b39c8bb24fbc5ab8",
  12474. "reference": "48bad913268c8cafabbf7034b39c8bb24fbc5ab8",
  12475. "shasum": ""
  12476. },
  12477. "require": {
  12478. "php": ">=8.1"
  12479. },
  12480. "type": "library",
  12481. "autoload": {
  12482. "psr-4": {
  12483. "Symfony\\Component\\Process\\": ""
  12484. },
  12485. "exclude-from-classmap": [
  12486. "/Tests/"
  12487. ]
  12488. },
  12489. "notification-url": "https://packagist.org/downloads/",
  12490. "license": [
  12491. "MIT"
  12492. ],
  12493. "authors": [
  12494. {
  12495. "name": "Fabien Potencier",
  12496. "email": "fabien@symfony.com"
  12497. },
  12498. {
  12499. "name": "Symfony Community",
  12500. "homepage": "https://symfony.com/contributors"
  12501. }
  12502. ],
  12503. "description": "Executes commands in sub-processes",
  12504. "homepage": "https://symfony.com",
  12505. "support": {
  12506. "source": "https://github.com/symfony/process/tree/v6.4.26"
  12507. },
  12508. "funding": [
  12509. {
  12510. "url": "https://symfony.com/sponsor",
  12511. "type": "custom"
  12512. },
  12513. {
  12514. "url": "https://github.com/fabpot",
  12515. "type": "github"
  12516. },
  12517. {
  12518. "url": "https://github.com/nicolas-grekas",
  12519. "type": "github"
  12520. },
  12521. {
  12522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12523. "type": "tidelift"
  12524. }
  12525. ],
  12526. "time": "2025-09-11T09:57:09+00:00"
  12527. },
  12528. {
  12529. "name": "symfony/psr-http-message-bridge",
  12530. "version": "v6.4.24",
  12531. "source": {
  12532. "type": "git",
  12533. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12534. "reference": "6954b4e8aef0e5d46f8558c90edcf27bb01b4724"
  12535. },
  12536. "dist": {
  12537. "type": "zip",
  12538. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/6954b4e8aef0e5d46f8558c90edcf27bb01b4724",
  12539. "reference": "6954b4e8aef0e5d46f8558c90edcf27bb01b4724",
  12540. "shasum": ""
  12541. },
  12542. "require": {
  12543. "php": ">=8.1",
  12544. "psr/http-message": "^1.0|^2.0",
  12545. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12546. },
  12547. "conflict": {
  12548. "php-http/discovery": "<1.15",
  12549. "symfony/http-kernel": "<6.2"
  12550. },
  12551. "require-dev": {
  12552. "nyholm/psr7": "^1.1",
  12553. "php-http/discovery": "^1.15",
  12554. "psr/log": "^1.1.4|^2|^3",
  12555. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12556. "symfony/config": "^5.4|^6.0|^7.0",
  12557. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12558. "symfony/framework-bundle": "^6.2|^7.0",
  12559. "symfony/http-kernel": "^6.2|^7.0"
  12560. },
  12561. "type": "symfony-bridge",
  12562. "autoload": {
  12563. "psr-4": {
  12564. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12565. },
  12566. "exclude-from-classmap": [
  12567. "/Tests/"
  12568. ]
  12569. },
  12570. "notification-url": "https://packagist.org/downloads/",
  12571. "license": [
  12572. "MIT"
  12573. ],
  12574. "authors": [
  12575. {
  12576. "name": "Fabien Potencier",
  12577. "email": "fabien@symfony.com"
  12578. },
  12579. {
  12580. "name": "Symfony Community",
  12581. "homepage": "https://symfony.com/contributors"
  12582. }
  12583. ],
  12584. "description": "PSR HTTP message bridge",
  12585. "homepage": "https://symfony.com",
  12586. "keywords": [
  12587. "http",
  12588. "http-message",
  12589. "psr-17",
  12590. "psr-7"
  12591. ],
  12592. "support": {
  12593. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.24"
  12594. },
  12595. "funding": [
  12596. {
  12597. "url": "https://symfony.com/sponsor",
  12598. "type": "custom"
  12599. },
  12600. {
  12601. "url": "https://github.com/fabpot",
  12602. "type": "github"
  12603. },
  12604. {
  12605. "url": "https://github.com/nicolas-grekas",
  12606. "type": "github"
  12607. },
  12608. {
  12609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12610. "type": "tidelift"
  12611. }
  12612. ],
  12613. "time": "2025-07-10T08:14:14+00:00"
  12614. },
  12615. {
  12616. "name": "symfony/routing",
  12617. "version": "v6.4.26",
  12618. "source": {
  12619. "type": "git",
  12620. "url": "https://github.com/symfony/routing.git",
  12621. "reference": "6fc4c445f22857d4b8b40a02b73f423ddab295de"
  12622. },
  12623. "dist": {
  12624. "type": "zip",
  12625. "url": "https://api.github.com/repos/symfony/routing/zipball/6fc4c445f22857d4b8b40a02b73f423ddab295de",
  12626. "reference": "6fc4c445f22857d4b8b40a02b73f423ddab295de",
  12627. "shasum": ""
  12628. },
  12629. "require": {
  12630. "php": ">=8.1",
  12631. "symfony/deprecation-contracts": "^2.5|^3"
  12632. },
  12633. "conflict": {
  12634. "doctrine/annotations": "<1.12",
  12635. "symfony/config": "<6.2",
  12636. "symfony/dependency-injection": "<5.4",
  12637. "symfony/yaml": "<5.4"
  12638. },
  12639. "require-dev": {
  12640. "doctrine/annotations": "^1.12|^2",
  12641. "psr/log": "^1|^2|^3",
  12642. "symfony/config": "^6.2|^7.0",
  12643. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12644. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12645. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12646. "symfony/yaml": "^5.4|^6.0|^7.0"
  12647. },
  12648. "type": "library",
  12649. "autoload": {
  12650. "psr-4": {
  12651. "Symfony\\Component\\Routing\\": ""
  12652. },
  12653. "exclude-from-classmap": [
  12654. "/Tests/"
  12655. ]
  12656. },
  12657. "notification-url": "https://packagist.org/downloads/",
  12658. "license": [
  12659. "MIT"
  12660. ],
  12661. "authors": [
  12662. {
  12663. "name": "Fabien Potencier",
  12664. "email": "fabien@symfony.com"
  12665. },
  12666. {
  12667. "name": "Symfony Community",
  12668. "homepage": "https://symfony.com/contributors"
  12669. }
  12670. ],
  12671. "description": "Maps an HTTP request to a set of configuration variables",
  12672. "homepage": "https://symfony.com",
  12673. "keywords": [
  12674. "router",
  12675. "routing",
  12676. "uri",
  12677. "url"
  12678. ],
  12679. "support": {
  12680. "source": "https://github.com/symfony/routing/tree/v6.4.26"
  12681. },
  12682. "funding": [
  12683. {
  12684. "url": "https://symfony.com/sponsor",
  12685. "type": "custom"
  12686. },
  12687. {
  12688. "url": "https://github.com/fabpot",
  12689. "type": "github"
  12690. },
  12691. {
  12692. "url": "https://github.com/nicolas-grekas",
  12693. "type": "github"
  12694. },
  12695. {
  12696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12697. "type": "tidelift"
  12698. }
  12699. ],
  12700. "time": "2025-09-11T09:57:09+00:00"
  12701. },
  12702. {
  12703. "name": "symfony/serializer",
  12704. "version": "v6.4.26",
  12705. "source": {
  12706. "type": "git",
  12707. "url": "https://github.com/symfony/serializer.git",
  12708. "reference": "48d0477483614d615aa1d5e5d90a45e4c7bfa2c9"
  12709. },
  12710. "dist": {
  12711. "type": "zip",
  12712. "url": "https://api.github.com/repos/symfony/serializer/zipball/48d0477483614d615aa1d5e5d90a45e4c7bfa2c9",
  12713. "reference": "48d0477483614d615aa1d5e5d90a45e4c7bfa2c9",
  12714. "shasum": ""
  12715. },
  12716. "require": {
  12717. "php": ">=8.1",
  12718. "symfony/deprecation-contracts": "^2.5|^3",
  12719. "symfony/polyfill-ctype": "~1.8"
  12720. },
  12721. "conflict": {
  12722. "doctrine/annotations": "<1.12",
  12723. "phpdocumentor/reflection-docblock": "<3.2.2",
  12724. "phpdocumentor/type-resolver": "<1.4.0",
  12725. "symfony/dependency-injection": "<5.4",
  12726. "symfony/property-access": "<5.4",
  12727. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12728. "symfony/uid": "<5.4",
  12729. "symfony/validator": "<6.4",
  12730. "symfony/yaml": "<5.4"
  12731. },
  12732. "require-dev": {
  12733. "doctrine/annotations": "^1.12|^2",
  12734. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12735. "seld/jsonlint": "^1.10",
  12736. "symfony/cache": "^5.4|^6.0|^7.0",
  12737. "symfony/config": "^5.4|^6.0|^7.0",
  12738. "symfony/console": "^5.4|^6.0|^7.0",
  12739. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12740. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12741. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12742. "symfony/form": "^5.4|^6.0|^7.0",
  12743. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12744. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12745. "symfony/messenger": "^5.4|^6.0|^7.0",
  12746. "symfony/mime": "^5.4|^6.0|^7.0",
  12747. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12748. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12749. "symfony/translation-contracts": "^2.5|^3",
  12750. "symfony/uid": "^5.4|^6.0|^7.0",
  12751. "symfony/validator": "^6.4|^7.0",
  12752. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12753. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12754. "symfony/yaml": "^5.4|^6.0|^7.0"
  12755. },
  12756. "type": "library",
  12757. "autoload": {
  12758. "psr-4": {
  12759. "Symfony\\Component\\Serializer\\": ""
  12760. },
  12761. "exclude-from-classmap": [
  12762. "/Tests/"
  12763. ]
  12764. },
  12765. "notification-url": "https://packagist.org/downloads/",
  12766. "license": [
  12767. "MIT"
  12768. ],
  12769. "authors": [
  12770. {
  12771. "name": "Fabien Potencier",
  12772. "email": "fabien@symfony.com"
  12773. },
  12774. {
  12775. "name": "Symfony Community",
  12776. "homepage": "https://symfony.com/contributors"
  12777. }
  12778. ],
  12779. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12780. "homepage": "https://symfony.com",
  12781. "support": {
  12782. "source": "https://github.com/symfony/serializer/tree/v6.4.26"
  12783. },
  12784. "funding": [
  12785. {
  12786. "url": "https://symfony.com/sponsor",
  12787. "type": "custom"
  12788. },
  12789. {
  12790. "url": "https://github.com/fabpot",
  12791. "type": "github"
  12792. },
  12793. {
  12794. "url": "https://github.com/nicolas-grekas",
  12795. "type": "github"
  12796. },
  12797. {
  12798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12799. "type": "tidelift"
  12800. }
  12801. ],
  12802. "time": "2025-09-15T13:37:27+00:00"
  12803. },
  12804. {
  12805. "name": "symfony/service-contracts",
  12806. "version": "v3.5.1",
  12807. "source": {
  12808. "type": "git",
  12809. "url": "https://github.com/symfony/service-contracts.git",
  12810. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  12811. },
  12812. "dist": {
  12813. "type": "zip",
  12814. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12815. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12816. "shasum": ""
  12817. },
  12818. "require": {
  12819. "php": ">=8.1",
  12820. "psr/container": "^1.1|^2.0",
  12821. "symfony/deprecation-contracts": "^2.5|^3"
  12822. },
  12823. "conflict": {
  12824. "ext-psr": "<1.1|>=2"
  12825. },
  12826. "type": "library",
  12827. "extra": {
  12828. "thanks": {
  12829. "url": "https://github.com/symfony/contracts",
  12830. "name": "symfony/contracts"
  12831. },
  12832. "branch-alias": {
  12833. "dev-main": "3.5-dev"
  12834. }
  12835. },
  12836. "autoload": {
  12837. "psr-4": {
  12838. "Symfony\\Contracts\\Service\\": ""
  12839. },
  12840. "exclude-from-classmap": [
  12841. "/Test/"
  12842. ]
  12843. },
  12844. "notification-url": "https://packagist.org/downloads/",
  12845. "license": [
  12846. "MIT"
  12847. ],
  12848. "authors": [
  12849. {
  12850. "name": "Nicolas Grekas",
  12851. "email": "p@tchwork.com"
  12852. },
  12853. {
  12854. "name": "Symfony Community",
  12855. "homepage": "https://symfony.com/contributors"
  12856. }
  12857. ],
  12858. "description": "Generic abstractions related to writing services",
  12859. "homepage": "https://symfony.com",
  12860. "keywords": [
  12861. "abstractions",
  12862. "contracts",
  12863. "decoupling",
  12864. "interfaces",
  12865. "interoperability",
  12866. "standards"
  12867. ],
  12868. "support": {
  12869. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  12870. },
  12871. "funding": [
  12872. {
  12873. "url": "https://symfony.com/sponsor",
  12874. "type": "custom"
  12875. },
  12876. {
  12877. "url": "https://github.com/fabpot",
  12878. "type": "github"
  12879. },
  12880. {
  12881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12882. "type": "tidelift"
  12883. }
  12884. ],
  12885. "time": "2024-09-25T14:20:29+00:00"
  12886. },
  12887. {
  12888. "name": "symfony/string",
  12889. "version": "v6.4.26",
  12890. "source": {
  12891. "type": "git",
  12892. "url": "https://github.com/symfony/string.git",
  12893. "reference": "5621f039a71a11c87c106c1c598bdcd04a19aeea"
  12894. },
  12895. "dist": {
  12896. "type": "zip",
  12897. "url": "https://api.github.com/repos/symfony/string/zipball/5621f039a71a11c87c106c1c598bdcd04a19aeea",
  12898. "reference": "5621f039a71a11c87c106c1c598bdcd04a19aeea",
  12899. "shasum": ""
  12900. },
  12901. "require": {
  12902. "php": ">=8.1",
  12903. "symfony/polyfill-ctype": "~1.8",
  12904. "symfony/polyfill-intl-grapheme": "~1.0",
  12905. "symfony/polyfill-intl-normalizer": "~1.0",
  12906. "symfony/polyfill-mbstring": "~1.0"
  12907. },
  12908. "conflict": {
  12909. "symfony/translation-contracts": "<2.5"
  12910. },
  12911. "require-dev": {
  12912. "symfony/http-client": "^5.4|^6.0|^7.0",
  12913. "symfony/intl": "^6.2|^7.0",
  12914. "symfony/translation-contracts": "^2.5|^3.0",
  12915. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12916. },
  12917. "type": "library",
  12918. "autoload": {
  12919. "files": [
  12920. "Resources/functions.php"
  12921. ],
  12922. "psr-4": {
  12923. "Symfony\\Component\\String\\": ""
  12924. },
  12925. "exclude-from-classmap": [
  12926. "/Tests/"
  12927. ]
  12928. },
  12929. "notification-url": "https://packagist.org/downloads/",
  12930. "license": [
  12931. "MIT"
  12932. ],
  12933. "authors": [
  12934. {
  12935. "name": "Nicolas Grekas",
  12936. "email": "p@tchwork.com"
  12937. },
  12938. {
  12939. "name": "Symfony Community",
  12940. "homepage": "https://symfony.com/contributors"
  12941. }
  12942. ],
  12943. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12944. "homepage": "https://symfony.com",
  12945. "keywords": [
  12946. "grapheme",
  12947. "i18n",
  12948. "string",
  12949. "unicode",
  12950. "utf-8",
  12951. "utf8"
  12952. ],
  12953. "support": {
  12954. "source": "https://github.com/symfony/string/tree/v6.4.26"
  12955. },
  12956. "funding": [
  12957. {
  12958. "url": "https://symfony.com/sponsor",
  12959. "type": "custom"
  12960. },
  12961. {
  12962. "url": "https://github.com/fabpot",
  12963. "type": "github"
  12964. },
  12965. {
  12966. "url": "https://github.com/nicolas-grekas",
  12967. "type": "github"
  12968. },
  12969. {
  12970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12971. "type": "tidelift"
  12972. }
  12973. ],
  12974. "time": "2025-09-11T14:32:46+00:00"
  12975. },
  12976. {
  12977. "name": "symfony/translation-contracts",
  12978. "version": "v3.5.1",
  12979. "source": {
  12980. "type": "git",
  12981. "url": "https://github.com/symfony/translation-contracts.git",
  12982. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  12983. },
  12984. "dist": {
  12985. "type": "zip",
  12986. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  12987. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  12988. "shasum": ""
  12989. },
  12990. "require": {
  12991. "php": ">=8.1"
  12992. },
  12993. "type": "library",
  12994. "extra": {
  12995. "thanks": {
  12996. "url": "https://github.com/symfony/contracts",
  12997. "name": "symfony/contracts"
  12998. },
  12999. "branch-alias": {
  13000. "dev-main": "3.5-dev"
  13001. }
  13002. },
  13003. "autoload": {
  13004. "psr-4": {
  13005. "Symfony\\Contracts\\Translation\\": ""
  13006. },
  13007. "exclude-from-classmap": [
  13008. "/Test/"
  13009. ]
  13010. },
  13011. "notification-url": "https://packagist.org/downloads/",
  13012. "license": [
  13013. "MIT"
  13014. ],
  13015. "authors": [
  13016. {
  13017. "name": "Nicolas Grekas",
  13018. "email": "p@tchwork.com"
  13019. },
  13020. {
  13021. "name": "Symfony Community",
  13022. "homepage": "https://symfony.com/contributors"
  13023. }
  13024. ],
  13025. "description": "Generic abstractions related to translation",
  13026. "homepage": "https://symfony.com",
  13027. "keywords": [
  13028. "abstractions",
  13029. "contracts",
  13030. "decoupling",
  13031. "interfaces",
  13032. "interoperability",
  13033. "standards"
  13034. ],
  13035. "support": {
  13036. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  13037. },
  13038. "funding": [
  13039. {
  13040. "url": "https://symfony.com/sponsor",
  13041. "type": "custom"
  13042. },
  13043. {
  13044. "url": "https://github.com/fabpot",
  13045. "type": "github"
  13046. },
  13047. {
  13048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13049. "type": "tidelift"
  13050. }
  13051. ],
  13052. "time": "2024-09-25T14:20:29+00:00"
  13053. },
  13054. {
  13055. "name": "symfony/validator",
  13056. "version": "v6.4.26",
  13057. "source": {
  13058. "type": "git",
  13059. "url": "https://github.com/symfony/validator.git",
  13060. "reference": "3ed456b3cd04e61fc7ed2601805fee3c1130663a"
  13061. },
  13062. "dist": {
  13063. "type": "zip",
  13064. "url": "https://api.github.com/repos/symfony/validator/zipball/3ed456b3cd04e61fc7ed2601805fee3c1130663a",
  13065. "reference": "3ed456b3cd04e61fc7ed2601805fee3c1130663a",
  13066. "shasum": ""
  13067. },
  13068. "require": {
  13069. "php": ">=8.1",
  13070. "symfony/deprecation-contracts": "^2.5|^3",
  13071. "symfony/polyfill-ctype": "~1.8",
  13072. "symfony/polyfill-mbstring": "~1.0",
  13073. "symfony/polyfill-php83": "^1.27",
  13074. "symfony/translation-contracts": "^2.5|^3"
  13075. },
  13076. "conflict": {
  13077. "doctrine/annotations": "<1.13",
  13078. "doctrine/lexer": "<1.1",
  13079. "symfony/dependency-injection": "<5.4",
  13080. "symfony/expression-language": "<5.4",
  13081. "symfony/http-kernel": "<5.4",
  13082. "symfony/intl": "<5.4",
  13083. "symfony/property-info": "<5.4",
  13084. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13085. "symfony/yaml": "<5.4"
  13086. },
  13087. "require-dev": {
  13088. "doctrine/annotations": "^1.13|^2",
  13089. "egulias/email-validator": "^2.1.10|^3|^4",
  13090. "symfony/cache": "^5.4|^6.0|^7.0",
  13091. "symfony/config": "^5.4|^6.0|^7.0",
  13092. "symfony/console": "^5.4|^6.0|^7.0",
  13093. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13094. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13095. "symfony/finder": "^5.4|^6.0|^7.0",
  13096. "symfony/http-client": "^5.4|^6.0|^7.0",
  13097. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13098. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13099. "symfony/intl": "^5.4|^6.0|^7.0",
  13100. "symfony/mime": "^5.4|^6.0|^7.0",
  13101. "symfony/property-access": "^5.4|^6.0|^7.0",
  13102. "symfony/property-info": "^5.4|^6.0|^7.0",
  13103. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13104. "symfony/yaml": "^5.4|^6.0|^7.0"
  13105. },
  13106. "type": "library",
  13107. "autoload": {
  13108. "psr-4": {
  13109. "Symfony\\Component\\Validator\\": ""
  13110. },
  13111. "exclude-from-classmap": [
  13112. "/Tests/",
  13113. "/Resources/bin/"
  13114. ]
  13115. },
  13116. "notification-url": "https://packagist.org/downloads/",
  13117. "license": [
  13118. "MIT"
  13119. ],
  13120. "authors": [
  13121. {
  13122. "name": "Fabien Potencier",
  13123. "email": "fabien@symfony.com"
  13124. },
  13125. {
  13126. "name": "Symfony Community",
  13127. "homepage": "https://symfony.com/contributors"
  13128. }
  13129. ],
  13130. "description": "Provides tools to validate values",
  13131. "homepage": "https://symfony.com",
  13132. "support": {
  13133. "source": "https://github.com/symfony/validator/tree/v6.4.26"
  13134. },
  13135. "funding": [
  13136. {
  13137. "url": "https://symfony.com/sponsor",
  13138. "type": "custom"
  13139. },
  13140. {
  13141. "url": "https://github.com/fabpot",
  13142. "type": "github"
  13143. },
  13144. {
  13145. "url": "https://github.com/nicolas-grekas",
  13146. "type": "github"
  13147. },
  13148. {
  13149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13150. "type": "tidelift"
  13151. }
  13152. ],
  13153. "time": "2025-09-25T15:37:27+00:00"
  13154. },
  13155. {
  13156. "name": "symfony/var-dumper",
  13157. "version": "v6.4.26",
  13158. "source": {
  13159. "type": "git",
  13160. "url": "https://github.com/symfony/var-dumper.git",
  13161. "reference": "cfae1497a2f1eaad78dbc0590311c599c7178d4a"
  13162. },
  13163. "dist": {
  13164. "type": "zip",
  13165. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cfae1497a2f1eaad78dbc0590311c599c7178d4a",
  13166. "reference": "cfae1497a2f1eaad78dbc0590311c599c7178d4a",
  13167. "shasum": ""
  13168. },
  13169. "require": {
  13170. "php": ">=8.1",
  13171. "symfony/deprecation-contracts": "^2.5|^3",
  13172. "symfony/polyfill-mbstring": "~1.0"
  13173. },
  13174. "conflict": {
  13175. "symfony/console": "<5.4"
  13176. },
  13177. "require-dev": {
  13178. "symfony/console": "^5.4|^6.0|^7.0",
  13179. "symfony/error-handler": "^6.3|^7.0",
  13180. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13181. "symfony/process": "^5.4|^6.0|^7.0",
  13182. "symfony/uid": "^5.4|^6.0|^7.0",
  13183. "twig/twig": "^2.13|^3.0.4"
  13184. },
  13185. "bin": [
  13186. "Resources/bin/var-dump-server"
  13187. ],
  13188. "type": "library",
  13189. "autoload": {
  13190. "files": [
  13191. "Resources/functions/dump.php"
  13192. ],
  13193. "psr-4": {
  13194. "Symfony\\Component\\VarDumper\\": ""
  13195. },
  13196. "exclude-from-classmap": [
  13197. "/Tests/"
  13198. ]
  13199. },
  13200. "notification-url": "https://packagist.org/downloads/",
  13201. "license": [
  13202. "MIT"
  13203. ],
  13204. "authors": [
  13205. {
  13206. "name": "Nicolas Grekas",
  13207. "email": "p@tchwork.com"
  13208. },
  13209. {
  13210. "name": "Symfony Community",
  13211. "homepage": "https://symfony.com/contributors"
  13212. }
  13213. ],
  13214. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13215. "homepage": "https://symfony.com",
  13216. "keywords": [
  13217. "debug",
  13218. "dump"
  13219. ],
  13220. "support": {
  13221. "source": "https://github.com/symfony/var-dumper/tree/v6.4.26"
  13222. },
  13223. "funding": [
  13224. {
  13225. "url": "https://symfony.com/sponsor",
  13226. "type": "custom"
  13227. },
  13228. {
  13229. "url": "https://github.com/fabpot",
  13230. "type": "github"
  13231. },
  13232. {
  13233. "url": "https://github.com/nicolas-grekas",
  13234. "type": "github"
  13235. },
  13236. {
  13237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13238. "type": "tidelift"
  13239. }
  13240. ],
  13241. "time": "2025-09-25T15:37:27+00:00"
  13242. },
  13243. {
  13244. "name": "symfony/var-exporter",
  13245. "version": "v6.4.26",
  13246. "source": {
  13247. "type": "git",
  13248. "url": "https://github.com/symfony/var-exporter.git",
  13249. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13250. },
  13251. "dist": {
  13252. "type": "zip",
  13253. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13254. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13255. "shasum": ""
  13256. },
  13257. "require": {
  13258. "php": ">=8.1",
  13259. "symfony/deprecation-contracts": "^2.5|^3"
  13260. },
  13261. "require-dev": {
  13262. "symfony/property-access": "^6.4|^7.0",
  13263. "symfony/serializer": "^6.4|^7.0",
  13264. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13265. },
  13266. "type": "library",
  13267. "autoload": {
  13268. "psr-4": {
  13269. "Symfony\\Component\\VarExporter\\": ""
  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": "Allows exporting any serializable PHP data structure to plain PHP code",
  13290. "homepage": "https://symfony.com",
  13291. "keywords": [
  13292. "clone",
  13293. "construct",
  13294. "export",
  13295. "hydrate",
  13296. "instantiate",
  13297. "lazy-loading",
  13298. "proxy",
  13299. "serialize"
  13300. ],
  13301. "support": {
  13302. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13303. },
  13304. "funding": [
  13305. {
  13306. "url": "https://symfony.com/sponsor",
  13307. "type": "custom"
  13308. },
  13309. {
  13310. "url": "https://github.com/fabpot",
  13311. "type": "github"
  13312. },
  13313. {
  13314. "url": "https://github.com/nicolas-grekas",
  13315. "type": "github"
  13316. },
  13317. {
  13318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13319. "type": "tidelift"
  13320. }
  13321. ],
  13322. "time": "2025-09-11T09:57:09+00:00"
  13323. },
  13324. {
  13325. "name": "symfony/yaml",
  13326. "version": "v6.4.26",
  13327. "source": {
  13328. "type": "git",
  13329. "url": "https://github.com/symfony/yaml.git",
  13330. "reference": "0fc8b966fd0dcaab544ae59bfc3a433f048c17b0"
  13331. },
  13332. "dist": {
  13333. "type": "zip",
  13334. "url": "https://api.github.com/repos/symfony/yaml/zipball/0fc8b966fd0dcaab544ae59bfc3a433f048c17b0",
  13335. "reference": "0fc8b966fd0dcaab544ae59bfc3a433f048c17b0",
  13336. "shasum": ""
  13337. },
  13338. "require": {
  13339. "php": ">=8.1",
  13340. "symfony/deprecation-contracts": "^2.5|^3",
  13341. "symfony/polyfill-ctype": "^1.8"
  13342. },
  13343. "conflict": {
  13344. "symfony/console": "<5.4"
  13345. },
  13346. "require-dev": {
  13347. "symfony/console": "^5.4|^6.0|^7.0"
  13348. },
  13349. "bin": [
  13350. "Resources/bin/yaml-lint"
  13351. ],
  13352. "type": "library",
  13353. "autoload": {
  13354. "psr-4": {
  13355. "Symfony\\Component\\Yaml\\": ""
  13356. },
  13357. "exclude-from-classmap": [
  13358. "/Tests/"
  13359. ]
  13360. },
  13361. "notification-url": "https://packagist.org/downloads/",
  13362. "license": [
  13363. "MIT"
  13364. ],
  13365. "authors": [
  13366. {
  13367. "name": "Fabien Potencier",
  13368. "email": "fabien@symfony.com"
  13369. },
  13370. {
  13371. "name": "Symfony Community",
  13372. "homepage": "https://symfony.com/contributors"
  13373. }
  13374. ],
  13375. "description": "Loads and dumps YAML files",
  13376. "homepage": "https://symfony.com",
  13377. "support": {
  13378. "source": "https://github.com/symfony/yaml/tree/v6.4.26"
  13379. },
  13380. "funding": [
  13381. {
  13382. "url": "https://symfony.com/sponsor",
  13383. "type": "custom"
  13384. },
  13385. {
  13386. "url": "https://github.com/fabpot",
  13387. "type": "github"
  13388. },
  13389. {
  13390. "url": "https://github.com/nicolas-grekas",
  13391. "type": "github"
  13392. },
  13393. {
  13394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13395. "type": "tidelift"
  13396. }
  13397. ],
  13398. "time": "2025-09-26T15:07:38+00:00"
  13399. },
  13400. {
  13401. "name": "twig/twig",
  13402. "version": "v3.20.0",
  13403. "source": {
  13404. "type": "git",
  13405. "url": "https://github.com/twigphp/Twig.git",
  13406. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  13407. },
  13408. "dist": {
  13409. "type": "zip",
  13410. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  13411. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  13412. "shasum": ""
  13413. },
  13414. "require": {
  13415. "php": ">=8.1.0",
  13416. "symfony/deprecation-contracts": "^2.5|^3",
  13417. "symfony/polyfill-ctype": "^1.8",
  13418. "symfony/polyfill-mbstring": "^1.3"
  13419. },
  13420. "require-dev": {
  13421. "phpstan/phpstan": "^2.0",
  13422. "psr/container": "^1.0|^2.0",
  13423. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13424. },
  13425. "type": "library",
  13426. "autoload": {
  13427. "files": [
  13428. "src/Resources/core.php",
  13429. "src/Resources/debug.php",
  13430. "src/Resources/escaper.php",
  13431. "src/Resources/string_loader.php"
  13432. ],
  13433. "psr-4": {
  13434. "Twig\\": "src/"
  13435. }
  13436. },
  13437. "notification-url": "https://packagist.org/downloads/",
  13438. "license": [
  13439. "BSD-3-Clause"
  13440. ],
  13441. "authors": [
  13442. {
  13443. "name": "Fabien Potencier",
  13444. "email": "fabien@symfony.com",
  13445. "homepage": "http://fabien.potencier.org",
  13446. "role": "Lead Developer"
  13447. },
  13448. {
  13449. "name": "Twig Team",
  13450. "role": "Contributors"
  13451. },
  13452. {
  13453. "name": "Armin Ronacher",
  13454. "email": "armin.ronacher@active-4.com",
  13455. "role": "Project Founder"
  13456. }
  13457. ],
  13458. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13459. "homepage": "https://twig.symfony.com",
  13460. "keywords": [
  13461. "templating"
  13462. ],
  13463. "support": {
  13464. "issues": "https://github.com/twigphp/Twig/issues",
  13465. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  13466. },
  13467. "funding": [
  13468. {
  13469. "url": "https://github.com/fabpot",
  13470. "type": "github"
  13471. },
  13472. {
  13473. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13474. "type": "tidelift"
  13475. }
  13476. ],
  13477. "time": "2025-02-13T08:34:43+00:00"
  13478. },
  13479. {
  13480. "name": "webflo/drupal-finder",
  13481. "version": "1.3.1",
  13482. "source": {
  13483. "type": "git",
  13484. "url": "https://github.com/webflo/drupal-finder.git",
  13485. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13486. },
  13487. "dist": {
  13488. "type": "zip",
  13489. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13490. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13491. "shasum": ""
  13492. },
  13493. "require": {
  13494. "composer-runtime-api": "^2.2",
  13495. "php": ">=8.1"
  13496. },
  13497. "require-dev": {
  13498. "mikey179/vfsstream": "^1.6",
  13499. "phpunit/phpunit": "^10.4",
  13500. "symfony/process": "^6.4"
  13501. },
  13502. "type": "library",
  13503. "autoload": {
  13504. "psr-4": {
  13505. "DrupalFinder\\": "src/"
  13506. }
  13507. },
  13508. "notification-url": "https://packagist.org/downloads/",
  13509. "license": [
  13510. "GPL-2.0-or-later"
  13511. ],
  13512. "authors": [
  13513. {
  13514. "name": "Florian Weber",
  13515. "email": "florian@webflo.org"
  13516. }
  13517. ],
  13518. "description": "Helper class to locate a Drupal installation.",
  13519. "support": {
  13520. "issues": "https://github.com/webflo/drupal-finder/issues",
  13521. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13522. },
  13523. "time": "2024-06-28T13:45:36+00:00"
  13524. },
  13525. {
  13526. "name": "wikimedia/composer-merge-plugin",
  13527. "version": "v2.1.0",
  13528. "source": {
  13529. "type": "git",
  13530. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13531. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13532. },
  13533. "dist": {
  13534. "type": "zip",
  13535. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13536. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13537. "shasum": ""
  13538. },
  13539. "require": {
  13540. "composer-plugin-api": "^1.1||^2.0",
  13541. "php": ">=7.2.0"
  13542. },
  13543. "require-dev": {
  13544. "composer/composer": "^1.1||^2.0",
  13545. "ext-json": "*",
  13546. "mediawiki/mediawiki-phan-config": "0.11.1",
  13547. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13548. "phpspec/prophecy": "~1.15.0",
  13549. "phpunit/phpunit": "^8.5||^9.0",
  13550. "squizlabs/php_codesniffer": "~3.7.1"
  13551. },
  13552. "type": "composer-plugin",
  13553. "extra": {
  13554. "branch-alias": {
  13555. "dev-master": "2.x-dev"
  13556. },
  13557. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13558. },
  13559. "autoload": {
  13560. "psr-4": {
  13561. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13562. }
  13563. },
  13564. "notification-url": "https://packagist.org/downloads/",
  13565. "license": [
  13566. "MIT"
  13567. ],
  13568. "authors": [
  13569. {
  13570. "name": "Bryan Davis",
  13571. "email": "bd808@wikimedia.org"
  13572. }
  13573. ],
  13574. "description": "Composer plugin to merge multiple composer.json files",
  13575. "support": {
  13576. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13577. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13578. },
  13579. "time": "2023-04-15T19:07:00+00:00"
  13580. }
  13581. ],
  13582. "packages-dev": [],
  13583. "aliases": [],
  13584. "minimum-stability": "stable",
  13585. "stability-flags": {
  13586. "drupal/advanced_text_formatter": 5,
  13587. "drupal/bulkdelete": 20,
  13588. "drupal/conditional_fields": 15,
  13589. "drupal/config_devel": 20,
  13590. "drupal/config_ignore": 5,
  13591. "drupal/config_update": 15,
  13592. "drupal/context": 5,
  13593. "drupal/date_range_formatter": 20,
  13594. "drupal/email_registration": 5,
  13595. "drupal/entity_clone": 20,
  13596. "drupal/field_group": 20,
  13597. "drupal/filter_perms": 20,
  13598. "drupal/inline_entity_form": 5,
  13599. "drupal/linkit": 10,
  13600. "drupal/login_destination": 20,
  13601. "drupal/maillog": 20,
  13602. "drupal/maxlength": 10,
  13603. "drupal/menu_block": 20,
  13604. "drupal/menu_position": 20,
  13605. "drupal/mimemail": 15,
  13606. "drupal/notify": 10,
  13607. "drupal/page_manager": 5,
  13608. "drupal/path_alias_xt": 20,
  13609. "drupal/pathologic": 15,
  13610. "drupal/phone_number": 15,
  13611. "drupal/profile": 5,
  13612. "drupal/smtp": 10,
  13613. "drupal/synonyms": 10,
  13614. "drupal/translation_views": 15,
  13615. "drupal/ultimate_cron": 15,
  13616. "drupal/views_core_entity_reference": 15
  13617. },
  13618. "prefer-stable": true,
  13619. "prefer-lowest": false,
  13620. "platform": {},
  13621. "platform-dev": {},
  13622. "plugin-api-version": "2.6.0"
  13623. }