composer.lock 378 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374
  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": "e5eef7cdbe619a4114743b671cf9b5e9",
  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": "composer/installers",
  127. "version": "v1.12.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/composer/installers.git",
  131. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  136. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "composer-plugin-api": "^1.0 || ^2.0"
  141. },
  142. "replace": {
  143. "roundcube/plugin-installer": "*",
  144. "shama/baton": "*"
  145. },
  146. "require-dev": {
  147. "composer/composer": "1.6.* || ^2.0",
  148. "composer/semver": "^1 || ^3",
  149. "phpstan/phpstan": "^0.12.55",
  150. "phpstan/phpstan-phpunit": "^0.12.16",
  151. "symfony/phpunit-bridge": "^4.2 || ^5",
  152. "symfony/process": "^2.3"
  153. },
  154. "type": "composer-plugin",
  155. "extra": {
  156. "class": "Composer\\Installers\\Plugin",
  157. "branch-alias": {
  158. "dev-main": "1.x-dev"
  159. }
  160. },
  161. "autoload": {
  162. "psr-4": {
  163. "Composer\\Installers\\": "src/Composer/Installers"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Kyle Robinson Young",
  173. "email": "kyle@dontkry.com",
  174. "homepage": "https://github.com/shama"
  175. }
  176. ],
  177. "description": "A multi-framework Composer library installer",
  178. "homepage": "https://composer.github.io/installers/",
  179. "keywords": [
  180. "Craft",
  181. "Dolibarr",
  182. "Eliasis",
  183. "Hurad",
  184. "ImageCMS",
  185. "Kanboard",
  186. "Lan Management System",
  187. "MODX Evo",
  188. "MantisBT",
  189. "Mautic",
  190. "Maya",
  191. "OXID",
  192. "Plentymarkets",
  193. "Porto",
  194. "RadPHP",
  195. "SMF",
  196. "Starbug",
  197. "Thelia",
  198. "Whmcs",
  199. "WolfCMS",
  200. "agl",
  201. "aimeos",
  202. "annotatecms",
  203. "attogram",
  204. "bitrix",
  205. "cakephp",
  206. "chef",
  207. "cockpit",
  208. "codeigniter",
  209. "concrete5",
  210. "croogo",
  211. "dokuwiki",
  212. "drupal",
  213. "eZ Platform",
  214. "elgg",
  215. "expressionengine",
  216. "fuelphp",
  217. "grav",
  218. "installer",
  219. "itop",
  220. "joomla",
  221. "known",
  222. "kohana",
  223. "laravel",
  224. "lavalite",
  225. "lithium",
  226. "magento",
  227. "majima",
  228. "mako",
  229. "mediawiki",
  230. "miaoxing",
  231. "modulework",
  232. "modx",
  233. "moodle",
  234. "osclass",
  235. "pantheon",
  236. "phpbb",
  237. "piwik",
  238. "ppi",
  239. "processwire",
  240. "puppet",
  241. "pxcms",
  242. "reindex",
  243. "roundcube",
  244. "shopware",
  245. "silverstripe",
  246. "sydes",
  247. "sylius",
  248. "symfony",
  249. "tastyigniter",
  250. "typo3",
  251. "wordpress",
  252. "yawik",
  253. "zend",
  254. "zikula"
  255. ],
  256. "support": {
  257. "issues": "https://github.com/composer/installers/issues",
  258. "source": "https://github.com/composer/installers/tree/v1.12.0"
  259. },
  260. "funding": [
  261. {
  262. "url": "https://packagist.com",
  263. "type": "custom"
  264. },
  265. {
  266. "url": "https://github.com/composer",
  267. "type": "github"
  268. },
  269. {
  270. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  271. "type": "tidelift"
  272. }
  273. ],
  274. "time": "2021-09-13T08:19:44+00:00"
  275. },
  276. {
  277. "name": "composer/semver",
  278. "version": "3.4.4",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/semver.git",
  282. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  287. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "php": "^5.3.2 || ^7.0 || ^8.0"
  292. },
  293. "require-dev": {
  294. "phpstan/phpstan": "^1.11",
  295. "symfony/phpunit-bridge": "^3 || ^7"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-main": "3.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-4": {
  305. "Composer\\Semver\\": "src"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Nils Adermann",
  315. "email": "naderman@naderman.de",
  316. "homepage": "http://www.naderman.de"
  317. },
  318. {
  319. "name": "Jordi Boggiano",
  320. "email": "j.boggiano@seld.be",
  321. "homepage": "http://seld.be"
  322. },
  323. {
  324. "name": "Rob Bast",
  325. "email": "rob.bast@gmail.com",
  326. "homepage": "http://robbast.nl"
  327. }
  328. ],
  329. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  330. "keywords": [
  331. "semantic",
  332. "semver",
  333. "validation",
  334. "versioning"
  335. ],
  336. "support": {
  337. "irc": "ircs://irc.libera.chat:6697/composer",
  338. "issues": "https://github.com/composer/semver/issues",
  339. "source": "https://github.com/composer/semver/tree/3.4.4"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://packagist.com",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://github.com/composer",
  348. "type": "github"
  349. }
  350. ],
  351. "time": "2025-08-20T19:15:30+00:00"
  352. },
  353. {
  354. "name": "consolidation/annotated-command",
  355. "version": "4.10.5",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/consolidation/annotated-command.git",
  359. "reference": "78abf3b6853d7ff9044babd2b9c002ff433207d8"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/78abf3b6853d7ff9044babd2b9c002ff433207d8",
  364. "reference": "78abf3b6853d7ff9044babd2b9c002ff433207d8",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "consolidation/output-formatters": "^4.3.1",
  369. "php": ">=7.1.3",
  370. "psr/log": "^1 || ^2 || ^3",
  371. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7 || ^8",
  372. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7 || ^8",
  373. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7 || ^8"
  374. },
  375. "require-dev": {
  376. "composer-runtime-api": "^2.0",
  377. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  378. "squizlabs/php_codesniffer": "^3",
  379. "yoast/phpunit-polyfills": "^0.2.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-main": "4.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Consolidation\\AnnotatedCommand\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Greg Anderson",
  399. "email": "greg.1.anderson@greenknowe.org"
  400. }
  401. ],
  402. "description": "Initialize Symfony Console commands from annotated command class methods.",
  403. "support": {
  404. "issues": "https://github.com/consolidation/annotated-command/issues",
  405. "source": "https://github.com/consolidation/annotated-command/tree/4.10.5"
  406. },
  407. "time": "2026-03-29T00:50:52+00:00"
  408. },
  409. {
  410. "name": "consolidation/config",
  411. "version": "3.2.1",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/consolidation/config.git",
  415. "reference": "adcb989d789f7e0984121492b0377a1def3a6dc8"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/consolidation/config/zipball/adcb989d789f7e0984121492b0377a1def3a6dc8",
  420. "reference": "adcb989d789f7e0984121492b0377a1def3a6dc8",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "dflydev/dot-access-data": "^3",
  425. "grasmash/expander": "^3",
  426. "php": ">=8.2.0",
  427. "symfony/event-dispatcher": "^6 || ^7 || ^8"
  428. },
  429. "require-dev": {
  430. "ext-json": "*",
  431. "phpunit/phpunit": "^9",
  432. "squizlabs/php_codesniffer": "^3",
  433. "symfony/console": "^7.4 || ^8",
  434. "symfony/yaml": "^7 || ^8",
  435. "yoast/phpunit-polyfills": "^1"
  436. },
  437. "suggest": {
  438. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  439. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  440. },
  441. "type": "library",
  442. "extra": {
  443. "branch-alias": {
  444. "dev-main": "3.x-dev"
  445. }
  446. },
  447. "autoload": {
  448. "psr-4": {
  449. "Consolidation\\Config\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Greg Anderson",
  459. "email": "greg.1.anderson@greenknowe.org"
  460. }
  461. ],
  462. "description": "Provide configuration services for a commandline tool.",
  463. "support": {
  464. "issues": "https://github.com/consolidation/config/issues",
  465. "source": "https://github.com/consolidation/config/tree/3.2.1"
  466. },
  467. "time": "2026-03-28T23:38:17+00:00"
  468. },
  469. {
  470. "name": "consolidation/filter-via-dot-access-data",
  471. "version": "2.0.3",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  475. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  480. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  485. "php": ">=7.1.3"
  486. },
  487. "require-dev": {
  488. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  489. "squizlabs/php_codesniffer": "^3",
  490. "yoast/phpunit-polyfills": "^0.2.0"
  491. },
  492. "type": "library",
  493. "extra": {
  494. "branch-alias": {
  495. "dev-main": "2.x-dev"
  496. }
  497. },
  498. "autoload": {
  499. "psr-4": {
  500. "Consolidation\\Filter\\": "src"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Greg Anderson",
  510. "email": "greg.1.anderson@greenknowe.org"
  511. }
  512. ],
  513. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  514. "support": {
  515. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  516. },
  517. "time": "2025-11-14T21:01:06+00:00"
  518. },
  519. {
  520. "name": "consolidation/log",
  521. "version": "3.1.2",
  522. "source": {
  523. "type": "git",
  524. "url": "https://github.com/consolidation/log.git",
  525. "reference": "a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6"
  526. },
  527. "dist": {
  528. "type": "zip",
  529. "url": "https://api.github.com/repos/consolidation/log/zipball/a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6",
  530. "reference": "a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6",
  531. "shasum": ""
  532. },
  533. "require": {
  534. "php": ">=8.0.0",
  535. "psr/log": "^3",
  536. "symfony/console": "^5 || ^6 || ^7 || ^8"
  537. },
  538. "require-dev": {
  539. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  540. "squizlabs/php_codesniffer": "^3",
  541. "yoast/phpunit-polyfills": "^0.2.0"
  542. },
  543. "type": "library",
  544. "extra": {
  545. "platform": {
  546. "php": "8.2.17"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "Consolidation\\Log\\": "src"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Greg Anderson",
  561. "email": "greg.1.anderson@greenknowe.org"
  562. }
  563. ],
  564. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  565. "support": {
  566. "issues": "https://github.com/consolidation/log/issues",
  567. "source": "https://github.com/consolidation/log/tree/3.1.2"
  568. },
  569. "time": "2026-03-28T23:36:49+00:00"
  570. },
  571. {
  572. "name": "consolidation/output-formatters",
  573. "version": "4.7.1",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/consolidation/output-formatters.git",
  577. "reference": "a112df9a74854c8438b33b334ed619fa43edf31a"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a112df9a74854c8438b33b334ed619fa43edf31a",
  582. "reference": "a112df9a74854c8438b33b334ed619fa43edf31a",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  587. "php": ">=7.1.3",
  588. "symfony/console": "^4 || ^5 || ^6 || ^7 || ^8",
  589. "symfony/finder": "^4 || ^5 || ^6 || ^7 || ^8"
  590. },
  591. "require-dev": {
  592. "php-coveralls/php-coveralls": "^2.4.2",
  593. "phpunit/phpunit": "^7 || ^8 || ^9",
  594. "squizlabs/php_codesniffer": "^3",
  595. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7 || ^8",
  596. "symfony/yaml": "^4 || ^5 || ^6 || ^7 || ^8",
  597. "yoast/phpunit-polyfills": "^1"
  598. },
  599. "suggest": {
  600. "symfony/var-dumper": "For using the var_dump formatter"
  601. },
  602. "type": "library",
  603. "autoload": {
  604. "psr-4": {
  605. "Consolidation\\OutputFormatters\\": "src"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Greg Anderson",
  615. "email": "greg.1.anderson@greenknowe.org"
  616. }
  617. ],
  618. "description": "Format text by applying transformations provided by plug-in formatters.",
  619. "support": {
  620. "issues": "https://github.com/consolidation/output-formatters/issues",
  621. "source": "https://github.com/consolidation/output-formatters/tree/4.7.1"
  622. },
  623. "time": "2026-03-28T23:34:39+00:00"
  624. },
  625. {
  626. "name": "consolidation/robo",
  627. "version": "5.1.1",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/consolidation/robo.git",
  631. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/consolidation/robo/zipball/6d02c7d800b5e1a3a8977ae74d23bce723486025",
  636. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "consolidation/annotated-command": "^4.8.1",
  641. "consolidation/config": "^3",
  642. "consolidation/log": "^3",
  643. "consolidation/output-formatters": "^4.1.2",
  644. "league/container": "^3.3.1 || ^4.0",
  645. "php": ">=8.2",
  646. "phpowermove/docblock": "^4.0",
  647. "symfony/console": "^6 || ^7",
  648. "symfony/event-dispatcher": "^6 || ^7",
  649. "symfony/filesystem": "^6 || ^7",
  650. "symfony/finder": "^6 || ^7",
  651. "symfony/process": "^6 || ^7",
  652. "symfony/yaml": "^6 || ^7"
  653. },
  654. "conflict": {
  655. "codegyre/robo": "*"
  656. },
  657. "require-dev": {
  658. "natxet/cssmin": "3.0.4",
  659. "patchwork/jsqueeze": "^2",
  660. "pear/archive_tar": "^1.4.4",
  661. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3.6",
  663. "yoast/phpunit-polyfills": "^0.2.0"
  664. },
  665. "suggest": {
  666. "consolidation/self-update": "For self-updating a phar-based app built with Robo",
  667. "natxet/cssmin": "For minifying CSS files in taskMinify",
  668. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  669. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  670. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  671. },
  672. "bin": [
  673. "robo"
  674. ],
  675. "type": "library",
  676. "autoload": {
  677. "psr-4": {
  678. "Robo\\": "src"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Davert",
  688. "email": "davert.php@resend.cc"
  689. }
  690. ],
  691. "description": "Modern task runner",
  692. "support": {
  693. "issues": "https://github.com/consolidation/robo/issues",
  694. "source": "https://github.com/consolidation/robo/tree/5.1.1"
  695. },
  696. "time": "2025-11-14T23:30:05+00:00"
  697. },
  698. {
  699. "name": "consolidation/site-alias",
  700. "version": "4.1.3",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/consolidation/site-alias.git",
  704. "reference": "7e1364aec7be0be23bb45799045fd9838a93f2ad"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/7e1364aec7be0be23bb45799045fd9838a93f2ad",
  709. "reference": "7e1364aec7be0be23bb45799045fd9838a93f2ad",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "consolidation/config": "^1.2.1 || ^2 || ^3",
  714. "php": ">=7.4",
  715. "symfony/filesystem": "^5.4 || ^6 || ^7 || ^8",
  716. "symfony/finder": "^5 || ^6 || ^7 || ^8"
  717. },
  718. "require-dev": {
  719. "php-coveralls/php-coveralls": "^2.4.2",
  720. "phpunit/phpunit": ">=7",
  721. "squizlabs/php_codesniffer": "^3",
  722. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7 || ^8",
  723. "yoast/phpunit-polyfills": "^0.2.0"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-main": "4.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "Consolidation\\SiteAlias\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Greg Anderson",
  743. "email": "greg.1.anderson@greenknowe.org"
  744. },
  745. {
  746. "name": "Moshe Weitzman",
  747. "email": "weitzman@tejasa.com"
  748. }
  749. ],
  750. "description": "Manage alias records for local and remote sites.",
  751. "support": {
  752. "issues": "https://github.com/consolidation/site-alias/issues",
  753. "source": "https://github.com/consolidation/site-alias/tree/4.1.3"
  754. },
  755. "time": "2026-03-28T23:34:58+00:00"
  756. },
  757. {
  758. "name": "consolidation/site-process",
  759. "version": "5.4.2",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/site-process.git",
  763. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  768. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/config": "^2 || ^3",
  773. "consolidation/site-alias": "^3 || ^4",
  774. "php": ">=8.0.14",
  775. "symfony/console": "^5.4 || ^6 || ^7",
  776. "symfony/process": "^6 || ^7"
  777. },
  778. "require-dev": {
  779. "phpunit/phpunit": "^9",
  780. "squizlabs/php_codesniffer": "^3"
  781. },
  782. "type": "library",
  783. "extra": {
  784. "branch-alias": {
  785. "dev-main": "5.x-dev"
  786. }
  787. },
  788. "autoload": {
  789. "psr-4": {
  790. "Consolidation\\SiteProcess\\": "src"
  791. }
  792. },
  793. "notification-url": "https://packagist.org/downloads/",
  794. "license": [
  795. "MIT"
  796. ],
  797. "authors": [
  798. {
  799. "name": "Greg Anderson",
  800. "email": "greg.1.anderson@greenknowe.org"
  801. },
  802. {
  803. "name": "Moshe Weitzman",
  804. "email": "weitzman@tejasa.com"
  805. }
  806. ],
  807. "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.",
  808. "support": {
  809. "issues": "https://github.com/consolidation/site-process/issues",
  810. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  811. },
  812. "time": "2024-12-13T19:25:56+00:00"
  813. },
  814. {
  815. "name": "cweagans/composer-patches",
  816. "version": "1.7.3",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/cweagans/composer-patches.git",
  820. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  825. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "composer-plugin-api": "^1.0 || ^2.0",
  830. "php": ">=5.3.0"
  831. },
  832. "require-dev": {
  833. "composer/composer": "~1.0 || ~2.0",
  834. "phpunit/phpunit": "~4.6"
  835. },
  836. "type": "composer-plugin",
  837. "extra": {
  838. "class": "cweagans\\Composer\\Patches"
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "cweagans\\Composer\\": "src"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "BSD-3-Clause"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Cameron Eagans",
  852. "email": "me@cweagans.net"
  853. }
  854. ],
  855. "description": "Provides a way to patch Composer packages.",
  856. "support": {
  857. "issues": "https://github.com/cweagans/composer-patches/issues",
  858. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  859. },
  860. "time": "2022-12-20T22:53:13+00:00"
  861. },
  862. {
  863. "name": "dekor/php-array-table",
  864. "version": "2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/deniskoronets/php-array-table.git",
  868. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  873. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "ext-mbstring": "*",
  878. "php": ">=5.6.0"
  879. },
  880. "require-dev": {
  881. "phpunit/phpunit": "^10"
  882. },
  883. "type": "library",
  884. "autoload": {
  885. "psr-4": {
  886. "dekor\\": "src"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "BSD-3-Clause"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Denis Koronets",
  896. "email": "deniskoronets@woo.zp.ua",
  897. "homepage": "https://woo.zp.ua/"
  898. }
  899. ],
  900. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  901. "keywords": [
  902. "library",
  903. "php"
  904. ],
  905. "support": {
  906. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  907. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  908. },
  909. "time": "2023-02-10T10:13:42+00:00"
  910. },
  911. {
  912. "name": "dflydev/dot-access-data",
  913. "version": "v3.0.3",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  917. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  922. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "php": "^7.1 || ^8.0"
  927. },
  928. "require-dev": {
  929. "phpstan/phpstan": "^0.12.42",
  930. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  931. "scrutinizer/ocular": "1.6.0",
  932. "squizlabs/php_codesniffer": "^3.5",
  933. "vimeo/psalm": "^4.0.0"
  934. },
  935. "type": "library",
  936. "extra": {
  937. "branch-alias": {
  938. "dev-main": "3.x-dev"
  939. }
  940. },
  941. "autoload": {
  942. "psr-4": {
  943. "Dflydev\\DotAccessData\\": "src/"
  944. }
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "MIT"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Dragonfly Development Inc.",
  953. "email": "info@dflydev.com",
  954. "homepage": "http://dflydev.com"
  955. },
  956. {
  957. "name": "Beau Simensen",
  958. "email": "beau@dflydev.com",
  959. "homepage": "http://beausimensen.com"
  960. },
  961. {
  962. "name": "Carlos Frutos",
  963. "email": "carlos@kiwing.it",
  964. "homepage": "https://github.com/cfrutos"
  965. },
  966. {
  967. "name": "Colin O'Dell",
  968. "email": "colinodell@gmail.com",
  969. "homepage": "https://www.colinodell.com"
  970. }
  971. ],
  972. "description": "Given a deep data structure, access data by dot notation.",
  973. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  974. "keywords": [
  975. "access",
  976. "data",
  977. "dot",
  978. "notation"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  982. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  983. },
  984. "time": "2024-07-08T12:26:09+00:00"
  985. },
  986. {
  987. "name": "doctrine/common",
  988. "version": "3.5.0",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/doctrine/common.git",
  992. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  997. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1002. "php": "^7.1 || ^8.0"
  1003. },
  1004. "require-dev": {
  1005. "doctrine/coding-standard": "^9.0 || ^10.0",
  1006. "doctrine/collections": "^1",
  1007. "phpstan/phpstan": "^1.4.1",
  1008. "phpstan/phpstan-phpunit": "^1",
  1009. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1010. "squizlabs/php_codesniffer": "^3.0",
  1011. "symfony/phpunit-bridge": "^6.1",
  1012. "vimeo/psalm": "^4.4"
  1013. },
  1014. "type": "library",
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Doctrine\\Common\\": "src"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Guilherme Blanco",
  1027. "email": "guilhermeblanco@gmail.com"
  1028. },
  1029. {
  1030. "name": "Roman Borschel",
  1031. "email": "roman@code-factory.org"
  1032. },
  1033. {
  1034. "name": "Benjamin Eberlei",
  1035. "email": "kontakt@beberlei.de"
  1036. },
  1037. {
  1038. "name": "Jonathan Wage",
  1039. "email": "jonwage@gmail.com"
  1040. },
  1041. {
  1042. "name": "Johannes Schmitt",
  1043. "email": "schmittjoh@gmail.com"
  1044. },
  1045. {
  1046. "name": "Marco Pivetta",
  1047. "email": "ocramius@gmail.com"
  1048. }
  1049. ],
  1050. "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.",
  1051. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1052. "keywords": [
  1053. "common",
  1054. "doctrine",
  1055. "php"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/doctrine/common/issues",
  1059. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://www.doctrine-project.org/sponsorship.html",
  1064. "type": "custom"
  1065. },
  1066. {
  1067. "url": "https://www.patreon.com/phpdoctrine",
  1068. "type": "patreon"
  1069. },
  1070. {
  1071. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1072. "type": "tidelift"
  1073. }
  1074. ],
  1075. "time": "2025-01-01T22:12:03+00:00"
  1076. },
  1077. {
  1078. "name": "doctrine/deprecations",
  1079. "version": "1.1.6",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/doctrine/deprecations.git",
  1083. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1088. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "php": "^7.1 || ^8.0"
  1093. },
  1094. "conflict": {
  1095. "phpunit/phpunit": "<=7.5 || >=14"
  1096. },
  1097. "require-dev": {
  1098. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1099. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1100. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1102. "psr/log": "^1 || ^2 || ^3"
  1103. },
  1104. "suggest": {
  1105. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1106. },
  1107. "type": "library",
  1108. "autoload": {
  1109. "psr-4": {
  1110. "Doctrine\\Deprecations\\": "src"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "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.",
  1118. "homepage": "https://www.doctrine-project.org/",
  1119. "support": {
  1120. "issues": "https://github.com/doctrine/deprecations/issues",
  1121. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1122. },
  1123. "time": "2026-02-07T07:09:04+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/event-manager",
  1127. "version": "2.1.1",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/event-manager.git",
  1131. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1136. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "php": "^8.1"
  1141. },
  1142. "conflict": {
  1143. "doctrine/common": "<2.9"
  1144. },
  1145. "require-dev": {
  1146. "doctrine/coding-standard": "^14",
  1147. "phpdocumentor/guides-cli": "^1.4",
  1148. "phpstan/phpstan": "^2.1.32",
  1149. "phpunit/phpunit": "^10.5.58"
  1150. },
  1151. "type": "library",
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Doctrine\\Common\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Guilherme Blanco",
  1164. "email": "guilhermeblanco@gmail.com"
  1165. },
  1166. {
  1167. "name": "Roman Borschel",
  1168. "email": "roman@code-factory.org"
  1169. },
  1170. {
  1171. "name": "Benjamin Eberlei",
  1172. "email": "kontakt@beberlei.de"
  1173. },
  1174. {
  1175. "name": "Jonathan Wage",
  1176. "email": "jonwage@gmail.com"
  1177. },
  1178. {
  1179. "name": "Johannes Schmitt",
  1180. "email": "schmittjoh@gmail.com"
  1181. },
  1182. {
  1183. "name": "Marco Pivetta",
  1184. "email": "ocramius@gmail.com"
  1185. }
  1186. ],
  1187. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1188. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1189. "keywords": [
  1190. "event",
  1191. "event dispatcher",
  1192. "event manager",
  1193. "event system",
  1194. "events"
  1195. ],
  1196. "support": {
  1197. "issues": "https://github.com/doctrine/event-manager/issues",
  1198. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://www.doctrine-project.org/sponsorship.html",
  1203. "type": "custom"
  1204. },
  1205. {
  1206. "url": "https://www.patreon.com/phpdoctrine",
  1207. "type": "patreon"
  1208. },
  1209. {
  1210. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1211. "type": "tidelift"
  1212. }
  1213. ],
  1214. "time": "2026-01-29T07:11:08+00:00"
  1215. },
  1216. {
  1217. "name": "doctrine/lexer",
  1218. "version": "2.1.1",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/doctrine/lexer.git",
  1222. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1228. "shasum": ""
  1229. },
  1230. "require": {
  1231. "doctrine/deprecations": "^1.0",
  1232. "php": "^7.1 || ^8.0"
  1233. },
  1234. "require-dev": {
  1235. "doctrine/coding-standard": "^9 || ^12",
  1236. "phpstan/phpstan": "^1.3",
  1237. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1238. "psalm/plugin-phpunit": "^0.18.3",
  1239. "vimeo/psalm": "^4.11 || ^5.21"
  1240. },
  1241. "type": "library",
  1242. "autoload": {
  1243. "psr-4": {
  1244. "Doctrine\\Common\\Lexer\\": "src"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "authors": [
  1252. {
  1253. "name": "Guilherme Blanco",
  1254. "email": "guilhermeblanco@gmail.com"
  1255. },
  1256. {
  1257. "name": "Roman Borschel",
  1258. "email": "roman@code-factory.org"
  1259. },
  1260. {
  1261. "name": "Johannes Schmitt",
  1262. "email": "schmittjoh@gmail.com"
  1263. }
  1264. ],
  1265. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1266. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1267. "keywords": [
  1268. "annotations",
  1269. "docblock",
  1270. "lexer",
  1271. "parser",
  1272. "php"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/doctrine/lexer/issues",
  1276. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://www.doctrine-project.org/sponsorship.html",
  1281. "type": "custom"
  1282. },
  1283. {
  1284. "url": "https://www.patreon.com/phpdoctrine",
  1285. "type": "patreon"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2024-02-05T11:35:39+00:00"
  1293. },
  1294. {
  1295. "name": "doctrine/persistence",
  1296. "version": "4.1.1",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/doctrine/persistence.git",
  1300. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1305. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "doctrine/event-manager": "^1 || ^2",
  1310. "php": "^8.1",
  1311. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1312. },
  1313. "require-dev": {
  1314. "doctrine/coding-standard": "^14",
  1315. "phpstan/phpstan": "2.1.30",
  1316. "phpstan/phpstan-phpunit": "^2",
  1317. "phpstan/phpstan-strict-rules": "^2",
  1318. "phpunit/phpunit": "^10.5.58 || ^12",
  1319. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1320. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-4": {
  1325. "Doctrine\\Persistence\\": "src/Persistence"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Guilherme Blanco",
  1335. "email": "guilhermeblanco@gmail.com"
  1336. },
  1337. {
  1338. "name": "Roman Borschel",
  1339. "email": "roman@code-factory.org"
  1340. },
  1341. {
  1342. "name": "Benjamin Eberlei",
  1343. "email": "kontakt@beberlei.de"
  1344. },
  1345. {
  1346. "name": "Jonathan Wage",
  1347. "email": "jonwage@gmail.com"
  1348. },
  1349. {
  1350. "name": "Johannes Schmitt",
  1351. "email": "schmittjoh@gmail.com"
  1352. },
  1353. {
  1354. "name": "Marco Pivetta",
  1355. "email": "ocramius@gmail.com"
  1356. }
  1357. ],
  1358. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1359. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1360. "keywords": [
  1361. "mapper",
  1362. "object",
  1363. "odm",
  1364. "orm",
  1365. "persistence"
  1366. ],
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/persistence/issues",
  1369. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://www.doctrine-project.org/sponsorship.html",
  1374. "type": "custom"
  1375. },
  1376. {
  1377. "url": "https://www.patreon.com/phpdoctrine",
  1378. "type": "patreon"
  1379. },
  1380. {
  1381. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1382. "type": "tidelift"
  1383. }
  1384. ],
  1385. "time": "2025-10-16T20:13:18+00:00"
  1386. },
  1387. {
  1388. "name": "drupal/addtoany",
  1389. "version": "2.0.7",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://git.drupalcode.org/project/addtoany.git",
  1393. "reference": "2.0.7"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.7.zip",
  1398. "reference": "2.0.7",
  1399. "shasum": "33bfb5f425134705f8208f7c2f6ac23382a87bb6"
  1400. },
  1401. "require": {
  1402. "drupal/core": "^10.1 || ^11"
  1403. },
  1404. "type": "drupal-module",
  1405. "extra": {
  1406. "drupal": {
  1407. "version": "2.0.7",
  1408. "datestamp": "1731984029",
  1409. "security-coverage": {
  1410. "status": "covered",
  1411. "message": "Covered by Drupal's security advisory policy"
  1412. }
  1413. }
  1414. },
  1415. "notification-url": "https://packages.drupal.org/8/downloads",
  1416. "license": [
  1417. "GPL-2.0-or-later"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "AddToAny",
  1422. "homepage": "https://www.drupal.org/user/2640913"
  1423. },
  1424. {
  1425. "name": "micropat",
  1426. "homepage": "https://www.drupal.org/user/260224"
  1427. }
  1428. ],
  1429. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1430. "homepage": "https://www.drupal.org/project/addtoany",
  1431. "keywords": [
  1432. "Drupal"
  1433. ],
  1434. "support": {
  1435. "source": "https://git.drupalcode.org/project/addtoany",
  1436. "issues": "https://www.drupal.org/project/issues/addtoany"
  1437. }
  1438. },
  1439. {
  1440. "name": "drupal/admin_toolbar",
  1441. "version": "3.6.2",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1445. "reference": "3.6.2"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.2.zip",
  1450. "reference": "3.6.2",
  1451. "shasum": "0d25e3b7bcea28533ae5f2371a34d507603bfb66"
  1452. },
  1453. "require": {
  1454. "drupal/core": "^9.5 || ^10 || ^11"
  1455. },
  1456. "type": "drupal-module",
  1457. "extra": {
  1458. "drupal": {
  1459. "version": "3.6.2",
  1460. "datestamp": "1753826106",
  1461. "security-coverage": {
  1462. "status": "covered",
  1463. "message": "Covered by Drupal's security advisory policy"
  1464. }
  1465. }
  1466. },
  1467. "notification-url": "https://packages.drupal.org/8/downloads",
  1468. "license": [
  1469. "GPL-2.0-or-later"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Wilfrid Roze (eme)",
  1474. "homepage": "https://www.drupal.org/u/eme",
  1475. "role": "Maintainer"
  1476. },
  1477. {
  1478. "name": "Romain Jarraud (romainj)",
  1479. "homepage": "https://www.drupal.org/u/romainj",
  1480. "role": "Maintainer"
  1481. },
  1482. {
  1483. "name": "Adrian Cid Almaguer (adriancid)",
  1484. "homepage": "https://www.drupal.org/u/adriancid",
  1485. "email": "adriancid@gmail.com",
  1486. "role": "Maintainer"
  1487. },
  1488. {
  1489. "name": "Mohamed Anis Taktak (matio89)",
  1490. "homepage": "https://www.drupal.org/u/matio89",
  1491. "role": "Maintainer"
  1492. },
  1493. {
  1494. "name": "fethi.krout",
  1495. "homepage": "https://www.drupal.org/user/3206765"
  1496. },
  1497. {
  1498. "name": "japerry",
  1499. "homepage": "https://www.drupal.org/user/45640"
  1500. },
  1501. {
  1502. "name": "matio89",
  1503. "homepage": "https://www.drupal.org/user/2320090"
  1504. },
  1505. {
  1506. "name": "musa.thomas",
  1507. "homepage": "https://www.drupal.org/user/1213824"
  1508. },
  1509. {
  1510. "name": "romainj",
  1511. "homepage": "https://www.drupal.org/user/370706"
  1512. }
  1513. ],
  1514. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1515. "homepage": "http://drupal.org/project/admin_toolbar",
  1516. "keywords": [
  1517. "Drupal",
  1518. "Toolbar"
  1519. ],
  1520. "support": {
  1521. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1522. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1523. }
  1524. },
  1525. {
  1526. "name": "drupal/adminimal_theme",
  1527. "version": "1.7.0",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1531. "reference": "8.x-1.7"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1536. "reference": "8.x-1.7",
  1537. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1538. },
  1539. "require": {
  1540. "drupal/core": "^9.3 || ^10",
  1541. "drupal/seven": "~1.0"
  1542. },
  1543. "type": "drupal-theme",
  1544. "extra": {
  1545. "drupal": {
  1546. "version": "8.x-1.7",
  1547. "datestamp": "1691504486",
  1548. "security-coverage": {
  1549. "status": "covered",
  1550. "message": "Covered by Drupal's security advisory policy"
  1551. }
  1552. }
  1553. },
  1554. "notification-url": "https://packages.drupal.org/8/downloads",
  1555. "license": [
  1556. "GPL-2.0+"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "ANDiTKO",
  1561. "homepage": "https://www.drupal.org/user/1428124"
  1562. },
  1563. {
  1564. "name": "andrey.troeglazov",
  1565. "homepage": "https://www.drupal.org/user/3145389"
  1566. },
  1567. {
  1568. "name": "realityloop",
  1569. "homepage": "https://www.drupal.org/user/139189"
  1570. },
  1571. {
  1572. "name": "rjjakes",
  1573. "homepage": "https://www.drupal.org/user/3457245"
  1574. }
  1575. ],
  1576. "description": "Drupal administration theme with modern minimalist design.",
  1577. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1578. "support": {
  1579. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1580. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1581. }
  1582. },
  1583. {
  1584. "name": "drupal/audiofield",
  1585. "version": "1.13.0",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://git.drupalcode.org/project/audiofield.git",
  1589. "reference": "8.x-1.13"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1594. "reference": "8.x-1.13",
  1595. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1596. },
  1597. "require": {
  1598. "drupal/core": "^8 || ^9 || ^10"
  1599. },
  1600. "type": "drupal-module",
  1601. "extra": {
  1602. "drupal": {
  1603. "version": "8.x-1.13",
  1604. "datestamp": "1681143245",
  1605. "security-coverage": {
  1606. "status": "covered",
  1607. "message": "Covered by Drupal's security advisory policy"
  1608. }
  1609. },
  1610. "drush": {
  1611. "services": {
  1612. "drush.services.yml": "^9"
  1613. }
  1614. }
  1615. },
  1616. "notification-url": "https://packages.drupal.org/8/downloads",
  1617. "license": [
  1618. "GPL-2.0-or-later"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "Daniel Moberly",
  1623. "homepage": "https://www.drupal.org/u/danielmoberly",
  1624. "role": "Maintainer"
  1625. },
  1626. {
  1627. "name": "tamerzg",
  1628. "homepage": "https://www.drupal.org/user/464564"
  1629. }
  1630. ],
  1631. "description": "AudioField Module",
  1632. "homepage": "https://www.drupal.org/project/audiofield",
  1633. "support": {
  1634. "source": "https://git.drupalcode.org/project/audiofield",
  1635. "issues": "https://www.drupal.org/project/issues/audiofield"
  1636. }
  1637. },
  1638. {
  1639. "name": "drupal/autologout",
  1640. "version": "2.0.0",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://git.drupalcode.org/project/autologout.git",
  1644. "reference": "2.0.0"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.0.zip",
  1649. "reference": "2.0.0",
  1650. "shasum": "e9a1d4846cc323eef2eb54a0276023b1f0ff8bd2"
  1651. },
  1652. "require": {
  1653. "drupal/core": "^9.2 || ^10 || ^11",
  1654. "drupal/js_cookie": "^1.0"
  1655. },
  1656. "type": "drupal-module",
  1657. "extra": {
  1658. "drupal": {
  1659. "version": "2.0.0",
  1660. "datestamp": "1716413762",
  1661. "security-coverage": {
  1662. "status": "covered",
  1663. "message": "Covered by Drupal's security advisory policy"
  1664. }
  1665. }
  1666. },
  1667. "notification-url": "https://packages.drupal.org/8/downloads",
  1668. "license": [
  1669. "GPL-2.0-or-later"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "ajits",
  1674. "homepage": "https://www.drupal.org/user/981944"
  1675. },
  1676. {
  1677. "name": "AjK",
  1678. "homepage": "https://www.drupal.org/user/39030"
  1679. },
  1680. {
  1681. "name": "boshtian",
  1682. "homepage": "https://www.drupal.org/user/1773456"
  1683. },
  1684. {
  1685. "name": "dandrews",
  1686. "homepage": "https://www.drupal.org/user/2014490"
  1687. },
  1688. {
  1689. "name": "darksnow",
  1690. "homepage": "https://www.drupal.org/user/391915"
  1691. },
  1692. {
  1693. "name": "japerry",
  1694. "homepage": "https://www.drupal.org/user/45640"
  1695. },
  1696. {
  1697. "name": "johnennew",
  1698. "homepage": "https://www.drupal.org/user/1150042"
  1699. },
  1700. {
  1701. "name": "jrglasgow",
  1702. "homepage": "https://www.drupal.org/user/36590"
  1703. },
  1704. {
  1705. "name": "kmasood",
  1706. "homepage": "https://www.drupal.org/user/1262860"
  1707. },
  1708. {
  1709. "name": "levelos",
  1710. "homepage": "https://www.drupal.org/user/54135"
  1711. },
  1712. {
  1713. "name": "prabeen.giri",
  1714. "homepage": "https://www.drupal.org/user/913078"
  1715. },
  1716. {
  1717. "name": "scott_earnest",
  1718. "homepage": "https://www.drupal.org/user/416158"
  1719. },
  1720. {
  1721. "name": "str8",
  1722. "homepage": "https://www.drupal.org/user/2865063"
  1723. }
  1724. ],
  1725. "description": "Adds automated timed logout.",
  1726. "homepage": "http://drupal.org/project/autologout",
  1727. "support": {
  1728. "source": "https://git.drupalcode.org/project/autologout",
  1729. "issues": "https://www.drupal.org/project/issues/autologout"
  1730. }
  1731. },
  1732. {
  1733. "name": "drupal/basic",
  1734. "version": "3.0.0-alpha2",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://git.drupalcode.org/project/basic.git",
  1738. "reference": "3.0.0-alpha2"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  1743. "reference": "3.0.0-alpha2",
  1744. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  1745. },
  1746. "require": {
  1747. "drupal/core": "^9.3 || ^10"
  1748. },
  1749. "type": "drupal-theme",
  1750. "extra": {
  1751. "drupal": {
  1752. "version": "3.0.0-alpha2",
  1753. "datestamp": "1674980765",
  1754. "security-coverage": {
  1755. "status": "not-covered",
  1756. "message": "Alpha releases are not covered by Drupal security advisories."
  1757. }
  1758. }
  1759. },
  1760. "notification-url": "https://packages.drupal.org/8/downloads",
  1761. "license": [
  1762. "GPL-2.0+"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Steve Krueger",
  1767. "homepage": "http://thejibe.com",
  1768. "email": "steve@thejibe.com",
  1769. "role": "Maintainer"
  1770. },
  1771. {
  1772. "name": "Joël Pittet",
  1773. "homepage": "https://www.drupal.org/u/joelpittet",
  1774. "email": "joel@pittet.ca",
  1775. "role": "Maintainer"
  1776. },
  1777. {
  1778. "name": "Leah Wagner",
  1779. "homepage": "http://thejibe.com",
  1780. "email": "leah@thejibe.com",
  1781. "role": "Maintainer"
  1782. },
  1783. {
  1784. "name": "Catherine Winters",
  1785. "homepage": "http://www.catherinewinters.com",
  1786. "email": "catherine@catherinewinters.com",
  1787. "role": "Maintainer"
  1788. },
  1789. {
  1790. "name": "Johannes Schmidt",
  1791. "homepage": "http://2tabs.com",
  1792. "email": "mail@2tabs.com",
  1793. "role": "Maintainer"
  1794. },
  1795. {
  1796. "name": "Chuck Kosman",
  1797. "homepage": "http://thejibe.com",
  1798. "email": "chuck@thejibe.com",
  1799. "role": "Maintainer"
  1800. },
  1801. {
  1802. "name": "SteveK",
  1803. "homepage": "https://www.drupal.org/user/111656"
  1804. }
  1805. ],
  1806. "description": "HTML5, SASS, Responsive grid starter theme.",
  1807. "homepage": "http://drupal.org/project/basic",
  1808. "support": {
  1809. "source": "http://cgit.drupalcode.org/basic",
  1810. "issues": "https://www.drupal.org/project/issues/basic",
  1811. "irc": "irc://irc.freenode.org/drupal-contribute"
  1812. }
  1813. },
  1814. {
  1815. "name": "drupal/bulkdelete",
  1816. "version": "dev-1.x",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1820. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1821. },
  1822. "require": {
  1823. "drupal/core": "^8.7.7 || ^9 || ^10"
  1824. },
  1825. "type": "drupal-module",
  1826. "extra": {
  1827. "branch-alias": {
  1828. "dev-1.x": "1.x-dev"
  1829. },
  1830. "drupal": {
  1831. "version": "8.x-1.x-dev",
  1832. "datestamp": "1655322426",
  1833. "security-coverage": {
  1834. "status": "not-covered",
  1835. "message": "Dev releases are not covered by Drupal security advisories."
  1836. }
  1837. }
  1838. },
  1839. "notification-url": "https://packages.drupal.org/8/downloads",
  1840. "license": [
  1841. "GPL-2.0-or-later"
  1842. ],
  1843. "authors": [
  1844. {
  1845. "name": "Kars-T",
  1846. "homepage": "https://www.drupal.org/user/224499"
  1847. },
  1848. {
  1849. "name": "Rahul Seth",
  1850. "homepage": "https://www.drupal.org/user/2694359"
  1851. },
  1852. {
  1853. "name": "adriancid",
  1854. "homepage": "https://www.drupal.org/user/1962106"
  1855. },
  1856. {
  1857. "name": "robertDouglass",
  1858. "homepage": "https://www.drupal.org/user/5449"
  1859. }
  1860. ],
  1861. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1862. "homepage": "https://www.drupal.org/project/bulkdelete",
  1863. "support": {
  1864. "source": "https://git.drupalcode.org/project/bulkdelete"
  1865. }
  1866. },
  1867. {
  1868. "name": "drupal/classy",
  1869. "version": "1.0.2",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://git.drupalcode.org/project/classy.git",
  1873. "reference": "1.0.2"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  1878. "reference": "1.0.2",
  1879. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  1880. },
  1881. "require": {
  1882. "drupal/core": "^9 || ^10",
  1883. "drupal/stable": "^2.0.0"
  1884. },
  1885. "type": "drupal-theme",
  1886. "extra": {
  1887. "drupal": {
  1888. "version": "1.0.2",
  1889. "datestamp": "1663949784",
  1890. "security-coverage": {
  1891. "status": "covered",
  1892. "message": "Covered by Drupal's security advisory policy"
  1893. }
  1894. }
  1895. },
  1896. "notification-url": "https://packages.drupal.org/8/downloads",
  1897. "license": [
  1898. "GPL-2.0-or-later"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "bnjmnm",
  1903. "homepage": "https://www.drupal.org/user/2369194"
  1904. },
  1905. {
  1906. "name": "davidhernandez",
  1907. "homepage": "https://www.drupal.org/user/274559"
  1908. },
  1909. {
  1910. "name": "lauriii",
  1911. "homepage": "https://www.drupal.org/user/1078742"
  1912. },
  1913. {
  1914. "name": "smustgrave",
  1915. "homepage": "https://www.drupal.org/user/3252890"
  1916. }
  1917. ],
  1918. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  1919. "homepage": "https://drupal.org/project/classy",
  1920. "support": {
  1921. "source": "https://git.drupalcode.org/project/classy",
  1922. "issues": "https://drupal.org/project/issues/classy"
  1923. }
  1924. },
  1925. {
  1926. "name": "drupal/color_field",
  1927. "version": "3.0.1",
  1928. "source": {
  1929. "type": "git",
  1930. "url": "https://git.drupalcode.org/project/color_field.git",
  1931. "reference": "3.0.1"
  1932. },
  1933. "dist": {
  1934. "type": "zip",
  1935. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  1936. "reference": "3.0.1",
  1937. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  1938. },
  1939. "require": {
  1940. "drupal/core": "^9 || ^10 || ^11"
  1941. },
  1942. "require-dev": {
  1943. "drupal/core-recommended": "^9 || ^10",
  1944. "drupal/feeds": "^3.0@beta",
  1945. "drupal/token": "~1.3"
  1946. },
  1947. "suggest": {
  1948. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  1949. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  1950. },
  1951. "type": "drupal-module",
  1952. "extra": {
  1953. "drupal": {
  1954. "version": "3.0.1",
  1955. "datestamp": "1717506868",
  1956. "security-coverage": {
  1957. "status": "covered",
  1958. "message": "Covered by Drupal's security advisory policy"
  1959. }
  1960. }
  1961. },
  1962. "notification-url": "https://packages.drupal.org/8/downloads",
  1963. "license": [
  1964. "GPL-2.0-or-later"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "targoo",
  1969. "homepage": "https://www.drupal.org/user/431910",
  1970. "role": "Maintainer"
  1971. },
  1972. {
  1973. "name": "Nick Wilde",
  1974. "homepage": "https://www.drupal.org/user/nickwilde",
  1975. "role": "Maintainer"
  1976. },
  1977. {
  1978. "name": "targoo",
  1979. "homepage": "https://www.drupal.org/user/431910"
  1980. }
  1981. ],
  1982. "description": "Provides a color field type to store the color value and opacity",
  1983. "homepage": "https://www.drupal.org/project/color_field",
  1984. "support": {
  1985. "source": "https://git.drupalcode.org/project/color_field",
  1986. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  1987. }
  1988. },
  1989. {
  1990. "name": "drupal/composer_deploy",
  1991. "version": "1.8.0",
  1992. "source": {
  1993. "type": "git",
  1994. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  1995. "reference": "8.x-1.8"
  1996. },
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.8.zip",
  2000. "reference": "8.x-1.8",
  2001. "shasum": "10889488b0ecbdeed41f6d0c847030eddf0b56b3"
  2002. },
  2003. "require": {
  2004. "drupal/core": "^9 || ^10 || ^11",
  2005. "php": ">=8.1",
  2006. "webflo/drupal-finder": "^1.3",
  2007. "webmozart/path-util": "^2.1.0"
  2008. },
  2009. "type": "drupal-module",
  2010. "extra": {
  2011. "drupal": {
  2012. "version": "8.x-1.8",
  2013. "datestamp": "1728568570",
  2014. "security-coverage": {
  2015. "status": "covered",
  2016. "message": "Covered by Drupal's security advisory policy"
  2017. }
  2018. }
  2019. },
  2020. "notification-url": "https://packages.drupal.org/8/downloads",
  2021. "license": [
  2022. "GPL-2.0+"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "jhedstrom",
  2027. "homepage": "https://www.drupal.org/user/208732"
  2028. },
  2029. {
  2030. "name": "joelpittet",
  2031. "homepage": "https://www.drupal.org/user/160302"
  2032. },
  2033. {
  2034. "name": "nerdstein",
  2035. "homepage": "https://www.drupal.org/user/1557710"
  2036. },
  2037. {
  2038. "name": "webflo",
  2039. "homepage": "https://www.drupal.org/user/254778"
  2040. }
  2041. ],
  2042. "description": "Provide version number from composers lockfile.",
  2043. "homepage": "https://www.drupal.org/project/composer_deploy",
  2044. "support": {
  2045. "source": "https://git.drupalcode.org/project/composer_deploy"
  2046. }
  2047. },
  2048. {
  2049. "name": "drupal/config_devel",
  2050. "version": "1.10.0",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://git.drupalcode.org/project/config_devel.git",
  2054. "reference": "8.x-1.10"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2059. "reference": "8.x-1.10",
  2060. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2061. },
  2062. "require": {
  2063. "drupal/core": "^9.3 || ^10 || ^11"
  2064. },
  2065. "type": "drupal-module",
  2066. "extra": {
  2067. "drupal": {
  2068. "version": "8.x-1.10",
  2069. "datestamp": "1727184343",
  2070. "security-coverage": {
  2071. "status": "covered",
  2072. "message": "Covered by Drupal's security advisory policy"
  2073. }
  2074. }
  2075. },
  2076. "notification-url": "https://packages.drupal.org/8/downloads",
  2077. "license": [
  2078. "GPL-2.0+"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "alexpott",
  2083. "homepage": "https://www.drupal.org/user/157725"
  2084. },
  2085. {
  2086. "name": "benjy",
  2087. "homepage": "https://www.drupal.org/user/1852732"
  2088. },
  2089. {
  2090. "name": "chx",
  2091. "homepage": "https://www.drupal.org/user/9446"
  2092. },
  2093. {
  2094. "name": "joachim",
  2095. "homepage": "https://www.drupal.org/user/107701"
  2096. },
  2097. {
  2098. "name": "vijaycs85",
  2099. "homepage": "https://www.drupal.org/user/93488"
  2100. }
  2101. ],
  2102. "description": "Helps developers work with configuration.",
  2103. "homepage": "https://www.drupal.org/project/config_devel",
  2104. "support": {
  2105. "source": "https://git.drupalcode.org/project/config_devel"
  2106. }
  2107. },
  2108. {
  2109. "name": "drupal/config_filter",
  2110. "version": "2.7.0",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://git.drupalcode.org/project/config_filter.git",
  2114. "reference": "8.x-2.7"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2119. "reference": "8.x-2.7",
  2120. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2121. },
  2122. "require": {
  2123. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2124. },
  2125. "conflict": {
  2126. "drush/drush": "<10"
  2127. },
  2128. "suggest": {
  2129. "drupal/config_split": "Split site configuration for different environments."
  2130. },
  2131. "type": "drupal-module",
  2132. "extra": {
  2133. "drupal": {
  2134. "version": "8.x-2.7",
  2135. "datestamp": "1727472458",
  2136. "security-coverage": {
  2137. "status": "covered",
  2138. "message": "Covered by Drupal's security advisory policy"
  2139. }
  2140. }
  2141. },
  2142. "notification-url": "https://packages.drupal.org/8/downloads",
  2143. "license": [
  2144. "GPL-2.0-or-later"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Fabian Bircher",
  2149. "homepage": "https://www.drupal.org/u/bircher",
  2150. "email": "opensource@fabianbircher.com",
  2151. "role": "Maintainer"
  2152. },
  2153. {
  2154. "name": "Nuvole Web",
  2155. "homepage": "http://nuvole.org",
  2156. "email": "info@nuvole.org",
  2157. "role": "Maintainer"
  2158. },
  2159. {
  2160. "name": "pescetti",
  2161. "homepage": "https://www.drupal.org/user/436244"
  2162. }
  2163. ],
  2164. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2165. "homepage": "https://www.drupal.org/project/config_filter",
  2166. "keywords": [
  2167. "Drupal",
  2168. "configuration",
  2169. "configuration management"
  2170. ],
  2171. "support": {
  2172. "source": "https://git.drupalcode.org/project/config_filter",
  2173. "issues": "https://www.drupal.org/project/issues/config_filter",
  2174. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2175. }
  2176. },
  2177. {
  2178. "name": "drupal/config_ignore",
  2179. "version": "3.3.0",
  2180. "source": {
  2181. "type": "git",
  2182. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2183. "reference": "8.x-3.3"
  2184. },
  2185. "dist": {
  2186. "type": "zip",
  2187. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2188. "reference": "8.x-3.3",
  2189. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2190. },
  2191. "require": {
  2192. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2193. },
  2194. "require-dev": {
  2195. "drupal/config_filter": "^1.8||^2.2",
  2196. "drush/drush": "^10 || ^11 || ^12"
  2197. },
  2198. "type": "drupal-module",
  2199. "extra": {
  2200. "drupal": {
  2201. "version": "8.x-3.3",
  2202. "datestamp": "1713299496",
  2203. "security-coverage": {
  2204. "status": "covered",
  2205. "message": "Covered by Drupal's security advisory policy"
  2206. }
  2207. }
  2208. },
  2209. "notification-url": "https://packages.drupal.org/8/downloads",
  2210. "license": [
  2211. "GPL-2.0-or-later"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "Tommy Lynge Jørgensen",
  2216. "homepage": "https://www.drupal.org/u/tlyngej",
  2217. "email": "tlyngej@gmail.com",
  2218. "role": "Maintainer"
  2219. },
  2220. {
  2221. "name": "Fabian Bircher",
  2222. "homepage": "https://www.drupal.org/u/bircher",
  2223. "role": "Maintainer"
  2224. },
  2225. {
  2226. "name": "tlyngej",
  2227. "homepage": "https://www.drupal.org/user/413139"
  2228. }
  2229. ],
  2230. "description": "Ignore certain configuration during import and export.",
  2231. "homepage": "http://drupal.org/project/config_ignore",
  2232. "support": {
  2233. "source": "https://git.drupalcode.org/project/config_ignore",
  2234. "issues": "http://drupal.org/project/config_ignore"
  2235. }
  2236. },
  2237. {
  2238. "name": "drupal/config_update",
  2239. "version": "2.0.0-alpha4",
  2240. "source": {
  2241. "type": "git",
  2242. "url": "https://git.drupalcode.org/project/config_update.git",
  2243. "reference": "2.0.0-alpha4"
  2244. },
  2245. "dist": {
  2246. "type": "zip",
  2247. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2248. "reference": "2.0.0-alpha4",
  2249. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2250. },
  2251. "require": {
  2252. "drupal/core": "^9.4 || ^10 || ^11"
  2253. },
  2254. "type": "drupal-module",
  2255. "extra": {
  2256. "drupal": {
  2257. "version": "2.0.0-alpha4",
  2258. "datestamp": "1724596931",
  2259. "security-coverage": {
  2260. "status": "not-covered",
  2261. "message": "Alpha releases are not covered by Drupal security advisories."
  2262. }
  2263. }
  2264. },
  2265. "notification-url": "https://packages.drupal.org/8/downloads",
  2266. "license": [
  2267. "GPL-2.0-or-later"
  2268. ],
  2269. "authors": [
  2270. {
  2271. "name": "codebymikey",
  2272. "homepage": "https://www.drupal.org/user/3573206"
  2273. },
  2274. {
  2275. "name": "pasqualle",
  2276. "homepage": "https://www.drupal.org/user/80733"
  2277. },
  2278. {
  2279. "name": "vishalkhode",
  2280. "homepage": "https://www.drupal.org/user/2439156"
  2281. }
  2282. ],
  2283. "description": "Provides basic revert and update functionality for other modules.",
  2284. "homepage": "https://www.drupal.org/project/config_update",
  2285. "support": {
  2286. "source": "https://git.drupalcode.org/project/config_update"
  2287. }
  2288. },
  2289. {
  2290. "name": "drupal/context",
  2291. "version": "5.0.0-rc1",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://git.drupalcode.org/project/context.git",
  2295. "reference": "5.0.0-rc1"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2300. "reference": "5.0.0-rc1",
  2301. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2302. },
  2303. "require": {
  2304. "drupal/core": "^9.3 || ^10"
  2305. },
  2306. "type": "drupal-module",
  2307. "extra": {
  2308. "drupal": {
  2309. "version": "5.0.0-rc1",
  2310. "datestamp": "1677054769",
  2311. "security-coverage": {
  2312. "status": "not-covered",
  2313. "message": "RC releases are not covered by Drupal security advisories."
  2314. }
  2315. }
  2316. },
  2317. "notification-url": "https://packages.drupal.org/8/downloads",
  2318. "license": [
  2319. "MIT"
  2320. ],
  2321. "authors": [
  2322. {
  2323. "name": "Christoffer Palm",
  2324. "homepage": "http://www.oddhill.se/",
  2325. "email": "christoffer.palm@oddhill.se",
  2326. "role": "Developer"
  2327. },
  2328. {
  2329. "name": "boshtian",
  2330. "homepage": "https://www.drupal.org/user/1773456"
  2331. },
  2332. {
  2333. "name": "colan",
  2334. "homepage": "https://www.drupal.org/user/58704"
  2335. },
  2336. {
  2337. "name": "emanaton",
  2338. "homepage": "https://www.drupal.org/user/120853"
  2339. },
  2340. {
  2341. "name": "febbraro",
  2342. "homepage": "https://www.drupal.org/user/43670"
  2343. },
  2344. {
  2345. "name": "fizk",
  2346. "homepage": "https://www.drupal.org/user/473174"
  2347. },
  2348. {
  2349. "name": "hass",
  2350. "homepage": "https://www.drupal.org/user/85918"
  2351. },
  2352. {
  2353. "name": "hefox",
  2354. "homepage": "https://www.drupal.org/user/426416"
  2355. },
  2356. {
  2357. "name": "jmiccolis",
  2358. "homepage": "https://www.drupal.org/user/31731"
  2359. },
  2360. {
  2361. "name": "Kristen Pol",
  2362. "homepage": "https://www.drupal.org/user/8389"
  2363. },
  2364. {
  2365. "name": "nedjo",
  2366. "homepage": "https://www.drupal.org/user/4481"
  2367. },
  2368. {
  2369. "name": "NormySan",
  2370. "homepage": "https://www.drupal.org/user/112352"
  2371. },
  2372. {
  2373. "name": "patricksettle",
  2374. "homepage": "https://www.drupal.org/user/26618"
  2375. },
  2376. {
  2377. "name": "paulocs",
  2378. "homepage": "https://www.drupal.org/user/3640109"
  2379. },
  2380. {
  2381. "name": "Steven Jones",
  2382. "homepage": "https://www.drupal.org/user/99644"
  2383. },
  2384. {
  2385. "name": "tekante",
  2386. "homepage": "https://www.drupal.org/user/640024"
  2387. },
  2388. {
  2389. "name": "yhahn",
  2390. "homepage": "https://www.drupal.org/user/264833"
  2391. }
  2392. ],
  2393. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2394. "homepage": "https://github.com/oddhill/context",
  2395. "keywords": [
  2396. "Drupal",
  2397. "block",
  2398. "conditions",
  2399. "context",
  2400. "visibility"
  2401. ],
  2402. "support": {
  2403. "source": "https://github.com/oddhill/context",
  2404. "issues": "https://github.com/oddhill/context/issues",
  2405. "docs": "https://github.com/oddhill/context"
  2406. }
  2407. },
  2408. {
  2409. "name": "drupal/core",
  2410. "version": "10.6.5",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/drupal/core.git",
  2414. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  2419. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "asm89/stack-cors": "^2.3",
  2424. "composer-runtime-api": "^2.1",
  2425. "composer/semver": "^3.3",
  2426. "doctrine/lexer": "^2",
  2427. "egulias/email-validator": "^3.2.1|^4.0",
  2428. "ext-date": "*",
  2429. "ext-dom": "*",
  2430. "ext-filter": "*",
  2431. "ext-gd": "*",
  2432. "ext-hash": "*",
  2433. "ext-json": "*",
  2434. "ext-pcre": "*",
  2435. "ext-pdo": "*",
  2436. "ext-session": "*",
  2437. "ext-simplexml": "*",
  2438. "ext-spl": "*",
  2439. "ext-tokenizer": "*",
  2440. "ext-xml": "*",
  2441. "guzzlehttp/guzzle": "^7.5",
  2442. "guzzlehttp/psr7": "^2.4.5",
  2443. "masterminds/html5": "^2.7",
  2444. "mck89/peast": "^1.14",
  2445. "pear/archive_tar": "^1.4.14",
  2446. "php": ">=8.1.0",
  2447. "psr/log": "^3.0",
  2448. "sebastian/diff": "^4",
  2449. "symfony/console": "^6.4",
  2450. "symfony/dependency-injection": "^6.4",
  2451. "symfony/event-dispatcher": "^6.4",
  2452. "symfony/filesystem": "^6.4",
  2453. "symfony/finder": "^6.4",
  2454. "symfony/http-foundation": "^6.4",
  2455. "symfony/http-kernel": "^6.4",
  2456. "symfony/mailer": "^6.4",
  2457. "symfony/mime": "^6.4",
  2458. "symfony/polyfill-iconv": "^1.26",
  2459. "symfony/process": "^6.4.33",
  2460. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2461. "symfony/routing": "^6.4",
  2462. "symfony/serializer": "^6.4",
  2463. "symfony/validator": "^6.4",
  2464. "symfony/yaml": "^6.4",
  2465. "twig/twig": "^3.22.0"
  2466. },
  2467. "conflict": {
  2468. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  2469. "drush/drush": "<12.4.3"
  2470. },
  2471. "replace": {
  2472. "drupal/core-annotation": "self.version",
  2473. "drupal/core-assertion": "self.version",
  2474. "drupal/core-class-finder": "self.version",
  2475. "drupal/core-datetime": "self.version",
  2476. "drupal/core-dependency-injection": "self.version",
  2477. "drupal/core-diff": "self.version",
  2478. "drupal/core-discovery": "self.version",
  2479. "drupal/core-event-dispatcher": "self.version",
  2480. "drupal/core-file-cache": "self.version",
  2481. "drupal/core-file-security": "self.version",
  2482. "drupal/core-filesystem": "self.version",
  2483. "drupal/core-front-matter": "self.version",
  2484. "drupal/core-gettext": "self.version",
  2485. "drupal/core-graph": "self.version",
  2486. "drupal/core-http-foundation": "self.version",
  2487. "drupal/core-php-storage": "self.version",
  2488. "drupal/core-plugin": "self.version",
  2489. "drupal/core-proxy-builder": "self.version",
  2490. "drupal/core-render": "self.version",
  2491. "drupal/core-serialization": "self.version",
  2492. "drupal/core-transliteration": "self.version",
  2493. "drupal/core-utility": "self.version",
  2494. "drupal/core-uuid": "self.version",
  2495. "drupal/core-version": "self.version"
  2496. },
  2497. "suggest": {
  2498. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2499. },
  2500. "type": "drupal-core",
  2501. "extra": {
  2502. "drupal-scaffold": {
  2503. "file-mapping": {
  2504. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2505. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2506. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2507. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2508. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2509. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2510. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2511. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2512. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2513. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2514. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2515. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2516. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2517. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2518. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  2519. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2520. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2521. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2522. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2523. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2524. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2525. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2526. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  2527. }
  2528. }
  2529. },
  2530. "autoload": {
  2531. "files": [
  2532. "includes/bootstrap.inc"
  2533. ],
  2534. "psr-4": {
  2535. "Drupal\\Core\\": "lib/Drupal/Core",
  2536. "Drupal\\Component\\": "lib/Drupal/Component"
  2537. },
  2538. "classmap": [
  2539. "lib/Drupal.php",
  2540. "lib/Drupal/Component/DependencyInjection/Container.php",
  2541. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2542. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2543. "lib/Drupal/Component/Utility/Timer.php",
  2544. "lib/Drupal/Component/Utility/Unicode.php",
  2545. "lib/Drupal/Core/Cache/Cache.php",
  2546. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2547. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2548. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2549. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2550. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2551. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2552. "lib/Drupal/Core/Database/Connection.php",
  2553. "lib/Drupal/Core/Database/Database.php",
  2554. "lib/Drupal/Core/Database/StatementInterface.php",
  2555. "lib/Drupal/Core/DependencyInjection/Container.php",
  2556. "lib/Drupal/Core/DrupalKernel.php",
  2557. "lib/Drupal/Core/DrupalKernelInterface.php",
  2558. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2559. "lib/Drupal/Core/Site/Settings.php",
  2560. "lib/Drupal/Component/Datetime/Time.php"
  2561. ]
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "GPL-2.0-or-later"
  2566. ],
  2567. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2568. "support": {
  2569. "source": "https://github.com/drupal/core/tree/10.6.5"
  2570. },
  2571. "time": "2026-03-06T09:55:31+00:00"
  2572. },
  2573. {
  2574. "name": "drupal/core-composer-scaffold",
  2575. "version": "10.6.5",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2579. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  2584. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  2585. "shasum": ""
  2586. },
  2587. "require": {
  2588. "composer-plugin-api": "^2",
  2589. "php": ">=7.3.0"
  2590. },
  2591. "conflict": {
  2592. "drupal-composer/drupal-scaffold": "*"
  2593. },
  2594. "require-dev": {
  2595. "composer/composer": "^1.8@stable"
  2596. },
  2597. "type": "composer-plugin",
  2598. "extra": {
  2599. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2600. "branch-alias": {
  2601. "dev-master": "1.0.x-dev"
  2602. }
  2603. },
  2604. "autoload": {
  2605. "psr-4": {
  2606. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2607. }
  2608. },
  2609. "notification-url": "https://packagist.org/downloads/",
  2610. "license": [
  2611. "GPL-2.0-or-later"
  2612. ],
  2613. "description": "A flexible Composer project scaffold builder.",
  2614. "homepage": "https://www.drupal.org/project/drupal",
  2615. "keywords": [
  2616. "drupal"
  2617. ],
  2618. "support": {
  2619. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  2620. },
  2621. "time": "2024-08-22T14:31:30+00:00"
  2622. },
  2623. {
  2624. "name": "drupal/core-project-message",
  2625. "version": "10.6.5",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/drupal/core-project-message.git",
  2629. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2634. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "composer-plugin-api": "^2",
  2639. "php": ">=7.3.0"
  2640. },
  2641. "type": "composer-plugin",
  2642. "extra": {
  2643. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2644. },
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "GPL-2.0-or-later"
  2653. ],
  2654. "description": "Adds a message after Composer installation.",
  2655. "homepage": "https://www.drupal.org/project/drupal",
  2656. "keywords": [
  2657. "drupal"
  2658. ],
  2659. "support": {
  2660. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  2661. },
  2662. "time": "2023-07-24T07:55:25+00:00"
  2663. },
  2664. {
  2665. "name": "drupal/core-recommended",
  2666. "version": "10.6.5",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/drupal/core-recommended.git",
  2670. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  2675. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  2676. "shasum": ""
  2677. },
  2678. "require": {
  2679. "asm89/stack-cors": "~v2.3.0",
  2680. "composer/semver": "~3.4.4",
  2681. "doctrine/deprecations": "~1.1.5",
  2682. "doctrine/lexer": "~2.1.1",
  2683. "drupal/core": "10.6.5",
  2684. "egulias/email-validator": "~4.0.4",
  2685. "guzzlehttp/guzzle": "~7.10.0",
  2686. "guzzlehttp/promises": "~2.3.0",
  2687. "guzzlehttp/psr7": "~2.8.0",
  2688. "masterminds/html5": "~2.10.0",
  2689. "mck89/peast": "~v1.17.4",
  2690. "pear/archive_tar": "~1.6.0",
  2691. "pear/console_getopt": "~v1.4.3",
  2692. "pear/pear-core-minimal": "~v1.10.16",
  2693. "pear/pear_exception": "~v1.0.2",
  2694. "psr/container": "~2.0.2",
  2695. "psr/event-dispatcher": "~1.0.0",
  2696. "psr/http-client": "~1.0.3",
  2697. "psr/http-factory": "~1.1.0",
  2698. "psr/log": "~3.0.2",
  2699. "ralouphie/getallheaders": "~3.0.3",
  2700. "sebastian/diff": "~4.0.6",
  2701. "symfony/console": "~v6.4.27",
  2702. "symfony/dependency-injection": "~v6.4.26",
  2703. "symfony/deprecation-contracts": "~v3.6.0",
  2704. "symfony/error-handler": "~v6.4.26",
  2705. "symfony/event-dispatcher": "~v6.4.25",
  2706. "symfony/event-dispatcher-contracts": "~v3.6.0",
  2707. "symfony/filesystem": "~v6.4.24",
  2708. "symfony/finder": "~v6.4.27",
  2709. "symfony/http-foundation": "~v6.4.29",
  2710. "symfony/http-kernel": "~v6.4.29",
  2711. "symfony/mailer": "~v6.4.27",
  2712. "symfony/mime": "~v6.4.26",
  2713. "symfony/polyfill-ctype": "~v1.33.0",
  2714. "symfony/polyfill-iconv": "~v1.33.0",
  2715. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  2716. "symfony/polyfill-intl-idn": "~v1.33.0",
  2717. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  2718. "symfony/polyfill-mbstring": "~v1.33.0",
  2719. "symfony/polyfill-php83": "~v1.33.0",
  2720. "symfony/process": "~v6.4.33",
  2721. "symfony/psr-http-message-bridge": "~v6.4.24",
  2722. "symfony/routing": "~v6.4.28",
  2723. "symfony/serializer": "~v6.4.27",
  2724. "symfony/service-contracts": "~v3.6.1",
  2725. "symfony/string": "~v6.4.26",
  2726. "symfony/translation-contracts": "~v3.6.1",
  2727. "symfony/validator": "~v6.4.29",
  2728. "symfony/var-dumper": "~v6.4.26",
  2729. "symfony/var-exporter": "~v6.4.26",
  2730. "symfony/yaml": "~v6.4.26",
  2731. "twig/twig": "~v3.22.0"
  2732. },
  2733. "conflict": {
  2734. "webflo/drupal-core-strict": "*"
  2735. },
  2736. "type": "metapackage",
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "GPL-2.0-or-later"
  2740. ],
  2741. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2742. "support": {
  2743. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  2744. },
  2745. "time": "2026-03-06T09:55:31+00:00"
  2746. },
  2747. {
  2748. "name": "drupal/ctools",
  2749. "version": "4.1.0",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://git.drupalcode.org/project/ctools.git",
  2753. "reference": "4.1.0"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2758. "reference": "4.1.0",
  2759. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2760. },
  2761. "require": {
  2762. "drupal/core": "^9.5 || ^10 || ^11"
  2763. },
  2764. "type": "drupal-module",
  2765. "extra": {
  2766. "drupal": {
  2767. "version": "4.1.0",
  2768. "datestamp": "1718144949",
  2769. "security-coverage": {
  2770. "status": "covered",
  2771. "message": "Covered by Drupal's security advisory policy"
  2772. }
  2773. },
  2774. "branch-alias": {
  2775. "dev-8.x-3.x": "3.x-dev"
  2776. }
  2777. },
  2778. "notification-url": "https://packages.drupal.org/8/downloads",
  2779. "license": [
  2780. "GPL-2.0-or-later"
  2781. ],
  2782. "authors": [
  2783. {
  2784. "name": "Kris Vanderwater (EclipseGc)",
  2785. "homepage": "https://www.drupal.org/u/eclipsegc",
  2786. "role": "Maintainer"
  2787. },
  2788. {
  2789. "name": "Jakob Perry (japerry)",
  2790. "homepage": "https://www.drupal.org/u/japerry",
  2791. "role": "Maintainer"
  2792. },
  2793. {
  2794. "name": "Tim Plunkett (tim.plunkett)",
  2795. "homepage": "https://www.drupal.org/u/timplunkett",
  2796. "role": "Maintainer"
  2797. },
  2798. {
  2799. "name": "James Gilliland (neclimdul)",
  2800. "homepage": "https://www.drupal.org/u/neclimdul",
  2801. "role": "Maintainer"
  2802. },
  2803. {
  2804. "name": "Daniel Wehner (dawehner)",
  2805. "homepage": "https://www.drupal.org/u/dawehner",
  2806. "role": "Maintainer"
  2807. },
  2808. {
  2809. "name": "joelpittet",
  2810. "homepage": "https://www.drupal.org/user/160302"
  2811. },
  2812. {
  2813. "name": "merlinofchaos",
  2814. "homepage": "https://www.drupal.org/user/26979"
  2815. },
  2816. {
  2817. "name": "neclimdul",
  2818. "homepage": "https://www.drupal.org/user/48673"
  2819. },
  2820. {
  2821. "name": "sdboyer",
  2822. "homepage": "https://www.drupal.org/user/146719"
  2823. },
  2824. {
  2825. "name": "sun",
  2826. "homepage": "https://www.drupal.org/user/54136"
  2827. },
  2828. {
  2829. "name": "tim.plunkett",
  2830. "homepage": "https://www.drupal.org/user/241634"
  2831. }
  2832. ],
  2833. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2834. "homepage": "https://www.drupal.org/project/ctools",
  2835. "support": {
  2836. "source": "https://git.drupalcode.org/project/ctools",
  2837. "issues": "https://www.drupal.org/project/issues/ctools"
  2838. }
  2839. },
  2840. {
  2841. "name": "drupal/date_range_formatter",
  2842. "version": "4.0.2",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2846. "reference": "4.0.2"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2851. "reference": "4.0.2",
  2852. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2853. },
  2854. "require": {
  2855. "drupal/core": "^8 || ^9 || ^10"
  2856. },
  2857. "type": "drupal-module",
  2858. "extra": {
  2859. "drupal": {
  2860. "version": "4.0.2",
  2861. "datestamp": "1703156621",
  2862. "security-coverage": {
  2863. "status": "covered",
  2864. "message": "Covered by Drupal's security advisory policy"
  2865. }
  2866. }
  2867. },
  2868. "notification-url": "https://packages.drupal.org/8/downloads",
  2869. "license": [
  2870. "GPL-2.0-or-later"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "maximpodorov",
  2875. "homepage": "https://www.drupal.org/user/515310"
  2876. },
  2877. {
  2878. "name": "sudishth",
  2879. "homepage": "https://www.drupal.org/user/1440562"
  2880. }
  2881. ],
  2882. "description": "Formats date ranges.",
  2883. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2884. "support": {
  2885. "source": "https://git.drupalcode.org/project/date_range_formatter"
  2886. }
  2887. },
  2888. {
  2889. "name": "drupal/devel",
  2890. "version": "5.3.1",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://git.drupalcode.org/project/devel.git",
  2894. "reference": "5.3.1"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://ftp.drupal.org/files/projects/devel-5.3.1.zip",
  2899. "reference": "5.3.1",
  2900. "shasum": "6a5f13bdf93dc5f7f194b6af847589ae15e37b63"
  2901. },
  2902. "require": {
  2903. "doctrine/common": "^2.7 || ^3.4",
  2904. "drupal/core": "^10.3 || ^11 || ^12",
  2905. "php": ">=8.1",
  2906. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  2907. },
  2908. "conflict": {
  2909. "drupal/core": "<10.3",
  2910. "drush/drush": "<12.5.1",
  2911. "kint-php/kint": "<3"
  2912. },
  2913. "require-dev": {
  2914. "drush/drush": "^13",
  2915. "firephp/firephp-core": "^0.5.3",
  2916. "kint-php/kint": "^5.1"
  2917. },
  2918. "suggest": {
  2919. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  2920. },
  2921. "type": "drupal-module",
  2922. "extra": {
  2923. "drupal": {
  2924. "version": "5.3.1",
  2925. "datestamp": "1723258446",
  2926. "security-coverage": {
  2927. "status": "covered",
  2928. "message": "Covered by Drupal's security advisory policy"
  2929. }
  2930. }
  2931. },
  2932. "notification-url": "https://packages.drupal.org/8/downloads",
  2933. "license": [
  2934. "GPL-2.0-or-later"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "moshe weitzman",
  2939. "homepage": "https://www.drupal.org/user/23"
  2940. }
  2941. ],
  2942. "description": "Various blocks, pages, and functions for developers.",
  2943. "homepage": "https://www.drupal.org/project/devel",
  2944. "support": {
  2945. "source": "https://gitlab.com/drupalspoons/devel",
  2946. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  2947. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  2948. }
  2949. },
  2950. {
  2951. "name": "drupal/domain",
  2952. "version": "2.0.0-beta1",
  2953. "source": {
  2954. "type": "git",
  2955. "url": "https://git.drupalcode.org/project/domain.git",
  2956. "reference": "2.0.0-beta1"
  2957. },
  2958. "dist": {
  2959. "type": "zip",
  2960. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  2961. "reference": "2.0.0-beta1",
  2962. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  2963. },
  2964. "require": {
  2965. "drupal/core": "^9 || ^10"
  2966. },
  2967. "require-dev": {
  2968. "drupal/domain_access": "*",
  2969. "drupal/domain_config": "*"
  2970. },
  2971. "type": "drupal-module",
  2972. "extra": {
  2973. "drupal": {
  2974. "version": "2.0.0-beta1",
  2975. "datestamp": "1686067462",
  2976. "security-coverage": {
  2977. "status": "not-covered",
  2978. "message": "Beta releases are not covered by Drupal security advisories."
  2979. }
  2980. }
  2981. },
  2982. "notification-url": "https://packages.drupal.org/8/downloads",
  2983. "license": [
  2984. "GPL-2.0-or-later"
  2985. ],
  2986. "authors": [
  2987. {
  2988. "name": "agentrickard",
  2989. "homepage": "https://www.drupal.org/user/20975"
  2990. },
  2991. {
  2992. "name": "nonsie",
  2993. "homepage": "https://www.drupal.org/user/29899"
  2994. },
  2995. {
  2996. "name": "webflo",
  2997. "homepage": "https://www.drupal.org/user/254778"
  2998. }
  2999. ],
  3000. "description": "Creates domain records within a Drupal installation.",
  3001. "homepage": "https://www.drupal.org/project/domain",
  3002. "support": {
  3003. "source": "https://git.drupalcode.org/project/domain"
  3004. }
  3005. },
  3006. {
  3007. "name": "drupal/domain_access",
  3008. "version": "2.0.0-beta1",
  3009. "require": {
  3010. "drupal/core": "^9 || ^10",
  3011. "drupal/domain": "*"
  3012. },
  3013. "type": "metapackage",
  3014. "extra": {
  3015. "drupal": {
  3016. "version": "2.0.0-beta1",
  3017. "datestamp": "1686067462",
  3018. "security-coverage": {
  3019. "status": "not-covered",
  3020. "message": "Beta releases are not covered by Drupal security advisories."
  3021. }
  3022. }
  3023. },
  3024. "notification-url": "https://packages.drupal.org/8/downloads",
  3025. "license": [
  3026. "GPL-2.0-or-later"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "agentrickard",
  3031. "homepage": "https://www.drupal.org/user/20975"
  3032. },
  3033. {
  3034. "name": "nonsie",
  3035. "homepage": "https://www.drupal.org/user/29899"
  3036. },
  3037. {
  3038. "name": "webflo",
  3039. "homepage": "https://www.drupal.org/user/254778"
  3040. }
  3041. ],
  3042. "description": "Domain-based access control for content.",
  3043. "homepage": "https://www.drupal.org/project/domain",
  3044. "support": {
  3045. "source": "https://git.drupalcode.org/project/domain"
  3046. }
  3047. },
  3048. {
  3049. "name": "drupal/domain_config",
  3050. "version": "2.0.0-beta1",
  3051. "require": {
  3052. "drupal/core": "^9 || ^10",
  3053. "drupal/domain": "*"
  3054. },
  3055. "type": "metapackage",
  3056. "extra": {
  3057. "drupal": {
  3058. "version": "2.0.0-beta1",
  3059. "datestamp": "1686067462",
  3060. "security-coverage": {
  3061. "status": "not-covered",
  3062. "message": "Beta releases are not covered by Drupal security advisories."
  3063. }
  3064. }
  3065. },
  3066. "notification-url": "https://packages.drupal.org/8/downloads",
  3067. "license": [
  3068. "GPL-2.0-or-later"
  3069. ],
  3070. "authors": [
  3071. {
  3072. "name": "agentrickard",
  3073. "homepage": "https://www.drupal.org/user/20975"
  3074. },
  3075. {
  3076. "name": "nonsie",
  3077. "homepage": "https://www.drupal.org/user/29899"
  3078. },
  3079. {
  3080. "name": "webflo",
  3081. "homepage": "https://www.drupal.org/user/254778"
  3082. }
  3083. ],
  3084. "description": "Allows domain specific configuration.",
  3085. "homepage": "https://www.drupal.org/project/domain",
  3086. "support": {
  3087. "source": "https://git.drupalcode.org/project/domain"
  3088. }
  3089. },
  3090. {
  3091. "name": "drupal/domain_menu_access",
  3092. "version": "2.0.0",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3096. "reference": "2.0.0"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-2.0.0.zip",
  3101. "reference": "2.0.0",
  3102. "shasum": "b362fbadb1b45cd6c3eb6af8275ad94dc4257045"
  3103. },
  3104. "require": {
  3105. "drupal/core": "^9 || ^10 || ^11",
  3106. "drupal/domain": "^1.0 || ^2.0",
  3107. "drupal/domain_access": "*"
  3108. },
  3109. "require-dev": {
  3110. "drupal/menu_block": "^1.0",
  3111. "phpstan/phpstan-deprecation-rules": "^1.1",
  3112. "phpstan/phpstan-strict-rules": "^1.5"
  3113. },
  3114. "suggest": {
  3115. "drupal/menu_block": "Provides configurable blocks of menu links and is needed to allow to install the submodule domain_menu_access_menu_block"
  3116. },
  3117. "type": "drupal-module",
  3118. "extra": {
  3119. "drupal": {
  3120. "version": "2.0.0",
  3121. "datestamp": "1713375017",
  3122. "security-coverage": {
  3123. "status": "covered",
  3124. "message": "Covered by Drupal's security advisory policy"
  3125. }
  3126. }
  3127. },
  3128. "notification-url": "https://packages.drupal.org/8/downloads",
  3129. "license": [
  3130. "GPL-2.0-or-later"
  3131. ],
  3132. "authors": [
  3133. {
  3134. "name": "maciej.zgadzaj",
  3135. "homepage": "https://www.drupal.org/u/maciejzgadzaj",
  3136. "role": "Maintainer"
  3137. },
  3138. {
  3139. "name": "Oleksandr Dekhteruk (pifagor)",
  3140. "homepage": "https://www.drupal.org/u/pifagor",
  3141. "role": "Co-maintainer"
  3142. },
  3143. {
  3144. "name": "Sebastien MALOT (Sebastien M.)",
  3145. "homepage": "https://www.drupal.org/u/sebastien-m",
  3146. "role": "Co-maintainer"
  3147. },
  3148. {
  3149. "name": "Tim Diels (tim-diels)",
  3150. "homepage": "https://www.drupal.org/u/tim-diels",
  3151. "role": "Co-maintainer"
  3152. }
  3153. ],
  3154. "description": "Domain-based access control for menu link.",
  3155. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3156. "support": {
  3157. "source": "https://git.drupalcode.org/project/domain_menu_access",
  3158. "issues": "https://drupal.org/project/issues/domain_menu_access"
  3159. }
  3160. },
  3161. {
  3162. "name": "drupal/domain_site_settings",
  3163. "version": "1.6.0",
  3164. "source": {
  3165. "type": "git",
  3166. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3167. "reference": "8.x-1.6"
  3168. },
  3169. "dist": {
  3170. "type": "zip",
  3171. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3172. "reference": "8.x-1.6",
  3173. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3174. },
  3175. "require": {
  3176. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3177. "drupal/domain": "^1.0 || ^2.0",
  3178. "drupal/domain_config": "*"
  3179. },
  3180. "type": "drupal-module",
  3181. "extra": {
  3182. "drupal": {
  3183. "version": "8.x-1.6",
  3184. "datestamp": "1726238712",
  3185. "security-coverage": {
  3186. "status": "covered",
  3187. "message": "Covered by Drupal's security advisory policy"
  3188. }
  3189. }
  3190. },
  3191. "notification-url": "https://packages.drupal.org/8/downloads",
  3192. "license": [
  3193. "GPL-2.0+"
  3194. ],
  3195. "authors": [
  3196. {
  3197. "name": "aloknarwaria",
  3198. "homepage": "https://www.drupal.org/user/906640"
  3199. },
  3200. {
  3201. "name": "jeroent",
  3202. "homepage": "https://www.drupal.org/user/2228934"
  3203. },
  3204. {
  3205. "name": "malaynayak",
  3206. "homepage": "https://www.drupal.org/user/3529755"
  3207. }
  3208. ],
  3209. "description": "Basic Site Setting for Domains.",
  3210. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3211. "keywords": [
  3212. "Drupal"
  3213. ],
  3214. "support": {
  3215. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3216. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3217. }
  3218. },
  3219. {
  3220. "name": "drupal/email_registration",
  3221. "version": "1.4.0",
  3222. "source": {
  3223. "type": "git",
  3224. "url": "https://git.drupalcode.org/project/email_registration.git",
  3225. "reference": "8.x-1.4"
  3226. },
  3227. "dist": {
  3228. "type": "zip",
  3229. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3230. "reference": "8.x-1.4",
  3231. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3232. },
  3233. "require": {
  3234. "drupal/core": "^9.1 || ^10"
  3235. },
  3236. "conflict": {
  3237. "drupal/commerce": "<2.12"
  3238. },
  3239. "require-dev": {
  3240. "drupal/commerce": "^2.0",
  3241. "drupal/token": "*"
  3242. },
  3243. "type": "drupal-module",
  3244. "extra": {
  3245. "drupal": {
  3246. "version": "8.x-1.4",
  3247. "datestamp": "1700548925",
  3248. "security-coverage": {
  3249. "status": "covered",
  3250. "message": "Covered by Drupal's security advisory policy"
  3251. }
  3252. }
  3253. },
  3254. "notification-url": "https://packages.drupal.org/8/downloads",
  3255. "license": [
  3256. "GPL-2.0-or-later"
  3257. ],
  3258. "authors": [
  3259. {
  3260. "name": "Greg Knaddison (greggles)",
  3261. "homepage": "https://www.drupal.org/u/greggles",
  3262. "role": "Maintainer"
  3263. },
  3264. {
  3265. "name": "Andrey Postnikov (andypost)",
  3266. "homepage": "https://www.drupal.org/u/andypost",
  3267. "role": "Maintainer"
  3268. },
  3269. {
  3270. "name": "Chris Herberte",
  3271. "homepage": "https://www.drupal.org/u/chris-herberte",
  3272. "role": "Maintainer"
  3273. },
  3274. {
  3275. "name": "Moshe Weitzman (moshe weitzman)",
  3276. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3277. "role": "Maintainer"
  3278. },
  3279. {
  3280. "name": "Grevil",
  3281. "homepage": "https://www.drupal.org/user/3668491"
  3282. },
  3283. {
  3284. "name": "moshe weitzman",
  3285. "homepage": "https://www.drupal.org/user/23"
  3286. }
  3287. ],
  3288. "description": "Allows users to register with an email address as their username.",
  3289. "homepage": "https://www.drupal.org/project/email_registration",
  3290. "support": {
  3291. "source": "https://git.drupalcode.org/project/email_registration",
  3292. "issues": "http://drupal.org/project/issues/email_registration"
  3293. }
  3294. },
  3295. {
  3296. "name": "drupal/entity",
  3297. "version": "1.5.0",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://git.drupalcode.org/project/entity.git",
  3301. "reference": "8.x-1.5"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.5.zip",
  3306. "reference": "8.x-1.5",
  3307. "shasum": "86c0b75c173144aaedde3e3258dc0d3ce11d1a22"
  3308. },
  3309. "require": {
  3310. "drupal/core": "^10.1 || ^11"
  3311. },
  3312. "type": "drupal-module",
  3313. "extra": {
  3314. "drupal": {
  3315. "version": "8.x-1.5",
  3316. "datestamp": "1723380062",
  3317. "security-coverage": {
  3318. "status": "covered",
  3319. "message": "Covered by Drupal's security advisory policy"
  3320. }
  3321. }
  3322. },
  3323. "notification-url": "https://packages.drupal.org/8/downloads",
  3324. "license": [
  3325. "GPL-2.0-or-later"
  3326. ],
  3327. "authors": [
  3328. {
  3329. "name": "berdir",
  3330. "homepage": "https://www.drupal.org/user/214652"
  3331. },
  3332. {
  3333. "name": "bojanz",
  3334. "homepage": "https://www.drupal.org/user/86106"
  3335. },
  3336. {
  3337. "name": "dawehner",
  3338. "homepage": "https://www.drupal.org/user/99340"
  3339. },
  3340. {
  3341. "name": "dixon_",
  3342. "homepage": "https://www.drupal.org/user/239911"
  3343. },
  3344. {
  3345. "name": "fago",
  3346. "homepage": "https://www.drupal.org/user/16747"
  3347. },
  3348. {
  3349. "name": "mglaman",
  3350. "homepage": "https://www.drupal.org/user/2416470"
  3351. },
  3352. {
  3353. "name": "TR",
  3354. "homepage": "https://www.drupal.org/user/202830"
  3355. }
  3356. ],
  3357. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3358. "homepage": "https://www.drupal.org/project/entity",
  3359. "support": {
  3360. "source": "https://git.drupalcode.org/project/entity",
  3361. "issues": "https://www.drupal.org/project/issues/entity"
  3362. }
  3363. },
  3364. {
  3365. "name": "drupal/field_group",
  3366. "version": "3.6.0",
  3367. "source": {
  3368. "type": "git",
  3369. "url": "https://git.drupalcode.org/project/field_group.git",
  3370. "reference": "8.x-3.6"
  3371. },
  3372. "dist": {
  3373. "type": "zip",
  3374. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3375. "reference": "8.x-3.6",
  3376. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3377. },
  3378. "require": {
  3379. "drupal/core": "^9.2 || ^10 || ^11"
  3380. },
  3381. "require-dev": {
  3382. "drupal/jquery_ui_accordion": "*"
  3383. },
  3384. "type": "drupal-module",
  3385. "extra": {
  3386. "drupal": {
  3387. "version": "8.x-3.6",
  3388. "datestamp": "1722672510",
  3389. "security-coverage": {
  3390. "status": "covered",
  3391. "message": "Covered by Drupal's security advisory policy"
  3392. }
  3393. }
  3394. },
  3395. "notification-url": "https://packages.drupal.org/8/downloads",
  3396. "license": [
  3397. "GPL-2.0-or-later"
  3398. ],
  3399. "authors": [
  3400. {
  3401. "name": "anybody",
  3402. "homepage": "https://www.drupal.org/user/291091"
  3403. },
  3404. {
  3405. "name": "grevil",
  3406. "homepage": "https://www.drupal.org/user/3668491"
  3407. },
  3408. {
  3409. "name": "hydra",
  3410. "homepage": "https://www.drupal.org/user/647364"
  3411. },
  3412. {
  3413. "name": "joevagyok",
  3414. "homepage": "https://www.drupal.org/user/2876343"
  3415. },
  3416. {
  3417. "name": "jyve",
  3418. "homepage": "https://www.drupal.org/user/591438"
  3419. },
  3420. {
  3421. "name": "nils.destoop",
  3422. "homepage": "https://www.drupal.org/user/361625"
  3423. },
  3424. {
  3425. "name": "Stalski",
  3426. "homepage": "https://www.drupal.org/user/322618"
  3427. },
  3428. {
  3429. "name": "swentel",
  3430. "homepage": "https://www.drupal.org/user/107403"
  3431. }
  3432. ],
  3433. "description": "Provides the field_group module.",
  3434. "homepage": "https://www.drupal.org/project/field_group",
  3435. "support": {
  3436. "source": "https://git.drupalcode.org/project/field_group",
  3437. "issues": "https://www.drupal.org/project/issues/field_group"
  3438. }
  3439. },
  3440. {
  3441. "name": "drupal/filefield_sources",
  3442. "version": "dev-2.0.x",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3446. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3447. },
  3448. "require": {
  3449. "drupal/core": "^9.2.0 | ^10"
  3450. },
  3451. "require-dev": {
  3452. "drupal/imce": "^3.0"
  3453. },
  3454. "type": "drupal-module",
  3455. "extra": {
  3456. "branch-alias": {
  3457. "dev-2.0.x": "2.0.x-dev"
  3458. },
  3459. "drupal": {
  3460. "version": "2.0.x-dev",
  3461. "datestamp": "1714083250",
  3462. "security-coverage": {
  3463. "status": "not-covered",
  3464. "message": "Dev releases are not covered by Drupal security advisories."
  3465. }
  3466. }
  3467. },
  3468. "notification-url": "https://packages.drupal.org/8/downloads",
  3469. "license": [
  3470. "GPL-2.0-or-later"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Nate Lampton (quicksketch)",
  3475. "homepage": "https://www.drupal.org/u/quicksketch",
  3476. "role": "Maintainer"
  3477. },
  3478. {
  3479. "name": "Andrey Khromyshev (profak)",
  3480. "homepage": "https://www.drupal.org/u/profak",
  3481. "role": "Maintainer"
  3482. },
  3483. {
  3484. "name": "David Valdez (gnuget)",
  3485. "homepage": "https://www.drupal.org/u/gnuget",
  3486. "role": "Maintainer"
  3487. },
  3488. {
  3489. "name": "quicksketch",
  3490. "homepage": "https://www.drupal.org/user/35821"
  3491. }
  3492. ],
  3493. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3494. "homepage": "https://www.drupal.org/project/filefield_sources",
  3495. "support": {
  3496. "source": "https://git.drupalcode.org/project/filefield_sources",
  3497. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3498. "irc": "irc://irc.freenode.org/drupal-contribute"
  3499. }
  3500. },
  3501. {
  3502. "name": "drupal/filter_perms",
  3503. "version": "2.0.1",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3507. "reference": "2.0.1"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3512. "reference": "2.0.1",
  3513. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3514. },
  3515. "require": {
  3516. "drupal/core": "^9.0 || ^10.0 || ^11"
  3517. },
  3518. "type": "drupal-module",
  3519. "extra": {
  3520. "drupal": {
  3521. "version": "2.0.1",
  3522. "datestamp": "1722444219",
  3523. "security-coverage": {
  3524. "status": "covered",
  3525. "message": "Covered by Drupal's security advisory policy"
  3526. }
  3527. }
  3528. },
  3529. "notification-url": "https://packages.drupal.org/8/downloads",
  3530. "license": [
  3531. "GPL-2.0+"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "cYu",
  3536. "homepage": "https://www.drupal.org/user/202205"
  3537. },
  3538. {
  3539. "name": "deekayen",
  3540. "homepage": "https://www.drupal.org/user/972"
  3541. },
  3542. {
  3543. "name": "ivavictoria",
  3544. "homepage": "https://www.drupal.org/user/3061533"
  3545. },
  3546. {
  3547. "name": "justcaldwell",
  3548. "homepage": "https://www.drupal.org/user/290069"
  3549. },
  3550. {
  3551. "name": "mgbellaire",
  3552. "homepage": "https://www.drupal.org/user/1831932"
  3553. },
  3554. {
  3555. "name": "willzyx",
  3556. "homepage": "https://www.drupal.org/user/1043862"
  3557. }
  3558. ],
  3559. "description": "Provides role and module filters to simplify the user permissions page.",
  3560. "homepage": "https://www.drupal.org/project/filter_perms",
  3561. "support": {
  3562. "source": "http://cgit.drupalcode.org/filter_perms",
  3563. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3564. }
  3565. },
  3566. {
  3567. "name": "drupal/honeypot",
  3568. "version": "2.2.0",
  3569. "source": {
  3570. "type": "git",
  3571. "url": "https://git.drupalcode.org/project/honeypot.git",
  3572. "reference": "2.2.0"
  3573. },
  3574. "dist": {
  3575. "type": "zip",
  3576. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.0.zip",
  3577. "reference": "2.2.0",
  3578. "shasum": "56397c3779ebac1526cce9ecd39385017ee9a837"
  3579. },
  3580. "require": {
  3581. "drupal/core": "^10.3 || ^11"
  3582. },
  3583. "require-dev": {
  3584. "drupal/rules": "^4.0"
  3585. },
  3586. "type": "drupal-module",
  3587. "extra": {
  3588. "drupal": {
  3589. "version": "2.2.0",
  3590. "datestamp": "1723761042",
  3591. "security-coverage": {
  3592. "status": "covered",
  3593. "message": "Covered by Drupal's security advisory policy"
  3594. }
  3595. }
  3596. },
  3597. "notification-url": "https://packages.drupal.org/8/downloads",
  3598. "license": [
  3599. "GPL-2.0-or-later"
  3600. ],
  3601. "authors": [
  3602. {
  3603. "name": "Jeff Geerling",
  3604. "homepage": "https://www.drupal.org/user/389011",
  3605. "email": "geerlingguy@mac.com"
  3606. },
  3607. {
  3608. "name": "Manuel Garcia",
  3609. "homepage": "https://www.drupal.org/user/213194"
  3610. },
  3611. {
  3612. "name": "tr",
  3613. "homepage": "https://www.drupal.org/user/202830"
  3614. },
  3615. {
  3616. "name": "vijaycs85",
  3617. "homepage": "https://www.drupal.org/user/93488"
  3618. }
  3619. ],
  3620. "description": "Mitigates spam form submissions using the honeypot method.",
  3621. "homepage": "https://www.drupal.org/project/honeypot",
  3622. "keywords": [
  3623. "deterrent",
  3624. "form",
  3625. "honeypot",
  3626. "honeytrap",
  3627. "php",
  3628. "spam"
  3629. ],
  3630. "support": {
  3631. "source": "https://git.drupalcode.org/project/honeypot",
  3632. "issues": "https://www.drupal.org/project/issues/honeypot"
  3633. }
  3634. },
  3635. {
  3636. "name": "drupal/jquery_ui",
  3637. "version": "1.7.0",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3641. "reference": "8.x-1.7"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3646. "reference": "8.x-1.7",
  3647. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3648. },
  3649. "require": {
  3650. "drupal/core": "^9.2 || ^10 || ^11"
  3651. },
  3652. "type": "drupal-module",
  3653. "extra": {
  3654. "drupal": {
  3655. "version": "8.x-1.7",
  3656. "datestamp": "1717002098",
  3657. "security-coverage": {
  3658. "status": "covered",
  3659. "message": "Covered by Drupal's security advisory policy"
  3660. }
  3661. }
  3662. },
  3663. "notification-url": "https://packages.drupal.org/8/downloads",
  3664. "license": [
  3665. "GPL-2.0-or-later"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "bnjmnm",
  3670. "homepage": "https://www.drupal.org/user/2369194"
  3671. },
  3672. {
  3673. "name": "jjeff",
  3674. "homepage": "https://www.drupal.org/user/17190"
  3675. },
  3676. {
  3677. "name": "lauriii",
  3678. "homepage": "https://www.drupal.org/user/1078742"
  3679. },
  3680. {
  3681. "name": "litwol",
  3682. "homepage": "https://www.drupal.org/user/78134"
  3683. },
  3684. {
  3685. "name": "mfb",
  3686. "homepage": "https://www.drupal.org/user/12302"
  3687. },
  3688. {
  3689. "name": "mfer",
  3690. "homepage": "https://www.drupal.org/user/25701"
  3691. },
  3692. {
  3693. "name": "mikelutz",
  3694. "homepage": "https://www.drupal.org/user/2972409"
  3695. },
  3696. {
  3697. "name": "nod_",
  3698. "homepage": "https://www.drupal.org/user/598310"
  3699. },
  3700. {
  3701. "name": "phenaproxima",
  3702. "homepage": "https://www.drupal.org/user/205645"
  3703. },
  3704. {
  3705. "name": "RobLoach",
  3706. "homepage": "https://www.drupal.org/user/61114"
  3707. },
  3708. {
  3709. "name": "sun",
  3710. "homepage": "https://www.drupal.org/user/54136"
  3711. },
  3712. {
  3713. "name": "webchick",
  3714. "homepage": "https://www.drupal.org/user/24967"
  3715. },
  3716. {
  3717. "name": "Wim Leers",
  3718. "homepage": "https://www.drupal.org/user/99777"
  3719. },
  3720. {
  3721. "name": "zrpnr",
  3722. "homepage": "https://www.drupal.org/user/1448368"
  3723. }
  3724. ],
  3725. "description": "Provides jQuery UI library.",
  3726. "homepage": "https://www.drupal.org/project/jquery_ui",
  3727. "support": {
  3728. "source": "https://git.drupalcode.org/project/jquery_ui"
  3729. }
  3730. },
  3731. {
  3732. "name": "drupal/jquery_ui_draggable",
  3733. "version": "2.1.0",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3737. "reference": "2.1.0"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3742. "reference": "2.1.0",
  3743. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3744. },
  3745. "require": {
  3746. "drupal/core": "^9.2 || ^10 || ^11",
  3747. "drupal/jquery_ui": "^1.7"
  3748. },
  3749. "type": "drupal-module",
  3750. "extra": {
  3751. "drupal": {
  3752. "version": "2.1.0",
  3753. "datestamp": "1717015492",
  3754. "security-coverage": {
  3755. "status": "covered",
  3756. "message": "Covered by Drupal's security advisory policy"
  3757. }
  3758. }
  3759. },
  3760. "notification-url": "https://packages.drupal.org/8/downloads",
  3761. "license": [
  3762. "GPL-2.0-or-later"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "bnjmnm",
  3767. "homepage": "https://www.drupal.org/user/2369194"
  3768. },
  3769. {
  3770. "name": "lauriii",
  3771. "homepage": "https://www.drupal.org/user/1078742"
  3772. },
  3773. {
  3774. "name": "zrpnr",
  3775. "homepage": "https://www.drupal.org/user/1448368"
  3776. }
  3777. ],
  3778. "description": "Provides jQuery UI Draggable library.",
  3779. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3780. "support": {
  3781. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3782. }
  3783. },
  3784. {
  3785. "name": "drupal/jquery_ui_droppable",
  3786. "version": "2.1.0",
  3787. "source": {
  3788. "type": "git",
  3789. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3790. "reference": "2.1.0"
  3791. },
  3792. "dist": {
  3793. "type": "zip",
  3794. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3795. "reference": "2.1.0",
  3796. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3797. },
  3798. "require": {
  3799. "drupal/core": "^9.2 || ^10 || ^11",
  3800. "drupal/jquery_ui": "^1.7",
  3801. "drupal/jquery_ui_draggable": "^2.1"
  3802. },
  3803. "type": "drupal-module",
  3804. "extra": {
  3805. "drupal": {
  3806. "version": "2.1.0",
  3807. "datestamp": "1717031391",
  3808. "security-coverage": {
  3809. "status": "covered",
  3810. "message": "Covered by Drupal's security advisory policy"
  3811. }
  3812. }
  3813. },
  3814. "notification-url": "https://packages.drupal.org/8/downloads",
  3815. "license": [
  3816. "GPL-2.0-or-later"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "bnjmnm",
  3821. "homepage": "https://www.drupal.org/user/2369194"
  3822. },
  3823. {
  3824. "name": "lauriii",
  3825. "homepage": "https://www.drupal.org/user/1078742"
  3826. },
  3827. {
  3828. "name": "zrpnr",
  3829. "homepage": "https://www.drupal.org/user/1448368"
  3830. }
  3831. ],
  3832. "description": "Provides jQuery UI Droppable library.",
  3833. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3834. "support": {
  3835. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3836. }
  3837. },
  3838. {
  3839. "name": "drupal/jquery_ui_sortable",
  3840. "version": "2.0.1",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3844. "reference": "2.0.1"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  3849. "reference": "2.0.1",
  3850. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  3851. },
  3852. "require": {
  3853. "drupal/core": "^9.2 || ^10",
  3854. "drupal/jquery_ui": "^1.5"
  3855. },
  3856. "type": "drupal-module",
  3857. "extra": {
  3858. "drupal": {
  3859. "version": "2.0.1",
  3860. "datestamp": "1694604335",
  3861. "security-coverage": {
  3862. "status": "covered",
  3863. "message": "Covered by Drupal's security advisory policy"
  3864. }
  3865. }
  3866. },
  3867. "notification-url": "https://packages.drupal.org/8/downloads",
  3868. "license": [
  3869. "GPL-2.0-or-later"
  3870. ],
  3871. "authors": [
  3872. {
  3873. "name": "bnjmnm",
  3874. "homepage": "https://www.drupal.org/user/2369194"
  3875. },
  3876. {
  3877. "name": "lauriii",
  3878. "homepage": "https://www.drupal.org/user/1078742"
  3879. },
  3880. {
  3881. "name": "zrpnr",
  3882. "homepage": "https://www.drupal.org/user/1448368"
  3883. }
  3884. ],
  3885. "description": "Provides jQuery UI Sortable library.",
  3886. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  3887. "support": {
  3888. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  3889. }
  3890. },
  3891. {
  3892. "name": "drupal/js_cookie",
  3893. "version": "1.0.1",
  3894. "source": {
  3895. "type": "git",
  3896. "url": "https://git.drupalcode.org/project/js_cookie.git",
  3897. "reference": "1.0.1"
  3898. },
  3899. "dist": {
  3900. "type": "zip",
  3901. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  3902. "reference": "1.0.1",
  3903. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  3904. },
  3905. "require": {
  3906. "drupal/core": "^9 || ^10 || ^11"
  3907. },
  3908. "type": "drupal-module",
  3909. "extra": {
  3910. "drupal": {
  3911. "version": "1.0.1",
  3912. "datestamp": "1693951097",
  3913. "security-coverage": {
  3914. "status": "covered",
  3915. "message": "Covered by Drupal's security advisory policy"
  3916. }
  3917. }
  3918. },
  3919. "notification-url": "https://packages.drupal.org/8/downloads",
  3920. "license": [
  3921. "GPL-2.0-or-later"
  3922. ],
  3923. "authors": [
  3924. {
  3925. "name": "Dave Reid",
  3926. "homepage": "https://www.drupal.org/user/53892"
  3927. }
  3928. ],
  3929. "description": "Provides the js-cookie library as a dependency.",
  3930. "homepage": "https://www.drupal.org/project/js_cookie",
  3931. "support": {
  3932. "source": "https://git.drupalcode.org/project/js_cookie"
  3933. }
  3934. },
  3935. {
  3936. "name": "drupal/linkit",
  3937. "version": "6.1.4",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://git.drupalcode.org/project/linkit.git",
  3941. "reference": "6.1.4"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.4.zip",
  3946. "reference": "6.1.4",
  3947. "shasum": "f5544a39d691af5efd1532bd5403862a7153f60b"
  3948. },
  3949. "require": {
  3950. "drupal/core": "^10.1"
  3951. },
  3952. "require-dev": {
  3953. "drupal/ckeditor": "*",
  3954. "drupal/imce": "*"
  3955. },
  3956. "type": "drupal-module",
  3957. "extra": {
  3958. "drupal": {
  3959. "version": "6.1.4",
  3960. "datestamp": "1715203830",
  3961. "security-coverage": {
  3962. "status": "covered",
  3963. "message": "Covered by Drupal's security advisory policy"
  3964. }
  3965. }
  3966. },
  3967. "notification-url": "https://packages.drupal.org/8/downloads",
  3968. "license": [
  3969. "GPL-2.0-or-later"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Emil Stjerneman",
  3974. "homepage": "https://stjerneman.com",
  3975. "email": "emil@stjerneman.com",
  3976. "role": "Maintainer"
  3977. },
  3978. {
  3979. "name": "johnwebdev",
  3980. "homepage": "https://www.drupal.org/user/3331569"
  3981. },
  3982. {
  3983. "name": "mark_fullmer",
  3984. "homepage": "https://www.drupal.org/user/2612816"
  3985. }
  3986. ],
  3987. "description": "Linkit - Enriched linking experience",
  3988. "homepage": "http://drupal.org/project/linkit",
  3989. "support": {
  3990. "source": "http://cgit.drupalcode.org/linkit",
  3991. "issues": "http://drupal.org/project/linkit"
  3992. }
  3993. },
  3994. {
  3995. "name": "drupal/login_emailusername",
  3996. "version": "2.1.0",
  3997. "source": {
  3998. "type": "git",
  3999. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4000. "reference": "2.1.0"
  4001. },
  4002. "dist": {
  4003. "type": "zip",
  4004. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4005. "reference": "2.1.0",
  4006. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4007. },
  4008. "require": {
  4009. "drupal/core": "^8.8 || ^9 || ^10"
  4010. },
  4011. "type": "drupal-module",
  4012. "extra": {
  4013. "drupal": {
  4014. "version": "2.1.0",
  4015. "datestamp": "1677072401",
  4016. "security-coverage": {
  4017. "status": "covered",
  4018. "message": "Covered by Drupal's security advisory policy"
  4019. }
  4020. },
  4021. "branch-alias": {
  4022. "dev-8.x-1.x": "8.1.x-dev"
  4023. }
  4024. },
  4025. "notification-url": "https://packages.drupal.org/8/downloads",
  4026. "license": [
  4027. "GPL-2.0-or-later"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "See contributors",
  4032. "homepage": "https://www.drupal.org/node/2820429/committers",
  4033. "role": "contributor"
  4034. },
  4035. {
  4036. "name": "rjjakes",
  4037. "homepage": "https://www.drupal.org/user/3457245"
  4038. },
  4039. {
  4040. "name": "VladimirAus",
  4041. "homepage": "https://www.drupal.org/user/673120"
  4042. }
  4043. ],
  4044. "description": "Login with the email as username.",
  4045. "homepage": "https://drupal.org/project/login_emailusername",
  4046. "support": {
  4047. "source": "https://git.drupalcode.org/project/login_emailusername",
  4048. "issues": "https://drupal.org/project/issues/login_emailusername"
  4049. }
  4050. },
  4051. {
  4052. "name": "drupal/maillog",
  4053. "version": "1.1.0",
  4054. "source": {
  4055. "type": "git",
  4056. "url": "https://git.drupalcode.org/project/maillog.git",
  4057. "reference": "8.x-1.1"
  4058. },
  4059. "dist": {
  4060. "type": "zip",
  4061. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4062. "reference": "8.x-1.1",
  4063. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4064. },
  4065. "require": {
  4066. "drupal/core": "^9 || ^10"
  4067. },
  4068. "type": "drupal-module",
  4069. "extra": {
  4070. "drupal": {
  4071. "version": "8.x-1.1",
  4072. "datestamp": "1685616898",
  4073. "security-coverage": {
  4074. "status": "covered",
  4075. "message": "Covered by Drupal's security advisory policy"
  4076. }
  4077. }
  4078. },
  4079. "notification-url": "https://packages.drupal.org/8/downloads",
  4080. "license": [
  4081. "GPL-2.0-or-later"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "berdir",
  4086. "homepage": "https://www.drupal.org/user/214652"
  4087. },
  4088. {
  4089. "name": "damienmckenna",
  4090. "homepage": "https://www.drupal.org/user/108450"
  4091. },
  4092. {
  4093. "name": "miro_dietiker",
  4094. "homepage": "https://www.drupal.org/user/227761"
  4095. },
  4096. {
  4097. "name": "pluess",
  4098. "homepage": "https://www.drupal.org/user/84659"
  4099. }
  4100. ],
  4101. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4102. "homepage": "https://www.drupal.org/project/maillog",
  4103. "support": {
  4104. "source": "https://git.drupalcode.org/project/maillog"
  4105. }
  4106. },
  4107. {
  4108. "name": "drupal/menu_admin_per_menu",
  4109. "version": "1.6.0",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4113. "reference": "8.x-1.6"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip",
  4118. "reference": "8.x-1.6",
  4119. "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a"
  4120. },
  4121. "require": {
  4122. "drupal/core": "^10.2 || ^11.0"
  4123. },
  4124. "type": "drupal-module",
  4125. "extra": {
  4126. "drupal": {
  4127. "version": "8.x-1.6",
  4128. "datestamp": "1726150514",
  4129. "security-coverage": {
  4130. "status": "covered",
  4131. "message": "Covered by Drupal's security advisory policy"
  4132. }
  4133. }
  4134. },
  4135. "notification-url": "https://packages.drupal.org/8/downloads",
  4136. "license": [
  4137. "GPL-2.0-or-later"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "anrikun",
  4142. "homepage": "https://www.drupal.org/user/410199"
  4143. },
  4144. {
  4145. "name": "jeroent",
  4146. "homepage": "https://www.drupal.org/user/2228934"
  4147. },
  4148. {
  4149. "name": "jonas139",
  4150. "homepage": "https://www.drupal.org/user/2873401"
  4151. },
  4152. {
  4153. "name": "mkdok",
  4154. "homepage": "https://www.drupal.org/user/3308753"
  4155. }
  4156. ],
  4157. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4158. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4159. "keywords": [
  4160. "Drupal"
  4161. ],
  4162. "support": {
  4163. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4164. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4165. }
  4166. },
  4167. {
  4168. "name": "drupal/metatag",
  4169. "version": "2.0.2",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://git.drupalcode.org/project/metatag.git",
  4173. "reference": "2.0.2"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4178. "reference": "2.0.2",
  4179. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4180. },
  4181. "require": {
  4182. "drupal/core": "^9.4 || ^10 || ^11",
  4183. "drupal/token": "^1.0",
  4184. "php": ">=8.0"
  4185. },
  4186. "require-dev": {
  4187. "drupal/hal": "^1 || ^2 || ^9",
  4188. "drupal/metatag_dc": "*",
  4189. "drupal/metatag_open_graph": "*",
  4190. "drupal/page_manager": "^4.0",
  4191. "drupal/redirect": "^1.0",
  4192. "ergebnis/composer-normalize": "*",
  4193. "mpyw/phpunit-patch-serializable-comparison": "*"
  4194. },
  4195. "type": "drupal-module",
  4196. "extra": {
  4197. "drupal": {
  4198. "version": "2.0.2",
  4199. "datestamp": "1722869772",
  4200. "security-coverage": {
  4201. "status": "covered",
  4202. "message": "Covered by Drupal's security advisory policy"
  4203. }
  4204. },
  4205. "composer-normalize": {
  4206. "indent-size": 2,
  4207. "indent-style": "space"
  4208. }
  4209. },
  4210. "notification-url": "https://packages.drupal.org/8/downloads",
  4211. "license": [
  4212. "GPL-2.0-or-later"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "See contributors",
  4217. "homepage": "https://www.drupal.org/node/640498/committers",
  4218. "role": "Developer"
  4219. },
  4220. {
  4221. "name": "dave reid",
  4222. "homepage": "https://www.drupal.org/user/53892"
  4223. }
  4224. ],
  4225. "description": "Manage meta tags for all entities.",
  4226. "homepage": "https://www.drupal.org/project/metatag",
  4227. "keywords": [
  4228. "Drupal",
  4229. "seo"
  4230. ],
  4231. "support": {
  4232. "source": "https://git.drupalcode.org/project/metatag",
  4233. "issues": "https://www.drupal.org/project/issues/metatag",
  4234. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4235. }
  4236. },
  4237. {
  4238. "name": "drupal/pathauto",
  4239. "version": "1.13.0",
  4240. "source": {
  4241. "type": "git",
  4242. "url": "https://git.drupalcode.org/project/pathauto.git",
  4243. "reference": "8.x-1.13"
  4244. },
  4245. "dist": {
  4246. "type": "zip",
  4247. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4248. "reference": "8.x-1.13",
  4249. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4250. },
  4251. "require": {
  4252. "drupal/core": "^9.4 || ^10 || ^11",
  4253. "drupal/ctools": "*",
  4254. "drupal/token": "*"
  4255. },
  4256. "require-dev": {
  4257. "drupal/forum": "*"
  4258. },
  4259. "suggest": {
  4260. "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."
  4261. },
  4262. "type": "drupal-module",
  4263. "extra": {
  4264. "drupal": {
  4265. "version": "8.x-1.13",
  4266. "datestamp": "1722507672",
  4267. "security-coverage": {
  4268. "status": "covered",
  4269. "message": "Covered by Drupal's security advisory policy"
  4270. }
  4271. },
  4272. "drush": {
  4273. "services": {
  4274. "drush.services.yml": "^9 || ^10"
  4275. }
  4276. }
  4277. },
  4278. "notification-url": "https://packages.drupal.org/8/downloads",
  4279. "license": [
  4280. "GPL-2.0-or-later"
  4281. ],
  4282. "authors": [
  4283. {
  4284. "name": "Berdir",
  4285. "homepage": "https://www.drupal.org/user/214652"
  4286. },
  4287. {
  4288. "name": "Dave Reid",
  4289. "homepage": "https://www.drupal.org/user/53892"
  4290. },
  4291. {
  4292. "name": "Freso",
  4293. "homepage": "https://www.drupal.org/user/27504"
  4294. },
  4295. {
  4296. "name": "greggles",
  4297. "homepage": "https://www.drupal.org/user/36762"
  4298. }
  4299. ],
  4300. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4301. "homepage": "https://www.drupal.org/project/pathauto",
  4302. "support": {
  4303. "source": "https://cgit.drupalcode.org/pathauto",
  4304. "issues": "https://www.drupal.org/project/issues/pathauto",
  4305. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4306. }
  4307. },
  4308. {
  4309. "name": "drupal/profile",
  4310. "version": "1.11.0",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://git.drupalcode.org/project/profile.git",
  4314. "reference": "8.x-1.11"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.11.zip",
  4319. "reference": "8.x-1.11",
  4320. "shasum": "cdb6c7180be1f0a2d8a03c1a933d939f3d878cfb"
  4321. },
  4322. "require": {
  4323. "drupal/core": "^9 || ^10 || ^11",
  4324. "drupal/entity": "^1.0",
  4325. "php": "^7.4 || ^8.0"
  4326. },
  4327. "require-dev": {
  4328. "drupal/search_api": "~1.30",
  4329. "drupal/token": "^1.7"
  4330. },
  4331. "type": "drupal-module",
  4332. "extra": {
  4333. "drupal": {
  4334. "version": "8.x-1.11",
  4335. "datestamp": "1721735588",
  4336. "security-coverage": {
  4337. "status": "covered",
  4338. "message": "Covered by Drupal's security advisory policy"
  4339. }
  4340. }
  4341. },
  4342. "notification-url": "https://packages.drupal.org/8/downloads",
  4343. "license": [
  4344. "GPL-2.0-or-later"
  4345. ],
  4346. "authors": [
  4347. {
  4348. "name": "bojanz",
  4349. "homepage": "https://www.drupal.org/user/86106"
  4350. },
  4351. {
  4352. "name": "daggerhart",
  4353. "homepage": "https://www.drupal.org/user/167806"
  4354. },
  4355. {
  4356. "name": "fago",
  4357. "homepage": "https://www.drupal.org/user/16747"
  4358. },
  4359. {
  4360. "name": "jsacksick",
  4361. "homepage": "https://www.drupal.org/user/972218"
  4362. },
  4363. {
  4364. "name": "mglaman",
  4365. "homepage": "https://www.drupal.org/user/2416470"
  4366. },
  4367. {
  4368. "name": "pcambra",
  4369. "homepage": "https://www.drupal.org/user/122101"
  4370. }
  4371. ],
  4372. "description": "Provides configurable user profiles.",
  4373. "homepage": "https://drupal.org/project/profile",
  4374. "support": {
  4375. "source": "https://git.drupalcode.org/project/profile"
  4376. }
  4377. },
  4378. {
  4379. "name": "drupal/redirect",
  4380. "version": "1.10.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://git.drupalcode.org/project/redirect.git",
  4384. "reference": "8.x-1.10"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4389. "reference": "8.x-1.10",
  4390. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4391. },
  4392. "require": {
  4393. "drupal/core": "^9.2 || ^10 || ^11"
  4394. },
  4395. "type": "drupal-module",
  4396. "extra": {
  4397. "drupal": {
  4398. "version": "8.x-1.10",
  4399. "datestamp": "1723277641",
  4400. "security-coverage": {
  4401. "status": "covered",
  4402. "message": "Covered by Drupal's security advisory policy"
  4403. }
  4404. }
  4405. },
  4406. "notification-url": "https://packages.drupal.org/8/downloads",
  4407. "license": [
  4408. "GPL-2.0-or-later"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "Berdir",
  4413. "homepage": "https://www.drupal.org/user/214652"
  4414. },
  4415. {
  4416. "name": "dave reid",
  4417. "homepage": "https://www.drupal.org/user/53892"
  4418. },
  4419. {
  4420. "name": "Kristen Pol",
  4421. "homepage": "https://www.drupal.org/user/8389"
  4422. },
  4423. {
  4424. "name": "pifagor",
  4425. "homepage": "https://www.drupal.org/user/2375692"
  4426. }
  4427. ],
  4428. "description": "Allows users to redirect from old URLs to new URLs.",
  4429. "homepage": "https://www.drupal.org/project/redirect",
  4430. "support": {
  4431. "source": "https://git.drupalcode.org/project/redirect"
  4432. }
  4433. },
  4434. {
  4435. "name": "drupal/redis",
  4436. "version": "1.8.0",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://git.drupalcode.org/project/redis.git",
  4440. "reference": "8.x-1.8"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4445. "reference": "8.x-1.8",
  4446. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4447. },
  4448. "require": {
  4449. "drupal/core": "^9.3 || ^10 || ^11"
  4450. },
  4451. "suggest": {
  4452. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4453. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4454. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4455. },
  4456. "type": "drupal-module",
  4457. "extra": {
  4458. "drupal": {
  4459. "version": "8.x-1.8",
  4460. "datestamp": "1723934771",
  4461. "security-coverage": {
  4462. "status": "covered",
  4463. "message": "Covered by Drupal's security advisory policy"
  4464. }
  4465. }
  4466. },
  4467. "autoload": {
  4468. "psr-4": {
  4469. "Drupal\\redis\\": "src"
  4470. }
  4471. },
  4472. "notification-url": "https://packages.drupal.org/8/downloads",
  4473. "license": [
  4474. "GPL-2.0-or-later"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "berdir",
  4479. "homepage": "https://www.drupal.org/user/214652"
  4480. },
  4481. {
  4482. "name": "greg.1.anderson",
  4483. "homepage": "https://www.drupal.org/user/438598"
  4484. },
  4485. {
  4486. "name": "kporras07",
  4487. "homepage": "https://www.drupal.org/user/1349780"
  4488. },
  4489. {
  4490. "name": "pounard",
  4491. "homepage": "https://www.drupal.org/user/240164"
  4492. }
  4493. ],
  4494. "description": "Integration of Drupal with the Redis key-value store.",
  4495. "homepage": "https://www.drupal.org/project/redis",
  4496. "support": {
  4497. "source": "https://git.drupalcode.org/project/redis"
  4498. }
  4499. },
  4500. {
  4501. "name": "drupal/restui",
  4502. "version": "1.22.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://git.drupalcode.org/project/restui.git",
  4506. "reference": "8.x-1.22"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4511. "reference": "8.x-1.22",
  4512. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4513. },
  4514. "require": {
  4515. "drupal/core": "^9.5 || ^10 || ^11"
  4516. },
  4517. "type": "drupal-module",
  4518. "extra": {
  4519. "drupal": {
  4520. "version": "8.x-1.22",
  4521. "datestamp": "1721134189",
  4522. "security-coverage": {
  4523. "status": "covered",
  4524. "message": "Covered by Drupal's security advisory policy"
  4525. }
  4526. }
  4527. },
  4528. "notification-url": "https://packages.drupal.org/8/downloads",
  4529. "license": [
  4530. "GPL-2.0-or-later"
  4531. ],
  4532. "authors": [
  4533. {
  4534. "name": "-enzo-",
  4535. "homepage": "https://www.drupal.org/user/294937"
  4536. },
  4537. {
  4538. "name": "clemens.tolboom",
  4539. "homepage": "https://www.drupal.org/user/125814"
  4540. },
  4541. {
  4542. "name": "juampynr",
  4543. "homepage": "https://www.drupal.org/user/682736"
  4544. },
  4545. {
  4546. "name": "kamkejj",
  4547. "homepage": "https://www.drupal.org/user/81043"
  4548. },
  4549. {
  4550. "name": "vipin.mittal18",
  4551. "homepage": "https://www.drupal.org/user/319716"
  4552. }
  4553. ],
  4554. "description": "Provides a user interface to manage REST resources.",
  4555. "homepage": "https://www.drupal.org/project/restui",
  4556. "support": {
  4557. "source": "https://git.drupalcode.org/project/restui"
  4558. }
  4559. },
  4560. {
  4561. "name": "drupal/search_api",
  4562. "version": "1.35.0",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://git.drupalcode.org/project/search_api.git",
  4566. "reference": "8.x-1.35"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.35.zip",
  4571. "reference": "8.x-1.35",
  4572. "shasum": "d119726e870f793c6470d2a4fa9286662c5eb45d"
  4573. },
  4574. "require": {
  4575. "drupal/core": "^10.1 || ^11"
  4576. },
  4577. "conflict": {
  4578. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4579. },
  4580. "require-dev": {
  4581. "drupal/language_fallback_fix": "@dev",
  4582. "drupal/search_api_autocomplete": "@dev",
  4583. "drupal/search_api_db": "*"
  4584. },
  4585. "suggest": {
  4586. "drupal/facets": "Adds the ability to create faceted searches.",
  4587. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4588. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4589. },
  4590. "type": "drupal-module",
  4591. "extra": {
  4592. "drupal": {
  4593. "version": "8.x-1.35",
  4594. "datestamp": "1718551025",
  4595. "security-coverage": {
  4596. "status": "covered",
  4597. "message": "Covered by Drupal's security advisory policy"
  4598. }
  4599. },
  4600. "drush": {
  4601. "services": {
  4602. "drush.services.yml": "^9 || ^10 || ^11"
  4603. }
  4604. }
  4605. },
  4606. "notification-url": "https://packages.drupal.org/8/downloads",
  4607. "license": [
  4608. "GPL-2.0-or-later"
  4609. ],
  4610. "authors": [
  4611. {
  4612. "name": "Thomas Seidl",
  4613. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4614. },
  4615. {
  4616. "name": "Nick Veenhof",
  4617. "homepage": "https://www.drupal.org/u/nick_vh"
  4618. },
  4619. {
  4620. "name": "See other contributors",
  4621. "homepage": "https://www.drupal.org/node/790418/committers"
  4622. }
  4623. ],
  4624. "description": "Provides a generic framework for modules offering search capabilities.",
  4625. "homepage": "https://www.drupal.org/project/search_api",
  4626. "support": {
  4627. "source": "https://git.drupalcode.org/project/search_api",
  4628. "issues": "https://www.drupal.org/project/issues/search_api",
  4629. "irc": "irc://irc.freenode.org/drupal-search-api"
  4630. }
  4631. },
  4632. {
  4633. "name": "drupal/seven",
  4634. "version": "1.0.0",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://git.drupalcode.org/project/seven.git",
  4638. "reference": "1.0.0"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4643. "reference": "1.0.0",
  4644. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4645. },
  4646. "require": {
  4647. "drupal/core": "^9 || ^10"
  4648. },
  4649. "type": "drupal-theme",
  4650. "extra": {
  4651. "drupal": {
  4652. "version": "1.0.0",
  4653. "datestamp": "1758908691",
  4654. "security-coverage": {
  4655. "status": "covered",
  4656. "message": "Covered by Drupal's security advisory policy"
  4657. }
  4658. }
  4659. },
  4660. "notification-url": "https://packages.drupal.org/8/downloads",
  4661. "license": [
  4662. "GPL-2.0-or-later"
  4663. ],
  4664. "authors": [
  4665. {
  4666. "name": "avpaderno",
  4667. "homepage": "https://www.drupal.org/user/55077"
  4668. },
  4669. {
  4670. "name": "bnjmnm",
  4671. "homepage": "https://www.drupal.org/user/2369194"
  4672. },
  4673. {
  4674. "name": "krakenbite",
  4675. "homepage": "https://www.drupal.org/user/3805933"
  4676. },
  4677. {
  4678. "name": "lauriii",
  4679. "homepage": "https://www.drupal.org/user/1078742"
  4680. },
  4681. {
  4682. "name": "mcrittenden",
  4683. "homepage": "https://www.drupal.org/user/420631"
  4684. },
  4685. {
  4686. "name": "mrfelton",
  4687. "homepage": "https://www.drupal.org/user/305669"
  4688. }
  4689. ],
  4690. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4691. "homepage": "https://www.drupal.org/project/seven",
  4692. "support": {
  4693. "source": "https://git.drupalcode.org/project/seven"
  4694. }
  4695. },
  4696. {
  4697. "name": "drupal/simple_sitemap",
  4698. "version": "4.2.1",
  4699. "source": {
  4700. "type": "git",
  4701. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4702. "reference": "4.2.1"
  4703. },
  4704. "dist": {
  4705. "type": "zip",
  4706. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.1.zip",
  4707. "reference": "4.2.1",
  4708. "shasum": "d96b481571ca2fecdb305e87d2557f9338116864"
  4709. },
  4710. "require": {
  4711. "drupal/core": "^10.2 || ^11",
  4712. "ext-xmlwriter": "*"
  4713. },
  4714. "type": "drupal-module",
  4715. "extra": {
  4716. "drupal": {
  4717. "version": "4.2.1",
  4718. "datestamp": "1723802052",
  4719. "security-coverage": {
  4720. "status": "covered",
  4721. "message": "Covered by Drupal's security advisory policy"
  4722. }
  4723. },
  4724. "drush": {
  4725. "services": {
  4726. "drush.services.yml": ">=9"
  4727. }
  4728. }
  4729. },
  4730. "notification-url": "https://packages.drupal.org/8/downloads",
  4731. "license": [
  4732. "GPL-2.0-or-later"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "Pawel Ginalski (gbyte)",
  4737. "homepage": "https://www.drupal.org/u/gbyte",
  4738. "email": "contact@gbyte.dev",
  4739. "role": "Maintainer"
  4740. },
  4741. {
  4742. "name": "walkingdexter",
  4743. "homepage": "https://www.drupal.org/user/3251330"
  4744. }
  4745. ],
  4746. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4747. "homepage": "https://drupal.org/project/simple_sitemap",
  4748. "support": {
  4749. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4750. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4751. }
  4752. },
  4753. {
  4754. "name": "drupal/stable",
  4755. "version": "2.1.0",
  4756. "source": {
  4757. "type": "git",
  4758. "url": "https://git.drupalcode.org/project/stable.git",
  4759. "reference": "2.1.0"
  4760. },
  4761. "dist": {
  4762. "type": "zip",
  4763. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4764. "reference": "2.1.0",
  4765. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4766. },
  4767. "require": {
  4768. "drupal/core": "^10.3 || ^11"
  4769. },
  4770. "type": "drupal-theme",
  4771. "extra": {
  4772. "drupal": {
  4773. "version": "2.1.0",
  4774. "datestamp": "1721202956",
  4775. "security-coverage": {
  4776. "status": "covered",
  4777. "message": "Covered by Drupal's security advisory policy"
  4778. }
  4779. }
  4780. },
  4781. "notification-url": "https://packages.drupal.org/8/downloads",
  4782. "license": [
  4783. "GPL-2.0-or-later"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "bnjmnm",
  4788. "homepage": "https://www.drupal.org/user/2369194"
  4789. },
  4790. {
  4791. "name": "lauriii",
  4792. "homepage": "https://www.drupal.org/user/1078742"
  4793. },
  4794. {
  4795. "name": "rajeshreeputra",
  4796. "homepage": "https://www.drupal.org/user/3418561"
  4797. },
  4798. {
  4799. "name": "star-szr",
  4800. "homepage": "https://www.drupal.org/user/1167326"
  4801. }
  4802. ],
  4803. "description": "A base theme using Drupal core markup and CSS.",
  4804. "homepage": "https://www.drupal.org/project/stable",
  4805. "support": {
  4806. "source": "https://git.drupalcode.org/project/stable"
  4807. }
  4808. },
  4809. {
  4810. "name": "drupal/synonyms",
  4811. "version": "2.1.4",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://git.drupalcode.org/project/synonyms.git",
  4815. "reference": "2.1.4"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4820. "reference": "2.1.4",
  4821. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4822. },
  4823. "require": {
  4824. "drupal/core": "^9 || ^10 || ^11"
  4825. },
  4826. "require-dev": {
  4827. "drupal/synonyms_list_field": "*"
  4828. },
  4829. "type": "drupal-module",
  4830. "extra": {
  4831. "drupal": {
  4832. "version": "2.1.4",
  4833. "datestamp": "1723069842",
  4834. "security-coverage": {
  4835. "status": "covered",
  4836. "message": "Covered by Drupal's security advisory policy"
  4837. }
  4838. }
  4839. },
  4840. "notification-url": "https://packages.drupal.org/8/downloads",
  4841. "license": [
  4842. "GPL-2.0-or-later"
  4843. ],
  4844. "authors": [
  4845. {
  4846. "name": "Bojan Zivanovic",
  4847. "homepage": "https://www.drupal.org/u/bojanz",
  4848. "role": "Author and D5, D6 and D7 versions developer."
  4849. },
  4850. {
  4851. "name": "Alex Trosenko",
  4852. "homepage": "https://www.drupal.org/u/bucefal91",
  4853. "role": "D7 and D8 versions developer."
  4854. },
  4855. {
  4856. "name": "Duro Arezina",
  4857. "homepage": "https://www.drupal.org/u/devad",
  4858. "role": "D8+ versions maintenance"
  4859. },
  4860. {
  4861. "name": "See other contributors",
  4862. "homepage": "https://www.drupal.org/node/148775/committers"
  4863. }
  4864. ],
  4865. "description": "Provides synonyms feature for all entities.",
  4866. "homepage": "https://www.drupal.org/project/synonyms",
  4867. "support": {
  4868. "source": "https://git.drupalcode.org/project/synonyms",
  4869. "issues": "https://www.drupal.org/project/issues/synonyms"
  4870. }
  4871. },
  4872. {
  4873. "name": "drupal/token",
  4874. "version": "1.15.0",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://git.drupalcode.org/project/token.git",
  4878. "reference": "8.x-1.15"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  4883. "reference": "8.x-1.15",
  4884. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  4885. },
  4886. "require": {
  4887. "drupal/core": "^9.2 || ^10 || ^11"
  4888. },
  4889. "require-dev": {
  4890. "drupal/book": "*"
  4891. },
  4892. "type": "drupal-module",
  4893. "extra": {
  4894. "drupal": {
  4895. "version": "8.x-1.15",
  4896. "datestamp": "1722206211",
  4897. "security-coverage": {
  4898. "status": "covered",
  4899. "message": "Covered by Drupal's security advisory policy"
  4900. }
  4901. },
  4902. "drush": {
  4903. "services": {
  4904. "drush.services.yml": ">=9"
  4905. }
  4906. }
  4907. },
  4908. "notification-url": "https://packages.drupal.org/8/downloads",
  4909. "license": [
  4910. "GPL-2.0-or-later"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Berdir",
  4915. "homepage": "https://www.drupal.org/user/214652"
  4916. },
  4917. {
  4918. "name": "Dave Reid",
  4919. "homepage": "https://www.drupal.org/user/53892"
  4920. },
  4921. {
  4922. "name": "eaton",
  4923. "homepage": "https://www.drupal.org/user/16496"
  4924. },
  4925. {
  4926. "name": "fago",
  4927. "homepage": "https://www.drupal.org/user/16747"
  4928. },
  4929. {
  4930. "name": "greggles",
  4931. "homepage": "https://www.drupal.org/user/36762"
  4932. },
  4933. {
  4934. "name": "mikeryan",
  4935. "homepage": "https://www.drupal.org/user/4420"
  4936. }
  4937. ],
  4938. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4939. "homepage": "https://www.drupal.org/project/token",
  4940. "support": {
  4941. "source": "https://git.drupalcode.org/project/token"
  4942. }
  4943. },
  4944. {
  4945. "name": "drupal/translation_views",
  4946. "version": "1.0.0-alpha11",
  4947. "source": {
  4948. "type": "git",
  4949. "url": "https://git.drupalcode.org/project/translation_views.git",
  4950. "reference": "8.x-1.0-alpha11"
  4951. },
  4952. "dist": {
  4953. "type": "zip",
  4954. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  4955. "reference": "8.x-1.0-alpha11",
  4956. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  4957. },
  4958. "require": {
  4959. "drupal/core": "^8.8 || ^9 || ^10"
  4960. },
  4961. "require-dev": {
  4962. "drupal/translators_content": "^1.0@alpha"
  4963. },
  4964. "type": "drupal-module",
  4965. "extra": {
  4966. "drupal": {
  4967. "version": "8.x-1.0-alpha11",
  4968. "datestamp": "1679660668",
  4969. "security-coverage": {
  4970. "status": "not-covered",
  4971. "message": "Project has not opted into security advisory coverage!"
  4972. }
  4973. }
  4974. },
  4975. "notification-url": "https://packages.drupal.org/8/downloads",
  4976. "license": [
  4977. "GPL-2.0-or-later"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "matsbla",
  4982. "homepage": "https://www.drupal.org/user/2325394"
  4983. },
  4984. {
  4985. "name": "vlad.dancer",
  4986. "homepage": "https://www.drupal.org/user/903844"
  4987. }
  4988. ],
  4989. "description": "Create customized lists and queries of translations from your database.",
  4990. "homepage": "https://www.drupal.org/project/translation_views",
  4991. "support": {
  4992. "source": "https://git.drupalcode.org/project/translation_views"
  4993. }
  4994. },
  4995. {
  4996. "name": "drupal/upgrade_status",
  4997. "version": "4.3.5",
  4998. "source": {
  4999. "type": "git",
  5000. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5001. "reference": "4.3.5"
  5002. },
  5003. "dist": {
  5004. "type": "zip",
  5005. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.5.zip",
  5006. "reference": "4.3.5",
  5007. "shasum": "353c17f14c855f5ba0fe48c6a4f6486360c066a7"
  5008. },
  5009. "require": {
  5010. "dekor/php-array-table": "^2.0",
  5011. "drupal/core": "^9 || ^10 || ^11",
  5012. "mglaman/phpstan-drupal": "^1.2.11",
  5013. "nikic/php-parser": "^4.0.0|^5.0.0",
  5014. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5015. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5016. "webflo/drupal-finder": "^1.2"
  5017. },
  5018. "require-dev": {
  5019. "drush/drush": "^11|^12|^13"
  5020. },
  5021. "type": "drupal-module",
  5022. "extra": {
  5023. "drupal": {
  5024. "version": "4.3.5",
  5025. "datestamp": "1723044184",
  5026. "security-coverage": {
  5027. "status": "covered",
  5028. "message": "Covered by Drupal's security advisory policy"
  5029. }
  5030. },
  5031. "drush": {
  5032. "services": {
  5033. "drush.services.yml": "^9 || ^10"
  5034. }
  5035. }
  5036. },
  5037. "notification-url": "https://packages.drupal.org/8/downloads",
  5038. "license": [
  5039. "GPL-2.0-or-later"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Gábor Hojtsy",
  5044. "homepage": "https://www.drupal.org/user/4166"
  5045. }
  5046. ],
  5047. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5048. "homepage": "http://drupal.org/project/upgrade_status",
  5049. "support": {
  5050. "source": "https://git.drupalcode.org/project/upgrade_status"
  5051. }
  5052. },
  5053. {
  5054. "name": "drupal/views_bulk_edit",
  5055. "version": "3.0.0",
  5056. "source": {
  5057. "type": "git",
  5058. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5059. "reference": "3.0.0"
  5060. },
  5061. "dist": {
  5062. "type": "zip",
  5063. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  5064. "reference": "3.0.0",
  5065. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  5066. },
  5067. "require": {
  5068. "drupal/core": "^9.4 || ^10 || ^11",
  5069. "php": ">=8.1"
  5070. },
  5071. "require-dev": {
  5072. "drupal/views_bulk_operations": "~4.2.4"
  5073. },
  5074. "suggest": {
  5075. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5076. },
  5077. "type": "drupal-module",
  5078. "extra": {
  5079. "drupal": {
  5080. "version": "3.0.0",
  5081. "datestamp": "1725358398",
  5082. "security-coverage": {
  5083. "status": "covered",
  5084. "message": "Covered by Drupal's security advisory policy"
  5085. }
  5086. }
  5087. },
  5088. "notification-url": "https://packages.drupal.org/8/downloads",
  5089. "license": [
  5090. "GPL-2.0+"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Marcin Grabias",
  5095. "homepage": "https://www.drupal.org/u/graber"
  5096. },
  5097. {
  5098. "name": "benjy",
  5099. "homepage": "https://www.drupal.org/user/1852732"
  5100. },
  5101. {
  5102. "name": "graber",
  5103. "homepage": "https://www.drupal.org/user/1599440"
  5104. },
  5105. {
  5106. "name": "grevil",
  5107. "homepage": "https://www.drupal.org/user/3668491"
  5108. },
  5109. {
  5110. "name": "joseph.olstad",
  5111. "homepage": "https://www.drupal.org/user/1321830"
  5112. }
  5113. ],
  5114. "description": "Allows bulk edition of entity field values.",
  5115. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5116. "support": {
  5117. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5118. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5119. }
  5120. },
  5121. {
  5122. "name": "drupal/views_bulk_operations",
  5123. "version": "4.3.4",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5127. "reference": "4.3.4"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  5132. "reference": "4.3.4",
  5133. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  5134. },
  5135. "require": {
  5136. "drupal/core": "^10.3 || ^11"
  5137. },
  5138. "conflict": {
  5139. "drush/drush": "<12.5.1"
  5140. },
  5141. "require-dev": {
  5142. "drush/drush": "^12 || ^13"
  5143. },
  5144. "suggest": {
  5145. "drush/drush": "^12 || ^13"
  5146. },
  5147. "type": "drupal-module",
  5148. "extra": {
  5149. "drupal": {
  5150. "version": "4.3.4",
  5151. "datestamp": "1741604495",
  5152. "security-coverage": {
  5153. "status": "covered",
  5154. "message": "Covered by Drupal's security advisory policy"
  5155. }
  5156. }
  5157. },
  5158. "notification-url": "https://packages.drupal.org/8/downloads",
  5159. "license": [
  5160. "GPL-2.0-or-later"
  5161. ],
  5162. "authors": [
  5163. {
  5164. "name": "Marcin Grabias",
  5165. "homepage": "https://www.drupal.org/u/graber"
  5166. },
  5167. {
  5168. "name": "graber",
  5169. "homepage": "https://www.drupal.org/user/1599440"
  5170. },
  5171. {
  5172. "name": "joelpittet",
  5173. "homepage": "https://www.drupal.org/user/160302"
  5174. }
  5175. ],
  5176. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5177. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5178. "support": {
  5179. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5180. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  5181. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  5182. }
  5183. },
  5184. {
  5185. "name": "drupal/workflow",
  5186. "version": "1.8.0",
  5187. "source": {
  5188. "type": "git",
  5189. "url": "https://git.drupalcode.org/project/workflow.git",
  5190. "reference": "8.x-1.8"
  5191. },
  5192. "dist": {
  5193. "type": "zip",
  5194. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5195. "reference": "8.x-1.8",
  5196. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5197. },
  5198. "require": {
  5199. "drupal/core": ">=8.8"
  5200. },
  5201. "type": "drupal-module",
  5202. "extra": {
  5203. "drupal": {
  5204. "version": "8.x-1.8",
  5205. "datestamp": "1717579628",
  5206. "security-coverage": {
  5207. "status": "covered",
  5208. "message": "Covered by Drupal's security advisory policy"
  5209. }
  5210. }
  5211. },
  5212. "notification-url": "https://packages.drupal.org/8/downloads",
  5213. "license": [
  5214. "GPL-2.0-or-later"
  5215. ],
  5216. "authors": [
  5217. {
  5218. "name": "Bastlynn",
  5219. "homepage": "https://www.drupal.org/user/275249"
  5220. },
  5221. {
  5222. "name": "eaton",
  5223. "homepage": "https://www.drupal.org/user/16496"
  5224. },
  5225. {
  5226. "name": "Heine",
  5227. "homepage": "https://www.drupal.org/user/17943"
  5228. },
  5229. {
  5230. "name": "JacobSingh",
  5231. "homepage": "https://www.drupal.org/user/68912"
  5232. },
  5233. {
  5234. "name": "johnv",
  5235. "homepage": "https://www.drupal.org/user/591042"
  5236. },
  5237. {
  5238. "name": "jvandyk",
  5239. "homepage": "https://www.drupal.org/user/2375"
  5240. },
  5241. {
  5242. "name": "mfredrickson",
  5243. "homepage": "https://www.drupal.org/user/31994"
  5244. },
  5245. {
  5246. "name": "NancyDru",
  5247. "homepage": "https://www.drupal.org/user/101412"
  5248. },
  5249. {
  5250. "name": "q0rban",
  5251. "homepage": "https://www.drupal.org/user/31022"
  5252. }
  5253. ],
  5254. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5255. "homepage": "https://www.drupal.org/project/workflow",
  5256. "support": {
  5257. "source": "https://git.drupalcode.org/project/workflow"
  5258. }
  5259. },
  5260. {
  5261. "name": "drush/drush",
  5262. "version": "13.7.2",
  5263. "source": {
  5264. "type": "git",
  5265. "url": "https://github.com/drush-ops/drush.git",
  5266. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d"
  5267. },
  5268. "dist": {
  5269. "type": "zip",
  5270. "url": "https://api.github.com/repos/drush-ops/drush/zipball/670c5f81b3f525b3f08263f038c7f07558f2580d",
  5271. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d",
  5272. "shasum": ""
  5273. },
  5274. "require": {
  5275. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  5276. "composer-runtime-api": "^2.2",
  5277. "composer/semver": "^1.4 || ^3",
  5278. "consolidation/annotated-command": "^4.10.2",
  5279. "consolidation/config": "^2.1.2 || ^3.1.1",
  5280. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5281. "consolidation/output-formatters": "^4.6.1",
  5282. "consolidation/robo": "^4.0.6 || ^5.1.0",
  5283. "consolidation/site-alias": "^4.1.1",
  5284. "consolidation/site-process": "^5.4.2",
  5285. "dflydev/dot-access-data": "^3.0.2",
  5286. "ext-dom": "*",
  5287. "grasmash/yaml-cli": "^3.2",
  5288. "guzzlehttp/guzzle": "^7.0",
  5289. "laravel/prompts": "^0.3.5",
  5290. "league/container": "^4.2",
  5291. "php": ">=8.3",
  5292. "psy/psysh": "~0.12",
  5293. "symfony/event-dispatcher": "^6 || ^7",
  5294. "symfony/filesystem": "^6.1 || ^7",
  5295. "symfony/finder": "^6 || ^7",
  5296. "symfony/var-dumper": "^6.0 || ^7",
  5297. "symfony/yaml": "^6.0 || ^7"
  5298. },
  5299. "conflict": {
  5300. "drupal/core": "< 10.4",
  5301. "drupal/migrate_run": "*",
  5302. "drupal/migrate_tools": "<= 5"
  5303. },
  5304. "require-dev": {
  5305. "composer/installers": "^2",
  5306. "cweagans/composer-patches": "~1.7.3",
  5307. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  5308. "drupal/semver_example": "2.3.0",
  5309. "jetbrains/phpstorm-attributes": "^1.0",
  5310. "mglaman/phpstan-drupal": "^2",
  5311. "phpunit/phpunit": "^9 || ^10 || ^11",
  5312. "rector/rector": "^2",
  5313. "squizlabs/php_codesniffer": "^3.7"
  5314. },
  5315. "bin": [
  5316. "drush",
  5317. "drush.php"
  5318. ],
  5319. "type": "library",
  5320. "extra": {
  5321. "patches-file": "composer.patches.json",
  5322. "installer-paths": {
  5323. "sut/core": [
  5324. "type:drupal-core"
  5325. ],
  5326. "sut/libraries/{$name}": [
  5327. "type:drupal-library"
  5328. ],
  5329. "sut/themes/unish/{$name}": [
  5330. "drupal/empty_theme"
  5331. ],
  5332. "sut/drush/contrib/{$name}": [
  5333. "type:drupal-drush"
  5334. ],
  5335. "sut/modules/unish/{$name}": [
  5336. "drupal/devel"
  5337. ],
  5338. "sut/themes/contrib/{$name}": [
  5339. "type:drupal-theme"
  5340. ],
  5341. "sut/modules/contrib/{$name}": [
  5342. "type:drupal-module"
  5343. ],
  5344. "sut/profiles/contrib/{$name}": [
  5345. "type:drupal-profile"
  5346. ]
  5347. }
  5348. },
  5349. "autoload": {
  5350. "psr-4": {
  5351. "Drush\\": "src/"
  5352. }
  5353. },
  5354. "notification-url": "https://packagist.org/downloads/",
  5355. "license": [
  5356. "GPL-2.0-or-later"
  5357. ],
  5358. "authors": [
  5359. {
  5360. "name": "Moshe Weitzman",
  5361. "email": "weitzman@tejasa.com"
  5362. },
  5363. {
  5364. "name": "Owen Barton",
  5365. "email": "drupal@owenbarton.com"
  5366. },
  5367. {
  5368. "name": "Greg Anderson",
  5369. "email": "greg.1.anderson@greenknowe.org"
  5370. },
  5371. {
  5372. "name": "Jonathan Araña Cruz",
  5373. "email": "jonhattan@faita.net"
  5374. },
  5375. {
  5376. "name": "Jonathan Hedstrom",
  5377. "email": "jhedstrom@gmail.com"
  5378. },
  5379. {
  5380. "name": "Christopher Gervais",
  5381. "email": "chris@ergonlogic.com"
  5382. },
  5383. {
  5384. "name": "Dave Reid",
  5385. "email": "dave@davereid.net"
  5386. },
  5387. {
  5388. "name": "Damian Lee",
  5389. "email": "damiankloip@googlemail.com"
  5390. }
  5391. ],
  5392. "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.",
  5393. "homepage": "http://www.drush.org",
  5394. "support": {
  5395. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5396. "issues": "https://github.com/drush-ops/drush/issues",
  5397. "security": "https://github.com/drush-ops/drush/security/advisories",
  5398. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5399. "source": "https://github.com/drush-ops/drush/tree/13.7.2"
  5400. },
  5401. "funding": [
  5402. {
  5403. "url": "https://github.com/weitzman",
  5404. "type": "github"
  5405. }
  5406. ],
  5407. "time": "2026-03-20T19:18:11+00:00"
  5408. },
  5409. {
  5410. "name": "egulias/email-validator",
  5411. "version": "4.0.4",
  5412. "source": {
  5413. "type": "git",
  5414. "url": "https://github.com/egulias/EmailValidator.git",
  5415. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  5416. },
  5417. "dist": {
  5418. "type": "zip",
  5419. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5420. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5421. "shasum": ""
  5422. },
  5423. "require": {
  5424. "doctrine/lexer": "^2.0 || ^3.0",
  5425. "php": ">=8.1",
  5426. "symfony/polyfill-intl-idn": "^1.26"
  5427. },
  5428. "require-dev": {
  5429. "phpunit/phpunit": "^10.2",
  5430. "vimeo/psalm": "^5.12"
  5431. },
  5432. "suggest": {
  5433. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5434. },
  5435. "type": "library",
  5436. "extra": {
  5437. "branch-alias": {
  5438. "dev-master": "4.0.x-dev"
  5439. }
  5440. },
  5441. "autoload": {
  5442. "psr-4": {
  5443. "Egulias\\EmailValidator\\": "src"
  5444. }
  5445. },
  5446. "notification-url": "https://packagist.org/downloads/",
  5447. "license": [
  5448. "MIT"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Eduardo Gulias Davis"
  5453. }
  5454. ],
  5455. "description": "A library for validating emails against several RFCs",
  5456. "homepage": "https://github.com/egulias/EmailValidator",
  5457. "keywords": [
  5458. "email",
  5459. "emailvalidation",
  5460. "emailvalidator",
  5461. "validation",
  5462. "validator"
  5463. ],
  5464. "support": {
  5465. "issues": "https://github.com/egulias/EmailValidator/issues",
  5466. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  5467. },
  5468. "funding": [
  5469. {
  5470. "url": "https://github.com/egulias",
  5471. "type": "github"
  5472. }
  5473. ],
  5474. "time": "2025-03-06T22:45:56+00:00"
  5475. },
  5476. {
  5477. "name": "grasmash/expander",
  5478. "version": "3.0.1",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/grasmash/expander.git",
  5482. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5487. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5488. "shasum": ""
  5489. },
  5490. "require": {
  5491. "dflydev/dot-access-data": "^3.0.0",
  5492. "php": ">=8.0",
  5493. "psr/log": "^2 | ^3"
  5494. },
  5495. "require-dev": {
  5496. "greg-1-anderson/composer-test-scenarios": "^1",
  5497. "php-coveralls/php-coveralls": "^2.5",
  5498. "phpunit/phpunit": "^9",
  5499. "squizlabs/php_codesniffer": "^3.3"
  5500. },
  5501. "type": "library",
  5502. "extra": {
  5503. "branch-alias": {
  5504. "dev-master": "1.x-dev"
  5505. }
  5506. },
  5507. "autoload": {
  5508. "psr-4": {
  5509. "Grasmash\\Expander\\": "src/"
  5510. }
  5511. },
  5512. "notification-url": "https://packagist.org/downloads/",
  5513. "license": [
  5514. "MIT"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "Matthew Grasmick"
  5519. }
  5520. ],
  5521. "description": "Expands internal property references in PHP arrays file.",
  5522. "support": {
  5523. "issues": "https://github.com/grasmash/expander/issues",
  5524. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  5525. },
  5526. "time": "2024-11-25T23:28:05+00:00"
  5527. },
  5528. {
  5529. "name": "grasmash/yaml-cli",
  5530. "version": "3.2.1",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/grasmash/yaml-cli.git",
  5534. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5539. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "dflydev/dot-access-data": "^3",
  5544. "php": ">=8.0",
  5545. "symfony/console": "^6 || ^7",
  5546. "symfony/filesystem": "^6 || ^7",
  5547. "symfony/yaml": "^6 || ^7"
  5548. },
  5549. "require-dev": {
  5550. "php-coveralls/php-coveralls": "^2",
  5551. "phpunit/phpunit": "^9",
  5552. "squizlabs/php_codesniffer": "^3.0"
  5553. },
  5554. "bin": [
  5555. "bin/yaml-cli"
  5556. ],
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "3.x-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "psr-4": {
  5565. "Grasmash\\YamlCli\\": "src/"
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Matthew Grasmick"
  5575. }
  5576. ],
  5577. "description": "A command line tool for reading and manipulating yaml files.",
  5578. "support": {
  5579. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5580. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5581. },
  5582. "time": "2024-04-23T02:10:57+00:00"
  5583. },
  5584. {
  5585. "name": "guzzlehttp/guzzle",
  5586. "version": "7.10.0",
  5587. "source": {
  5588. "type": "git",
  5589. "url": "https://github.com/guzzle/guzzle.git",
  5590. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  5591. },
  5592. "dist": {
  5593. "type": "zip",
  5594. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5595. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5596. "shasum": ""
  5597. },
  5598. "require": {
  5599. "ext-json": "*",
  5600. "guzzlehttp/promises": "^2.3",
  5601. "guzzlehttp/psr7": "^2.8",
  5602. "php": "^7.2.5 || ^8.0",
  5603. "psr/http-client": "^1.0",
  5604. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5605. },
  5606. "provide": {
  5607. "psr/http-client-implementation": "1.0"
  5608. },
  5609. "require-dev": {
  5610. "bamarni/composer-bin-plugin": "^1.8.2",
  5611. "ext-curl": "*",
  5612. "guzzle/client-integration-tests": "3.0.2",
  5613. "php-http/message-factory": "^1.1",
  5614. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5615. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5616. },
  5617. "suggest": {
  5618. "ext-curl": "Required for CURL handler support",
  5619. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5620. "psr/log": "Required for using the Log middleware"
  5621. },
  5622. "type": "library",
  5623. "extra": {
  5624. "bamarni-bin": {
  5625. "bin-links": true,
  5626. "forward-command": false
  5627. }
  5628. },
  5629. "autoload": {
  5630. "files": [
  5631. "src/functions_include.php"
  5632. ],
  5633. "psr-4": {
  5634. "GuzzleHttp\\": "src/"
  5635. }
  5636. },
  5637. "notification-url": "https://packagist.org/downloads/",
  5638. "license": [
  5639. "MIT"
  5640. ],
  5641. "authors": [
  5642. {
  5643. "name": "Graham Campbell",
  5644. "email": "hello@gjcampbell.co.uk",
  5645. "homepage": "https://github.com/GrahamCampbell"
  5646. },
  5647. {
  5648. "name": "Michael Dowling",
  5649. "email": "mtdowling@gmail.com",
  5650. "homepage": "https://github.com/mtdowling"
  5651. },
  5652. {
  5653. "name": "Jeremy Lindblom",
  5654. "email": "jeremeamia@gmail.com",
  5655. "homepage": "https://github.com/jeremeamia"
  5656. },
  5657. {
  5658. "name": "George Mponos",
  5659. "email": "gmponos@gmail.com",
  5660. "homepage": "https://github.com/gmponos"
  5661. },
  5662. {
  5663. "name": "Tobias Nyholm",
  5664. "email": "tobias.nyholm@gmail.com",
  5665. "homepage": "https://github.com/Nyholm"
  5666. },
  5667. {
  5668. "name": "Márk Sági-Kazár",
  5669. "email": "mark.sagikazar@gmail.com",
  5670. "homepage": "https://github.com/sagikazarmark"
  5671. },
  5672. {
  5673. "name": "Tobias Schultze",
  5674. "email": "webmaster@tubo-world.de",
  5675. "homepage": "https://github.com/Tobion"
  5676. }
  5677. ],
  5678. "description": "Guzzle is a PHP HTTP client library",
  5679. "keywords": [
  5680. "client",
  5681. "curl",
  5682. "framework",
  5683. "http",
  5684. "http client",
  5685. "psr-18",
  5686. "psr-7",
  5687. "rest",
  5688. "web service"
  5689. ],
  5690. "support": {
  5691. "issues": "https://github.com/guzzle/guzzle/issues",
  5692. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  5693. },
  5694. "funding": [
  5695. {
  5696. "url": "https://github.com/GrahamCampbell",
  5697. "type": "github"
  5698. },
  5699. {
  5700. "url": "https://github.com/Nyholm",
  5701. "type": "github"
  5702. },
  5703. {
  5704. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5705. "type": "tidelift"
  5706. }
  5707. ],
  5708. "time": "2025-08-23T22:36:01+00:00"
  5709. },
  5710. {
  5711. "name": "guzzlehttp/promises",
  5712. "version": "2.3.0",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/guzzle/promises.git",
  5716. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  5721. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  5722. "shasum": ""
  5723. },
  5724. "require": {
  5725. "php": "^7.2.5 || ^8.0"
  5726. },
  5727. "require-dev": {
  5728. "bamarni/composer-bin-plugin": "^1.8.2",
  5729. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "bamarni-bin": {
  5734. "bin-links": true,
  5735. "forward-command": false
  5736. }
  5737. },
  5738. "autoload": {
  5739. "psr-4": {
  5740. "GuzzleHttp\\Promise\\": "src/"
  5741. }
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Graham Campbell",
  5750. "email": "hello@gjcampbell.co.uk",
  5751. "homepage": "https://github.com/GrahamCampbell"
  5752. },
  5753. {
  5754. "name": "Michael Dowling",
  5755. "email": "mtdowling@gmail.com",
  5756. "homepage": "https://github.com/mtdowling"
  5757. },
  5758. {
  5759. "name": "Tobias Nyholm",
  5760. "email": "tobias.nyholm@gmail.com",
  5761. "homepage": "https://github.com/Nyholm"
  5762. },
  5763. {
  5764. "name": "Tobias Schultze",
  5765. "email": "webmaster@tubo-world.de",
  5766. "homepage": "https://github.com/Tobion"
  5767. }
  5768. ],
  5769. "description": "Guzzle promises library",
  5770. "keywords": [
  5771. "promise"
  5772. ],
  5773. "support": {
  5774. "issues": "https://github.com/guzzle/promises/issues",
  5775. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  5776. },
  5777. "funding": [
  5778. {
  5779. "url": "https://github.com/GrahamCampbell",
  5780. "type": "github"
  5781. },
  5782. {
  5783. "url": "https://github.com/Nyholm",
  5784. "type": "github"
  5785. },
  5786. {
  5787. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5788. "type": "tidelift"
  5789. }
  5790. ],
  5791. "time": "2025-08-22T14:34:08+00:00"
  5792. },
  5793. {
  5794. "name": "guzzlehttp/psr7",
  5795. "version": "2.8.1",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/guzzle/psr7.git",
  5799. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9",
  5804. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9",
  5805. "shasum": ""
  5806. },
  5807. "require": {
  5808. "php": "^7.2.5 || ^8.0",
  5809. "psr/http-factory": "^1.0",
  5810. "psr/http-message": "^1.1 || ^2.0",
  5811. "ralouphie/getallheaders": "^3.0"
  5812. },
  5813. "provide": {
  5814. "psr/http-factory-implementation": "1.0",
  5815. "psr/http-message-implementation": "1.0"
  5816. },
  5817. "require-dev": {
  5818. "bamarni/composer-bin-plugin": "^1.8.2",
  5819. "http-interop/http-factory-tests": "0.9.0",
  5820. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5821. },
  5822. "suggest": {
  5823. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5824. },
  5825. "type": "library",
  5826. "extra": {
  5827. "bamarni-bin": {
  5828. "bin-links": true,
  5829. "forward-command": false
  5830. }
  5831. },
  5832. "autoload": {
  5833. "psr-4": {
  5834. "GuzzleHttp\\Psr7\\": "src/"
  5835. }
  5836. },
  5837. "notification-url": "https://packagist.org/downloads/",
  5838. "license": [
  5839. "MIT"
  5840. ],
  5841. "authors": [
  5842. {
  5843. "name": "Graham Campbell",
  5844. "email": "hello@gjcampbell.co.uk",
  5845. "homepage": "https://github.com/GrahamCampbell"
  5846. },
  5847. {
  5848. "name": "Michael Dowling",
  5849. "email": "mtdowling@gmail.com",
  5850. "homepage": "https://github.com/mtdowling"
  5851. },
  5852. {
  5853. "name": "George Mponos",
  5854. "email": "gmponos@gmail.com",
  5855. "homepage": "https://github.com/gmponos"
  5856. },
  5857. {
  5858. "name": "Tobias Nyholm",
  5859. "email": "tobias.nyholm@gmail.com",
  5860. "homepage": "https://github.com/Nyholm"
  5861. },
  5862. {
  5863. "name": "Márk Sági-Kazár",
  5864. "email": "mark.sagikazar@gmail.com",
  5865. "homepage": "https://github.com/sagikazarmark"
  5866. },
  5867. {
  5868. "name": "Tobias Schultze",
  5869. "email": "webmaster@tubo-world.de",
  5870. "homepage": "https://github.com/Tobion"
  5871. },
  5872. {
  5873. "name": "Márk Sági-Kazár",
  5874. "email": "mark.sagikazar@gmail.com",
  5875. "homepage": "https://sagikazarmark.hu"
  5876. }
  5877. ],
  5878. "description": "PSR-7 message implementation that also provides common utility methods",
  5879. "keywords": [
  5880. "http",
  5881. "message",
  5882. "psr-7",
  5883. "request",
  5884. "response",
  5885. "stream",
  5886. "uri",
  5887. "url"
  5888. ],
  5889. "support": {
  5890. "issues": "https://github.com/guzzle/psr7/issues",
  5891. "source": "https://github.com/guzzle/psr7/tree/2.8.1"
  5892. },
  5893. "funding": [
  5894. {
  5895. "url": "https://github.com/GrahamCampbell",
  5896. "type": "github"
  5897. },
  5898. {
  5899. "url": "https://github.com/Nyholm",
  5900. "type": "github"
  5901. },
  5902. {
  5903. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5904. "type": "tidelift"
  5905. }
  5906. ],
  5907. "time": "2026-03-10T09:55:26+00:00"
  5908. },
  5909. {
  5910. "name": "kint-php/kint",
  5911. "version": "5.1.1",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/kint-php/kint.git",
  5915. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5920. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "php": ">=7.1"
  5925. },
  5926. "require-dev": {
  5927. "friendsofphp/php-cs-fixer": "^3",
  5928. "phpspec/prophecy-phpunit": "^2",
  5929. "phpunit/phpunit": "^9",
  5930. "seld/phar-utils": "^1",
  5931. "symfony/finder": ">=4.0",
  5932. "vimeo/psalm": "^5"
  5933. },
  5934. "suggest": {
  5935. "kint-php/kint-helpers": "Provides extra helper functions",
  5936. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5937. },
  5938. "type": "library",
  5939. "autoload": {
  5940. "files": [
  5941. "init.php"
  5942. ],
  5943. "psr-4": {
  5944. "Kint\\": "src/"
  5945. }
  5946. },
  5947. "notification-url": "https://packagist.org/downloads/",
  5948. "license": [
  5949. "MIT"
  5950. ],
  5951. "authors": [
  5952. {
  5953. "name": "Jonathan Vollebregt",
  5954. "homepage": "https://github.com/jnvsor"
  5955. },
  5956. {
  5957. "name": "Contributors",
  5958. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  5959. }
  5960. ],
  5961. "description": "Kint - debugging tool for PHP developers",
  5962. "homepage": "https://kint-php.github.io/kint/",
  5963. "keywords": [
  5964. "debug",
  5965. "kint",
  5966. "php"
  5967. ],
  5968. "support": {
  5969. "issues": "https://github.com/kint-php/kint/issues",
  5970. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  5971. },
  5972. "time": "2024-04-26T14:20:09+00:00"
  5973. },
  5974. {
  5975. "name": "laravel/prompts",
  5976. "version": "v0.3.16",
  5977. "source": {
  5978. "type": "git",
  5979. "url": "https://github.com/laravel/prompts.git",
  5980. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2"
  5981. },
  5982. "dist": {
  5983. "type": "zip",
  5984. "url": "https://api.github.com/repos/laravel/prompts/zipball/11e7d5f93803a2190b00e145142cb00a33d17ad2",
  5985. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2",
  5986. "shasum": ""
  5987. },
  5988. "require": {
  5989. "composer-runtime-api": "^2.2",
  5990. "ext-mbstring": "*",
  5991. "php": "^8.1",
  5992. "symfony/console": "^6.2|^7.0|^8.0"
  5993. },
  5994. "conflict": {
  5995. "illuminate/console": ">=10.17.0 <10.25.0",
  5996. "laravel/framework": ">=10.17.0 <10.25.0"
  5997. },
  5998. "require-dev": {
  5999. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  6000. "mockery/mockery": "^1.5",
  6001. "pestphp/pest": "^2.3|^3.4|^4.0",
  6002. "phpstan/phpstan": "^1.12.28",
  6003. "phpstan/phpstan-mockery": "^1.1.3"
  6004. },
  6005. "suggest": {
  6006. "ext-pcntl": "Required for the spinner to be animated."
  6007. },
  6008. "type": "library",
  6009. "extra": {
  6010. "branch-alias": {
  6011. "dev-main": "0.3.x-dev"
  6012. }
  6013. },
  6014. "autoload": {
  6015. "files": [
  6016. "src/helpers.php"
  6017. ],
  6018. "psr-4": {
  6019. "Laravel\\Prompts\\": "src/"
  6020. }
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  6027. "support": {
  6028. "issues": "https://github.com/laravel/prompts/issues",
  6029. "source": "https://github.com/laravel/prompts/tree/v0.3.16"
  6030. },
  6031. "time": "2026-03-23T14:35:33+00:00"
  6032. },
  6033. {
  6034. "name": "league/container",
  6035. "version": "4.2.5",
  6036. "source": {
  6037. "type": "git",
  6038. "url": "https://github.com/thephpleague/container.git",
  6039. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  6040. },
  6041. "dist": {
  6042. "type": "zip",
  6043. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6044. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6045. "shasum": ""
  6046. },
  6047. "require": {
  6048. "php": "^7.2 || ^8.0",
  6049. "psr/container": "^1.1 || ^2.0"
  6050. },
  6051. "provide": {
  6052. "psr/container-implementation": "^1.0"
  6053. },
  6054. "replace": {
  6055. "orno/di": "~2.0"
  6056. },
  6057. "require-dev": {
  6058. "nette/php-generator": "^3.4",
  6059. "nikic/php-parser": "^4.10",
  6060. "phpstan/phpstan": "^0.12.47",
  6061. "phpunit/phpunit": "^8.5.17",
  6062. "roave/security-advisories": "dev-latest",
  6063. "scrutinizer/ocular": "^1.8",
  6064. "squizlabs/php_codesniffer": "^3.6"
  6065. },
  6066. "type": "library",
  6067. "extra": {
  6068. "branch-alias": {
  6069. "dev-1.x": "1.x-dev",
  6070. "dev-2.x": "2.x-dev",
  6071. "dev-3.x": "3.x-dev",
  6072. "dev-4.x": "4.x-dev",
  6073. "dev-master": "4.x-dev"
  6074. }
  6075. },
  6076. "autoload": {
  6077. "psr-4": {
  6078. "League\\Container\\": "src"
  6079. }
  6080. },
  6081. "notification-url": "https://packagist.org/downloads/",
  6082. "license": [
  6083. "MIT"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Phil Bennett",
  6088. "email": "mail@philbennett.co.uk",
  6089. "role": "Developer"
  6090. }
  6091. ],
  6092. "description": "A fast and intuitive dependency injection container.",
  6093. "homepage": "https://github.com/thephpleague/container",
  6094. "keywords": [
  6095. "container",
  6096. "dependency",
  6097. "di",
  6098. "injection",
  6099. "league",
  6100. "provider",
  6101. "service"
  6102. ],
  6103. "support": {
  6104. "issues": "https://github.com/thephpleague/container/issues",
  6105. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  6106. },
  6107. "funding": [
  6108. {
  6109. "url": "https://github.com/philipobenito",
  6110. "type": "github"
  6111. }
  6112. ],
  6113. "time": "2025-05-20T12:55:37+00:00"
  6114. },
  6115. {
  6116. "name": "masterminds/html5",
  6117. "version": "2.10.0",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/Masterminds/html5-php.git",
  6121. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  6126. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "ext-dom": "*",
  6131. "php": ">=5.3.0"
  6132. },
  6133. "require-dev": {
  6134. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6135. },
  6136. "type": "library",
  6137. "extra": {
  6138. "branch-alias": {
  6139. "dev-master": "2.7-dev"
  6140. }
  6141. },
  6142. "autoload": {
  6143. "psr-4": {
  6144. "Masterminds\\": "src"
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "MIT"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Matt Butcher",
  6154. "email": "technosophos@gmail.com"
  6155. },
  6156. {
  6157. "name": "Matt Farina",
  6158. "email": "matt@mattfarina.com"
  6159. },
  6160. {
  6161. "name": "Asmir Mustafic",
  6162. "email": "goetas@gmail.com"
  6163. }
  6164. ],
  6165. "description": "An HTML5 parser and serializer.",
  6166. "homepage": "http://masterminds.github.io/html5-php",
  6167. "keywords": [
  6168. "HTML5",
  6169. "dom",
  6170. "html",
  6171. "parser",
  6172. "querypath",
  6173. "serializer",
  6174. "xml"
  6175. ],
  6176. "support": {
  6177. "issues": "https://github.com/Masterminds/html5-php/issues",
  6178. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  6179. },
  6180. "time": "2025-07-25T09:04:22+00:00"
  6181. },
  6182. {
  6183. "name": "mck89/peast",
  6184. "version": "v1.17.5",
  6185. "source": {
  6186. "type": "git",
  6187. "url": "https://github.com/mck89/peast.git",
  6188. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f"
  6189. },
  6190. "dist": {
  6191. "type": "zip",
  6192. "url": "https://api.github.com/repos/mck89/peast/zipball/e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6193. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6194. "shasum": ""
  6195. },
  6196. "require": {
  6197. "ext-mbstring": "*",
  6198. "php": ">=5.4.0"
  6199. },
  6200. "require-dev": {
  6201. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6202. },
  6203. "type": "library",
  6204. "extra": {
  6205. "branch-alias": {
  6206. "dev-master": "1.17.5-dev"
  6207. }
  6208. },
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Peast\\": "lib/Peast/"
  6212. }
  6213. },
  6214. "notification-url": "https://packagist.org/downloads/",
  6215. "license": [
  6216. "BSD-3-Clause"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Marco Marchiò",
  6221. "email": "marco.mm89@gmail.com"
  6222. }
  6223. ],
  6224. "description": "Peast is PHP library that generates AST for JavaScript code",
  6225. "support": {
  6226. "issues": "https://github.com/mck89/peast/issues",
  6227. "source": "https://github.com/mck89/peast/tree/v1.17.5"
  6228. },
  6229. "time": "2026-03-15T10:47:07+00:00"
  6230. },
  6231. {
  6232. "name": "mglaman/phpstan-drupal",
  6233. "version": "1.2.12",
  6234. "source": {
  6235. "type": "git",
  6236. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6237. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6238. },
  6239. "dist": {
  6240. "type": "zip",
  6241. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6242. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6243. "shasum": ""
  6244. },
  6245. "require": {
  6246. "php": "^8.1",
  6247. "phpstan/phpstan": "^1.10.56",
  6248. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6249. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6250. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6251. "webflo/drupal-finder": "^1.2"
  6252. },
  6253. "require-dev": {
  6254. "behat/mink": "^1.8",
  6255. "composer/installers": "^1.9",
  6256. "drupal/core-recommended": "^10",
  6257. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6258. "phpstan/extension-installer": "^1.1",
  6259. "phpstan/phpstan-strict-rules": "^1.0",
  6260. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6261. "slevomat/coding-standard": "^7.1",
  6262. "squizlabs/php_codesniffer": "^3.3",
  6263. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6264. },
  6265. "suggest": {
  6266. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6267. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6268. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6269. },
  6270. "type": "phpstan-extension",
  6271. "extra": {
  6272. "branch-alias": {
  6273. "dev-main": "1.0-dev"
  6274. },
  6275. "installer-paths": {
  6276. "tests/fixtures/drupal/core": [
  6277. "type:drupal-core"
  6278. ],
  6279. "tests/fixtures/drupal/libraries/{$name}": [
  6280. "type:drupal-library"
  6281. ],
  6282. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6283. "type:drupal-module"
  6284. ],
  6285. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6286. "type:drupal-profile"
  6287. ],
  6288. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6289. "type:drupal-theme"
  6290. ]
  6291. },
  6292. "phpstan": {
  6293. "includes": [
  6294. "extension.neon",
  6295. "rules.neon"
  6296. ]
  6297. }
  6298. },
  6299. "autoload": {
  6300. "psr-4": {
  6301. "mglaman\\PHPStanDrupal\\": "src/"
  6302. }
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Matt Glaman",
  6311. "email": "nmd.matt@gmail.com"
  6312. }
  6313. ],
  6314. "description": "Drupal extension and rules for PHPStan",
  6315. "support": {
  6316. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6317. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6318. },
  6319. "funding": [
  6320. {
  6321. "url": "https://github.com/mglaman",
  6322. "type": "github"
  6323. },
  6324. {
  6325. "url": "https://opencollective.com/phpstan-drupal",
  6326. "type": "open_collective"
  6327. },
  6328. {
  6329. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6330. "type": "tidelift"
  6331. }
  6332. ],
  6333. "time": "2024-08-07T21:15:21+00:00"
  6334. },
  6335. {
  6336. "name": "nikic/php-parser",
  6337. "version": "v5.7.0",
  6338. "source": {
  6339. "type": "git",
  6340. "url": "https://github.com/nikic/PHP-Parser.git",
  6341. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  6342. },
  6343. "dist": {
  6344. "type": "zip",
  6345. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6346. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6347. "shasum": ""
  6348. },
  6349. "require": {
  6350. "ext-ctype": "*",
  6351. "ext-json": "*",
  6352. "ext-tokenizer": "*",
  6353. "php": ">=7.4"
  6354. },
  6355. "require-dev": {
  6356. "ircmaxell/php-yacc": "^0.0.7",
  6357. "phpunit/phpunit": "^9.0"
  6358. },
  6359. "bin": [
  6360. "bin/php-parse"
  6361. ],
  6362. "type": "library",
  6363. "extra": {
  6364. "branch-alias": {
  6365. "dev-master": "5.x-dev"
  6366. }
  6367. },
  6368. "autoload": {
  6369. "psr-4": {
  6370. "PhpParser\\": "lib/PhpParser"
  6371. }
  6372. },
  6373. "notification-url": "https://packagist.org/downloads/",
  6374. "license": [
  6375. "BSD-3-Clause"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "Nikita Popov"
  6380. }
  6381. ],
  6382. "description": "A PHP parser written in PHP",
  6383. "keywords": [
  6384. "parser",
  6385. "php"
  6386. ],
  6387. "support": {
  6388. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6389. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  6390. },
  6391. "time": "2025-12-06T11:56:16+00:00"
  6392. },
  6393. {
  6394. "name": "pear/archive_tar",
  6395. "version": "1.6.0",
  6396. "source": {
  6397. "type": "git",
  6398. "url": "https://github.com/pear/Archive_Tar.git",
  6399. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  6400. },
  6401. "dist": {
  6402. "type": "zip",
  6403. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6404. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6405. "shasum": ""
  6406. },
  6407. "require": {
  6408. "pear/pear-core-minimal": "^1.10.0alpha2",
  6409. "php": ">=5.4.0"
  6410. },
  6411. "require-dev": {
  6412. "phpunit/phpunit": "*"
  6413. },
  6414. "suggest": {
  6415. "ext-bz2": "Bz2 compression support.",
  6416. "ext-xz": "Lzma2 compression support.",
  6417. "ext-zlib": "Gzip compression support."
  6418. },
  6419. "type": "library",
  6420. "extra": {
  6421. "branch-alias": {
  6422. "dev-master": "1.4.x-dev"
  6423. }
  6424. },
  6425. "autoload": {
  6426. "psr-0": {
  6427. "Archive_Tar": ""
  6428. }
  6429. },
  6430. "notification-url": "https://packagist.org/downloads/",
  6431. "include-path": [
  6432. "./"
  6433. ],
  6434. "license": [
  6435. "BSD-2-Clause"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Vincent Blavet",
  6440. "email": "vincent@phpconcept.net"
  6441. },
  6442. {
  6443. "name": "Greg Beaver",
  6444. "email": "greg@chiaraquartet.net"
  6445. },
  6446. {
  6447. "name": "Michiel Rook",
  6448. "email": "mrook@php.net"
  6449. }
  6450. ],
  6451. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6452. "homepage": "https://github.com/pear/Archive_Tar",
  6453. "keywords": [
  6454. "archive",
  6455. "tar"
  6456. ],
  6457. "support": {
  6458. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6459. "source": "https://github.com/pear/Archive_Tar"
  6460. },
  6461. "time": "2025-07-19T14:49:16+00:00"
  6462. },
  6463. {
  6464. "name": "pear/console_getopt",
  6465. "version": "v1.4.3",
  6466. "source": {
  6467. "type": "git",
  6468. "url": "https://github.com/pear/Console_Getopt.git",
  6469. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6470. },
  6471. "dist": {
  6472. "type": "zip",
  6473. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6474. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6475. "shasum": ""
  6476. },
  6477. "type": "library",
  6478. "autoload": {
  6479. "psr-0": {
  6480. "Console": "./"
  6481. }
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "include-path": [
  6485. "./"
  6486. ],
  6487. "license": [
  6488. "BSD-2-Clause"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "Andrei Zmievski",
  6493. "email": "andrei@php.net",
  6494. "role": "Lead"
  6495. },
  6496. {
  6497. "name": "Stig Bakken",
  6498. "email": "stig@php.net",
  6499. "role": "Developer"
  6500. },
  6501. {
  6502. "name": "Greg Beaver",
  6503. "email": "cellog@php.net",
  6504. "role": "Helper"
  6505. }
  6506. ],
  6507. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6508. "support": {
  6509. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6510. "source": "https://github.com/pear/Console_Getopt"
  6511. },
  6512. "time": "2019-11-20T18:27:48+00:00"
  6513. },
  6514. {
  6515. "name": "pear/pear-core-minimal",
  6516. "version": "v1.10.18",
  6517. "source": {
  6518. "type": "git",
  6519. "url": "https://github.com/pear/pear-core-minimal.git",
  6520. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  6521. },
  6522. "dist": {
  6523. "type": "zip",
  6524. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6525. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6526. "shasum": ""
  6527. },
  6528. "require": {
  6529. "pear/console_getopt": "~1.4",
  6530. "pear/pear_exception": "~1.0",
  6531. "php": ">=5.4"
  6532. },
  6533. "replace": {
  6534. "rsky/pear-core-min": "self.version"
  6535. },
  6536. "type": "library",
  6537. "autoload": {
  6538. "classmap": [
  6539. "src/"
  6540. ]
  6541. },
  6542. "notification-url": "https://packagist.org/downloads/",
  6543. "include-path": [
  6544. "src/"
  6545. ],
  6546. "license": [
  6547. "BSD-3-Clause"
  6548. ],
  6549. "authors": [
  6550. {
  6551. "name": "Christian Weiske",
  6552. "email": "cweiske@php.net",
  6553. "role": "Lead"
  6554. }
  6555. ],
  6556. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6557. "support": {
  6558. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6559. "source": "https://github.com/pear/pear-core-minimal"
  6560. },
  6561. "time": "2025-12-14T20:37:07+00:00"
  6562. },
  6563. {
  6564. "name": "pear/pear_exception",
  6565. "version": "v1.0.2",
  6566. "source": {
  6567. "type": "git",
  6568. "url": "https://github.com/pear/PEAR_Exception.git",
  6569. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6570. },
  6571. "dist": {
  6572. "type": "zip",
  6573. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6574. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6575. "shasum": ""
  6576. },
  6577. "require": {
  6578. "php": ">=5.2.0"
  6579. },
  6580. "require-dev": {
  6581. "phpunit/phpunit": "<9"
  6582. },
  6583. "type": "class",
  6584. "extra": {
  6585. "branch-alias": {
  6586. "dev-master": "1.0.x-dev"
  6587. }
  6588. },
  6589. "autoload": {
  6590. "classmap": [
  6591. "PEAR/"
  6592. ]
  6593. },
  6594. "notification-url": "https://packagist.org/downloads/",
  6595. "include-path": [
  6596. "."
  6597. ],
  6598. "license": [
  6599. "BSD-2-Clause"
  6600. ],
  6601. "authors": [
  6602. {
  6603. "name": "Helgi Thormar",
  6604. "email": "dufuz@php.net"
  6605. },
  6606. {
  6607. "name": "Greg Beaver",
  6608. "email": "cellog@php.net"
  6609. }
  6610. ],
  6611. "description": "The PEAR Exception base class.",
  6612. "homepage": "https://github.com/pear/PEAR_Exception",
  6613. "keywords": [
  6614. "exception"
  6615. ],
  6616. "support": {
  6617. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6618. "source": "https://github.com/pear/PEAR_Exception"
  6619. },
  6620. "time": "2021-03-21T15:43:46+00:00"
  6621. },
  6622. {
  6623. "name": "phootwork/collection",
  6624. "version": "v3.2.3",
  6625. "source": {
  6626. "type": "git",
  6627. "url": "https://github.com/phootwork/collection.git",
  6628. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6629. },
  6630. "dist": {
  6631. "type": "zip",
  6632. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6633. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6634. "shasum": ""
  6635. },
  6636. "require": {
  6637. "phootwork/lang": "^3.0",
  6638. "php": ">=8.0"
  6639. },
  6640. "type": "library",
  6641. "autoload": {
  6642. "psr-4": {
  6643. "phootwork\\collection\\": ""
  6644. }
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "MIT"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "Thomas Gossmann",
  6653. "homepage": "http://gos.si"
  6654. }
  6655. ],
  6656. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6657. "homepage": "https://phootwork.github.io/collection/",
  6658. "keywords": [
  6659. "Array object",
  6660. "Text object",
  6661. "collection",
  6662. "collections",
  6663. "json",
  6664. "list",
  6665. "map",
  6666. "queue",
  6667. "set",
  6668. "stack",
  6669. "xml"
  6670. ],
  6671. "support": {
  6672. "issues": "https://github.com/phootwork/phootwork/issues",
  6673. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  6674. },
  6675. "time": "2022-08-27T12:51:24+00:00"
  6676. },
  6677. {
  6678. "name": "phootwork/lang",
  6679. "version": "v3.2.3",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/phootwork/lang.git",
  6683. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6688. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6689. "shasum": ""
  6690. },
  6691. "require": {
  6692. "php": ">=8.0",
  6693. "symfony/polyfill-mbstring": "^1.12",
  6694. "symfony/polyfill-php81": "^1.22"
  6695. },
  6696. "type": "library",
  6697. "autoload": {
  6698. "psr-4": {
  6699. "phootwork\\lang\\": ""
  6700. }
  6701. },
  6702. "notification-url": "https://packagist.org/downloads/",
  6703. "license": [
  6704. "MIT"
  6705. ],
  6706. "authors": [
  6707. {
  6708. "name": "Thomas Gossmann",
  6709. "homepage": "http://gos.si"
  6710. }
  6711. ],
  6712. "description": "Missing PHP language constructs",
  6713. "homepage": "https://phootwork.github.io/lang/",
  6714. "keywords": [
  6715. "array",
  6716. "comparator",
  6717. "comparison",
  6718. "string"
  6719. ],
  6720. "support": {
  6721. "issues": "https://github.com/phootwork/phootwork/issues",
  6722. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  6723. },
  6724. "time": "2024-10-03T13:43:19+00:00"
  6725. },
  6726. {
  6727. "name": "phpowermove/docblock",
  6728. "version": "v4.0",
  6729. "source": {
  6730. "type": "git",
  6731. "url": "https://github.com/phpowermove/docblock.git",
  6732. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6733. },
  6734. "dist": {
  6735. "type": "zip",
  6736. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6737. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6738. "shasum": ""
  6739. },
  6740. "require": {
  6741. "phootwork/collection": "^3.0",
  6742. "phootwork/lang": "^3.0",
  6743. "php": ">=8.0"
  6744. },
  6745. "require-dev": {
  6746. "phootwork/php-cs-fixer-config": "^0.4",
  6747. "phpunit/phpunit": "^9.0",
  6748. "psalm/phar": "^4.3"
  6749. },
  6750. "type": "library",
  6751. "autoload": {
  6752. "psr-4": {
  6753. "phpowermove\\docblock\\": "src/"
  6754. }
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "MIT"
  6759. ],
  6760. "authors": [
  6761. {
  6762. "name": "Thomas Gossmann",
  6763. "homepage": "http://gos.si"
  6764. }
  6765. ],
  6766. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6767. "keywords": [
  6768. "docblock",
  6769. "generator",
  6770. "parser"
  6771. ],
  6772. "support": {
  6773. "issues": "https://github.com/phpowermove/docblock/issues",
  6774. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6775. },
  6776. "time": "2021-09-22T16:57:06+00:00"
  6777. },
  6778. {
  6779. "name": "phpstan/phpstan",
  6780. "version": "1.12.3",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/phpstan/phpstan.git",
  6784. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6789. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "php": "^7.2|^8.0"
  6794. },
  6795. "conflict": {
  6796. "phpstan/phpstan-shim": "*"
  6797. },
  6798. "bin": [
  6799. "phpstan",
  6800. "phpstan.phar"
  6801. ],
  6802. "type": "library",
  6803. "autoload": {
  6804. "files": [
  6805. "bootstrap.php"
  6806. ]
  6807. },
  6808. "notification-url": "https://packagist.org/downloads/",
  6809. "license": [
  6810. "MIT"
  6811. ],
  6812. "description": "PHPStan - PHP Static Analysis Tool",
  6813. "keywords": [
  6814. "dev",
  6815. "static analysis"
  6816. ],
  6817. "support": {
  6818. "docs": "https://phpstan.org/user-guide/getting-started",
  6819. "forum": "https://github.com/phpstan/phpstan/discussions",
  6820. "issues": "https://github.com/phpstan/phpstan/issues",
  6821. "security": "https://github.com/phpstan/phpstan/security/policy",
  6822. "source": "https://github.com/phpstan/phpstan-src"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://github.com/ondrejmirtes",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://github.com/phpstan",
  6831. "type": "github"
  6832. }
  6833. ],
  6834. "time": "2024-09-09T08:10:35+00:00"
  6835. },
  6836. {
  6837. "name": "phpstan/phpstan-deprecation-rules",
  6838. "version": "1.2.1",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6842. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6847. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "php": "^7.2 || ^8.0",
  6852. "phpstan/phpstan": "^1.12"
  6853. },
  6854. "require-dev": {
  6855. "php-parallel-lint/php-parallel-lint": "^1.2",
  6856. "phpstan/phpstan-phpunit": "^1.0",
  6857. "phpunit/phpunit": "^9.5"
  6858. },
  6859. "type": "phpstan-extension",
  6860. "extra": {
  6861. "phpstan": {
  6862. "includes": [
  6863. "rules.neon"
  6864. ]
  6865. }
  6866. },
  6867. "autoload": {
  6868. "psr-4": {
  6869. "PHPStan\\": "src/"
  6870. }
  6871. },
  6872. "notification-url": "https://packagist.org/downloads/",
  6873. "license": [
  6874. "MIT"
  6875. ],
  6876. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6877. "support": {
  6878. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6879. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  6880. },
  6881. "time": "2024-09-11T15:52:35+00:00"
  6882. },
  6883. {
  6884. "name": "psr/cache",
  6885. "version": "3.0.0",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://github.com/php-fig/cache.git",
  6889. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6894. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6895. "shasum": ""
  6896. },
  6897. "require": {
  6898. "php": ">=8.0.0"
  6899. },
  6900. "type": "library",
  6901. "extra": {
  6902. "branch-alias": {
  6903. "dev-master": "1.0.x-dev"
  6904. }
  6905. },
  6906. "autoload": {
  6907. "psr-4": {
  6908. "Psr\\Cache\\": "src/"
  6909. }
  6910. },
  6911. "notification-url": "https://packagist.org/downloads/",
  6912. "license": [
  6913. "MIT"
  6914. ],
  6915. "authors": [
  6916. {
  6917. "name": "PHP-FIG",
  6918. "homepage": "https://www.php-fig.org/"
  6919. }
  6920. ],
  6921. "description": "Common interface for caching libraries",
  6922. "keywords": [
  6923. "cache",
  6924. "psr",
  6925. "psr-6"
  6926. ],
  6927. "support": {
  6928. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6929. },
  6930. "time": "2021-02-03T23:26:27+00:00"
  6931. },
  6932. {
  6933. "name": "psr/container",
  6934. "version": "2.0.2",
  6935. "source": {
  6936. "type": "git",
  6937. "url": "https://github.com/php-fig/container.git",
  6938. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6939. },
  6940. "dist": {
  6941. "type": "zip",
  6942. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6943. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6944. "shasum": ""
  6945. },
  6946. "require": {
  6947. "php": ">=7.4.0"
  6948. },
  6949. "type": "library",
  6950. "extra": {
  6951. "branch-alias": {
  6952. "dev-master": "2.0.x-dev"
  6953. }
  6954. },
  6955. "autoload": {
  6956. "psr-4": {
  6957. "Psr\\Container\\": "src/"
  6958. }
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "PHP-FIG",
  6967. "homepage": "https://www.php-fig.org/"
  6968. }
  6969. ],
  6970. "description": "Common Container Interface (PHP FIG PSR-11)",
  6971. "homepage": "https://github.com/php-fig/container",
  6972. "keywords": [
  6973. "PSR-11",
  6974. "container",
  6975. "container-interface",
  6976. "container-interop",
  6977. "psr"
  6978. ],
  6979. "support": {
  6980. "issues": "https://github.com/php-fig/container/issues",
  6981. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6982. },
  6983. "time": "2021-11-05T16:47:00+00:00"
  6984. },
  6985. {
  6986. "name": "psr/event-dispatcher",
  6987. "version": "1.0.0",
  6988. "source": {
  6989. "type": "git",
  6990. "url": "https://github.com/php-fig/event-dispatcher.git",
  6991. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6992. },
  6993. "dist": {
  6994. "type": "zip",
  6995. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6996. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6997. "shasum": ""
  6998. },
  6999. "require": {
  7000. "php": ">=7.2.0"
  7001. },
  7002. "type": "library",
  7003. "extra": {
  7004. "branch-alias": {
  7005. "dev-master": "1.0.x-dev"
  7006. }
  7007. },
  7008. "autoload": {
  7009. "psr-4": {
  7010. "Psr\\EventDispatcher\\": "src/"
  7011. }
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "MIT"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "PHP-FIG",
  7020. "homepage": "http://www.php-fig.org/"
  7021. }
  7022. ],
  7023. "description": "Standard interfaces for event handling.",
  7024. "keywords": [
  7025. "events",
  7026. "psr",
  7027. "psr-14"
  7028. ],
  7029. "support": {
  7030. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7031. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7032. },
  7033. "time": "2019-01-08T18:20:26+00:00"
  7034. },
  7035. {
  7036. "name": "psr/http-client",
  7037. "version": "1.0.3",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/php-fig/http-client.git",
  7041. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7046. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": "^7.0 || ^8.0",
  7051. "psr/http-message": "^1.0 || ^2.0"
  7052. },
  7053. "type": "library",
  7054. "extra": {
  7055. "branch-alias": {
  7056. "dev-master": "1.0.x-dev"
  7057. }
  7058. },
  7059. "autoload": {
  7060. "psr-4": {
  7061. "Psr\\Http\\Client\\": "src/"
  7062. }
  7063. },
  7064. "notification-url": "https://packagist.org/downloads/",
  7065. "license": [
  7066. "MIT"
  7067. ],
  7068. "authors": [
  7069. {
  7070. "name": "PHP-FIG",
  7071. "homepage": "https://www.php-fig.org/"
  7072. }
  7073. ],
  7074. "description": "Common interface for HTTP clients",
  7075. "homepage": "https://github.com/php-fig/http-client",
  7076. "keywords": [
  7077. "http",
  7078. "http-client",
  7079. "psr",
  7080. "psr-18"
  7081. ],
  7082. "support": {
  7083. "source": "https://github.com/php-fig/http-client"
  7084. },
  7085. "time": "2023-09-23T14:17:50+00:00"
  7086. },
  7087. {
  7088. "name": "psr/http-factory",
  7089. "version": "1.1.0",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/php-fig/http-factory.git",
  7093. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7098. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "php": ">=7.1",
  7103. "psr/http-message": "^1.0 || ^2.0"
  7104. },
  7105. "type": "library",
  7106. "extra": {
  7107. "branch-alias": {
  7108. "dev-master": "1.0.x-dev"
  7109. }
  7110. },
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Psr\\Http\\Message\\": "src/"
  7114. }
  7115. },
  7116. "notification-url": "https://packagist.org/downloads/",
  7117. "license": [
  7118. "MIT"
  7119. ],
  7120. "authors": [
  7121. {
  7122. "name": "PHP-FIG",
  7123. "homepage": "https://www.php-fig.org/"
  7124. }
  7125. ],
  7126. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7127. "keywords": [
  7128. "factory",
  7129. "http",
  7130. "message",
  7131. "psr",
  7132. "psr-17",
  7133. "psr-7",
  7134. "request",
  7135. "response"
  7136. ],
  7137. "support": {
  7138. "source": "https://github.com/php-fig/http-factory"
  7139. },
  7140. "time": "2024-04-15T12:06:14+00:00"
  7141. },
  7142. {
  7143. "name": "psr/http-message",
  7144. "version": "2.0",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://github.com/php-fig/http-message.git",
  7148. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7149. },
  7150. "dist": {
  7151. "type": "zip",
  7152. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7153. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7154. "shasum": ""
  7155. },
  7156. "require": {
  7157. "php": "^7.2 || ^8.0"
  7158. },
  7159. "type": "library",
  7160. "extra": {
  7161. "branch-alias": {
  7162. "dev-master": "2.0.x-dev"
  7163. }
  7164. },
  7165. "autoload": {
  7166. "psr-4": {
  7167. "Psr\\Http\\Message\\": "src/"
  7168. }
  7169. },
  7170. "notification-url": "https://packagist.org/downloads/",
  7171. "license": [
  7172. "MIT"
  7173. ],
  7174. "authors": [
  7175. {
  7176. "name": "PHP-FIG",
  7177. "homepage": "https://www.php-fig.org/"
  7178. }
  7179. ],
  7180. "description": "Common interface for HTTP messages",
  7181. "homepage": "https://github.com/php-fig/http-message",
  7182. "keywords": [
  7183. "http",
  7184. "http-message",
  7185. "psr",
  7186. "psr-7",
  7187. "request",
  7188. "response"
  7189. ],
  7190. "support": {
  7191. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7192. },
  7193. "time": "2023-04-04T09:54:51+00:00"
  7194. },
  7195. {
  7196. "name": "psr/log",
  7197. "version": "3.0.2",
  7198. "source": {
  7199. "type": "git",
  7200. "url": "https://github.com/php-fig/log.git",
  7201. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7202. },
  7203. "dist": {
  7204. "type": "zip",
  7205. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7206. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7207. "shasum": ""
  7208. },
  7209. "require": {
  7210. "php": ">=8.0.0"
  7211. },
  7212. "type": "library",
  7213. "extra": {
  7214. "branch-alias": {
  7215. "dev-master": "3.x-dev"
  7216. }
  7217. },
  7218. "autoload": {
  7219. "psr-4": {
  7220. "Psr\\Log\\": "src"
  7221. }
  7222. },
  7223. "notification-url": "https://packagist.org/downloads/",
  7224. "license": [
  7225. "MIT"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "PHP-FIG",
  7230. "homepage": "https://www.php-fig.org/"
  7231. }
  7232. ],
  7233. "description": "Common interface for logging libraries",
  7234. "homepage": "https://github.com/php-fig/log",
  7235. "keywords": [
  7236. "log",
  7237. "psr",
  7238. "psr-3"
  7239. ],
  7240. "support": {
  7241. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7242. },
  7243. "time": "2024-09-11T13:17:53+00:00"
  7244. },
  7245. {
  7246. "name": "psy/psysh",
  7247. "version": "v0.12.22",
  7248. "source": {
  7249. "type": "git",
  7250. "url": "https://github.com/bobthecow/psysh.git",
  7251. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f"
  7252. },
  7253. "dist": {
  7254. "type": "zip",
  7255. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7256. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7257. "shasum": ""
  7258. },
  7259. "require": {
  7260. "ext-json": "*",
  7261. "ext-tokenizer": "*",
  7262. "nikic/php-parser": "^5.0 || ^4.0",
  7263. "php": "^8.0 || ^7.4",
  7264. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7265. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7266. },
  7267. "conflict": {
  7268. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7269. },
  7270. "require-dev": {
  7271. "bamarni/composer-bin-plugin": "^1.2",
  7272. "composer/class-map-generator": "^1.6"
  7273. },
  7274. "suggest": {
  7275. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  7276. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7277. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7278. },
  7279. "bin": [
  7280. "bin/psysh"
  7281. ],
  7282. "type": "library",
  7283. "extra": {
  7284. "bamarni-bin": {
  7285. "bin-links": false,
  7286. "forward-command": false
  7287. },
  7288. "branch-alias": {
  7289. "dev-main": "0.12.x-dev"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "files": [
  7294. "src/functions.php"
  7295. ],
  7296. "psr-4": {
  7297. "Psy\\": "src/"
  7298. }
  7299. },
  7300. "notification-url": "https://packagist.org/downloads/",
  7301. "license": [
  7302. "MIT"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "Justin Hileman",
  7307. "email": "justin@justinhileman.info"
  7308. }
  7309. ],
  7310. "description": "An interactive shell for modern PHP.",
  7311. "homepage": "https://psysh.org",
  7312. "keywords": [
  7313. "REPL",
  7314. "console",
  7315. "interactive",
  7316. "shell"
  7317. ],
  7318. "support": {
  7319. "issues": "https://github.com/bobthecow/psysh/issues",
  7320. "source": "https://github.com/bobthecow/psysh/tree/v0.12.22"
  7321. },
  7322. "time": "2026-03-22T23:03:24+00:00"
  7323. },
  7324. {
  7325. "name": "ralouphie/getallheaders",
  7326. "version": "3.0.3",
  7327. "source": {
  7328. "type": "git",
  7329. "url": "https://github.com/ralouphie/getallheaders.git",
  7330. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7331. },
  7332. "dist": {
  7333. "type": "zip",
  7334. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7335. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7336. "shasum": ""
  7337. },
  7338. "require": {
  7339. "php": ">=5.6"
  7340. },
  7341. "require-dev": {
  7342. "php-coveralls/php-coveralls": "^2.1",
  7343. "phpunit/phpunit": "^5 || ^6.5"
  7344. },
  7345. "type": "library",
  7346. "autoload": {
  7347. "files": [
  7348. "src/getallheaders.php"
  7349. ]
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "license": [
  7353. "MIT"
  7354. ],
  7355. "authors": [
  7356. {
  7357. "name": "Ralph Khattar",
  7358. "email": "ralph.khattar@gmail.com"
  7359. }
  7360. ],
  7361. "description": "A polyfill for getallheaders.",
  7362. "support": {
  7363. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7364. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7365. },
  7366. "time": "2019-03-08T08:55:37+00:00"
  7367. },
  7368. {
  7369. "name": "sebastian/diff",
  7370. "version": "4.0.6",
  7371. "source": {
  7372. "type": "git",
  7373. "url": "https://github.com/sebastianbergmann/diff.git",
  7374. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7375. },
  7376. "dist": {
  7377. "type": "zip",
  7378. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7379. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7380. "shasum": ""
  7381. },
  7382. "require": {
  7383. "php": ">=7.3"
  7384. },
  7385. "require-dev": {
  7386. "phpunit/phpunit": "^9.3",
  7387. "symfony/process": "^4.2 || ^5"
  7388. },
  7389. "type": "library",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-master": "4.0-dev"
  7393. }
  7394. },
  7395. "autoload": {
  7396. "classmap": [
  7397. "src/"
  7398. ]
  7399. },
  7400. "notification-url": "https://packagist.org/downloads/",
  7401. "license": [
  7402. "BSD-3-Clause"
  7403. ],
  7404. "authors": [
  7405. {
  7406. "name": "Sebastian Bergmann",
  7407. "email": "sebastian@phpunit.de"
  7408. },
  7409. {
  7410. "name": "Kore Nordmann",
  7411. "email": "mail@kore-nordmann.de"
  7412. }
  7413. ],
  7414. "description": "Diff implementation",
  7415. "homepage": "https://github.com/sebastianbergmann/diff",
  7416. "keywords": [
  7417. "diff",
  7418. "udiff",
  7419. "unidiff",
  7420. "unified diff"
  7421. ],
  7422. "support": {
  7423. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7424. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7425. },
  7426. "funding": [
  7427. {
  7428. "url": "https://github.com/sebastianbergmann",
  7429. "type": "github"
  7430. }
  7431. ],
  7432. "time": "2024-03-02T06:30:58+00:00"
  7433. },
  7434. {
  7435. "name": "symfony/console",
  7436. "version": "v6.4.35",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/symfony/console.git",
  7440. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  7445. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  7446. "shasum": ""
  7447. },
  7448. "require": {
  7449. "php": ">=8.1",
  7450. "symfony/deprecation-contracts": "^2.5|^3",
  7451. "symfony/polyfill-mbstring": "~1.0",
  7452. "symfony/service-contracts": "^2.5|^3",
  7453. "symfony/string": "^5.4|^6.0|^7.0"
  7454. },
  7455. "conflict": {
  7456. "symfony/dependency-injection": "<5.4",
  7457. "symfony/dotenv": "<5.4",
  7458. "symfony/event-dispatcher": "<5.4",
  7459. "symfony/lock": "<5.4",
  7460. "symfony/process": "<5.4"
  7461. },
  7462. "provide": {
  7463. "psr/log-implementation": "1.0|2.0|3.0"
  7464. },
  7465. "require-dev": {
  7466. "psr/log": "^1|^2|^3",
  7467. "symfony/config": "^5.4|^6.0|^7.0",
  7468. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7469. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7470. "symfony/http-foundation": "^6.4|^7.0",
  7471. "symfony/http-kernel": "^6.4|^7.0",
  7472. "symfony/lock": "^5.4|^6.0|^7.0",
  7473. "symfony/messenger": "^5.4|^6.0|^7.0",
  7474. "symfony/process": "^5.4|^6.0|^7.0",
  7475. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7476. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7477. },
  7478. "type": "library",
  7479. "autoload": {
  7480. "psr-4": {
  7481. "Symfony\\Component\\Console\\": ""
  7482. },
  7483. "exclude-from-classmap": [
  7484. "/Tests/"
  7485. ]
  7486. },
  7487. "notification-url": "https://packagist.org/downloads/",
  7488. "license": [
  7489. "MIT"
  7490. ],
  7491. "authors": [
  7492. {
  7493. "name": "Fabien Potencier",
  7494. "email": "fabien@symfony.com"
  7495. },
  7496. {
  7497. "name": "Symfony Community",
  7498. "homepage": "https://symfony.com/contributors"
  7499. }
  7500. ],
  7501. "description": "Eases the creation of beautiful and testable command line interfaces",
  7502. "homepage": "https://symfony.com",
  7503. "keywords": [
  7504. "cli",
  7505. "command-line",
  7506. "console",
  7507. "terminal"
  7508. ],
  7509. "support": {
  7510. "source": "https://github.com/symfony/console/tree/v6.4.35"
  7511. },
  7512. "funding": [
  7513. {
  7514. "url": "https://symfony.com/sponsor",
  7515. "type": "custom"
  7516. },
  7517. {
  7518. "url": "https://github.com/fabpot",
  7519. "type": "github"
  7520. },
  7521. {
  7522. "url": "https://github.com/nicolas-grekas",
  7523. "type": "github"
  7524. },
  7525. {
  7526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7527. "type": "tidelift"
  7528. }
  7529. ],
  7530. "time": "2026-03-06T13:31:08+00:00"
  7531. },
  7532. {
  7533. "name": "symfony/dependency-injection",
  7534. "version": "v6.4.35",
  7535. "source": {
  7536. "type": "git",
  7537. "url": "https://github.com/symfony/dependency-injection.git",
  7538. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  7539. },
  7540. "dist": {
  7541. "type": "zip",
  7542. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  7543. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  7544. "shasum": ""
  7545. },
  7546. "require": {
  7547. "php": ">=8.1",
  7548. "psr/container": "^1.1|^2.0",
  7549. "symfony/deprecation-contracts": "^2.5|^3",
  7550. "symfony/service-contracts": "^2.5|^3.0",
  7551. "symfony/var-exporter": "^6.4.20|^7.2.5"
  7552. },
  7553. "conflict": {
  7554. "ext-psr": "<1.1|>=2",
  7555. "symfony/config": "<6.1",
  7556. "symfony/finder": "<5.4",
  7557. "symfony/proxy-manager-bridge": "<6.3",
  7558. "symfony/yaml": "<5.4"
  7559. },
  7560. "provide": {
  7561. "psr/container-implementation": "1.1|2.0",
  7562. "symfony/service-implementation": "1.1|2.0|3.0"
  7563. },
  7564. "require-dev": {
  7565. "symfony/config": "^6.1|^7.0",
  7566. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7567. "symfony/yaml": "^5.4|^6.0|^7.0"
  7568. },
  7569. "type": "library",
  7570. "autoload": {
  7571. "psr-4": {
  7572. "Symfony\\Component\\DependencyInjection\\": ""
  7573. },
  7574. "exclude-from-classmap": [
  7575. "/Tests/"
  7576. ]
  7577. },
  7578. "notification-url": "https://packagist.org/downloads/",
  7579. "license": [
  7580. "MIT"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "Fabien Potencier",
  7585. "email": "fabien@symfony.com"
  7586. },
  7587. {
  7588. "name": "Symfony Community",
  7589. "homepage": "https://symfony.com/contributors"
  7590. }
  7591. ],
  7592. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7593. "homepage": "https://symfony.com",
  7594. "support": {
  7595. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  7596. },
  7597. "funding": [
  7598. {
  7599. "url": "https://symfony.com/sponsor",
  7600. "type": "custom"
  7601. },
  7602. {
  7603. "url": "https://github.com/fabpot",
  7604. "type": "github"
  7605. },
  7606. {
  7607. "url": "https://github.com/nicolas-grekas",
  7608. "type": "github"
  7609. },
  7610. {
  7611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7612. "type": "tidelift"
  7613. }
  7614. ],
  7615. "time": "2026-02-26T12:16:01+00:00"
  7616. },
  7617. {
  7618. "name": "symfony/deprecation-contracts",
  7619. "version": "v3.6.0",
  7620. "source": {
  7621. "type": "git",
  7622. "url": "https://github.com/symfony/deprecation-contracts.git",
  7623. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  7624. },
  7625. "dist": {
  7626. "type": "zip",
  7627. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7628. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7629. "shasum": ""
  7630. },
  7631. "require": {
  7632. "php": ">=8.1"
  7633. },
  7634. "type": "library",
  7635. "extra": {
  7636. "thanks": {
  7637. "url": "https://github.com/symfony/contracts",
  7638. "name": "symfony/contracts"
  7639. },
  7640. "branch-alias": {
  7641. "dev-main": "3.6-dev"
  7642. }
  7643. },
  7644. "autoload": {
  7645. "files": [
  7646. "function.php"
  7647. ]
  7648. },
  7649. "notification-url": "https://packagist.org/downloads/",
  7650. "license": [
  7651. "MIT"
  7652. ],
  7653. "authors": [
  7654. {
  7655. "name": "Nicolas Grekas",
  7656. "email": "p@tchwork.com"
  7657. },
  7658. {
  7659. "name": "Symfony Community",
  7660. "homepage": "https://symfony.com/contributors"
  7661. }
  7662. ],
  7663. "description": "A generic function and convention to trigger deprecation notices",
  7664. "homepage": "https://symfony.com",
  7665. "support": {
  7666. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  7667. },
  7668. "funding": [
  7669. {
  7670. "url": "https://symfony.com/sponsor",
  7671. "type": "custom"
  7672. },
  7673. {
  7674. "url": "https://github.com/fabpot",
  7675. "type": "github"
  7676. },
  7677. {
  7678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7679. "type": "tidelift"
  7680. }
  7681. ],
  7682. "time": "2024-09-25T14:21:43+00:00"
  7683. },
  7684. {
  7685. "name": "symfony/error-handler",
  7686. "version": "v6.4.32",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/symfony/error-handler.git",
  7690. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7695. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7696. "shasum": ""
  7697. },
  7698. "require": {
  7699. "php": ">=8.1",
  7700. "psr/log": "^1|^2|^3",
  7701. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7702. },
  7703. "conflict": {
  7704. "symfony/deprecation-contracts": "<2.5",
  7705. "symfony/http-kernel": "<6.4"
  7706. },
  7707. "require-dev": {
  7708. "symfony/deprecation-contracts": "^2.5|^3",
  7709. "symfony/http-kernel": "^6.4|^7.0",
  7710. "symfony/serializer": "^5.4|^6.0|^7.0"
  7711. },
  7712. "bin": [
  7713. "Resources/bin/patch-type-declarations"
  7714. ],
  7715. "type": "library",
  7716. "autoload": {
  7717. "psr-4": {
  7718. "Symfony\\Component\\ErrorHandler\\": ""
  7719. },
  7720. "exclude-from-classmap": [
  7721. "/Tests/"
  7722. ]
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Fabien Potencier",
  7731. "email": "fabien@symfony.com"
  7732. },
  7733. {
  7734. "name": "Symfony Community",
  7735. "homepage": "https://symfony.com/contributors"
  7736. }
  7737. ],
  7738. "description": "Provides tools to manage errors and ease debugging PHP code",
  7739. "homepage": "https://symfony.com",
  7740. "support": {
  7741. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  7742. },
  7743. "funding": [
  7744. {
  7745. "url": "https://symfony.com/sponsor",
  7746. "type": "custom"
  7747. },
  7748. {
  7749. "url": "https://github.com/fabpot",
  7750. "type": "github"
  7751. },
  7752. {
  7753. "url": "https://github.com/nicolas-grekas",
  7754. "type": "github"
  7755. },
  7756. {
  7757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7758. "type": "tidelift"
  7759. }
  7760. ],
  7761. "time": "2026-01-19T19:28:19+00:00"
  7762. },
  7763. {
  7764. "name": "symfony/event-dispatcher",
  7765. "version": "v6.4.32",
  7766. "source": {
  7767. "type": "git",
  7768. "url": "https://github.com/symfony/event-dispatcher.git",
  7769. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  7770. },
  7771. "dist": {
  7772. "type": "zip",
  7773. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  7774. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  7775. "shasum": ""
  7776. },
  7777. "require": {
  7778. "php": ">=8.1",
  7779. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7780. },
  7781. "conflict": {
  7782. "symfony/dependency-injection": "<5.4",
  7783. "symfony/service-contracts": "<2.5"
  7784. },
  7785. "provide": {
  7786. "psr/event-dispatcher-implementation": "1.0",
  7787. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7788. },
  7789. "require-dev": {
  7790. "psr/log": "^1|^2|^3",
  7791. "symfony/config": "^5.4|^6.0|^7.0",
  7792. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7793. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7794. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7795. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7796. "symfony/service-contracts": "^2.5|^3",
  7797. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7798. },
  7799. "type": "library",
  7800. "autoload": {
  7801. "psr-4": {
  7802. "Symfony\\Component\\EventDispatcher\\": ""
  7803. },
  7804. "exclude-from-classmap": [
  7805. "/Tests/"
  7806. ]
  7807. },
  7808. "notification-url": "https://packagist.org/downloads/",
  7809. "license": [
  7810. "MIT"
  7811. ],
  7812. "authors": [
  7813. {
  7814. "name": "Fabien Potencier",
  7815. "email": "fabien@symfony.com"
  7816. },
  7817. {
  7818. "name": "Symfony Community",
  7819. "homepage": "https://symfony.com/contributors"
  7820. }
  7821. ],
  7822. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7823. "homepage": "https://symfony.com",
  7824. "support": {
  7825. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  7826. },
  7827. "funding": [
  7828. {
  7829. "url": "https://symfony.com/sponsor",
  7830. "type": "custom"
  7831. },
  7832. {
  7833. "url": "https://github.com/fabpot",
  7834. "type": "github"
  7835. },
  7836. {
  7837. "url": "https://github.com/nicolas-grekas",
  7838. "type": "github"
  7839. },
  7840. {
  7841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7842. "type": "tidelift"
  7843. }
  7844. ],
  7845. "time": "2026-01-05T11:13:48+00:00"
  7846. },
  7847. {
  7848. "name": "symfony/event-dispatcher-contracts",
  7849. "version": "v3.6.0",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7853. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7858. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": ">=8.1",
  7863. "psr/event-dispatcher": "^1"
  7864. },
  7865. "type": "library",
  7866. "extra": {
  7867. "thanks": {
  7868. "url": "https://github.com/symfony/contracts",
  7869. "name": "symfony/contracts"
  7870. },
  7871. "branch-alias": {
  7872. "dev-main": "3.6-dev"
  7873. }
  7874. },
  7875. "autoload": {
  7876. "psr-4": {
  7877. "Symfony\\Contracts\\EventDispatcher\\": ""
  7878. }
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "MIT"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Nicolas Grekas",
  7887. "email": "p@tchwork.com"
  7888. },
  7889. {
  7890. "name": "Symfony Community",
  7891. "homepage": "https://symfony.com/contributors"
  7892. }
  7893. ],
  7894. "description": "Generic abstractions related to dispatching event",
  7895. "homepage": "https://symfony.com",
  7896. "keywords": [
  7897. "abstractions",
  7898. "contracts",
  7899. "decoupling",
  7900. "interfaces",
  7901. "interoperability",
  7902. "standards"
  7903. ],
  7904. "support": {
  7905. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7906. },
  7907. "funding": [
  7908. {
  7909. "url": "https://symfony.com/sponsor",
  7910. "type": "custom"
  7911. },
  7912. {
  7913. "url": "https://github.com/fabpot",
  7914. "type": "github"
  7915. },
  7916. {
  7917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7918. "type": "tidelift"
  7919. }
  7920. ],
  7921. "time": "2024-09-25T14:21:43+00:00"
  7922. },
  7923. {
  7924. "name": "symfony/filesystem",
  7925. "version": "v6.4.34",
  7926. "source": {
  7927. "type": "git",
  7928. "url": "https://github.com/symfony/filesystem.git",
  7929. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  7930. },
  7931. "dist": {
  7932. "type": "zip",
  7933. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7934. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7935. "shasum": ""
  7936. },
  7937. "require": {
  7938. "php": ">=8.1",
  7939. "symfony/polyfill-ctype": "~1.8",
  7940. "symfony/polyfill-mbstring": "~1.8"
  7941. },
  7942. "require-dev": {
  7943. "symfony/process": "^5.4|^6.4|^7.0"
  7944. },
  7945. "type": "library",
  7946. "autoload": {
  7947. "psr-4": {
  7948. "Symfony\\Component\\Filesystem\\": ""
  7949. },
  7950. "exclude-from-classmap": [
  7951. "/Tests/"
  7952. ]
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Fabien Potencier",
  7961. "email": "fabien@symfony.com"
  7962. },
  7963. {
  7964. "name": "Symfony Community",
  7965. "homepage": "https://symfony.com/contributors"
  7966. }
  7967. ],
  7968. "description": "Provides basic utilities for the filesystem",
  7969. "homepage": "https://symfony.com",
  7970. "support": {
  7971. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  7972. },
  7973. "funding": [
  7974. {
  7975. "url": "https://symfony.com/sponsor",
  7976. "type": "custom"
  7977. },
  7978. {
  7979. "url": "https://github.com/fabpot",
  7980. "type": "github"
  7981. },
  7982. {
  7983. "url": "https://github.com/nicolas-grekas",
  7984. "type": "github"
  7985. },
  7986. {
  7987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7988. "type": "tidelift"
  7989. }
  7990. ],
  7991. "time": "2026-02-24T17:51:06+00:00"
  7992. },
  7993. {
  7994. "name": "symfony/finder",
  7995. "version": "v6.4.34",
  7996. "source": {
  7997. "type": "git",
  7998. "url": "https://github.com/symfony/finder.git",
  7999. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  8000. },
  8001. "dist": {
  8002. "type": "zip",
  8003. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  8004. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  8005. "shasum": ""
  8006. },
  8007. "require": {
  8008. "php": ">=8.1"
  8009. },
  8010. "require-dev": {
  8011. "symfony/filesystem": "^6.0|^7.0"
  8012. },
  8013. "type": "library",
  8014. "autoload": {
  8015. "psr-4": {
  8016. "Symfony\\Component\\Finder\\": ""
  8017. },
  8018. "exclude-from-classmap": [
  8019. "/Tests/"
  8020. ]
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "MIT"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Fabien Potencier",
  8029. "email": "fabien@symfony.com"
  8030. },
  8031. {
  8032. "name": "Symfony Community",
  8033. "homepage": "https://symfony.com/contributors"
  8034. }
  8035. ],
  8036. "description": "Finds files and directories via an intuitive fluent interface",
  8037. "homepage": "https://symfony.com",
  8038. "support": {
  8039. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  8040. },
  8041. "funding": [
  8042. {
  8043. "url": "https://symfony.com/sponsor",
  8044. "type": "custom"
  8045. },
  8046. {
  8047. "url": "https://github.com/fabpot",
  8048. "type": "github"
  8049. },
  8050. {
  8051. "url": "https://github.com/nicolas-grekas",
  8052. "type": "github"
  8053. },
  8054. {
  8055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8056. "type": "tidelift"
  8057. }
  8058. ],
  8059. "time": "2026-01-28T15:16:37+00:00"
  8060. },
  8061. {
  8062. "name": "symfony/http-foundation",
  8063. "version": "v6.4.35",
  8064. "source": {
  8065. "type": "git",
  8066. "url": "https://github.com/symfony/http-foundation.git",
  8067. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  8068. },
  8069. "dist": {
  8070. "type": "zip",
  8071. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8072. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8073. "shasum": ""
  8074. },
  8075. "require": {
  8076. "php": ">=8.1",
  8077. "symfony/deprecation-contracts": "^2.5|^3",
  8078. "symfony/polyfill-mbstring": "~1.1",
  8079. "symfony/polyfill-php83": "^1.27"
  8080. },
  8081. "conflict": {
  8082. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8083. },
  8084. "require-dev": {
  8085. "doctrine/dbal": "^2.13.1|^3|^4",
  8086. "predis/predis": "^1.1|^2.0",
  8087. "symfony/cache": "^6.4.12|^7.1.5",
  8088. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8089. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8090. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8091. "symfony/mime": "^5.4|^6.0|^7.0",
  8092. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8093. },
  8094. "type": "library",
  8095. "autoload": {
  8096. "psr-4": {
  8097. "Symfony\\Component\\HttpFoundation\\": ""
  8098. },
  8099. "exclude-from-classmap": [
  8100. "/Tests/"
  8101. ]
  8102. },
  8103. "notification-url": "https://packagist.org/downloads/",
  8104. "license": [
  8105. "MIT"
  8106. ],
  8107. "authors": [
  8108. {
  8109. "name": "Fabien Potencier",
  8110. "email": "fabien@symfony.com"
  8111. },
  8112. {
  8113. "name": "Symfony Community",
  8114. "homepage": "https://symfony.com/contributors"
  8115. }
  8116. ],
  8117. "description": "Defines an object-oriented layer for the HTTP specification",
  8118. "homepage": "https://symfony.com",
  8119. "support": {
  8120. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  8121. },
  8122. "funding": [
  8123. {
  8124. "url": "https://symfony.com/sponsor",
  8125. "type": "custom"
  8126. },
  8127. {
  8128. "url": "https://github.com/fabpot",
  8129. "type": "github"
  8130. },
  8131. {
  8132. "url": "https://github.com/nicolas-grekas",
  8133. "type": "github"
  8134. },
  8135. {
  8136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8137. "type": "tidelift"
  8138. }
  8139. ],
  8140. "time": "2026-03-06T11:15:58+00:00"
  8141. },
  8142. {
  8143. "name": "symfony/http-kernel",
  8144. "version": "v6.4.35",
  8145. "source": {
  8146. "type": "git",
  8147. "url": "https://github.com/symfony/http-kernel.git",
  8148. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  8149. },
  8150. "dist": {
  8151. "type": "zip",
  8152. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  8153. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  8154. "shasum": ""
  8155. },
  8156. "require": {
  8157. "php": ">=8.1",
  8158. "psr/log": "^1|^2|^3",
  8159. "symfony/deprecation-contracts": "^2.5|^3",
  8160. "symfony/error-handler": "^6.4|^7.0",
  8161. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8162. "symfony/http-foundation": "^6.4|^7.0",
  8163. "symfony/polyfill-ctype": "^1.8"
  8164. },
  8165. "conflict": {
  8166. "symfony/browser-kit": "<5.4",
  8167. "symfony/cache": "<5.4",
  8168. "symfony/config": "<6.1",
  8169. "symfony/console": "<5.4",
  8170. "symfony/dependency-injection": "<6.4",
  8171. "symfony/doctrine-bridge": "<5.4",
  8172. "symfony/form": "<5.4",
  8173. "symfony/http-client": "<5.4",
  8174. "symfony/http-client-contracts": "<2.5",
  8175. "symfony/mailer": "<5.4",
  8176. "symfony/messenger": "<5.4",
  8177. "symfony/translation": "<5.4",
  8178. "symfony/translation-contracts": "<2.5",
  8179. "symfony/twig-bridge": "<5.4",
  8180. "symfony/validator": "<6.4",
  8181. "symfony/var-dumper": "<6.3",
  8182. "twig/twig": "<2.13"
  8183. },
  8184. "provide": {
  8185. "psr/log-implementation": "1.0|2.0|3.0"
  8186. },
  8187. "require-dev": {
  8188. "psr/cache": "^1.0|^2.0|^3.0",
  8189. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8190. "symfony/clock": "^6.2|^7.0",
  8191. "symfony/config": "^6.1|^7.0",
  8192. "symfony/console": "^5.4|^6.0|^7.0",
  8193. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8194. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  8195. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8196. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8197. "symfony/finder": "^5.4|^6.0|^7.0",
  8198. "symfony/http-client-contracts": "^2.5|^3",
  8199. "symfony/process": "^5.4|^6.0|^7.0",
  8200. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8201. "symfony/routing": "^5.4|^6.0|^7.0",
  8202. "symfony/serializer": "^6.4.4|^7.0.4",
  8203. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8204. "symfony/translation": "^5.4|^6.0|^7.0",
  8205. "symfony/translation-contracts": "^2.5|^3",
  8206. "symfony/uid": "^5.4|^6.0|^7.0",
  8207. "symfony/validator": "^6.4|^7.0",
  8208. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8209. "symfony/var-exporter": "^6.2|^7.0",
  8210. "twig/twig": "^2.13|^3.0.4"
  8211. },
  8212. "type": "library",
  8213. "autoload": {
  8214. "psr-4": {
  8215. "Symfony\\Component\\HttpKernel\\": ""
  8216. },
  8217. "exclude-from-classmap": [
  8218. "/Tests/"
  8219. ]
  8220. },
  8221. "notification-url": "https://packagist.org/downloads/",
  8222. "license": [
  8223. "MIT"
  8224. ],
  8225. "authors": [
  8226. {
  8227. "name": "Fabien Potencier",
  8228. "email": "fabien@symfony.com"
  8229. },
  8230. {
  8231. "name": "Symfony Community",
  8232. "homepage": "https://symfony.com/contributors"
  8233. }
  8234. ],
  8235. "description": "Provides a structured process for converting a Request into a Response",
  8236. "homepage": "https://symfony.com",
  8237. "support": {
  8238. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  8239. },
  8240. "funding": [
  8241. {
  8242. "url": "https://symfony.com/sponsor",
  8243. "type": "custom"
  8244. },
  8245. {
  8246. "url": "https://github.com/fabpot",
  8247. "type": "github"
  8248. },
  8249. {
  8250. "url": "https://github.com/nicolas-grekas",
  8251. "type": "github"
  8252. },
  8253. {
  8254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8255. "type": "tidelift"
  8256. }
  8257. ],
  8258. "time": "2026-03-06T16:28:07+00:00"
  8259. },
  8260. {
  8261. "name": "symfony/mailer",
  8262. "version": "v6.4.34",
  8263. "source": {
  8264. "type": "git",
  8265. "url": "https://github.com/symfony/mailer.git",
  8266. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  8267. },
  8268. "dist": {
  8269. "type": "zip",
  8270. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  8271. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  8272. "shasum": ""
  8273. },
  8274. "require": {
  8275. "egulias/email-validator": "^2.1.10|^3|^4",
  8276. "php": ">=8.1",
  8277. "psr/event-dispatcher": "^1",
  8278. "psr/log": "^1|^2|^3",
  8279. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8280. "symfony/mime": "^6.2|^7.0",
  8281. "symfony/service-contracts": "^2.5|^3"
  8282. },
  8283. "conflict": {
  8284. "symfony/http-client-contracts": "<2.5",
  8285. "symfony/http-kernel": "<5.4",
  8286. "symfony/messenger": "<6.2",
  8287. "symfony/mime": "<6.2",
  8288. "symfony/twig-bridge": "<6.2.1"
  8289. },
  8290. "require-dev": {
  8291. "symfony/console": "^5.4|^6.0|^7.0",
  8292. "symfony/http-client": "^5.4|^6.0|^7.0",
  8293. "symfony/messenger": "^6.2|^7.0",
  8294. "symfony/twig-bridge": "^6.2|^7.0"
  8295. },
  8296. "type": "library",
  8297. "autoload": {
  8298. "psr-4": {
  8299. "Symfony\\Component\\Mailer\\": ""
  8300. },
  8301. "exclude-from-classmap": [
  8302. "/Tests/"
  8303. ]
  8304. },
  8305. "notification-url": "https://packagist.org/downloads/",
  8306. "license": [
  8307. "MIT"
  8308. ],
  8309. "authors": [
  8310. {
  8311. "name": "Fabien Potencier",
  8312. "email": "fabien@symfony.com"
  8313. },
  8314. {
  8315. "name": "Symfony Community",
  8316. "homepage": "https://symfony.com/contributors"
  8317. }
  8318. ],
  8319. "description": "Helps sending emails",
  8320. "homepage": "https://symfony.com",
  8321. "support": {
  8322. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  8323. },
  8324. "funding": [
  8325. {
  8326. "url": "https://symfony.com/sponsor",
  8327. "type": "custom"
  8328. },
  8329. {
  8330. "url": "https://github.com/fabpot",
  8331. "type": "github"
  8332. },
  8333. {
  8334. "url": "https://github.com/nicolas-grekas",
  8335. "type": "github"
  8336. },
  8337. {
  8338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8339. "type": "tidelift"
  8340. }
  8341. ],
  8342. "time": "2026-02-24T09:34:36+00:00"
  8343. },
  8344. {
  8345. "name": "symfony/mime",
  8346. "version": "v6.4.35",
  8347. "source": {
  8348. "type": "git",
  8349. "url": "https://github.com/symfony/mime.git",
  8350. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  8351. },
  8352. "dist": {
  8353. "type": "zip",
  8354. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8355. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8356. "shasum": ""
  8357. },
  8358. "require": {
  8359. "php": ">=8.1",
  8360. "symfony/deprecation-contracts": "^2.5|^3",
  8361. "symfony/polyfill-intl-idn": "^1.10",
  8362. "symfony/polyfill-mbstring": "^1.0"
  8363. },
  8364. "conflict": {
  8365. "egulias/email-validator": "~3.0.0",
  8366. "phpdocumentor/reflection-docblock": "<3.2.2",
  8367. "phpdocumentor/type-resolver": "<1.4.0",
  8368. "symfony/mailer": "<5.4",
  8369. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8370. },
  8371. "require-dev": {
  8372. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8373. "league/html-to-markdown": "^5.0",
  8374. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8375. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8376. "symfony/process": "^5.4|^6.4|^7.0",
  8377. "symfony/property-access": "^5.4|^6.0|^7.0",
  8378. "symfony/property-info": "^5.4|^6.0|^7.0",
  8379. "symfony/serializer": "^6.4.3|^7.0.3"
  8380. },
  8381. "type": "library",
  8382. "autoload": {
  8383. "psr-4": {
  8384. "Symfony\\Component\\Mime\\": ""
  8385. },
  8386. "exclude-from-classmap": [
  8387. "/Tests/"
  8388. ]
  8389. },
  8390. "notification-url": "https://packagist.org/downloads/",
  8391. "license": [
  8392. "MIT"
  8393. ],
  8394. "authors": [
  8395. {
  8396. "name": "Fabien Potencier",
  8397. "email": "fabien@symfony.com"
  8398. },
  8399. {
  8400. "name": "Symfony Community",
  8401. "homepage": "https://symfony.com/contributors"
  8402. }
  8403. ],
  8404. "description": "Allows manipulating MIME messages",
  8405. "homepage": "https://symfony.com",
  8406. "keywords": [
  8407. "mime",
  8408. "mime-type"
  8409. ],
  8410. "support": {
  8411. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://symfony.com/sponsor",
  8416. "type": "custom"
  8417. },
  8418. {
  8419. "url": "https://github.com/fabpot",
  8420. "type": "github"
  8421. },
  8422. {
  8423. "url": "https://github.com/nicolas-grekas",
  8424. "type": "github"
  8425. },
  8426. {
  8427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8428. "type": "tidelift"
  8429. }
  8430. ],
  8431. "time": "2026-03-05T11:25:28+00:00"
  8432. },
  8433. {
  8434. "name": "symfony/polyfill-ctype",
  8435. "version": "v1.33.0",
  8436. "source": {
  8437. "type": "git",
  8438. "url": "https://github.com/symfony/polyfill-ctype.git",
  8439. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8440. },
  8441. "dist": {
  8442. "type": "zip",
  8443. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8444. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8445. "shasum": ""
  8446. },
  8447. "require": {
  8448. "php": ">=7.2"
  8449. },
  8450. "provide": {
  8451. "ext-ctype": "*"
  8452. },
  8453. "suggest": {
  8454. "ext-ctype": "For best performance"
  8455. },
  8456. "type": "library",
  8457. "extra": {
  8458. "thanks": {
  8459. "url": "https://github.com/symfony/polyfill",
  8460. "name": "symfony/polyfill"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "files": [
  8465. "bootstrap.php"
  8466. ],
  8467. "psr-4": {
  8468. "Symfony\\Polyfill\\Ctype\\": ""
  8469. }
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "Gert de Pagter",
  8478. "email": "BackEndTea@gmail.com"
  8479. },
  8480. {
  8481. "name": "Symfony Community",
  8482. "homepage": "https://symfony.com/contributors"
  8483. }
  8484. ],
  8485. "description": "Symfony polyfill for ctype functions",
  8486. "homepage": "https://symfony.com",
  8487. "keywords": [
  8488. "compatibility",
  8489. "ctype",
  8490. "polyfill",
  8491. "portable"
  8492. ],
  8493. "support": {
  8494. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  8495. },
  8496. "funding": [
  8497. {
  8498. "url": "https://symfony.com/sponsor",
  8499. "type": "custom"
  8500. },
  8501. {
  8502. "url": "https://github.com/fabpot",
  8503. "type": "github"
  8504. },
  8505. {
  8506. "url": "https://github.com/nicolas-grekas",
  8507. "type": "github"
  8508. },
  8509. {
  8510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8511. "type": "tidelift"
  8512. }
  8513. ],
  8514. "time": "2024-09-09T11:45:10+00:00"
  8515. },
  8516. {
  8517. "name": "symfony/polyfill-iconv",
  8518. "version": "v1.33.0",
  8519. "source": {
  8520. "type": "git",
  8521. "url": "https://github.com/symfony/polyfill-iconv.git",
  8522. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  8523. },
  8524. "dist": {
  8525. "type": "zip",
  8526. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8527. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8528. "shasum": ""
  8529. },
  8530. "require": {
  8531. "php": ">=7.2"
  8532. },
  8533. "provide": {
  8534. "ext-iconv": "*"
  8535. },
  8536. "suggest": {
  8537. "ext-iconv": "For best performance"
  8538. },
  8539. "type": "library",
  8540. "extra": {
  8541. "thanks": {
  8542. "url": "https://github.com/symfony/polyfill",
  8543. "name": "symfony/polyfill"
  8544. }
  8545. },
  8546. "autoload": {
  8547. "files": [
  8548. "bootstrap.php"
  8549. ],
  8550. "psr-4": {
  8551. "Symfony\\Polyfill\\Iconv\\": ""
  8552. }
  8553. },
  8554. "notification-url": "https://packagist.org/downloads/",
  8555. "license": [
  8556. "MIT"
  8557. ],
  8558. "authors": [
  8559. {
  8560. "name": "Nicolas Grekas",
  8561. "email": "p@tchwork.com"
  8562. },
  8563. {
  8564. "name": "Symfony Community",
  8565. "homepage": "https://symfony.com/contributors"
  8566. }
  8567. ],
  8568. "description": "Symfony polyfill for the Iconv extension",
  8569. "homepage": "https://symfony.com",
  8570. "keywords": [
  8571. "compatibility",
  8572. "iconv",
  8573. "polyfill",
  8574. "portable",
  8575. "shim"
  8576. ],
  8577. "support": {
  8578. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  8579. },
  8580. "funding": [
  8581. {
  8582. "url": "https://symfony.com/sponsor",
  8583. "type": "custom"
  8584. },
  8585. {
  8586. "url": "https://github.com/fabpot",
  8587. "type": "github"
  8588. },
  8589. {
  8590. "url": "https://github.com/nicolas-grekas",
  8591. "type": "github"
  8592. },
  8593. {
  8594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8595. "type": "tidelift"
  8596. }
  8597. ],
  8598. "time": "2024-09-17T14:58:18+00:00"
  8599. },
  8600. {
  8601. "name": "symfony/polyfill-intl-grapheme",
  8602. "version": "v1.33.0",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8606. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8611. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "php": ">=7.2"
  8616. },
  8617. "suggest": {
  8618. "ext-intl": "For best performance"
  8619. },
  8620. "type": "library",
  8621. "extra": {
  8622. "thanks": {
  8623. "url": "https://github.com/symfony/polyfill",
  8624. "name": "symfony/polyfill"
  8625. }
  8626. },
  8627. "autoload": {
  8628. "files": [
  8629. "bootstrap.php"
  8630. ],
  8631. "psr-4": {
  8632. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8633. }
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "MIT"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Nicolas Grekas",
  8642. "email": "p@tchwork.com"
  8643. },
  8644. {
  8645. "name": "Symfony Community",
  8646. "homepage": "https://symfony.com/contributors"
  8647. }
  8648. ],
  8649. "description": "Symfony polyfill for intl's grapheme_* functions",
  8650. "homepage": "https://symfony.com",
  8651. "keywords": [
  8652. "compatibility",
  8653. "grapheme",
  8654. "intl",
  8655. "polyfill",
  8656. "portable",
  8657. "shim"
  8658. ],
  8659. "support": {
  8660. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  8661. },
  8662. "funding": [
  8663. {
  8664. "url": "https://symfony.com/sponsor",
  8665. "type": "custom"
  8666. },
  8667. {
  8668. "url": "https://github.com/fabpot",
  8669. "type": "github"
  8670. },
  8671. {
  8672. "url": "https://github.com/nicolas-grekas",
  8673. "type": "github"
  8674. },
  8675. {
  8676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8677. "type": "tidelift"
  8678. }
  8679. ],
  8680. "time": "2025-06-27T09:58:17+00:00"
  8681. },
  8682. {
  8683. "name": "symfony/polyfill-intl-idn",
  8684. "version": "v1.33.0",
  8685. "source": {
  8686. "type": "git",
  8687. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8688. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  8689. },
  8690. "dist": {
  8691. "type": "zip",
  8692. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8693. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8694. "shasum": ""
  8695. },
  8696. "require": {
  8697. "php": ">=7.2",
  8698. "symfony/polyfill-intl-normalizer": "^1.10"
  8699. },
  8700. "suggest": {
  8701. "ext-intl": "For best performance"
  8702. },
  8703. "type": "library",
  8704. "extra": {
  8705. "thanks": {
  8706. "url": "https://github.com/symfony/polyfill",
  8707. "name": "symfony/polyfill"
  8708. }
  8709. },
  8710. "autoload": {
  8711. "files": [
  8712. "bootstrap.php"
  8713. ],
  8714. "psr-4": {
  8715. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8716. }
  8717. },
  8718. "notification-url": "https://packagist.org/downloads/",
  8719. "license": [
  8720. "MIT"
  8721. ],
  8722. "authors": [
  8723. {
  8724. "name": "Laurent Bassin",
  8725. "email": "laurent@bassin.info"
  8726. },
  8727. {
  8728. "name": "Trevor Rowbotham",
  8729. "email": "trevor.rowbotham@pm.me"
  8730. },
  8731. {
  8732. "name": "Symfony Community",
  8733. "homepage": "https://symfony.com/contributors"
  8734. }
  8735. ],
  8736. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8737. "homepage": "https://symfony.com",
  8738. "keywords": [
  8739. "compatibility",
  8740. "idn",
  8741. "intl",
  8742. "polyfill",
  8743. "portable",
  8744. "shim"
  8745. ],
  8746. "support": {
  8747. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  8748. },
  8749. "funding": [
  8750. {
  8751. "url": "https://symfony.com/sponsor",
  8752. "type": "custom"
  8753. },
  8754. {
  8755. "url": "https://github.com/fabpot",
  8756. "type": "github"
  8757. },
  8758. {
  8759. "url": "https://github.com/nicolas-grekas",
  8760. "type": "github"
  8761. },
  8762. {
  8763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8764. "type": "tidelift"
  8765. }
  8766. ],
  8767. "time": "2024-09-10T14:38:51+00:00"
  8768. },
  8769. {
  8770. "name": "symfony/polyfill-intl-normalizer",
  8771. "version": "v1.33.0",
  8772. "source": {
  8773. "type": "git",
  8774. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8775. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8776. },
  8777. "dist": {
  8778. "type": "zip",
  8779. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8780. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8781. "shasum": ""
  8782. },
  8783. "require": {
  8784. "php": ">=7.2"
  8785. },
  8786. "suggest": {
  8787. "ext-intl": "For best performance"
  8788. },
  8789. "type": "library",
  8790. "extra": {
  8791. "thanks": {
  8792. "url": "https://github.com/symfony/polyfill",
  8793. "name": "symfony/polyfill"
  8794. }
  8795. },
  8796. "autoload": {
  8797. "files": [
  8798. "bootstrap.php"
  8799. ],
  8800. "psr-4": {
  8801. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8802. },
  8803. "classmap": [
  8804. "Resources/stubs"
  8805. ]
  8806. },
  8807. "notification-url": "https://packagist.org/downloads/",
  8808. "license": [
  8809. "MIT"
  8810. ],
  8811. "authors": [
  8812. {
  8813. "name": "Nicolas Grekas",
  8814. "email": "p@tchwork.com"
  8815. },
  8816. {
  8817. "name": "Symfony Community",
  8818. "homepage": "https://symfony.com/contributors"
  8819. }
  8820. ],
  8821. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8822. "homepage": "https://symfony.com",
  8823. "keywords": [
  8824. "compatibility",
  8825. "intl",
  8826. "normalizer",
  8827. "polyfill",
  8828. "portable",
  8829. "shim"
  8830. ],
  8831. "support": {
  8832. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  8833. },
  8834. "funding": [
  8835. {
  8836. "url": "https://symfony.com/sponsor",
  8837. "type": "custom"
  8838. },
  8839. {
  8840. "url": "https://github.com/fabpot",
  8841. "type": "github"
  8842. },
  8843. {
  8844. "url": "https://github.com/nicolas-grekas",
  8845. "type": "github"
  8846. },
  8847. {
  8848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8849. "type": "tidelift"
  8850. }
  8851. ],
  8852. "time": "2024-09-09T11:45:10+00:00"
  8853. },
  8854. {
  8855. "name": "symfony/polyfill-mbstring",
  8856. "version": "v1.33.0",
  8857. "source": {
  8858. "type": "git",
  8859. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8860. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8861. },
  8862. "dist": {
  8863. "type": "zip",
  8864. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8865. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8866. "shasum": ""
  8867. },
  8868. "require": {
  8869. "ext-iconv": "*",
  8870. "php": ">=7.2"
  8871. },
  8872. "provide": {
  8873. "ext-mbstring": "*"
  8874. },
  8875. "suggest": {
  8876. "ext-mbstring": "For best performance"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "thanks": {
  8881. "url": "https://github.com/symfony/polyfill",
  8882. "name": "symfony/polyfill"
  8883. }
  8884. },
  8885. "autoload": {
  8886. "files": [
  8887. "bootstrap.php"
  8888. ],
  8889. "psr-4": {
  8890. "Symfony\\Polyfill\\Mbstring\\": ""
  8891. }
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "MIT"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Nicolas Grekas",
  8900. "email": "p@tchwork.com"
  8901. },
  8902. {
  8903. "name": "Symfony Community",
  8904. "homepage": "https://symfony.com/contributors"
  8905. }
  8906. ],
  8907. "description": "Symfony polyfill for the Mbstring extension",
  8908. "homepage": "https://symfony.com",
  8909. "keywords": [
  8910. "compatibility",
  8911. "mbstring",
  8912. "polyfill",
  8913. "portable",
  8914. "shim"
  8915. ],
  8916. "support": {
  8917. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  8918. },
  8919. "funding": [
  8920. {
  8921. "url": "https://symfony.com/sponsor",
  8922. "type": "custom"
  8923. },
  8924. {
  8925. "url": "https://github.com/fabpot",
  8926. "type": "github"
  8927. },
  8928. {
  8929. "url": "https://github.com/nicolas-grekas",
  8930. "type": "github"
  8931. },
  8932. {
  8933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8934. "type": "tidelift"
  8935. }
  8936. ],
  8937. "time": "2024-12-23T08:48:59+00:00"
  8938. },
  8939. {
  8940. "name": "symfony/polyfill-php81",
  8941. "version": "v1.33.0",
  8942. "source": {
  8943. "type": "git",
  8944. "url": "https://github.com/symfony/polyfill-php81.git",
  8945. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  8946. },
  8947. "dist": {
  8948. "type": "zip",
  8949. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8950. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8951. "shasum": ""
  8952. },
  8953. "require": {
  8954. "php": ">=7.2"
  8955. },
  8956. "type": "library",
  8957. "extra": {
  8958. "thanks": {
  8959. "url": "https://github.com/symfony/polyfill",
  8960. "name": "symfony/polyfill"
  8961. }
  8962. },
  8963. "autoload": {
  8964. "files": [
  8965. "bootstrap.php"
  8966. ],
  8967. "psr-4": {
  8968. "Symfony\\Polyfill\\Php81\\": ""
  8969. },
  8970. "classmap": [
  8971. "Resources/stubs"
  8972. ]
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "MIT"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Nicolas Grekas",
  8981. "email": "p@tchwork.com"
  8982. },
  8983. {
  8984. "name": "Symfony Community",
  8985. "homepage": "https://symfony.com/contributors"
  8986. }
  8987. ],
  8988. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8989. "homepage": "https://symfony.com",
  8990. "keywords": [
  8991. "compatibility",
  8992. "polyfill",
  8993. "portable",
  8994. "shim"
  8995. ],
  8996. "support": {
  8997. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  8998. },
  8999. "funding": [
  9000. {
  9001. "url": "https://symfony.com/sponsor",
  9002. "type": "custom"
  9003. },
  9004. {
  9005. "url": "https://github.com/fabpot",
  9006. "type": "github"
  9007. },
  9008. {
  9009. "url": "https://github.com/nicolas-grekas",
  9010. "type": "github"
  9011. },
  9012. {
  9013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9014. "type": "tidelift"
  9015. }
  9016. ],
  9017. "time": "2024-09-09T11:45:10+00:00"
  9018. },
  9019. {
  9020. "name": "symfony/polyfill-php83",
  9021. "version": "v1.33.0",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/symfony/polyfill-php83.git",
  9025. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9030. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "php": ">=7.2"
  9035. },
  9036. "type": "library",
  9037. "extra": {
  9038. "thanks": {
  9039. "url": "https://github.com/symfony/polyfill",
  9040. "name": "symfony/polyfill"
  9041. }
  9042. },
  9043. "autoload": {
  9044. "files": [
  9045. "bootstrap.php"
  9046. ],
  9047. "psr-4": {
  9048. "Symfony\\Polyfill\\Php83\\": ""
  9049. },
  9050. "classmap": [
  9051. "Resources/stubs"
  9052. ]
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "MIT"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Nicolas Grekas",
  9061. "email": "p@tchwork.com"
  9062. },
  9063. {
  9064. "name": "Symfony Community",
  9065. "homepage": "https://symfony.com/contributors"
  9066. }
  9067. ],
  9068. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9069. "homepage": "https://symfony.com",
  9070. "keywords": [
  9071. "compatibility",
  9072. "polyfill",
  9073. "portable",
  9074. "shim"
  9075. ],
  9076. "support": {
  9077. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  9078. },
  9079. "funding": [
  9080. {
  9081. "url": "https://symfony.com/sponsor",
  9082. "type": "custom"
  9083. },
  9084. {
  9085. "url": "https://github.com/fabpot",
  9086. "type": "github"
  9087. },
  9088. {
  9089. "url": "https://github.com/nicolas-grekas",
  9090. "type": "github"
  9091. },
  9092. {
  9093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9094. "type": "tidelift"
  9095. }
  9096. ],
  9097. "time": "2025-07-08T02:45:35+00:00"
  9098. },
  9099. {
  9100. "name": "symfony/process",
  9101. "version": "v6.4.33",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/symfony/process.git",
  9105. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  9110. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "php": ">=8.1"
  9115. },
  9116. "type": "library",
  9117. "autoload": {
  9118. "psr-4": {
  9119. "Symfony\\Component\\Process\\": ""
  9120. },
  9121. "exclude-from-classmap": [
  9122. "/Tests/"
  9123. ]
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "MIT"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Fabien Potencier",
  9132. "email": "fabien@symfony.com"
  9133. },
  9134. {
  9135. "name": "Symfony Community",
  9136. "homepage": "https://symfony.com/contributors"
  9137. }
  9138. ],
  9139. "description": "Executes commands in sub-processes",
  9140. "homepage": "https://symfony.com",
  9141. "support": {
  9142. "source": "https://github.com/symfony/process/tree/v6.4.33"
  9143. },
  9144. "funding": [
  9145. {
  9146. "url": "https://symfony.com/sponsor",
  9147. "type": "custom"
  9148. },
  9149. {
  9150. "url": "https://github.com/fabpot",
  9151. "type": "github"
  9152. },
  9153. {
  9154. "url": "https://github.com/nicolas-grekas",
  9155. "type": "github"
  9156. },
  9157. {
  9158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9159. "type": "tidelift"
  9160. }
  9161. ],
  9162. "time": "2026-01-23T16:02:12+00:00"
  9163. },
  9164. {
  9165. "name": "symfony/psr-http-message-bridge",
  9166. "version": "v6.4.32",
  9167. "source": {
  9168. "type": "git",
  9169. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9170. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  9171. },
  9172. "dist": {
  9173. "type": "zip",
  9174. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  9175. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  9176. "shasum": ""
  9177. },
  9178. "require": {
  9179. "php": ">=8.1",
  9180. "psr/http-message": "^1.0|^2.0",
  9181. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9182. },
  9183. "conflict": {
  9184. "php-http/discovery": "<1.15",
  9185. "symfony/http-kernel": "<6.2"
  9186. },
  9187. "require-dev": {
  9188. "nyholm/psr7": "^1.1",
  9189. "php-http/discovery": "^1.15",
  9190. "psr/log": "^1.1.4|^2|^3",
  9191. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9192. "symfony/config": "^5.4|^6.0|^7.0",
  9193. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9194. "symfony/framework-bundle": "^6.2|^7.0",
  9195. "symfony/http-kernel": "^6.2|^7.0"
  9196. },
  9197. "type": "symfony-bridge",
  9198. "autoload": {
  9199. "psr-4": {
  9200. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9201. },
  9202. "exclude-from-classmap": [
  9203. "/Tests/"
  9204. ]
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Fabien Potencier",
  9213. "email": "fabien@symfony.com"
  9214. },
  9215. {
  9216. "name": "Symfony Community",
  9217. "homepage": "https://symfony.com/contributors"
  9218. }
  9219. ],
  9220. "description": "PSR HTTP message bridge",
  9221. "homepage": "https://symfony.com",
  9222. "keywords": [
  9223. "http",
  9224. "http-message",
  9225. "psr-17",
  9226. "psr-7"
  9227. ],
  9228. "support": {
  9229. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  9230. },
  9231. "funding": [
  9232. {
  9233. "url": "https://symfony.com/sponsor",
  9234. "type": "custom"
  9235. },
  9236. {
  9237. "url": "https://github.com/fabpot",
  9238. "type": "github"
  9239. },
  9240. {
  9241. "url": "https://github.com/nicolas-grekas",
  9242. "type": "github"
  9243. },
  9244. {
  9245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9246. "type": "tidelift"
  9247. }
  9248. ],
  9249. "time": "2026-01-02T11:59:06+00:00"
  9250. },
  9251. {
  9252. "name": "symfony/routing",
  9253. "version": "v6.4.34",
  9254. "source": {
  9255. "type": "git",
  9256. "url": "https://github.com/symfony/routing.git",
  9257. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  9258. },
  9259. "dist": {
  9260. "type": "zip",
  9261. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9262. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9263. "shasum": ""
  9264. },
  9265. "require": {
  9266. "php": ">=8.1",
  9267. "symfony/deprecation-contracts": "^2.5|^3"
  9268. },
  9269. "conflict": {
  9270. "doctrine/annotations": "<1.12",
  9271. "symfony/config": "<6.2",
  9272. "symfony/dependency-injection": "<5.4",
  9273. "symfony/yaml": "<5.4"
  9274. },
  9275. "require-dev": {
  9276. "doctrine/annotations": "^1.12|^2",
  9277. "psr/log": "^1|^2|^3",
  9278. "symfony/config": "^6.2|^7.0",
  9279. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9280. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9281. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9282. "symfony/yaml": "^5.4|^6.0|^7.0"
  9283. },
  9284. "type": "library",
  9285. "autoload": {
  9286. "psr-4": {
  9287. "Symfony\\Component\\Routing\\": ""
  9288. },
  9289. "exclude-from-classmap": [
  9290. "/Tests/"
  9291. ]
  9292. },
  9293. "notification-url": "https://packagist.org/downloads/",
  9294. "license": [
  9295. "MIT"
  9296. ],
  9297. "authors": [
  9298. {
  9299. "name": "Fabien Potencier",
  9300. "email": "fabien@symfony.com"
  9301. },
  9302. {
  9303. "name": "Symfony Community",
  9304. "homepage": "https://symfony.com/contributors"
  9305. }
  9306. ],
  9307. "description": "Maps an HTTP request to a set of configuration variables",
  9308. "homepage": "https://symfony.com",
  9309. "keywords": [
  9310. "router",
  9311. "routing",
  9312. "uri",
  9313. "url"
  9314. ],
  9315. "support": {
  9316. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  9317. },
  9318. "funding": [
  9319. {
  9320. "url": "https://symfony.com/sponsor",
  9321. "type": "custom"
  9322. },
  9323. {
  9324. "url": "https://github.com/fabpot",
  9325. "type": "github"
  9326. },
  9327. {
  9328. "url": "https://github.com/nicolas-grekas",
  9329. "type": "github"
  9330. },
  9331. {
  9332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9333. "type": "tidelift"
  9334. }
  9335. ],
  9336. "time": "2026-02-24T17:34:50+00:00"
  9337. },
  9338. {
  9339. "name": "symfony/serializer",
  9340. "version": "v6.4.35",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/symfony/serializer.git",
  9344. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  9349. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  9350. "shasum": ""
  9351. },
  9352. "require": {
  9353. "php": ">=8.1",
  9354. "symfony/deprecation-contracts": "^2.5|^3",
  9355. "symfony/polyfill-ctype": "~1.8"
  9356. },
  9357. "conflict": {
  9358. "doctrine/annotations": "<1.12",
  9359. "phpdocumentor/reflection-docblock": "<3.2.2",
  9360. "phpdocumentor/type-resolver": "<1.4.0",
  9361. "symfony/dependency-injection": "<5.4",
  9362. "symfony/property-access": "<5.4",
  9363. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9364. "symfony/uid": "<5.4",
  9365. "symfony/validator": "<6.4",
  9366. "symfony/yaml": "<5.4"
  9367. },
  9368. "require-dev": {
  9369. "doctrine/annotations": "^1.12|^2",
  9370. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9371. "seld/jsonlint": "^1.10",
  9372. "symfony/cache": "^5.4|^6.0|^7.0",
  9373. "symfony/config": "^5.4|^6.0|^7.0",
  9374. "symfony/console": "^5.4|^6.0|^7.0",
  9375. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9376. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9377. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9378. "symfony/form": "^5.4|^6.0|^7.0",
  9379. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9380. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9381. "symfony/messenger": "^5.4|^6.0|^7.0",
  9382. "symfony/mime": "^5.4|^6.0|^7.0",
  9383. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9384. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9385. "symfony/translation-contracts": "^2.5|^3",
  9386. "symfony/uid": "^5.4|^6.0|^7.0",
  9387. "symfony/validator": "^6.4|^7.0",
  9388. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9389. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9390. "symfony/yaml": "^5.4|^6.0|^7.0"
  9391. },
  9392. "type": "library",
  9393. "autoload": {
  9394. "psr-4": {
  9395. "Symfony\\Component\\Serializer\\": ""
  9396. },
  9397. "exclude-from-classmap": [
  9398. "/Tests/"
  9399. ]
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "MIT"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "Fabien Potencier",
  9408. "email": "fabien@symfony.com"
  9409. },
  9410. {
  9411. "name": "Symfony Community",
  9412. "homepage": "https://symfony.com/contributors"
  9413. }
  9414. ],
  9415. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9416. "homepage": "https://symfony.com",
  9417. "support": {
  9418. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  9419. },
  9420. "funding": [
  9421. {
  9422. "url": "https://symfony.com/sponsor",
  9423. "type": "custom"
  9424. },
  9425. {
  9426. "url": "https://github.com/fabpot",
  9427. "type": "github"
  9428. },
  9429. {
  9430. "url": "https://github.com/nicolas-grekas",
  9431. "type": "github"
  9432. },
  9433. {
  9434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9435. "type": "tidelift"
  9436. }
  9437. ],
  9438. "time": "2026-03-06T11:03:24+00:00"
  9439. },
  9440. {
  9441. "name": "symfony/service-contracts",
  9442. "version": "v3.6.1",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/symfony/service-contracts.git",
  9446. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  9451. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "php": ">=8.1",
  9456. "psr/container": "^1.1|^2.0",
  9457. "symfony/deprecation-contracts": "^2.5|^3"
  9458. },
  9459. "conflict": {
  9460. "ext-psr": "<1.1|>=2"
  9461. },
  9462. "type": "library",
  9463. "extra": {
  9464. "thanks": {
  9465. "url": "https://github.com/symfony/contracts",
  9466. "name": "symfony/contracts"
  9467. },
  9468. "branch-alias": {
  9469. "dev-main": "3.6-dev"
  9470. }
  9471. },
  9472. "autoload": {
  9473. "psr-4": {
  9474. "Symfony\\Contracts\\Service\\": ""
  9475. },
  9476. "exclude-from-classmap": [
  9477. "/Test/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Nicolas Grekas",
  9487. "email": "p@tchwork.com"
  9488. },
  9489. {
  9490. "name": "Symfony Community",
  9491. "homepage": "https://symfony.com/contributors"
  9492. }
  9493. ],
  9494. "description": "Generic abstractions related to writing services",
  9495. "homepage": "https://symfony.com",
  9496. "keywords": [
  9497. "abstractions",
  9498. "contracts",
  9499. "decoupling",
  9500. "interfaces",
  9501. "interoperability",
  9502. "standards"
  9503. ],
  9504. "support": {
  9505. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  9506. },
  9507. "funding": [
  9508. {
  9509. "url": "https://symfony.com/sponsor",
  9510. "type": "custom"
  9511. },
  9512. {
  9513. "url": "https://github.com/fabpot",
  9514. "type": "github"
  9515. },
  9516. {
  9517. "url": "https://github.com/nicolas-grekas",
  9518. "type": "github"
  9519. },
  9520. {
  9521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9522. "type": "tidelift"
  9523. }
  9524. ],
  9525. "time": "2025-07-15T11:30:57+00:00"
  9526. },
  9527. {
  9528. "name": "symfony/string",
  9529. "version": "v6.4.34",
  9530. "source": {
  9531. "type": "git",
  9532. "url": "https://github.com/symfony/string.git",
  9533. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  9534. },
  9535. "dist": {
  9536. "type": "zip",
  9537. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9538. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9539. "shasum": ""
  9540. },
  9541. "require": {
  9542. "php": ">=8.1",
  9543. "symfony/polyfill-ctype": "~1.8",
  9544. "symfony/polyfill-intl-grapheme": "~1.0",
  9545. "symfony/polyfill-intl-normalizer": "~1.0",
  9546. "symfony/polyfill-mbstring": "~1.0"
  9547. },
  9548. "conflict": {
  9549. "symfony/translation-contracts": "<2.5"
  9550. },
  9551. "require-dev": {
  9552. "symfony/http-client": "^5.4|^6.0|^7.0",
  9553. "symfony/intl": "^6.2|^7.0",
  9554. "symfony/translation-contracts": "^2.5|^3.0",
  9555. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9556. },
  9557. "type": "library",
  9558. "autoload": {
  9559. "files": [
  9560. "Resources/functions.php"
  9561. ],
  9562. "psr-4": {
  9563. "Symfony\\Component\\String\\": ""
  9564. },
  9565. "exclude-from-classmap": [
  9566. "/Tests/"
  9567. ]
  9568. },
  9569. "notification-url": "https://packagist.org/downloads/",
  9570. "license": [
  9571. "MIT"
  9572. ],
  9573. "authors": [
  9574. {
  9575. "name": "Nicolas Grekas",
  9576. "email": "p@tchwork.com"
  9577. },
  9578. {
  9579. "name": "Symfony Community",
  9580. "homepage": "https://symfony.com/contributors"
  9581. }
  9582. ],
  9583. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9584. "homepage": "https://symfony.com",
  9585. "keywords": [
  9586. "grapheme",
  9587. "i18n",
  9588. "string",
  9589. "unicode",
  9590. "utf-8",
  9591. "utf8"
  9592. ],
  9593. "support": {
  9594. "source": "https://github.com/symfony/string/tree/v6.4.34"
  9595. },
  9596. "funding": [
  9597. {
  9598. "url": "https://symfony.com/sponsor",
  9599. "type": "custom"
  9600. },
  9601. {
  9602. "url": "https://github.com/fabpot",
  9603. "type": "github"
  9604. },
  9605. {
  9606. "url": "https://github.com/nicolas-grekas",
  9607. "type": "github"
  9608. },
  9609. {
  9610. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9611. "type": "tidelift"
  9612. }
  9613. ],
  9614. "time": "2026-02-08T20:44:54+00:00"
  9615. },
  9616. {
  9617. "name": "symfony/translation-contracts",
  9618. "version": "v3.6.1",
  9619. "source": {
  9620. "type": "git",
  9621. "url": "https://github.com/symfony/translation-contracts.git",
  9622. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  9623. },
  9624. "dist": {
  9625. "type": "zip",
  9626. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  9627. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  9628. "shasum": ""
  9629. },
  9630. "require": {
  9631. "php": ">=8.1"
  9632. },
  9633. "type": "library",
  9634. "extra": {
  9635. "thanks": {
  9636. "url": "https://github.com/symfony/contracts",
  9637. "name": "symfony/contracts"
  9638. },
  9639. "branch-alias": {
  9640. "dev-main": "3.6-dev"
  9641. }
  9642. },
  9643. "autoload": {
  9644. "psr-4": {
  9645. "Symfony\\Contracts\\Translation\\": ""
  9646. },
  9647. "exclude-from-classmap": [
  9648. "/Test/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Nicolas Grekas",
  9658. "email": "p@tchwork.com"
  9659. },
  9660. {
  9661. "name": "Symfony Community",
  9662. "homepage": "https://symfony.com/contributors"
  9663. }
  9664. ],
  9665. "description": "Generic abstractions related to translation",
  9666. "homepage": "https://symfony.com",
  9667. "keywords": [
  9668. "abstractions",
  9669. "contracts",
  9670. "decoupling",
  9671. "interfaces",
  9672. "interoperability",
  9673. "standards"
  9674. ],
  9675. "support": {
  9676. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://symfony.com/sponsor",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/fabpot",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://github.com/nicolas-grekas",
  9689. "type": "github"
  9690. },
  9691. {
  9692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9693. "type": "tidelift"
  9694. }
  9695. ],
  9696. "time": "2025-07-15T13:41:35+00:00"
  9697. },
  9698. {
  9699. "name": "symfony/validator",
  9700. "version": "v6.4.35",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/symfony/validator.git",
  9704. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9709. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": ">=8.1",
  9714. "symfony/deprecation-contracts": "^2.5|^3",
  9715. "symfony/polyfill-ctype": "~1.8",
  9716. "symfony/polyfill-mbstring": "~1.0",
  9717. "symfony/polyfill-php83": "^1.27",
  9718. "symfony/translation-contracts": "^2.5|^3"
  9719. },
  9720. "conflict": {
  9721. "doctrine/annotations": "<1.13",
  9722. "doctrine/lexer": "<1.1",
  9723. "symfony/dependency-injection": "<5.4",
  9724. "symfony/expression-language": "<5.4",
  9725. "symfony/http-kernel": "<5.4",
  9726. "symfony/intl": "<5.4",
  9727. "symfony/property-info": "<5.4",
  9728. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9729. "symfony/yaml": "<5.4"
  9730. },
  9731. "require-dev": {
  9732. "doctrine/annotations": "^1.13|^2",
  9733. "egulias/email-validator": "^2.1.10|^3|^4",
  9734. "symfony/cache": "^5.4|^6.0|^7.0",
  9735. "symfony/config": "^5.4|^6.0|^7.0",
  9736. "symfony/console": "^5.4|^6.0|^7.0",
  9737. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9738. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9739. "symfony/finder": "^5.4|^6.0|^7.0",
  9740. "symfony/http-client": "^5.4|^6.0|^7.0",
  9741. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9742. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9743. "symfony/intl": "^5.4|^6.0|^7.0",
  9744. "symfony/mime": "^5.4|^6.0|^7.0",
  9745. "symfony/property-access": "^5.4|^6.0|^7.0",
  9746. "symfony/property-info": "^5.4|^6.0|^7.0",
  9747. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9748. "symfony/yaml": "^5.4|^6.0|^7.0"
  9749. },
  9750. "type": "library",
  9751. "autoload": {
  9752. "psr-4": {
  9753. "Symfony\\Component\\Validator\\": ""
  9754. },
  9755. "exclude-from-classmap": [
  9756. "/Tests/",
  9757. "/Resources/bin/"
  9758. ]
  9759. },
  9760. "notification-url": "https://packagist.org/downloads/",
  9761. "license": [
  9762. "MIT"
  9763. ],
  9764. "authors": [
  9765. {
  9766. "name": "Fabien Potencier",
  9767. "email": "fabien@symfony.com"
  9768. },
  9769. {
  9770. "name": "Symfony Community",
  9771. "homepage": "https://symfony.com/contributors"
  9772. }
  9773. ],
  9774. "description": "Provides tools to validate values",
  9775. "homepage": "https://symfony.com",
  9776. "support": {
  9777. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  9778. },
  9779. "funding": [
  9780. {
  9781. "url": "https://symfony.com/sponsor",
  9782. "type": "custom"
  9783. },
  9784. {
  9785. "url": "https://github.com/fabpot",
  9786. "type": "github"
  9787. },
  9788. {
  9789. "url": "https://github.com/nicolas-grekas",
  9790. "type": "github"
  9791. },
  9792. {
  9793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9794. "type": "tidelift"
  9795. }
  9796. ],
  9797. "time": "2026-03-02T17:53:19+00:00"
  9798. },
  9799. {
  9800. "name": "symfony/var-dumper",
  9801. "version": "v6.4.32",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/symfony/var-dumper.git",
  9805. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  9810. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  9811. "shasum": ""
  9812. },
  9813. "require": {
  9814. "php": ">=8.1",
  9815. "symfony/deprecation-contracts": "^2.5|^3",
  9816. "symfony/polyfill-mbstring": "~1.0"
  9817. },
  9818. "conflict": {
  9819. "symfony/console": "<5.4"
  9820. },
  9821. "require-dev": {
  9822. "symfony/console": "^5.4|^6.0|^7.0",
  9823. "symfony/error-handler": "^6.3|^7.0",
  9824. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9825. "symfony/process": "^5.4|^6.0|^7.0",
  9826. "symfony/uid": "^5.4|^6.0|^7.0",
  9827. "twig/twig": "^2.13|^3.0.4"
  9828. },
  9829. "bin": [
  9830. "Resources/bin/var-dump-server"
  9831. ],
  9832. "type": "library",
  9833. "autoload": {
  9834. "files": [
  9835. "Resources/functions/dump.php"
  9836. ],
  9837. "psr-4": {
  9838. "Symfony\\Component\\VarDumper\\": ""
  9839. },
  9840. "exclude-from-classmap": [
  9841. "/Tests/"
  9842. ]
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "MIT"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Nicolas Grekas",
  9851. "email": "p@tchwork.com"
  9852. },
  9853. {
  9854. "name": "Symfony Community",
  9855. "homepage": "https://symfony.com/contributors"
  9856. }
  9857. ],
  9858. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9859. "homepage": "https://symfony.com",
  9860. "keywords": [
  9861. "debug",
  9862. "dump"
  9863. ],
  9864. "support": {
  9865. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  9866. },
  9867. "funding": [
  9868. {
  9869. "url": "https://symfony.com/sponsor",
  9870. "type": "custom"
  9871. },
  9872. {
  9873. "url": "https://github.com/fabpot",
  9874. "type": "github"
  9875. },
  9876. {
  9877. "url": "https://github.com/nicolas-grekas",
  9878. "type": "github"
  9879. },
  9880. {
  9881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9882. "type": "tidelift"
  9883. }
  9884. ],
  9885. "time": "2026-01-01T13:34:06+00:00"
  9886. },
  9887. {
  9888. "name": "symfony/var-exporter",
  9889. "version": "v6.4.26",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/symfony/var-exporter.git",
  9893. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9898. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "php": ">=8.1",
  9903. "symfony/deprecation-contracts": "^2.5|^3"
  9904. },
  9905. "require-dev": {
  9906. "symfony/property-access": "^6.4|^7.0",
  9907. "symfony/serializer": "^6.4|^7.0",
  9908. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9909. },
  9910. "type": "library",
  9911. "autoload": {
  9912. "psr-4": {
  9913. "Symfony\\Component\\VarExporter\\": ""
  9914. },
  9915. "exclude-from-classmap": [
  9916. "/Tests/"
  9917. ]
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "MIT"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Nicolas Grekas",
  9926. "email": "p@tchwork.com"
  9927. },
  9928. {
  9929. "name": "Symfony Community",
  9930. "homepage": "https://symfony.com/contributors"
  9931. }
  9932. ],
  9933. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9934. "homepage": "https://symfony.com",
  9935. "keywords": [
  9936. "clone",
  9937. "construct",
  9938. "export",
  9939. "hydrate",
  9940. "instantiate",
  9941. "lazy-loading",
  9942. "proxy",
  9943. "serialize"
  9944. ],
  9945. "support": {
  9946. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  9947. },
  9948. "funding": [
  9949. {
  9950. "url": "https://symfony.com/sponsor",
  9951. "type": "custom"
  9952. },
  9953. {
  9954. "url": "https://github.com/fabpot",
  9955. "type": "github"
  9956. },
  9957. {
  9958. "url": "https://github.com/nicolas-grekas",
  9959. "type": "github"
  9960. },
  9961. {
  9962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9963. "type": "tidelift"
  9964. }
  9965. ],
  9966. "time": "2025-09-11T09:57:09+00:00"
  9967. },
  9968. {
  9969. "name": "symfony/yaml",
  9970. "version": "v6.4.34",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/symfony/yaml.git",
  9974. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  9979. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  9980. "shasum": ""
  9981. },
  9982. "require": {
  9983. "php": ">=8.1",
  9984. "symfony/deprecation-contracts": "^2.5|^3",
  9985. "symfony/polyfill-ctype": "^1.8"
  9986. },
  9987. "conflict": {
  9988. "symfony/console": "<5.4"
  9989. },
  9990. "require-dev": {
  9991. "symfony/console": "^5.4|^6.0|^7.0"
  9992. },
  9993. "bin": [
  9994. "Resources/bin/yaml-lint"
  9995. ],
  9996. "type": "library",
  9997. "autoload": {
  9998. "psr-4": {
  9999. "Symfony\\Component\\Yaml\\": ""
  10000. },
  10001. "exclude-from-classmap": [
  10002. "/Tests/"
  10003. ]
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "MIT"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Fabien Potencier",
  10012. "email": "fabien@symfony.com"
  10013. },
  10014. {
  10015. "name": "Symfony Community",
  10016. "homepage": "https://symfony.com/contributors"
  10017. }
  10018. ],
  10019. "description": "Loads and dumps YAML files",
  10020. "homepage": "https://symfony.com",
  10021. "support": {
  10022. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://symfony.com/sponsor",
  10027. "type": "custom"
  10028. },
  10029. {
  10030. "url": "https://github.com/fabpot",
  10031. "type": "github"
  10032. },
  10033. {
  10034. "url": "https://github.com/nicolas-grekas",
  10035. "type": "github"
  10036. },
  10037. {
  10038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10039. "type": "tidelift"
  10040. }
  10041. ],
  10042. "time": "2026-02-06T18:32:11+00:00"
  10043. },
  10044. {
  10045. "name": "twig/twig",
  10046. "version": "v3.22.2",
  10047. "source": {
  10048. "type": "git",
  10049. "url": "https://github.com/twigphp/Twig.git",
  10050. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  10051. },
  10052. "dist": {
  10053. "type": "zip",
  10054. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10055. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10056. "shasum": ""
  10057. },
  10058. "require": {
  10059. "php": ">=8.1.0",
  10060. "symfony/deprecation-contracts": "^2.5|^3",
  10061. "symfony/polyfill-ctype": "^1.8",
  10062. "symfony/polyfill-mbstring": "^1.3"
  10063. },
  10064. "require-dev": {
  10065. "phpstan/phpstan": "^2.0",
  10066. "psr/container": "^1.0|^2.0",
  10067. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10068. },
  10069. "type": "library",
  10070. "autoload": {
  10071. "files": [
  10072. "src/Resources/core.php",
  10073. "src/Resources/debug.php",
  10074. "src/Resources/escaper.php",
  10075. "src/Resources/string_loader.php"
  10076. ],
  10077. "psr-4": {
  10078. "Twig\\": "src/"
  10079. }
  10080. },
  10081. "notification-url": "https://packagist.org/downloads/",
  10082. "license": [
  10083. "BSD-3-Clause"
  10084. ],
  10085. "authors": [
  10086. {
  10087. "name": "Fabien Potencier",
  10088. "email": "fabien@symfony.com",
  10089. "homepage": "http://fabien.potencier.org",
  10090. "role": "Lead Developer"
  10091. },
  10092. {
  10093. "name": "Twig Team",
  10094. "role": "Contributors"
  10095. },
  10096. {
  10097. "name": "Armin Ronacher",
  10098. "email": "armin.ronacher@active-4.com",
  10099. "role": "Project Founder"
  10100. }
  10101. ],
  10102. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10103. "homepage": "https://twig.symfony.com",
  10104. "keywords": [
  10105. "templating"
  10106. ],
  10107. "support": {
  10108. "issues": "https://github.com/twigphp/Twig/issues",
  10109. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  10110. },
  10111. "funding": [
  10112. {
  10113. "url": "https://github.com/fabpot",
  10114. "type": "github"
  10115. },
  10116. {
  10117. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10118. "type": "tidelift"
  10119. }
  10120. ],
  10121. "time": "2025-12-14T11:28:47+00:00"
  10122. },
  10123. {
  10124. "name": "vlucas/phpdotenv",
  10125. "version": "v2.6.9",
  10126. "source": {
  10127. "type": "git",
  10128. "url": "https://github.com/vlucas/phpdotenv.git",
  10129. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10130. },
  10131. "dist": {
  10132. "type": "zip",
  10133. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10134. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10135. "shasum": ""
  10136. },
  10137. "require": {
  10138. "php": "^5.3.9 || ^7.0 || ^8.0",
  10139. "symfony/polyfill-ctype": "^1.17"
  10140. },
  10141. "require-dev": {
  10142. "ext-filter": "*",
  10143. "ext-pcre": "*",
  10144. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10145. },
  10146. "suggest": {
  10147. "ext-filter": "Required to use the boolean validator.",
  10148. "ext-pcre": "Required to use most of the library."
  10149. },
  10150. "type": "library",
  10151. "extra": {
  10152. "branch-alias": {
  10153. "dev-master": "2.6-dev"
  10154. }
  10155. },
  10156. "autoload": {
  10157. "psr-4": {
  10158. "Dotenv\\": "src/"
  10159. }
  10160. },
  10161. "notification-url": "https://packagist.org/downloads/",
  10162. "license": [
  10163. "BSD-3-Clause"
  10164. ],
  10165. "authors": [
  10166. {
  10167. "name": "Graham Campbell",
  10168. "email": "hello@gjcampbell.co.uk",
  10169. "homepage": "https://github.com/GrahamCampbell"
  10170. },
  10171. {
  10172. "name": "Vance Lucas",
  10173. "email": "vance@vancelucas.com",
  10174. "homepage": "https://github.com/vlucas"
  10175. }
  10176. ],
  10177. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10178. "keywords": [
  10179. "dotenv",
  10180. "env",
  10181. "environment"
  10182. ],
  10183. "support": {
  10184. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10185. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10186. },
  10187. "funding": [
  10188. {
  10189. "url": "https://github.com/GrahamCampbell",
  10190. "type": "github"
  10191. },
  10192. {
  10193. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10194. "type": "tidelift"
  10195. }
  10196. ],
  10197. "time": "2021-12-12T22:59:22+00:00"
  10198. },
  10199. {
  10200. "name": "webflo/drupal-finder",
  10201. "version": "1.3.1",
  10202. "source": {
  10203. "type": "git",
  10204. "url": "https://github.com/webflo/drupal-finder.git",
  10205. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10206. },
  10207. "dist": {
  10208. "type": "zip",
  10209. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10210. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10211. "shasum": ""
  10212. },
  10213. "require": {
  10214. "composer-runtime-api": "^2.2",
  10215. "php": ">=8.1"
  10216. },
  10217. "require-dev": {
  10218. "mikey179/vfsstream": "^1.6",
  10219. "phpunit/phpunit": "^10.4",
  10220. "symfony/process": "^6.4"
  10221. },
  10222. "type": "library",
  10223. "autoload": {
  10224. "psr-4": {
  10225. "DrupalFinder\\": "src/"
  10226. }
  10227. },
  10228. "notification-url": "https://packagist.org/downloads/",
  10229. "license": [
  10230. "GPL-2.0-or-later"
  10231. ],
  10232. "authors": [
  10233. {
  10234. "name": "Florian Weber",
  10235. "email": "florian@webflo.org"
  10236. }
  10237. ],
  10238. "description": "Helper class to locate a Drupal installation.",
  10239. "support": {
  10240. "issues": "https://github.com/webflo/drupal-finder/issues",
  10241. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10242. },
  10243. "time": "2024-06-28T13:45:36+00:00"
  10244. },
  10245. {
  10246. "name": "webmozart/assert",
  10247. "version": "1.12.1",
  10248. "source": {
  10249. "type": "git",
  10250. "url": "https://github.com/webmozarts/assert.git",
  10251. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68"
  10252. },
  10253. "dist": {
  10254. "type": "zip",
  10255. "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68",
  10256. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68",
  10257. "shasum": ""
  10258. },
  10259. "require": {
  10260. "ext-ctype": "*",
  10261. "ext-date": "*",
  10262. "ext-filter": "*",
  10263. "php": "^7.2 || ^8.0"
  10264. },
  10265. "suggest": {
  10266. "ext-intl": "",
  10267. "ext-simplexml": "",
  10268. "ext-spl": ""
  10269. },
  10270. "type": "library",
  10271. "extra": {
  10272. "branch-alias": {
  10273. "dev-master": "1.10-dev"
  10274. }
  10275. },
  10276. "autoload": {
  10277. "psr-4": {
  10278. "Webmozart\\Assert\\": "src/"
  10279. }
  10280. },
  10281. "notification-url": "https://packagist.org/downloads/",
  10282. "license": [
  10283. "MIT"
  10284. ],
  10285. "authors": [
  10286. {
  10287. "name": "Bernhard Schussek",
  10288. "email": "bschussek@gmail.com"
  10289. }
  10290. ],
  10291. "description": "Assertions to validate method input/output with nice error messages.",
  10292. "keywords": [
  10293. "assert",
  10294. "check",
  10295. "validate"
  10296. ],
  10297. "support": {
  10298. "issues": "https://github.com/webmozarts/assert/issues",
  10299. "source": "https://github.com/webmozarts/assert/tree/1.12.1"
  10300. },
  10301. "time": "2025-10-29T15:56:20+00:00"
  10302. },
  10303. {
  10304. "name": "webmozart/path-util",
  10305. "version": "2.3.0",
  10306. "source": {
  10307. "type": "git",
  10308. "url": "https://github.com/webmozart/path-util.git",
  10309. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10310. },
  10311. "dist": {
  10312. "type": "zip",
  10313. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10314. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10315. "shasum": ""
  10316. },
  10317. "require": {
  10318. "php": ">=5.3.3",
  10319. "webmozart/assert": "~1.0"
  10320. },
  10321. "require-dev": {
  10322. "phpunit/phpunit": "^4.6",
  10323. "sebastian/version": "^1.0.1"
  10324. },
  10325. "type": "library",
  10326. "extra": {
  10327. "branch-alias": {
  10328. "dev-master": "2.3-dev"
  10329. }
  10330. },
  10331. "autoload": {
  10332. "psr-4": {
  10333. "Webmozart\\PathUtil\\": "src/"
  10334. }
  10335. },
  10336. "notification-url": "https://packagist.org/downloads/",
  10337. "license": [
  10338. "MIT"
  10339. ],
  10340. "authors": [
  10341. {
  10342. "name": "Bernhard Schussek",
  10343. "email": "bschussek@gmail.com"
  10344. }
  10345. ],
  10346. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10347. "support": {
  10348. "issues": "https://github.com/webmozart/path-util/issues",
  10349. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10350. },
  10351. "abandoned": "symfony/filesystem",
  10352. "time": "2015-12-17T08:42:14+00:00"
  10353. }
  10354. ],
  10355. "packages-dev": [],
  10356. "aliases": [],
  10357. "minimum-stability": "dev",
  10358. "stability-flags": {
  10359. "drupal/basic": 15,
  10360. "drupal/bulkdelete": 20,
  10361. "drupal/config_update": 15,
  10362. "drupal/context": 5,
  10363. "drupal/domain": 10,
  10364. "drupal/filefield_sources": 20,
  10365. "drupal/linkit": 10
  10366. },
  10367. "prefer-stable": true,
  10368. "prefer-lowest": false,
  10369. "platform": {
  10370. "php": ">=5.6"
  10371. },
  10372. "platform-dev": {},
  10373. "plugin-api-version": "2.9.0"
  10374. }