composer.lock 498 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575
  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": "c80a240579f4b572090915d652f6b678",
  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/conditional_fields",
  2603. "version": "4.0.0-alpha5",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://git.drupalcode.org/project/conditional_fields.git",
  2607. "reference": "4.0.0-alpha5"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://ftp.drupal.org/files/projects/conditional_fields-4.0.0-alpha5.zip",
  2612. "reference": "4.0.0-alpha5",
  2613. "shasum": "f0788b3cc91b390c3ebbdf544ecb2e78c57eb183"
  2614. },
  2615. "require": {
  2616. "drupal/core": "^8 || ^9 || ^10"
  2617. },
  2618. "require-dev": {
  2619. "drupal/paragraphs": "*"
  2620. },
  2621. "type": "drupal-module",
  2622. "extra": {
  2623. "drupal": {
  2624. "version": "4.0.0-alpha5",
  2625. "datestamp": "1695850051",
  2626. "security-coverage": {
  2627. "status": "not-covered",
  2628. "message": "Alpha releases are not covered by Drupal security advisories."
  2629. }
  2630. }
  2631. },
  2632. "notification-url": "https://packages.drupal.org/8/downloads",
  2633. "license": [
  2634. "GPL-2.0-or-later"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "benjifisher",
  2639. "homepage": "https://www.drupal.org/user/683300"
  2640. },
  2641. {
  2642. "name": "colan",
  2643. "homepage": "https://www.drupal.org/user/58704"
  2644. },
  2645. {
  2646. "name": "dqd",
  2647. "homepage": "https://www.drupal.org/user/1001934"
  2648. },
  2649. {
  2650. "name": "ergonlogic",
  2651. "homepage": "https://www.drupal.org/user/368613"
  2652. },
  2653. {
  2654. "name": "geek-merlin",
  2655. "homepage": "https://www.drupal.org/user/229048"
  2656. },
  2657. {
  2658. "name": "heddn",
  2659. "homepage": "https://www.drupal.org/user/1463982"
  2660. },
  2661. {
  2662. "name": "itsekhmistro",
  2663. "homepage": "https://www.drupal.org/user/928152"
  2664. },
  2665. {
  2666. "name": "mparker17",
  2667. "homepage": "https://www.drupal.org/user/536298"
  2668. },
  2669. {
  2670. "name": "OlgaRabodzei",
  2671. "homepage": "https://www.drupal.org/user/3389198"
  2672. },
  2673. {
  2674. "name": "peterpoe",
  2675. "homepage": "https://www.drupal.org/user/55674"
  2676. },
  2677. {
  2678. "name": "saurabh-2k17",
  2679. "homepage": "https://www.drupal.org/user/3622252"
  2680. },
  2681. {
  2682. "name": "szhu",
  2683. "homepage": "https://www.drupal.org/user/3525295"
  2684. },
  2685. {
  2686. "name": "thalles",
  2687. "homepage": "https://www.drupal.org/user/3589086"
  2688. }
  2689. ],
  2690. "description": "Define dependencies between fields based on their states and values.",
  2691. "homepage": "https://www.drupal.org/project/conditional_fields",
  2692. "support": {
  2693. "source": "https://git.drupalcode.org/project/conditional_fields"
  2694. }
  2695. },
  2696. {
  2697. "name": "drupal/config_devel",
  2698. "version": "dev-1.x",
  2699. "source": {
  2700. "type": "git",
  2701. "url": "https://git.drupalcode.org/project/config_devel.git",
  2702. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2703. },
  2704. "require": {
  2705. "drupal/core": "^9.3 || ^10"
  2706. },
  2707. "type": "drupal-module",
  2708. "extra": {
  2709. "branch-alias": {
  2710. "dev-1.x": "1.x-dev"
  2711. },
  2712. "drupal": {
  2713. "version": "8.x-1.8+2-dev",
  2714. "datestamp": "1678264720",
  2715. "security-coverage": {
  2716. "status": "not-covered",
  2717. "message": "Dev releases are not covered by Drupal security advisories."
  2718. }
  2719. }
  2720. },
  2721. "notification-url": "https://packages.drupal.org/8/downloads",
  2722. "license": [
  2723. "GPL-2.0+"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "alexpott",
  2728. "homepage": "https://www.drupal.org/user/157725"
  2729. },
  2730. {
  2731. "name": "benjy",
  2732. "homepage": "https://www.drupal.org/user/1852732"
  2733. },
  2734. {
  2735. "name": "chx",
  2736. "homepage": "https://www.drupal.org/user/9446"
  2737. },
  2738. {
  2739. "name": "joachim",
  2740. "homepage": "https://www.drupal.org/user/107701"
  2741. },
  2742. {
  2743. "name": "nedjo",
  2744. "homepage": "https://www.drupal.org/user/4481"
  2745. },
  2746. {
  2747. "name": "vijaycs85",
  2748. "homepage": "https://www.drupal.org/user/93488"
  2749. }
  2750. ],
  2751. "description": "Helps developers work with configuration.",
  2752. "homepage": "https://www.drupal.org/project/config_devel",
  2753. "support": {
  2754. "source": "https://git.drupalcode.org/project/config_devel"
  2755. }
  2756. },
  2757. {
  2758. "name": "drupal/config_filter",
  2759. "version": "2.6.0",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://git.drupalcode.org/project/config_filter.git",
  2763. "reference": "8.x-2.6"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2768. "reference": "8.x-2.6",
  2769. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2770. },
  2771. "require": {
  2772. "drupal/core": "^8.8 || ^9 || ^10"
  2773. },
  2774. "conflict": {
  2775. "drush/drush": "<10"
  2776. },
  2777. "suggest": {
  2778. "drupal/config_split": "Split site configuration for different environments."
  2779. },
  2780. "type": "drupal-module",
  2781. "extra": {
  2782. "drupal": {
  2783. "version": "8.x-2.6",
  2784. "datestamp": "1698308577",
  2785. "security-coverage": {
  2786. "status": "covered",
  2787. "message": "Covered by Drupal's security advisory policy"
  2788. }
  2789. }
  2790. },
  2791. "notification-url": "https://packages.drupal.org/8/downloads",
  2792. "license": [
  2793. "GPL-2.0-or-later"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Fabian Bircher",
  2798. "homepage": "https://www.drupal.org/u/bircher",
  2799. "email": "opensource@fabianbircher.com",
  2800. "role": "Maintainer"
  2801. },
  2802. {
  2803. "name": "Nuvole Web",
  2804. "homepage": "http://nuvole.org",
  2805. "email": "info@nuvole.org",
  2806. "role": "Maintainer"
  2807. },
  2808. {
  2809. "name": "pescetti",
  2810. "homepage": "https://www.drupal.org/user/436244"
  2811. }
  2812. ],
  2813. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2814. "homepage": "https://www.drupal.org/project/config_filter",
  2815. "keywords": [
  2816. "Drupal",
  2817. "configuration",
  2818. "configuration management"
  2819. ],
  2820. "support": {
  2821. "source": "https://git.drupalcode.org/project/config_filter",
  2822. "issues": "https://www.drupal.org/project/issues/config_filter",
  2823. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2824. }
  2825. },
  2826. {
  2827. "name": "drupal/config_ignore",
  2828. "version": "2.4.0",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2832. "reference": "8.x-2.4"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2837. "reference": "8.x-2.4",
  2838. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2839. },
  2840. "require": {
  2841. "drupal/config_filter": "^1 || ^2",
  2842. "drupal/core": "^8 || ^9 || ^10"
  2843. },
  2844. "type": "drupal-module",
  2845. "extra": {
  2846. "drupal": {
  2847. "version": "8.x-2.4",
  2848. "datestamp": "1676045435",
  2849. "security-coverage": {
  2850. "status": "covered",
  2851. "message": "Covered by Drupal's security advisory policy"
  2852. }
  2853. }
  2854. },
  2855. "notification-url": "https://packages.drupal.org/8/downloads",
  2856. "license": [
  2857. "GPL-2.0-or-later"
  2858. ],
  2859. "authors": [
  2860. {
  2861. "name": "Tommy Lynge Jørgensen",
  2862. "homepage": "https://www.drupal.org/u/tlyngej",
  2863. "email": "tlyngej@gmail.com",
  2864. "role": "Maintainer"
  2865. },
  2866. {
  2867. "name": "Fabian Bircher",
  2868. "homepage": "https://www.drupal.org/u/bircher",
  2869. "role": "Maintainer"
  2870. },
  2871. {
  2872. "name": "tlyngej",
  2873. "homepage": "https://www.drupal.org/user/413139"
  2874. }
  2875. ],
  2876. "description": "Ignore certain configuration during import.",
  2877. "homepage": "http://drupal.org/project/config_ignore",
  2878. "support": {
  2879. "source": "https://git.drupalcode.org/project/config_ignore",
  2880. "issues": "https://drupal.org/project/config_ignore",
  2881. "irc": "irc://irc.freenode.org/drupal-contribute"
  2882. }
  2883. },
  2884. {
  2885. "name": "drupal/config_pages",
  2886. "version": "2.15.0",
  2887. "source": {
  2888. "type": "git",
  2889. "url": "https://git.drupalcode.org/project/config_pages.git",
  2890. "reference": "8.x-2.15"
  2891. },
  2892. "dist": {
  2893. "type": "zip",
  2894. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2895. "reference": "8.x-2.15",
  2896. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2897. },
  2898. "require": {
  2899. "drupal/core": "^8.5 | ^9 || ^10"
  2900. },
  2901. "type": "drupal-module",
  2902. "extra": {
  2903. "drupal": {
  2904. "version": "8.x-2.15",
  2905. "datestamp": "1688847929",
  2906. "security-coverage": {
  2907. "status": "covered",
  2908. "message": "Covered by Drupal's security advisory policy"
  2909. }
  2910. },
  2911. "drush": {
  2912. "services": {
  2913. "drush.services.yml": "^9"
  2914. }
  2915. }
  2916. },
  2917. "notification-url": "https://packages.drupal.org/8/downloads",
  2918. "license": [
  2919. "GPL-2.0-or-later"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "m.krestnicov",
  2924. "homepage": "https://www.drupal.org/user/3193903"
  2925. },
  2926. {
  2927. "name": "Qwaygon",
  2928. "homepage": "https://www.drupal.org/user/636624"
  2929. },
  2930. {
  2931. "name": "shumer",
  2932. "homepage": "https://www.drupal.org/user/2297432"
  2933. }
  2934. ],
  2935. "description": "ConfigPages module",
  2936. "homepage": "http://drupal.org/project/config_pages",
  2937. "keywords": [
  2938. "Drupal"
  2939. ],
  2940. "support": {
  2941. "source": "http://cgit.drupalcode.org/config_pages",
  2942. "issues": "http://drupal.org/project/issues/config_pages"
  2943. }
  2944. },
  2945. {
  2946. "name": "drupal/config_update",
  2947. "version": "2.0.0-alpha3",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://git.drupalcode.org/project/config_update.git",
  2951. "reference": "2.0.0-alpha3"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2956. "reference": "2.0.0-alpha3",
  2957. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2958. },
  2959. "require": {
  2960. "drupal/core": "^9.4 || ^10"
  2961. },
  2962. "type": "drupal-module",
  2963. "extra": {
  2964. "drupal": {
  2965. "version": "2.0.0-alpha3",
  2966. "datestamp": "1683807608",
  2967. "security-coverage": {
  2968. "status": "not-covered",
  2969. "message": "Alpha releases are not covered by Drupal security advisories."
  2970. }
  2971. }
  2972. },
  2973. "notification-url": "https://packages.drupal.org/8/downloads",
  2974. "license": [
  2975. "GPL-2.0-or-later"
  2976. ],
  2977. "authors": [
  2978. {
  2979. "name": "codebymikey",
  2980. "homepage": "https://www.drupal.org/user/3573206"
  2981. },
  2982. {
  2983. "name": "Pasqualle",
  2984. "homepage": "https://www.drupal.org/user/80733"
  2985. }
  2986. ],
  2987. "description": "Provides basic revert and update functionality for other modules.",
  2988. "homepage": "https://www.drupal.org/project/config_update",
  2989. "support": {
  2990. "source": "https://git.drupalcode.org/project/config_update"
  2991. }
  2992. },
  2993. {
  2994. "name": "drupal/content_as_config",
  2995. "version": "1.0.10",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2999. "reference": "1.0.10"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  3004. "reference": "1.0.10",
  3005. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  3006. },
  3007. "require": {
  3008. "drupal/core": "^9.3 || ^10"
  3009. },
  3010. "conflict": {
  3011. "drupal/structure_sync": "*"
  3012. },
  3013. "require-dev": {
  3014. "drupal/feeds": "*",
  3015. "drupal/group": "*"
  3016. },
  3017. "suggest": {
  3018. "drupal/markdown": "Render module help more elegantly."
  3019. },
  3020. "type": "drupal-module",
  3021. "extra": {
  3022. "drupal": {
  3023. "version": "1.0.10",
  3024. "datestamp": "1665066743",
  3025. "security-coverage": {
  3026. "status": "covered",
  3027. "message": "Covered by Drupal's security advisory policy"
  3028. }
  3029. },
  3030. "drush": {
  3031. "services": {
  3032. "drush.services.yml": "^9"
  3033. }
  3034. }
  3035. },
  3036. "notification-url": "https://packages.drupal.org/8/downloads",
  3037. "license": [
  3038. "GPL-2.0-or-later"
  3039. ],
  3040. "authors": [
  3041. {
  3042. "name": "Daniel Johnson (daniel_j)",
  3043. "homepage": "https://www.drupal.org/u/daniel_j",
  3044. "role": "Maintainer"
  3045. }
  3046. ],
  3047. "description": "Allows content entities to be exported/imported as configuration.",
  3048. "homepage": "https://drupal.org/project/content_as_config",
  3049. "keywords": [
  3050. "Configuration",
  3051. "Drupal"
  3052. ],
  3053. "support": {
  3054. "source": "https://git.drupalcode.org/project/content_as_config",
  3055. "issues": "https://www.drupal.org/project/issues/content_as_config"
  3056. }
  3057. },
  3058. {
  3059. "name": "drupal/content_lock",
  3060. "version": "2.3.0",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://git.drupalcode.org/project/content_lock.git",
  3064. "reference": "8.x-2.3"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  3069. "reference": "8.x-2.3",
  3070. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  3071. },
  3072. "require": {
  3073. "drupal/core": "^9.0 || ^10.0"
  3074. },
  3075. "type": "drupal-module",
  3076. "extra": {
  3077. "drupal": {
  3078. "version": "8.x-2.3",
  3079. "datestamp": "1668427342",
  3080. "security-coverage": {
  3081. "status": "covered",
  3082. "message": "Covered by Drupal's security advisory policy"
  3083. }
  3084. }
  3085. },
  3086. "notification-url": "https://packages.drupal.org/8/downloads",
  3087. "license": [
  3088. "GPL-2.0-or-later"
  3089. ],
  3090. "authors": [
  3091. {
  3092. "name": "alexpott",
  3093. "homepage": "https://www.drupal.org/user/157725"
  3094. },
  3095. {
  3096. "name": "chr.fritsch",
  3097. "homepage": "https://www.drupal.org/user/2103716"
  3098. },
  3099. {
  3100. "name": "daniel.bosen",
  3101. "homepage": "https://www.drupal.org/user/404865"
  3102. },
  3103. {
  3104. "name": "ergonlogic",
  3105. "homepage": "https://www.drupal.org/user/368613"
  3106. },
  3107. {
  3108. "name": "mfb",
  3109. "homepage": "https://www.drupal.org/user/12302"
  3110. },
  3111. {
  3112. "name": "pandaski",
  3113. "homepage": "https://www.drupal.org/user/1987218"
  3114. },
  3115. {
  3116. "name": "volkerk",
  3117. "homepage": "https://www.drupal.org/user/57527"
  3118. }
  3119. ],
  3120. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3121. "homepage": "https://www.drupal.org/project/content_lock",
  3122. "support": {
  3123. "source": "https://git.drupalcode.org/project/content_lock"
  3124. }
  3125. },
  3126. {
  3127. "name": "drupal/context",
  3128. "version": "5.0.0-rc1",
  3129. "source": {
  3130. "type": "git",
  3131. "url": "https://git.drupalcode.org/project/context.git",
  3132. "reference": "5.0.0-rc1"
  3133. },
  3134. "dist": {
  3135. "type": "zip",
  3136. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  3137. "reference": "5.0.0-rc1",
  3138. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  3139. },
  3140. "require": {
  3141. "drupal/core": "^9.3 || ^10"
  3142. },
  3143. "type": "drupal-module",
  3144. "extra": {
  3145. "drupal": {
  3146. "version": "5.0.0-rc1",
  3147. "datestamp": "1677054769",
  3148. "security-coverage": {
  3149. "status": "not-covered",
  3150. "message": "RC releases are not covered by Drupal security advisories."
  3151. }
  3152. }
  3153. },
  3154. "notification-url": "https://packages.drupal.org/8/downloads",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Christoffer Palm",
  3161. "homepage": "http://www.oddhill.se/",
  3162. "email": "christoffer.palm@oddhill.se",
  3163. "role": "Developer"
  3164. },
  3165. {
  3166. "name": "boshtian",
  3167. "homepage": "https://www.drupal.org/user/1773456"
  3168. },
  3169. {
  3170. "name": "colan",
  3171. "homepage": "https://www.drupal.org/user/58704"
  3172. },
  3173. {
  3174. "name": "emanaton",
  3175. "homepage": "https://www.drupal.org/user/120853"
  3176. },
  3177. {
  3178. "name": "febbraro",
  3179. "homepage": "https://www.drupal.org/user/43670"
  3180. },
  3181. {
  3182. "name": "fizk",
  3183. "homepage": "https://www.drupal.org/user/473174"
  3184. },
  3185. {
  3186. "name": "hass",
  3187. "homepage": "https://www.drupal.org/user/85918"
  3188. },
  3189. {
  3190. "name": "hefox",
  3191. "homepage": "https://www.drupal.org/user/426416"
  3192. },
  3193. {
  3194. "name": "jmiccolis",
  3195. "homepage": "https://www.drupal.org/user/31731"
  3196. },
  3197. {
  3198. "name": "Kristen Pol",
  3199. "homepage": "https://www.drupal.org/user/8389"
  3200. },
  3201. {
  3202. "name": "nedjo",
  3203. "homepage": "https://www.drupal.org/user/4481"
  3204. },
  3205. {
  3206. "name": "NormySan",
  3207. "homepage": "https://www.drupal.org/user/112352"
  3208. },
  3209. {
  3210. "name": "patricksettle",
  3211. "homepage": "https://www.drupal.org/user/26618"
  3212. },
  3213. {
  3214. "name": "paulocs",
  3215. "homepage": "https://www.drupal.org/user/3640109"
  3216. },
  3217. {
  3218. "name": "Steven Jones",
  3219. "homepage": "https://www.drupal.org/user/99644"
  3220. },
  3221. {
  3222. "name": "tekante",
  3223. "homepage": "https://www.drupal.org/user/640024"
  3224. },
  3225. {
  3226. "name": "yhahn",
  3227. "homepage": "https://www.drupal.org/user/264833"
  3228. }
  3229. ],
  3230. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3231. "homepage": "https://github.com/oddhill/context",
  3232. "keywords": [
  3233. "Drupal",
  3234. "block",
  3235. "conditions",
  3236. "context",
  3237. "visibility"
  3238. ],
  3239. "support": {
  3240. "source": "https://github.com/oddhill/context",
  3241. "issues": "https://github.com/oddhill/context/issues",
  3242. "docs": "https://github.com/oddhill/context"
  3243. }
  3244. },
  3245. {
  3246. "name": "drupal/core",
  3247. "version": "10.5.3",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://github.com/drupal/core.git",
  3251. "reference": "acfb3b6eab3c3b1480e353d2e2e508bc6ae703c9"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://api.github.com/repos/drupal/core/zipball/acfb3b6eab3c3b1480e353d2e2e508bc6ae703c9",
  3256. "reference": "acfb3b6eab3c3b1480e353d2e2e508bc6ae703c9",
  3257. "shasum": ""
  3258. },
  3259. "require": {
  3260. "asm89/stack-cors": "^2.3",
  3261. "composer-runtime-api": "^2.1",
  3262. "composer/semver": "^3.3",
  3263. "doctrine/annotations": "^1.14",
  3264. "egulias/email-validator": "^3.2.1|^4.0",
  3265. "ext-date": "*",
  3266. "ext-dom": "*",
  3267. "ext-filter": "*",
  3268. "ext-gd": "*",
  3269. "ext-hash": "*",
  3270. "ext-json": "*",
  3271. "ext-pcre": "*",
  3272. "ext-pdo": "*",
  3273. "ext-session": "*",
  3274. "ext-simplexml": "*",
  3275. "ext-spl": "*",
  3276. "ext-tokenizer": "*",
  3277. "ext-xml": "*",
  3278. "guzzlehttp/guzzle": "^7.5",
  3279. "guzzlehttp/psr7": "^2.4.5",
  3280. "masterminds/html5": "^2.7",
  3281. "mck89/peast": "^1.14",
  3282. "pear/archive_tar": "^1.4.14",
  3283. "php": ">=8.1.0",
  3284. "psr/log": "^3.0",
  3285. "sebastian/diff": "^4",
  3286. "symfony/console": "^6.4",
  3287. "symfony/dependency-injection": "^6.4",
  3288. "symfony/event-dispatcher": "^6.4",
  3289. "symfony/filesystem": "^6.4",
  3290. "symfony/finder": "^6.4",
  3291. "symfony/http-foundation": "^6.4",
  3292. "symfony/http-kernel": "^6.4",
  3293. "symfony/mailer": "^6.4",
  3294. "symfony/mime": "^6.4",
  3295. "symfony/polyfill-iconv": "^1.26",
  3296. "symfony/process": "^6.4",
  3297. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3298. "symfony/routing": "^6.4",
  3299. "symfony/serializer": "^6.4",
  3300. "symfony/validator": "^6.4",
  3301. "symfony/yaml": "^6.4",
  3302. "twig/twig": "^3.15.0"
  3303. },
  3304. "conflict": {
  3305. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  3306. "drush/drush": "<12.4.3"
  3307. },
  3308. "replace": {
  3309. "drupal/core-annotation": "self.version",
  3310. "drupal/core-assertion": "self.version",
  3311. "drupal/core-class-finder": "self.version",
  3312. "drupal/core-datetime": "self.version",
  3313. "drupal/core-dependency-injection": "self.version",
  3314. "drupal/core-diff": "self.version",
  3315. "drupal/core-discovery": "self.version",
  3316. "drupal/core-event-dispatcher": "self.version",
  3317. "drupal/core-file-cache": "self.version",
  3318. "drupal/core-file-security": "self.version",
  3319. "drupal/core-filesystem": "self.version",
  3320. "drupal/core-front-matter": "self.version",
  3321. "drupal/core-gettext": "self.version",
  3322. "drupal/core-graph": "self.version",
  3323. "drupal/core-http-foundation": "self.version",
  3324. "drupal/core-php-storage": "self.version",
  3325. "drupal/core-plugin": "self.version",
  3326. "drupal/core-proxy-builder": "self.version",
  3327. "drupal/core-render": "self.version",
  3328. "drupal/core-serialization": "self.version",
  3329. "drupal/core-transliteration": "self.version",
  3330. "drupal/core-utility": "self.version",
  3331. "drupal/core-uuid": "self.version",
  3332. "drupal/core-version": "self.version"
  3333. },
  3334. "suggest": {
  3335. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3336. },
  3337. "type": "drupal-core",
  3338. "extra": {
  3339. "drupal-scaffold": {
  3340. "file-mapping": {
  3341. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3342. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3343. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3344. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3345. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3346. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3347. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3348. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3349. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3350. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3351. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3352. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3353. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3354. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3355. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3356. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3357. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3358. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3359. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3360. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3361. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3362. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3363. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3364. }
  3365. }
  3366. },
  3367. "autoload": {
  3368. "files": [
  3369. "includes/bootstrap.inc"
  3370. ],
  3371. "psr-4": {
  3372. "Drupal\\Core\\": "lib/Drupal/Core",
  3373. "Drupal\\Component\\": "lib/Drupal/Component"
  3374. },
  3375. "classmap": [
  3376. "lib/Drupal.php",
  3377. "lib/Drupal/Component/DependencyInjection/Container.php",
  3378. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3379. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3380. "lib/Drupal/Component/Utility/Timer.php",
  3381. "lib/Drupal/Component/Utility/Unicode.php",
  3382. "lib/Drupal/Core/Cache/Cache.php",
  3383. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3384. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3385. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3386. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3387. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3388. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3389. "lib/Drupal/Core/Database/Connection.php",
  3390. "lib/Drupal/Core/Database/Database.php",
  3391. "lib/Drupal/Core/Database/StatementInterface.php",
  3392. "lib/Drupal/Core/DependencyInjection/Container.php",
  3393. "lib/Drupal/Core/DrupalKernel.php",
  3394. "lib/Drupal/Core/DrupalKernelInterface.php",
  3395. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3396. "lib/Drupal/Core/Site/Settings.php",
  3397. "lib/Drupal/Component/Datetime/Time.php"
  3398. ]
  3399. },
  3400. "notification-url": "https://packagist.org/downloads/",
  3401. "license": [
  3402. "GPL-2.0-or-later"
  3403. ],
  3404. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3405. "support": {
  3406. "source": "https://github.com/drupal/core/tree/10.5.3"
  3407. },
  3408. "time": "2025-09-04T09:07:02+00:00"
  3409. },
  3410. {
  3411. "name": "drupal/core-composer-scaffold",
  3412. "version": "10.1.6",
  3413. "source": {
  3414. "type": "git",
  3415. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3416. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3417. },
  3418. "dist": {
  3419. "type": "zip",
  3420. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3421. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3422. "shasum": ""
  3423. },
  3424. "require": {
  3425. "composer-plugin-api": "^2",
  3426. "php": ">=7.3.0"
  3427. },
  3428. "conflict": {
  3429. "drupal-composer/drupal-scaffold": "*"
  3430. },
  3431. "require-dev": {
  3432. "composer/composer": "^1.8@stable"
  3433. },
  3434. "type": "composer-plugin",
  3435. "extra": {
  3436. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3437. "branch-alias": {
  3438. "dev-master": "1.0.x-dev"
  3439. }
  3440. },
  3441. "autoload": {
  3442. "psr-4": {
  3443. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3444. }
  3445. },
  3446. "notification-url": "https://packagist.org/downloads/",
  3447. "license": [
  3448. "GPL-2.0-or-later"
  3449. ],
  3450. "description": "A flexible Composer project scaffold builder.",
  3451. "homepage": "https://www.drupal.org/project/drupal",
  3452. "keywords": [
  3453. "drupal"
  3454. ],
  3455. "support": {
  3456. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3457. },
  3458. "time": "2023-04-30T16:15:32+00:00"
  3459. },
  3460. {
  3461. "name": "drupal/core-project-message",
  3462. "version": "10.1.6",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/drupal/core-project-message.git",
  3466. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3471. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3472. "shasum": ""
  3473. },
  3474. "require": {
  3475. "composer-plugin-api": "^2",
  3476. "php": ">=7.3.0"
  3477. },
  3478. "type": "composer-plugin",
  3479. "extra": {
  3480. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3481. },
  3482. "autoload": {
  3483. "psr-4": {
  3484. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "GPL-2.0-or-later"
  3490. ],
  3491. "description": "Adds a message after Composer installation.",
  3492. "homepage": "https://www.drupal.org/project/drupal",
  3493. "keywords": [
  3494. "drupal"
  3495. ],
  3496. "support": {
  3497. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3498. },
  3499. "time": "2022-07-01T08:32:39+00:00"
  3500. },
  3501. {
  3502. "name": "drupal/core-recommended",
  3503. "version": "10.5.3",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/drupal/core-recommended.git",
  3507. "reference": "f0463740dbeaaa3b6bb44064055ad5deef004048"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/f0463740dbeaaa3b6bb44064055ad5deef004048",
  3512. "reference": "f0463740dbeaaa3b6bb44064055ad5deef004048",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "asm89/stack-cors": "~v2.3.0",
  3517. "composer/semver": "~3.4.3",
  3518. "doctrine/annotations": "~1.14.4",
  3519. "doctrine/deprecations": "~1.1.5",
  3520. "doctrine/lexer": "~2.1.1",
  3521. "drupal/core": "10.5.3",
  3522. "egulias/email-validator": "~4.0.4",
  3523. "guzzlehttp/guzzle": "~7.9.3",
  3524. "guzzlehttp/promises": "~2.2.0",
  3525. "guzzlehttp/psr7": "~2.7.1",
  3526. "masterminds/html5": "~2.9.0",
  3527. "mck89/peast": "~v1.17.0",
  3528. "pear/archive_tar": "~1.5.0",
  3529. "pear/console_getopt": "~v1.4.3",
  3530. "pear/pear-core-minimal": "~v1.10.16",
  3531. "pear/pear_exception": "~v1.0.2",
  3532. "psr/cache": "~3.0.0",
  3533. "psr/container": "~2.0.2",
  3534. "psr/event-dispatcher": "~1.0.0",
  3535. "psr/http-client": "~1.0.3",
  3536. "psr/http-factory": "~1.1.0",
  3537. "psr/log": "~3.0.2",
  3538. "ralouphie/getallheaders": "~3.0.3",
  3539. "sebastian/diff": "~4.0.6",
  3540. "symfony/console": "~v6.4.21",
  3541. "symfony/dependency-injection": "~v6.4.20",
  3542. "symfony/deprecation-contracts": "~v3.5.1",
  3543. "symfony/error-handler": "~v6.4.20",
  3544. "symfony/event-dispatcher": "~v6.4.13",
  3545. "symfony/event-dispatcher-contracts": "~v3.5.1",
  3546. "symfony/filesystem": "~v6.4.13",
  3547. "symfony/finder": "~v6.4.17",
  3548. "symfony/http-foundation": "~v6.4.21",
  3549. "symfony/http-kernel": "~v6.4.21",
  3550. "symfony/mailer": "~v6.4.21",
  3551. "symfony/mime": "~v6.4.21",
  3552. "symfony/polyfill-ctype": "~v1.31.0",
  3553. "symfony/polyfill-iconv": "~v1.31.0",
  3554. "symfony/polyfill-intl-grapheme": "~v1.31.0",
  3555. "symfony/polyfill-intl-idn": "~v1.31.0",
  3556. "symfony/polyfill-intl-normalizer": "~v1.31.0",
  3557. "symfony/polyfill-mbstring": "~v1.31.0",
  3558. "symfony/polyfill-php83": "~v1.31.0",
  3559. "symfony/process": "~v6.4.20",
  3560. "symfony/psr-http-message-bridge": "~v6.4.13",
  3561. "symfony/routing": "~v6.4.18",
  3562. "symfony/serializer": "~v6.4.21",
  3563. "symfony/service-contracts": "~v3.5.1",
  3564. "symfony/string": "~v6.4.21",
  3565. "symfony/translation-contracts": "~v3.5.1",
  3566. "symfony/validator": "~v6.4.21",
  3567. "symfony/var-dumper": "~v6.4.21",
  3568. "symfony/var-exporter": "~v6.4.21",
  3569. "symfony/yaml": "~v6.4.21",
  3570. "twig/twig": "~v3.20.0"
  3571. },
  3572. "conflict": {
  3573. "webflo/drupal-core-strict": "*"
  3574. },
  3575. "type": "metapackage",
  3576. "notification-url": "https://packagist.org/downloads/",
  3577. "license": [
  3578. "GPL-2.0-or-later"
  3579. ],
  3580. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3581. "support": {
  3582. "source": "https://github.com/drupal/core-recommended/tree/10.5.3"
  3583. },
  3584. "time": "2025-09-04T09:07:02+00:00"
  3585. },
  3586. {
  3587. "name": "drupal/cshs",
  3588. "version": "4.0.0",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://git.drupalcode.org/project/cshs.git",
  3592. "reference": "4.0.0"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3597. "reference": "4.0.0",
  3598. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3599. },
  3600. "require": {
  3601. "drupal/core": "^9 || ^10",
  3602. "php": ">=8.0"
  3603. },
  3604. "type": "drupal-module",
  3605. "extra": {
  3606. "drupal": {
  3607. "version": "4.0.0",
  3608. "datestamp": "1668457722",
  3609. "security-coverage": {
  3610. "status": "covered",
  3611. "message": "Covered by Drupal's security advisory policy"
  3612. }
  3613. }
  3614. },
  3615. "notification-url": "https://packages.drupal.org/8/downloads",
  3616. "license": [
  3617. "GPL-2.0-or-later"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Walter Jenner",
  3622. "homepage": "https://drupal.org/u/valderama"
  3623. },
  3624. {
  3625. "name": "Sergii Bondarenko",
  3626. "homepage": "https://drupal.org/u/BR0kEN",
  3627. "email": "sb@firstvector.org"
  3628. },
  3629. {
  3630. "name": "Daneel Cruz",
  3631. "homepage": "https://drupal.org/u/daneelcm"
  3632. },
  3633. {
  3634. "name": "Purushotam Rai",
  3635. "homepage": "https://drupal.org/u/purushotam.rai"
  3636. }
  3637. ],
  3638. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3639. "homepage": "https://www.drupal.org/project/cshs",
  3640. "keywords": [
  3641. "client-side-select",
  3642. "hierarchical-select",
  3643. "module",
  3644. "select",
  3645. "taxonomy"
  3646. ],
  3647. "support": {
  3648. "source": "https://git.drupalcode.org/project/cshs",
  3649. "issues": "https://www.drupal.org/project/issues/cshs"
  3650. }
  3651. },
  3652. {
  3653. "name": "drupal/ctools",
  3654. "version": "3.14.0",
  3655. "source": {
  3656. "type": "git",
  3657. "url": "https://git.drupalcode.org/project/ctools.git",
  3658. "reference": "8.x-3.14"
  3659. },
  3660. "dist": {
  3661. "type": "zip",
  3662. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3663. "reference": "8.x-3.14",
  3664. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3665. },
  3666. "require": {
  3667. "drupal/core": "^9.3 || ^10"
  3668. },
  3669. "type": "drupal-module",
  3670. "extra": {
  3671. "drupal": {
  3672. "version": "8.x-3.14",
  3673. "datestamp": "1684299793",
  3674. "security-coverage": {
  3675. "status": "covered",
  3676. "message": "Covered by Drupal's security advisory policy"
  3677. }
  3678. },
  3679. "branch-alias": {
  3680. "dev-8.x-3.x": "3.x-dev"
  3681. }
  3682. },
  3683. "notification-url": "https://packages.drupal.org/8/downloads",
  3684. "license": [
  3685. "GPL-2.0-or-later"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "Kris Vanderwater (EclipseGc)",
  3690. "homepage": "https://www.drupal.org/u/eclipsegc",
  3691. "role": "Maintainer"
  3692. },
  3693. {
  3694. "name": "Jakob Perry (japerry)",
  3695. "homepage": "https://www.drupal.org/u/japerry",
  3696. "role": "Maintainer"
  3697. },
  3698. {
  3699. "name": "Tim Plunkett (tim.plunkett)",
  3700. "homepage": "https://www.drupal.org/u/timplunkett",
  3701. "role": "Maintainer"
  3702. },
  3703. {
  3704. "name": "James Gilliland (neclimdul)",
  3705. "homepage": "https://www.drupal.org/u/neclimdul",
  3706. "role": "Maintainer"
  3707. },
  3708. {
  3709. "name": "Daniel Wehner (dawehner)",
  3710. "homepage": "https://www.drupal.org/u/dawehner",
  3711. "role": "Maintainer"
  3712. },
  3713. {
  3714. "name": "joelpittet",
  3715. "homepage": "https://www.drupal.org/user/160302"
  3716. },
  3717. {
  3718. "name": "merlinofchaos",
  3719. "homepage": "https://www.drupal.org/user/26979"
  3720. },
  3721. {
  3722. "name": "neclimdul",
  3723. "homepage": "https://www.drupal.org/user/48673"
  3724. },
  3725. {
  3726. "name": "sdboyer",
  3727. "homepage": "https://www.drupal.org/user/146719"
  3728. },
  3729. {
  3730. "name": "sun",
  3731. "homepage": "https://www.drupal.org/user/54136"
  3732. },
  3733. {
  3734. "name": "tim.plunkett",
  3735. "homepage": "https://www.drupal.org/user/241634"
  3736. }
  3737. ],
  3738. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3739. "homepage": "https://www.drupal.org/project/ctools",
  3740. "support": {
  3741. "source": "https://git.drupalcode.org/project/ctools",
  3742. "issues": "https://www.drupal.org/project/issues/ctools"
  3743. }
  3744. },
  3745. {
  3746. "name": "drupal/date_range_formatter",
  3747. "version": "dev-9.0.x",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3751. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3752. },
  3753. "require": {
  3754. "drupal/core": "^8 || ^9 || ^10"
  3755. },
  3756. "type": "drupal-module",
  3757. "extra": {
  3758. "branch-alias": {
  3759. "dev-9.0.x": "9.0.x-dev"
  3760. },
  3761. "drupal": {
  3762. "version": "9.0.x-dev",
  3763. "datestamp": "1661511425",
  3764. "security-coverage": {
  3765. "status": "not-covered",
  3766. "message": "Dev releases are not covered by Drupal security advisories."
  3767. }
  3768. }
  3769. },
  3770. "notification-url": "https://packages.drupal.org/8/downloads",
  3771. "license": [
  3772. "GPL-2.0-or-later"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "maximpodorov",
  3777. "homepage": "https://www.drupal.org/user/515310"
  3778. },
  3779. {
  3780. "name": "sudishth",
  3781. "homepage": "https://www.drupal.org/user/1440562"
  3782. }
  3783. ],
  3784. "description": "Formats date ranges.",
  3785. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3786. "support": {
  3787. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3788. }
  3789. },
  3790. {
  3791. "name": "drupal/devel",
  3792. "version": "5.1.2",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://git.drupalcode.org/project/devel.git",
  3796. "reference": "5.1.2"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3801. "reference": "5.1.2",
  3802. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3803. },
  3804. "require": {
  3805. "doctrine/common": "^2.7 || ^3.4",
  3806. "drupal/core": "^9 || ^10",
  3807. "php": ">=7.4",
  3808. "symfony/var-dumper": "^4 || ^5 || ^6"
  3809. },
  3810. "conflict": {
  3811. "kint-php/kint": "<3"
  3812. },
  3813. "require-dev": {
  3814. "drush/drush": "^11"
  3815. },
  3816. "suggest": {
  3817. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3818. },
  3819. "type": "drupal-module",
  3820. "extra": {
  3821. "drupal": {
  3822. "version": "5.1.2",
  3823. "datestamp": "1686161028",
  3824. "security-coverage": {
  3825. "status": "covered",
  3826. "message": "Covered by Drupal's security advisory policy"
  3827. }
  3828. },
  3829. "drush": {
  3830. "services": {
  3831. "drush.services.yml": "^9 || ^10 || ^11"
  3832. }
  3833. }
  3834. },
  3835. "notification-url": "https://packages.drupal.org/8/downloads",
  3836. "license": [
  3837. "GPL-2.0-or-later"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "drupalspoons",
  3842. "homepage": "https://www.drupal.org/user/3647684"
  3843. },
  3844. {
  3845. "name": "moshe weitzman",
  3846. "homepage": "https://www.drupal.org/user/23"
  3847. }
  3848. ],
  3849. "description": "Various blocks, pages, and functions for developers.",
  3850. "homepage": "https://www.drupal.org/project/devel",
  3851. "support": {
  3852. "source": "https://gitlab.com/drupalspoons/devel",
  3853. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3854. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3855. }
  3856. },
  3857. {
  3858. "name": "drupal/devel_kint_extras",
  3859. "version": "1.1.0",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3863. "reference": "1.1.0"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3868. "reference": "1.1.0",
  3869. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3870. },
  3871. "require": {
  3872. "drupal/core": "^9 || ^10",
  3873. "drupal/devel": "^4.0 || ^5.0",
  3874. "kint-php/kint": "^3.3 || ^4.0"
  3875. },
  3876. "type": "drupal-module",
  3877. "extra": {
  3878. "drupal": {
  3879. "version": "1.1.0",
  3880. "datestamp": "1663760998",
  3881. "security-coverage": {
  3882. "status": "covered",
  3883. "message": "Covered by Drupal's security advisory policy"
  3884. }
  3885. }
  3886. },
  3887. "notification-url": "https://packages.drupal.org/8/downloads",
  3888. "license": [
  3889. "GPL-2.0-or-later"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "Jan Chojnacki",
  3894. "homepage": "https://www.drupal.org/u/janchojnacki"
  3895. },
  3896. {
  3897. "name": "Other contributors",
  3898. "homepage": "https://www.drupal.org/node/3164492/committers"
  3899. }
  3900. ],
  3901. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3902. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3903. "support": {
  3904. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3905. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3906. "chat": "irc://irc.freenode.org/drupal-contribute"
  3907. }
  3908. },
  3909. {
  3910. "name": "drupal/email_registration",
  3911. "version": "1.3.0",
  3912. "source": {
  3913. "type": "git",
  3914. "url": "https://git.drupalcode.org/project/email_registration.git",
  3915. "reference": "8.x-1.3"
  3916. },
  3917. "dist": {
  3918. "type": "zip",
  3919. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3920. "reference": "8.x-1.3",
  3921. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3922. },
  3923. "require": {
  3924. "drupal/core": "^9.1 || ^10"
  3925. },
  3926. "conflict": {
  3927. "drupal/commerce": "<2.12"
  3928. },
  3929. "require-dev": {
  3930. "drupal/commerce": "^2.0",
  3931. "drupal/token": "*"
  3932. },
  3933. "type": "drupal-module",
  3934. "extra": {
  3935. "drupal": {
  3936. "version": "8.x-1.3",
  3937. "datestamp": "1697182609",
  3938. "security-coverage": {
  3939. "status": "covered",
  3940. "message": "Covered by Drupal's security advisory policy"
  3941. }
  3942. }
  3943. },
  3944. "notification-url": "https://packages.drupal.org/8/downloads",
  3945. "license": [
  3946. "GPL-2.0-or-later"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Greg Knaddison (greggles)",
  3951. "homepage": "https://www.drupal.org/u/greggles",
  3952. "role": "Maintainer"
  3953. },
  3954. {
  3955. "name": "Andrey Postnikov (andypost)",
  3956. "homepage": "https://www.drupal.org/u/andypost",
  3957. "role": "Maintainer"
  3958. },
  3959. {
  3960. "name": "Chris Herberte",
  3961. "homepage": "https://www.drupal.org/u/chris-herberte",
  3962. "role": "Maintainer"
  3963. },
  3964. {
  3965. "name": "Moshe Weitzman (moshe weitzman)",
  3966. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3967. "role": "Maintainer"
  3968. },
  3969. {
  3970. "name": "Grevil",
  3971. "homepage": "https://www.drupal.org/user/3668491"
  3972. },
  3973. {
  3974. "name": "moshe weitzman",
  3975. "homepage": "https://www.drupal.org/user/23"
  3976. }
  3977. ],
  3978. "description": "Allows users to register with an email address as their username.",
  3979. "homepage": "https://www.drupal.org/project/email_registration",
  3980. "support": {
  3981. "source": "https://git.drupalcode.org/project/email_registration",
  3982. "issues": "http://drupal.org/project/issues/email_registration"
  3983. }
  3984. },
  3985. {
  3986. "name": "drupal/embed",
  3987. "version": "1.7.0",
  3988. "source": {
  3989. "type": "git",
  3990. "url": "https://git.drupalcode.org/project/embed.git",
  3991. "reference": "8.x-1.7"
  3992. },
  3993. "dist": {
  3994. "type": "zip",
  3995. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3996. "reference": "8.x-1.7",
  3997. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3998. },
  3999. "require": {
  4000. "drupal/core": "^9.3 | ^10"
  4001. },
  4002. "require-dev": {
  4003. "drupal/ckeditor": "*"
  4004. },
  4005. "type": "drupal-module",
  4006. "extra": {
  4007. "drupal": {
  4008. "version": "8.x-1.7",
  4009. "datestamp": "1697642867",
  4010. "security-coverage": {
  4011. "status": "covered",
  4012. "message": "Covered by Drupal's security advisory policy"
  4013. }
  4014. }
  4015. },
  4016. "notification-url": "https://packages.drupal.org/8/downloads",
  4017. "license": [
  4018. "GPL-2.0-or-later"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "cs_shadow",
  4023. "homepage": "https://www.drupal.org/user/2828287"
  4024. },
  4025. {
  4026. "name": "Dave Reid",
  4027. "homepage": "https://www.drupal.org/user/53892"
  4028. },
  4029. {
  4030. "name": "Devin Carlson",
  4031. "homepage": "https://www.drupal.org/user/290182"
  4032. },
  4033. {
  4034. "name": "Drupal Media Team",
  4035. "homepage": "https://www.drupal.org/user/3260690"
  4036. },
  4037. {
  4038. "name": "phenaproxima",
  4039. "homepage": "https://www.drupal.org/user/205645"
  4040. },
  4041. {
  4042. "name": "slashrsm",
  4043. "homepage": "https://www.drupal.org/user/744628"
  4044. }
  4045. ],
  4046. "description": "Provides a framework for different types of embeds in text editors.",
  4047. "homepage": "https://www.drupal.org/project/embed",
  4048. "support": {
  4049. "source": "https://git.drupalcode.org/project/embed"
  4050. }
  4051. },
  4052. {
  4053. "name": "drupal/entity",
  4054. "version": "1.4.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://git.drupalcode.org/project/entity.git",
  4058. "reference": "8.x-1.4"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  4063. "reference": "8.x-1.4",
  4064. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  4065. },
  4066. "require": {
  4067. "drupal/core": "^9.2|^10.0"
  4068. },
  4069. "type": "drupal-module",
  4070. "extra": {
  4071. "drupal": {
  4072. "version": "8.x-1.4",
  4073. "datestamp": "1661898023",
  4074. "security-coverage": {
  4075. "status": "covered",
  4076. "message": "Covered by Drupal's security advisory policy"
  4077. }
  4078. }
  4079. },
  4080. "notification-url": "https://packages.drupal.org/8/downloads",
  4081. "license": [
  4082. "GPL-2.0-or-later"
  4083. ],
  4084. "authors": [
  4085. {
  4086. "name": "Berdir",
  4087. "homepage": "https://www.drupal.org/user/214652"
  4088. },
  4089. {
  4090. "name": "bojanz",
  4091. "homepage": "https://www.drupal.org/user/86106"
  4092. },
  4093. {
  4094. "name": "dawehner",
  4095. "homepage": "https://www.drupal.org/user/99340"
  4096. },
  4097. {
  4098. "name": "dixon_",
  4099. "homepage": "https://www.drupal.org/user/239911"
  4100. },
  4101. {
  4102. "name": "fago",
  4103. "homepage": "https://www.drupal.org/user/16747"
  4104. },
  4105. {
  4106. "name": "mglaman",
  4107. "homepage": "https://www.drupal.org/user/2416470"
  4108. },
  4109. {
  4110. "name": "TR",
  4111. "homepage": "https://www.drupal.org/user/202830"
  4112. }
  4113. ],
  4114. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4115. "homepage": "https://www.drupal.org/project/entity",
  4116. "support": {
  4117. "source": "https://git.drupalcode.org/project/entity",
  4118. "issues": "https://www.drupal.org/project/issues/entity"
  4119. }
  4120. },
  4121. {
  4122. "name": "drupal/entity_browser",
  4123. "version": "2.9.0",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4127. "reference": "8.x-2.9"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  4132. "reference": "8.x-2.9",
  4133. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  4134. },
  4135. "require": {
  4136. "drupal/core": "^9.2 || ^10"
  4137. },
  4138. "require-dev": {
  4139. "drupal/embed": "~1.0",
  4140. "drupal/entity_embed": "1.x-dev",
  4141. "drupal/entity_reference_revisions": "1.x-dev",
  4142. "drupal/entityqueue": "1.x-dev",
  4143. "drupal/inline_entity_form": "1.x-dev",
  4144. "drupal/paragraphs": "1.x-dev",
  4145. "drupal/token": "1.x-dev"
  4146. },
  4147. "type": "drupal-module",
  4148. "extra": {
  4149. "drupal": {
  4150. "version": "8.x-2.9",
  4151. "datestamp": "1674070933",
  4152. "security-coverage": {
  4153. "status": "covered",
  4154. "message": "Covered by Drupal's security advisory policy"
  4155. }
  4156. }
  4157. },
  4158. "notification-url": "https://packages.drupal.org/8/downloads",
  4159. "license": [
  4160. "GPL-2.0+"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "Janez Urevc",
  4165. "homepage": "https://github.com/slashrsm",
  4166. "role": "Maintainer"
  4167. },
  4168. {
  4169. "name": "Primoz Hmeljak",
  4170. "homepage": "https://github.com/primsi",
  4171. "role": "Maintainer"
  4172. },
  4173. {
  4174. "name": "See other contributors",
  4175. "homepage": "https://www.drupal.org/node/1943336/committers",
  4176. "role": "contributor"
  4177. },
  4178. {
  4179. "name": "Drupal Media Team",
  4180. "homepage": "https://www.drupal.org/user/3260690"
  4181. },
  4182. {
  4183. "name": "marcingy",
  4184. "homepage": "https://www.drupal.org/user/77320"
  4185. },
  4186. {
  4187. "name": "oknate",
  4188. "homepage": "https://www.drupal.org/user/471638"
  4189. },
  4190. {
  4191. "name": "Primsi",
  4192. "homepage": "https://www.drupal.org/user/282629"
  4193. },
  4194. {
  4195. "name": "samuel.mortenson",
  4196. "homepage": "https://www.drupal.org/user/2582268"
  4197. },
  4198. {
  4199. "name": "slashrsm",
  4200. "homepage": "https://www.drupal.org/user/744628"
  4201. }
  4202. ],
  4203. "description": "Entity browsing and selecting component.",
  4204. "homepage": "http://drupal.org/project/entity_browser",
  4205. "support": {
  4206. "source": "https://git.drupalcode.org/project/entity_browser",
  4207. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4208. "irc": "irc://irc.freenode.org/drupal-contribute"
  4209. }
  4210. },
  4211. {
  4212. "name": "drupal/entity_browser_enhanced",
  4213. "version": "2.0.0",
  4214. "source": {
  4215. "type": "git",
  4216. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4217. "reference": "2.0.0"
  4218. },
  4219. "dist": {
  4220. "type": "zip",
  4221. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  4222. "reference": "2.0.0",
  4223. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  4224. },
  4225. "require": {
  4226. "drupal/core": "^9 || ^10",
  4227. "drupal/entity_browser": "~2.0"
  4228. },
  4229. "type": "drupal-module",
  4230. "extra": {
  4231. "drupal": {
  4232. "version": "2.0.0",
  4233. "datestamp": "1697211243",
  4234. "security-coverage": {
  4235. "status": "covered",
  4236. "message": "Covered by Drupal's security advisory policy"
  4237. }
  4238. }
  4239. },
  4240. "notification-url": "https://packages.drupal.org/8/downloads",
  4241. "license": [
  4242. "GPL-2.0-or-later"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "Vardot",
  4247. "homepage": "https://www.drupal.org/vardot",
  4248. "role": "Maintainer"
  4249. },
  4250. {
  4251. "name": "Rajab Natshah",
  4252. "homepage": "https://www.drupal.org/user/1414312"
  4253. }
  4254. ],
  4255. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4256. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4257. "support": {
  4258. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4259. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4260. }
  4261. },
  4262. {
  4263. "name": "drupal/entity_clone",
  4264. "version": "dev-2.x",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4268. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  4269. },
  4270. "require": {
  4271. "drupal/core": "^8.8 || ^9 || ^10"
  4272. },
  4273. "require-dev": {
  4274. "drupal/entity_browser": "2.x-dev",
  4275. "drupal/entity_usage": "2.x-dev",
  4276. "drupal/paragraphs": "^1.0",
  4277. "drupal/search_api": "~1.0"
  4278. },
  4279. "type": "drupal-module",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-2.x": "2.x-dev"
  4283. },
  4284. "drupal": {
  4285. "version": "2.0.0-beta4+3-dev",
  4286. "datestamp": "1697545494",
  4287. "security-coverage": {
  4288. "status": "not-covered",
  4289. "message": "Dev releases are not covered by Drupal security advisories."
  4290. }
  4291. }
  4292. },
  4293. "notification-url": "https://packages.drupal.org/8/downloads",
  4294. "license": [
  4295. "GPL-2.0-or-later"
  4296. ],
  4297. "authors": [
  4298. {
  4299. "name": "colan",
  4300. "homepage": "https://www.drupal.org/user/58704"
  4301. },
  4302. {
  4303. "name": "joevagyok",
  4304. "homepage": "https://www.drupal.org/user/2876343"
  4305. },
  4306. {
  4307. "name": "NickDickinsonWilde",
  4308. "homepage": "https://www.drupal.org/user/3094661"
  4309. },
  4310. {
  4311. "name": "Rajeshreeputra",
  4312. "homepage": "https://www.drupal.org/user/3418561"
  4313. },
  4314. {
  4315. "name": "Upchuk",
  4316. "homepage": "https://www.drupal.org/user/1885838"
  4317. },
  4318. {
  4319. "name": "vpeltot",
  4320. "homepage": "https://www.drupal.org/user/1361586"
  4321. }
  4322. ],
  4323. "description": "Add a clone action for all entities.",
  4324. "homepage": "https://drupal.org/project/entity_clone",
  4325. "support": {
  4326. "source": "https://git.drupalcode.org/project/entity_clone"
  4327. }
  4328. },
  4329. {
  4330. "name": "drupal/entity_reference_revisions",
  4331. "version": "1.10.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4335. "reference": "8.x-1.10"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4340. "reference": "8.x-1.10",
  4341. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4342. },
  4343. "require": {
  4344. "drupal/core": "^9 || ^10"
  4345. },
  4346. "require-dev": {
  4347. "drupal/diff": "1.x-dev"
  4348. },
  4349. "type": "drupal-module",
  4350. "extra": {
  4351. "drupal": {
  4352. "version": "8.x-1.10",
  4353. "datestamp": "1660664712",
  4354. "security-coverage": {
  4355. "status": "covered",
  4356. "message": "Covered by Drupal's security advisory policy"
  4357. }
  4358. },
  4359. "drush": {
  4360. "services": {
  4361. "drush.services.yml": "^9 || ^10 || ^11"
  4362. }
  4363. }
  4364. },
  4365. "notification-url": "https://packages.drupal.org/8/downloads",
  4366. "license": [
  4367. "GPL-2.0-or-later"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Berdir",
  4372. "homepage": "https://www.drupal.org/user/214652"
  4373. },
  4374. {
  4375. "name": "Frans",
  4376. "homepage": "https://www.drupal.org/user/514222"
  4377. },
  4378. {
  4379. "name": "jeroen.b",
  4380. "homepage": "https://www.drupal.org/user/1853532"
  4381. },
  4382. {
  4383. "name": "miro_dietiker",
  4384. "homepage": "https://www.drupal.org/user/227761"
  4385. }
  4386. ],
  4387. "description": "Entity Reference Revisions",
  4388. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4389. "support": {
  4390. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4391. }
  4392. },
  4393. {
  4394. "name": "drupal/extlink",
  4395. "version": "1.7.0",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://git.drupalcode.org/project/extlink.git",
  4399. "reference": "8.x-1.7"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4404. "reference": "8.x-1.7",
  4405. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4406. },
  4407. "require": {
  4408. "drupal/core": "^8 || ^9 || ^10"
  4409. },
  4410. "type": "drupal-module",
  4411. "extra": {
  4412. "drupal": {
  4413. "version": "8.x-1.7",
  4414. "datestamp": "1665770295",
  4415. "security-coverage": {
  4416. "status": "covered",
  4417. "message": "Covered by Drupal's security advisory policy"
  4418. }
  4419. }
  4420. },
  4421. "notification-url": "https://packages.drupal.org/8/downloads",
  4422. "license": [
  4423. "GPL-2.0-or-later"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Nate Lampton",
  4428. "homepage": "https://www.drupal.org/u/quicksketch",
  4429. "role": "Maintainer"
  4430. },
  4431. {
  4432. "name": "Lachlan Ennis",
  4433. "homepage": "https://www.drupal.org/u/elachlan",
  4434. "role": "Maintainer"
  4435. },
  4436. {
  4437. "name": "Neslee Canil Pinto",
  4438. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4439. "role": "Maintainer"
  4440. }
  4441. ],
  4442. "description": "Modify behavior and appearance of external links.",
  4443. "homepage": "https://www.drupal.org/project/extlink",
  4444. "keywords": [
  4445. "Drupal",
  4446. "External Links"
  4447. ],
  4448. "support": {
  4449. "source": "https://git.drupalcode.org/project/extlink",
  4450. "issues": "https://www.drupal.org/project/issues/extlink"
  4451. }
  4452. },
  4453. {
  4454. "name": "drupal/field_group",
  4455. "version": "dev-3.x",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://git.drupalcode.org/project/field_group.git",
  4459. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4460. },
  4461. "require": {
  4462. "drupal/core": "^9.2 || ^10"
  4463. },
  4464. "type": "drupal-module",
  4465. "extra": {
  4466. "branch-alias": {
  4467. "dev-3.x": "3.x-dev"
  4468. },
  4469. "drupal": {
  4470. "version": "8.x-3.4+4-dev",
  4471. "datestamp": "1696831482",
  4472. "security-coverage": {
  4473. "status": "not-covered",
  4474. "message": "Dev releases are not covered by Drupal security advisories."
  4475. }
  4476. }
  4477. },
  4478. "notification-url": "https://packages.drupal.org/8/downloads",
  4479. "license": [
  4480. "GPL-2.0-or-later"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "Anybody",
  4485. "homepage": "https://www.drupal.org/user/291091"
  4486. },
  4487. {
  4488. "name": "Hydra",
  4489. "homepage": "https://www.drupal.org/user/647364"
  4490. },
  4491. {
  4492. "name": "jyve",
  4493. "homepage": "https://www.drupal.org/user/591438"
  4494. },
  4495. {
  4496. "name": "nils.destoop",
  4497. "homepage": "https://www.drupal.org/user/361625"
  4498. },
  4499. {
  4500. "name": "Stalski",
  4501. "homepage": "https://www.drupal.org/user/322618"
  4502. },
  4503. {
  4504. "name": "swentel",
  4505. "homepage": "https://www.drupal.org/user/107403"
  4506. }
  4507. ],
  4508. "description": "Provides the field_group module.",
  4509. "homepage": "https://www.drupal.org/project/field_group",
  4510. "support": {
  4511. "source": "https://git.drupalcode.org/project/field_group",
  4512. "issues": "https://www.drupal.org/project/issues/field_group"
  4513. }
  4514. },
  4515. {
  4516. "name": "drupal/field_permissions",
  4517. "version": "1.3.0",
  4518. "source": {
  4519. "type": "git",
  4520. "url": "https://git.drupalcode.org/project/field_permissions.git",
  4521. "reference": "8.x-1.3"
  4522. },
  4523. "dist": {
  4524. "type": "zip",
  4525. "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.3.zip",
  4526. "reference": "8.x-1.3",
  4527. "shasum": "f3815d21b423c94e800388f3c29237fc1a00189d"
  4528. },
  4529. "require": {
  4530. "drupal/core": ">=8.9 <11"
  4531. },
  4532. "type": "drupal-module",
  4533. "extra": {
  4534. "drupal": {
  4535. "version": "8.x-1.3",
  4536. "datestamp": "1703264421",
  4537. "security-coverage": {
  4538. "status": "covered",
  4539. "message": "Covered by Drupal's security advisory policy"
  4540. }
  4541. },
  4542. "branch-alias": {
  4543. "dev-8.x-1.x": "1.x-dev"
  4544. }
  4545. },
  4546. "notification-url": "https://packages.drupal.org/8/downloads",
  4547. "license": [
  4548. "GPL-2.0-or-later"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "japerry",
  4553. "homepage": "https://www.drupal.org/user/45640"
  4554. },
  4555. {
  4556. "name": "jhedstrom",
  4557. "homepage": "https://www.drupal.org/user/208732"
  4558. },
  4559. {
  4560. "name": "mariacha1",
  4561. "homepage": "https://www.drupal.org/user/2210776"
  4562. },
  4563. {
  4564. "name": "markus_petrux",
  4565. "homepage": "https://www.drupal.org/user/39593"
  4566. },
  4567. {
  4568. "name": "RobLoach",
  4569. "homepage": "https://www.drupal.org/user/61114"
  4570. }
  4571. ],
  4572. "description": "The Field Permissions module allows site administrators to set field-level permissions to edit, view and create fields on any entity.",
  4573. "homepage": "https://www.drupal.org/project/field_permissions",
  4574. "support": {
  4575. "source": "https://git.drupalcode.org/project/field_permissions",
  4576. "issues": "https://www.drupal.org/project/issues/field_permissions"
  4577. }
  4578. },
  4579. {
  4580. "name": "drupal/file_mdm",
  4581. "version": "2.6.0",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4585. "reference": "8.x-2.6"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4590. "reference": "8.x-2.6",
  4591. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4592. },
  4593. "require": {
  4594. "drupal/core": "^9.3 | ^10",
  4595. "fileeye/pel": "^0.9.20",
  4596. "phenx/php-font-lib": "^0.5.4"
  4597. },
  4598. "require-dev": {
  4599. "drupal/vendor_stream_wrapper": "^2.0.2",
  4600. "fileeye/linuxlibertine-fonts": "^5.3"
  4601. },
  4602. "type": "drupal-module",
  4603. "extra": {
  4604. "drupal": {
  4605. "version": "8.x-2.6",
  4606. "datestamp": "1688489716",
  4607. "security-coverage": {
  4608. "status": "covered",
  4609. "message": "Covered by Drupal's security advisory policy"
  4610. }
  4611. }
  4612. },
  4613. "notification-url": "https://packages.drupal.org/8/downloads",
  4614. "license": [
  4615. "GPL-2.0-or-later"
  4616. ],
  4617. "authors": [
  4618. {
  4619. "name": "mondrake",
  4620. "homepage": "https://www.drupal.org/user/1307444"
  4621. }
  4622. ],
  4623. "description": "Provides a service to manage file metadata.",
  4624. "homepage": "https://www.drupal.org/project/file_mdm",
  4625. "support": {
  4626. "source": "https://git.drupalcode.org/project/file_mdm"
  4627. }
  4628. },
  4629. {
  4630. "name": "drupal/filter_perms",
  4631. "version": "dev-1.x",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4635. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4636. },
  4637. "require": {
  4638. "drupal/core": "^9.0 || ^10.0"
  4639. },
  4640. "type": "drupal-module",
  4641. "extra": {
  4642. "branch-alias": {
  4643. "dev-1.x": "1.x-dev"
  4644. },
  4645. "drupal": {
  4646. "version": "8.x-1.0-alpha2+1-dev",
  4647. "datestamp": "1697635045",
  4648. "security-coverage": {
  4649. "status": "not-covered",
  4650. "message": "Dev releases are not covered by Drupal security advisories."
  4651. }
  4652. }
  4653. },
  4654. "notification-url": "https://packages.drupal.org/8/downloads",
  4655. "license": [
  4656. "GPL-2.0+"
  4657. ],
  4658. "authors": [
  4659. {
  4660. "name": "cYu",
  4661. "homepage": "https://www.drupal.org/user/202205"
  4662. },
  4663. {
  4664. "name": "deekayen",
  4665. "homepage": "https://www.drupal.org/user/972"
  4666. },
  4667. {
  4668. "name": "ivavictoria",
  4669. "homepage": "https://www.drupal.org/user/3061533"
  4670. },
  4671. {
  4672. "name": "justcaldwell",
  4673. "homepage": "https://www.drupal.org/user/290069"
  4674. },
  4675. {
  4676. "name": "mgbellaire",
  4677. "homepage": "https://www.drupal.org/user/1831932"
  4678. },
  4679. {
  4680. "name": "willzyx",
  4681. "homepage": "https://www.drupal.org/user/1043862"
  4682. }
  4683. ],
  4684. "description": "Provides role and module filters to simplify the user permissions page.",
  4685. "homepage": "https://www.drupal.org/project/filter_perms",
  4686. "support": {
  4687. "source": "http://cgit.drupalcode.org/filter_perms",
  4688. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4689. }
  4690. },
  4691. {
  4692. "name": "drupal/formatter_suite",
  4693. "version": "2.0.0",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4697. "reference": "2.0.0"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4702. "reference": "2.0.0",
  4703. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4704. },
  4705. "require": {
  4706. "drupal/core": "^9 || ^10"
  4707. },
  4708. "type": "drupal-module",
  4709. "extra": {
  4710. "drupal": {
  4711. "version": "2.0.0",
  4712. "datestamp": "1694036572",
  4713. "security-coverage": {
  4714. "status": "covered",
  4715. "message": "Covered by Drupal's security advisory policy"
  4716. }
  4717. }
  4718. },
  4719. "notification-url": "https://packages.drupal.org/8/downloads",
  4720. "license": [
  4721. "GPL-2.0-or-later"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "thecooltechguy",
  4726. "homepage": "https://www.drupal.org/user/3674323"
  4727. },
  4728. {
  4729. "name": "toamit",
  4730. "homepage": "https://www.drupal.org/user/2820523"
  4731. }
  4732. ],
  4733. "description": "Field formaters to present numbers, text, links, etc.",
  4734. "homepage": "https://www.drupal.org/project/formatter_suite",
  4735. "keywords": [
  4736. "Drupal",
  4737. "Format"
  4738. ],
  4739. "support": {
  4740. "source": "http://cgit.drupalcode.org/formatter_suite",
  4741. "issues": "http://drupal.org/project/issues/formatter_suite"
  4742. }
  4743. },
  4744. {
  4745. "name": "drupal/honeypot",
  4746. "version": "2.1.3",
  4747. "source": {
  4748. "type": "git",
  4749. "url": "https://git.drupalcode.org/project/honeypot.git",
  4750. "reference": "2.1.3"
  4751. },
  4752. "dist": {
  4753. "type": "zip",
  4754. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4755. "reference": "2.1.3",
  4756. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4757. },
  4758. "require": {
  4759. "drupal/core": "^9.2 || ^10"
  4760. },
  4761. "require-dev": {
  4762. "drupal/rules": "^3.0"
  4763. },
  4764. "type": "drupal-module",
  4765. "extra": {
  4766. "drupal": {
  4767. "version": "2.1.3",
  4768. "datestamp": "1695604754",
  4769. "security-coverage": {
  4770. "status": "covered",
  4771. "message": "Covered by Drupal's security advisory policy"
  4772. }
  4773. }
  4774. },
  4775. "notification-url": "https://packages.drupal.org/8/downloads",
  4776. "license": [
  4777. "GPL-2.0-or-later"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "Jeff Geerling",
  4782. "homepage": "https://www.drupal.org/user/389011",
  4783. "email": "geerlingguy@mac.com"
  4784. },
  4785. {
  4786. "name": "Manuel Garcia",
  4787. "homepage": "https://www.drupal.org/user/213194"
  4788. },
  4789. {
  4790. "name": "TR",
  4791. "homepage": "https://www.drupal.org/user/202830"
  4792. },
  4793. {
  4794. "name": "vijaycs85",
  4795. "homepage": "https://www.drupal.org/user/93488"
  4796. }
  4797. ],
  4798. "description": "Mitigates spam form submissions using the honeypot method.",
  4799. "homepage": "https://www.drupal.org/project/honeypot",
  4800. "keywords": [
  4801. "deterrent",
  4802. "form",
  4803. "honeypot",
  4804. "honeytrap",
  4805. "php",
  4806. "spam"
  4807. ],
  4808. "support": {
  4809. "source": "https://git.drupalcode.org/project/honeypot",
  4810. "issues": "https://www.drupal.org/project/issues/honeypot"
  4811. }
  4812. },
  4813. {
  4814. "name": "drupal/image_delta_formatter",
  4815. "version": "1.2.0",
  4816. "source": {
  4817. "type": "git",
  4818. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4819. "reference": "8.x-1.2"
  4820. },
  4821. "dist": {
  4822. "type": "zip",
  4823. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.2.zip",
  4824. "reference": "8.x-1.2",
  4825. "shasum": "e236790ad92bdbc8a0ba0aa042a8580d8ce9f425"
  4826. },
  4827. "require": {
  4828. "drupal/core": "^8 || ^9 || ^10"
  4829. },
  4830. "type": "drupal-module",
  4831. "extra": {
  4832. "drupal": {
  4833. "version": "8.x-1.2",
  4834. "datestamp": "1685543777",
  4835. "security-coverage": {
  4836. "status": "covered",
  4837. "message": "Covered by Drupal's security advisory policy"
  4838. }
  4839. }
  4840. },
  4841. "notification-url": "https://packages.drupal.org/8/downloads",
  4842. "license": [
  4843. "GPL-2.0-or-later"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "bojanz",
  4848. "homepage": "https://www.drupal.org/user/86106"
  4849. },
  4850. {
  4851. "name": "fgm",
  4852. "homepage": "https://www.drupal.org/user/27985"
  4853. },
  4854. {
  4855. "name": "jsacksick",
  4856. "homepage": "https://www.drupal.org/user/972218"
  4857. }
  4858. ],
  4859. "description": "Provides a formatter that displays a specific delta of a multivalue imagefield.",
  4860. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4861. "support": {
  4862. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4863. }
  4864. },
  4865. {
  4866. "name": "drupal/image_field_caption",
  4867. "version": "2.0.1",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4871. "reference": "2.0.1"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://ftp.drupal.org/files/projects/image_field_caption-2.0.1.zip",
  4876. "reference": "2.0.1",
  4877. "shasum": "053e1ccfc638b3b2cd5c59c3c6a053e4e5041183"
  4878. },
  4879. "require": {
  4880. "drupal/core": "^9 || ^10"
  4881. },
  4882. "type": "drupal-module",
  4883. "extra": {
  4884. "drupal": {
  4885. "version": "2.0.1",
  4886. "datestamp": "1705443097",
  4887. "security-coverage": {
  4888. "status": "covered",
  4889. "message": "Covered by Drupal's security advisory policy"
  4890. }
  4891. }
  4892. },
  4893. "notification-url": "https://packages.drupal.org/8/downloads",
  4894. "license": [
  4895. "GPL-2.0+"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "awm",
  4900. "homepage": "https://www.drupal.org/user/1059398"
  4901. },
  4902. {
  4903. "name": "hanoii",
  4904. "homepage": "https://www.drupal.org/user/23157"
  4905. },
  4906. {
  4907. "name": "ironsizide",
  4908. "homepage": "https://www.drupal.org/user/787980"
  4909. },
  4910. {
  4911. "name": "iStryker",
  4912. "homepage": "https://www.drupal.org/user/303676"
  4913. },
  4914. {
  4915. "name": "RobLoach",
  4916. "homepage": "https://www.drupal.org/user/61114"
  4917. },
  4918. {
  4919. "name": "tyler.frankenstein",
  4920. "homepage": "https://www.drupal.org/user/150680"
  4921. }
  4922. ],
  4923. "description": "Add caption to image field.",
  4924. "homepage": "https://www.drupal.org/project/image_field_caption",
  4925. "support": {
  4926. "source": "https://git.drupalcode.org/project/image_field_caption",
  4927. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4928. }
  4929. },
  4930. {
  4931. "name": "drupal/imagemagick",
  4932. "version": "3.4.0",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4936. "reference": "8.x-3.4"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4941. "reference": "8.x-3.4",
  4942. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4943. },
  4944. "require": {
  4945. "drupal/core": "^9.3 || ^10",
  4946. "drupal/file_mdm": "^2.5",
  4947. "drupal/sophron": "^1.2 || ^2"
  4948. },
  4949. "type": "drupal-module",
  4950. "extra": {
  4951. "drupal": {
  4952. "version": "8.x-3.4",
  4953. "datestamp": "1663947784",
  4954. "security-coverage": {
  4955. "status": "covered",
  4956. "message": "Covered by Drupal's security advisory policy"
  4957. }
  4958. }
  4959. },
  4960. "notification-url": "https://packages.drupal.org/8/downloads",
  4961. "license": [
  4962. "GPL-2.0-or-later"
  4963. ],
  4964. "authors": [
  4965. {
  4966. "name": "Chris Charlton",
  4967. "homepage": "https://www.drupal.org/user/17089"
  4968. },
  4969. {
  4970. "name": "chx",
  4971. "homepage": "https://www.drupal.org/user/9446"
  4972. },
  4973. {
  4974. "name": "claudiu.cristea",
  4975. "homepage": "https://www.drupal.org/user/56348"
  4976. },
  4977. {
  4978. "name": "dman",
  4979. "homepage": "https://www.drupal.org/user/33240"
  4980. },
  4981. {
  4982. "name": "dopry",
  4983. "homepage": "https://www.drupal.org/user/22202"
  4984. },
  4985. {
  4986. "name": "drewish",
  4987. "homepage": "https://www.drupal.org/user/34869"
  4988. },
  4989. {
  4990. "name": "gdl",
  4991. "homepage": "https://www.drupal.org/user/507326"
  4992. },
  4993. {
  4994. "name": "mondrake",
  4995. "homepage": "https://www.drupal.org/user/1307444"
  4996. },
  4997. {
  4998. "name": "quicksketch",
  4999. "homepage": "https://www.drupal.org/user/35821"
  5000. },
  5001. {
  5002. "name": "sun",
  5003. "homepage": "https://www.drupal.org/user/54136"
  5004. },
  5005. {
  5006. "name": "walkah",
  5007. "homepage": "https://www.drupal.org/user/1531"
  5008. }
  5009. ],
  5010. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5011. "homepage": "https://www.drupal.org/project/imagemagick",
  5012. "support": {
  5013. "source": "https://git.drupalcode.org/project/imagemagick"
  5014. }
  5015. },
  5016. {
  5017. "name": "drupal/inline_entity_form",
  5018. "version": "1.0.0-rc15",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5022. "reference": "8.x-1.0-rc15"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  5027. "reference": "8.x-1.0-rc15",
  5028. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  5029. },
  5030. "require": {
  5031. "drupal/core": "^8.8 || ^9 || ^10",
  5032. "php": ">=7.1"
  5033. },
  5034. "require-dev": {
  5035. "drupal/entity_reference_revisions": "^1.0"
  5036. },
  5037. "type": "drupal-module",
  5038. "extra": {
  5039. "drupal": {
  5040. "version": "8.x-1.0-rc15",
  5041. "datestamp": "1678126675",
  5042. "security-coverage": {
  5043. "status": "not-covered",
  5044. "message": "RC releases are not covered by Drupal security advisories."
  5045. }
  5046. }
  5047. },
  5048. "notification-url": "https://packages.drupal.org/8/downloads",
  5049. "license": [
  5050. "GPL-2.0-or-later"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "bojanz",
  5055. "homepage": "https://www.drupal.org/user/86106"
  5056. },
  5057. {
  5058. "name": "Centarro",
  5059. "homepage": "https://www.drupal.org/user/3661446"
  5060. },
  5061. {
  5062. "name": "dawehner",
  5063. "homepage": "https://www.drupal.org/user/99340"
  5064. },
  5065. {
  5066. "name": "geek-merlin",
  5067. "homepage": "https://www.drupal.org/user/229048"
  5068. },
  5069. {
  5070. "name": "joachim",
  5071. "homepage": "https://www.drupal.org/user/107701"
  5072. },
  5073. {
  5074. "name": "jsacksick",
  5075. "homepage": "https://www.drupal.org/user/972218"
  5076. },
  5077. {
  5078. "name": "oknate",
  5079. "homepage": "https://www.drupal.org/user/471638"
  5080. },
  5081. {
  5082. "name": "podarok",
  5083. "homepage": "https://www.drupal.org/user/116002"
  5084. },
  5085. {
  5086. "name": "ram4nd",
  5087. "homepage": "https://www.drupal.org/user/601534"
  5088. },
  5089. {
  5090. "name": "rszrama",
  5091. "homepage": "https://www.drupal.org/user/49344"
  5092. },
  5093. {
  5094. "name": "slashrsm",
  5095. "homepage": "https://www.drupal.org/user/744628"
  5096. },
  5097. {
  5098. "name": "webflo",
  5099. "homepage": "https://www.drupal.org/user/254778"
  5100. }
  5101. ],
  5102. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5103. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5104. "support": {
  5105. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5106. }
  5107. },
  5108. {
  5109. "name": "drupal/jquery_ui",
  5110. "version": "1.6.0",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5114. "reference": "8.x-1.6"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  5119. "reference": "8.x-1.6",
  5120. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  5121. },
  5122. "require": {
  5123. "drupal/core": "^9.2 || ^10"
  5124. },
  5125. "type": "drupal-module",
  5126. "extra": {
  5127. "drupal": {
  5128. "version": "8.x-1.6",
  5129. "datestamp": "1668521197",
  5130. "security-coverage": {
  5131. "status": "covered",
  5132. "message": "Covered by Drupal's security advisory policy"
  5133. }
  5134. }
  5135. },
  5136. "notification-url": "https://packages.drupal.org/8/downloads",
  5137. "license": [
  5138. "GPL-2.0-or-later"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "bnjmnm",
  5143. "homepage": "https://www.drupal.org/user/2369194"
  5144. },
  5145. {
  5146. "name": "jjeff",
  5147. "homepage": "https://www.drupal.org/user/17190"
  5148. },
  5149. {
  5150. "name": "lauriii",
  5151. "homepage": "https://www.drupal.org/user/1078742"
  5152. },
  5153. {
  5154. "name": "litwol",
  5155. "homepage": "https://www.drupal.org/user/78134"
  5156. },
  5157. {
  5158. "name": "mfb",
  5159. "homepage": "https://www.drupal.org/user/12302"
  5160. },
  5161. {
  5162. "name": "mfer",
  5163. "homepage": "https://www.drupal.org/user/25701"
  5164. },
  5165. {
  5166. "name": "mikelutz",
  5167. "homepage": "https://www.drupal.org/user/2972409"
  5168. },
  5169. {
  5170. "name": "nod_",
  5171. "homepage": "https://www.drupal.org/user/598310"
  5172. },
  5173. {
  5174. "name": "phenaproxima",
  5175. "homepage": "https://www.drupal.org/user/205645"
  5176. },
  5177. {
  5178. "name": "RobLoach",
  5179. "homepage": "https://www.drupal.org/user/61114"
  5180. },
  5181. {
  5182. "name": "sun",
  5183. "homepage": "https://www.drupal.org/user/54136"
  5184. },
  5185. {
  5186. "name": "webchick",
  5187. "homepage": "https://www.drupal.org/user/24967"
  5188. },
  5189. {
  5190. "name": "Wim Leers",
  5191. "homepage": "https://www.drupal.org/user/99777"
  5192. },
  5193. {
  5194. "name": "zrpnr",
  5195. "homepage": "https://www.drupal.org/user/1448368"
  5196. }
  5197. ],
  5198. "description": "Provides jQuery UI library.",
  5199. "homepage": "https://www.drupal.org/project/jquery_ui",
  5200. "support": {
  5201. "source": "https://git.drupalcode.org/project/jquery_ui"
  5202. }
  5203. },
  5204. {
  5205. "name": "drupal/jquery_ui_datepicker",
  5206. "version": "2.0.0",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5210. "reference": "2.0.0"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  5215. "reference": "2.0.0",
  5216. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  5217. },
  5218. "require": {
  5219. "drupal/core": "^9.2 || ^10",
  5220. "drupal/jquery_ui": "^1.6"
  5221. },
  5222. "type": "drupal-module",
  5223. "extra": {
  5224. "drupal": {
  5225. "version": "2.0.0",
  5226. "datestamp": "1670871494",
  5227. "security-coverage": {
  5228. "status": "covered",
  5229. "message": "Covered by Drupal's security advisory policy"
  5230. }
  5231. }
  5232. },
  5233. "notification-url": "https://packages.drupal.org/8/downloads",
  5234. "license": [
  5235. "GPL-2.0-or-later"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "bnjmnm",
  5240. "homepage": "https://www.drupal.org/user/2369194"
  5241. },
  5242. {
  5243. "name": "jrockowitz",
  5244. "homepage": "https://www.drupal.org/user/371407"
  5245. },
  5246. {
  5247. "name": "lauriii",
  5248. "homepage": "https://www.drupal.org/user/1078742"
  5249. },
  5250. {
  5251. "name": "nod_",
  5252. "homepage": "https://www.drupal.org/user/598310"
  5253. },
  5254. {
  5255. "name": "phenaproxima",
  5256. "homepage": "https://www.drupal.org/user/205645"
  5257. },
  5258. {
  5259. "name": "zrpnr",
  5260. "homepage": "https://www.drupal.org/user/1448368"
  5261. }
  5262. ],
  5263. "description": "Provides jQuery UI Datepicker library.",
  5264. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5265. "support": {
  5266. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5267. }
  5268. },
  5269. {
  5270. "name": "drupal/jquery_ui_draggable",
  5271. "version": "2.0.0",
  5272. "source": {
  5273. "type": "git",
  5274. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5275. "reference": "2.0.0"
  5276. },
  5277. "dist": {
  5278. "type": "zip",
  5279. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  5280. "reference": "2.0.0",
  5281. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  5282. },
  5283. "require": {
  5284. "drupal/core": "^9.2 || ^10",
  5285. "drupal/jquery_ui": "^1.6"
  5286. },
  5287. "type": "drupal-module",
  5288. "extra": {
  5289. "drupal": {
  5290. "version": "2.0.0",
  5291. "datestamp": "1670871516",
  5292. "security-coverage": {
  5293. "status": "covered",
  5294. "message": "Covered by Drupal's security advisory policy"
  5295. }
  5296. }
  5297. },
  5298. "notification-url": "https://packages.drupal.org/8/downloads",
  5299. "license": [
  5300. "GPL-2.0-or-later"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "bnjmnm",
  5305. "homepage": "https://www.drupal.org/user/2369194"
  5306. },
  5307. {
  5308. "name": "lauriii",
  5309. "homepage": "https://www.drupal.org/user/1078742"
  5310. },
  5311. {
  5312. "name": "zrpnr",
  5313. "homepage": "https://www.drupal.org/user/1448368"
  5314. }
  5315. ],
  5316. "description": "Provides jQuery UI Draggable library.",
  5317. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5318. "support": {
  5319. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5320. }
  5321. },
  5322. {
  5323. "name": "drupal/jquery_ui_droppable",
  5324. "version": "1.5.0",
  5325. "source": {
  5326. "type": "git",
  5327. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5328. "reference": "8.x-1.5"
  5329. },
  5330. "dist": {
  5331. "type": "zip",
  5332. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  5333. "reference": "8.x-1.5",
  5334. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  5335. },
  5336. "require": {
  5337. "drupal/core": "^9.2 || ^10",
  5338. "drupal/jquery_ui": "^1.5",
  5339. "drupal/jquery_ui_draggable": "*"
  5340. },
  5341. "type": "drupal-module",
  5342. "extra": {
  5343. "drupal": {
  5344. "version": "8.x-1.5",
  5345. "datestamp": "1668452746",
  5346. "security-coverage": {
  5347. "status": "covered",
  5348. "message": "Covered by Drupal's security advisory policy"
  5349. }
  5350. }
  5351. },
  5352. "notification-url": "https://packages.drupal.org/8/downloads",
  5353. "license": [
  5354. "GPL-2.0-or-later"
  5355. ],
  5356. "authors": [
  5357. {
  5358. "name": "bnjmnm",
  5359. "homepage": "https://www.drupal.org/user/2369194"
  5360. },
  5361. {
  5362. "name": "lauriii",
  5363. "homepage": "https://www.drupal.org/user/1078742"
  5364. },
  5365. {
  5366. "name": "zrpnr",
  5367. "homepage": "https://www.drupal.org/user/1448368"
  5368. }
  5369. ],
  5370. "description": "Provides jQuery UI Droppable library.",
  5371. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5372. "support": {
  5373. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5374. }
  5375. },
  5376. {
  5377. "name": "drupal/jquery_ui_slider",
  5378. "version": "2.0.0",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5382. "reference": "2.0.0"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  5387. "reference": "2.0.0",
  5388. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  5389. },
  5390. "require": {
  5391. "drupal/core": "^9.2 || ^10",
  5392. "drupal/jquery_ui": "^1.6"
  5393. },
  5394. "type": "drupal-module",
  5395. "extra": {
  5396. "drupal": {
  5397. "version": "2.0.0",
  5398. "datestamp": "1670871571",
  5399. "security-coverage": {
  5400. "status": "covered",
  5401. "message": "Covered by Drupal's security advisory policy"
  5402. }
  5403. }
  5404. },
  5405. "notification-url": "https://packages.drupal.org/8/downloads",
  5406. "license": [
  5407. "GPL-2.0-or-later"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "bnjmnm",
  5412. "homepage": "https://www.drupal.org/user/2369194"
  5413. },
  5414. {
  5415. "name": "lauriii",
  5416. "homepage": "https://www.drupal.org/user/1078742"
  5417. },
  5418. {
  5419. "name": "zrpnr",
  5420. "homepage": "https://www.drupal.org/user/1448368"
  5421. }
  5422. ],
  5423. "description": "Provides jQuery UI Slider library.",
  5424. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5425. "support": {
  5426. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5427. }
  5428. },
  5429. {
  5430. "name": "drupal/jquery_ui_touch_punch",
  5431. "version": "1.1.0",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5435. "reference": "1.1.0"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  5440. "reference": "1.1.0",
  5441. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  5442. },
  5443. "require": {
  5444. "drupal/core": "^8 || ^9 || ^10",
  5445. "drupal/jquery_ui": "^1.0",
  5446. "politsin/jquery-ui-touch-punch": "^1.0"
  5447. },
  5448. "type": "drupal-module",
  5449. "extra": {
  5450. "drupal": {
  5451. "version": "1.1.0",
  5452. "datestamp": "1662744607",
  5453. "security-coverage": {
  5454. "status": "covered",
  5455. "message": "Covered by Drupal's security advisory policy"
  5456. }
  5457. }
  5458. },
  5459. "notification-url": "https://packages.drupal.org/8/downloads",
  5460. "license": [
  5461. "GPL-2.0-or-later"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "Naveen Valecha",
  5466. "homepage": "https://drupal.org/u/naveenvalecha",
  5467. "role": "Maintainer"
  5468. },
  5469. {
  5470. "name": "naveenvalecha",
  5471. "homepage": "https://www.drupal.org/user/2665733"
  5472. }
  5473. ],
  5474. "description": "Provides jQuery UI Touch Punch library.",
  5475. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5476. "keywords": [
  5477. "Drupal",
  5478. "jquery_ui_touch_punch"
  5479. ],
  5480. "support": {
  5481. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5482. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5483. }
  5484. },
  5485. {
  5486. "name": "drupal/link_attributes",
  5487. "version": "1.14.0",
  5488. "source": {
  5489. "type": "git",
  5490. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5491. "reference": "8.x-1.14"
  5492. },
  5493. "dist": {
  5494. "type": "zip",
  5495. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  5496. "reference": "8.x-1.14",
  5497. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  5498. },
  5499. "require": {
  5500. "drupal/core": "^9 || ^10"
  5501. },
  5502. "type": "drupal-module",
  5503. "extra": {
  5504. "drupal": {
  5505. "version": "8.x-1.14",
  5506. "datestamp": "1687393687",
  5507. "security-coverage": {
  5508. "status": "covered",
  5509. "message": "Covered by Drupal's security advisory policy"
  5510. }
  5511. }
  5512. },
  5513. "notification-url": "https://packages.drupal.org/8/downloads",
  5514. "license": [
  5515. "GPL-2.0-or-later"
  5516. ],
  5517. "authors": [
  5518. {
  5519. "name": "larowlan",
  5520. "homepage": "https://www.drupal.org/user/395439"
  5521. }
  5522. ],
  5523. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5524. "homepage": "https://www.drupal.org/project/link_attributes",
  5525. "keywords": [
  5526. "Drupal"
  5527. ],
  5528. "support": {
  5529. "source": "https://git.drupalcode.org/project/link_attributes",
  5530. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5531. }
  5532. },
  5533. {
  5534. "name": "drupal/linked_field",
  5535. "version": "1.5.0",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://git.drupalcode.org/project/linked_field.git",
  5539. "reference": "8.x-1.5"
  5540. },
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5544. "reference": "8.x-1.5",
  5545. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5546. },
  5547. "require": {
  5548. "drupal/core": "^8.8 || ^9 || ^10"
  5549. },
  5550. "type": "drupal-module",
  5551. "extra": {
  5552. "drupal": {
  5553. "version": "8.x-1.5",
  5554. "datestamp": "1677239525",
  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": "jcnventura",
  5568. "homepage": "https://www.drupal.org/user/122464"
  5569. },
  5570. {
  5571. "name": "yannickoo",
  5572. "homepage": "https://www.drupal.org/user/531118"
  5573. }
  5574. ],
  5575. "description": "Adds the functionality to link fields to a specific destination.",
  5576. "homepage": "https://www.drupal.org/project/linked_field",
  5577. "support": {
  5578. "source": "https://git.drupalcode.org/project/linked_field"
  5579. }
  5580. },
  5581. {
  5582. "name": "drupal/linkit",
  5583. "version": "6.1.2",
  5584. "source": {
  5585. "type": "git",
  5586. "url": "https://git.drupalcode.org/project/linkit.git",
  5587. "reference": "6.1.2"
  5588. },
  5589. "dist": {
  5590. "type": "zip",
  5591. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5592. "reference": "6.1.2",
  5593. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5594. },
  5595. "require": {
  5596. "drupal/core": "^10.1"
  5597. },
  5598. "require-dev": {
  5599. "drupal/ckeditor": "*",
  5600. "drupal/imce": "*"
  5601. },
  5602. "type": "drupal-module",
  5603. "extra": {
  5604. "drupal": {
  5605. "version": "6.1.2",
  5606. "datestamp": "1696865478",
  5607. "security-coverage": {
  5608. "status": "covered",
  5609. "message": "Covered by Drupal's security advisory policy"
  5610. }
  5611. }
  5612. },
  5613. "notification-url": "https://packages.drupal.org/8/downloads",
  5614. "license": [
  5615. "GPL-2.0-or-later"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Emil Stjerneman",
  5620. "homepage": "https://stjerneman.com",
  5621. "email": "emil@stjerneman.com",
  5622. "role": "Maintainer"
  5623. },
  5624. {
  5625. "name": "johnwebdev",
  5626. "homepage": "https://www.drupal.org/user/3331569"
  5627. },
  5628. {
  5629. "name": "mark_fullmer",
  5630. "homepage": "https://www.drupal.org/user/2612816"
  5631. }
  5632. ],
  5633. "description": "Linkit - Enriched linking experience",
  5634. "homepage": "http://drupal.org/project/linkit",
  5635. "support": {
  5636. "source": "http://cgit.drupalcode.org/linkit",
  5637. "issues": "http://drupal.org/project/linkit"
  5638. }
  5639. },
  5640. {
  5641. "name": "drupal/login_destination",
  5642. "version": "dev-2.x",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://git.drupalcode.org/project/login_destination.git",
  5646. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5647. },
  5648. "require": {
  5649. "drupal/core": "^8.7.10 || ^9 || ^10"
  5650. },
  5651. "require-dev": {
  5652. "drupal/admin_toolbar": "^1.23",
  5653. "drupal/admin_toolbar_tools": "*"
  5654. },
  5655. "type": "drupal-module",
  5656. "extra": {
  5657. "branch-alias": {
  5658. "dev-2.x": "2.x-dev"
  5659. },
  5660. "drupal": {
  5661. "version": "8.x-2.0-beta5+3-dev",
  5662. "datestamp": "1680181961",
  5663. "security-coverage": {
  5664. "status": "not-covered",
  5665. "message": "Dev releases are not covered by Drupal security advisories."
  5666. }
  5667. }
  5668. },
  5669. "notification-url": "https://packages.drupal.org/8/downloads",
  5670. "license": [
  5671. "GPL-2.0-or-later"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "rsvelko",
  5676. "homepage": "https://www.drupal.org/u/rsvelko",
  5677. "role": "Creator, Maintainer"
  5678. },
  5679. {
  5680. "name": "Other Contributors",
  5681. "homepage": "https://www.drupal.org/node/69051/committers",
  5682. "role": "Contributors"
  5683. },
  5684. {
  5685. "name": "ddrozdik",
  5686. "homepage": "https://www.drupal.org/user/574124"
  5687. },
  5688. {
  5689. "name": "jng12",
  5690. "homepage": "https://www.drupal.org/user/204316"
  5691. },
  5692. {
  5693. "name": "marcp",
  5694. "homepage": "https://www.drupal.org/user/20885"
  5695. },
  5696. {
  5697. "name": "mithy",
  5698. "homepage": "https://www.drupal.org/user/258911"
  5699. },
  5700. {
  5701. "name": "moshe weitzman",
  5702. "homepage": "https://www.drupal.org/user/23"
  5703. },
  5704. {
  5705. "name": "Oliver Huynh",
  5706. "homepage": "https://www.drupal.org/user/243730"
  5707. },
  5708. {
  5709. "name": "perennial.sky",
  5710. "homepage": "https://www.drupal.org/user/2622667"
  5711. },
  5712. {
  5713. "name": "rsvelko",
  5714. "homepage": "https://www.drupal.org/user/337401"
  5715. }
  5716. ],
  5717. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5718. "homepage": "https://drupal.org/project/login_destination",
  5719. "support": {
  5720. "source": "https://git.drupalcode.org/project/login_destination",
  5721. "issues": "https://drupal.org/project/issues/login_destination"
  5722. }
  5723. },
  5724. {
  5725. "name": "drupal/maillog",
  5726. "version": "dev-1.x",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://git.drupalcode.org/project/maillog.git",
  5730. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5731. },
  5732. "require": {
  5733. "drupal/core": "^9 || ^10"
  5734. },
  5735. "type": "drupal-module",
  5736. "extra": {
  5737. "branch-alias": {
  5738. "dev-1.x": "1.x-dev"
  5739. },
  5740. "drupal": {
  5741. "version": "8.x-1.1+2-dev",
  5742. "datestamp": "1686405787",
  5743. "security-coverage": {
  5744. "status": "not-covered",
  5745. "message": "Dev releases are not covered by Drupal security advisories."
  5746. }
  5747. }
  5748. },
  5749. "notification-url": "https://packages.drupal.org/8/downloads",
  5750. "license": [
  5751. "GPL-2.0-or-later"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "Berdir",
  5756. "homepage": "https://www.drupal.org/user/214652"
  5757. },
  5758. {
  5759. "name": "DamienMcKenna",
  5760. "homepage": "https://www.drupal.org/user/108450"
  5761. },
  5762. {
  5763. "name": "miro_dietiker",
  5764. "homepage": "https://www.drupal.org/user/227761"
  5765. },
  5766. {
  5767. "name": "pluess",
  5768. "homepage": "https://www.drupal.org/user/84659"
  5769. }
  5770. ],
  5771. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5772. "homepage": "https://www.drupal.org/project/maillog",
  5773. "support": {
  5774. "source": "https://git.drupalcode.org/project/maillog"
  5775. }
  5776. },
  5777. {
  5778. "name": "drupal/mailsystem",
  5779. "version": "4.4.0",
  5780. "source": {
  5781. "type": "git",
  5782. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5783. "reference": "8.x-4.4"
  5784. },
  5785. "dist": {
  5786. "type": "zip",
  5787. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.4.zip",
  5788. "reference": "8.x-4.4",
  5789. "shasum": "49b2e9efd090cdb4a282c7638b1c76d6723c47b6"
  5790. },
  5791. "require": {
  5792. "drupal/core": "^9 || ^10"
  5793. },
  5794. "type": "drupal-module",
  5795. "extra": {
  5796. "drupal": {
  5797. "version": "8.x-4.4",
  5798. "datestamp": "1657576306",
  5799. "security-coverage": {
  5800. "status": "covered",
  5801. "message": "Covered by Drupal's security advisory policy"
  5802. }
  5803. }
  5804. },
  5805. "notification-url": "https://packages.drupal.org/8/downloads",
  5806. "license": [
  5807. "GPL-2.0-or-later"
  5808. ],
  5809. "authors": [
  5810. {
  5811. "name": "Berdir",
  5812. "homepage": "https://www.drupal.org/user/214652"
  5813. },
  5814. {
  5815. "name": "Les Lim",
  5816. "homepage": "https://www.drupal.org/user/84263"
  5817. },
  5818. {
  5819. "name": "Manuel Garcia",
  5820. "homepage": "https://www.drupal.org/user/213194"
  5821. },
  5822. {
  5823. "name": "miro_dietiker",
  5824. "homepage": "https://www.drupal.org/user/227761"
  5825. },
  5826. {
  5827. "name": "Nafes",
  5828. "homepage": "https://www.drupal.org/user/2489926"
  5829. },
  5830. {
  5831. "name": "pillarsdotnet",
  5832. "homepage": "https://www.drupal.org/user/36148"
  5833. }
  5834. ],
  5835. "description": "Mail System",
  5836. "homepage": "https://www.drupal.org/project/mailsystem",
  5837. "support": {
  5838. "source": "https://git.drupalcode.org/project/mailsystem"
  5839. }
  5840. },
  5841. {
  5842. "name": "drupal/matomo",
  5843. "version": "1.23.0",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://git.drupalcode.org/project/matomo.git",
  5847. "reference": "8.x-1.23"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  5852. "reference": "8.x-1.23",
  5853. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  5854. },
  5855. "require": {
  5856. "drupal/core": "^9.0 || ^10"
  5857. },
  5858. "conflict": {
  5859. "drupal/csp": "<1.12"
  5860. },
  5861. "require-dev": {
  5862. "drupal/csp": "~1.12",
  5863. "drupal/php": "~1.1",
  5864. "drupal/token": "~1.9"
  5865. },
  5866. "type": "drupal-module",
  5867. "extra": {
  5868. "drupal": {
  5869. "version": "8.x-1.23",
  5870. "datestamp": "1700936102",
  5871. "security-coverage": {
  5872. "status": "covered",
  5873. "message": "Covered by Drupal's security advisory policy"
  5874. }
  5875. }
  5876. },
  5877. "notification-url": "https://packages.drupal.org/8/downloads",
  5878. "license": [
  5879. "GPL-2.0-or-later"
  5880. ],
  5881. "authors": [
  5882. {
  5883. "name": "C-Logemann",
  5884. "homepage": "https://www.drupal.org/user/218368"
  5885. },
  5886. {
  5887. "name": "Grimreaper",
  5888. "homepage": "https://www.drupal.org/user/2388214"
  5889. },
  5890. {
  5891. "name": "hass",
  5892. "homepage": "https://www.drupal.org/user/85918"
  5893. },
  5894. {
  5895. "name": "shelane",
  5896. "homepage": "https://www.drupal.org/user/2674989"
  5897. }
  5898. ],
  5899. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5900. "homepage": "https://www.drupal.org/project/matomo",
  5901. "support": {
  5902. "source": "https://git.drupalcode.org/project/matomo"
  5903. }
  5904. },
  5905. {
  5906. "name": "drupal/maxlength",
  5907. "version": "2.1.2",
  5908. "source": {
  5909. "type": "git",
  5910. "url": "https://git.drupalcode.org/project/maxlength.git",
  5911. "reference": "2.1.2"
  5912. },
  5913. "dist": {
  5914. "type": "zip",
  5915. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5916. "reference": "2.1.2",
  5917. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5918. },
  5919. "require": {
  5920. "drupal/core": "^9.2 || ^10"
  5921. },
  5922. "type": "drupal-module",
  5923. "extra": {
  5924. "drupal": {
  5925. "version": "2.1.2",
  5926. "datestamp": "1689974531",
  5927. "security-coverage": {
  5928. "status": "covered",
  5929. "message": "Covered by Drupal's security advisory policy"
  5930. }
  5931. }
  5932. },
  5933. "notification-url": "https://packages.drupal.org/8/downloads",
  5934. "license": [
  5935. "GPL-2.0-or-later"
  5936. ],
  5937. "authors": [
  5938. {
  5939. "name": "Marius Scurtescu (mariuss)",
  5940. "homepage": "https://www.drupal.org/u/mariuss",
  5941. "role": "Maintainer"
  5942. },
  5943. {
  5944. "name": "Clayton Dewey (cedewey)",
  5945. "homepage": "https://www.drupal.org/u/cedewey",
  5946. "role": "Maintainer"
  5947. },
  5948. {
  5949. "name": "Daniel Wehner (dawehner)",
  5950. "homepage": "https://www.drupal.org/u/dawehner",
  5951. "role": "Maintainer"
  5952. },
  5953. {
  5954. "name": "Paulino Michelazzo (pmichelazzo)",
  5955. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5956. "role": "Maintainer"
  5957. },
  5958. {
  5959. "name": "Jeff Hipp (hipp2bsquare)",
  5960. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5961. "role": "Maintainer"
  5962. },
  5963. {
  5964. "name": "Steven DuBois (srdtwc)",
  5965. "homepage": "https://www.drupal.org/u/srdtwc",
  5966. "role": "Maintainer"
  5967. },
  5968. {
  5969. "name": "srdtwc",
  5970. "homepage": "https://www.drupal.org/user/3422763"
  5971. }
  5972. ],
  5973. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5974. "homepage": "https://www.drupal.org/project/maxlength",
  5975. "support": {
  5976. "source": "https://git.drupalcode.org/project/maxlength",
  5977. "issues": "https://www.drupal.org/project/issues/maxlength"
  5978. }
  5979. },
  5980. {
  5981. "name": "drupal/menu_admin_per_menu",
  5982. "version": "1.5.0",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5986. "reference": "8.x-1.5"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5991. "reference": "8.x-1.5",
  5992. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5993. },
  5994. "require": {
  5995. "drupal/core": "^9 || ^10"
  5996. },
  5997. "type": "drupal-module",
  5998. "extra": {
  5999. "drupal": {
  6000. "version": "8.x-1.5",
  6001. "datestamp": "1660918821",
  6002. "security-coverage": {
  6003. "status": "covered",
  6004. "message": "Covered by Drupal's security advisory policy"
  6005. }
  6006. }
  6007. },
  6008. "notification-url": "https://packages.drupal.org/8/downloads",
  6009. "license": [
  6010. "GPL-2.0-or-later"
  6011. ],
  6012. "authors": [
  6013. {
  6014. "name": "anrikun",
  6015. "homepage": "https://www.drupal.org/user/410199"
  6016. },
  6017. {
  6018. "name": "JeroenT",
  6019. "homepage": "https://www.drupal.org/user/2228934"
  6020. },
  6021. {
  6022. "name": "jonas139",
  6023. "homepage": "https://www.drupal.org/user/2873401"
  6024. },
  6025. {
  6026. "name": "mkdok",
  6027. "homepage": "https://www.drupal.org/user/3308753"
  6028. }
  6029. ],
  6030. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6031. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6032. "support": {
  6033. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6034. }
  6035. },
  6036. {
  6037. "name": "drupal/menu_block",
  6038. "version": "dev-1.x",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://git.drupalcode.org/project/menu_block.git",
  6042. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  6043. },
  6044. "require": {
  6045. "drupal/core": "^9.1 || ^10"
  6046. },
  6047. "type": "drupal-module",
  6048. "extra": {
  6049. "branch-alias": {
  6050. "dev-1.x": "1.x-dev"
  6051. },
  6052. "drupal": {
  6053. "version": "8.x-1.9+1-dev",
  6054. "datestamp": "1667434044",
  6055. "security-coverage": {
  6056. "status": "not-covered",
  6057. "message": "Dev releases are not covered by Drupal security advisories."
  6058. }
  6059. }
  6060. },
  6061. "notification-url": "https://packages.drupal.org/8/downloads",
  6062. "license": [
  6063. "GPL-2.0-or-later"
  6064. ],
  6065. "authors": [
  6066. {
  6067. "name": "Dave Reid",
  6068. "homepage": "https://www.drupal.org/user/53892"
  6069. },
  6070. {
  6071. "name": "joelpittet",
  6072. "homepage": "https://www.drupal.org/user/160302"
  6073. },
  6074. {
  6075. "name": "JohnAlbin",
  6076. "homepage": "https://www.drupal.org/user/32095"
  6077. },
  6078. {
  6079. "name": "kim.pepper",
  6080. "homepage": "https://www.drupal.org/user/370574"
  6081. },
  6082. {
  6083. "name": "RenatoG",
  6084. "homepage": "https://www.drupal.org/user/3326031"
  6085. },
  6086. {
  6087. "name": "rrrob",
  6088. "homepage": "https://www.drupal.org/user/273533"
  6089. }
  6090. ],
  6091. "description": "Provides configurable blocks of menu links.",
  6092. "homepage": "https://www.drupal.org/project/menu_block",
  6093. "support": {
  6094. "source": "https://git.drupalcode.org/project/menu_block"
  6095. }
  6096. },
  6097. {
  6098. "name": "drupal/menu_position",
  6099. "version": "dev-1.x",
  6100. "source": {
  6101. "type": "git",
  6102. "url": "https://git.drupalcode.org/project/menu_position.git",
  6103. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  6104. },
  6105. "require": {
  6106. "drupal/core": "^8 || ^9 || ^10"
  6107. },
  6108. "type": "drupal-module",
  6109. "extra": {
  6110. "branch-alias": {
  6111. "dev-1.x": "1.x-dev"
  6112. },
  6113. "drupal": {
  6114. "version": "8.x-1.0+6-dev",
  6115. "datestamp": "1685505680",
  6116. "security-coverage": {
  6117. "status": "not-covered",
  6118. "message": "Dev releases are not covered by Drupal security advisories."
  6119. }
  6120. }
  6121. },
  6122. "notification-url": "https://packages.drupal.org/8/downloads",
  6123. "license": [
  6124. "GPL-2.0-or-later"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "BarisW",
  6129. "homepage": "https://www.drupal.org/user/107229"
  6130. },
  6131. {
  6132. "name": "joelpittet",
  6133. "homepage": "https://www.drupal.org/user/160302"
  6134. },
  6135. {
  6136. "name": "JohnAlbin",
  6137. "homepage": "https://www.drupal.org/user/32095"
  6138. },
  6139. {
  6140. "name": "lbainbridge",
  6141. "homepage": "https://www.drupal.org/user/2406996"
  6142. },
  6143. {
  6144. "name": "Rajab Natshah",
  6145. "homepage": "https://www.drupal.org/user/1414312"
  6146. },
  6147. {
  6148. "name": "Sutharsan",
  6149. "homepage": "https://www.drupal.org/user/73854"
  6150. }
  6151. ],
  6152. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6153. "homepage": "https://www.drupal.org/project/menu_position",
  6154. "support": {
  6155. "source": "https://git.drupalcode.org/project/menu_position",
  6156. "issues": "https://www.drupal.org/project/issues/menu_position"
  6157. }
  6158. },
  6159. {
  6160. "name": "drupal/menu_trail_by_path",
  6161. "version": "2.0.1",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://git.drupalcode.org/project/menu_trail_by_path.git",
  6165. "reference": "2.0.1"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.0.1.zip",
  6170. "reference": "2.0.1",
  6171. "shasum": "3c2c1b0ee669c26e6ccba8a345605b7c932be2bf"
  6172. },
  6173. "require": {
  6174. "drupal/core": "^8.8 || ^9.0 || ^10"
  6175. },
  6176. "type": "drupal-module",
  6177. "extra": {
  6178. "drupal": {
  6179. "version": "2.0.1",
  6180. "datestamp": "1701298206",
  6181. "security-coverage": {
  6182. "status": "covered",
  6183. "message": "Covered by Drupal's security advisory policy"
  6184. }
  6185. }
  6186. },
  6187. "notification-url": "https://packages.drupal.org/8/downloads",
  6188. "license": [
  6189. "GPL-2.0"
  6190. ],
  6191. "authors": [
  6192. {
  6193. "name": "Berdir",
  6194. "homepage": "https://www.drupal.org/user/214652"
  6195. },
  6196. {
  6197. "name": "davy-r",
  6198. "homepage": "https://www.drupal.org/user/3278771"
  6199. },
  6200. {
  6201. "name": "mbovan",
  6202. "homepage": "https://www.drupal.org/user/3149657"
  6203. },
  6204. {
  6205. "name": "redndahead",
  6206. "homepage": "https://www.drupal.org/user/160320"
  6207. },
  6208. {
  6209. "name": "SeriousMatters",
  6210. "homepage": "https://www.drupal.org/user/290439"
  6211. }
  6212. ],
  6213. "description": "Expand menus and set active-trail according to the current path.",
  6214. "homepage": "https://www.drupal.org/project/menu_trail_by_path",
  6215. "support": {
  6216. "source": "https://git.drupalcode.org/project/menu_trail_by_path"
  6217. }
  6218. },
  6219. {
  6220. "name": "drupal/mimemail",
  6221. "version": "1.0.0-alpha6",
  6222. "source": {
  6223. "type": "git",
  6224. "url": "https://git.drupalcode.org/project/mimemail.git",
  6225. "reference": "8.x-1.0-alpha6"
  6226. },
  6227. "dist": {
  6228. "type": "zip",
  6229. "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha6.zip",
  6230. "reference": "8.x-1.0-alpha6",
  6231. "shasum": "c25246747dac4372c7d5a5a5fd0f276d9e468eff"
  6232. },
  6233. "require": {
  6234. "drupal/core": "^9.3 || ^10",
  6235. "drupal/mailsystem": "^4"
  6236. },
  6237. "require-dev": {
  6238. "drupal/rules": "^3"
  6239. },
  6240. "type": "drupal-module",
  6241. "extra": {
  6242. "drupal": {
  6243. "version": "8.x-1.0-alpha6",
  6244. "datestamp": "1697143284",
  6245. "security-coverage": {
  6246. "status": "not-covered",
  6247. "message": "Alpha releases are not covered by Drupal security advisories."
  6248. }
  6249. }
  6250. },
  6251. "notification-url": "https://packages.drupal.org/8/downloads",
  6252. "license": [
  6253. "GPL-2.0-or-later"
  6254. ],
  6255. "authors": [
  6256. {
  6257. "name": "TR",
  6258. "homepage": "https://www.drupal.org/user/202830"
  6259. }
  6260. ],
  6261. "description": "Sends MIME-encoded emails with embedded images and attachments.",
  6262. "homepage": "https://www.drupal.org/project/mimemail",
  6263. "support": {
  6264. "source": "https://git.drupalcode.org/project/mimemail",
  6265. "issues": "https://www.drupal.org/project/issues/mimemail"
  6266. }
  6267. },
  6268. {
  6269. "name": "drupal/notify",
  6270. "version": "2.0.0-beta1",
  6271. "source": {
  6272. "type": "git",
  6273. "url": "https://git.drupalcode.org/project/notify.git",
  6274. "reference": "2.0.0-beta1"
  6275. },
  6276. "dist": {
  6277. "type": "zip",
  6278. "url": "https://ftp.drupal.org/files/projects/notify-2.0.0-beta1.zip",
  6279. "reference": "2.0.0-beta1",
  6280. "shasum": "a0f06792b4aed38c8c466389ae4c03497c4c9270"
  6281. },
  6282. "require": {
  6283. "drupal/core": "^9 || ^10"
  6284. },
  6285. "type": "drupal-module",
  6286. "extra": {
  6287. "drupal": {
  6288. "version": "2.0.0-beta1",
  6289. "datestamp": "1699808614",
  6290. "security-coverage": {
  6291. "status": "not-covered",
  6292. "message": "Beta releases are not covered by Drupal security advisories."
  6293. }
  6294. }
  6295. },
  6296. "notification-url": "https://packages.drupal.org/8/downloads",
  6297. "license": [
  6298. "GPL-2.0-or-later"
  6299. ],
  6300. "authors": [
  6301. {
  6302. "name": "gisle",
  6303. "homepage": "https://www.drupal.org/user/409554"
  6304. },
  6305. {
  6306. "name": "matt2000",
  6307. "homepage": "https://www.drupal.org/user/143172"
  6308. },
  6309. {
  6310. "name": "rik.scholten",
  6311. "homepage": "https://www.drupal.org/user/3661104"
  6312. }
  6313. ],
  6314. "description": "Enables notifications of new content and comments by e-mail.",
  6315. "homepage": "https://www.drupal.org/project/notify",
  6316. "support": {
  6317. "source": "https://git.drupalcode.org/project/notify"
  6318. }
  6319. },
  6320. {
  6321. "name": "drupal/page_manager",
  6322. "version": "4.0.0-rc2",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://git.drupalcode.org/project/page_manager.git",
  6326. "reference": "8.x-4.0-rc2"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  6331. "reference": "8.x-4.0-rc2",
  6332. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  6333. },
  6334. "require": {
  6335. "drupal/core": "^9.3 || ^10",
  6336. "drupal/ctools": "^3.11 || ^4.0"
  6337. },
  6338. "type": "drupal-module",
  6339. "extra": {
  6340. "drupal": {
  6341. "version": "8.x-4.0-rc2",
  6342. "datestamp": "1671210021",
  6343. "security-coverage": {
  6344. "status": "not-covered",
  6345. "message": "RC releases are not covered by Drupal security advisories."
  6346. }
  6347. },
  6348. "branch-alias": {
  6349. "dev-8.x-4.x": "4.x-dev"
  6350. }
  6351. },
  6352. "notification-url": "https://packages.drupal.org/8/downloads",
  6353. "license": [
  6354. "GPL-2.0-or-later"
  6355. ],
  6356. "authors": [
  6357. {
  6358. "name": "Tim Plunkett",
  6359. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6360. "role": "Maintainer"
  6361. },
  6362. {
  6363. "name": "EclipseGc",
  6364. "homepage": "https://www.drupal.org/user/61203"
  6365. },
  6366. {
  6367. "name": "ivnish",
  6368. "homepage": "https://www.drupal.org/user/3547706"
  6369. },
  6370. {
  6371. "name": "japerry",
  6372. "homepage": "https://www.drupal.org/user/45640"
  6373. },
  6374. {
  6375. "name": "joelpittet",
  6376. "homepage": "https://www.drupal.org/user/160302"
  6377. },
  6378. {
  6379. "name": "manuel.adan",
  6380. "homepage": "https://www.drupal.org/user/516420"
  6381. },
  6382. {
  6383. "name": "phenaproxima",
  6384. "homepage": "https://www.drupal.org/user/205645"
  6385. }
  6386. ],
  6387. "description": "Provides a way to place blocks on a custom page.",
  6388. "homepage": "https://www.drupal.org/project/page_manager",
  6389. "support": {
  6390. "source": "https://git.drupal.org/project/page_manager.git",
  6391. "issues": "https://www.drupal.org/project/issues/page_manager",
  6392. "irc": "irc://irc.freenode.org/drupal-contribute"
  6393. }
  6394. },
  6395. {
  6396. "name": "drupal/pagerer",
  6397. "version": "3.0.0",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://git.drupalcode.org/project/pagerer.git",
  6401. "reference": "3.0.0"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  6406. "reference": "3.0.0",
  6407. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  6408. },
  6409. "require": {
  6410. "drupal/core": "^10"
  6411. },
  6412. "type": "drupal-module",
  6413. "extra": {
  6414. "drupal": {
  6415. "version": "3.0.0",
  6416. "datestamp": "1663962586",
  6417. "security-coverage": {
  6418. "status": "covered",
  6419. "message": "Covered by Drupal's security advisory policy"
  6420. }
  6421. }
  6422. },
  6423. "notification-url": "https://packages.drupal.org/8/downloads",
  6424. "license": [
  6425. "GPL-2.0-or-later"
  6426. ],
  6427. "authors": [
  6428. {
  6429. "name": "mondrake",
  6430. "homepage": "https://www.drupal.org/user/1307444"
  6431. }
  6432. ],
  6433. "description": "Configurable pager styles.",
  6434. "homepage": "https://www.drupal.org/project/pagerer",
  6435. "support": {
  6436. "source": "https://git.drupalcode.org/project/pagerer"
  6437. }
  6438. },
  6439. {
  6440. "name": "drupal/panels",
  6441. "version": "4.7.0",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://git.drupalcode.org/project/panels.git",
  6445. "reference": "8.x-4.7"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  6450. "reference": "8.x-4.7",
  6451. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  6452. },
  6453. "require": {
  6454. "drupal/core": "^9.2 || ^10",
  6455. "drupal/ctools": "^3.12",
  6456. "drupal/jquery_ui_droppable": "^1.5"
  6457. },
  6458. "require-dev": {
  6459. "drupal/jquery_ui_droppable": "*",
  6460. "drupal/page_manager": "^4"
  6461. },
  6462. "type": "drupal-module",
  6463. "extra": {
  6464. "drupal": {
  6465. "version": "8.x-4.7",
  6466. "datestamp": "1668632919",
  6467. "security-coverage": {
  6468. "status": "covered",
  6469. "message": "Covered by Drupal's security advisory policy"
  6470. }
  6471. },
  6472. "branch-alias": {
  6473. "dev-8.x-4.x": "4.x-dev"
  6474. }
  6475. },
  6476. "notification-url": "https://packages.drupal.org/8/downloads",
  6477. "license": [
  6478. "GPL-2.0+"
  6479. ],
  6480. "authors": [
  6481. {
  6482. "name": "Jakob Perry",
  6483. "homepage": "https://www.drupal.org/u/japerry"
  6484. },
  6485. {
  6486. "name": "Samuel Mortenson",
  6487. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6488. },
  6489. {
  6490. "name": "See other contributors",
  6491. "homepage": "https://www.drupal.org/node/74958/committers"
  6492. },
  6493. {
  6494. "name": "joelpittet",
  6495. "homepage": "https://www.drupal.org/user/160302"
  6496. },
  6497. {
  6498. "name": "Letharion",
  6499. "homepage": "https://www.drupal.org/user/373603"
  6500. },
  6501. {
  6502. "name": "merlinofchaos",
  6503. "homepage": "https://www.drupal.org/user/26979"
  6504. },
  6505. {
  6506. "name": "neclimdul",
  6507. "homepage": "https://www.drupal.org/user/48673"
  6508. },
  6509. {
  6510. "name": "phenaproxima",
  6511. "homepage": "https://www.drupal.org/user/205645"
  6512. },
  6513. {
  6514. "name": "samuel.mortenson",
  6515. "homepage": "https://www.drupal.org/user/2582268"
  6516. }
  6517. ],
  6518. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6519. "homepage": "https://www.drupal.org/project/panels",
  6520. "support": {
  6521. "source": "http://git.drupal.org/project/panels.git",
  6522. "issues": "https://www.drupal.org/project/issues/panels",
  6523. "irc": "irc://irc.freenode.org/drupal-scotch"
  6524. }
  6525. },
  6526. {
  6527. "name": "drupal/paragraphs",
  6528. "version": "1.16.0",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6532. "reference": "8.x-1.16"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  6537. "reference": "8.x-1.16",
  6538. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  6539. },
  6540. "require": {
  6541. "drupal/core": "^9.3 || ^10",
  6542. "drupal/entity_reference_revisions": "~1.3"
  6543. },
  6544. "require-dev": {
  6545. "drupal/block_field": "1.x-dev",
  6546. "drupal/diff": "1.x-dev",
  6547. "drupal/entity_browser": "2.x-dev",
  6548. "drupal/entity_usage": "2.x-dev",
  6549. "drupal/field_group": "3.x-dev",
  6550. "drupal/inline_entity_form": "1.x-dev",
  6551. "drupal/paragraphs-paragraphs_library": "*",
  6552. "drupal/replicate": "1.x-dev",
  6553. "drupal/search_api": "1.x-dev",
  6554. "drupal/search_api_db": "*"
  6555. },
  6556. "suggest": {
  6557. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6558. },
  6559. "type": "drupal-module",
  6560. "extra": {
  6561. "drupal": {
  6562. "version": "8.x-1.16",
  6563. "datestamp": "1694007797",
  6564. "security-coverage": {
  6565. "status": "covered",
  6566. "message": "Covered by Drupal's security advisory policy"
  6567. }
  6568. }
  6569. },
  6570. "notification-url": "https://packages.drupal.org/8/downloads",
  6571. "license": [
  6572. "GPL-2.0-or-later"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "Berdir",
  6577. "homepage": "https://www.drupal.org/user/214652"
  6578. },
  6579. {
  6580. "name": "Frans",
  6581. "homepage": "https://www.drupal.org/user/514222"
  6582. },
  6583. {
  6584. "name": "jeroen.b",
  6585. "homepage": "https://www.drupal.org/user/1853532"
  6586. },
  6587. {
  6588. "name": "jstoller",
  6589. "homepage": "https://www.drupal.org/user/99012"
  6590. },
  6591. {
  6592. "name": "miro_dietiker",
  6593. "homepage": "https://www.drupal.org/user/227761"
  6594. },
  6595. {
  6596. "name": "Primsi",
  6597. "homepage": "https://www.drupal.org/user/282629"
  6598. }
  6599. ],
  6600. "description": "Enables the creation of Paragraphs entities.",
  6601. "homepage": "https://www.drupal.org/project/paragraphs",
  6602. "support": {
  6603. "source": "https://git.drupalcode.org/project/paragraphs"
  6604. }
  6605. },
  6606. {
  6607. "name": "drupal/path_alias_xt",
  6608. "version": "dev-1.x",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6612. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  6613. },
  6614. "require": {
  6615. "drupal/core": "^9.3 || ^10"
  6616. },
  6617. "type": "drupal-module",
  6618. "extra": {
  6619. "branch-alias": {
  6620. "dev-1.x": "1.x-dev"
  6621. },
  6622. "drupal": {
  6623. "version": "8.x-1.x-dev",
  6624. "datestamp": "1658166545",
  6625. "security-coverage": {
  6626. "status": "not-covered",
  6627. "message": "Dev releases are not covered by Drupal security advisories."
  6628. }
  6629. }
  6630. },
  6631. "notification-url": "https://packages.drupal.org/8/downloads",
  6632. "license": [
  6633. "GPL-2.0-or-later"
  6634. ],
  6635. "authors": [
  6636. {
  6637. "name": "adriancid",
  6638. "homepage": "https://www.drupal.org/user/1962106"
  6639. },
  6640. {
  6641. "name": "RdeBoer",
  6642. "homepage": "https://www.drupal.org/user/404007"
  6643. },
  6644. {
  6645. "name": "sdstyles",
  6646. "homepage": "https://www.drupal.org/user/1420228"
  6647. }
  6648. ],
  6649. "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.",
  6650. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6651. "support": {
  6652. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6653. }
  6654. },
  6655. {
  6656. "name": "drupal/pathauto",
  6657. "version": "1.12.0",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://git.drupalcode.org/project/pathauto.git",
  6661. "reference": "8.x-1.12"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  6666. "reference": "8.x-1.12",
  6667. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  6668. },
  6669. "require": {
  6670. "drupal/core": "^9.3 || ^10",
  6671. "drupal/ctools": "*",
  6672. "drupal/token": "*"
  6673. },
  6674. "suggest": {
  6675. "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."
  6676. },
  6677. "type": "drupal-module",
  6678. "extra": {
  6679. "drupal": {
  6680. "version": "8.x-1.12",
  6681. "datestamp": "1696776683",
  6682. "security-coverage": {
  6683. "status": "covered",
  6684. "message": "Covered by Drupal's security advisory policy"
  6685. }
  6686. },
  6687. "drush": {
  6688. "services": {
  6689. "drush.services.yml": "^9 || ^10"
  6690. }
  6691. }
  6692. },
  6693. "notification-url": "https://packages.drupal.org/8/downloads",
  6694. "license": [
  6695. "GPL-2.0-or-later"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Berdir",
  6700. "homepage": "https://www.drupal.org/user/214652"
  6701. },
  6702. {
  6703. "name": "Dave Reid",
  6704. "homepage": "https://www.drupal.org/user/53892"
  6705. },
  6706. {
  6707. "name": "Freso",
  6708. "homepage": "https://www.drupal.org/user/27504"
  6709. },
  6710. {
  6711. "name": "greggles",
  6712. "homepage": "https://www.drupal.org/user/36762"
  6713. }
  6714. ],
  6715. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6716. "homepage": "https://www.drupal.org/project/pathauto",
  6717. "support": {
  6718. "source": "https://cgit.drupalcode.org/pathauto",
  6719. "issues": "https://www.drupal.org/project/issues/pathauto",
  6720. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6721. }
  6722. },
  6723. {
  6724. "name": "drupal/pathologic",
  6725. "version": "2.0.0-alpha1",
  6726. "source": {
  6727. "type": "git",
  6728. "url": "https://git.drupalcode.org/project/pathologic.git",
  6729. "reference": "2.0.0-alpha1"
  6730. },
  6731. "dist": {
  6732. "type": "zip",
  6733. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6734. "reference": "2.0.0-alpha1",
  6735. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6736. },
  6737. "require": {
  6738. "drupal/core": "^9 || ^10"
  6739. },
  6740. "type": "drupal-module",
  6741. "extra": {
  6742. "drupal": {
  6743. "version": "2.0.0-alpha1",
  6744. "datestamp": "1681263978",
  6745. "security-coverage": {
  6746. "status": "not-covered",
  6747. "message": "Alpha releases are not covered by Drupal security advisories."
  6748. }
  6749. }
  6750. },
  6751. "notification-url": "https://packages.drupal.org/8/downloads",
  6752. "license": [
  6753. "GPL-2.0+"
  6754. ],
  6755. "authors": [
  6756. {
  6757. "name": "Berdir",
  6758. "homepage": "https://www.drupal.org/user/214652"
  6759. },
  6760. {
  6761. "name": "dww",
  6762. "homepage": "https://www.drupal.org/user/46549"
  6763. },
  6764. {
  6765. "name": "Garrett Albright",
  6766. "homepage": "https://www.drupal.org/user/191212"
  6767. },
  6768. {
  6769. "name": "mark_fullmer",
  6770. "homepage": "https://www.drupal.org/user/2612816"
  6771. }
  6772. ],
  6773. "description": "Helps avoid broken links and incorrect paths in content.",
  6774. "homepage": "https://www.drupal.org/project/pathologic",
  6775. "support": {
  6776. "source": "https://git.drupalcode.org/project/pathologic"
  6777. }
  6778. },
  6779. {
  6780. "name": "drupal/persistent_login",
  6781. "version": "1.6.0",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6785. "reference": "8.x-1.6"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6790. "reference": "8.x-1.6",
  6791. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6792. },
  6793. "require": {
  6794. "drupal/core": "^9.2 || ^10"
  6795. },
  6796. "type": "drupal-module",
  6797. "extra": {
  6798. "drupal": {
  6799. "version": "8.x-1.6",
  6800. "datestamp": "1679547817",
  6801. "security-coverage": {
  6802. "status": "covered",
  6803. "message": "Covered by Drupal's security advisory policy"
  6804. }
  6805. }
  6806. },
  6807. "notification-url": "https://packages.drupal.org/8/downloads",
  6808. "license": [
  6809. "GPL-2.0-or-later"
  6810. ],
  6811. "authors": [
  6812. {
  6813. "name": "gapple",
  6814. "homepage": "https://www.drupal.org/user/490940"
  6815. }
  6816. ],
  6817. "description": "Provides a \"Remember Me\" feature on the login form.",
  6818. "homepage": "https://www.drupal.org/project/persistent_login",
  6819. "keywords": [
  6820. "Drupal"
  6821. ],
  6822. "support": {
  6823. "source": "https://git.drupalcode.org/project/persistent_login",
  6824. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6825. }
  6826. },
  6827. {
  6828. "name": "drupal/phone_number",
  6829. "version": "2.0.0-alpha5",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://git.drupalcode.org/project/phone_number.git",
  6833. "reference": "2.0.0-alpha5"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6838. "reference": "2.0.0-alpha5",
  6839. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6840. },
  6841. "require": {
  6842. "drupal/core": "^9.2 || ^10",
  6843. "giggsey/libphonenumber-for-php": "^8.0"
  6844. },
  6845. "type": "drupal-module",
  6846. "extra": {
  6847. "drupal": {
  6848. "version": "2.0.0-alpha5",
  6849. "datestamp": "1698159525",
  6850. "security-coverage": {
  6851. "status": "not-covered",
  6852. "message": "Alpha releases are not covered by Drupal security advisories."
  6853. }
  6854. }
  6855. },
  6856. "notification-url": "https://packages.drupal.org/8/downloads",
  6857. "license": [
  6858. "GPL-2.0+"
  6859. ],
  6860. "authors": [
  6861. {
  6862. "name": "Christopher Caldwell",
  6863. "homepage": "https://www.drupal.org/u/chrisolof",
  6864. "email": "chrisolof@gmail.com",
  6865. "role": "Maintainer"
  6866. },
  6867. {
  6868. "name": "nyariv",
  6869. "homepage": "https://www.drupal.org/user/2747789"
  6870. },
  6871. {
  6872. "name": "tim-diels",
  6873. "homepage": "https://www.drupal.org/user/2915097"
  6874. },
  6875. {
  6876. "name": "vaish",
  6877. "homepage": "https://www.drupal.org/user/92189"
  6878. }
  6879. ],
  6880. "description": "A validated phone number field.",
  6881. "homepage": "http://drupal.org/project/phone_number",
  6882. "support": {
  6883. "source": "https://git.drupalcode.org/project/phone_number"
  6884. }
  6885. },
  6886. {
  6887. "name": "drupal/profile",
  6888. "version": "1.7.0",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://git.drupalcode.org/project/profile.git",
  6892. "reference": "8.x-1.7"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6897. "reference": "8.x-1.7",
  6898. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6899. },
  6900. "require": {
  6901. "drupal/core": "^9 || ^10",
  6902. "drupal/entity": "^1.0"
  6903. },
  6904. "require-dev": {
  6905. "drupal/token": "^1.7"
  6906. },
  6907. "type": "drupal-module",
  6908. "extra": {
  6909. "drupal": {
  6910. "version": "8.x-1.7",
  6911. "datestamp": "1665131792",
  6912. "security-coverage": {
  6913. "status": "covered",
  6914. "message": "Covered by Drupal's security advisory policy"
  6915. }
  6916. }
  6917. },
  6918. "notification-url": "https://packages.drupal.org/8/downloads",
  6919. "license": [
  6920. "GPL-2.0-or-later"
  6921. ],
  6922. "authors": [
  6923. {
  6924. "name": "bojanz",
  6925. "homepage": "https://www.drupal.org/user/86106"
  6926. },
  6927. {
  6928. "name": "daggerhart",
  6929. "homepage": "https://www.drupal.org/user/167806"
  6930. },
  6931. {
  6932. "name": "fago",
  6933. "homepage": "https://www.drupal.org/user/16747"
  6934. },
  6935. {
  6936. "name": "jsacksick",
  6937. "homepage": "https://www.drupal.org/user/972218"
  6938. },
  6939. {
  6940. "name": "mglaman",
  6941. "homepage": "https://www.drupal.org/user/2416470"
  6942. },
  6943. {
  6944. "name": "pcambra",
  6945. "homepage": "https://www.drupal.org/user/122101"
  6946. }
  6947. ],
  6948. "description": "Provides configurable user profiles.",
  6949. "homepage": "https://drupal.org/project/profile",
  6950. "support": {
  6951. "source": "https://git.drupalcode.org/project/profile"
  6952. }
  6953. },
  6954. {
  6955. "name": "drupal/quick_node_clone",
  6956. "version": "1.18.0",
  6957. "source": {
  6958. "type": "git",
  6959. "url": "https://git.drupalcode.org/project/quick_node_clone.git",
  6960. "reference": "8.x-1.18"
  6961. },
  6962. "dist": {
  6963. "type": "zip",
  6964. "url": "https://ftp.drupal.org/files/projects/quick_node_clone-8.x-1.18.zip",
  6965. "reference": "8.x-1.18",
  6966. "shasum": "ab17077eccb24e5c651fedc5056a50051882a13d"
  6967. },
  6968. "require": {
  6969. "drupal/core": "^8.8 || ^9 || ^10"
  6970. },
  6971. "require-dev": {
  6972. "drupal/group": "^1 || ^2 || ^3",
  6973. "drupal/paragraphs": "1.x-dev"
  6974. },
  6975. "type": "drupal-module",
  6976. "extra": {
  6977. "drupal": {
  6978. "version": "8.x-1.18",
  6979. "datestamp": "1707833857",
  6980. "security-coverage": {
  6981. "status": "covered",
  6982. "message": "Covered by Drupal's security advisory policy"
  6983. }
  6984. }
  6985. },
  6986. "notification-url": "https://packages.drupal.org/8/downloads",
  6987. "license": [
  6988. "GPL-2.0-or-later"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "vilepickle",
  6993. "homepage": "https://www.drupal.org/u/vilepickle",
  6994. "role": "Maintainer"
  6995. },
  6996. {
  6997. "name": "Neslee Canil Pinto",
  6998. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  6999. "role": "Maintainer"
  7000. }
  7001. ],
  7002. "description": "Quickly clone a node with regular fields.",
  7003. "homepage": "https://www.drupal.org/project/quick_node_clone",
  7004. "support": {
  7005. "source": "https://git.drupalcode.org/project/quick_node_clone",
  7006. "issues": "https://www.drupal.org/project/issues/quick_node_clone"
  7007. }
  7008. },
  7009. {
  7010. "name": "drupal/redirect",
  7011. "version": "1.9.0",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://git.drupalcode.org/project/redirect.git",
  7015. "reference": "8.x-1.9"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  7020. "reference": "8.x-1.9",
  7021. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  7022. },
  7023. "require": {
  7024. "drupal/core": "^9.2 || ^10"
  7025. },
  7026. "type": "drupal-module",
  7027. "extra": {
  7028. "drupal": {
  7029. "version": "8.x-1.9",
  7030. "datestamp": "1693393506",
  7031. "security-coverage": {
  7032. "status": "covered",
  7033. "message": "Covered by Drupal's security advisory policy"
  7034. }
  7035. }
  7036. },
  7037. "notification-url": "https://packages.drupal.org/8/downloads",
  7038. "license": [
  7039. "GPL-2.0-or-later"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Berdir",
  7044. "homepage": "https://www.drupal.org/user/214652"
  7045. },
  7046. {
  7047. "name": "Dave Reid",
  7048. "homepage": "https://www.drupal.org/user/53892"
  7049. },
  7050. {
  7051. "name": "Kristen Pol",
  7052. "homepage": "https://www.drupal.org/user/8389"
  7053. },
  7054. {
  7055. "name": "pifagor",
  7056. "homepage": "https://www.drupal.org/user/2375692"
  7057. }
  7058. ],
  7059. "description": "Allows users to redirect from old URLs to new URLs.",
  7060. "homepage": "https://www.drupal.org/project/redirect",
  7061. "support": {
  7062. "source": "https://git.drupalcode.org/project/redirect"
  7063. }
  7064. },
  7065. {
  7066. "name": "drupal/redis",
  7067. "version": "1.7.0",
  7068. "source": {
  7069. "type": "git",
  7070. "url": "https://git.drupalcode.org/project/redis.git",
  7071. "reference": "8.x-1.7"
  7072. },
  7073. "dist": {
  7074. "type": "zip",
  7075. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  7076. "reference": "8.x-1.7",
  7077. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  7078. },
  7079. "require": {
  7080. "drupal/core": "^9.3 || ^10"
  7081. },
  7082. "suggest": {
  7083. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  7084. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  7085. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  7086. },
  7087. "type": "drupal-module",
  7088. "extra": {
  7089. "drupal": {
  7090. "version": "8.x-1.7",
  7091. "datestamp": "1686175620",
  7092. "security-coverage": {
  7093. "status": "covered",
  7094. "message": "Covered by Drupal's security advisory policy"
  7095. }
  7096. }
  7097. },
  7098. "autoload": {
  7099. "psr-4": {
  7100. "Drupal\\redis\\": "src"
  7101. }
  7102. },
  7103. "notification-url": "https://packages.drupal.org/8/downloads",
  7104. "license": [
  7105. "GPL-2.0-or-later"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "Berdir",
  7110. "homepage": "https://www.drupal.org/user/214652"
  7111. },
  7112. {
  7113. "name": "greg.1.anderson",
  7114. "homepage": "https://www.drupal.org/user/438598"
  7115. },
  7116. {
  7117. "name": "kporras07",
  7118. "homepage": "https://www.drupal.org/user/1349780"
  7119. },
  7120. {
  7121. "name": "pounard",
  7122. "homepage": "https://www.drupal.org/user/240164"
  7123. }
  7124. ],
  7125. "description": "Integration of Drupal with the Redis key-value store.",
  7126. "homepage": "https://www.drupal.org/project/redis",
  7127. "support": {
  7128. "source": "https://git.drupalcode.org/project/redis"
  7129. }
  7130. },
  7131. {
  7132. "name": "drupal/rules",
  7133. "version": "4.0.0",
  7134. "source": {
  7135. "type": "git",
  7136. "url": "https://git.drupalcode.org/project/rules.git",
  7137. "reference": "4.0.0"
  7138. },
  7139. "dist": {
  7140. "type": "zip",
  7141. "url": "https://ftp.drupal.org/files/projects/rules-4.0.0.zip",
  7142. "reference": "4.0.0",
  7143. "shasum": "685c8cbcf7950e07459957f4536df77d9bf53531"
  7144. },
  7145. "require": {
  7146. "drupal/core": "^10.3 || ^11",
  7147. "drupal/typed_data": "^2.1"
  7148. },
  7149. "type": "drupal-module",
  7150. "extra": {
  7151. "drupal": {
  7152. "version": "4.0.0",
  7153. "datestamp": "1721935272",
  7154. "security-coverage": {
  7155. "status": "covered",
  7156. "message": "Covered by Drupal's security advisory policy"
  7157. }
  7158. },
  7159. "drush": {
  7160. "services": {
  7161. "drush.services.yml": ">=9"
  7162. }
  7163. }
  7164. },
  7165. "notification-url": "https://packages.drupal.org/8/downloads",
  7166. "license": [
  7167. "GPL-2.0-or-later"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "fago",
  7172. "homepage": "https://www.drupal.org/user/16747"
  7173. },
  7174. {
  7175. "name": "klausi",
  7176. "homepage": "https://www.drupal.org/user/262198"
  7177. },
  7178. {
  7179. "name": "tr",
  7180. "homepage": "https://www.drupal.org/user/202830"
  7181. }
  7182. ],
  7183. "description": "React on events and conditionally evaluate actions.",
  7184. "homepage": "https://www.drupal.org/project/rules",
  7185. "support": {
  7186. "source": "https://git.drupalcode.org/project/rules",
  7187. "issues": "https://www.drupal.org/project/issues/rules"
  7188. }
  7189. },
  7190. {
  7191. "name": "drupal/search_api",
  7192. "version": "1.30.0",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://git.drupalcode.org/project/search_api.git",
  7196. "reference": "8.x-1.30"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  7201. "reference": "8.x-1.30",
  7202. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  7203. },
  7204. "require": {
  7205. "drupal/core": "^9.3 || ^10.0"
  7206. },
  7207. "conflict": {
  7208. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7209. },
  7210. "require-dev": {
  7211. "drupal/language_fallback_fix": "@dev",
  7212. "drupal/search_api_autocomplete": "@dev",
  7213. "drupal/search_api_db": "*"
  7214. },
  7215. "suggest": {
  7216. "drupal/facets": "Adds the ability to create faceted searches.",
  7217. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7218. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7219. },
  7220. "type": "drupal-module",
  7221. "extra": {
  7222. "drupal": {
  7223. "version": "8.x-1.30",
  7224. "datestamp": "1697366291",
  7225. "security-coverage": {
  7226. "status": "covered",
  7227. "message": "Covered by Drupal's security advisory policy"
  7228. }
  7229. },
  7230. "drush": {
  7231. "services": {
  7232. "drush.services.yml": "^9 || ^10 || ^11"
  7233. }
  7234. }
  7235. },
  7236. "notification-url": "https://packages.drupal.org/8/downloads",
  7237. "license": [
  7238. "GPL-2.0-or-later"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Thomas Seidl",
  7243. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7244. },
  7245. {
  7246. "name": "Nick Veenhof",
  7247. "homepage": "https://www.drupal.org/u/nick_vh"
  7248. },
  7249. {
  7250. "name": "See other contributors",
  7251. "homepage": "https://www.drupal.org/node/790418/committers"
  7252. }
  7253. ],
  7254. "description": "Provides a generic framework for modules offering search capabilities.",
  7255. "homepage": "https://www.drupal.org/project/search_api",
  7256. "support": {
  7257. "source": "https://git.drupalcode.org/project/search_api",
  7258. "issues": "https://www.drupal.org/project/issues/search_api",
  7259. "irc": "irc://irc.freenode.org/drupal-search-api"
  7260. }
  7261. },
  7262. {
  7263. "name": "drupal/search_api_db",
  7264. "version": "1.30.0",
  7265. "require": {
  7266. "drupal/core": "^9.2 || ^10.0",
  7267. "drupal/search_api": "*"
  7268. },
  7269. "type": "metapackage",
  7270. "extra": {
  7271. "drupal": {
  7272. "version": "8.x-1.30",
  7273. "datestamp": "1697366291",
  7274. "security-coverage": {
  7275. "status": "covered",
  7276. "message": "Covered by Drupal's security advisory policy"
  7277. }
  7278. }
  7279. },
  7280. "notification-url": "https://packages.drupal.org/8/downloads",
  7281. "license": [
  7282. "GPL-2.0-or-later"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "borisson_",
  7287. "homepage": "https://www.drupal.org/user/2393360"
  7288. },
  7289. {
  7290. "name": "drunken monkey",
  7291. "homepage": "https://www.drupal.org/user/205582"
  7292. },
  7293. {
  7294. "name": "Nick_vh",
  7295. "homepage": "https://www.drupal.org/user/122682"
  7296. }
  7297. ],
  7298. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7299. "homepage": "https://www.drupal.org/project/search_api",
  7300. "support": {
  7301. "source": "https://git.drupalcode.org/project/search_api"
  7302. }
  7303. },
  7304. {
  7305. "name": "drupal/seven",
  7306. "version": "1.0.0",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://git.drupalcode.org/project/seven.git",
  7310. "reference": "1.0.0"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  7315. "reference": "1.0.0",
  7316. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  7317. },
  7318. "require": {
  7319. "drupal/core": "^9 || ^10"
  7320. },
  7321. "type": "drupal-theme",
  7322. "extra": {
  7323. "drupal": {
  7324. "version": "1.0.0",
  7325. "datestamp": "1758908691",
  7326. "security-coverage": {
  7327. "status": "covered",
  7328. "message": "Covered by Drupal's security advisory policy"
  7329. }
  7330. }
  7331. },
  7332. "notification-url": "https://packages.drupal.org/8/downloads",
  7333. "license": [
  7334. "GPL-2.0-or-later"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "avpaderno",
  7339. "homepage": "https://www.drupal.org/user/55077"
  7340. },
  7341. {
  7342. "name": "bnjmnm",
  7343. "homepage": "https://www.drupal.org/user/2369194"
  7344. },
  7345. {
  7346. "name": "krakenbite",
  7347. "homepage": "https://www.drupal.org/user/3805933"
  7348. },
  7349. {
  7350. "name": "lauriii",
  7351. "homepage": "https://www.drupal.org/user/1078742"
  7352. },
  7353. {
  7354. "name": "mcrittenden",
  7355. "homepage": "https://www.drupal.org/user/420631"
  7356. },
  7357. {
  7358. "name": "mrfelton",
  7359. "homepage": "https://www.drupal.org/user/305669"
  7360. }
  7361. ],
  7362. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  7363. "homepage": "https://www.drupal.org/project/seven",
  7364. "support": {
  7365. "source": "https://git.drupalcode.org/project/seven"
  7366. }
  7367. },
  7368. {
  7369. "name": "drupal/smart_trim",
  7370. "version": "2.1.0",
  7371. "source": {
  7372. "type": "git",
  7373. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7374. "reference": "2.1.0"
  7375. },
  7376. "dist": {
  7377. "type": "zip",
  7378. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  7379. "reference": "2.1.0",
  7380. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  7381. },
  7382. "require": {
  7383. "drupal/core": "^8 || ^9 || ^10",
  7384. "drupal/token": "^1.0",
  7385. "php": ">=7.4.0"
  7386. },
  7387. "require-dev": {
  7388. "drupal/token_filter": "^2.0"
  7389. },
  7390. "type": "drupal-module",
  7391. "extra": {
  7392. "drupal": {
  7393. "version": "2.1.0",
  7394. "datestamp": "1686152417",
  7395. "security-coverage": {
  7396. "status": "covered",
  7397. "message": "Covered by Drupal's security advisory policy"
  7398. }
  7399. }
  7400. },
  7401. "notification-url": "https://packages.drupal.org/8/downloads",
  7402. "license": [
  7403. "GPL-2.0-or-later"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Mark Casias (markie)",
  7408. "homepage": "https://www.drupal.org/u/markie",
  7409. "role": "Maintainer"
  7410. },
  7411. {
  7412. "name": "AmyJune Hineline (volkswagenchick)",
  7413. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7414. "role": "Maintainer"
  7415. },
  7416. {
  7417. "name": "Michael Anello (ultimike)",
  7418. "homepage": "https://www.drupal.org/u/ultimike",
  7419. "role": "Maintainer"
  7420. }
  7421. ],
  7422. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7423. "homepage": "https://drupal.org/project/smart_trim",
  7424. "support": {
  7425. "source": "https://git.drupalcode.org/project/smart_trim",
  7426. "issues": "https://drupal.org/project/issues/smart_trim"
  7427. }
  7428. },
  7429. {
  7430. "name": "drupal/smtp",
  7431. "version": "1.2.0",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://git.drupalcode.org/project/smtp.git",
  7435. "reference": "8.x-1.2"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  7440. "reference": "8.x-1.2",
  7441. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  7442. },
  7443. "require": {
  7444. "drupal/core": ">=8.9 <11",
  7445. "phpmailer/phpmailer": "^6.1.7"
  7446. },
  7447. "suggest": {
  7448. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7449. },
  7450. "type": "drupal-module",
  7451. "extra": {
  7452. "drupal": {
  7453. "version": "8.x-1.2",
  7454. "datestamp": "1667416337",
  7455. "security-coverage": {
  7456. "status": "covered",
  7457. "message": "Covered by Drupal's security advisory policy"
  7458. }
  7459. },
  7460. "branch-alias": {
  7461. "dev-8.x-1.x": "1.x-dev"
  7462. }
  7463. },
  7464. "notification-url": "https://packages.drupal.org/8/downloads",
  7465. "license": [
  7466. "GPL-2.0-or-later"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "japerry",
  7471. "homepage": "https://www.drupal.org/user/45640"
  7472. },
  7473. {
  7474. "name": "joseph.olstad",
  7475. "homepage": "https://www.drupal.org/user/1321830"
  7476. },
  7477. {
  7478. "name": "josesanmartin",
  7479. "homepage": "https://www.drupal.org/user/72012"
  7480. },
  7481. {
  7482. "name": "LukeLast",
  7483. "homepage": "https://www.drupal.org/user/30151"
  7484. },
  7485. {
  7486. "name": "oadaeh",
  7487. "homepage": "https://www.drupal.org/user/4649"
  7488. },
  7489. {
  7490. "name": "sadashiv",
  7491. "homepage": "https://www.drupal.org/user/1773304"
  7492. },
  7493. {
  7494. "name": "wundo",
  7495. "homepage": "https://www.drupal.org/user/25523"
  7496. },
  7497. {
  7498. "name": "yettyn",
  7499. "homepage": "https://www.drupal.org/user/93281"
  7500. }
  7501. ],
  7502. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7503. "homepage": "https://www.drupal.org/project/smtp",
  7504. "support": {
  7505. "source": "https://git.drupalcode.org/project/smtp",
  7506. "issues": "https://www.drupal.org/project/issues/smtp"
  7507. }
  7508. },
  7509. {
  7510. "name": "drupal/social_media_links",
  7511. "version": "2.9.0",
  7512. "source": {
  7513. "type": "git",
  7514. "url": "https://git.drupalcode.org/project/social_media_links.git",
  7515. "reference": "8.x-2.9"
  7516. },
  7517. "dist": {
  7518. "type": "zip",
  7519. "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip",
  7520. "reference": "8.x-2.9",
  7521. "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a"
  7522. },
  7523. "require": {
  7524. "drupal/core": "^8 || ^9 || ^10"
  7525. },
  7526. "type": "drupal-module",
  7527. "extra": {
  7528. "drupal": {
  7529. "version": "8.x-2.9",
  7530. "datestamp": "1665768361",
  7531. "security-coverage": {
  7532. "status": "covered",
  7533. "message": "Covered by Drupal's security advisory policy"
  7534. }
  7535. }
  7536. },
  7537. "notification-url": "https://packages.drupal.org/8/downloads",
  7538. "license": [
  7539. "GPL-2.0-or-later"
  7540. ],
  7541. "authors": [
  7542. {
  7543. "name": "Neslee Canil Pinto",
  7544. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  7545. "role": "Maintainer"
  7546. },
  7547. {
  7548. "name": "Christian Beier",
  7549. "homepage": "https://www.drupal.org/u/cbeier",
  7550. "role": "Maintainer"
  7551. }
  7552. ],
  7553. "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
  7554. "homepage": "https://www.drupal.org/project/social_media_links",
  7555. "support": {
  7556. "source": "https://git.drupalcode.org/project/social_media_links",
  7557. "issues": "https://www.drupal.org/project/issues/social_media_links"
  7558. }
  7559. },
  7560. {
  7561. "name": "drupal/sophron",
  7562. "version": "2.0.1",
  7563. "source": {
  7564. "type": "git",
  7565. "url": "https://git.drupalcode.org/project/sophron.git",
  7566. "reference": "2.0.1"
  7567. },
  7568. "dist": {
  7569. "type": "zip",
  7570. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  7571. "reference": "2.0.1",
  7572. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  7573. },
  7574. "require": {
  7575. "drupal/core": "^10",
  7576. "fileeye/mimemap": "^2.0.1"
  7577. },
  7578. "type": "drupal-module",
  7579. "extra": {
  7580. "drupal": {
  7581. "version": "2.0.1",
  7582. "datestamp": "1676319965",
  7583. "security-coverage": {
  7584. "status": "covered",
  7585. "message": "Covered by Drupal's security advisory policy"
  7586. }
  7587. }
  7588. },
  7589. "autoload": {
  7590. "psr-4": {
  7591. "Drupal\\sophron\\": "src/"
  7592. }
  7593. },
  7594. "notification-url": "https://packages.drupal.org/8/downloads",
  7595. "license": [
  7596. "GPL-2.0-or-later"
  7597. ],
  7598. "authors": [
  7599. {
  7600. "name": "mondrake",
  7601. "homepage": "https://www.drupal.org/user/1307444"
  7602. }
  7603. ],
  7604. "description": "Provides an extensive MIME types management API",
  7605. "homepage": "https://www.drupal.org/project/sophron",
  7606. "support": {
  7607. "source": "https://git.drupalcode.org/project/sophron"
  7608. }
  7609. },
  7610. {
  7611. "name": "drupal/synonyms",
  7612. "version": "2.1.2",
  7613. "source": {
  7614. "type": "git",
  7615. "url": "https://git.drupalcode.org/project/synonyms.git",
  7616. "reference": "2.1.2"
  7617. },
  7618. "dist": {
  7619. "type": "zip",
  7620. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  7621. "reference": "2.1.2",
  7622. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  7623. },
  7624. "require": {
  7625. "drupal/core": "^9 || ^10"
  7626. },
  7627. "require-dev": {
  7628. "drupal/synonyms_list_field": "*"
  7629. },
  7630. "type": "drupal-module",
  7631. "extra": {
  7632. "drupal": {
  7633. "version": "2.1.2",
  7634. "datestamp": "1665785027",
  7635. "security-coverage": {
  7636. "status": "covered",
  7637. "message": "Covered by Drupal's security advisory policy"
  7638. }
  7639. }
  7640. },
  7641. "notification-url": "https://packages.drupal.org/8/downloads",
  7642. "license": [
  7643. "GPL-2.0-or-later"
  7644. ],
  7645. "authors": [
  7646. {
  7647. "name": "Bojan Zivanovic",
  7648. "homepage": "https://www.drupal.org/u/bojanz",
  7649. "role": "Author and D5, D6 and D7 versions developer."
  7650. },
  7651. {
  7652. "name": "Alex Trosenko",
  7653. "homepage": "https://www.drupal.org/u/bucefal91",
  7654. "role": "D7 and D8 versions developer."
  7655. },
  7656. {
  7657. "name": "Duro Arezina",
  7658. "homepage": "https://www.drupal.org/u/devad",
  7659. "role": "D8, D9 and D10 versions maintenance"
  7660. },
  7661. {
  7662. "name": "See other contributors",
  7663. "homepage": "https://www.drupal.org/node/148775/committers"
  7664. }
  7665. ],
  7666. "description": "Provides synonyms feature for all entities.",
  7667. "homepage": "https://www.drupal.org/project/synonyms",
  7668. "support": {
  7669. "source": "https://git.drupalcode.org/project/synonyms",
  7670. "issues": "https://www.drupal.org/project/issues/synonyms"
  7671. }
  7672. },
  7673. {
  7674. "name": "drupal/token",
  7675. "version": "1.13.0",
  7676. "source": {
  7677. "type": "git",
  7678. "url": "https://git.drupalcode.org/project/token.git",
  7679. "reference": "8.x-1.13"
  7680. },
  7681. "dist": {
  7682. "type": "zip",
  7683. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  7684. "reference": "8.x-1.13",
  7685. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  7686. },
  7687. "require": {
  7688. "drupal/core": "^9.2 || ^10"
  7689. },
  7690. "type": "drupal-module",
  7691. "extra": {
  7692. "drupal": {
  7693. "version": "8.x-1.13",
  7694. "datestamp": "1697885927",
  7695. "security-coverage": {
  7696. "status": "covered",
  7697. "message": "Covered by Drupal's security advisory policy"
  7698. }
  7699. },
  7700. "drush": {
  7701. "services": {
  7702. "drush.services.yml": ">=9"
  7703. }
  7704. }
  7705. },
  7706. "notification-url": "https://packages.drupal.org/8/downloads",
  7707. "license": [
  7708. "GPL-2.0-or-later"
  7709. ],
  7710. "authors": [
  7711. {
  7712. "name": "Berdir",
  7713. "homepage": "https://www.drupal.org/user/214652"
  7714. },
  7715. {
  7716. "name": "Dave Reid",
  7717. "homepage": "https://www.drupal.org/user/53892"
  7718. },
  7719. {
  7720. "name": "eaton",
  7721. "homepage": "https://www.drupal.org/user/16496"
  7722. },
  7723. {
  7724. "name": "fago",
  7725. "homepage": "https://www.drupal.org/user/16747"
  7726. },
  7727. {
  7728. "name": "greggles",
  7729. "homepage": "https://www.drupal.org/user/36762"
  7730. },
  7731. {
  7732. "name": "mikeryan",
  7733. "homepage": "https://www.drupal.org/user/4420"
  7734. }
  7735. ],
  7736. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7737. "homepage": "https://www.drupal.org/project/token",
  7738. "support": {
  7739. "source": "https://git.drupalcode.org/project/token"
  7740. }
  7741. },
  7742. {
  7743. "name": "drupal/translation_views",
  7744. "version": "1.0.0-alpha11",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://git.drupalcode.org/project/translation_views.git",
  7748. "reference": "8.x-1.0-alpha11"
  7749. },
  7750. "dist": {
  7751. "type": "zip",
  7752. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7753. "reference": "8.x-1.0-alpha11",
  7754. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7755. },
  7756. "require": {
  7757. "drupal/core": "^8.8 || ^9 || ^10"
  7758. },
  7759. "require-dev": {
  7760. "drupal/translators_content": "^1.0@alpha"
  7761. },
  7762. "type": "drupal-module",
  7763. "extra": {
  7764. "drupal": {
  7765. "version": "8.x-1.0-alpha11",
  7766. "datestamp": "1679660668",
  7767. "security-coverage": {
  7768. "status": "not-covered",
  7769. "message": "Project has not opted into security advisory coverage!"
  7770. }
  7771. }
  7772. },
  7773. "notification-url": "https://packages.drupal.org/8/downloads",
  7774. "license": [
  7775. "GPL-2.0-or-later"
  7776. ],
  7777. "authors": [
  7778. {
  7779. "name": "matsbla",
  7780. "homepage": "https://www.drupal.org/user/2325394"
  7781. },
  7782. {
  7783. "name": "vlad.dancer",
  7784. "homepage": "https://www.drupal.org/user/903844"
  7785. }
  7786. ],
  7787. "description": "Create customized lists and queries of translations from your database.",
  7788. "homepage": "https://www.drupal.org/project/translation_views",
  7789. "support": {
  7790. "source": "https://git.drupalcode.org/project/translation_views"
  7791. }
  7792. },
  7793. {
  7794. "name": "drupal/typed_data",
  7795. "version": "2.1.1",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://git.drupalcode.org/project/typed_data.git",
  7799. "reference": "2.1.1"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://ftp.drupal.org/files/projects/typed_data-2.1.1.zip",
  7804. "reference": "2.1.1",
  7805. "shasum": "600cb9527dd93b200355f57ad4da71172ee5f6dc"
  7806. },
  7807. "require": {
  7808. "drupal/core": "^10.3 | ^11"
  7809. },
  7810. "type": "drupal-module",
  7811. "extra": {
  7812. "drupal": {
  7813. "version": "2.1.1",
  7814. "datestamp": "1728332112",
  7815. "security-coverage": {
  7816. "status": "covered",
  7817. "message": "Covered by Drupal's security advisory policy"
  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": "fago",
  7828. "homepage": "https://www.drupal.org/user/16747"
  7829. },
  7830. {
  7831. "name": "tr",
  7832. "homepage": "https://www.drupal.org/user/202830"
  7833. }
  7834. ],
  7835. "description": "Extends the core Typed Data API with new APIs and features.",
  7836. "homepage": "https://www.drupal.org/project/typed_data",
  7837. "support": {
  7838. "source": "https://git.drupalcode.org/project/typed_data",
  7839. "issues": "https://www.drupal.org/project/issues/typed_data"
  7840. }
  7841. },
  7842. {
  7843. "name": "drupal/ultimate_cron",
  7844. "version": "2.0.0-alpha6",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7848. "reference": "8.x-2.0-alpha6"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  7853. "reference": "8.x-2.0-alpha6",
  7854. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  7855. },
  7856. "require": {
  7857. "drupal/core": "^9 || ^10"
  7858. },
  7859. "type": "drupal-module",
  7860. "extra": {
  7861. "drupal": {
  7862. "version": "8.x-2.0-alpha6",
  7863. "datestamp": "1666471448",
  7864. "security-coverage": {
  7865. "status": "not-covered",
  7866. "message": "Alpha releases are not covered by Drupal security advisories."
  7867. }
  7868. },
  7869. "drush": {
  7870. "services": {
  7871. "drush.services.yml": "^9 || ^10 || ^11"
  7872. }
  7873. }
  7874. },
  7875. "notification-url": "https://packages.drupal.org/8/downloads",
  7876. "license": [
  7877. "GPL-2.0+"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "arnested",
  7882. "homepage": "https://www.drupal.org/user/245635"
  7883. },
  7884. {
  7885. "name": "Berdir",
  7886. "homepage": "https://www.drupal.org/user/214652"
  7887. },
  7888. {
  7889. "name": "Dane Powell",
  7890. "homepage": "https://www.drupal.org/user/339326"
  7891. },
  7892. {
  7893. "name": "gielfeldt",
  7894. "homepage": "https://www.drupal.org/user/366993"
  7895. },
  7896. {
  7897. "name": "miro_dietiker",
  7898. "homepage": "https://www.drupal.org/user/227761"
  7899. },
  7900. {
  7901. "name": "Primsi",
  7902. "homepage": "https://www.drupal.org/user/282629"
  7903. }
  7904. ],
  7905. "description": "Ultimate cron",
  7906. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7907. "support": {
  7908. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7909. }
  7910. },
  7911. {
  7912. "name": "drupal/video_embed_field",
  7913. "version": "2.5.0",
  7914. "source": {
  7915. "type": "git",
  7916. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7917. "reference": "8.x-2.5"
  7918. },
  7919. "dist": {
  7920. "type": "zip",
  7921. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7922. "reference": "8.x-2.5",
  7923. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7924. },
  7925. "require": {
  7926. "drupal/core": "^9.2 || ^10"
  7927. },
  7928. "require-dev": {
  7929. "drupal/ckeditor": "^1",
  7930. "drupal/colorbox": "^2",
  7931. "drupal/video_embed_media": "*"
  7932. },
  7933. "type": "drupal-module",
  7934. "extra": {
  7935. "drupal": {
  7936. "version": "8.x-2.5",
  7937. "datestamp": "1671413311",
  7938. "security-coverage": {
  7939. "status": "covered",
  7940. "message": "Covered by Drupal's security advisory policy"
  7941. }
  7942. }
  7943. },
  7944. "notification-url": "https://packages.drupal.org/8/downloads",
  7945. "license": [
  7946. "GPL-2.0-or-later"
  7947. ],
  7948. "authors": [
  7949. {
  7950. "name": "abhinesh",
  7951. "homepage": "https://www.drupal.org/user/3645979"
  7952. },
  7953. {
  7954. "name": "jec006",
  7955. "homepage": "https://www.drupal.org/user/855980"
  7956. },
  7957. {
  7958. "name": "plopesc",
  7959. "homepage": "https://www.drupal.org/user/282415"
  7960. },
  7961. {
  7962. "name": "Sam152",
  7963. "homepage": "https://www.drupal.org/user/1485048"
  7964. }
  7965. ],
  7966. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7967. "homepage": "https://www.drupal.org/project/video_embed_field",
  7968. "support": {
  7969. "source": "https://git.drupalcode.org/project/video_embed_field"
  7970. }
  7971. },
  7972. {
  7973. "name": "drupal/views_argument_token",
  7974. "version": "2.0.2",
  7975. "source": {
  7976. "type": "git",
  7977. "url": "https://git.drupalcode.org/project/views_argument_token.git",
  7978. "reference": "2.0.2"
  7979. },
  7980. "dist": {
  7981. "type": "zip",
  7982. "url": "https://ftp.drupal.org/files/projects/views_argument_token-2.0.2.zip",
  7983. "reference": "2.0.2",
  7984. "shasum": "37ec2b8865bb84878f3cb53c5472de27dbc4646b"
  7985. },
  7986. "require": {
  7987. "drupal/core": "^8 || ^9 || ^10",
  7988. "drupal/token": "^1.9"
  7989. },
  7990. "type": "drupal-module",
  7991. "extra": {
  7992. "drupal": {
  7993. "version": "2.0.2",
  7994. "datestamp": "1697637709",
  7995. "security-coverage": {
  7996. "status": "covered",
  7997. "message": "Covered by Drupal's security advisory policy"
  7998. }
  7999. }
  8000. },
  8001. "notification-url": "https://packages.drupal.org/8/downloads",
  8002. "license": [
  8003. "GPL-2.0+"
  8004. ],
  8005. "authors": [
  8006. {
  8007. "name": "eme",
  8008. "homepage": "https://www.drupal.org/u/eme"
  8009. },
  8010. {
  8011. "name": "Mohamed Anis Taktak",
  8012. "homepage": "https://www.drupal.org/u/matio89"
  8013. },
  8014. {
  8015. "name": "Dakwamine",
  8016. "homepage": "https://www.drupal.org/u/dakwamine"
  8017. },
  8018. {
  8019. "name": "Stephen Mulvihill",
  8020. "homepage": "https://www.drupal.org/u/smulvih2"
  8021. },
  8022. {
  8023. "name": "MichaelB",
  8024. "homepage": "https://www.drupal.org/user/2309046"
  8025. },
  8026. {
  8027. "name": "smulvih2",
  8028. "homepage": "https://www.drupal.org/user/795442"
  8029. },
  8030. {
  8031. "name": "snake_plissken",
  8032. "homepage": "https://www.drupal.org/user/3624793"
  8033. }
  8034. ],
  8035. "description": "Views Token Argument allows you to use token as contextual filter for Views.",
  8036. "homepage": "http://drupal.org/project/views_argument_token",
  8037. "support": {
  8038. "source": "https://git.drupalcode.org/project/views_argument_token",
  8039. "issues": "https://www.drupal.org/project/issues/views_argument_token"
  8040. }
  8041. },
  8042. {
  8043. "name": "drupal/views_bulk_edit",
  8044. "version": "2.9.0",
  8045. "source": {
  8046. "type": "git",
  8047. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  8048. "reference": "8.x-2.9"
  8049. },
  8050. "dist": {
  8051. "type": "zip",
  8052. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  8053. "reference": "8.x-2.9",
  8054. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  8055. },
  8056. "require": {
  8057. "drupal/core": "^9.4 || ^10"
  8058. },
  8059. "require-dev": {
  8060. "drupal/views_bulk_operations": "~4.2.4"
  8061. },
  8062. "suggest": {
  8063. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  8064. },
  8065. "type": "drupal-module",
  8066. "extra": {
  8067. "drupal": {
  8068. "version": "8.x-2.9",
  8069. "datestamp": "1690222256",
  8070. "security-coverage": {
  8071. "status": "covered",
  8072. "message": "Covered by Drupal's security advisory policy"
  8073. }
  8074. }
  8075. },
  8076. "notification-url": "https://packages.drupal.org/8/downloads",
  8077. "license": [
  8078. "GPL-2.0+"
  8079. ],
  8080. "authors": [
  8081. {
  8082. "name": "Marcin Grabias",
  8083. "homepage": "https://www.drupal.org/u/graber"
  8084. },
  8085. {
  8086. "name": "Graber",
  8087. "homepage": "https://www.drupal.org/user/1599440"
  8088. },
  8089. {
  8090. "name": "joseph.olstad",
  8091. "homepage": "https://www.drupal.org/user/1321830"
  8092. }
  8093. ],
  8094. "description": "Allows bulk edition of entity field values.",
  8095. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8096. "support": {
  8097. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8098. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8099. }
  8100. },
  8101. {
  8102. "name": "drupal/views_bulk_operations",
  8103. "version": "4.2.5",
  8104. "source": {
  8105. "type": "git",
  8106. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8107. "reference": "4.2.5"
  8108. },
  8109. "dist": {
  8110. "type": "zip",
  8111. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  8112. "reference": "4.2.5",
  8113. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  8114. },
  8115. "require": {
  8116. "drupal/core": "^9.4 || ^10",
  8117. "php": ">=7.4.0"
  8118. },
  8119. "require-dev": {
  8120. "drush/drush": "^11"
  8121. },
  8122. "suggest": {
  8123. "drush/drush": "^10 || ^11"
  8124. },
  8125. "type": "drupal-module",
  8126. "extra": {
  8127. "drupal": {
  8128. "version": "4.2.5",
  8129. "datestamp": "1691066184",
  8130. "security-coverage": {
  8131. "status": "covered",
  8132. "message": "Covered by Drupal's security advisory policy"
  8133. }
  8134. },
  8135. "drush": {
  8136. "services": {
  8137. "drush.services.yml": "^10 || ^11"
  8138. }
  8139. }
  8140. },
  8141. "notification-url": "https://packages.drupal.org/8/downloads",
  8142. "license": [
  8143. "GPL-2.0-or-later"
  8144. ],
  8145. "authors": [
  8146. {
  8147. "name": "Marcin Grabias",
  8148. "homepage": "https://www.drupal.org/u/graber"
  8149. },
  8150. {
  8151. "name": "Graber",
  8152. "homepage": "https://www.drupal.org/user/1599440"
  8153. },
  8154. {
  8155. "name": "joelpittet",
  8156. "homepage": "https://www.drupal.org/user/160302"
  8157. }
  8158. ],
  8159. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8160. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8161. "support": {
  8162. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8163. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8164. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8165. }
  8166. },
  8167. {
  8168. "name": "drupal/views_core_entity_reference",
  8169. "version": "1.0.0-alpha3",
  8170. "source": {
  8171. "type": "git",
  8172. "url": "https://git.drupalcode.org/project/views_core_entity_reference.git",
  8173. "reference": "1.0.0-alpha3"
  8174. },
  8175. "dist": {
  8176. "type": "zip",
  8177. "url": "https://ftp.drupal.org/files/projects/views_core_entity_reference-1.0.0-alpha3.zip",
  8178. "reference": "1.0.0-alpha3",
  8179. "shasum": "d31cc22d7d12c2cf1a3edf3d46e4c0c8642b5518"
  8180. },
  8181. "require": {
  8182. "drupal/core": "^10.2 || ^11"
  8183. },
  8184. "type": "drupal-module",
  8185. "extra": {
  8186. "drupal": {
  8187. "version": "1.0.0-alpha3",
  8188. "datestamp": "1736951307",
  8189. "security-coverage": {
  8190. "status": "not-covered",
  8191. "message": "Alpha releases are not covered by Drupal security advisories."
  8192. }
  8193. }
  8194. },
  8195. "notification-url": "https://packages.drupal.org/8/downloads",
  8196. "license": [
  8197. "GPL-2.0-or-later"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "scott_euser",
  8202. "homepage": "https://www.drupal.org/user/3267594"
  8203. }
  8204. ],
  8205. "description": "Opts-in to using the Entity Reference filter provided by Drupal Core.",
  8206. "homepage": "https://www.drupal.org/project/views_core_entity_reference",
  8207. "support": {
  8208. "source": "https://git.drupalcode.org/project/views_core_entity_reference"
  8209. }
  8210. },
  8211. {
  8212. "name": "drupal/webform",
  8213. "version": "6.2.0",
  8214. "source": {
  8215. "type": "git",
  8216. "url": "https://git.drupalcode.org/project/webform.git",
  8217. "reference": "6.2.0"
  8218. },
  8219. "dist": {
  8220. "type": "zip",
  8221. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  8222. "reference": "6.2.0",
  8223. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  8224. },
  8225. "require": {
  8226. "drupal/core": "^9.4 || ^10",
  8227. "php": ">=8.1"
  8228. },
  8229. "require-dev": {
  8230. "drupal/address": "1.x-dev",
  8231. "drupal/bootstrap": "3.x-dev",
  8232. "drupal/captcha": "^1 || ^2",
  8233. "drupal/chosen": "3.0.x-dev",
  8234. "drupal/ckeditor": "1.0.x-dev",
  8235. "drupal/clientside_validation": "^3 || ^4",
  8236. "drupal/clientside_validation_jquery": "*",
  8237. "drupal/devel": "5.x-dev",
  8238. "drupal/entity": "1.x-dev",
  8239. "drupal/entity_print": "2.x-dev",
  8240. "drupal/group": "1.x-dev",
  8241. "drupal/hal": "1 - 2",
  8242. "drupal/jquery_ui": "1.x-dev",
  8243. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  8244. "drupal/jquery_ui_datepicker": "2.x-dev",
  8245. "drupal/mailsystem": "4.x-dev",
  8246. "drupal/metatag": "1.x-dev",
  8247. "drupal/paragraphs": "1.x-dev",
  8248. "drupal/select2": "1.x-dev",
  8249. "drupal/smtp": "1.x-dev",
  8250. "drupal/styleguide": "^1 || ^2",
  8251. "drupal/telephone_validation": "2.x-dev",
  8252. "drupal/token": "1.x-dev",
  8253. "drupal/variationcache": "1.x-dev",
  8254. "drupal/webform_access": "*",
  8255. "drupal/webform_attachment": "*",
  8256. "drupal/webform_clientside_validation": "*",
  8257. "drupal/webform_devel": "*",
  8258. "drupal/webform_entity_print": "*",
  8259. "drupal/webform_node": "*",
  8260. "drupal/webform_options_limit": "*",
  8261. "drupal/webform_scheduled_email": "*",
  8262. "drupal/webform_share": "*",
  8263. "drupal/webform_ui": "*"
  8264. },
  8265. "suggest": {
  8266. "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.",
  8267. "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."
  8268. },
  8269. "type": "drupal-module",
  8270. "extra": {
  8271. "drupal": {
  8272. "version": "6.2.0",
  8273. "datestamp": "1698674300",
  8274. "security-coverage": {
  8275. "status": "covered",
  8276. "message": "Covered by Drupal's security advisory policy"
  8277. }
  8278. },
  8279. "drush": {
  8280. "services": {
  8281. "drush.services.yml": ">=9"
  8282. }
  8283. }
  8284. },
  8285. "notification-url": "https://packages.drupal.org/8/downloads",
  8286. "license": [
  8287. "GPL-2.0-or-later"
  8288. ],
  8289. "authors": [
  8290. {
  8291. "name": "Jacob Rockowitz (jrockowitz)",
  8292. "homepage": "https://www.drupal.org/u/jrockowitz",
  8293. "role": "Maintainer"
  8294. },
  8295. {
  8296. "name": "Contributors",
  8297. "homepage": "https://www.drupal.org/node/7404/committers",
  8298. "role": "Contributor"
  8299. },
  8300. {
  8301. "name": "Liam Morland",
  8302. "homepage": "https://www.drupal.org/user/493050"
  8303. },
  8304. {
  8305. "name": "quicksketch",
  8306. "homepage": "https://www.drupal.org/user/35821"
  8307. },
  8308. {
  8309. "name": "torotil",
  8310. "homepage": "https://www.drupal.org/user/865256"
  8311. }
  8312. ],
  8313. "description": "Enables the creation of webforms and questionnaires.",
  8314. "homepage": "https://drupal.org/project/webform",
  8315. "support": {
  8316. "source": "https://git.drupalcode.org/project/webform",
  8317. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8318. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8319. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8320. }
  8321. },
  8322. {
  8323. "name": "drush/drush",
  8324. "version": "12.5.3",
  8325. "source": {
  8326. "type": "git",
  8327. "url": "https://github.com/drush-ops/drush.git",
  8328. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  8329. },
  8330. "dist": {
  8331. "type": "zip",
  8332. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8333. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8334. "shasum": ""
  8335. },
  8336. "require": {
  8337. "chi-teck/drupal-code-generator": "^3.0",
  8338. "composer-runtime-api": "^2.2",
  8339. "composer/semver": "^1.4 || ^3",
  8340. "consolidation/annotated-command": "^4.9.2",
  8341. "consolidation/config": "^2.1.2",
  8342. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8343. "consolidation/output-formatters": "^4.3.2",
  8344. "consolidation/robo": "^4.0.6",
  8345. "consolidation/site-alias": "^4",
  8346. "consolidation/site-process": "^5.2.0",
  8347. "ext-dom": "*",
  8348. "grasmash/yaml-cli": "^3.1",
  8349. "guzzlehttp/guzzle": "^7.0",
  8350. "league/container": "^4",
  8351. "php": ">=8.1",
  8352. "psy/psysh": "~0.11",
  8353. "symfony/event-dispatcher": "^6",
  8354. "symfony/filesystem": "^6.1",
  8355. "symfony/finder": "^6",
  8356. "symfony/var-dumper": "^6.0",
  8357. "symfony/yaml": "^6.0",
  8358. "webflo/drupal-finder": "^1.2"
  8359. },
  8360. "conflict": {
  8361. "drupal/core": "< 10.0",
  8362. "drupal/migrate_run": "*",
  8363. "drupal/migrate_tools": "<= 5"
  8364. },
  8365. "require-dev": {
  8366. "composer/installers": "^2",
  8367. "cweagans/composer-patches": "~1.0",
  8368. "drupal/core-recommended": "^10",
  8369. "drupal/semver_example": "2.3.0",
  8370. "phpunit/phpunit": "^9",
  8371. "rector/rector": "^0.12",
  8372. "squizlabs/php_codesniffer": "^3.7"
  8373. },
  8374. "bin": [
  8375. "drush"
  8376. ],
  8377. "type": "library",
  8378. "extra": {
  8379. "installer-paths": {
  8380. "sut/core": [
  8381. "type:drupal-core"
  8382. ],
  8383. "sut/libraries/{$name}": [
  8384. "type:drupal-library"
  8385. ],
  8386. "sut/themes/unish/{$name}": [
  8387. "drupal/empty_theme"
  8388. ],
  8389. "sut/drush/contrib/{$name}": [
  8390. "type:drupal-drush"
  8391. ],
  8392. "sut/modules/unish/{$name}": [
  8393. "drupal/devel"
  8394. ],
  8395. "sut/themes/contrib/{$name}": [
  8396. "type:drupal-theme"
  8397. ],
  8398. "sut/modules/contrib/{$name}": [
  8399. "type:drupal-module"
  8400. ],
  8401. "sut/profiles/contrib/{$name}": [
  8402. "type:drupal-profile"
  8403. ]
  8404. }
  8405. },
  8406. "autoload": {
  8407. "psr-4": {
  8408. "Drush\\": "src/"
  8409. }
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "GPL-2.0-or-later"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Moshe Weitzman",
  8418. "email": "weitzman@tejasa.com"
  8419. },
  8420. {
  8421. "name": "Owen Barton",
  8422. "email": "drupal@owenbarton.com"
  8423. },
  8424. {
  8425. "name": "Greg Anderson",
  8426. "email": "greg.1.anderson@greenknowe.org"
  8427. },
  8428. {
  8429. "name": "Jonathan Araña Cruz",
  8430. "email": "jonhattan@faita.net"
  8431. },
  8432. {
  8433. "name": "Jonathan Hedstrom",
  8434. "email": "jhedstrom@gmail.com"
  8435. },
  8436. {
  8437. "name": "Christopher Gervais",
  8438. "email": "chris@ergonlogic.com"
  8439. },
  8440. {
  8441. "name": "Dave Reid",
  8442. "email": "dave@davereid.net"
  8443. },
  8444. {
  8445. "name": "Damian Lee",
  8446. "email": "damiankloip@googlemail.com"
  8447. }
  8448. ],
  8449. "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.",
  8450. "homepage": "http://www.drush.org",
  8451. "support": {
  8452. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8453. "issues": "https://github.com/drush-ops/drush/issues",
  8454. "security": "https://github.com/drush-ops/drush/security/advisories",
  8455. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8456. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  8457. },
  8458. "funding": [
  8459. {
  8460. "url": "https://github.com/weitzman",
  8461. "type": "github"
  8462. }
  8463. ],
  8464. "time": "2024-08-02T11:57:29+00:00"
  8465. },
  8466. {
  8467. "name": "egulias/email-validator",
  8468. "version": "4.0.4",
  8469. "source": {
  8470. "type": "git",
  8471. "url": "https://github.com/egulias/EmailValidator.git",
  8472. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8473. },
  8474. "dist": {
  8475. "type": "zip",
  8476. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8477. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8478. "shasum": ""
  8479. },
  8480. "require": {
  8481. "doctrine/lexer": "^2.0 || ^3.0",
  8482. "php": ">=8.1",
  8483. "symfony/polyfill-intl-idn": "^1.26"
  8484. },
  8485. "require-dev": {
  8486. "phpunit/phpunit": "^10.2",
  8487. "vimeo/psalm": "^5.12"
  8488. },
  8489. "suggest": {
  8490. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "4.0.x-dev"
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "Egulias\\EmailValidator\\": "src"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "MIT"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Eduardo Gulias Davis"
  8510. }
  8511. ],
  8512. "description": "A library for validating emails against several RFCs",
  8513. "homepage": "https://github.com/egulias/EmailValidator",
  8514. "keywords": [
  8515. "email",
  8516. "emailvalidation",
  8517. "emailvalidator",
  8518. "validation",
  8519. "validator"
  8520. ],
  8521. "support": {
  8522. "issues": "https://github.com/egulias/EmailValidator/issues",
  8523. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8524. },
  8525. "funding": [
  8526. {
  8527. "url": "https://github.com/egulias",
  8528. "type": "github"
  8529. }
  8530. ],
  8531. "time": "2025-03-06T22:45:56+00:00"
  8532. },
  8533. {
  8534. "name": "fileeye/mimemap",
  8535. "version": "2.0.2",
  8536. "source": {
  8537. "type": "git",
  8538. "url": "https://github.com/FileEye/MimeMap.git",
  8539. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  8540. },
  8541. "dist": {
  8542. "type": "zip",
  8543. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  8544. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  8545. "shasum": ""
  8546. },
  8547. "require": {
  8548. "php": ">=7.3"
  8549. },
  8550. "require-dev": {
  8551. "composer-runtime-api": "^2.0.0",
  8552. "phpstan/phpstan": "^1.2",
  8553. "phpunit/phpunit": "^9 | ^10",
  8554. "sebastian/comparator": ">=4",
  8555. "sebastian/diff": ">=4",
  8556. "squizlabs/php_codesniffer": ">=3.6",
  8557. "symfony/console": ">=5.4",
  8558. "symfony/filesystem": ">=5.4",
  8559. "symfony/var-dumper": ">=5.4",
  8560. "symfony/yaml": ">=5.4",
  8561. "vimeo/psalm": "^4.23 | ^5"
  8562. },
  8563. "bin": [
  8564. "bin/fileeye-mimemap"
  8565. ],
  8566. "type": "library",
  8567. "extra": {
  8568. "branch-alias": {
  8569. "dev-master": "2.x-dev"
  8570. }
  8571. },
  8572. "autoload": {
  8573. "psr-4": {
  8574. "FileEye\\MimeMap\\": "src/"
  8575. }
  8576. },
  8577. "notification-url": "https://packagist.org/downloads/",
  8578. "license": [
  8579. "LGPL-3.0-or-later"
  8580. ],
  8581. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8582. "homepage": "https://github.com/FileEye/MimeMap",
  8583. "keywords": [
  8584. "mime",
  8585. "mime-database",
  8586. "mime-parser",
  8587. "mime-type"
  8588. ],
  8589. "support": {
  8590. "issues": "https://github.com/FileEye/MimeMap/issues",
  8591. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  8592. },
  8593. "time": "2023-08-29T16:20:26+00:00"
  8594. },
  8595. {
  8596. "name": "fileeye/pel",
  8597. "version": "0.9.20",
  8598. "source": {
  8599. "type": "git",
  8600. "url": "https://github.com/FileEye/pel.git",
  8601. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  8602. },
  8603. "dist": {
  8604. "type": "zip",
  8605. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8606. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8607. "shasum": ""
  8608. },
  8609. "require": {
  8610. "php": ">=7.1.0"
  8611. },
  8612. "require-dev": {
  8613. "ext-exif": "*",
  8614. "ext-gd": "*",
  8615. "php-coveralls/php-coveralls": ">2.4",
  8616. "phpstan/phpstan": "^1.4",
  8617. "squizlabs/php_codesniffer": ">3.5",
  8618. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  8619. },
  8620. "type": "library",
  8621. "autoload": {
  8622. "psr-4": {
  8623. "lsolesen\\pel\\": "src/"
  8624. }
  8625. },
  8626. "notification-url": "https://packagist.org/downloads/",
  8627. "license": [
  8628. "GPL-2.0"
  8629. ],
  8630. "authors": [
  8631. {
  8632. "name": "Lars Olesen",
  8633. "email": "lars@intraface.dk",
  8634. "homepage": "http://intraface.dk",
  8635. "role": "Developer"
  8636. },
  8637. {
  8638. "name": "Martin Geisler",
  8639. "email": "martin@geisler.net",
  8640. "homepage": "http://geisler.net",
  8641. "role": "Developer"
  8642. }
  8643. ],
  8644. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8645. "homepage": "https://github.com/FileEye/pel",
  8646. "keywords": [
  8647. "exif",
  8648. "image"
  8649. ],
  8650. "support": {
  8651. "issues": "https://github.com/FileEye/pel/issues",
  8652. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  8653. },
  8654. "time": "2023-06-20T07:10:35+00:00"
  8655. },
  8656. {
  8657. "name": "giggsey/libphonenumber-for-php",
  8658. "version": "8.13.25",
  8659. "source": {
  8660. "type": "git",
  8661. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  8662. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  8663. },
  8664. "dist": {
  8665. "type": "zip",
  8666. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  8667. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  8668. "shasum": ""
  8669. },
  8670. "require": {
  8671. "giggsey/locale": "^1.7|^2.0",
  8672. "php": ">=5.3.2",
  8673. "symfony/polyfill-mbstring": "^1.17"
  8674. },
  8675. "require-dev": {
  8676. "pear/pear-core-minimal": "^1.9",
  8677. "pear/pear_exception": "^1.0",
  8678. "pear/versioncontrol_git": "^0.5",
  8679. "phing/phing": "^2.7",
  8680. "php-coveralls/php-coveralls": "^1.0|^2.0",
  8681. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  8682. "symfony/phpunit-bridge": "^4.2 || ^5"
  8683. },
  8684. "type": "library",
  8685. "extra": {
  8686. "branch-alias": {
  8687. "dev-master": "8.x-dev"
  8688. }
  8689. },
  8690. "autoload": {
  8691. "psr-4": {
  8692. "libphonenumber\\": "src/"
  8693. },
  8694. "exclude-from-classmap": [
  8695. "/src/data/",
  8696. "/src/carrier/data/",
  8697. "/src/geocoding/data/",
  8698. "/src/timezone/data/"
  8699. ]
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "Apache-2.0"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Joshua Gigg",
  8708. "email": "giggsey@gmail.com",
  8709. "homepage": "https://giggsey.com/"
  8710. }
  8711. ],
  8712. "description": "PHP Port of Google's libphonenumber",
  8713. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  8714. "keywords": [
  8715. "geocoding",
  8716. "geolocation",
  8717. "libphonenumber",
  8718. "mobile",
  8719. "phonenumber",
  8720. "validation"
  8721. ],
  8722. "support": {
  8723. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  8724. "source": "https://github.com/giggsey/libphonenumber-for-php"
  8725. },
  8726. "time": "2023-11-13T09:34:15+00:00"
  8727. },
  8728. {
  8729. "name": "giggsey/locale",
  8730. "version": "2.5",
  8731. "source": {
  8732. "type": "git",
  8733. "url": "https://github.com/giggsey/Locale.git",
  8734. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  8735. },
  8736. "dist": {
  8737. "type": "zip",
  8738. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8739. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8740. "shasum": ""
  8741. },
  8742. "require": {
  8743. "php": ">=7.2"
  8744. },
  8745. "require-dev": {
  8746. "ext-json": "*",
  8747. "pear/pear-core-minimal": "^1.9",
  8748. "pear/pear_exception": "^1.0",
  8749. "pear/versioncontrol_git": "^0.5",
  8750. "phing/phing": "^2.7",
  8751. "php-coveralls/php-coveralls": "^2.0",
  8752. "phpunit/phpunit": "^8.5|^9.5",
  8753. "symfony/console": "^5.0|^6.0",
  8754. "symfony/filesystem": "^5.0|^6.0",
  8755. "symfony/finder": "^5.0|^6.0",
  8756. "symfony/process": "^5.0|^6.0"
  8757. },
  8758. "type": "library",
  8759. "autoload": {
  8760. "psr-4": {
  8761. "Giggsey\\Locale\\": "src/"
  8762. }
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "MIT"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Joshua Gigg",
  8771. "email": "giggsey@gmail.com",
  8772. "homepage": "https://giggsey.com/"
  8773. }
  8774. ],
  8775. "description": "Locale functions required by libphonenumber-for-php",
  8776. "support": {
  8777. "issues": "https://github.com/giggsey/Locale/issues",
  8778. "source": "https://github.com/giggsey/Locale/tree/2.5"
  8779. },
  8780. "time": "2023-11-01T17:19:48+00:00"
  8781. },
  8782. {
  8783. "name": "grasmash/expander",
  8784. "version": "3.0.1",
  8785. "source": {
  8786. "type": "git",
  8787. "url": "https://github.com/grasmash/expander.git",
  8788. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8789. },
  8790. "dist": {
  8791. "type": "zip",
  8792. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8793. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8794. "shasum": ""
  8795. },
  8796. "require": {
  8797. "dflydev/dot-access-data": "^3.0.0",
  8798. "php": ">=8.0",
  8799. "psr/log": "^2 | ^3"
  8800. },
  8801. "require-dev": {
  8802. "greg-1-anderson/composer-test-scenarios": "^1",
  8803. "php-coveralls/php-coveralls": "^2.5",
  8804. "phpunit/phpunit": "^9",
  8805. "squizlabs/php_codesniffer": "^3.3"
  8806. },
  8807. "type": "library",
  8808. "extra": {
  8809. "branch-alias": {
  8810. "dev-master": "1.x-dev"
  8811. }
  8812. },
  8813. "autoload": {
  8814. "psr-4": {
  8815. "Grasmash\\Expander\\": "src/"
  8816. }
  8817. },
  8818. "notification-url": "https://packagist.org/downloads/",
  8819. "license": [
  8820. "MIT"
  8821. ],
  8822. "authors": [
  8823. {
  8824. "name": "Matthew Grasmick"
  8825. }
  8826. ],
  8827. "description": "Expands internal property references in PHP arrays file.",
  8828. "support": {
  8829. "issues": "https://github.com/grasmash/expander/issues",
  8830. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8831. },
  8832. "time": "2024-11-25T23:28:05+00:00"
  8833. },
  8834. {
  8835. "name": "grasmash/yaml-cli",
  8836. "version": "3.2.1",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/grasmash/yaml-cli.git",
  8840. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8845. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8846. "shasum": ""
  8847. },
  8848. "require": {
  8849. "dflydev/dot-access-data": "^3",
  8850. "php": ">=8.0",
  8851. "symfony/console": "^6 || ^7",
  8852. "symfony/filesystem": "^6 || ^7",
  8853. "symfony/yaml": "^6 || ^7"
  8854. },
  8855. "require-dev": {
  8856. "php-coveralls/php-coveralls": "^2",
  8857. "phpunit/phpunit": "^9",
  8858. "squizlabs/php_codesniffer": "^3.0"
  8859. },
  8860. "bin": [
  8861. "bin/yaml-cli"
  8862. ],
  8863. "type": "library",
  8864. "extra": {
  8865. "branch-alias": {
  8866. "dev-master": "3.x-dev"
  8867. }
  8868. },
  8869. "autoload": {
  8870. "psr-4": {
  8871. "Grasmash\\YamlCli\\": "src/"
  8872. }
  8873. },
  8874. "notification-url": "https://packagist.org/downloads/",
  8875. "license": [
  8876. "MIT"
  8877. ],
  8878. "authors": [
  8879. {
  8880. "name": "Matthew Grasmick"
  8881. }
  8882. ],
  8883. "description": "A command line tool for reading and manipulating yaml files.",
  8884. "support": {
  8885. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8886. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8887. },
  8888. "time": "2024-04-23T02:10:57+00:00"
  8889. },
  8890. {
  8891. "name": "guzzlehttp/guzzle",
  8892. "version": "7.9.3",
  8893. "source": {
  8894. "type": "git",
  8895. "url": "https://github.com/guzzle/guzzle.git",
  8896. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  8897. },
  8898. "dist": {
  8899. "type": "zip",
  8900. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8901. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8902. "shasum": ""
  8903. },
  8904. "require": {
  8905. "ext-json": "*",
  8906. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  8907. "guzzlehttp/psr7": "^2.7.0",
  8908. "php": "^7.2.5 || ^8.0",
  8909. "psr/http-client": "^1.0",
  8910. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8911. },
  8912. "provide": {
  8913. "psr/http-client-implementation": "1.0"
  8914. },
  8915. "require-dev": {
  8916. "bamarni/composer-bin-plugin": "^1.8.2",
  8917. "ext-curl": "*",
  8918. "guzzle/client-integration-tests": "3.0.2",
  8919. "php-http/message-factory": "^1.1",
  8920. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8921. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8922. },
  8923. "suggest": {
  8924. "ext-curl": "Required for CURL handler support",
  8925. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8926. "psr/log": "Required for using the Log middleware"
  8927. },
  8928. "type": "library",
  8929. "extra": {
  8930. "bamarni-bin": {
  8931. "bin-links": true,
  8932. "forward-command": false
  8933. }
  8934. },
  8935. "autoload": {
  8936. "files": [
  8937. "src/functions_include.php"
  8938. ],
  8939. "psr-4": {
  8940. "GuzzleHttp\\": "src/"
  8941. }
  8942. },
  8943. "notification-url": "https://packagist.org/downloads/",
  8944. "license": [
  8945. "MIT"
  8946. ],
  8947. "authors": [
  8948. {
  8949. "name": "Graham Campbell",
  8950. "email": "hello@gjcampbell.co.uk",
  8951. "homepage": "https://github.com/GrahamCampbell"
  8952. },
  8953. {
  8954. "name": "Michael Dowling",
  8955. "email": "mtdowling@gmail.com",
  8956. "homepage": "https://github.com/mtdowling"
  8957. },
  8958. {
  8959. "name": "Jeremy Lindblom",
  8960. "email": "jeremeamia@gmail.com",
  8961. "homepage": "https://github.com/jeremeamia"
  8962. },
  8963. {
  8964. "name": "George Mponos",
  8965. "email": "gmponos@gmail.com",
  8966. "homepage": "https://github.com/gmponos"
  8967. },
  8968. {
  8969. "name": "Tobias Nyholm",
  8970. "email": "tobias.nyholm@gmail.com",
  8971. "homepage": "https://github.com/Nyholm"
  8972. },
  8973. {
  8974. "name": "Márk Sági-Kazár",
  8975. "email": "mark.sagikazar@gmail.com",
  8976. "homepage": "https://github.com/sagikazarmark"
  8977. },
  8978. {
  8979. "name": "Tobias Schultze",
  8980. "email": "webmaster@tubo-world.de",
  8981. "homepage": "https://github.com/Tobion"
  8982. }
  8983. ],
  8984. "description": "Guzzle is a PHP HTTP client library",
  8985. "keywords": [
  8986. "client",
  8987. "curl",
  8988. "framework",
  8989. "http",
  8990. "http client",
  8991. "psr-18",
  8992. "psr-7",
  8993. "rest",
  8994. "web service"
  8995. ],
  8996. "support": {
  8997. "issues": "https://github.com/guzzle/guzzle/issues",
  8998. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  8999. },
  9000. "funding": [
  9001. {
  9002. "url": "https://github.com/GrahamCampbell",
  9003. "type": "github"
  9004. },
  9005. {
  9006. "url": "https://github.com/Nyholm",
  9007. "type": "github"
  9008. },
  9009. {
  9010. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  9011. "type": "tidelift"
  9012. }
  9013. ],
  9014. "time": "2025-03-27T13:37:11+00:00"
  9015. },
  9016. {
  9017. "name": "guzzlehttp/promises",
  9018. "version": "2.2.0",
  9019. "source": {
  9020. "type": "git",
  9021. "url": "https://github.com/guzzle/promises.git",
  9022. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  9023. },
  9024. "dist": {
  9025. "type": "zip",
  9026. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  9027. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  9028. "shasum": ""
  9029. },
  9030. "require": {
  9031. "php": "^7.2.5 || ^8.0"
  9032. },
  9033. "require-dev": {
  9034. "bamarni/composer-bin-plugin": "^1.8.2",
  9035. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  9036. },
  9037. "type": "library",
  9038. "extra": {
  9039. "bamarni-bin": {
  9040. "bin-links": true,
  9041. "forward-command": false
  9042. }
  9043. },
  9044. "autoload": {
  9045. "psr-4": {
  9046. "GuzzleHttp\\Promise\\": "src/"
  9047. }
  9048. },
  9049. "notification-url": "https://packagist.org/downloads/",
  9050. "license": [
  9051. "MIT"
  9052. ],
  9053. "authors": [
  9054. {
  9055. "name": "Graham Campbell",
  9056. "email": "hello@gjcampbell.co.uk",
  9057. "homepage": "https://github.com/GrahamCampbell"
  9058. },
  9059. {
  9060. "name": "Michael Dowling",
  9061. "email": "mtdowling@gmail.com",
  9062. "homepage": "https://github.com/mtdowling"
  9063. },
  9064. {
  9065. "name": "Tobias Nyholm",
  9066. "email": "tobias.nyholm@gmail.com",
  9067. "homepage": "https://github.com/Nyholm"
  9068. },
  9069. {
  9070. "name": "Tobias Schultze",
  9071. "email": "webmaster@tubo-world.de",
  9072. "homepage": "https://github.com/Tobion"
  9073. }
  9074. ],
  9075. "description": "Guzzle promises library",
  9076. "keywords": [
  9077. "promise"
  9078. ],
  9079. "support": {
  9080. "issues": "https://github.com/guzzle/promises/issues",
  9081. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  9082. },
  9083. "funding": [
  9084. {
  9085. "url": "https://github.com/GrahamCampbell",
  9086. "type": "github"
  9087. },
  9088. {
  9089. "url": "https://github.com/Nyholm",
  9090. "type": "github"
  9091. },
  9092. {
  9093. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  9094. "type": "tidelift"
  9095. }
  9096. ],
  9097. "time": "2025-03-27T13:27:01+00:00"
  9098. },
  9099. {
  9100. "name": "guzzlehttp/psr7",
  9101. "version": "2.7.1",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/guzzle/psr7.git",
  9105. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  9110. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "php": "^7.2.5 || ^8.0",
  9115. "psr/http-factory": "^1.0",
  9116. "psr/http-message": "^1.1 || ^2.0",
  9117. "ralouphie/getallheaders": "^3.0"
  9118. },
  9119. "provide": {
  9120. "psr/http-factory-implementation": "1.0",
  9121. "psr/http-message-implementation": "1.0"
  9122. },
  9123. "require-dev": {
  9124. "bamarni/composer-bin-plugin": "^1.8.2",
  9125. "http-interop/http-factory-tests": "0.9.0",
  9126. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  9127. },
  9128. "suggest": {
  9129. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  9130. },
  9131. "type": "library",
  9132. "extra": {
  9133. "bamarni-bin": {
  9134. "bin-links": true,
  9135. "forward-command": false
  9136. }
  9137. },
  9138. "autoload": {
  9139. "psr-4": {
  9140. "GuzzleHttp\\Psr7\\": "src/"
  9141. }
  9142. },
  9143. "notification-url": "https://packagist.org/downloads/",
  9144. "license": [
  9145. "MIT"
  9146. ],
  9147. "authors": [
  9148. {
  9149. "name": "Graham Campbell",
  9150. "email": "hello@gjcampbell.co.uk",
  9151. "homepage": "https://github.com/GrahamCampbell"
  9152. },
  9153. {
  9154. "name": "Michael Dowling",
  9155. "email": "mtdowling@gmail.com",
  9156. "homepage": "https://github.com/mtdowling"
  9157. },
  9158. {
  9159. "name": "George Mponos",
  9160. "email": "gmponos@gmail.com",
  9161. "homepage": "https://github.com/gmponos"
  9162. },
  9163. {
  9164. "name": "Tobias Nyholm",
  9165. "email": "tobias.nyholm@gmail.com",
  9166. "homepage": "https://github.com/Nyholm"
  9167. },
  9168. {
  9169. "name": "Márk Sági-Kazár",
  9170. "email": "mark.sagikazar@gmail.com",
  9171. "homepage": "https://github.com/sagikazarmark"
  9172. },
  9173. {
  9174. "name": "Tobias Schultze",
  9175. "email": "webmaster@tubo-world.de",
  9176. "homepage": "https://github.com/Tobion"
  9177. },
  9178. {
  9179. "name": "Márk Sági-Kazár",
  9180. "email": "mark.sagikazar@gmail.com",
  9181. "homepage": "https://sagikazarmark.hu"
  9182. }
  9183. ],
  9184. "description": "PSR-7 message implementation that also provides common utility methods",
  9185. "keywords": [
  9186. "http",
  9187. "message",
  9188. "psr-7",
  9189. "request",
  9190. "response",
  9191. "stream",
  9192. "uri",
  9193. "url"
  9194. ],
  9195. "support": {
  9196. "issues": "https://github.com/guzzle/psr7/issues",
  9197. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  9198. },
  9199. "funding": [
  9200. {
  9201. "url": "https://github.com/GrahamCampbell",
  9202. "type": "github"
  9203. },
  9204. {
  9205. "url": "https://github.com/Nyholm",
  9206. "type": "github"
  9207. },
  9208. {
  9209. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  9210. "type": "tidelift"
  9211. }
  9212. ],
  9213. "time": "2025-03-27T12:30:47+00:00"
  9214. },
  9215. {
  9216. "name": "kint-php/kint",
  9217. "version": "3.3",
  9218. "source": {
  9219. "type": "git",
  9220. "url": "https://github.com/kint-php/kint.git",
  9221. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  9222. },
  9223. "dist": {
  9224. "type": "zip",
  9225. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9226. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  9227. "shasum": ""
  9228. },
  9229. "require": {
  9230. "php": ">=5.3.6"
  9231. },
  9232. "require-dev": {
  9233. "friendsofphp/php-cs-fixer": "^2.0",
  9234. "phpunit/phpunit": "^4.0",
  9235. "seld/phar-utils": "^1.0",
  9236. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  9237. "vimeo/psalm": "^3.0"
  9238. },
  9239. "suggest": {
  9240. "ext-ctype": "Simple data type tests",
  9241. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  9242. "ext-mbstring": "Provides string encoding detection",
  9243. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  9244. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  9245. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  9246. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  9247. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  9248. },
  9249. "type": "library",
  9250. "autoload": {
  9251. "files": [
  9252. "init.php"
  9253. ],
  9254. "psr-4": {
  9255. "Kint\\": "src/"
  9256. }
  9257. },
  9258. "notification-url": "https://packagist.org/downloads/",
  9259. "license": [
  9260. "MIT"
  9261. ],
  9262. "authors": [
  9263. {
  9264. "name": "Jonathan Vollebregt",
  9265. "homepage": "https://github.com/jnvsor"
  9266. },
  9267. {
  9268. "name": "Rokas Šleinius",
  9269. "homepage": "https://github.com/raveren"
  9270. },
  9271. {
  9272. "name": "Contributors",
  9273. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  9274. }
  9275. ],
  9276. "description": "Kint - debugging tool for PHP developers",
  9277. "homepage": "https://kint-php.github.io/kint/",
  9278. "keywords": [
  9279. "debug",
  9280. "kint",
  9281. "php"
  9282. ],
  9283. "support": {
  9284. "issues": "https://github.com/kint-php/kint/issues",
  9285. "source": "https://github.com/kint-php/kint/tree/master"
  9286. },
  9287. "time": "2019-10-17T18:05:24+00:00"
  9288. },
  9289. {
  9290. "name": "league/container",
  9291. "version": "4.2.5",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/thephpleague/container.git",
  9295. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9300. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9301. "shasum": ""
  9302. },
  9303. "require": {
  9304. "php": "^7.2 || ^8.0",
  9305. "psr/container": "^1.1 || ^2.0"
  9306. },
  9307. "provide": {
  9308. "psr/container-implementation": "^1.0"
  9309. },
  9310. "replace": {
  9311. "orno/di": "~2.0"
  9312. },
  9313. "require-dev": {
  9314. "nette/php-generator": "^3.4",
  9315. "nikic/php-parser": "^4.10",
  9316. "phpstan/phpstan": "^0.12.47",
  9317. "phpunit/phpunit": "^8.5.17",
  9318. "roave/security-advisories": "dev-latest",
  9319. "scrutinizer/ocular": "^1.8",
  9320. "squizlabs/php_codesniffer": "^3.6"
  9321. },
  9322. "type": "library",
  9323. "extra": {
  9324. "branch-alias": {
  9325. "dev-1.x": "1.x-dev",
  9326. "dev-2.x": "2.x-dev",
  9327. "dev-3.x": "3.x-dev",
  9328. "dev-4.x": "4.x-dev",
  9329. "dev-master": "4.x-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "psr-4": {
  9334. "League\\Container\\": "src"
  9335. }
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "MIT"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Phil Bennett",
  9344. "email": "mail@philbennett.co.uk",
  9345. "role": "Developer"
  9346. }
  9347. ],
  9348. "description": "A fast and intuitive dependency injection container.",
  9349. "homepage": "https://github.com/thephpleague/container",
  9350. "keywords": [
  9351. "container",
  9352. "dependency",
  9353. "di",
  9354. "injection",
  9355. "league",
  9356. "provider",
  9357. "service"
  9358. ],
  9359. "support": {
  9360. "issues": "https://github.com/thephpleague/container/issues",
  9361. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9362. },
  9363. "funding": [
  9364. {
  9365. "url": "https://github.com/philipobenito",
  9366. "type": "github"
  9367. }
  9368. ],
  9369. "time": "2025-05-20T12:55:37+00:00"
  9370. },
  9371. {
  9372. "name": "masterminds/html5",
  9373. "version": "2.9.0",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/Masterminds/html5-php.git",
  9377. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9382. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9383. "shasum": ""
  9384. },
  9385. "require": {
  9386. "ext-dom": "*",
  9387. "php": ">=5.3.0"
  9388. },
  9389. "require-dev": {
  9390. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9391. },
  9392. "type": "library",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-master": "2.7-dev"
  9396. }
  9397. },
  9398. "autoload": {
  9399. "psr-4": {
  9400. "Masterminds\\": "src"
  9401. }
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "MIT"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Matt Butcher",
  9410. "email": "technosophos@gmail.com"
  9411. },
  9412. {
  9413. "name": "Matt Farina",
  9414. "email": "matt@mattfarina.com"
  9415. },
  9416. {
  9417. "name": "Asmir Mustafic",
  9418. "email": "goetas@gmail.com"
  9419. }
  9420. ],
  9421. "description": "An HTML5 parser and serializer.",
  9422. "homepage": "http://masterminds.github.io/html5-php",
  9423. "keywords": [
  9424. "HTML5",
  9425. "dom",
  9426. "html",
  9427. "parser",
  9428. "querypath",
  9429. "serializer",
  9430. "xml"
  9431. ],
  9432. "support": {
  9433. "issues": "https://github.com/Masterminds/html5-php/issues",
  9434. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9435. },
  9436. "time": "2024-03-31T07:05:07+00:00"
  9437. },
  9438. {
  9439. "name": "mck89/peast",
  9440. "version": "v1.17.2",
  9441. "source": {
  9442. "type": "git",
  9443. "url": "https://github.com/mck89/peast.git",
  9444. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea"
  9445. },
  9446. "dist": {
  9447. "type": "zip",
  9448. "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea",
  9449. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea",
  9450. "shasum": ""
  9451. },
  9452. "require": {
  9453. "ext-mbstring": "*",
  9454. "php": ">=5.4.0"
  9455. },
  9456. "require-dev": {
  9457. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9458. },
  9459. "type": "library",
  9460. "extra": {
  9461. "branch-alias": {
  9462. "dev-master": "1.17.2-dev"
  9463. }
  9464. },
  9465. "autoload": {
  9466. "psr-4": {
  9467. "Peast\\": "lib/Peast/"
  9468. }
  9469. },
  9470. "notification-url": "https://packagist.org/downloads/",
  9471. "license": [
  9472. "BSD-3-Clause"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Marco Marchiò",
  9477. "email": "marco.mm89@gmail.com"
  9478. }
  9479. ],
  9480. "description": "Peast is PHP library that generates AST for JavaScript code",
  9481. "support": {
  9482. "issues": "https://github.com/mck89/peast/issues",
  9483. "source": "https://github.com/mck89/peast/tree/v1.17.2"
  9484. },
  9485. "time": "2025-07-01T09:30:45+00:00"
  9486. },
  9487. {
  9488. "name": "nikic/php-parser",
  9489. "version": "v5.6.1",
  9490. "source": {
  9491. "type": "git",
  9492. "url": "https://github.com/nikic/PHP-Parser.git",
  9493. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  9494. },
  9495. "dist": {
  9496. "type": "zip",
  9497. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  9498. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  9499. "shasum": ""
  9500. },
  9501. "require": {
  9502. "ext-ctype": "*",
  9503. "ext-json": "*",
  9504. "ext-tokenizer": "*",
  9505. "php": ">=7.4"
  9506. },
  9507. "require-dev": {
  9508. "ircmaxell/php-yacc": "^0.0.7",
  9509. "phpunit/phpunit": "^9.0"
  9510. },
  9511. "bin": [
  9512. "bin/php-parse"
  9513. ],
  9514. "type": "library",
  9515. "extra": {
  9516. "branch-alias": {
  9517. "dev-master": "5.x-dev"
  9518. }
  9519. },
  9520. "autoload": {
  9521. "psr-4": {
  9522. "PhpParser\\": "lib/PhpParser"
  9523. }
  9524. },
  9525. "notification-url": "https://packagist.org/downloads/",
  9526. "license": [
  9527. "BSD-3-Clause"
  9528. ],
  9529. "authors": [
  9530. {
  9531. "name": "Nikita Popov"
  9532. }
  9533. ],
  9534. "description": "A PHP parser written in PHP",
  9535. "keywords": [
  9536. "parser",
  9537. "php"
  9538. ],
  9539. "support": {
  9540. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9541. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  9542. },
  9543. "time": "2025-08-13T20:13:15+00:00"
  9544. },
  9545. {
  9546. "name": "pear/archive_tar",
  9547. "version": "1.5.0",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/pear/Archive_Tar.git",
  9551. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  9556. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  9557. "shasum": ""
  9558. },
  9559. "require": {
  9560. "pear/pear-core-minimal": "^1.10.0alpha2",
  9561. "php": ">=5.2.0"
  9562. },
  9563. "require-dev": {
  9564. "phpunit/phpunit": "*"
  9565. },
  9566. "suggest": {
  9567. "ext-bz2": "Bz2 compression support.",
  9568. "ext-xz": "Lzma2 compression support.",
  9569. "ext-zlib": "Gzip compression support."
  9570. },
  9571. "type": "library",
  9572. "extra": {
  9573. "branch-alias": {
  9574. "dev-master": "1.4.x-dev"
  9575. }
  9576. },
  9577. "autoload": {
  9578. "psr-0": {
  9579. "Archive_Tar": ""
  9580. }
  9581. },
  9582. "notification-url": "https://packagist.org/downloads/",
  9583. "include-path": [
  9584. "./"
  9585. ],
  9586. "license": [
  9587. "BSD-2-Clause"
  9588. ],
  9589. "authors": [
  9590. {
  9591. "name": "Vincent Blavet",
  9592. "email": "vincent@phpconcept.net"
  9593. },
  9594. {
  9595. "name": "Greg Beaver",
  9596. "email": "greg@chiaraquartet.net"
  9597. },
  9598. {
  9599. "name": "Michiel Rook",
  9600. "email": "mrook@php.net"
  9601. }
  9602. ],
  9603. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9604. "homepage": "https://github.com/pear/Archive_Tar",
  9605. "keywords": [
  9606. "archive",
  9607. "tar"
  9608. ],
  9609. "support": {
  9610. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9611. "source": "https://github.com/pear/Archive_Tar"
  9612. },
  9613. "time": "2024-03-16T16:21:40+00:00"
  9614. },
  9615. {
  9616. "name": "pear/console_getopt",
  9617. "version": "v1.4.3",
  9618. "source": {
  9619. "type": "git",
  9620. "url": "https://github.com/pear/Console_Getopt.git",
  9621. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9622. },
  9623. "dist": {
  9624. "type": "zip",
  9625. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9626. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9627. "shasum": ""
  9628. },
  9629. "type": "library",
  9630. "autoload": {
  9631. "psr-0": {
  9632. "Console": "./"
  9633. }
  9634. },
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "include-path": [
  9637. "./"
  9638. ],
  9639. "license": [
  9640. "BSD-2-Clause"
  9641. ],
  9642. "authors": [
  9643. {
  9644. "name": "Andrei Zmievski",
  9645. "email": "andrei@php.net",
  9646. "role": "Lead"
  9647. },
  9648. {
  9649. "name": "Stig Bakken",
  9650. "email": "stig@php.net",
  9651. "role": "Developer"
  9652. },
  9653. {
  9654. "name": "Greg Beaver",
  9655. "email": "cellog@php.net",
  9656. "role": "Helper"
  9657. }
  9658. ],
  9659. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9660. "support": {
  9661. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9662. "source": "https://github.com/pear/Console_Getopt"
  9663. },
  9664. "time": "2019-11-20T18:27:48+00:00"
  9665. },
  9666. {
  9667. "name": "pear/pear-core-minimal",
  9668. "version": "v1.10.16",
  9669. "source": {
  9670. "type": "git",
  9671. "url": "https://github.com/pear/pear-core-minimal.git",
  9672. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  9673. },
  9674. "dist": {
  9675. "type": "zip",
  9676. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9677. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9678. "shasum": ""
  9679. },
  9680. "require": {
  9681. "pear/console_getopt": "~1.4",
  9682. "pear/pear_exception": "~1.0",
  9683. "php": ">=5.4"
  9684. },
  9685. "replace": {
  9686. "rsky/pear-core-min": "self.version"
  9687. },
  9688. "type": "library",
  9689. "autoload": {
  9690. "classmap": [
  9691. "src/"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "include-path": [
  9696. "src/"
  9697. ],
  9698. "license": [
  9699. "BSD-3-Clause"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Christian Weiske",
  9704. "email": "cweiske@php.net",
  9705. "role": "Lead"
  9706. }
  9707. ],
  9708. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9709. "support": {
  9710. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9711. "source": "https://github.com/pear/pear-core-minimal"
  9712. },
  9713. "time": "2024-11-24T22:27:58+00:00"
  9714. },
  9715. {
  9716. "name": "pear/pear_exception",
  9717. "version": "v1.0.2",
  9718. "source": {
  9719. "type": "git",
  9720. "url": "https://github.com/pear/PEAR_Exception.git",
  9721. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9722. },
  9723. "dist": {
  9724. "type": "zip",
  9725. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9726. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9727. "shasum": ""
  9728. },
  9729. "require": {
  9730. "php": ">=5.2.0"
  9731. },
  9732. "require-dev": {
  9733. "phpunit/phpunit": "<9"
  9734. },
  9735. "type": "class",
  9736. "extra": {
  9737. "branch-alias": {
  9738. "dev-master": "1.0.x-dev"
  9739. }
  9740. },
  9741. "autoload": {
  9742. "classmap": [
  9743. "PEAR/"
  9744. ]
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "include-path": [
  9748. "."
  9749. ],
  9750. "license": [
  9751. "BSD-2-Clause"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Helgi Thormar",
  9756. "email": "dufuz@php.net"
  9757. },
  9758. {
  9759. "name": "Greg Beaver",
  9760. "email": "cellog@php.net"
  9761. }
  9762. ],
  9763. "description": "The PEAR Exception base class.",
  9764. "homepage": "https://github.com/pear/PEAR_Exception",
  9765. "keywords": [
  9766. "exception"
  9767. ],
  9768. "support": {
  9769. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9770. "source": "https://github.com/pear/PEAR_Exception"
  9771. },
  9772. "time": "2021-03-21T15:43:46+00:00"
  9773. },
  9774. {
  9775. "name": "phenx/php-font-lib",
  9776. "version": "0.5.4",
  9777. "source": {
  9778. "type": "git",
  9779. "url": "https://github.com/dompdf/php-font-lib.git",
  9780. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  9781. },
  9782. "dist": {
  9783. "type": "zip",
  9784. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  9785. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  9786. "shasum": ""
  9787. },
  9788. "require": {
  9789. "ext-mbstring": "*"
  9790. },
  9791. "require-dev": {
  9792. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  9793. },
  9794. "type": "library",
  9795. "autoload": {
  9796. "psr-4": {
  9797. "FontLib\\": "src/FontLib"
  9798. }
  9799. },
  9800. "notification-url": "https://packagist.org/downloads/",
  9801. "license": [
  9802. "LGPL-3.0"
  9803. ],
  9804. "authors": [
  9805. {
  9806. "name": "Fabien Ménager",
  9807. "email": "fabien.menager@gmail.com"
  9808. }
  9809. ],
  9810. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9811. "homepage": "https://github.com/PhenX/php-font-lib",
  9812. "support": {
  9813. "issues": "https://github.com/dompdf/php-font-lib/issues",
  9814. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  9815. },
  9816. "time": "2021-12-17T19:44:54+00:00"
  9817. },
  9818. {
  9819. "name": "phootwork/collection",
  9820. "version": "v3.2.3",
  9821. "source": {
  9822. "type": "git",
  9823. "url": "https://github.com/phootwork/collection.git",
  9824. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9825. },
  9826. "dist": {
  9827. "type": "zip",
  9828. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9829. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9830. "shasum": ""
  9831. },
  9832. "require": {
  9833. "phootwork/lang": "^3.0",
  9834. "php": ">=8.0"
  9835. },
  9836. "type": "library",
  9837. "autoload": {
  9838. "psr-4": {
  9839. "phootwork\\collection\\": ""
  9840. }
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "MIT"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Thomas Gossmann",
  9849. "homepage": "http://gos.si"
  9850. }
  9851. ],
  9852. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9853. "homepage": "https://phootwork.github.io/collection/",
  9854. "keywords": [
  9855. "Array object",
  9856. "Text object",
  9857. "collection",
  9858. "collections",
  9859. "json",
  9860. "list",
  9861. "map",
  9862. "queue",
  9863. "set",
  9864. "stack",
  9865. "xml"
  9866. ],
  9867. "support": {
  9868. "issues": "https://github.com/phootwork/phootwork/issues",
  9869. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9870. },
  9871. "time": "2022-08-27T12:51:24+00:00"
  9872. },
  9873. {
  9874. "name": "phootwork/lang",
  9875. "version": "v3.2.3",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/phootwork/lang.git",
  9879. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9884. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9885. "shasum": ""
  9886. },
  9887. "require": {
  9888. "php": ">=8.0",
  9889. "symfony/polyfill-mbstring": "^1.12",
  9890. "symfony/polyfill-php81": "^1.22"
  9891. },
  9892. "type": "library",
  9893. "autoload": {
  9894. "psr-4": {
  9895. "phootwork\\lang\\": ""
  9896. }
  9897. },
  9898. "notification-url": "https://packagist.org/downloads/",
  9899. "license": [
  9900. "MIT"
  9901. ],
  9902. "authors": [
  9903. {
  9904. "name": "Thomas Gossmann",
  9905. "homepage": "http://gos.si"
  9906. }
  9907. ],
  9908. "description": "Missing PHP language constructs",
  9909. "homepage": "https://phootwork.github.io/lang/",
  9910. "keywords": [
  9911. "array",
  9912. "comparator",
  9913. "comparison",
  9914. "string"
  9915. ],
  9916. "support": {
  9917. "issues": "https://github.com/phootwork/phootwork/issues",
  9918. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9919. },
  9920. "time": "2024-10-03T13:43:19+00:00"
  9921. },
  9922. {
  9923. "name": "phpmailer/phpmailer",
  9924. "version": "v6.8.1",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9928. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  9933. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "ext-ctype": "*",
  9938. "ext-filter": "*",
  9939. "ext-hash": "*",
  9940. "php": ">=5.5.0"
  9941. },
  9942. "require-dev": {
  9943. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9944. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9945. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9946. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9947. "phpcompatibility/php-compatibility": "^9.3.5",
  9948. "roave/security-advisories": "dev-latest",
  9949. "squizlabs/php_codesniffer": "^3.7.2",
  9950. "yoast/phpunit-polyfills": "^1.0.4"
  9951. },
  9952. "suggest": {
  9953. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9954. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9955. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9956. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9957. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9958. "psr/log": "For optional PSR-3 debug logging",
  9959. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9960. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9961. },
  9962. "type": "library",
  9963. "autoload": {
  9964. "psr-4": {
  9965. "PHPMailer\\PHPMailer\\": "src/"
  9966. }
  9967. },
  9968. "notification-url": "https://packagist.org/downloads/",
  9969. "license": [
  9970. "LGPL-2.1-only"
  9971. ],
  9972. "authors": [
  9973. {
  9974. "name": "Marcus Bointon",
  9975. "email": "phpmailer@synchromedia.co.uk"
  9976. },
  9977. {
  9978. "name": "Jim Jagielski",
  9979. "email": "jimjag@gmail.com"
  9980. },
  9981. {
  9982. "name": "Andy Prevost",
  9983. "email": "codeworxtech@users.sourceforge.net"
  9984. },
  9985. {
  9986. "name": "Brent R. Matzelle"
  9987. }
  9988. ],
  9989. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9990. "support": {
  9991. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  9992. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  9993. },
  9994. "funding": [
  9995. {
  9996. "url": "https://github.com/Synchro",
  9997. "type": "github"
  9998. }
  9999. ],
  10000. "time": "2023-08-29T08:26:30+00:00"
  10001. },
  10002. {
  10003. "name": "phpowermove/docblock",
  10004. "version": "v4.0",
  10005. "source": {
  10006. "type": "git",
  10007. "url": "https://github.com/phpowermove/docblock.git",
  10008. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10009. },
  10010. "dist": {
  10011. "type": "zip",
  10012. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10013. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10014. "shasum": ""
  10015. },
  10016. "require": {
  10017. "phootwork/collection": "^3.0",
  10018. "phootwork/lang": "^3.0",
  10019. "php": ">=8.0"
  10020. },
  10021. "require-dev": {
  10022. "phootwork/php-cs-fixer-config": "^0.4",
  10023. "phpunit/phpunit": "^9.0",
  10024. "psalm/phar": "^4.3"
  10025. },
  10026. "type": "library",
  10027. "autoload": {
  10028. "psr-4": {
  10029. "phpowermove\\docblock\\": "src/"
  10030. }
  10031. },
  10032. "notification-url": "https://packagist.org/downloads/",
  10033. "license": [
  10034. "MIT"
  10035. ],
  10036. "authors": [
  10037. {
  10038. "name": "Thomas Gossmann",
  10039. "homepage": "http://gos.si"
  10040. }
  10041. ],
  10042. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10043. "keywords": [
  10044. "docblock",
  10045. "generator",
  10046. "parser"
  10047. ],
  10048. "support": {
  10049. "issues": "https://github.com/phpowermove/docblock/issues",
  10050. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10051. },
  10052. "time": "2021-09-22T16:57:06+00:00"
  10053. },
  10054. {
  10055. "name": "politsin/jquery-ui-touch-punch",
  10056. "version": "1.0",
  10057. "source": {
  10058. "type": "git",
  10059. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10060. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10061. },
  10062. "dist": {
  10063. "type": "zip",
  10064. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10065. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10066. "shasum": ""
  10067. },
  10068. "type": "drupal-library",
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Dave Furfero",
  10076. "email": "furf@furf.com"
  10077. }
  10078. ],
  10079. "description": "Extension to jQuery UI for mobile touch event support.",
  10080. "homepage": "http://touchpunch.furf.com/",
  10081. "keywords": [
  10082. "gestures",
  10083. "mobile",
  10084. "touch"
  10085. ],
  10086. "support": {
  10087. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10088. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10089. },
  10090. "time": "2020-12-15T10:26:18+00:00"
  10091. },
  10092. {
  10093. "name": "psr/cache",
  10094. "version": "3.0.0",
  10095. "source": {
  10096. "type": "git",
  10097. "url": "https://github.com/php-fig/cache.git",
  10098. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10099. },
  10100. "dist": {
  10101. "type": "zip",
  10102. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10103. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10104. "shasum": ""
  10105. },
  10106. "require": {
  10107. "php": ">=8.0.0"
  10108. },
  10109. "type": "library",
  10110. "extra": {
  10111. "branch-alias": {
  10112. "dev-master": "1.0.x-dev"
  10113. }
  10114. },
  10115. "autoload": {
  10116. "psr-4": {
  10117. "Psr\\Cache\\": "src/"
  10118. }
  10119. },
  10120. "notification-url": "https://packagist.org/downloads/",
  10121. "license": [
  10122. "MIT"
  10123. ],
  10124. "authors": [
  10125. {
  10126. "name": "PHP-FIG",
  10127. "homepage": "https://www.php-fig.org/"
  10128. }
  10129. ],
  10130. "description": "Common interface for caching libraries",
  10131. "keywords": [
  10132. "cache",
  10133. "psr",
  10134. "psr-6"
  10135. ],
  10136. "support": {
  10137. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10138. },
  10139. "time": "2021-02-03T23:26:27+00:00"
  10140. },
  10141. {
  10142. "name": "psr/container",
  10143. "version": "2.0.2",
  10144. "source": {
  10145. "type": "git",
  10146. "url": "https://github.com/php-fig/container.git",
  10147. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10148. },
  10149. "dist": {
  10150. "type": "zip",
  10151. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10152. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10153. "shasum": ""
  10154. },
  10155. "require": {
  10156. "php": ">=7.4.0"
  10157. },
  10158. "type": "library",
  10159. "extra": {
  10160. "branch-alias": {
  10161. "dev-master": "2.0.x-dev"
  10162. }
  10163. },
  10164. "autoload": {
  10165. "psr-4": {
  10166. "Psr\\Container\\": "src/"
  10167. }
  10168. },
  10169. "notification-url": "https://packagist.org/downloads/",
  10170. "license": [
  10171. "MIT"
  10172. ],
  10173. "authors": [
  10174. {
  10175. "name": "PHP-FIG",
  10176. "homepage": "https://www.php-fig.org/"
  10177. }
  10178. ],
  10179. "description": "Common Container Interface (PHP FIG PSR-11)",
  10180. "homepage": "https://github.com/php-fig/container",
  10181. "keywords": [
  10182. "PSR-11",
  10183. "container",
  10184. "container-interface",
  10185. "container-interop",
  10186. "psr"
  10187. ],
  10188. "support": {
  10189. "issues": "https://github.com/php-fig/container/issues",
  10190. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10191. },
  10192. "time": "2021-11-05T16:47:00+00:00"
  10193. },
  10194. {
  10195. "name": "psr/event-dispatcher",
  10196. "version": "1.0.0",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/php-fig/event-dispatcher.git",
  10200. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10205. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10206. "shasum": ""
  10207. },
  10208. "require": {
  10209. "php": ">=7.2.0"
  10210. },
  10211. "type": "library",
  10212. "extra": {
  10213. "branch-alias": {
  10214. "dev-master": "1.0.x-dev"
  10215. }
  10216. },
  10217. "autoload": {
  10218. "psr-4": {
  10219. "Psr\\EventDispatcher\\": "src/"
  10220. }
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "PHP-FIG",
  10229. "homepage": "http://www.php-fig.org/"
  10230. }
  10231. ],
  10232. "description": "Standard interfaces for event handling.",
  10233. "keywords": [
  10234. "events",
  10235. "psr",
  10236. "psr-14"
  10237. ],
  10238. "support": {
  10239. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10240. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10241. },
  10242. "time": "2019-01-08T18:20:26+00:00"
  10243. },
  10244. {
  10245. "name": "psr/http-client",
  10246. "version": "1.0.3",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/php-fig/http-client.git",
  10250. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10255. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "php": "^7.0 || ^8.0",
  10260. "psr/http-message": "^1.0 || ^2.0"
  10261. },
  10262. "type": "library",
  10263. "extra": {
  10264. "branch-alias": {
  10265. "dev-master": "1.0.x-dev"
  10266. }
  10267. },
  10268. "autoload": {
  10269. "psr-4": {
  10270. "Psr\\Http\\Client\\": "src/"
  10271. }
  10272. },
  10273. "notification-url": "https://packagist.org/downloads/",
  10274. "license": [
  10275. "MIT"
  10276. ],
  10277. "authors": [
  10278. {
  10279. "name": "PHP-FIG",
  10280. "homepage": "https://www.php-fig.org/"
  10281. }
  10282. ],
  10283. "description": "Common interface for HTTP clients",
  10284. "homepage": "https://github.com/php-fig/http-client",
  10285. "keywords": [
  10286. "http",
  10287. "http-client",
  10288. "psr",
  10289. "psr-18"
  10290. ],
  10291. "support": {
  10292. "source": "https://github.com/php-fig/http-client"
  10293. },
  10294. "time": "2023-09-23T14:17:50+00:00"
  10295. },
  10296. {
  10297. "name": "psr/http-factory",
  10298. "version": "1.1.0",
  10299. "source": {
  10300. "type": "git",
  10301. "url": "https://github.com/php-fig/http-factory.git",
  10302. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10303. },
  10304. "dist": {
  10305. "type": "zip",
  10306. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10307. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10308. "shasum": ""
  10309. },
  10310. "require": {
  10311. "php": ">=7.1",
  10312. "psr/http-message": "^1.0 || ^2.0"
  10313. },
  10314. "type": "library",
  10315. "extra": {
  10316. "branch-alias": {
  10317. "dev-master": "1.0.x-dev"
  10318. }
  10319. },
  10320. "autoload": {
  10321. "psr-4": {
  10322. "Psr\\Http\\Message\\": "src/"
  10323. }
  10324. },
  10325. "notification-url": "https://packagist.org/downloads/",
  10326. "license": [
  10327. "MIT"
  10328. ],
  10329. "authors": [
  10330. {
  10331. "name": "PHP-FIG",
  10332. "homepage": "https://www.php-fig.org/"
  10333. }
  10334. ],
  10335. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10336. "keywords": [
  10337. "factory",
  10338. "http",
  10339. "message",
  10340. "psr",
  10341. "psr-17",
  10342. "psr-7",
  10343. "request",
  10344. "response"
  10345. ],
  10346. "support": {
  10347. "source": "https://github.com/php-fig/http-factory"
  10348. },
  10349. "time": "2024-04-15T12:06:14+00:00"
  10350. },
  10351. {
  10352. "name": "psr/http-message",
  10353. "version": "2.0",
  10354. "source": {
  10355. "type": "git",
  10356. "url": "https://github.com/php-fig/http-message.git",
  10357. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10358. },
  10359. "dist": {
  10360. "type": "zip",
  10361. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10362. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10363. "shasum": ""
  10364. },
  10365. "require": {
  10366. "php": "^7.2 || ^8.0"
  10367. },
  10368. "type": "library",
  10369. "extra": {
  10370. "branch-alias": {
  10371. "dev-master": "2.0.x-dev"
  10372. }
  10373. },
  10374. "autoload": {
  10375. "psr-4": {
  10376. "Psr\\Http\\Message\\": "src/"
  10377. }
  10378. },
  10379. "notification-url": "https://packagist.org/downloads/",
  10380. "license": [
  10381. "MIT"
  10382. ],
  10383. "authors": [
  10384. {
  10385. "name": "PHP-FIG",
  10386. "homepage": "https://www.php-fig.org/"
  10387. }
  10388. ],
  10389. "description": "Common interface for HTTP messages",
  10390. "homepage": "https://github.com/php-fig/http-message",
  10391. "keywords": [
  10392. "http",
  10393. "http-message",
  10394. "psr",
  10395. "psr-7",
  10396. "request",
  10397. "response"
  10398. ],
  10399. "support": {
  10400. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10401. },
  10402. "time": "2023-04-04T09:54:51+00:00"
  10403. },
  10404. {
  10405. "name": "psr/log",
  10406. "version": "3.0.2",
  10407. "source": {
  10408. "type": "git",
  10409. "url": "https://github.com/php-fig/log.git",
  10410. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10411. },
  10412. "dist": {
  10413. "type": "zip",
  10414. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10415. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10416. "shasum": ""
  10417. },
  10418. "require": {
  10419. "php": ">=8.0.0"
  10420. },
  10421. "type": "library",
  10422. "extra": {
  10423. "branch-alias": {
  10424. "dev-master": "3.x-dev"
  10425. }
  10426. },
  10427. "autoload": {
  10428. "psr-4": {
  10429. "Psr\\Log\\": "src"
  10430. }
  10431. },
  10432. "notification-url": "https://packagist.org/downloads/",
  10433. "license": [
  10434. "MIT"
  10435. ],
  10436. "authors": [
  10437. {
  10438. "name": "PHP-FIG",
  10439. "homepage": "https://www.php-fig.org/"
  10440. }
  10441. ],
  10442. "description": "Common interface for logging libraries",
  10443. "homepage": "https://github.com/php-fig/log",
  10444. "keywords": [
  10445. "log",
  10446. "psr",
  10447. "psr-3"
  10448. ],
  10449. "support": {
  10450. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10451. },
  10452. "time": "2024-09-11T13:17:53+00:00"
  10453. },
  10454. {
  10455. "name": "psy/psysh",
  10456. "version": "v0.12.12",
  10457. "source": {
  10458. "type": "git",
  10459. "url": "https://github.com/bobthecow/psysh.git",
  10460. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7"
  10461. },
  10462. "dist": {
  10463. "type": "zip",
  10464. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7",
  10465. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7",
  10466. "shasum": ""
  10467. },
  10468. "require": {
  10469. "ext-json": "*",
  10470. "ext-tokenizer": "*",
  10471. "nikic/php-parser": "^5.0 || ^4.0",
  10472. "php": "^8.0 || ^7.4",
  10473. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10474. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10475. },
  10476. "conflict": {
  10477. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10478. },
  10479. "require-dev": {
  10480. "bamarni/composer-bin-plugin": "^1.2"
  10481. },
  10482. "suggest": {
  10483. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10484. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10485. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10486. },
  10487. "bin": [
  10488. "bin/psysh"
  10489. ],
  10490. "type": "library",
  10491. "extra": {
  10492. "bamarni-bin": {
  10493. "bin-links": false,
  10494. "forward-command": false
  10495. },
  10496. "branch-alias": {
  10497. "dev-main": "0.12.x-dev"
  10498. }
  10499. },
  10500. "autoload": {
  10501. "files": [
  10502. "src/functions.php"
  10503. ],
  10504. "psr-4": {
  10505. "Psy\\": "src/"
  10506. }
  10507. },
  10508. "notification-url": "https://packagist.org/downloads/",
  10509. "license": [
  10510. "MIT"
  10511. ],
  10512. "authors": [
  10513. {
  10514. "name": "Justin Hileman",
  10515. "email": "justin@justinhileman.info"
  10516. }
  10517. ],
  10518. "description": "An interactive shell for modern PHP.",
  10519. "homepage": "https://psysh.org",
  10520. "keywords": [
  10521. "REPL",
  10522. "console",
  10523. "interactive",
  10524. "shell"
  10525. ],
  10526. "support": {
  10527. "issues": "https://github.com/bobthecow/psysh/issues",
  10528. "source": "https://github.com/bobthecow/psysh/tree/v0.12.12"
  10529. },
  10530. "time": "2025-09-20T13:46:31+00:00"
  10531. },
  10532. {
  10533. "name": "ralouphie/getallheaders",
  10534. "version": "3.0.3",
  10535. "source": {
  10536. "type": "git",
  10537. "url": "https://github.com/ralouphie/getallheaders.git",
  10538. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10539. },
  10540. "dist": {
  10541. "type": "zip",
  10542. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10543. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10544. "shasum": ""
  10545. },
  10546. "require": {
  10547. "php": ">=5.6"
  10548. },
  10549. "require-dev": {
  10550. "php-coveralls/php-coveralls": "^2.1",
  10551. "phpunit/phpunit": "^5 || ^6.5"
  10552. },
  10553. "type": "library",
  10554. "autoload": {
  10555. "files": [
  10556. "src/getallheaders.php"
  10557. ]
  10558. },
  10559. "notification-url": "https://packagist.org/downloads/",
  10560. "license": [
  10561. "MIT"
  10562. ],
  10563. "authors": [
  10564. {
  10565. "name": "Ralph Khattar",
  10566. "email": "ralph.khattar@gmail.com"
  10567. }
  10568. ],
  10569. "description": "A polyfill for getallheaders.",
  10570. "support": {
  10571. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10572. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10573. },
  10574. "time": "2019-03-08T08:55:37+00:00"
  10575. },
  10576. {
  10577. "name": "sebastian/diff",
  10578. "version": "4.0.6",
  10579. "source": {
  10580. "type": "git",
  10581. "url": "https://github.com/sebastianbergmann/diff.git",
  10582. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10583. },
  10584. "dist": {
  10585. "type": "zip",
  10586. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10587. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10588. "shasum": ""
  10589. },
  10590. "require": {
  10591. "php": ">=7.3"
  10592. },
  10593. "require-dev": {
  10594. "phpunit/phpunit": "^9.3",
  10595. "symfony/process": "^4.2 || ^5"
  10596. },
  10597. "type": "library",
  10598. "extra": {
  10599. "branch-alias": {
  10600. "dev-master": "4.0-dev"
  10601. }
  10602. },
  10603. "autoload": {
  10604. "classmap": [
  10605. "src/"
  10606. ]
  10607. },
  10608. "notification-url": "https://packagist.org/downloads/",
  10609. "license": [
  10610. "BSD-3-Clause"
  10611. ],
  10612. "authors": [
  10613. {
  10614. "name": "Sebastian Bergmann",
  10615. "email": "sebastian@phpunit.de"
  10616. },
  10617. {
  10618. "name": "Kore Nordmann",
  10619. "email": "mail@kore-nordmann.de"
  10620. }
  10621. ],
  10622. "description": "Diff implementation",
  10623. "homepage": "https://github.com/sebastianbergmann/diff",
  10624. "keywords": [
  10625. "diff",
  10626. "udiff",
  10627. "unidiff",
  10628. "unified diff"
  10629. ],
  10630. "support": {
  10631. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10632. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10633. },
  10634. "funding": [
  10635. {
  10636. "url": "https://github.com/sebastianbergmann",
  10637. "type": "github"
  10638. }
  10639. ],
  10640. "time": "2024-03-02T06:30:58+00:00"
  10641. },
  10642. {
  10643. "name": "stymiee/email-validator",
  10644. "version": "1.1.3",
  10645. "source": {
  10646. "type": "git",
  10647. "url": "https://github.com/stymiee/email-validator.git",
  10648. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  10649. },
  10650. "dist": {
  10651. "type": "zip",
  10652. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  10653. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  10654. "shasum": ""
  10655. },
  10656. "require": {
  10657. "ext-json": "*",
  10658. "php": ">=7.2.0"
  10659. },
  10660. "require-dev": {
  10661. "nunomaduro/phpinsights": "@stable",
  10662. "phpmd/phpmd": "@stable",
  10663. "phpunit/phpunit": "^8",
  10664. "squizlabs/php_codesniffer": "3.*"
  10665. },
  10666. "type": "library",
  10667. "autoload": {
  10668. "psr-4": {
  10669. "EmailValidator\\": [
  10670. "src/EmailValidator/"
  10671. ]
  10672. }
  10673. },
  10674. "notification-url": "https://packagist.org/downloads/",
  10675. "license": [
  10676. "Apache-2.0"
  10677. ],
  10678. "authors": [
  10679. {
  10680. "name": "John Conde",
  10681. "email": "stymiee@gmail.com",
  10682. "homepage": "https://stymiee.dev",
  10683. "role": "Developer"
  10684. }
  10685. ],
  10686. "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.",
  10687. "homepage": "https://github.com/stymiee/php-simple-encryption",
  10688. "keywords": [
  10689. "email",
  10690. "php",
  10691. "validation"
  10692. ],
  10693. "support": {
  10694. "issues": "https://github.com/stymiee/email-validator/issues",
  10695. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  10696. },
  10697. "time": "2022-10-11T19:23:13+00:00"
  10698. },
  10699. {
  10700. "name": "symfony/console",
  10701. "version": "v6.4.26",
  10702. "source": {
  10703. "type": "git",
  10704. "url": "https://github.com/symfony/console.git",
  10705. "reference": "492de6dfd93910d7d7a729c5a04ddcd2b9e99c4f"
  10706. },
  10707. "dist": {
  10708. "type": "zip",
  10709. "url": "https://api.github.com/repos/symfony/console/zipball/492de6dfd93910d7d7a729c5a04ddcd2b9e99c4f",
  10710. "reference": "492de6dfd93910d7d7a729c5a04ddcd2b9e99c4f",
  10711. "shasum": ""
  10712. },
  10713. "require": {
  10714. "php": ">=8.1",
  10715. "symfony/deprecation-contracts": "^2.5|^3",
  10716. "symfony/polyfill-mbstring": "~1.0",
  10717. "symfony/service-contracts": "^2.5|^3",
  10718. "symfony/string": "^5.4|^6.0|^7.0"
  10719. },
  10720. "conflict": {
  10721. "symfony/dependency-injection": "<5.4",
  10722. "symfony/dotenv": "<5.4",
  10723. "symfony/event-dispatcher": "<5.4",
  10724. "symfony/lock": "<5.4",
  10725. "symfony/process": "<5.4"
  10726. },
  10727. "provide": {
  10728. "psr/log-implementation": "1.0|2.0|3.0"
  10729. },
  10730. "require-dev": {
  10731. "psr/log": "^1|^2|^3",
  10732. "symfony/config": "^5.4|^6.0|^7.0",
  10733. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10734. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10735. "symfony/http-foundation": "^6.4|^7.0",
  10736. "symfony/http-kernel": "^6.4|^7.0",
  10737. "symfony/lock": "^5.4|^6.0|^7.0",
  10738. "symfony/messenger": "^5.4|^6.0|^7.0",
  10739. "symfony/process": "^5.4|^6.0|^7.0",
  10740. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10741. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10742. },
  10743. "type": "library",
  10744. "autoload": {
  10745. "psr-4": {
  10746. "Symfony\\Component\\Console\\": ""
  10747. },
  10748. "exclude-from-classmap": [
  10749. "/Tests/"
  10750. ]
  10751. },
  10752. "notification-url": "https://packagist.org/downloads/",
  10753. "license": [
  10754. "MIT"
  10755. ],
  10756. "authors": [
  10757. {
  10758. "name": "Fabien Potencier",
  10759. "email": "fabien@symfony.com"
  10760. },
  10761. {
  10762. "name": "Symfony Community",
  10763. "homepage": "https://symfony.com/contributors"
  10764. }
  10765. ],
  10766. "description": "Eases the creation of beautiful and testable command line interfaces",
  10767. "homepage": "https://symfony.com",
  10768. "keywords": [
  10769. "cli",
  10770. "command-line",
  10771. "console",
  10772. "terminal"
  10773. ],
  10774. "support": {
  10775. "source": "https://github.com/symfony/console/tree/v6.4.26"
  10776. },
  10777. "funding": [
  10778. {
  10779. "url": "https://symfony.com/sponsor",
  10780. "type": "custom"
  10781. },
  10782. {
  10783. "url": "https://github.com/fabpot",
  10784. "type": "github"
  10785. },
  10786. {
  10787. "url": "https://github.com/nicolas-grekas",
  10788. "type": "github"
  10789. },
  10790. {
  10791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10792. "type": "tidelift"
  10793. }
  10794. ],
  10795. "time": "2025-09-26T12:13:46+00:00"
  10796. },
  10797. {
  10798. "name": "symfony/dependency-injection",
  10799. "version": "v6.4.26",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/symfony/dependency-injection.git",
  10803. "reference": "5f311eaf0b321f8ec640f6bae12da43a14026898"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5f311eaf0b321f8ec640f6bae12da43a14026898",
  10808. "reference": "5f311eaf0b321f8ec640f6bae12da43a14026898",
  10809. "shasum": ""
  10810. },
  10811. "require": {
  10812. "php": ">=8.1",
  10813. "psr/container": "^1.1|^2.0",
  10814. "symfony/deprecation-contracts": "^2.5|^3",
  10815. "symfony/service-contracts": "^2.5|^3.0",
  10816. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10817. },
  10818. "conflict": {
  10819. "ext-psr": "<1.1|>=2",
  10820. "symfony/config": "<6.1",
  10821. "symfony/finder": "<5.4",
  10822. "symfony/proxy-manager-bridge": "<6.3",
  10823. "symfony/yaml": "<5.4"
  10824. },
  10825. "provide": {
  10826. "psr/container-implementation": "1.1|2.0",
  10827. "symfony/service-implementation": "1.1|2.0|3.0"
  10828. },
  10829. "require-dev": {
  10830. "symfony/config": "^6.1|^7.0",
  10831. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10832. "symfony/yaml": "^5.4|^6.0|^7.0"
  10833. },
  10834. "type": "library",
  10835. "autoload": {
  10836. "psr-4": {
  10837. "Symfony\\Component\\DependencyInjection\\": ""
  10838. },
  10839. "exclude-from-classmap": [
  10840. "/Tests/"
  10841. ]
  10842. },
  10843. "notification-url": "https://packagist.org/downloads/",
  10844. "license": [
  10845. "MIT"
  10846. ],
  10847. "authors": [
  10848. {
  10849. "name": "Fabien Potencier",
  10850. "email": "fabien@symfony.com"
  10851. },
  10852. {
  10853. "name": "Symfony Community",
  10854. "homepage": "https://symfony.com/contributors"
  10855. }
  10856. ],
  10857. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10858. "homepage": "https://symfony.com",
  10859. "support": {
  10860. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.26"
  10861. },
  10862. "funding": [
  10863. {
  10864. "url": "https://symfony.com/sponsor",
  10865. "type": "custom"
  10866. },
  10867. {
  10868. "url": "https://github.com/fabpot",
  10869. "type": "github"
  10870. },
  10871. {
  10872. "url": "https://github.com/nicolas-grekas",
  10873. "type": "github"
  10874. },
  10875. {
  10876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10877. "type": "tidelift"
  10878. }
  10879. ],
  10880. "time": "2025-09-11T09:57:09+00:00"
  10881. },
  10882. {
  10883. "name": "symfony/deprecation-contracts",
  10884. "version": "v3.5.1",
  10885. "source": {
  10886. "type": "git",
  10887. "url": "https://github.com/symfony/deprecation-contracts.git",
  10888. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  10889. },
  10890. "dist": {
  10891. "type": "zip",
  10892. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  10893. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  10894. "shasum": ""
  10895. },
  10896. "require": {
  10897. "php": ">=8.1"
  10898. },
  10899. "type": "library",
  10900. "extra": {
  10901. "thanks": {
  10902. "url": "https://github.com/symfony/contracts",
  10903. "name": "symfony/contracts"
  10904. },
  10905. "branch-alias": {
  10906. "dev-main": "3.5-dev"
  10907. }
  10908. },
  10909. "autoload": {
  10910. "files": [
  10911. "function.php"
  10912. ]
  10913. },
  10914. "notification-url": "https://packagist.org/downloads/",
  10915. "license": [
  10916. "MIT"
  10917. ],
  10918. "authors": [
  10919. {
  10920. "name": "Nicolas Grekas",
  10921. "email": "p@tchwork.com"
  10922. },
  10923. {
  10924. "name": "Symfony Community",
  10925. "homepage": "https://symfony.com/contributors"
  10926. }
  10927. ],
  10928. "description": "A generic function and convention to trigger deprecation notices",
  10929. "homepage": "https://symfony.com",
  10930. "support": {
  10931. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  10932. },
  10933. "funding": [
  10934. {
  10935. "url": "https://symfony.com/sponsor",
  10936. "type": "custom"
  10937. },
  10938. {
  10939. "url": "https://github.com/fabpot",
  10940. "type": "github"
  10941. },
  10942. {
  10943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10944. "type": "tidelift"
  10945. }
  10946. ],
  10947. "time": "2024-09-25T14:20:29+00:00"
  10948. },
  10949. {
  10950. "name": "symfony/error-handler",
  10951. "version": "v6.4.26",
  10952. "source": {
  10953. "type": "git",
  10954. "url": "https://github.com/symfony/error-handler.git",
  10955. "reference": "41bedcaec5b72640b0ec2096547b75fda72ead6c"
  10956. },
  10957. "dist": {
  10958. "type": "zip",
  10959. "url": "https://api.github.com/repos/symfony/error-handler/zipball/41bedcaec5b72640b0ec2096547b75fda72ead6c",
  10960. "reference": "41bedcaec5b72640b0ec2096547b75fda72ead6c",
  10961. "shasum": ""
  10962. },
  10963. "require": {
  10964. "php": ">=8.1",
  10965. "psr/log": "^1|^2|^3",
  10966. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10967. },
  10968. "conflict": {
  10969. "symfony/deprecation-contracts": "<2.5",
  10970. "symfony/http-kernel": "<6.4"
  10971. },
  10972. "require-dev": {
  10973. "symfony/deprecation-contracts": "^2.5|^3",
  10974. "symfony/http-kernel": "^6.4|^7.0",
  10975. "symfony/serializer": "^5.4|^6.0|^7.0"
  10976. },
  10977. "bin": [
  10978. "Resources/bin/patch-type-declarations"
  10979. ],
  10980. "type": "library",
  10981. "autoload": {
  10982. "psr-4": {
  10983. "Symfony\\Component\\ErrorHandler\\": ""
  10984. },
  10985. "exclude-from-classmap": [
  10986. "/Tests/"
  10987. ]
  10988. },
  10989. "notification-url": "https://packagist.org/downloads/",
  10990. "license": [
  10991. "MIT"
  10992. ],
  10993. "authors": [
  10994. {
  10995. "name": "Fabien Potencier",
  10996. "email": "fabien@symfony.com"
  10997. },
  10998. {
  10999. "name": "Symfony Community",
  11000. "homepage": "https://symfony.com/contributors"
  11001. }
  11002. ],
  11003. "description": "Provides tools to manage errors and ease debugging PHP code",
  11004. "homepage": "https://symfony.com",
  11005. "support": {
  11006. "source": "https://github.com/symfony/error-handler/tree/v6.4.26"
  11007. },
  11008. "funding": [
  11009. {
  11010. "url": "https://symfony.com/sponsor",
  11011. "type": "custom"
  11012. },
  11013. {
  11014. "url": "https://github.com/fabpot",
  11015. "type": "github"
  11016. },
  11017. {
  11018. "url": "https://github.com/nicolas-grekas",
  11019. "type": "github"
  11020. },
  11021. {
  11022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11023. "type": "tidelift"
  11024. }
  11025. ],
  11026. "time": "2025-09-11T09:57:09+00:00"
  11027. },
  11028. {
  11029. "name": "symfony/event-dispatcher",
  11030. "version": "v6.4.25",
  11031. "source": {
  11032. "type": "git",
  11033. "url": "https://github.com/symfony/event-dispatcher.git",
  11034. "reference": "b0cf3162020603587363f0551cd3be43958611ff"
  11035. },
  11036. "dist": {
  11037. "type": "zip",
  11038. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b0cf3162020603587363f0551cd3be43958611ff",
  11039. "reference": "b0cf3162020603587363f0551cd3be43958611ff",
  11040. "shasum": ""
  11041. },
  11042. "require": {
  11043. "php": ">=8.1",
  11044. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11045. },
  11046. "conflict": {
  11047. "symfony/dependency-injection": "<5.4",
  11048. "symfony/service-contracts": "<2.5"
  11049. },
  11050. "provide": {
  11051. "psr/event-dispatcher-implementation": "1.0",
  11052. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11053. },
  11054. "require-dev": {
  11055. "psr/log": "^1|^2|^3",
  11056. "symfony/config": "^5.4|^6.0|^7.0",
  11057. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11058. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11059. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11060. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11061. "symfony/service-contracts": "^2.5|^3",
  11062. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11063. },
  11064. "type": "library",
  11065. "autoload": {
  11066. "psr-4": {
  11067. "Symfony\\Component\\EventDispatcher\\": ""
  11068. },
  11069. "exclude-from-classmap": [
  11070. "/Tests/"
  11071. ]
  11072. },
  11073. "notification-url": "https://packagist.org/downloads/",
  11074. "license": [
  11075. "MIT"
  11076. ],
  11077. "authors": [
  11078. {
  11079. "name": "Fabien Potencier",
  11080. "email": "fabien@symfony.com"
  11081. },
  11082. {
  11083. "name": "Symfony Community",
  11084. "homepage": "https://symfony.com/contributors"
  11085. }
  11086. ],
  11087. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11088. "homepage": "https://symfony.com",
  11089. "support": {
  11090. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.25"
  11091. },
  11092. "funding": [
  11093. {
  11094. "url": "https://symfony.com/sponsor",
  11095. "type": "custom"
  11096. },
  11097. {
  11098. "url": "https://github.com/fabpot",
  11099. "type": "github"
  11100. },
  11101. {
  11102. "url": "https://github.com/nicolas-grekas",
  11103. "type": "github"
  11104. },
  11105. {
  11106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11107. "type": "tidelift"
  11108. }
  11109. ],
  11110. "time": "2025-08-13T09:41:44+00:00"
  11111. },
  11112. {
  11113. "name": "symfony/event-dispatcher-contracts",
  11114. "version": "v3.5.1",
  11115. "source": {
  11116. "type": "git",
  11117. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11118. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11119. },
  11120. "dist": {
  11121. "type": "zip",
  11122. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11123. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11124. "shasum": ""
  11125. },
  11126. "require": {
  11127. "php": ">=8.1",
  11128. "psr/event-dispatcher": "^1"
  11129. },
  11130. "type": "library",
  11131. "extra": {
  11132. "thanks": {
  11133. "url": "https://github.com/symfony/contracts",
  11134. "name": "symfony/contracts"
  11135. },
  11136. "branch-alias": {
  11137. "dev-main": "3.5-dev"
  11138. }
  11139. },
  11140. "autoload": {
  11141. "psr-4": {
  11142. "Symfony\\Contracts\\EventDispatcher\\": ""
  11143. }
  11144. },
  11145. "notification-url": "https://packagist.org/downloads/",
  11146. "license": [
  11147. "MIT"
  11148. ],
  11149. "authors": [
  11150. {
  11151. "name": "Nicolas Grekas",
  11152. "email": "p@tchwork.com"
  11153. },
  11154. {
  11155. "name": "Symfony Community",
  11156. "homepage": "https://symfony.com/contributors"
  11157. }
  11158. ],
  11159. "description": "Generic abstractions related to dispatching event",
  11160. "homepage": "https://symfony.com",
  11161. "keywords": [
  11162. "abstractions",
  11163. "contracts",
  11164. "decoupling",
  11165. "interfaces",
  11166. "interoperability",
  11167. "standards"
  11168. ],
  11169. "support": {
  11170. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11171. },
  11172. "funding": [
  11173. {
  11174. "url": "https://symfony.com/sponsor",
  11175. "type": "custom"
  11176. },
  11177. {
  11178. "url": "https://github.com/fabpot",
  11179. "type": "github"
  11180. },
  11181. {
  11182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11183. "type": "tidelift"
  11184. }
  11185. ],
  11186. "time": "2024-09-25T14:20:29+00:00"
  11187. },
  11188. {
  11189. "name": "symfony/filesystem",
  11190. "version": "v6.4.24",
  11191. "source": {
  11192. "type": "git",
  11193. "url": "https://github.com/symfony/filesystem.git",
  11194. "reference": "75ae2edb7cdcc0c53766c30b0a2512b8df574bd8"
  11195. },
  11196. "dist": {
  11197. "type": "zip",
  11198. "url": "https://api.github.com/repos/symfony/filesystem/zipball/75ae2edb7cdcc0c53766c30b0a2512b8df574bd8",
  11199. "reference": "75ae2edb7cdcc0c53766c30b0a2512b8df574bd8",
  11200. "shasum": ""
  11201. },
  11202. "require": {
  11203. "php": ">=8.1",
  11204. "symfony/polyfill-ctype": "~1.8",
  11205. "symfony/polyfill-mbstring": "~1.8"
  11206. },
  11207. "require-dev": {
  11208. "symfony/process": "^5.4|^6.4|^7.0"
  11209. },
  11210. "type": "library",
  11211. "autoload": {
  11212. "psr-4": {
  11213. "Symfony\\Component\\Filesystem\\": ""
  11214. },
  11215. "exclude-from-classmap": [
  11216. "/Tests/"
  11217. ]
  11218. },
  11219. "notification-url": "https://packagist.org/downloads/",
  11220. "license": [
  11221. "MIT"
  11222. ],
  11223. "authors": [
  11224. {
  11225. "name": "Fabien Potencier",
  11226. "email": "fabien@symfony.com"
  11227. },
  11228. {
  11229. "name": "Symfony Community",
  11230. "homepage": "https://symfony.com/contributors"
  11231. }
  11232. ],
  11233. "description": "Provides basic utilities for the filesystem",
  11234. "homepage": "https://symfony.com",
  11235. "support": {
  11236. "source": "https://github.com/symfony/filesystem/tree/v6.4.24"
  11237. },
  11238. "funding": [
  11239. {
  11240. "url": "https://symfony.com/sponsor",
  11241. "type": "custom"
  11242. },
  11243. {
  11244. "url": "https://github.com/fabpot",
  11245. "type": "github"
  11246. },
  11247. {
  11248. "url": "https://github.com/nicolas-grekas",
  11249. "type": "github"
  11250. },
  11251. {
  11252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11253. "type": "tidelift"
  11254. }
  11255. ],
  11256. "time": "2025-07-10T08:14:14+00:00"
  11257. },
  11258. {
  11259. "name": "symfony/finder",
  11260. "version": "v6.4.24",
  11261. "source": {
  11262. "type": "git",
  11263. "url": "https://github.com/symfony/finder.git",
  11264. "reference": "73089124388c8510efb8d2d1689285d285937b08"
  11265. },
  11266. "dist": {
  11267. "type": "zip",
  11268. "url": "https://api.github.com/repos/symfony/finder/zipball/73089124388c8510efb8d2d1689285d285937b08",
  11269. "reference": "73089124388c8510efb8d2d1689285d285937b08",
  11270. "shasum": ""
  11271. },
  11272. "require": {
  11273. "php": ">=8.1"
  11274. },
  11275. "require-dev": {
  11276. "symfony/filesystem": "^6.0|^7.0"
  11277. },
  11278. "type": "library",
  11279. "autoload": {
  11280. "psr-4": {
  11281. "Symfony\\Component\\Finder\\": ""
  11282. },
  11283. "exclude-from-classmap": [
  11284. "/Tests/"
  11285. ]
  11286. },
  11287. "notification-url": "https://packagist.org/downloads/",
  11288. "license": [
  11289. "MIT"
  11290. ],
  11291. "authors": [
  11292. {
  11293. "name": "Fabien Potencier",
  11294. "email": "fabien@symfony.com"
  11295. },
  11296. {
  11297. "name": "Symfony Community",
  11298. "homepage": "https://symfony.com/contributors"
  11299. }
  11300. ],
  11301. "description": "Finds files and directories via an intuitive fluent interface",
  11302. "homepage": "https://symfony.com",
  11303. "support": {
  11304. "source": "https://github.com/symfony/finder/tree/v6.4.24"
  11305. },
  11306. "funding": [
  11307. {
  11308. "url": "https://symfony.com/sponsor",
  11309. "type": "custom"
  11310. },
  11311. {
  11312. "url": "https://github.com/fabpot",
  11313. "type": "github"
  11314. },
  11315. {
  11316. "url": "https://github.com/nicolas-grekas",
  11317. "type": "github"
  11318. },
  11319. {
  11320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11321. "type": "tidelift"
  11322. }
  11323. ],
  11324. "time": "2025-07-15T12:02:45+00:00"
  11325. },
  11326. {
  11327. "name": "symfony/http-foundation",
  11328. "version": "v6.4.26",
  11329. "source": {
  11330. "type": "git",
  11331. "url": "https://github.com/symfony/http-foundation.git",
  11332. "reference": "369241591d92bb5dfb4c6ccd6ee94378a45b1521"
  11333. },
  11334. "dist": {
  11335. "type": "zip",
  11336. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/369241591d92bb5dfb4c6ccd6ee94378a45b1521",
  11337. "reference": "369241591d92bb5dfb4c6ccd6ee94378a45b1521",
  11338. "shasum": ""
  11339. },
  11340. "require": {
  11341. "php": ">=8.1",
  11342. "symfony/deprecation-contracts": "^2.5|^3",
  11343. "symfony/polyfill-mbstring": "~1.1",
  11344. "symfony/polyfill-php83": "^1.27"
  11345. },
  11346. "conflict": {
  11347. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11348. },
  11349. "require-dev": {
  11350. "doctrine/dbal": "^2.13.1|^3|^4",
  11351. "predis/predis": "^1.1|^2.0",
  11352. "symfony/cache": "^6.4.12|^7.1.5",
  11353. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11354. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11355. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11356. "symfony/mime": "^5.4|^6.0|^7.0",
  11357. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11358. },
  11359. "type": "library",
  11360. "autoload": {
  11361. "psr-4": {
  11362. "Symfony\\Component\\HttpFoundation\\": ""
  11363. },
  11364. "exclude-from-classmap": [
  11365. "/Tests/"
  11366. ]
  11367. },
  11368. "notification-url": "https://packagist.org/downloads/",
  11369. "license": [
  11370. "MIT"
  11371. ],
  11372. "authors": [
  11373. {
  11374. "name": "Fabien Potencier",
  11375. "email": "fabien@symfony.com"
  11376. },
  11377. {
  11378. "name": "Symfony Community",
  11379. "homepage": "https://symfony.com/contributors"
  11380. }
  11381. ],
  11382. "description": "Defines an object-oriented layer for the HTTP specification",
  11383. "homepage": "https://symfony.com",
  11384. "support": {
  11385. "source": "https://github.com/symfony/http-foundation/tree/v6.4.26"
  11386. },
  11387. "funding": [
  11388. {
  11389. "url": "https://symfony.com/sponsor",
  11390. "type": "custom"
  11391. },
  11392. {
  11393. "url": "https://github.com/fabpot",
  11394. "type": "github"
  11395. },
  11396. {
  11397. "url": "https://github.com/nicolas-grekas",
  11398. "type": "github"
  11399. },
  11400. {
  11401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11402. "type": "tidelift"
  11403. }
  11404. ],
  11405. "time": "2025-09-16T08:22:30+00:00"
  11406. },
  11407. {
  11408. "name": "symfony/http-kernel",
  11409. "version": "v6.4.26",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/symfony/http-kernel.git",
  11413. "reference": "8b0f963293aede77593c9845c8c0af34752e893a"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8b0f963293aede77593c9845c8c0af34752e893a",
  11418. "reference": "8b0f963293aede77593c9845c8c0af34752e893a",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "php": ">=8.1",
  11423. "psr/log": "^1|^2|^3",
  11424. "symfony/deprecation-contracts": "^2.5|^3",
  11425. "symfony/error-handler": "^6.4|^7.0",
  11426. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11427. "symfony/http-foundation": "^6.4|^7.0",
  11428. "symfony/polyfill-ctype": "^1.8"
  11429. },
  11430. "conflict": {
  11431. "symfony/browser-kit": "<5.4",
  11432. "symfony/cache": "<5.4",
  11433. "symfony/config": "<6.1",
  11434. "symfony/console": "<5.4",
  11435. "symfony/dependency-injection": "<6.4",
  11436. "symfony/doctrine-bridge": "<5.4",
  11437. "symfony/form": "<5.4",
  11438. "symfony/http-client": "<5.4",
  11439. "symfony/http-client-contracts": "<2.5",
  11440. "symfony/mailer": "<5.4",
  11441. "symfony/messenger": "<5.4",
  11442. "symfony/translation": "<5.4",
  11443. "symfony/translation-contracts": "<2.5",
  11444. "symfony/twig-bridge": "<5.4",
  11445. "symfony/validator": "<6.4",
  11446. "symfony/var-dumper": "<6.3",
  11447. "twig/twig": "<2.13"
  11448. },
  11449. "provide": {
  11450. "psr/log-implementation": "1.0|2.0|3.0"
  11451. },
  11452. "require-dev": {
  11453. "psr/cache": "^1.0|^2.0|^3.0",
  11454. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11455. "symfony/clock": "^6.2|^7.0",
  11456. "symfony/config": "^6.1|^7.0",
  11457. "symfony/console": "^5.4|^6.0|^7.0",
  11458. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11459. "symfony/dependency-injection": "^6.4|^7.0",
  11460. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11461. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11462. "symfony/finder": "^5.4|^6.0|^7.0",
  11463. "symfony/http-client-contracts": "^2.5|^3",
  11464. "symfony/process": "^5.4|^6.0|^7.0",
  11465. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11466. "symfony/routing": "^5.4|^6.0|^7.0",
  11467. "symfony/serializer": "^6.4.4|^7.0.4",
  11468. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11469. "symfony/translation": "^5.4|^6.0|^7.0",
  11470. "symfony/translation-contracts": "^2.5|^3",
  11471. "symfony/uid": "^5.4|^6.0|^7.0",
  11472. "symfony/validator": "^6.4|^7.0",
  11473. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11474. "symfony/var-exporter": "^6.2|^7.0",
  11475. "twig/twig": "^2.13|^3.0.4"
  11476. },
  11477. "type": "library",
  11478. "autoload": {
  11479. "psr-4": {
  11480. "Symfony\\Component\\HttpKernel\\": ""
  11481. },
  11482. "exclude-from-classmap": [
  11483. "/Tests/"
  11484. ]
  11485. },
  11486. "notification-url": "https://packagist.org/downloads/",
  11487. "license": [
  11488. "MIT"
  11489. ],
  11490. "authors": [
  11491. {
  11492. "name": "Fabien Potencier",
  11493. "email": "fabien@symfony.com"
  11494. },
  11495. {
  11496. "name": "Symfony Community",
  11497. "homepage": "https://symfony.com/contributors"
  11498. }
  11499. ],
  11500. "description": "Provides a structured process for converting a Request into a Response",
  11501. "homepage": "https://symfony.com",
  11502. "support": {
  11503. "source": "https://github.com/symfony/http-kernel/tree/v6.4.26"
  11504. },
  11505. "funding": [
  11506. {
  11507. "url": "https://symfony.com/sponsor",
  11508. "type": "custom"
  11509. },
  11510. {
  11511. "url": "https://github.com/fabpot",
  11512. "type": "github"
  11513. },
  11514. {
  11515. "url": "https://github.com/nicolas-grekas",
  11516. "type": "github"
  11517. },
  11518. {
  11519. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11520. "type": "tidelift"
  11521. }
  11522. ],
  11523. "time": "2025-09-27T12:20:56+00:00"
  11524. },
  11525. {
  11526. "name": "symfony/mailer",
  11527. "version": "v6.4.26",
  11528. "source": {
  11529. "type": "git",
  11530. "url": "https://github.com/symfony/mailer.git",
  11531. "reference": "012185cd31689b799d39505bd706be6d3a57cd3f"
  11532. },
  11533. "dist": {
  11534. "type": "zip",
  11535. "url": "https://api.github.com/repos/symfony/mailer/zipball/012185cd31689b799d39505bd706be6d3a57cd3f",
  11536. "reference": "012185cd31689b799d39505bd706be6d3a57cd3f",
  11537. "shasum": ""
  11538. },
  11539. "require": {
  11540. "egulias/email-validator": "^2.1.10|^3|^4",
  11541. "php": ">=8.1",
  11542. "psr/event-dispatcher": "^1",
  11543. "psr/log": "^1|^2|^3",
  11544. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11545. "symfony/mime": "^6.2|^7.0",
  11546. "symfony/service-contracts": "^2.5|^3"
  11547. },
  11548. "conflict": {
  11549. "symfony/http-client-contracts": "<2.5",
  11550. "symfony/http-kernel": "<5.4",
  11551. "symfony/messenger": "<6.2",
  11552. "symfony/mime": "<6.2",
  11553. "symfony/twig-bridge": "<6.2.1"
  11554. },
  11555. "require-dev": {
  11556. "symfony/console": "^5.4|^6.0|^7.0",
  11557. "symfony/http-client": "^5.4|^6.0|^7.0",
  11558. "symfony/messenger": "^6.2|^7.0",
  11559. "symfony/twig-bridge": "^6.2|^7.0"
  11560. },
  11561. "type": "library",
  11562. "autoload": {
  11563. "psr-4": {
  11564. "Symfony\\Component\\Mailer\\": ""
  11565. },
  11566. "exclude-from-classmap": [
  11567. "/Tests/"
  11568. ]
  11569. },
  11570. "notification-url": "https://packagist.org/downloads/",
  11571. "license": [
  11572. "MIT"
  11573. ],
  11574. "authors": [
  11575. {
  11576. "name": "Fabien Potencier",
  11577. "email": "fabien@symfony.com"
  11578. },
  11579. {
  11580. "name": "Symfony Community",
  11581. "homepage": "https://symfony.com/contributors"
  11582. }
  11583. ],
  11584. "description": "Helps sending emails",
  11585. "homepage": "https://symfony.com",
  11586. "support": {
  11587. "source": "https://github.com/symfony/mailer/tree/v6.4.26"
  11588. },
  11589. "funding": [
  11590. {
  11591. "url": "https://symfony.com/sponsor",
  11592. "type": "custom"
  11593. },
  11594. {
  11595. "url": "https://github.com/fabpot",
  11596. "type": "github"
  11597. },
  11598. {
  11599. "url": "https://github.com/nicolas-grekas",
  11600. "type": "github"
  11601. },
  11602. {
  11603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11604. "type": "tidelift"
  11605. }
  11606. ],
  11607. "time": "2025-09-11T09:57:09+00:00"
  11608. },
  11609. {
  11610. "name": "symfony/mime",
  11611. "version": "v6.4.26",
  11612. "source": {
  11613. "type": "git",
  11614. "url": "https://github.com/symfony/mime.git",
  11615. "reference": "61ab9681cdfe315071eb4fa79b6ad6ab030a9235"
  11616. },
  11617. "dist": {
  11618. "type": "zip",
  11619. "url": "https://api.github.com/repos/symfony/mime/zipball/61ab9681cdfe315071eb4fa79b6ad6ab030a9235",
  11620. "reference": "61ab9681cdfe315071eb4fa79b6ad6ab030a9235",
  11621. "shasum": ""
  11622. },
  11623. "require": {
  11624. "php": ">=8.1",
  11625. "symfony/deprecation-contracts": "^2.5|^3",
  11626. "symfony/polyfill-intl-idn": "^1.10",
  11627. "symfony/polyfill-mbstring": "^1.0"
  11628. },
  11629. "conflict": {
  11630. "egulias/email-validator": "~3.0.0",
  11631. "phpdocumentor/reflection-docblock": "<3.2.2",
  11632. "phpdocumentor/type-resolver": "<1.4.0",
  11633. "symfony/mailer": "<5.4",
  11634. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11635. },
  11636. "require-dev": {
  11637. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11638. "league/html-to-markdown": "^5.0",
  11639. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11640. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11641. "symfony/process": "^5.4|^6.4|^7.0",
  11642. "symfony/property-access": "^5.4|^6.0|^7.0",
  11643. "symfony/property-info": "^5.4|^6.0|^7.0",
  11644. "symfony/serializer": "^6.4.3|^7.0.3"
  11645. },
  11646. "type": "library",
  11647. "autoload": {
  11648. "psr-4": {
  11649. "Symfony\\Component\\Mime\\": ""
  11650. },
  11651. "exclude-from-classmap": [
  11652. "/Tests/"
  11653. ]
  11654. },
  11655. "notification-url": "https://packagist.org/downloads/",
  11656. "license": [
  11657. "MIT"
  11658. ],
  11659. "authors": [
  11660. {
  11661. "name": "Fabien Potencier",
  11662. "email": "fabien@symfony.com"
  11663. },
  11664. {
  11665. "name": "Symfony Community",
  11666. "homepage": "https://symfony.com/contributors"
  11667. }
  11668. ],
  11669. "description": "Allows manipulating MIME messages",
  11670. "homepage": "https://symfony.com",
  11671. "keywords": [
  11672. "mime",
  11673. "mime-type"
  11674. ],
  11675. "support": {
  11676. "source": "https://github.com/symfony/mime/tree/v6.4.26"
  11677. },
  11678. "funding": [
  11679. {
  11680. "url": "https://symfony.com/sponsor",
  11681. "type": "custom"
  11682. },
  11683. {
  11684. "url": "https://github.com/fabpot",
  11685. "type": "github"
  11686. },
  11687. {
  11688. "url": "https://github.com/nicolas-grekas",
  11689. "type": "github"
  11690. },
  11691. {
  11692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11693. "type": "tidelift"
  11694. }
  11695. ],
  11696. "time": "2025-09-16T08:22:30+00:00"
  11697. },
  11698. {
  11699. "name": "symfony/polyfill-ctype",
  11700. "version": "v1.31.0",
  11701. "source": {
  11702. "type": "git",
  11703. "url": "https://github.com/symfony/polyfill-ctype.git",
  11704. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11705. },
  11706. "dist": {
  11707. "type": "zip",
  11708. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11709. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11710. "shasum": ""
  11711. },
  11712. "require": {
  11713. "php": ">=7.2"
  11714. },
  11715. "provide": {
  11716. "ext-ctype": "*"
  11717. },
  11718. "suggest": {
  11719. "ext-ctype": "For best performance"
  11720. },
  11721. "type": "library",
  11722. "extra": {
  11723. "thanks": {
  11724. "url": "https://github.com/symfony/polyfill",
  11725. "name": "symfony/polyfill"
  11726. }
  11727. },
  11728. "autoload": {
  11729. "files": [
  11730. "bootstrap.php"
  11731. ],
  11732. "psr-4": {
  11733. "Symfony\\Polyfill\\Ctype\\": ""
  11734. }
  11735. },
  11736. "notification-url": "https://packagist.org/downloads/",
  11737. "license": [
  11738. "MIT"
  11739. ],
  11740. "authors": [
  11741. {
  11742. "name": "Gert de Pagter",
  11743. "email": "BackEndTea@gmail.com"
  11744. },
  11745. {
  11746. "name": "Symfony Community",
  11747. "homepage": "https://symfony.com/contributors"
  11748. }
  11749. ],
  11750. "description": "Symfony polyfill for ctype functions",
  11751. "homepage": "https://symfony.com",
  11752. "keywords": [
  11753. "compatibility",
  11754. "ctype",
  11755. "polyfill",
  11756. "portable"
  11757. ],
  11758. "support": {
  11759. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  11760. },
  11761. "funding": [
  11762. {
  11763. "url": "https://symfony.com/sponsor",
  11764. "type": "custom"
  11765. },
  11766. {
  11767. "url": "https://github.com/fabpot",
  11768. "type": "github"
  11769. },
  11770. {
  11771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11772. "type": "tidelift"
  11773. }
  11774. ],
  11775. "time": "2024-09-09T11:45:10+00:00"
  11776. },
  11777. {
  11778. "name": "symfony/polyfill-iconv",
  11779. "version": "v1.31.0",
  11780. "source": {
  11781. "type": "git",
  11782. "url": "https://github.com/symfony/polyfill-iconv.git",
  11783. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  11784. },
  11785. "dist": {
  11786. "type": "zip",
  11787. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  11788. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  11789. "shasum": ""
  11790. },
  11791. "require": {
  11792. "php": ">=7.2"
  11793. },
  11794. "provide": {
  11795. "ext-iconv": "*"
  11796. },
  11797. "suggest": {
  11798. "ext-iconv": "For best performance"
  11799. },
  11800. "type": "library",
  11801. "extra": {
  11802. "thanks": {
  11803. "url": "https://github.com/symfony/polyfill",
  11804. "name": "symfony/polyfill"
  11805. }
  11806. },
  11807. "autoload": {
  11808. "files": [
  11809. "bootstrap.php"
  11810. ],
  11811. "psr-4": {
  11812. "Symfony\\Polyfill\\Iconv\\": ""
  11813. }
  11814. },
  11815. "notification-url": "https://packagist.org/downloads/",
  11816. "license": [
  11817. "MIT"
  11818. ],
  11819. "authors": [
  11820. {
  11821. "name": "Nicolas Grekas",
  11822. "email": "p@tchwork.com"
  11823. },
  11824. {
  11825. "name": "Symfony Community",
  11826. "homepage": "https://symfony.com/contributors"
  11827. }
  11828. ],
  11829. "description": "Symfony polyfill for the Iconv extension",
  11830. "homepage": "https://symfony.com",
  11831. "keywords": [
  11832. "compatibility",
  11833. "iconv",
  11834. "polyfill",
  11835. "portable",
  11836. "shim"
  11837. ],
  11838. "support": {
  11839. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  11840. },
  11841. "funding": [
  11842. {
  11843. "url": "https://symfony.com/sponsor",
  11844. "type": "custom"
  11845. },
  11846. {
  11847. "url": "https://github.com/fabpot",
  11848. "type": "github"
  11849. },
  11850. {
  11851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11852. "type": "tidelift"
  11853. }
  11854. ],
  11855. "time": "2024-09-09T11:45:10+00:00"
  11856. },
  11857. {
  11858. "name": "symfony/polyfill-intl-grapheme",
  11859. "version": "v1.31.0",
  11860. "source": {
  11861. "type": "git",
  11862. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11863. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  11864. },
  11865. "dist": {
  11866. "type": "zip",
  11867. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11868. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11869. "shasum": ""
  11870. },
  11871. "require": {
  11872. "php": ">=7.2"
  11873. },
  11874. "suggest": {
  11875. "ext-intl": "For best performance"
  11876. },
  11877. "type": "library",
  11878. "extra": {
  11879. "thanks": {
  11880. "url": "https://github.com/symfony/polyfill",
  11881. "name": "symfony/polyfill"
  11882. }
  11883. },
  11884. "autoload": {
  11885. "files": [
  11886. "bootstrap.php"
  11887. ],
  11888. "psr-4": {
  11889. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11890. }
  11891. },
  11892. "notification-url": "https://packagist.org/downloads/",
  11893. "license": [
  11894. "MIT"
  11895. ],
  11896. "authors": [
  11897. {
  11898. "name": "Nicolas Grekas",
  11899. "email": "p@tchwork.com"
  11900. },
  11901. {
  11902. "name": "Symfony Community",
  11903. "homepage": "https://symfony.com/contributors"
  11904. }
  11905. ],
  11906. "description": "Symfony polyfill for intl's grapheme_* functions",
  11907. "homepage": "https://symfony.com",
  11908. "keywords": [
  11909. "compatibility",
  11910. "grapheme",
  11911. "intl",
  11912. "polyfill",
  11913. "portable",
  11914. "shim"
  11915. ],
  11916. "support": {
  11917. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  11918. },
  11919. "funding": [
  11920. {
  11921. "url": "https://symfony.com/sponsor",
  11922. "type": "custom"
  11923. },
  11924. {
  11925. "url": "https://github.com/fabpot",
  11926. "type": "github"
  11927. },
  11928. {
  11929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11930. "type": "tidelift"
  11931. }
  11932. ],
  11933. "time": "2024-09-09T11:45:10+00:00"
  11934. },
  11935. {
  11936. "name": "symfony/polyfill-intl-idn",
  11937. "version": "v1.31.0",
  11938. "source": {
  11939. "type": "git",
  11940. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11941. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  11942. },
  11943. "dist": {
  11944. "type": "zip",
  11945. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  11946. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  11947. "shasum": ""
  11948. },
  11949. "require": {
  11950. "php": ">=7.2",
  11951. "symfony/polyfill-intl-normalizer": "^1.10"
  11952. },
  11953. "suggest": {
  11954. "ext-intl": "For best performance"
  11955. },
  11956. "type": "library",
  11957. "extra": {
  11958. "thanks": {
  11959. "url": "https://github.com/symfony/polyfill",
  11960. "name": "symfony/polyfill"
  11961. }
  11962. },
  11963. "autoload": {
  11964. "files": [
  11965. "bootstrap.php"
  11966. ],
  11967. "psr-4": {
  11968. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11969. }
  11970. },
  11971. "notification-url": "https://packagist.org/downloads/",
  11972. "license": [
  11973. "MIT"
  11974. ],
  11975. "authors": [
  11976. {
  11977. "name": "Laurent Bassin",
  11978. "email": "laurent@bassin.info"
  11979. },
  11980. {
  11981. "name": "Trevor Rowbotham",
  11982. "email": "trevor.rowbotham@pm.me"
  11983. },
  11984. {
  11985. "name": "Symfony Community",
  11986. "homepage": "https://symfony.com/contributors"
  11987. }
  11988. ],
  11989. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11990. "homepage": "https://symfony.com",
  11991. "keywords": [
  11992. "compatibility",
  11993. "idn",
  11994. "intl",
  11995. "polyfill",
  11996. "portable",
  11997. "shim"
  11998. ],
  11999. "support": {
  12000. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  12001. },
  12002. "funding": [
  12003. {
  12004. "url": "https://symfony.com/sponsor",
  12005. "type": "custom"
  12006. },
  12007. {
  12008. "url": "https://github.com/fabpot",
  12009. "type": "github"
  12010. },
  12011. {
  12012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12013. "type": "tidelift"
  12014. }
  12015. ],
  12016. "time": "2024-09-09T11:45:10+00:00"
  12017. },
  12018. {
  12019. "name": "symfony/polyfill-intl-normalizer",
  12020. "version": "v1.31.0",
  12021. "source": {
  12022. "type": "git",
  12023. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12024. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12025. },
  12026. "dist": {
  12027. "type": "zip",
  12028. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12029. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12030. "shasum": ""
  12031. },
  12032. "require": {
  12033. "php": ">=7.2"
  12034. },
  12035. "suggest": {
  12036. "ext-intl": "For best performance"
  12037. },
  12038. "type": "library",
  12039. "extra": {
  12040. "thanks": {
  12041. "url": "https://github.com/symfony/polyfill",
  12042. "name": "symfony/polyfill"
  12043. }
  12044. },
  12045. "autoload": {
  12046. "files": [
  12047. "bootstrap.php"
  12048. ],
  12049. "psr-4": {
  12050. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12051. },
  12052. "classmap": [
  12053. "Resources/stubs"
  12054. ]
  12055. },
  12056. "notification-url": "https://packagist.org/downloads/",
  12057. "license": [
  12058. "MIT"
  12059. ],
  12060. "authors": [
  12061. {
  12062. "name": "Nicolas Grekas",
  12063. "email": "p@tchwork.com"
  12064. },
  12065. {
  12066. "name": "Symfony Community",
  12067. "homepage": "https://symfony.com/contributors"
  12068. }
  12069. ],
  12070. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12071. "homepage": "https://symfony.com",
  12072. "keywords": [
  12073. "compatibility",
  12074. "intl",
  12075. "normalizer",
  12076. "polyfill",
  12077. "portable",
  12078. "shim"
  12079. ],
  12080. "support": {
  12081. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  12082. },
  12083. "funding": [
  12084. {
  12085. "url": "https://symfony.com/sponsor",
  12086. "type": "custom"
  12087. },
  12088. {
  12089. "url": "https://github.com/fabpot",
  12090. "type": "github"
  12091. },
  12092. {
  12093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12094. "type": "tidelift"
  12095. }
  12096. ],
  12097. "time": "2024-09-09T11:45:10+00:00"
  12098. },
  12099. {
  12100. "name": "symfony/polyfill-mbstring",
  12101. "version": "v1.31.0",
  12102. "source": {
  12103. "type": "git",
  12104. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12105. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  12106. },
  12107. "dist": {
  12108. "type": "zip",
  12109. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12110. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12111. "shasum": ""
  12112. },
  12113. "require": {
  12114. "php": ">=7.2"
  12115. },
  12116. "provide": {
  12117. "ext-mbstring": "*"
  12118. },
  12119. "suggest": {
  12120. "ext-mbstring": "For best performance"
  12121. },
  12122. "type": "library",
  12123. "extra": {
  12124. "thanks": {
  12125. "url": "https://github.com/symfony/polyfill",
  12126. "name": "symfony/polyfill"
  12127. }
  12128. },
  12129. "autoload": {
  12130. "files": [
  12131. "bootstrap.php"
  12132. ],
  12133. "psr-4": {
  12134. "Symfony\\Polyfill\\Mbstring\\": ""
  12135. }
  12136. },
  12137. "notification-url": "https://packagist.org/downloads/",
  12138. "license": [
  12139. "MIT"
  12140. ],
  12141. "authors": [
  12142. {
  12143. "name": "Nicolas Grekas",
  12144. "email": "p@tchwork.com"
  12145. },
  12146. {
  12147. "name": "Symfony Community",
  12148. "homepage": "https://symfony.com/contributors"
  12149. }
  12150. ],
  12151. "description": "Symfony polyfill for the Mbstring extension",
  12152. "homepage": "https://symfony.com",
  12153. "keywords": [
  12154. "compatibility",
  12155. "mbstring",
  12156. "polyfill",
  12157. "portable",
  12158. "shim"
  12159. ],
  12160. "support": {
  12161. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  12162. },
  12163. "funding": [
  12164. {
  12165. "url": "https://symfony.com/sponsor",
  12166. "type": "custom"
  12167. },
  12168. {
  12169. "url": "https://github.com/fabpot",
  12170. "type": "github"
  12171. },
  12172. {
  12173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12174. "type": "tidelift"
  12175. }
  12176. ],
  12177. "time": "2024-09-09T11:45:10+00:00"
  12178. },
  12179. {
  12180. "name": "symfony/polyfill-php81",
  12181. "version": "v1.33.0",
  12182. "source": {
  12183. "type": "git",
  12184. "url": "https://github.com/symfony/polyfill-php81.git",
  12185. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12186. },
  12187. "dist": {
  12188. "type": "zip",
  12189. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12190. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12191. "shasum": ""
  12192. },
  12193. "require": {
  12194. "php": ">=7.2"
  12195. },
  12196. "type": "library",
  12197. "extra": {
  12198. "thanks": {
  12199. "url": "https://github.com/symfony/polyfill",
  12200. "name": "symfony/polyfill"
  12201. }
  12202. },
  12203. "autoload": {
  12204. "files": [
  12205. "bootstrap.php"
  12206. ],
  12207. "psr-4": {
  12208. "Symfony\\Polyfill\\Php81\\": ""
  12209. },
  12210. "classmap": [
  12211. "Resources/stubs"
  12212. ]
  12213. },
  12214. "notification-url": "https://packagist.org/downloads/",
  12215. "license": [
  12216. "MIT"
  12217. ],
  12218. "authors": [
  12219. {
  12220. "name": "Nicolas Grekas",
  12221. "email": "p@tchwork.com"
  12222. },
  12223. {
  12224. "name": "Symfony Community",
  12225. "homepage": "https://symfony.com/contributors"
  12226. }
  12227. ],
  12228. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12229. "homepage": "https://symfony.com",
  12230. "keywords": [
  12231. "compatibility",
  12232. "polyfill",
  12233. "portable",
  12234. "shim"
  12235. ],
  12236. "support": {
  12237. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  12238. },
  12239. "funding": [
  12240. {
  12241. "url": "https://symfony.com/sponsor",
  12242. "type": "custom"
  12243. },
  12244. {
  12245. "url": "https://github.com/fabpot",
  12246. "type": "github"
  12247. },
  12248. {
  12249. "url": "https://github.com/nicolas-grekas",
  12250. "type": "github"
  12251. },
  12252. {
  12253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12254. "type": "tidelift"
  12255. }
  12256. ],
  12257. "time": "2024-09-09T11:45:10+00:00"
  12258. },
  12259. {
  12260. "name": "symfony/polyfill-php83",
  12261. "version": "v1.31.0",
  12262. "source": {
  12263. "type": "git",
  12264. "url": "https://github.com/symfony/polyfill-php83.git",
  12265. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  12266. },
  12267. "dist": {
  12268. "type": "zip",
  12269. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  12270. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  12271. "shasum": ""
  12272. },
  12273. "require": {
  12274. "php": ">=7.2"
  12275. },
  12276. "type": "library",
  12277. "extra": {
  12278. "thanks": {
  12279. "url": "https://github.com/symfony/polyfill",
  12280. "name": "symfony/polyfill"
  12281. }
  12282. },
  12283. "autoload": {
  12284. "files": [
  12285. "bootstrap.php"
  12286. ],
  12287. "psr-4": {
  12288. "Symfony\\Polyfill\\Php83\\": ""
  12289. },
  12290. "classmap": [
  12291. "Resources/stubs"
  12292. ]
  12293. },
  12294. "notification-url": "https://packagist.org/downloads/",
  12295. "license": [
  12296. "MIT"
  12297. ],
  12298. "authors": [
  12299. {
  12300. "name": "Nicolas Grekas",
  12301. "email": "p@tchwork.com"
  12302. },
  12303. {
  12304. "name": "Symfony Community",
  12305. "homepage": "https://symfony.com/contributors"
  12306. }
  12307. ],
  12308. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12309. "homepage": "https://symfony.com",
  12310. "keywords": [
  12311. "compatibility",
  12312. "polyfill",
  12313. "portable",
  12314. "shim"
  12315. ],
  12316. "support": {
  12317. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12318. },
  12319. "funding": [
  12320. {
  12321. "url": "https://symfony.com/sponsor",
  12322. "type": "custom"
  12323. },
  12324. {
  12325. "url": "https://github.com/fabpot",
  12326. "type": "github"
  12327. },
  12328. {
  12329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12330. "type": "tidelift"
  12331. }
  12332. ],
  12333. "time": "2024-09-09T11:45:10+00:00"
  12334. },
  12335. {
  12336. "name": "symfony/polyfill-php84",
  12337. "version": "v1.33.0",
  12338. "source": {
  12339. "type": "git",
  12340. "url": "https://github.com/symfony/polyfill-php84.git",
  12341. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  12342. },
  12343. "dist": {
  12344. "type": "zip",
  12345. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  12346. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  12347. "shasum": ""
  12348. },
  12349. "require": {
  12350. "php": ">=7.2"
  12351. },
  12352. "type": "library",
  12353. "extra": {
  12354. "thanks": {
  12355. "url": "https://github.com/symfony/polyfill",
  12356. "name": "symfony/polyfill"
  12357. }
  12358. },
  12359. "autoload": {
  12360. "files": [
  12361. "bootstrap.php"
  12362. ],
  12363. "psr-4": {
  12364. "Symfony\\Polyfill\\Php84\\": ""
  12365. },
  12366. "classmap": [
  12367. "Resources/stubs"
  12368. ]
  12369. },
  12370. "notification-url": "https://packagist.org/downloads/",
  12371. "license": [
  12372. "MIT"
  12373. ],
  12374. "authors": [
  12375. {
  12376. "name": "Nicolas Grekas",
  12377. "email": "p@tchwork.com"
  12378. },
  12379. {
  12380. "name": "Symfony Community",
  12381. "homepage": "https://symfony.com/contributors"
  12382. }
  12383. ],
  12384. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12385. "homepage": "https://symfony.com",
  12386. "keywords": [
  12387. "compatibility",
  12388. "polyfill",
  12389. "portable",
  12390. "shim"
  12391. ],
  12392. "support": {
  12393. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  12394. },
  12395. "funding": [
  12396. {
  12397. "url": "https://symfony.com/sponsor",
  12398. "type": "custom"
  12399. },
  12400. {
  12401. "url": "https://github.com/fabpot",
  12402. "type": "github"
  12403. },
  12404. {
  12405. "url": "https://github.com/nicolas-grekas",
  12406. "type": "github"
  12407. },
  12408. {
  12409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12410. "type": "tidelift"
  12411. }
  12412. ],
  12413. "time": "2025-06-24T13:30:11+00:00"
  12414. },
  12415. {
  12416. "name": "symfony/process",
  12417. "version": "v6.4.26",
  12418. "source": {
  12419. "type": "git",
  12420. "url": "https://github.com/symfony/process.git",
  12421. "reference": "48bad913268c8cafabbf7034b39c8bb24fbc5ab8"
  12422. },
  12423. "dist": {
  12424. "type": "zip",
  12425. "url": "https://api.github.com/repos/symfony/process/zipball/48bad913268c8cafabbf7034b39c8bb24fbc5ab8",
  12426. "reference": "48bad913268c8cafabbf7034b39c8bb24fbc5ab8",
  12427. "shasum": ""
  12428. },
  12429. "require": {
  12430. "php": ">=8.1"
  12431. },
  12432. "type": "library",
  12433. "autoload": {
  12434. "psr-4": {
  12435. "Symfony\\Component\\Process\\": ""
  12436. },
  12437. "exclude-from-classmap": [
  12438. "/Tests/"
  12439. ]
  12440. },
  12441. "notification-url": "https://packagist.org/downloads/",
  12442. "license": [
  12443. "MIT"
  12444. ],
  12445. "authors": [
  12446. {
  12447. "name": "Fabien Potencier",
  12448. "email": "fabien@symfony.com"
  12449. },
  12450. {
  12451. "name": "Symfony Community",
  12452. "homepage": "https://symfony.com/contributors"
  12453. }
  12454. ],
  12455. "description": "Executes commands in sub-processes",
  12456. "homepage": "https://symfony.com",
  12457. "support": {
  12458. "source": "https://github.com/symfony/process/tree/v6.4.26"
  12459. },
  12460. "funding": [
  12461. {
  12462. "url": "https://symfony.com/sponsor",
  12463. "type": "custom"
  12464. },
  12465. {
  12466. "url": "https://github.com/fabpot",
  12467. "type": "github"
  12468. },
  12469. {
  12470. "url": "https://github.com/nicolas-grekas",
  12471. "type": "github"
  12472. },
  12473. {
  12474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12475. "type": "tidelift"
  12476. }
  12477. ],
  12478. "time": "2025-09-11T09:57:09+00:00"
  12479. },
  12480. {
  12481. "name": "symfony/psr-http-message-bridge",
  12482. "version": "v6.4.24",
  12483. "source": {
  12484. "type": "git",
  12485. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12486. "reference": "6954b4e8aef0e5d46f8558c90edcf27bb01b4724"
  12487. },
  12488. "dist": {
  12489. "type": "zip",
  12490. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/6954b4e8aef0e5d46f8558c90edcf27bb01b4724",
  12491. "reference": "6954b4e8aef0e5d46f8558c90edcf27bb01b4724",
  12492. "shasum": ""
  12493. },
  12494. "require": {
  12495. "php": ">=8.1",
  12496. "psr/http-message": "^1.0|^2.0",
  12497. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12498. },
  12499. "conflict": {
  12500. "php-http/discovery": "<1.15",
  12501. "symfony/http-kernel": "<6.2"
  12502. },
  12503. "require-dev": {
  12504. "nyholm/psr7": "^1.1",
  12505. "php-http/discovery": "^1.15",
  12506. "psr/log": "^1.1.4|^2|^3",
  12507. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12508. "symfony/config": "^5.4|^6.0|^7.0",
  12509. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12510. "symfony/framework-bundle": "^6.2|^7.0",
  12511. "symfony/http-kernel": "^6.2|^7.0"
  12512. },
  12513. "type": "symfony-bridge",
  12514. "autoload": {
  12515. "psr-4": {
  12516. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12517. },
  12518. "exclude-from-classmap": [
  12519. "/Tests/"
  12520. ]
  12521. },
  12522. "notification-url": "https://packagist.org/downloads/",
  12523. "license": [
  12524. "MIT"
  12525. ],
  12526. "authors": [
  12527. {
  12528. "name": "Fabien Potencier",
  12529. "email": "fabien@symfony.com"
  12530. },
  12531. {
  12532. "name": "Symfony Community",
  12533. "homepage": "https://symfony.com/contributors"
  12534. }
  12535. ],
  12536. "description": "PSR HTTP message bridge",
  12537. "homepage": "https://symfony.com",
  12538. "keywords": [
  12539. "http",
  12540. "http-message",
  12541. "psr-17",
  12542. "psr-7"
  12543. ],
  12544. "support": {
  12545. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.24"
  12546. },
  12547. "funding": [
  12548. {
  12549. "url": "https://symfony.com/sponsor",
  12550. "type": "custom"
  12551. },
  12552. {
  12553. "url": "https://github.com/fabpot",
  12554. "type": "github"
  12555. },
  12556. {
  12557. "url": "https://github.com/nicolas-grekas",
  12558. "type": "github"
  12559. },
  12560. {
  12561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12562. "type": "tidelift"
  12563. }
  12564. ],
  12565. "time": "2025-07-10T08:14:14+00:00"
  12566. },
  12567. {
  12568. "name": "symfony/routing",
  12569. "version": "v6.4.26",
  12570. "source": {
  12571. "type": "git",
  12572. "url": "https://github.com/symfony/routing.git",
  12573. "reference": "6fc4c445f22857d4b8b40a02b73f423ddab295de"
  12574. },
  12575. "dist": {
  12576. "type": "zip",
  12577. "url": "https://api.github.com/repos/symfony/routing/zipball/6fc4c445f22857d4b8b40a02b73f423ddab295de",
  12578. "reference": "6fc4c445f22857d4b8b40a02b73f423ddab295de",
  12579. "shasum": ""
  12580. },
  12581. "require": {
  12582. "php": ">=8.1",
  12583. "symfony/deprecation-contracts": "^2.5|^3"
  12584. },
  12585. "conflict": {
  12586. "doctrine/annotations": "<1.12",
  12587. "symfony/config": "<6.2",
  12588. "symfony/dependency-injection": "<5.4",
  12589. "symfony/yaml": "<5.4"
  12590. },
  12591. "require-dev": {
  12592. "doctrine/annotations": "^1.12|^2",
  12593. "psr/log": "^1|^2|^3",
  12594. "symfony/config": "^6.2|^7.0",
  12595. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12596. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12597. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12598. "symfony/yaml": "^5.4|^6.0|^7.0"
  12599. },
  12600. "type": "library",
  12601. "autoload": {
  12602. "psr-4": {
  12603. "Symfony\\Component\\Routing\\": ""
  12604. },
  12605. "exclude-from-classmap": [
  12606. "/Tests/"
  12607. ]
  12608. },
  12609. "notification-url": "https://packagist.org/downloads/",
  12610. "license": [
  12611. "MIT"
  12612. ],
  12613. "authors": [
  12614. {
  12615. "name": "Fabien Potencier",
  12616. "email": "fabien@symfony.com"
  12617. },
  12618. {
  12619. "name": "Symfony Community",
  12620. "homepage": "https://symfony.com/contributors"
  12621. }
  12622. ],
  12623. "description": "Maps an HTTP request to a set of configuration variables",
  12624. "homepage": "https://symfony.com",
  12625. "keywords": [
  12626. "router",
  12627. "routing",
  12628. "uri",
  12629. "url"
  12630. ],
  12631. "support": {
  12632. "source": "https://github.com/symfony/routing/tree/v6.4.26"
  12633. },
  12634. "funding": [
  12635. {
  12636. "url": "https://symfony.com/sponsor",
  12637. "type": "custom"
  12638. },
  12639. {
  12640. "url": "https://github.com/fabpot",
  12641. "type": "github"
  12642. },
  12643. {
  12644. "url": "https://github.com/nicolas-grekas",
  12645. "type": "github"
  12646. },
  12647. {
  12648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12649. "type": "tidelift"
  12650. }
  12651. ],
  12652. "time": "2025-09-11T09:57:09+00:00"
  12653. },
  12654. {
  12655. "name": "symfony/serializer",
  12656. "version": "v6.4.26",
  12657. "source": {
  12658. "type": "git",
  12659. "url": "https://github.com/symfony/serializer.git",
  12660. "reference": "48d0477483614d615aa1d5e5d90a45e4c7bfa2c9"
  12661. },
  12662. "dist": {
  12663. "type": "zip",
  12664. "url": "https://api.github.com/repos/symfony/serializer/zipball/48d0477483614d615aa1d5e5d90a45e4c7bfa2c9",
  12665. "reference": "48d0477483614d615aa1d5e5d90a45e4c7bfa2c9",
  12666. "shasum": ""
  12667. },
  12668. "require": {
  12669. "php": ">=8.1",
  12670. "symfony/deprecation-contracts": "^2.5|^3",
  12671. "symfony/polyfill-ctype": "~1.8"
  12672. },
  12673. "conflict": {
  12674. "doctrine/annotations": "<1.12",
  12675. "phpdocumentor/reflection-docblock": "<3.2.2",
  12676. "phpdocumentor/type-resolver": "<1.4.0",
  12677. "symfony/dependency-injection": "<5.4",
  12678. "symfony/property-access": "<5.4",
  12679. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12680. "symfony/uid": "<5.4",
  12681. "symfony/validator": "<6.4",
  12682. "symfony/yaml": "<5.4"
  12683. },
  12684. "require-dev": {
  12685. "doctrine/annotations": "^1.12|^2",
  12686. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12687. "seld/jsonlint": "^1.10",
  12688. "symfony/cache": "^5.4|^6.0|^7.0",
  12689. "symfony/config": "^5.4|^6.0|^7.0",
  12690. "symfony/console": "^5.4|^6.0|^7.0",
  12691. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12692. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12693. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12694. "symfony/form": "^5.4|^6.0|^7.0",
  12695. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12696. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12697. "symfony/messenger": "^5.4|^6.0|^7.0",
  12698. "symfony/mime": "^5.4|^6.0|^7.0",
  12699. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12700. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12701. "symfony/translation-contracts": "^2.5|^3",
  12702. "symfony/uid": "^5.4|^6.0|^7.0",
  12703. "symfony/validator": "^6.4|^7.0",
  12704. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12705. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12706. "symfony/yaml": "^5.4|^6.0|^7.0"
  12707. },
  12708. "type": "library",
  12709. "autoload": {
  12710. "psr-4": {
  12711. "Symfony\\Component\\Serializer\\": ""
  12712. },
  12713. "exclude-from-classmap": [
  12714. "/Tests/"
  12715. ]
  12716. },
  12717. "notification-url": "https://packagist.org/downloads/",
  12718. "license": [
  12719. "MIT"
  12720. ],
  12721. "authors": [
  12722. {
  12723. "name": "Fabien Potencier",
  12724. "email": "fabien@symfony.com"
  12725. },
  12726. {
  12727. "name": "Symfony Community",
  12728. "homepage": "https://symfony.com/contributors"
  12729. }
  12730. ],
  12731. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12732. "homepage": "https://symfony.com",
  12733. "support": {
  12734. "source": "https://github.com/symfony/serializer/tree/v6.4.26"
  12735. },
  12736. "funding": [
  12737. {
  12738. "url": "https://symfony.com/sponsor",
  12739. "type": "custom"
  12740. },
  12741. {
  12742. "url": "https://github.com/fabpot",
  12743. "type": "github"
  12744. },
  12745. {
  12746. "url": "https://github.com/nicolas-grekas",
  12747. "type": "github"
  12748. },
  12749. {
  12750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12751. "type": "tidelift"
  12752. }
  12753. ],
  12754. "time": "2025-09-15T13:37:27+00:00"
  12755. },
  12756. {
  12757. "name": "symfony/service-contracts",
  12758. "version": "v3.5.1",
  12759. "source": {
  12760. "type": "git",
  12761. "url": "https://github.com/symfony/service-contracts.git",
  12762. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  12763. },
  12764. "dist": {
  12765. "type": "zip",
  12766. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12767. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12768. "shasum": ""
  12769. },
  12770. "require": {
  12771. "php": ">=8.1",
  12772. "psr/container": "^1.1|^2.0",
  12773. "symfony/deprecation-contracts": "^2.5|^3"
  12774. },
  12775. "conflict": {
  12776. "ext-psr": "<1.1|>=2"
  12777. },
  12778. "type": "library",
  12779. "extra": {
  12780. "thanks": {
  12781. "url": "https://github.com/symfony/contracts",
  12782. "name": "symfony/contracts"
  12783. },
  12784. "branch-alias": {
  12785. "dev-main": "3.5-dev"
  12786. }
  12787. },
  12788. "autoload": {
  12789. "psr-4": {
  12790. "Symfony\\Contracts\\Service\\": ""
  12791. },
  12792. "exclude-from-classmap": [
  12793. "/Test/"
  12794. ]
  12795. },
  12796. "notification-url": "https://packagist.org/downloads/",
  12797. "license": [
  12798. "MIT"
  12799. ],
  12800. "authors": [
  12801. {
  12802. "name": "Nicolas Grekas",
  12803. "email": "p@tchwork.com"
  12804. },
  12805. {
  12806. "name": "Symfony Community",
  12807. "homepage": "https://symfony.com/contributors"
  12808. }
  12809. ],
  12810. "description": "Generic abstractions related to writing services",
  12811. "homepage": "https://symfony.com",
  12812. "keywords": [
  12813. "abstractions",
  12814. "contracts",
  12815. "decoupling",
  12816. "interfaces",
  12817. "interoperability",
  12818. "standards"
  12819. ],
  12820. "support": {
  12821. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  12822. },
  12823. "funding": [
  12824. {
  12825. "url": "https://symfony.com/sponsor",
  12826. "type": "custom"
  12827. },
  12828. {
  12829. "url": "https://github.com/fabpot",
  12830. "type": "github"
  12831. },
  12832. {
  12833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12834. "type": "tidelift"
  12835. }
  12836. ],
  12837. "time": "2024-09-25T14:20:29+00:00"
  12838. },
  12839. {
  12840. "name": "symfony/string",
  12841. "version": "v6.4.26",
  12842. "source": {
  12843. "type": "git",
  12844. "url": "https://github.com/symfony/string.git",
  12845. "reference": "5621f039a71a11c87c106c1c598bdcd04a19aeea"
  12846. },
  12847. "dist": {
  12848. "type": "zip",
  12849. "url": "https://api.github.com/repos/symfony/string/zipball/5621f039a71a11c87c106c1c598bdcd04a19aeea",
  12850. "reference": "5621f039a71a11c87c106c1c598bdcd04a19aeea",
  12851. "shasum": ""
  12852. },
  12853. "require": {
  12854. "php": ">=8.1",
  12855. "symfony/polyfill-ctype": "~1.8",
  12856. "symfony/polyfill-intl-grapheme": "~1.0",
  12857. "symfony/polyfill-intl-normalizer": "~1.0",
  12858. "symfony/polyfill-mbstring": "~1.0"
  12859. },
  12860. "conflict": {
  12861. "symfony/translation-contracts": "<2.5"
  12862. },
  12863. "require-dev": {
  12864. "symfony/http-client": "^5.4|^6.0|^7.0",
  12865. "symfony/intl": "^6.2|^7.0",
  12866. "symfony/translation-contracts": "^2.5|^3.0",
  12867. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12868. },
  12869. "type": "library",
  12870. "autoload": {
  12871. "files": [
  12872. "Resources/functions.php"
  12873. ],
  12874. "psr-4": {
  12875. "Symfony\\Component\\String\\": ""
  12876. },
  12877. "exclude-from-classmap": [
  12878. "/Tests/"
  12879. ]
  12880. },
  12881. "notification-url": "https://packagist.org/downloads/",
  12882. "license": [
  12883. "MIT"
  12884. ],
  12885. "authors": [
  12886. {
  12887. "name": "Nicolas Grekas",
  12888. "email": "p@tchwork.com"
  12889. },
  12890. {
  12891. "name": "Symfony Community",
  12892. "homepage": "https://symfony.com/contributors"
  12893. }
  12894. ],
  12895. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12896. "homepage": "https://symfony.com",
  12897. "keywords": [
  12898. "grapheme",
  12899. "i18n",
  12900. "string",
  12901. "unicode",
  12902. "utf-8",
  12903. "utf8"
  12904. ],
  12905. "support": {
  12906. "source": "https://github.com/symfony/string/tree/v6.4.26"
  12907. },
  12908. "funding": [
  12909. {
  12910. "url": "https://symfony.com/sponsor",
  12911. "type": "custom"
  12912. },
  12913. {
  12914. "url": "https://github.com/fabpot",
  12915. "type": "github"
  12916. },
  12917. {
  12918. "url": "https://github.com/nicolas-grekas",
  12919. "type": "github"
  12920. },
  12921. {
  12922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12923. "type": "tidelift"
  12924. }
  12925. ],
  12926. "time": "2025-09-11T14:32:46+00:00"
  12927. },
  12928. {
  12929. "name": "symfony/translation-contracts",
  12930. "version": "v3.5.1",
  12931. "source": {
  12932. "type": "git",
  12933. "url": "https://github.com/symfony/translation-contracts.git",
  12934. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  12935. },
  12936. "dist": {
  12937. "type": "zip",
  12938. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  12939. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  12940. "shasum": ""
  12941. },
  12942. "require": {
  12943. "php": ">=8.1"
  12944. },
  12945. "type": "library",
  12946. "extra": {
  12947. "thanks": {
  12948. "url": "https://github.com/symfony/contracts",
  12949. "name": "symfony/contracts"
  12950. },
  12951. "branch-alias": {
  12952. "dev-main": "3.5-dev"
  12953. }
  12954. },
  12955. "autoload": {
  12956. "psr-4": {
  12957. "Symfony\\Contracts\\Translation\\": ""
  12958. },
  12959. "exclude-from-classmap": [
  12960. "/Test/"
  12961. ]
  12962. },
  12963. "notification-url": "https://packagist.org/downloads/",
  12964. "license": [
  12965. "MIT"
  12966. ],
  12967. "authors": [
  12968. {
  12969. "name": "Nicolas Grekas",
  12970. "email": "p@tchwork.com"
  12971. },
  12972. {
  12973. "name": "Symfony Community",
  12974. "homepage": "https://symfony.com/contributors"
  12975. }
  12976. ],
  12977. "description": "Generic abstractions related to translation",
  12978. "homepage": "https://symfony.com",
  12979. "keywords": [
  12980. "abstractions",
  12981. "contracts",
  12982. "decoupling",
  12983. "interfaces",
  12984. "interoperability",
  12985. "standards"
  12986. ],
  12987. "support": {
  12988. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  12989. },
  12990. "funding": [
  12991. {
  12992. "url": "https://symfony.com/sponsor",
  12993. "type": "custom"
  12994. },
  12995. {
  12996. "url": "https://github.com/fabpot",
  12997. "type": "github"
  12998. },
  12999. {
  13000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13001. "type": "tidelift"
  13002. }
  13003. ],
  13004. "time": "2024-09-25T14:20:29+00:00"
  13005. },
  13006. {
  13007. "name": "symfony/validator",
  13008. "version": "v6.4.26",
  13009. "source": {
  13010. "type": "git",
  13011. "url": "https://github.com/symfony/validator.git",
  13012. "reference": "3ed456b3cd04e61fc7ed2601805fee3c1130663a"
  13013. },
  13014. "dist": {
  13015. "type": "zip",
  13016. "url": "https://api.github.com/repos/symfony/validator/zipball/3ed456b3cd04e61fc7ed2601805fee3c1130663a",
  13017. "reference": "3ed456b3cd04e61fc7ed2601805fee3c1130663a",
  13018. "shasum": ""
  13019. },
  13020. "require": {
  13021. "php": ">=8.1",
  13022. "symfony/deprecation-contracts": "^2.5|^3",
  13023. "symfony/polyfill-ctype": "~1.8",
  13024. "symfony/polyfill-mbstring": "~1.0",
  13025. "symfony/polyfill-php83": "^1.27",
  13026. "symfony/translation-contracts": "^2.5|^3"
  13027. },
  13028. "conflict": {
  13029. "doctrine/annotations": "<1.13",
  13030. "doctrine/lexer": "<1.1",
  13031. "symfony/dependency-injection": "<5.4",
  13032. "symfony/expression-language": "<5.4",
  13033. "symfony/http-kernel": "<5.4",
  13034. "symfony/intl": "<5.4",
  13035. "symfony/property-info": "<5.4",
  13036. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13037. "symfony/yaml": "<5.4"
  13038. },
  13039. "require-dev": {
  13040. "doctrine/annotations": "^1.13|^2",
  13041. "egulias/email-validator": "^2.1.10|^3|^4",
  13042. "symfony/cache": "^5.4|^6.0|^7.0",
  13043. "symfony/config": "^5.4|^6.0|^7.0",
  13044. "symfony/console": "^5.4|^6.0|^7.0",
  13045. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13046. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13047. "symfony/finder": "^5.4|^6.0|^7.0",
  13048. "symfony/http-client": "^5.4|^6.0|^7.0",
  13049. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13050. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13051. "symfony/intl": "^5.4|^6.0|^7.0",
  13052. "symfony/mime": "^5.4|^6.0|^7.0",
  13053. "symfony/property-access": "^5.4|^6.0|^7.0",
  13054. "symfony/property-info": "^5.4|^6.0|^7.0",
  13055. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13056. "symfony/yaml": "^5.4|^6.0|^7.0"
  13057. },
  13058. "type": "library",
  13059. "autoload": {
  13060. "psr-4": {
  13061. "Symfony\\Component\\Validator\\": ""
  13062. },
  13063. "exclude-from-classmap": [
  13064. "/Tests/",
  13065. "/Resources/bin/"
  13066. ]
  13067. },
  13068. "notification-url": "https://packagist.org/downloads/",
  13069. "license": [
  13070. "MIT"
  13071. ],
  13072. "authors": [
  13073. {
  13074. "name": "Fabien Potencier",
  13075. "email": "fabien@symfony.com"
  13076. },
  13077. {
  13078. "name": "Symfony Community",
  13079. "homepage": "https://symfony.com/contributors"
  13080. }
  13081. ],
  13082. "description": "Provides tools to validate values",
  13083. "homepage": "https://symfony.com",
  13084. "support": {
  13085. "source": "https://github.com/symfony/validator/tree/v6.4.26"
  13086. },
  13087. "funding": [
  13088. {
  13089. "url": "https://symfony.com/sponsor",
  13090. "type": "custom"
  13091. },
  13092. {
  13093. "url": "https://github.com/fabpot",
  13094. "type": "github"
  13095. },
  13096. {
  13097. "url": "https://github.com/nicolas-grekas",
  13098. "type": "github"
  13099. },
  13100. {
  13101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13102. "type": "tidelift"
  13103. }
  13104. ],
  13105. "time": "2025-09-25T15:37:27+00:00"
  13106. },
  13107. {
  13108. "name": "symfony/var-dumper",
  13109. "version": "v6.4.26",
  13110. "source": {
  13111. "type": "git",
  13112. "url": "https://github.com/symfony/var-dumper.git",
  13113. "reference": "cfae1497a2f1eaad78dbc0590311c599c7178d4a"
  13114. },
  13115. "dist": {
  13116. "type": "zip",
  13117. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cfae1497a2f1eaad78dbc0590311c599c7178d4a",
  13118. "reference": "cfae1497a2f1eaad78dbc0590311c599c7178d4a",
  13119. "shasum": ""
  13120. },
  13121. "require": {
  13122. "php": ">=8.1",
  13123. "symfony/deprecation-contracts": "^2.5|^3",
  13124. "symfony/polyfill-mbstring": "~1.0"
  13125. },
  13126. "conflict": {
  13127. "symfony/console": "<5.4"
  13128. },
  13129. "require-dev": {
  13130. "symfony/console": "^5.4|^6.0|^7.0",
  13131. "symfony/error-handler": "^6.3|^7.0",
  13132. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13133. "symfony/process": "^5.4|^6.0|^7.0",
  13134. "symfony/uid": "^5.4|^6.0|^7.0",
  13135. "twig/twig": "^2.13|^3.0.4"
  13136. },
  13137. "bin": [
  13138. "Resources/bin/var-dump-server"
  13139. ],
  13140. "type": "library",
  13141. "autoload": {
  13142. "files": [
  13143. "Resources/functions/dump.php"
  13144. ],
  13145. "psr-4": {
  13146. "Symfony\\Component\\VarDumper\\": ""
  13147. },
  13148. "exclude-from-classmap": [
  13149. "/Tests/"
  13150. ]
  13151. },
  13152. "notification-url": "https://packagist.org/downloads/",
  13153. "license": [
  13154. "MIT"
  13155. ],
  13156. "authors": [
  13157. {
  13158. "name": "Nicolas Grekas",
  13159. "email": "p@tchwork.com"
  13160. },
  13161. {
  13162. "name": "Symfony Community",
  13163. "homepage": "https://symfony.com/contributors"
  13164. }
  13165. ],
  13166. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13167. "homepage": "https://symfony.com",
  13168. "keywords": [
  13169. "debug",
  13170. "dump"
  13171. ],
  13172. "support": {
  13173. "source": "https://github.com/symfony/var-dumper/tree/v6.4.26"
  13174. },
  13175. "funding": [
  13176. {
  13177. "url": "https://symfony.com/sponsor",
  13178. "type": "custom"
  13179. },
  13180. {
  13181. "url": "https://github.com/fabpot",
  13182. "type": "github"
  13183. },
  13184. {
  13185. "url": "https://github.com/nicolas-grekas",
  13186. "type": "github"
  13187. },
  13188. {
  13189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13190. "type": "tidelift"
  13191. }
  13192. ],
  13193. "time": "2025-09-25T15:37:27+00:00"
  13194. },
  13195. {
  13196. "name": "symfony/var-exporter",
  13197. "version": "v6.4.26",
  13198. "source": {
  13199. "type": "git",
  13200. "url": "https://github.com/symfony/var-exporter.git",
  13201. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  13202. },
  13203. "dist": {
  13204. "type": "zip",
  13205. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13206. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  13207. "shasum": ""
  13208. },
  13209. "require": {
  13210. "php": ">=8.1",
  13211. "symfony/deprecation-contracts": "^2.5|^3"
  13212. },
  13213. "require-dev": {
  13214. "symfony/property-access": "^6.4|^7.0",
  13215. "symfony/serializer": "^6.4|^7.0",
  13216. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13217. },
  13218. "type": "library",
  13219. "autoload": {
  13220. "psr-4": {
  13221. "Symfony\\Component\\VarExporter\\": ""
  13222. },
  13223. "exclude-from-classmap": [
  13224. "/Tests/"
  13225. ]
  13226. },
  13227. "notification-url": "https://packagist.org/downloads/",
  13228. "license": [
  13229. "MIT"
  13230. ],
  13231. "authors": [
  13232. {
  13233. "name": "Nicolas Grekas",
  13234. "email": "p@tchwork.com"
  13235. },
  13236. {
  13237. "name": "Symfony Community",
  13238. "homepage": "https://symfony.com/contributors"
  13239. }
  13240. ],
  13241. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13242. "homepage": "https://symfony.com",
  13243. "keywords": [
  13244. "clone",
  13245. "construct",
  13246. "export",
  13247. "hydrate",
  13248. "instantiate",
  13249. "lazy-loading",
  13250. "proxy",
  13251. "serialize"
  13252. ],
  13253. "support": {
  13254. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  13255. },
  13256. "funding": [
  13257. {
  13258. "url": "https://symfony.com/sponsor",
  13259. "type": "custom"
  13260. },
  13261. {
  13262. "url": "https://github.com/fabpot",
  13263. "type": "github"
  13264. },
  13265. {
  13266. "url": "https://github.com/nicolas-grekas",
  13267. "type": "github"
  13268. },
  13269. {
  13270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13271. "type": "tidelift"
  13272. }
  13273. ],
  13274. "time": "2025-09-11T09:57:09+00:00"
  13275. },
  13276. {
  13277. "name": "symfony/yaml",
  13278. "version": "v6.4.26",
  13279. "source": {
  13280. "type": "git",
  13281. "url": "https://github.com/symfony/yaml.git",
  13282. "reference": "0fc8b966fd0dcaab544ae59bfc3a433f048c17b0"
  13283. },
  13284. "dist": {
  13285. "type": "zip",
  13286. "url": "https://api.github.com/repos/symfony/yaml/zipball/0fc8b966fd0dcaab544ae59bfc3a433f048c17b0",
  13287. "reference": "0fc8b966fd0dcaab544ae59bfc3a433f048c17b0",
  13288. "shasum": ""
  13289. },
  13290. "require": {
  13291. "php": ">=8.1",
  13292. "symfony/deprecation-contracts": "^2.5|^3",
  13293. "symfony/polyfill-ctype": "^1.8"
  13294. },
  13295. "conflict": {
  13296. "symfony/console": "<5.4"
  13297. },
  13298. "require-dev": {
  13299. "symfony/console": "^5.4|^6.0|^7.0"
  13300. },
  13301. "bin": [
  13302. "Resources/bin/yaml-lint"
  13303. ],
  13304. "type": "library",
  13305. "autoload": {
  13306. "psr-4": {
  13307. "Symfony\\Component\\Yaml\\": ""
  13308. },
  13309. "exclude-from-classmap": [
  13310. "/Tests/"
  13311. ]
  13312. },
  13313. "notification-url": "https://packagist.org/downloads/",
  13314. "license": [
  13315. "MIT"
  13316. ],
  13317. "authors": [
  13318. {
  13319. "name": "Fabien Potencier",
  13320. "email": "fabien@symfony.com"
  13321. },
  13322. {
  13323. "name": "Symfony Community",
  13324. "homepage": "https://symfony.com/contributors"
  13325. }
  13326. ],
  13327. "description": "Loads and dumps YAML files",
  13328. "homepage": "https://symfony.com",
  13329. "support": {
  13330. "source": "https://github.com/symfony/yaml/tree/v6.4.26"
  13331. },
  13332. "funding": [
  13333. {
  13334. "url": "https://symfony.com/sponsor",
  13335. "type": "custom"
  13336. },
  13337. {
  13338. "url": "https://github.com/fabpot",
  13339. "type": "github"
  13340. },
  13341. {
  13342. "url": "https://github.com/nicolas-grekas",
  13343. "type": "github"
  13344. },
  13345. {
  13346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13347. "type": "tidelift"
  13348. }
  13349. ],
  13350. "time": "2025-09-26T15:07:38+00:00"
  13351. },
  13352. {
  13353. "name": "twig/twig",
  13354. "version": "v3.20.0",
  13355. "source": {
  13356. "type": "git",
  13357. "url": "https://github.com/twigphp/Twig.git",
  13358. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  13359. },
  13360. "dist": {
  13361. "type": "zip",
  13362. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  13363. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  13364. "shasum": ""
  13365. },
  13366. "require": {
  13367. "php": ">=8.1.0",
  13368. "symfony/deprecation-contracts": "^2.5|^3",
  13369. "symfony/polyfill-ctype": "^1.8",
  13370. "symfony/polyfill-mbstring": "^1.3"
  13371. },
  13372. "require-dev": {
  13373. "phpstan/phpstan": "^2.0",
  13374. "psr/container": "^1.0|^2.0",
  13375. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13376. },
  13377. "type": "library",
  13378. "autoload": {
  13379. "files": [
  13380. "src/Resources/core.php",
  13381. "src/Resources/debug.php",
  13382. "src/Resources/escaper.php",
  13383. "src/Resources/string_loader.php"
  13384. ],
  13385. "psr-4": {
  13386. "Twig\\": "src/"
  13387. }
  13388. },
  13389. "notification-url": "https://packagist.org/downloads/",
  13390. "license": [
  13391. "BSD-3-Clause"
  13392. ],
  13393. "authors": [
  13394. {
  13395. "name": "Fabien Potencier",
  13396. "email": "fabien@symfony.com",
  13397. "homepage": "http://fabien.potencier.org",
  13398. "role": "Lead Developer"
  13399. },
  13400. {
  13401. "name": "Twig Team",
  13402. "role": "Contributors"
  13403. },
  13404. {
  13405. "name": "Armin Ronacher",
  13406. "email": "armin.ronacher@active-4.com",
  13407. "role": "Project Founder"
  13408. }
  13409. ],
  13410. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13411. "homepage": "https://twig.symfony.com",
  13412. "keywords": [
  13413. "templating"
  13414. ],
  13415. "support": {
  13416. "issues": "https://github.com/twigphp/Twig/issues",
  13417. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  13418. },
  13419. "funding": [
  13420. {
  13421. "url": "https://github.com/fabpot",
  13422. "type": "github"
  13423. },
  13424. {
  13425. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13426. "type": "tidelift"
  13427. }
  13428. ],
  13429. "time": "2025-02-13T08:34:43+00:00"
  13430. },
  13431. {
  13432. "name": "webflo/drupal-finder",
  13433. "version": "1.3.1",
  13434. "source": {
  13435. "type": "git",
  13436. "url": "https://github.com/webflo/drupal-finder.git",
  13437. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13438. },
  13439. "dist": {
  13440. "type": "zip",
  13441. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13442. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13443. "shasum": ""
  13444. },
  13445. "require": {
  13446. "composer-runtime-api": "^2.2",
  13447. "php": ">=8.1"
  13448. },
  13449. "require-dev": {
  13450. "mikey179/vfsstream": "^1.6",
  13451. "phpunit/phpunit": "^10.4",
  13452. "symfony/process": "^6.4"
  13453. },
  13454. "type": "library",
  13455. "autoload": {
  13456. "psr-4": {
  13457. "DrupalFinder\\": "src/"
  13458. }
  13459. },
  13460. "notification-url": "https://packagist.org/downloads/",
  13461. "license": [
  13462. "GPL-2.0-or-later"
  13463. ],
  13464. "authors": [
  13465. {
  13466. "name": "Florian Weber",
  13467. "email": "florian@webflo.org"
  13468. }
  13469. ],
  13470. "description": "Helper class to locate a Drupal installation.",
  13471. "support": {
  13472. "issues": "https://github.com/webflo/drupal-finder/issues",
  13473. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13474. },
  13475. "time": "2024-06-28T13:45:36+00:00"
  13476. },
  13477. {
  13478. "name": "wikimedia/composer-merge-plugin",
  13479. "version": "v2.1.0",
  13480. "source": {
  13481. "type": "git",
  13482. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13483. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13484. },
  13485. "dist": {
  13486. "type": "zip",
  13487. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13488. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13489. "shasum": ""
  13490. },
  13491. "require": {
  13492. "composer-plugin-api": "^1.1||^2.0",
  13493. "php": ">=7.2.0"
  13494. },
  13495. "require-dev": {
  13496. "composer/composer": "^1.1||^2.0",
  13497. "ext-json": "*",
  13498. "mediawiki/mediawiki-phan-config": "0.11.1",
  13499. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13500. "phpspec/prophecy": "~1.15.0",
  13501. "phpunit/phpunit": "^8.5||^9.0",
  13502. "squizlabs/php_codesniffer": "~3.7.1"
  13503. },
  13504. "type": "composer-plugin",
  13505. "extra": {
  13506. "branch-alias": {
  13507. "dev-master": "2.x-dev"
  13508. },
  13509. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13510. },
  13511. "autoload": {
  13512. "psr-4": {
  13513. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13514. }
  13515. },
  13516. "notification-url": "https://packagist.org/downloads/",
  13517. "license": [
  13518. "MIT"
  13519. ],
  13520. "authors": [
  13521. {
  13522. "name": "Bryan Davis",
  13523. "email": "bd808@wikimedia.org"
  13524. }
  13525. ],
  13526. "description": "Composer plugin to merge multiple composer.json files",
  13527. "support": {
  13528. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13529. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13530. },
  13531. "time": "2023-04-15T19:07:00+00:00"
  13532. }
  13533. ],
  13534. "packages-dev": [],
  13535. "aliases": [],
  13536. "minimum-stability": "stable",
  13537. "stability-flags": {
  13538. "drupal/advanced_text_formatter": 5,
  13539. "drupal/bulkdelete": 20,
  13540. "drupal/conditional_fields": 15,
  13541. "drupal/config_devel": 20,
  13542. "drupal/config_ignore": 5,
  13543. "drupal/config_update": 15,
  13544. "drupal/context": 5,
  13545. "drupal/date_range_formatter": 20,
  13546. "drupal/email_registration": 5,
  13547. "drupal/entity_clone": 20,
  13548. "drupal/field_group": 20,
  13549. "drupal/filter_perms": 20,
  13550. "drupal/inline_entity_form": 5,
  13551. "drupal/linkit": 10,
  13552. "drupal/login_destination": 20,
  13553. "drupal/maillog": 20,
  13554. "drupal/maxlength": 10,
  13555. "drupal/menu_block": 20,
  13556. "drupal/menu_position": 20,
  13557. "drupal/mimemail": 15,
  13558. "drupal/notify": 10,
  13559. "drupal/page_manager": 5,
  13560. "drupal/path_alias_xt": 20,
  13561. "drupal/pathologic": 15,
  13562. "drupal/phone_number": 15,
  13563. "drupal/profile": 5,
  13564. "drupal/smtp": 10,
  13565. "drupal/synonyms": 10,
  13566. "drupal/translation_views": 15,
  13567. "drupal/ultimate_cron": 15,
  13568. "drupal/views_core_entity_reference": 15
  13569. },
  13570. "prefer-stable": true,
  13571. "prefer-lowest": false,
  13572. "platform": {},
  13573. "platform-dev": {},
  13574. "plugin-api-version": "2.6.0"
  13575. }