composer.lock 380 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428
  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": "7664d52f97b65df0462e73f08ce4499b",
  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.3",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1445. "reference": "3.6.3"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1450. "reference": "3.6.3",
  1451. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1452. },
  1453. "require": {
  1454. "drupal/core": "^9.5 || ^10 || ^11"
  1455. },
  1456. "conflict": {
  1457. "drupal/project_browser": "<2.1.0"
  1458. },
  1459. "type": "drupal-module",
  1460. "extra": {
  1461. "drupal": {
  1462. "version": "3.6.3",
  1463. "datestamp": "1767318997",
  1464. "security-coverage": {
  1465. "status": "covered",
  1466. "message": "Covered by Drupal's security advisory policy"
  1467. }
  1468. }
  1469. },
  1470. "notification-url": "https://packages.drupal.org/8/downloads",
  1471. "license": [
  1472. "GPL-2.0-or-later"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Wilfrid Roze (eme)",
  1477. "homepage": "https://www.drupal.org/u/eme",
  1478. "role": "Maintainer"
  1479. },
  1480. {
  1481. "name": "Romain Jarraud (romainj)",
  1482. "homepage": "https://www.drupal.org/u/romainj",
  1483. "role": "Maintainer"
  1484. },
  1485. {
  1486. "name": "Adrian Cid Almaguer (adriancid)",
  1487. "homepage": "https://www.drupal.org/u/adriancid",
  1488. "email": "adriancid@gmail.com",
  1489. "role": "Maintainer"
  1490. },
  1491. {
  1492. "name": "Mohamed Anis Taktak (matio89)",
  1493. "homepage": "https://www.drupal.org/u/matio89",
  1494. "role": "Maintainer"
  1495. },
  1496. {
  1497. "name": "David Suissa (DYdave)",
  1498. "homepage": "https://www.drupal.org/u/dydave",
  1499. "role": "Maintainer"
  1500. },
  1501. {
  1502. "name": "japerry",
  1503. "homepage": "https://www.drupal.org/user/45640"
  1504. },
  1505. {
  1506. "name": "matio89",
  1507. "homepage": "https://www.drupal.org/user/2320090"
  1508. },
  1509. {
  1510. "name": "musa.thomas",
  1511. "homepage": "https://www.drupal.org/user/1213824"
  1512. },
  1513. {
  1514. "name": "romainj",
  1515. "homepage": "https://www.drupal.org/user/370706"
  1516. }
  1517. ],
  1518. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1519. "homepage": "http://drupal.org/project/admin_toolbar",
  1520. "keywords": [
  1521. "Drupal",
  1522. "Toolbar"
  1523. ],
  1524. "support": {
  1525. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1526. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1527. }
  1528. },
  1529. {
  1530. "name": "drupal/adminimal_theme",
  1531. "version": "1.7.0",
  1532. "source": {
  1533. "type": "git",
  1534. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1535. "reference": "8.x-1.7"
  1536. },
  1537. "dist": {
  1538. "type": "zip",
  1539. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1540. "reference": "8.x-1.7",
  1541. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1542. },
  1543. "require": {
  1544. "drupal/core": "^9.3 || ^10",
  1545. "drupal/seven": "~1.0"
  1546. },
  1547. "type": "drupal-theme",
  1548. "extra": {
  1549. "drupal": {
  1550. "version": "8.x-1.7",
  1551. "datestamp": "1691504486",
  1552. "security-coverage": {
  1553. "status": "covered",
  1554. "message": "Covered by Drupal's security advisory policy"
  1555. }
  1556. }
  1557. },
  1558. "notification-url": "https://packages.drupal.org/8/downloads",
  1559. "license": [
  1560. "GPL-2.0+"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "ANDiTKO",
  1565. "homepage": "https://www.drupal.org/user/1428124"
  1566. },
  1567. {
  1568. "name": "andrey.troeglazov",
  1569. "homepage": "https://www.drupal.org/user/3145389"
  1570. },
  1571. {
  1572. "name": "realityloop",
  1573. "homepage": "https://www.drupal.org/user/139189"
  1574. },
  1575. {
  1576. "name": "rjjakes",
  1577. "homepage": "https://www.drupal.org/user/3457245"
  1578. }
  1579. ],
  1580. "description": "Drupal administration theme with modern minimalist design.",
  1581. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1582. "support": {
  1583. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1584. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1585. }
  1586. },
  1587. {
  1588. "name": "drupal/audiofield",
  1589. "version": "1.13.0",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://git.drupalcode.org/project/audiofield.git",
  1593. "reference": "8.x-1.13"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1598. "reference": "8.x-1.13",
  1599. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1600. },
  1601. "require": {
  1602. "drupal/core": "^8 || ^9 || ^10"
  1603. },
  1604. "type": "drupal-module",
  1605. "extra": {
  1606. "drupal": {
  1607. "version": "8.x-1.13",
  1608. "datestamp": "1681143245",
  1609. "security-coverage": {
  1610. "status": "covered",
  1611. "message": "Covered by Drupal's security advisory policy"
  1612. }
  1613. },
  1614. "drush": {
  1615. "services": {
  1616. "drush.services.yml": "^9"
  1617. }
  1618. }
  1619. },
  1620. "notification-url": "https://packages.drupal.org/8/downloads",
  1621. "license": [
  1622. "GPL-2.0-or-later"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Daniel Moberly",
  1627. "homepage": "https://www.drupal.org/u/danielmoberly",
  1628. "role": "Maintainer"
  1629. },
  1630. {
  1631. "name": "tamerzg",
  1632. "homepage": "https://www.drupal.org/user/464564"
  1633. }
  1634. ],
  1635. "description": "AudioField Module",
  1636. "homepage": "https://www.drupal.org/project/audiofield",
  1637. "support": {
  1638. "source": "https://git.drupalcode.org/project/audiofield",
  1639. "issues": "https://www.drupal.org/project/issues/audiofield"
  1640. }
  1641. },
  1642. {
  1643. "name": "drupal/autologout",
  1644. "version": "2.0.2",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://git.drupalcode.org/project/autologout.git",
  1648. "reference": "2.0.2"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.2.zip",
  1653. "reference": "2.0.2",
  1654. "shasum": "5e9bb2b37368cdb5e5d09f27ac4018466aaac2d6"
  1655. },
  1656. "require": {
  1657. "drupal/core": "^9.2 || ^10 || ^11"
  1658. },
  1659. "type": "drupal-module",
  1660. "extra": {
  1661. "drupal": {
  1662. "version": "2.0.2",
  1663. "datestamp": "1773996386",
  1664. "security-coverage": {
  1665. "status": "covered",
  1666. "message": "Covered by Drupal's security advisory policy"
  1667. }
  1668. }
  1669. },
  1670. "notification-url": "https://packages.drupal.org/8/downloads",
  1671. "license": [
  1672. "GPL-2.0-or-later"
  1673. ],
  1674. "authors": [
  1675. {
  1676. "name": "ajits",
  1677. "homepage": "https://www.drupal.org/user/981944"
  1678. },
  1679. {
  1680. "name": "AjK",
  1681. "homepage": "https://www.drupal.org/user/39030"
  1682. },
  1683. {
  1684. "name": "boshtian",
  1685. "homepage": "https://www.drupal.org/user/1773456"
  1686. },
  1687. {
  1688. "name": "dandrews",
  1689. "homepage": "https://www.drupal.org/user/2014490"
  1690. },
  1691. {
  1692. "name": "darksnow",
  1693. "homepage": "https://www.drupal.org/user/391915"
  1694. },
  1695. {
  1696. "name": "japerry",
  1697. "homepage": "https://www.drupal.org/user/45640"
  1698. },
  1699. {
  1700. "name": "johnennew",
  1701. "homepage": "https://www.drupal.org/user/1150042"
  1702. },
  1703. {
  1704. "name": "jrglasgow",
  1705. "homepage": "https://www.drupal.org/user/36590"
  1706. },
  1707. {
  1708. "name": "kmasood",
  1709. "homepage": "https://www.drupal.org/user/1262860"
  1710. },
  1711. {
  1712. "name": "levelos",
  1713. "homepage": "https://www.drupal.org/user/54135"
  1714. },
  1715. {
  1716. "name": "prabeen.giri",
  1717. "homepage": "https://www.drupal.org/user/913078"
  1718. },
  1719. {
  1720. "name": "str8",
  1721. "homepage": "https://www.drupal.org/user/2865063"
  1722. },
  1723. {
  1724. "name": "the_g_bomb",
  1725. "homepage": "https://www.drupal.org/user/492012"
  1726. }
  1727. ],
  1728. "description": "Adds automated timed logout.",
  1729. "homepage": "http://drupal.org/project/autologout",
  1730. "support": {
  1731. "source": "https://git.drupalcode.org/project/autologout",
  1732. "issues": "https://www.drupal.org/project/issues/autologout"
  1733. }
  1734. },
  1735. {
  1736. "name": "drupal/basic",
  1737. "version": "3.0.0-alpha2",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://git.drupalcode.org/project/basic.git",
  1741. "reference": "3.0.0-alpha2"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  1746. "reference": "3.0.0-alpha2",
  1747. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  1748. },
  1749. "require": {
  1750. "drupal/core": "^9.3 || ^10"
  1751. },
  1752. "type": "drupal-theme",
  1753. "extra": {
  1754. "drupal": {
  1755. "version": "3.0.0-alpha2",
  1756. "datestamp": "1674980765",
  1757. "security-coverage": {
  1758. "status": "not-covered",
  1759. "message": "Alpha releases are not covered by Drupal security advisories."
  1760. }
  1761. }
  1762. },
  1763. "notification-url": "https://packages.drupal.org/8/downloads",
  1764. "license": [
  1765. "GPL-2.0+"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Steve Krueger",
  1770. "homepage": "http://thejibe.com",
  1771. "email": "steve@thejibe.com",
  1772. "role": "Maintainer"
  1773. },
  1774. {
  1775. "name": "Joël Pittet",
  1776. "homepage": "https://www.drupal.org/u/joelpittet",
  1777. "email": "joel@pittet.ca",
  1778. "role": "Maintainer"
  1779. },
  1780. {
  1781. "name": "Leah Wagner",
  1782. "homepage": "http://thejibe.com",
  1783. "email": "leah@thejibe.com",
  1784. "role": "Maintainer"
  1785. },
  1786. {
  1787. "name": "Catherine Winters",
  1788. "homepage": "http://www.catherinewinters.com",
  1789. "email": "catherine@catherinewinters.com",
  1790. "role": "Maintainer"
  1791. },
  1792. {
  1793. "name": "Johannes Schmidt",
  1794. "homepage": "http://2tabs.com",
  1795. "email": "mail@2tabs.com",
  1796. "role": "Maintainer"
  1797. },
  1798. {
  1799. "name": "Chuck Kosman",
  1800. "homepage": "http://thejibe.com",
  1801. "email": "chuck@thejibe.com",
  1802. "role": "Maintainer"
  1803. },
  1804. {
  1805. "name": "SteveK",
  1806. "homepage": "https://www.drupal.org/user/111656"
  1807. }
  1808. ],
  1809. "description": "HTML5, SASS, Responsive grid starter theme.",
  1810. "homepage": "http://drupal.org/project/basic",
  1811. "support": {
  1812. "source": "http://cgit.drupalcode.org/basic",
  1813. "issues": "https://www.drupal.org/project/issues/basic",
  1814. "irc": "irc://irc.freenode.org/drupal-contribute"
  1815. }
  1816. },
  1817. {
  1818. "name": "drupal/bulkdelete",
  1819. "version": "dev-1.x",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1823. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1824. },
  1825. "require": {
  1826. "drupal/core": "^8.7.7 || ^9 || ^10"
  1827. },
  1828. "type": "drupal-module",
  1829. "extra": {
  1830. "branch-alias": {
  1831. "dev-1.x": "1.x-dev"
  1832. },
  1833. "drupal": {
  1834. "version": "8.x-1.x-dev",
  1835. "datestamp": "1655322426",
  1836. "security-coverage": {
  1837. "status": "not-covered",
  1838. "message": "Dev releases are not covered by Drupal security advisories."
  1839. }
  1840. }
  1841. },
  1842. "notification-url": "https://packages.drupal.org/8/downloads",
  1843. "license": [
  1844. "GPL-2.0-or-later"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Kars-T",
  1849. "homepage": "https://www.drupal.org/user/224499"
  1850. },
  1851. {
  1852. "name": "Rahul Seth",
  1853. "homepage": "https://www.drupal.org/user/2694359"
  1854. },
  1855. {
  1856. "name": "adriancid",
  1857. "homepage": "https://www.drupal.org/user/1962106"
  1858. },
  1859. {
  1860. "name": "robertDouglass",
  1861. "homepage": "https://www.drupal.org/user/5449"
  1862. }
  1863. ],
  1864. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1865. "homepage": "https://www.drupal.org/project/bulkdelete",
  1866. "support": {
  1867. "source": "https://git.drupalcode.org/project/bulkdelete"
  1868. }
  1869. },
  1870. {
  1871. "name": "drupal/classy",
  1872. "version": "1.0.2",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://git.drupalcode.org/project/classy.git",
  1876. "reference": "1.0.2"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  1881. "reference": "1.0.2",
  1882. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  1883. },
  1884. "require": {
  1885. "drupal/core": "^9 || ^10",
  1886. "drupal/stable": "^2.0.0"
  1887. },
  1888. "type": "drupal-theme",
  1889. "extra": {
  1890. "drupal": {
  1891. "version": "1.0.2",
  1892. "datestamp": "1663949784",
  1893. "security-coverage": {
  1894. "status": "covered",
  1895. "message": "Covered by Drupal's security advisory policy"
  1896. }
  1897. }
  1898. },
  1899. "notification-url": "https://packages.drupal.org/8/downloads",
  1900. "license": [
  1901. "GPL-2.0-or-later"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "bnjmnm",
  1906. "homepage": "https://www.drupal.org/user/2369194"
  1907. },
  1908. {
  1909. "name": "davidhernandez",
  1910. "homepage": "https://www.drupal.org/user/274559"
  1911. },
  1912. {
  1913. "name": "lauriii",
  1914. "homepage": "https://www.drupal.org/user/1078742"
  1915. },
  1916. {
  1917. "name": "smustgrave",
  1918. "homepage": "https://www.drupal.org/user/3252890"
  1919. }
  1920. ],
  1921. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  1922. "homepage": "https://drupal.org/project/classy",
  1923. "support": {
  1924. "source": "https://git.drupalcode.org/project/classy",
  1925. "issues": "https://drupal.org/project/issues/classy"
  1926. }
  1927. },
  1928. {
  1929. "name": "drupal/color_field",
  1930. "version": "3.0.2",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://git.drupalcode.org/project/color_field.git",
  1934. "reference": "3.0.2"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.2.zip",
  1939. "reference": "3.0.2",
  1940. "shasum": "2778e454798a59d3e9fd27f56a161562e2d1f0fe"
  1941. },
  1942. "require": {
  1943. "drupal/core": "^9 || ^10 || ^11"
  1944. },
  1945. "require-dev": {
  1946. "drupal/core-recommended": "^9 || ^10 || ^11",
  1947. "drupal/feeds": "^3.0@beta",
  1948. "drupal/token": "~1.3"
  1949. },
  1950. "type": "drupal-module",
  1951. "extra": {
  1952. "drupal": {
  1953. "version": "3.0.2",
  1954. "datestamp": "1743394003",
  1955. "security-coverage": {
  1956. "status": "covered",
  1957. "message": "Covered by Drupal's security advisory policy"
  1958. }
  1959. }
  1960. },
  1961. "notification-url": "https://packages.drupal.org/8/downloads",
  1962. "license": [
  1963. "GPL-2.0-or-later"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "targoo",
  1968. "homepage": "https://www.drupal.org/user/431910",
  1969. "role": "Maintainer"
  1970. },
  1971. {
  1972. "name": "Nick Wilde",
  1973. "homepage": "https://www.drupal.org/user/nickwilde",
  1974. "role": "Maintainer"
  1975. },
  1976. {
  1977. "name": "targoo",
  1978. "homepage": "https://www.drupal.org/user/431910"
  1979. }
  1980. ],
  1981. "description": "Provides a color field type to store the color value and opacity",
  1982. "homepage": "https://www.drupal.org/project/color_field",
  1983. "support": {
  1984. "source": "https://git.drupalcode.org/project/color_field",
  1985. "issues": "https://www.drupal.org/project/issues/color_field"
  1986. }
  1987. },
  1988. {
  1989. "name": "drupal/composer_deploy",
  1990. "version": "1.10.0",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  1994. "reference": "8.x-1.10"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.10.zip",
  1999. "reference": "8.x-1.10",
  2000. "shasum": "71a80d50a6f2a0f1f00fcae3dd61865ef3caf6bd"
  2001. },
  2002. "require": {
  2003. "drupal/core": "^9 || ^10 || ^11",
  2004. "php": ">=8.1",
  2005. "webflo/drupal-finder": "^1.3"
  2006. },
  2007. "type": "drupal-module",
  2008. "extra": {
  2009. "drupal": {
  2010. "version": "8.x-1.10",
  2011. "datestamp": "1728893427",
  2012. "security-coverage": {
  2013. "status": "covered",
  2014. "message": "Covered by Drupal's security advisory policy"
  2015. }
  2016. }
  2017. },
  2018. "notification-url": "https://packages.drupal.org/8/downloads",
  2019. "license": [
  2020. "GPL-2.0+"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "jhedstrom",
  2025. "homepage": "https://www.drupal.org/user/208732"
  2026. },
  2027. {
  2028. "name": "joelpittet",
  2029. "homepage": "https://www.drupal.org/user/160302"
  2030. },
  2031. {
  2032. "name": "nerdstein",
  2033. "homepage": "https://www.drupal.org/user/1557710"
  2034. },
  2035. {
  2036. "name": "webflo",
  2037. "homepage": "https://www.drupal.org/user/254778"
  2038. }
  2039. ],
  2040. "description": "Provide version number from composers lockfile.",
  2041. "homepage": "https://www.drupal.org/project/composer_deploy",
  2042. "support": {
  2043. "source": "https://git.drupalcode.org/project/composer_deploy"
  2044. }
  2045. },
  2046. {
  2047. "name": "drupal/config_devel",
  2048. "version": "1.11.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://git.drupalcode.org/project/config_devel.git",
  2052. "reference": "8.x-1.11"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.11.zip",
  2057. "reference": "8.x-1.11",
  2058. "shasum": "06e68921c2ab737d775445068280c23c176edf19"
  2059. },
  2060. "require": {
  2061. "drupal/core": "^9.3 || ^10 || ^11"
  2062. },
  2063. "type": "drupal-module",
  2064. "extra": {
  2065. "drupal": {
  2066. "version": "8.x-1.11",
  2067. "datestamp": "1763045911",
  2068. "security-coverage": {
  2069. "status": "covered",
  2070. "message": "Covered by Drupal's security advisory policy"
  2071. }
  2072. }
  2073. },
  2074. "notification-url": "https://packages.drupal.org/8/downloads",
  2075. "license": [
  2076. "GPL-2.0+"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "alexpott",
  2081. "homepage": "https://www.drupal.org/user/157725"
  2082. },
  2083. {
  2084. "name": "benjy",
  2085. "homepage": "https://www.drupal.org/user/1852732"
  2086. },
  2087. {
  2088. "name": "chx",
  2089. "homepage": "https://www.drupal.org/user/9446"
  2090. },
  2091. {
  2092. "name": "joachim",
  2093. "homepage": "https://www.drupal.org/user/107701"
  2094. },
  2095. {
  2096. "name": "vijaycs85",
  2097. "homepage": "https://www.drupal.org/user/93488"
  2098. }
  2099. ],
  2100. "description": "Helps developers work with configuration.",
  2101. "homepage": "https://www.drupal.org/project/config_devel",
  2102. "support": {
  2103. "source": "https://git.drupalcode.org/project/config_devel"
  2104. }
  2105. },
  2106. {
  2107. "name": "drupal/config_filter",
  2108. "version": "2.7.0",
  2109. "source": {
  2110. "type": "git",
  2111. "url": "https://git.drupalcode.org/project/config_filter.git",
  2112. "reference": "8.x-2.7"
  2113. },
  2114. "dist": {
  2115. "type": "zip",
  2116. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2117. "reference": "8.x-2.7",
  2118. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2119. },
  2120. "require": {
  2121. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2122. },
  2123. "conflict": {
  2124. "drush/drush": "<10"
  2125. },
  2126. "suggest": {
  2127. "drupal/config_split": "Split site configuration for different environments."
  2128. },
  2129. "type": "drupal-module",
  2130. "extra": {
  2131. "drupal": {
  2132. "version": "8.x-2.7",
  2133. "datestamp": "1727472458",
  2134. "security-coverage": {
  2135. "status": "covered",
  2136. "message": "Covered by Drupal's security advisory policy"
  2137. }
  2138. }
  2139. },
  2140. "notification-url": "https://packages.drupal.org/8/downloads",
  2141. "license": [
  2142. "GPL-2.0-or-later"
  2143. ],
  2144. "authors": [
  2145. {
  2146. "name": "Fabian Bircher",
  2147. "homepage": "https://www.drupal.org/u/bircher",
  2148. "email": "opensource@fabianbircher.com",
  2149. "role": "Maintainer"
  2150. },
  2151. {
  2152. "name": "Nuvole Web",
  2153. "homepage": "http://nuvole.org",
  2154. "email": "info@nuvole.org",
  2155. "role": "Maintainer"
  2156. },
  2157. {
  2158. "name": "pescetti",
  2159. "homepage": "https://www.drupal.org/user/436244"
  2160. }
  2161. ],
  2162. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2163. "homepage": "https://www.drupal.org/project/config_filter",
  2164. "keywords": [
  2165. "Drupal",
  2166. "configuration",
  2167. "configuration management"
  2168. ],
  2169. "support": {
  2170. "source": "https://git.drupalcode.org/project/config_filter",
  2171. "issues": "https://www.drupal.org/project/issues/config_filter",
  2172. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2173. }
  2174. },
  2175. {
  2176. "name": "drupal/config_ignore",
  2177. "version": "3.3.0",
  2178. "source": {
  2179. "type": "git",
  2180. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2181. "reference": "8.x-3.3"
  2182. },
  2183. "dist": {
  2184. "type": "zip",
  2185. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2186. "reference": "8.x-3.3",
  2187. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2188. },
  2189. "require": {
  2190. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2191. },
  2192. "require-dev": {
  2193. "drupal/config_filter": "^1.8||^2.2",
  2194. "drush/drush": "^10 || ^11 || ^12"
  2195. },
  2196. "type": "drupal-module",
  2197. "extra": {
  2198. "drupal": {
  2199. "version": "8.x-3.3",
  2200. "datestamp": "1713299496",
  2201. "security-coverage": {
  2202. "status": "covered",
  2203. "message": "Covered by Drupal's security advisory policy"
  2204. }
  2205. }
  2206. },
  2207. "notification-url": "https://packages.drupal.org/8/downloads",
  2208. "license": [
  2209. "GPL-2.0-or-later"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Tommy Lynge Jørgensen",
  2214. "homepage": "https://www.drupal.org/u/tlyngej",
  2215. "email": "tlyngej@gmail.com",
  2216. "role": "Maintainer"
  2217. },
  2218. {
  2219. "name": "Fabian Bircher",
  2220. "homepage": "https://www.drupal.org/u/bircher",
  2221. "role": "Maintainer"
  2222. },
  2223. {
  2224. "name": "tlyngej",
  2225. "homepage": "https://www.drupal.org/user/413139"
  2226. }
  2227. ],
  2228. "description": "Ignore certain configuration during import and export.",
  2229. "homepage": "http://drupal.org/project/config_ignore",
  2230. "support": {
  2231. "source": "https://git.drupalcode.org/project/config_ignore",
  2232. "issues": "http://drupal.org/project/config_ignore"
  2233. }
  2234. },
  2235. {
  2236. "name": "drupal/config_update",
  2237. "version": "2.0.0-alpha4",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://git.drupalcode.org/project/config_update.git",
  2241. "reference": "2.0.0-alpha4"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2246. "reference": "2.0.0-alpha4",
  2247. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2248. },
  2249. "require": {
  2250. "drupal/core": "^9.4 || ^10 || ^11"
  2251. },
  2252. "type": "drupal-module",
  2253. "extra": {
  2254. "drupal": {
  2255. "version": "2.0.0-alpha4",
  2256. "datestamp": "1724596931",
  2257. "security-coverage": {
  2258. "status": "not-covered",
  2259. "message": "Alpha releases are not covered by Drupal security advisories."
  2260. }
  2261. }
  2262. },
  2263. "notification-url": "https://packages.drupal.org/8/downloads",
  2264. "license": [
  2265. "GPL-2.0-or-later"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "codebymikey",
  2270. "homepage": "https://www.drupal.org/user/3573206"
  2271. },
  2272. {
  2273. "name": "pasqualle",
  2274. "homepage": "https://www.drupal.org/user/80733"
  2275. },
  2276. {
  2277. "name": "vishalkhode",
  2278. "homepage": "https://www.drupal.org/user/2439156"
  2279. }
  2280. ],
  2281. "description": "Provides basic revert and update functionality for other modules.",
  2282. "homepage": "https://www.drupal.org/project/config_update",
  2283. "support": {
  2284. "source": "https://git.drupalcode.org/project/config_update"
  2285. }
  2286. },
  2287. {
  2288. "name": "drupal/context",
  2289. "version": "5.0.0-rc2",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://git.drupalcode.org/project/context.git",
  2293. "reference": "5.0.0-rc2"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  2298. "reference": "5.0.0-rc2",
  2299. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  2300. },
  2301. "require": {
  2302. "drupal/core": "^9.3 || ^10 || ^11"
  2303. },
  2304. "type": "drupal-module",
  2305. "extra": {
  2306. "drupal": {
  2307. "version": "5.0.0-rc2",
  2308. "datestamp": "1741253306",
  2309. "security-coverage": {
  2310. "status": "not-covered",
  2311. "message": "RC releases are not covered by Drupal security advisories."
  2312. }
  2313. }
  2314. },
  2315. "notification-url": "https://packages.drupal.org/8/downloads",
  2316. "license": [
  2317. "MIT"
  2318. ],
  2319. "authors": [
  2320. {
  2321. "name": "Christoffer Palm",
  2322. "homepage": "http://www.oddhill.se/",
  2323. "email": "christoffer.palm@oddhill.se",
  2324. "role": "Developer"
  2325. },
  2326. {
  2327. "name": "boshtian",
  2328. "homepage": "https://www.drupal.org/user/1773456"
  2329. },
  2330. {
  2331. "name": "colan",
  2332. "homepage": "https://www.drupal.org/user/58704"
  2333. },
  2334. {
  2335. "name": "emanaton",
  2336. "homepage": "https://www.drupal.org/user/120853"
  2337. },
  2338. {
  2339. "name": "febbraro",
  2340. "homepage": "https://www.drupal.org/user/43670"
  2341. },
  2342. {
  2343. "name": "fizk",
  2344. "homepage": "https://www.drupal.org/user/473174"
  2345. },
  2346. {
  2347. "name": "hass",
  2348. "homepage": "https://www.drupal.org/user/85918"
  2349. },
  2350. {
  2351. "name": "hefox",
  2352. "homepage": "https://www.drupal.org/user/426416"
  2353. },
  2354. {
  2355. "name": "jmiccolis",
  2356. "homepage": "https://www.drupal.org/user/31731"
  2357. },
  2358. {
  2359. "name": "kristen pol",
  2360. "homepage": "https://www.drupal.org/user/8389"
  2361. },
  2362. {
  2363. "name": "mandclu",
  2364. "homepage": "https://www.drupal.org/user/52136"
  2365. },
  2366. {
  2367. "name": "nedjo",
  2368. "homepage": "https://www.drupal.org/user/4481"
  2369. },
  2370. {
  2371. "name": "NormySan",
  2372. "homepage": "https://www.drupal.org/user/112352"
  2373. },
  2374. {
  2375. "name": "patricksettle",
  2376. "homepage": "https://www.drupal.org/user/26618"
  2377. },
  2378. {
  2379. "name": "paulocs",
  2380. "homepage": "https://www.drupal.org/user/3640109"
  2381. },
  2382. {
  2383. "name": "steven jones",
  2384. "homepage": "https://www.drupal.org/user/99644"
  2385. },
  2386. {
  2387. "name": "tekante",
  2388. "homepage": "https://www.drupal.org/user/640024"
  2389. },
  2390. {
  2391. "name": "yhahn",
  2392. "homepage": "https://www.drupal.org/user/264833"
  2393. }
  2394. ],
  2395. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2396. "homepage": "https://github.com/oddhill/context",
  2397. "keywords": [
  2398. "Drupal",
  2399. "block",
  2400. "conditions",
  2401. "context",
  2402. "visibility"
  2403. ],
  2404. "support": {
  2405. "source": "https://github.com/oddhill/context",
  2406. "issues": "https://github.com/oddhill/context/issues",
  2407. "docs": "https://github.com/oddhill/context"
  2408. }
  2409. },
  2410. {
  2411. "name": "drupal/core",
  2412. "version": "10.6.5",
  2413. "source": {
  2414. "type": "git",
  2415. "url": "https://github.com/drupal/core.git",
  2416. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  2417. },
  2418. "dist": {
  2419. "type": "zip",
  2420. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  2421. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  2422. "shasum": ""
  2423. },
  2424. "require": {
  2425. "asm89/stack-cors": "^2.3",
  2426. "composer-runtime-api": "^2.1",
  2427. "composer/semver": "^3.3",
  2428. "doctrine/lexer": "^2",
  2429. "egulias/email-validator": "^3.2.1|^4.0",
  2430. "ext-date": "*",
  2431. "ext-dom": "*",
  2432. "ext-filter": "*",
  2433. "ext-gd": "*",
  2434. "ext-hash": "*",
  2435. "ext-json": "*",
  2436. "ext-pcre": "*",
  2437. "ext-pdo": "*",
  2438. "ext-session": "*",
  2439. "ext-simplexml": "*",
  2440. "ext-spl": "*",
  2441. "ext-tokenizer": "*",
  2442. "ext-xml": "*",
  2443. "guzzlehttp/guzzle": "^7.5",
  2444. "guzzlehttp/psr7": "^2.4.5",
  2445. "masterminds/html5": "^2.7",
  2446. "mck89/peast": "^1.14",
  2447. "pear/archive_tar": "^1.4.14",
  2448. "php": ">=8.1.0",
  2449. "psr/log": "^3.0",
  2450. "sebastian/diff": "^4",
  2451. "symfony/console": "^6.4",
  2452. "symfony/dependency-injection": "^6.4",
  2453. "symfony/event-dispatcher": "^6.4",
  2454. "symfony/filesystem": "^6.4",
  2455. "symfony/finder": "^6.4",
  2456. "symfony/http-foundation": "^6.4",
  2457. "symfony/http-kernel": "^6.4",
  2458. "symfony/mailer": "^6.4",
  2459. "symfony/mime": "^6.4",
  2460. "symfony/polyfill-iconv": "^1.26",
  2461. "symfony/process": "^6.4.33",
  2462. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2463. "symfony/routing": "^6.4",
  2464. "symfony/serializer": "^6.4",
  2465. "symfony/validator": "^6.4",
  2466. "symfony/yaml": "^6.4",
  2467. "twig/twig": "^3.22.0"
  2468. },
  2469. "conflict": {
  2470. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  2471. "drush/drush": "<12.4.3"
  2472. },
  2473. "replace": {
  2474. "drupal/core-annotation": "self.version",
  2475. "drupal/core-assertion": "self.version",
  2476. "drupal/core-class-finder": "self.version",
  2477. "drupal/core-datetime": "self.version",
  2478. "drupal/core-dependency-injection": "self.version",
  2479. "drupal/core-diff": "self.version",
  2480. "drupal/core-discovery": "self.version",
  2481. "drupal/core-event-dispatcher": "self.version",
  2482. "drupal/core-file-cache": "self.version",
  2483. "drupal/core-file-security": "self.version",
  2484. "drupal/core-filesystem": "self.version",
  2485. "drupal/core-front-matter": "self.version",
  2486. "drupal/core-gettext": "self.version",
  2487. "drupal/core-graph": "self.version",
  2488. "drupal/core-http-foundation": "self.version",
  2489. "drupal/core-php-storage": "self.version",
  2490. "drupal/core-plugin": "self.version",
  2491. "drupal/core-proxy-builder": "self.version",
  2492. "drupal/core-render": "self.version",
  2493. "drupal/core-serialization": "self.version",
  2494. "drupal/core-transliteration": "self.version",
  2495. "drupal/core-utility": "self.version",
  2496. "drupal/core-uuid": "self.version",
  2497. "drupal/core-version": "self.version"
  2498. },
  2499. "suggest": {
  2500. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2501. },
  2502. "type": "drupal-core",
  2503. "extra": {
  2504. "drupal-scaffold": {
  2505. "file-mapping": {
  2506. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2507. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2508. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2509. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2510. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2511. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2512. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2513. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2514. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2515. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2516. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2517. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2518. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2519. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2520. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  2521. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2522. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2523. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2524. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2525. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2526. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2527. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2528. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  2529. }
  2530. }
  2531. },
  2532. "autoload": {
  2533. "files": [
  2534. "includes/bootstrap.inc"
  2535. ],
  2536. "psr-4": {
  2537. "Drupal\\Core\\": "lib/Drupal/Core",
  2538. "Drupal\\Component\\": "lib/Drupal/Component"
  2539. },
  2540. "classmap": [
  2541. "lib/Drupal.php",
  2542. "lib/Drupal/Component/DependencyInjection/Container.php",
  2543. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2544. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2545. "lib/Drupal/Component/Utility/Timer.php",
  2546. "lib/Drupal/Component/Utility/Unicode.php",
  2547. "lib/Drupal/Core/Cache/Cache.php",
  2548. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2549. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2550. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2551. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2552. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2553. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2554. "lib/Drupal/Core/Database/Connection.php",
  2555. "lib/Drupal/Core/Database/Database.php",
  2556. "lib/Drupal/Core/Database/StatementInterface.php",
  2557. "lib/Drupal/Core/DependencyInjection/Container.php",
  2558. "lib/Drupal/Core/DrupalKernel.php",
  2559. "lib/Drupal/Core/DrupalKernelInterface.php",
  2560. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2561. "lib/Drupal/Core/Site/Settings.php",
  2562. "lib/Drupal/Component/Datetime/Time.php"
  2563. ]
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "GPL-2.0-or-later"
  2568. ],
  2569. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2570. "support": {
  2571. "source": "https://github.com/drupal/core/tree/10.6.5"
  2572. },
  2573. "time": "2026-03-06T09:55:31+00:00"
  2574. },
  2575. {
  2576. "name": "drupal/core-composer-scaffold",
  2577. "version": "10.6.5",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2581. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  2586. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "composer-plugin-api": "^2",
  2591. "php": ">=7.3.0"
  2592. },
  2593. "conflict": {
  2594. "drupal-composer/drupal-scaffold": "*"
  2595. },
  2596. "require-dev": {
  2597. "composer/composer": "^1.8@stable"
  2598. },
  2599. "type": "composer-plugin",
  2600. "extra": {
  2601. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2602. "branch-alias": {
  2603. "dev-master": "1.0.x-dev"
  2604. }
  2605. },
  2606. "autoload": {
  2607. "psr-4": {
  2608. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2609. }
  2610. },
  2611. "notification-url": "https://packagist.org/downloads/",
  2612. "license": [
  2613. "GPL-2.0-or-later"
  2614. ],
  2615. "description": "A flexible Composer project scaffold builder.",
  2616. "homepage": "https://www.drupal.org/project/drupal",
  2617. "keywords": [
  2618. "drupal"
  2619. ],
  2620. "support": {
  2621. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  2622. },
  2623. "time": "2024-08-22T14:31:30+00:00"
  2624. },
  2625. {
  2626. "name": "drupal/core-project-message",
  2627. "version": "10.6.5",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/drupal/core-project-message.git",
  2631. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2636. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "composer-plugin-api": "^2",
  2641. "php": ">=7.3.0"
  2642. },
  2643. "type": "composer-plugin",
  2644. "extra": {
  2645. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "GPL-2.0-or-later"
  2655. ],
  2656. "description": "Adds a message after Composer installation.",
  2657. "homepage": "https://www.drupal.org/project/drupal",
  2658. "keywords": [
  2659. "drupal"
  2660. ],
  2661. "support": {
  2662. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  2663. },
  2664. "time": "2023-07-24T07:55:25+00:00"
  2665. },
  2666. {
  2667. "name": "drupal/core-recommended",
  2668. "version": "10.6.5",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/drupal/core-recommended.git",
  2672. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  2677. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  2678. "shasum": ""
  2679. },
  2680. "require": {
  2681. "asm89/stack-cors": "~v2.3.0",
  2682. "composer/semver": "~3.4.4",
  2683. "doctrine/deprecations": "~1.1.5",
  2684. "doctrine/lexer": "~2.1.1",
  2685. "drupal/core": "10.6.5",
  2686. "egulias/email-validator": "~4.0.4",
  2687. "guzzlehttp/guzzle": "~7.10.0",
  2688. "guzzlehttp/promises": "~2.3.0",
  2689. "guzzlehttp/psr7": "~2.8.0",
  2690. "masterminds/html5": "~2.10.0",
  2691. "mck89/peast": "~v1.17.4",
  2692. "pear/archive_tar": "~1.6.0",
  2693. "pear/console_getopt": "~v1.4.3",
  2694. "pear/pear-core-minimal": "~v1.10.16",
  2695. "pear/pear_exception": "~v1.0.2",
  2696. "psr/container": "~2.0.2",
  2697. "psr/event-dispatcher": "~1.0.0",
  2698. "psr/http-client": "~1.0.3",
  2699. "psr/http-factory": "~1.1.0",
  2700. "psr/log": "~3.0.2",
  2701. "ralouphie/getallheaders": "~3.0.3",
  2702. "sebastian/diff": "~4.0.6",
  2703. "symfony/console": "~v6.4.27",
  2704. "symfony/dependency-injection": "~v6.4.26",
  2705. "symfony/deprecation-contracts": "~v3.6.0",
  2706. "symfony/error-handler": "~v6.4.26",
  2707. "symfony/event-dispatcher": "~v6.4.25",
  2708. "symfony/event-dispatcher-contracts": "~v3.6.0",
  2709. "symfony/filesystem": "~v6.4.24",
  2710. "symfony/finder": "~v6.4.27",
  2711. "symfony/http-foundation": "~v6.4.29",
  2712. "symfony/http-kernel": "~v6.4.29",
  2713. "symfony/mailer": "~v6.4.27",
  2714. "symfony/mime": "~v6.4.26",
  2715. "symfony/polyfill-ctype": "~v1.33.0",
  2716. "symfony/polyfill-iconv": "~v1.33.0",
  2717. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  2718. "symfony/polyfill-intl-idn": "~v1.33.0",
  2719. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  2720. "symfony/polyfill-mbstring": "~v1.33.0",
  2721. "symfony/polyfill-php83": "~v1.33.0",
  2722. "symfony/process": "~v6.4.33",
  2723. "symfony/psr-http-message-bridge": "~v6.4.24",
  2724. "symfony/routing": "~v6.4.28",
  2725. "symfony/serializer": "~v6.4.27",
  2726. "symfony/service-contracts": "~v3.6.1",
  2727. "symfony/string": "~v6.4.26",
  2728. "symfony/translation-contracts": "~v3.6.1",
  2729. "symfony/validator": "~v6.4.29",
  2730. "symfony/var-dumper": "~v6.4.26",
  2731. "symfony/var-exporter": "~v6.4.26",
  2732. "symfony/yaml": "~v6.4.26",
  2733. "twig/twig": "~v3.22.0"
  2734. },
  2735. "conflict": {
  2736. "webflo/drupal-core-strict": "*"
  2737. },
  2738. "type": "metapackage",
  2739. "notification-url": "https://packagist.org/downloads/",
  2740. "license": [
  2741. "GPL-2.0-or-later"
  2742. ],
  2743. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2744. "support": {
  2745. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  2746. },
  2747. "time": "2026-03-06T09:55:31+00:00"
  2748. },
  2749. {
  2750. "name": "drupal/ctools",
  2751. "version": "4.1.0",
  2752. "source": {
  2753. "type": "git",
  2754. "url": "https://git.drupalcode.org/project/ctools.git",
  2755. "reference": "4.1.0"
  2756. },
  2757. "dist": {
  2758. "type": "zip",
  2759. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2760. "reference": "4.1.0",
  2761. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2762. },
  2763. "require": {
  2764. "drupal/core": "^9.5 || ^10 || ^11"
  2765. },
  2766. "type": "drupal-module",
  2767. "extra": {
  2768. "drupal": {
  2769. "version": "4.1.0",
  2770. "datestamp": "1718144949",
  2771. "security-coverage": {
  2772. "status": "covered",
  2773. "message": "Covered by Drupal's security advisory policy"
  2774. }
  2775. },
  2776. "branch-alias": {
  2777. "dev-8.x-3.x": "3.x-dev"
  2778. }
  2779. },
  2780. "notification-url": "https://packages.drupal.org/8/downloads",
  2781. "license": [
  2782. "GPL-2.0-or-later"
  2783. ],
  2784. "authors": [
  2785. {
  2786. "name": "Kris Vanderwater (EclipseGc)",
  2787. "homepage": "https://www.drupal.org/u/eclipsegc",
  2788. "role": "Maintainer"
  2789. },
  2790. {
  2791. "name": "Jakob Perry (japerry)",
  2792. "homepage": "https://www.drupal.org/u/japerry",
  2793. "role": "Maintainer"
  2794. },
  2795. {
  2796. "name": "Tim Plunkett (tim.plunkett)",
  2797. "homepage": "https://www.drupal.org/u/timplunkett",
  2798. "role": "Maintainer"
  2799. },
  2800. {
  2801. "name": "James Gilliland (neclimdul)",
  2802. "homepage": "https://www.drupal.org/u/neclimdul",
  2803. "role": "Maintainer"
  2804. },
  2805. {
  2806. "name": "Daniel Wehner (dawehner)",
  2807. "homepage": "https://www.drupal.org/u/dawehner",
  2808. "role": "Maintainer"
  2809. },
  2810. {
  2811. "name": "joelpittet",
  2812. "homepage": "https://www.drupal.org/user/160302"
  2813. },
  2814. {
  2815. "name": "merlinofchaos",
  2816. "homepage": "https://www.drupal.org/user/26979"
  2817. },
  2818. {
  2819. "name": "neclimdul",
  2820. "homepage": "https://www.drupal.org/user/48673"
  2821. },
  2822. {
  2823. "name": "sdboyer",
  2824. "homepage": "https://www.drupal.org/user/146719"
  2825. },
  2826. {
  2827. "name": "sun",
  2828. "homepage": "https://www.drupal.org/user/54136"
  2829. },
  2830. {
  2831. "name": "tim.plunkett",
  2832. "homepage": "https://www.drupal.org/user/241634"
  2833. }
  2834. ],
  2835. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2836. "homepage": "https://www.drupal.org/project/ctools",
  2837. "support": {
  2838. "source": "https://git.drupalcode.org/project/ctools",
  2839. "issues": "https://www.drupal.org/project/issues/ctools"
  2840. }
  2841. },
  2842. {
  2843. "name": "drupal/date_range_formatter",
  2844. "version": "4.0.2",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2848. "reference": "4.0.2"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2853. "reference": "4.0.2",
  2854. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2855. },
  2856. "require": {
  2857. "drupal/core": "^8 || ^9 || ^10"
  2858. },
  2859. "type": "drupal-module",
  2860. "extra": {
  2861. "drupal": {
  2862. "version": "4.0.2",
  2863. "datestamp": "1703156621",
  2864. "security-coverage": {
  2865. "status": "covered",
  2866. "message": "Covered by Drupal's security advisory policy"
  2867. }
  2868. }
  2869. },
  2870. "notification-url": "https://packages.drupal.org/8/downloads",
  2871. "license": [
  2872. "GPL-2.0-or-later"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "maximpodorov",
  2877. "homepage": "https://www.drupal.org/user/515310"
  2878. },
  2879. {
  2880. "name": "sudishth",
  2881. "homepage": "https://www.drupal.org/user/1440562"
  2882. }
  2883. ],
  2884. "description": "Formats date ranges.",
  2885. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2886. "support": {
  2887. "source": "https://git.drupalcode.org/project/date_range_formatter"
  2888. }
  2889. },
  2890. {
  2891. "name": "drupal/devel",
  2892. "version": "5.5.0",
  2893. "source": {
  2894. "type": "git",
  2895. "url": "https://git.drupalcode.org/project/devel.git",
  2896. "reference": "5.5.0"
  2897. },
  2898. "dist": {
  2899. "type": "zip",
  2900. "url": "https://ftp.drupal.org/files/projects/devel-5.5.0.zip",
  2901. "reference": "5.5.0",
  2902. "shasum": "b6f45c84ec31bc18817c7464b51e951dec73d5ce"
  2903. },
  2904. "require": {
  2905. "doctrine/common": "^2.7 || ^3.4",
  2906. "drupal/core": "^10.3 || ^11 || ^12",
  2907. "php": ">=8.3",
  2908. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  2909. },
  2910. "conflict": {
  2911. "drupal/core": "<10.3",
  2912. "drush/drush": "<13.7.0"
  2913. },
  2914. "require-dev": {
  2915. "drupal/navigation_extra_tools": "1.0.x-dev",
  2916. "drush/drush": "^13",
  2917. "firephp/firephp-core": "^0.5.3"
  2918. },
  2919. "type": "drupal-module",
  2920. "extra": {
  2921. "drupal": {
  2922. "version": "5.5.0",
  2923. "datestamp": "1764211205",
  2924. "security-coverage": {
  2925. "status": "covered",
  2926. "message": "Covered by Drupal's security advisory policy"
  2927. }
  2928. }
  2929. },
  2930. "notification-url": "https://packages.drupal.org/8/downloads",
  2931. "license": [
  2932. "GPL-2.0-or-later"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "moshe weitzman",
  2937. "homepage": "https://www.drupal.org/user/23"
  2938. }
  2939. ],
  2940. "description": "Various blocks, pages, and functions for developers.",
  2941. "homepage": "https://www.drupal.org/project/devel",
  2942. "support": {
  2943. "source": "https://gitlab.com/drupalspoons/devel",
  2944. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  2945. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  2946. }
  2947. },
  2948. {
  2949. "name": "drupal/domain",
  2950. "version": "2.0.0",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://git.drupalcode.org/project/domain.git",
  2954. "reference": "2.0.0"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0.zip",
  2959. "reference": "2.0.0",
  2960. "shasum": "c53dc7621a3cac591b40025911711e9b852feafa"
  2961. },
  2962. "require": {
  2963. "drupal/core": "^10.2 || ^11"
  2964. },
  2965. "require-dev": {
  2966. "drupal/domain_access": "*",
  2967. "drupal/domain_config": "*"
  2968. },
  2969. "type": "drupal-module",
  2970. "extra": {
  2971. "drupal": {
  2972. "version": "2.0.0",
  2973. "datestamp": "1772625533",
  2974. "security-coverage": {
  2975. "status": "covered",
  2976. "message": "Covered by Drupal's security advisory policy"
  2977. }
  2978. }
  2979. },
  2980. "notification-url": "https://packages.drupal.org/8/downloads",
  2981. "license": [
  2982. "GPL-2.0-or-later"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "agentrickard",
  2987. "homepage": "https://www.drupal.org/user/20975"
  2988. },
  2989. {
  2990. "name": "danrod",
  2991. "homepage": "https://www.drupal.org/user/19150"
  2992. },
  2993. {
  2994. "name": "mably",
  2995. "homepage": "https://www.drupal.org/user/3375160"
  2996. },
  2997. {
  2998. "name": "nonsie",
  2999. "homepage": "https://www.drupal.org/user/29899"
  3000. },
  3001. {
  3002. "name": "webflo",
  3003. "homepage": "https://www.drupal.org/user/254778"
  3004. }
  3005. ],
  3006. "description": "Creates domain records within a Drupal installation.",
  3007. "homepage": "https://www.drupal.org/project/domain",
  3008. "support": {
  3009. "source": "https://git.drupalcode.org/project/domain"
  3010. }
  3011. },
  3012. {
  3013. "name": "drupal/domain_access",
  3014. "version": "2.0.0",
  3015. "require": {
  3016. "drupal/core": "^10.2 || ^11",
  3017. "drupal/domain": "*"
  3018. },
  3019. "type": "metapackage",
  3020. "extra": {
  3021. "drupal": {
  3022. "version": "2.0.0",
  3023. "datestamp": "1772625533",
  3024. "security-coverage": {
  3025. "status": "covered",
  3026. "message": "Covered by Drupal's security advisory policy"
  3027. }
  3028. }
  3029. },
  3030. "notification-url": "https://packages.drupal.org/8/downloads",
  3031. "license": [
  3032. "GPL-2.0-or-later"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "agentrickard",
  3037. "homepage": "https://www.drupal.org/user/20975"
  3038. },
  3039. {
  3040. "name": "danrod",
  3041. "homepage": "https://www.drupal.org/user/19150"
  3042. },
  3043. {
  3044. "name": "mably",
  3045. "homepage": "https://www.drupal.org/user/3375160"
  3046. },
  3047. {
  3048. "name": "nonsie",
  3049. "homepage": "https://www.drupal.org/user/29899"
  3050. },
  3051. {
  3052. "name": "webflo",
  3053. "homepage": "https://www.drupal.org/user/254778"
  3054. }
  3055. ],
  3056. "description": "Domain-based access control for content.",
  3057. "homepage": "https://www.drupal.org/project/domain",
  3058. "support": {
  3059. "source": "https://git.drupalcode.org/project/domain"
  3060. }
  3061. },
  3062. {
  3063. "name": "drupal/domain_config",
  3064. "version": "2.0.0-beta1",
  3065. "require": {
  3066. "drupal/core": "^9 || ^10",
  3067. "drupal/domain": "*"
  3068. },
  3069. "type": "metapackage",
  3070. "extra": {
  3071. "drupal": {
  3072. "version": "2.0.0-beta1",
  3073. "datestamp": "1686067462",
  3074. "security-coverage": {
  3075. "status": "not-covered",
  3076. "message": "Beta releases are not covered by Drupal security advisories."
  3077. }
  3078. }
  3079. },
  3080. "notification-url": "https://packages.drupal.org/8/downloads",
  3081. "license": [
  3082. "GPL-2.0-or-later"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "agentrickard",
  3087. "homepage": "https://www.drupal.org/user/20975"
  3088. },
  3089. {
  3090. "name": "nonsie",
  3091. "homepage": "https://www.drupal.org/user/29899"
  3092. },
  3093. {
  3094. "name": "webflo",
  3095. "homepage": "https://www.drupal.org/user/254778"
  3096. }
  3097. ],
  3098. "description": "Allows domain specific configuration.",
  3099. "homepage": "https://www.drupal.org/project/domain",
  3100. "support": {
  3101. "source": "https://git.drupalcode.org/project/domain"
  3102. }
  3103. },
  3104. {
  3105. "name": "drupal/domain_menu_access",
  3106. "version": "2.0.1",
  3107. "source": {
  3108. "type": "git",
  3109. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3110. "reference": "2.0.1"
  3111. },
  3112. "dist": {
  3113. "type": "zip",
  3114. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-2.0.1.zip",
  3115. "reference": "2.0.1",
  3116. "shasum": "d2b94e6fbd4657b604ac15866d5b798fc40700b7"
  3117. },
  3118. "require": {
  3119. "drupal/core": "^10.2 || ^11",
  3120. "drupal/domain": "^1.0 || ^2.0",
  3121. "drupal/domain_access": "*"
  3122. },
  3123. "require-dev": {
  3124. "drupal/menu_block": "^1.0",
  3125. "phpstan/phpstan-deprecation-rules": "^1.1",
  3126. "phpstan/phpstan-strict-rules": "^1.5"
  3127. },
  3128. "suggest": {
  3129. "drupal/menu_block": "Provides configurable blocks of menu links and is needed to allow to install the submodule domain_menu_access_menu_block"
  3130. },
  3131. "type": "drupal-module",
  3132. "extra": {
  3133. "drupal": {
  3134. "version": "2.0.1",
  3135. "datestamp": "1744139145",
  3136. "security-coverage": {
  3137. "status": "covered",
  3138. "message": "Covered by Drupal's security advisory policy"
  3139. }
  3140. }
  3141. },
  3142. "notification-url": "https://packages.drupal.org/8/downloads",
  3143. "license": [
  3144. "GPL-2.0-or-later"
  3145. ],
  3146. "authors": [
  3147. {
  3148. "name": "maciej.zgadzaj",
  3149. "homepage": "https://www.drupal.org/u/maciejzgadzaj",
  3150. "role": "Maintainer"
  3151. },
  3152. {
  3153. "name": "Oleksandr Dekhteruk (pifagor)",
  3154. "homepage": "https://www.drupal.org/u/pifagor",
  3155. "role": "Co-maintainer"
  3156. },
  3157. {
  3158. "name": "Sebastien MALOT (Sebastien M.)",
  3159. "homepage": "https://www.drupal.org/u/sebastien-m",
  3160. "role": "Co-maintainer"
  3161. },
  3162. {
  3163. "name": "Tim Diels (tim-diels)",
  3164. "homepage": "https://www.drupal.org/u/tim-diels",
  3165. "role": "Co-maintainer"
  3166. }
  3167. ],
  3168. "description": "Domain-based access control for menu link.",
  3169. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3170. "support": {
  3171. "source": "https://git.drupalcode.org/project/domain_menu_access",
  3172. "issues": "https://drupal.org/project/issues/domain_menu_access"
  3173. }
  3174. },
  3175. {
  3176. "name": "drupal/domain_site_settings",
  3177. "version": "1.6.0",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3181. "reference": "8.x-1.6"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3186. "reference": "8.x-1.6",
  3187. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3188. },
  3189. "require": {
  3190. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3191. "drupal/domain": "^1.0 || ^2.0",
  3192. "drupal/domain_config": "*"
  3193. },
  3194. "type": "drupal-module",
  3195. "extra": {
  3196. "drupal": {
  3197. "version": "8.x-1.6",
  3198. "datestamp": "1726238712",
  3199. "security-coverage": {
  3200. "status": "covered",
  3201. "message": "Covered by Drupal's security advisory policy"
  3202. }
  3203. }
  3204. },
  3205. "notification-url": "https://packages.drupal.org/8/downloads",
  3206. "license": [
  3207. "GPL-2.0+"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "aloknarwaria",
  3212. "homepage": "https://www.drupal.org/user/906640"
  3213. },
  3214. {
  3215. "name": "jeroent",
  3216. "homepage": "https://www.drupal.org/user/2228934"
  3217. },
  3218. {
  3219. "name": "malaynayak",
  3220. "homepage": "https://www.drupal.org/user/3529755"
  3221. }
  3222. ],
  3223. "description": "Basic Site Setting for Domains.",
  3224. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3225. "keywords": [
  3226. "Drupal"
  3227. ],
  3228. "support": {
  3229. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3230. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3231. }
  3232. },
  3233. {
  3234. "name": "drupal/email_registration",
  3235. "version": "1.4.0",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://git.drupalcode.org/project/email_registration.git",
  3239. "reference": "8.x-1.4"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3244. "reference": "8.x-1.4",
  3245. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3246. },
  3247. "require": {
  3248. "drupal/core": "^9.1 || ^10"
  3249. },
  3250. "conflict": {
  3251. "drupal/commerce": "<2.12"
  3252. },
  3253. "require-dev": {
  3254. "drupal/commerce": "^2.0",
  3255. "drupal/token": "*"
  3256. },
  3257. "type": "drupal-module",
  3258. "extra": {
  3259. "drupal": {
  3260. "version": "8.x-1.4",
  3261. "datestamp": "1700548925",
  3262. "security-coverage": {
  3263. "status": "covered",
  3264. "message": "Covered by Drupal's security advisory policy"
  3265. }
  3266. }
  3267. },
  3268. "notification-url": "https://packages.drupal.org/8/downloads",
  3269. "license": [
  3270. "GPL-2.0-or-later"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Greg Knaddison (greggles)",
  3275. "homepage": "https://www.drupal.org/u/greggles",
  3276. "role": "Maintainer"
  3277. },
  3278. {
  3279. "name": "Andrey Postnikov (andypost)",
  3280. "homepage": "https://www.drupal.org/u/andypost",
  3281. "role": "Maintainer"
  3282. },
  3283. {
  3284. "name": "Chris Herberte",
  3285. "homepage": "https://www.drupal.org/u/chris-herberte",
  3286. "role": "Maintainer"
  3287. },
  3288. {
  3289. "name": "Moshe Weitzman (moshe weitzman)",
  3290. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3291. "role": "Maintainer"
  3292. },
  3293. {
  3294. "name": "Grevil",
  3295. "homepage": "https://www.drupal.org/user/3668491"
  3296. },
  3297. {
  3298. "name": "moshe weitzman",
  3299. "homepage": "https://www.drupal.org/user/23"
  3300. }
  3301. ],
  3302. "description": "Allows users to register with an email address as their username.",
  3303. "homepage": "https://www.drupal.org/project/email_registration",
  3304. "support": {
  3305. "source": "https://git.drupalcode.org/project/email_registration",
  3306. "issues": "http://drupal.org/project/issues/email_registration"
  3307. }
  3308. },
  3309. {
  3310. "name": "drupal/entity",
  3311. "version": "1.6.0",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://git.drupalcode.org/project/entity.git",
  3315. "reference": "8.x-1.6"
  3316. },
  3317. "dist": {
  3318. "type": "zip",
  3319. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.6.zip",
  3320. "reference": "8.x-1.6",
  3321. "shasum": "dfb214fd45bd6ad79604d23a39a96b3d4c38f8e1"
  3322. },
  3323. "require": {
  3324. "drupal/core": "^10.1 || ^11"
  3325. },
  3326. "type": "drupal-module",
  3327. "extra": {
  3328. "drupal": {
  3329. "version": "8.x-1.6",
  3330. "datestamp": "1740006812",
  3331. "security-coverage": {
  3332. "status": "covered",
  3333. "message": "Covered by Drupal's security advisory policy"
  3334. }
  3335. }
  3336. },
  3337. "notification-url": "https://packages.drupal.org/8/downloads",
  3338. "license": [
  3339. "GPL-2.0-or-later"
  3340. ],
  3341. "authors": [
  3342. {
  3343. "name": "berdir",
  3344. "homepage": "https://www.drupal.org/user/214652"
  3345. },
  3346. {
  3347. "name": "bojanz",
  3348. "homepage": "https://www.drupal.org/user/86106"
  3349. },
  3350. {
  3351. "name": "dawehner",
  3352. "homepage": "https://www.drupal.org/user/99340"
  3353. },
  3354. {
  3355. "name": "dixon_",
  3356. "homepage": "https://www.drupal.org/user/239911"
  3357. },
  3358. {
  3359. "name": "fago",
  3360. "homepage": "https://www.drupal.org/user/16747"
  3361. },
  3362. {
  3363. "name": "mglaman",
  3364. "homepage": "https://www.drupal.org/user/2416470"
  3365. },
  3366. {
  3367. "name": "tr",
  3368. "homepage": "https://www.drupal.org/user/202830"
  3369. }
  3370. ],
  3371. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3372. "homepage": "https://www.drupal.org/project/entity",
  3373. "support": {
  3374. "source": "https://git.drupalcode.org/project/entity",
  3375. "issues": "https://www.drupal.org/project/issues/entity"
  3376. }
  3377. },
  3378. {
  3379. "name": "drupal/field_group",
  3380. "version": "3.6.0",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://git.drupalcode.org/project/field_group.git",
  3384. "reference": "8.x-3.6"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3389. "reference": "8.x-3.6",
  3390. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3391. },
  3392. "require": {
  3393. "drupal/core": "^9.2 || ^10 || ^11"
  3394. },
  3395. "require-dev": {
  3396. "drupal/jquery_ui_accordion": "*"
  3397. },
  3398. "type": "drupal-module",
  3399. "extra": {
  3400. "drupal": {
  3401. "version": "8.x-3.6",
  3402. "datestamp": "1722672510",
  3403. "security-coverage": {
  3404. "status": "covered",
  3405. "message": "Covered by Drupal's security advisory policy"
  3406. }
  3407. }
  3408. },
  3409. "notification-url": "https://packages.drupal.org/8/downloads",
  3410. "license": [
  3411. "GPL-2.0-or-later"
  3412. ],
  3413. "authors": [
  3414. {
  3415. "name": "anybody",
  3416. "homepage": "https://www.drupal.org/user/291091"
  3417. },
  3418. {
  3419. "name": "grevil",
  3420. "homepage": "https://www.drupal.org/user/3668491"
  3421. },
  3422. {
  3423. "name": "hydra",
  3424. "homepage": "https://www.drupal.org/user/647364"
  3425. },
  3426. {
  3427. "name": "joevagyok",
  3428. "homepage": "https://www.drupal.org/user/2876343"
  3429. },
  3430. {
  3431. "name": "jyve",
  3432. "homepage": "https://www.drupal.org/user/591438"
  3433. },
  3434. {
  3435. "name": "nils.destoop",
  3436. "homepage": "https://www.drupal.org/user/361625"
  3437. },
  3438. {
  3439. "name": "Stalski",
  3440. "homepage": "https://www.drupal.org/user/322618"
  3441. },
  3442. {
  3443. "name": "swentel",
  3444. "homepage": "https://www.drupal.org/user/107403"
  3445. }
  3446. ],
  3447. "description": "Provides the field_group module.",
  3448. "homepage": "https://www.drupal.org/project/field_group",
  3449. "support": {
  3450. "source": "https://git.drupalcode.org/project/field_group",
  3451. "issues": "https://www.drupal.org/project/issues/field_group"
  3452. }
  3453. },
  3454. {
  3455. "name": "drupal/filefield_sources",
  3456. "version": "dev-2.0.x",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3460. "reference": "642a01f04ed1ab7285909cdcf9c0fe7801176dce"
  3461. },
  3462. "require": {
  3463. "drupal/core": "^10.2.0 | ^11"
  3464. },
  3465. "require-dev": {
  3466. "drupal/imce": "^3.0"
  3467. },
  3468. "type": "drupal-module",
  3469. "extra": {
  3470. "branch-alias": {
  3471. "dev-2.0.x": "2.0.x-dev"
  3472. },
  3473. "drupal": {
  3474. "version": "2.0.x-dev",
  3475. "datestamp": "1765898278",
  3476. "security-coverage": {
  3477. "status": "not-covered",
  3478. "message": "Dev releases are not covered by Drupal security advisories."
  3479. }
  3480. }
  3481. },
  3482. "notification-url": "https://packages.drupal.org/8/downloads",
  3483. "license": [
  3484. "GPL-2.0-or-later"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Nate Lampton (quicksketch)",
  3489. "homepage": "https://www.drupal.org/u/quicksketch",
  3490. "role": "Maintainer"
  3491. },
  3492. {
  3493. "name": "Andrey Khromyshev (profak)",
  3494. "homepage": "https://www.drupal.org/u/profak",
  3495. "role": "Maintainer"
  3496. },
  3497. {
  3498. "name": "David Valdez (gnuget)",
  3499. "homepage": "https://www.drupal.org/u/gnuget",
  3500. "role": "Maintainer"
  3501. },
  3502. {
  3503. "name": "quicksketch",
  3504. "homepage": "https://www.drupal.org/user/35821"
  3505. }
  3506. ],
  3507. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3508. "homepage": "https://www.drupal.org/project/filefield_sources",
  3509. "support": {
  3510. "source": "https://git.drupalcode.org/project/filefield_sources",
  3511. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3512. "irc": "irc://irc.freenode.org/drupal-contribute"
  3513. }
  3514. },
  3515. {
  3516. "name": "drupal/filter_perms",
  3517. "version": "2.0.2",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3521. "reference": "2.0.2"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  3526. "reference": "2.0.2",
  3527. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  3528. },
  3529. "require": {
  3530. "drupal/core": "^10.3 || ^11 || ^12"
  3531. },
  3532. "type": "drupal-module",
  3533. "extra": {
  3534. "drupal": {
  3535. "version": "2.0.2",
  3536. "datestamp": "1745993059",
  3537. "security-coverage": {
  3538. "status": "covered",
  3539. "message": "Covered by Drupal's security advisory policy"
  3540. }
  3541. }
  3542. },
  3543. "notification-url": "https://packages.drupal.org/8/downloads",
  3544. "license": [
  3545. "GPL-2.0+"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "cyu",
  3550. "homepage": "https://www.drupal.org/user/202205"
  3551. },
  3552. {
  3553. "name": "deekayen",
  3554. "homepage": "https://www.drupal.org/user/972"
  3555. },
  3556. {
  3557. "name": "ivavictoria",
  3558. "homepage": "https://www.drupal.org/user/3061533"
  3559. },
  3560. {
  3561. "name": "justcaldwell",
  3562. "homepage": "https://www.drupal.org/user/290069"
  3563. },
  3564. {
  3565. "name": "mgbellaire",
  3566. "homepage": "https://www.drupal.org/user/1831932"
  3567. },
  3568. {
  3569. "name": "scott_euser",
  3570. "homepage": "https://www.drupal.org/user/3267594"
  3571. },
  3572. {
  3573. "name": "willzyx",
  3574. "homepage": "https://www.drupal.org/user/1043862"
  3575. }
  3576. ],
  3577. "description": "Provides role and module filters to simplify the user permissions page.",
  3578. "homepage": "https://www.drupal.org/project/filter_perms",
  3579. "support": {
  3580. "source": "http://cgit.drupalcode.org/filter_perms",
  3581. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3582. }
  3583. },
  3584. {
  3585. "name": "drupal/honeypot",
  3586. "version": "2.2.2",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://git.drupalcode.org/project/honeypot.git",
  3590. "reference": "2.2.2"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  3595. "reference": "2.2.2",
  3596. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  3597. },
  3598. "require": {
  3599. "drupal/core": "^10.3 || ^11"
  3600. },
  3601. "require-dev": {
  3602. "drupal/rules": "^4.0",
  3603. "drupal/webform": "^6.2"
  3604. },
  3605. "type": "drupal-module",
  3606. "extra": {
  3607. "drupal": {
  3608. "version": "2.2.2",
  3609. "datestamp": "1739854442",
  3610. "security-coverage": {
  3611. "status": "covered",
  3612. "message": "Covered by Drupal's security advisory policy"
  3613. }
  3614. }
  3615. },
  3616. "notification-url": "https://packages.drupal.org/8/downloads",
  3617. "license": [
  3618. "GPL-2.0-or-later"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Jeff Geerling",
  3623. "homepage": "https://www.drupal.org/user/389011",
  3624. "email": "geerlingguy@mac.com"
  3625. },
  3626. {
  3627. "name": "manuel garcia",
  3628. "homepage": "https://www.drupal.org/user/213194"
  3629. },
  3630. {
  3631. "name": "tr",
  3632. "homepage": "https://www.drupal.org/user/202830"
  3633. },
  3634. {
  3635. "name": "vijaycs85",
  3636. "homepage": "https://www.drupal.org/user/93488"
  3637. }
  3638. ],
  3639. "description": "Mitigates spam form submissions using the honeypot method.",
  3640. "homepage": "https://www.drupal.org/project/honeypot",
  3641. "keywords": [
  3642. "deterrent",
  3643. "form",
  3644. "honeypot",
  3645. "honeytrap",
  3646. "php",
  3647. "spam"
  3648. ],
  3649. "support": {
  3650. "source": "https://git.drupalcode.org/project/honeypot",
  3651. "issues": "https://www.drupal.org/project/issues/honeypot"
  3652. }
  3653. },
  3654. {
  3655. "name": "drupal/jquery_ui",
  3656. "version": "1.8.0",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3660. "reference": "8.x-1.8"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.8.zip",
  3665. "reference": "8.x-1.8",
  3666. "shasum": "a53e99216a81d1e35fa357885656a2cf420f1a6a"
  3667. },
  3668. "require": {
  3669. "drupal/core": "^9.2 || ^10 || ^11"
  3670. },
  3671. "type": "drupal-module",
  3672. "extra": {
  3673. "drupal": {
  3674. "version": "8.x-1.8",
  3675. "datestamp": "1758954737",
  3676. "security-coverage": {
  3677. "status": "covered",
  3678. "message": "Covered by Drupal's security advisory policy"
  3679. }
  3680. }
  3681. },
  3682. "notification-url": "https://packages.drupal.org/8/downloads",
  3683. "license": [
  3684. "GPL-2.0-or-later"
  3685. ],
  3686. "authors": [
  3687. {
  3688. "name": "bnjmnm",
  3689. "homepage": "https://www.drupal.org/user/2369194"
  3690. },
  3691. {
  3692. "name": "jjeff",
  3693. "homepage": "https://www.drupal.org/user/17190"
  3694. },
  3695. {
  3696. "name": "lauriii",
  3697. "homepage": "https://www.drupal.org/user/1078742"
  3698. },
  3699. {
  3700. "name": "litwol",
  3701. "homepage": "https://www.drupal.org/user/78134"
  3702. },
  3703. {
  3704. "name": "mfb",
  3705. "homepage": "https://www.drupal.org/user/12302"
  3706. },
  3707. {
  3708. "name": "mfer",
  3709. "homepage": "https://www.drupal.org/user/25701"
  3710. },
  3711. {
  3712. "name": "mikelutz",
  3713. "homepage": "https://www.drupal.org/user/2972409"
  3714. },
  3715. {
  3716. "name": "nod_",
  3717. "homepage": "https://www.drupal.org/user/598310"
  3718. },
  3719. {
  3720. "name": "phenaproxima",
  3721. "homepage": "https://www.drupal.org/user/205645"
  3722. },
  3723. {
  3724. "name": "rajeshreeputra",
  3725. "homepage": "https://www.drupal.org/user/3418561"
  3726. },
  3727. {
  3728. "name": "robloach",
  3729. "homepage": "https://www.drupal.org/user/61114"
  3730. },
  3731. {
  3732. "name": "sun",
  3733. "homepage": "https://www.drupal.org/user/54136"
  3734. },
  3735. {
  3736. "name": "webchick",
  3737. "homepage": "https://www.drupal.org/user/24967"
  3738. },
  3739. {
  3740. "name": "wim leers",
  3741. "homepage": "https://www.drupal.org/user/99777"
  3742. },
  3743. {
  3744. "name": "zrpnr",
  3745. "homepage": "https://www.drupal.org/user/1448368"
  3746. }
  3747. ],
  3748. "description": "Provides jQuery UI library.",
  3749. "homepage": "https://www.drupal.org/project/jquery_ui",
  3750. "support": {
  3751. "source": "https://git.drupalcode.org/project/jquery_ui"
  3752. }
  3753. },
  3754. {
  3755. "name": "drupal/jquery_ui_draggable",
  3756. "version": "2.1.0",
  3757. "source": {
  3758. "type": "git",
  3759. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3760. "reference": "2.1.0"
  3761. },
  3762. "dist": {
  3763. "type": "zip",
  3764. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3765. "reference": "2.1.0",
  3766. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3767. },
  3768. "require": {
  3769. "drupal/core": "^9.2 || ^10 || ^11",
  3770. "drupal/jquery_ui": "^1.7"
  3771. },
  3772. "type": "drupal-module",
  3773. "extra": {
  3774. "drupal": {
  3775. "version": "2.1.0",
  3776. "datestamp": "1717015492",
  3777. "security-coverage": {
  3778. "status": "covered",
  3779. "message": "Covered by Drupal's security advisory policy"
  3780. }
  3781. }
  3782. },
  3783. "notification-url": "https://packages.drupal.org/8/downloads",
  3784. "license": [
  3785. "GPL-2.0-or-later"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "bnjmnm",
  3790. "homepage": "https://www.drupal.org/user/2369194"
  3791. },
  3792. {
  3793. "name": "lauriii",
  3794. "homepage": "https://www.drupal.org/user/1078742"
  3795. },
  3796. {
  3797. "name": "zrpnr",
  3798. "homepage": "https://www.drupal.org/user/1448368"
  3799. }
  3800. ],
  3801. "description": "Provides jQuery UI Draggable library.",
  3802. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3803. "support": {
  3804. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3805. }
  3806. },
  3807. {
  3808. "name": "drupal/jquery_ui_droppable",
  3809. "version": "2.1.0",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3813. "reference": "2.1.0"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3818. "reference": "2.1.0",
  3819. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3820. },
  3821. "require": {
  3822. "drupal/core": "^9.2 || ^10 || ^11",
  3823. "drupal/jquery_ui": "^1.7",
  3824. "drupal/jquery_ui_draggable": "^2.1"
  3825. },
  3826. "type": "drupal-module",
  3827. "extra": {
  3828. "drupal": {
  3829. "version": "2.1.0",
  3830. "datestamp": "1717031391",
  3831. "security-coverage": {
  3832. "status": "covered",
  3833. "message": "Covered by Drupal's security advisory policy"
  3834. }
  3835. }
  3836. },
  3837. "notification-url": "https://packages.drupal.org/8/downloads",
  3838. "license": [
  3839. "GPL-2.0-or-later"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "bnjmnm",
  3844. "homepage": "https://www.drupal.org/user/2369194"
  3845. },
  3846. {
  3847. "name": "lauriii",
  3848. "homepage": "https://www.drupal.org/user/1078742"
  3849. },
  3850. {
  3851. "name": "zrpnr",
  3852. "homepage": "https://www.drupal.org/user/1448368"
  3853. }
  3854. ],
  3855. "description": "Provides jQuery UI Droppable library.",
  3856. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3857. "support": {
  3858. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3859. }
  3860. },
  3861. {
  3862. "name": "drupal/jquery_ui_sortable",
  3863. "version": "2.1.0",
  3864. "source": {
  3865. "type": "git",
  3866. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3867. "reference": "2.1.0"
  3868. },
  3869. "dist": {
  3870. "type": "zip",
  3871. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.1.0.zip",
  3872. "reference": "2.1.0",
  3873. "shasum": "ccf85ee62d0f1414155c2fb6ed85d11d71cb8d5e"
  3874. },
  3875. "require": {
  3876. "drupal/core": "^9.2 || ^10 || ^11",
  3877. "drupal/jquery_ui": "^1.7"
  3878. },
  3879. "type": "drupal-module",
  3880. "extra": {
  3881. "drupal": {
  3882. "version": "2.1.0",
  3883. "datestamp": "1758207405",
  3884. "security-coverage": {
  3885. "status": "covered",
  3886. "message": "Covered by Drupal's security advisory policy"
  3887. },
  3888. "package": "jQuery UI"
  3889. }
  3890. },
  3891. "notification-url": "https://packages.drupal.org/8/downloads",
  3892. "license": [
  3893. "GPL-2.0-or-later"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "bnjmnm",
  3898. "homepage": "https://www.drupal.org/user/2369194"
  3899. },
  3900. {
  3901. "name": "kevin.dutra",
  3902. "homepage": "https://www.drupal.org/user/1312744"
  3903. },
  3904. {
  3905. "name": "lauriii",
  3906. "homepage": "https://www.drupal.org/user/1078742"
  3907. },
  3908. {
  3909. "name": "zrpnr",
  3910. "homepage": "https://www.drupal.org/user/1448368"
  3911. }
  3912. ],
  3913. "description": "Provides jQuery UI Sortable integration for Drupal.",
  3914. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  3915. "support": {
  3916. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  3917. }
  3918. },
  3919. {
  3920. "name": "drupal/js_cookie",
  3921. "version": "1.0.2",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://git.drupalcode.org/project/js_cookie.git",
  3925. "reference": "1.0.2"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.2.zip",
  3930. "reference": "1.0.2",
  3931. "shasum": "effcbee68083efc866aca2a1bfa3fc6e14fe0c2f"
  3932. },
  3933. "require": {
  3934. "drupal/core": "^9 || ^10 || ^11"
  3935. },
  3936. "type": "drupal-module",
  3937. "extra": {
  3938. "drupal": {
  3939. "version": "1.0.2",
  3940. "datestamp": "1762168962",
  3941. "security-coverage": {
  3942. "status": "covered",
  3943. "message": "Covered by Drupal's security advisory policy"
  3944. }
  3945. }
  3946. },
  3947. "notification-url": "https://packages.drupal.org/8/downloads",
  3948. "license": [
  3949. "GPL-2.0-or-later"
  3950. ],
  3951. "authors": [
  3952. {
  3953. "name": "anybody",
  3954. "homepage": "https://www.drupal.org/user/291091"
  3955. },
  3956. {
  3957. "name": "dave reid",
  3958. "homepage": "https://www.drupal.org/user/53892"
  3959. },
  3960. {
  3961. "name": "grevil",
  3962. "homepage": "https://www.drupal.org/user/3668491"
  3963. },
  3964. {
  3965. "name": "jan kellermann",
  3966. "homepage": "https://www.drupal.org/user/371731"
  3967. }
  3968. ],
  3969. "description": "Provides the js-cookie library as a dependency.",
  3970. "homepage": "https://www.drupal.org/project/js_cookie",
  3971. "support": {
  3972. "source": "https://git.drupalcode.org/project/js_cookie"
  3973. }
  3974. },
  3975. {
  3976. "name": "drupal/linkit",
  3977. "version": "7.0.13",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://git.drupalcode.org/project/linkit.git",
  3981. "reference": "7.0.13"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.13.zip",
  3986. "reference": "7.0.13",
  3987. "shasum": "918d001248b4a394eb1c4e097e7d243959280489"
  3988. },
  3989. "require": {
  3990. "drupal/core": "^10.1 || ^11"
  3991. },
  3992. "type": "drupal-module",
  3993. "extra": {
  3994. "drupal": {
  3995. "version": "7.0.13",
  3996. "datestamp": "1773055628",
  3997. "security-coverage": {
  3998. "status": "covered",
  3999. "message": "Covered by Drupal's security advisory policy"
  4000. }
  4001. }
  4002. },
  4003. "notification-url": "https://packages.drupal.org/8/downloads",
  4004. "license": [
  4005. "GPL-2.0-or-later"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Emil Stjerneman",
  4010. "homepage": "https://stjerneman.com",
  4011. "email": "emil@stjerneman.com",
  4012. "role": "Maintainer"
  4013. },
  4014. {
  4015. "name": "johnwebdev",
  4016. "homepage": "https://www.drupal.org/user/3331569"
  4017. },
  4018. {
  4019. "name": "mark_fullmer",
  4020. "homepage": "https://www.drupal.org/user/2612816"
  4021. }
  4022. ],
  4023. "description": "Linkit - Enriched linking experience",
  4024. "homepage": "http://drupal.org/project/linkit",
  4025. "support": {
  4026. "source": "http://cgit.drupalcode.org/linkit",
  4027. "issues": "http://drupal.org/project/linkit"
  4028. }
  4029. },
  4030. {
  4031. "name": "drupal/login_emailusername",
  4032. "version": "2.1.0",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4036. "reference": "2.1.0"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4041. "reference": "2.1.0",
  4042. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4043. },
  4044. "require": {
  4045. "drupal/core": "^8.8 || ^9 || ^10"
  4046. },
  4047. "type": "drupal-module",
  4048. "extra": {
  4049. "drupal": {
  4050. "version": "2.1.0",
  4051. "datestamp": "1677072401",
  4052. "security-coverage": {
  4053. "status": "covered",
  4054. "message": "Covered by Drupal's security advisory policy"
  4055. }
  4056. },
  4057. "branch-alias": {
  4058. "dev-8.x-1.x": "8.1.x-dev"
  4059. }
  4060. },
  4061. "notification-url": "https://packages.drupal.org/8/downloads",
  4062. "license": [
  4063. "GPL-2.0-or-later"
  4064. ],
  4065. "authors": [
  4066. {
  4067. "name": "See contributors",
  4068. "homepage": "https://www.drupal.org/node/2820429/committers",
  4069. "role": "contributor"
  4070. },
  4071. {
  4072. "name": "jannakha",
  4073. "homepage": "https://www.drupal.org/user/3085703"
  4074. },
  4075. {
  4076. "name": "mably",
  4077. "homepage": "https://www.drupal.org/user/3375160"
  4078. },
  4079. {
  4080. "name": "pameeela",
  4081. "homepage": "https://www.drupal.org/user/1431110"
  4082. },
  4083. {
  4084. "name": "rjjakes",
  4085. "homepage": "https://www.drupal.org/user/3457245"
  4086. },
  4087. {
  4088. "name": "vladimiraus",
  4089. "homepage": "https://www.drupal.org/user/673120"
  4090. }
  4091. ],
  4092. "description": "Login with the email as username.",
  4093. "homepage": "https://drupal.org/project/login_emailusername",
  4094. "support": {
  4095. "source": "https://git.drupalcode.org/project/login_emailusername",
  4096. "issues": "https://drupal.org/project/issues/login_emailusername"
  4097. }
  4098. },
  4099. {
  4100. "name": "drupal/maillog",
  4101. "version": "1.2.0",
  4102. "source": {
  4103. "type": "git",
  4104. "url": "https://git.drupalcode.org/project/maillog.git",
  4105. "reference": "8.x-1.2"
  4106. },
  4107. "dist": {
  4108. "type": "zip",
  4109. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.2.zip",
  4110. "reference": "8.x-1.2",
  4111. "shasum": "3bc03a6c0729a186c92dce6c4966a0943a68bbd0"
  4112. },
  4113. "require": {
  4114. "drupal/core": "^9 || ^10 || ^11"
  4115. },
  4116. "type": "drupal-module",
  4117. "extra": {
  4118. "drupal": {
  4119. "version": "8.x-1.2",
  4120. "datestamp": "1769596712",
  4121. "security-coverage": {
  4122. "status": "covered",
  4123. "message": "Covered by Drupal's security advisory policy"
  4124. }
  4125. }
  4126. },
  4127. "notification-url": "https://packages.drupal.org/8/downloads",
  4128. "license": [
  4129. "GPL-2.0-or-later"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "berdir",
  4134. "homepage": "https://www.drupal.org/user/214652"
  4135. },
  4136. {
  4137. "name": "damienmckenna",
  4138. "homepage": "https://www.drupal.org/user/108450"
  4139. },
  4140. {
  4141. "name": "miro_dietiker",
  4142. "homepage": "https://www.drupal.org/user/227761"
  4143. },
  4144. {
  4145. "name": "pluess",
  4146. "homepage": "https://www.drupal.org/user/84659"
  4147. }
  4148. ],
  4149. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4150. "homepage": "https://www.drupal.org/project/maillog",
  4151. "support": {
  4152. "source": "https://git.drupalcode.org/project/maillog"
  4153. }
  4154. },
  4155. {
  4156. "name": "drupal/menu_admin_per_menu",
  4157. "version": "1.7.0",
  4158. "source": {
  4159. "type": "git",
  4160. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4161. "reference": "8.x-1.7"
  4162. },
  4163. "dist": {
  4164. "type": "zip",
  4165. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  4166. "reference": "8.x-1.7",
  4167. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  4168. },
  4169. "require": {
  4170. "drupal/core": "^10.2 || ^11.0 || ^12"
  4171. },
  4172. "type": "drupal-module",
  4173. "extra": {
  4174. "drupal": {
  4175. "version": "8.x-1.7",
  4176. "datestamp": "1750246188",
  4177. "security-coverage": {
  4178. "status": "covered",
  4179. "message": "Covered by Drupal's security advisory policy"
  4180. }
  4181. }
  4182. },
  4183. "notification-url": "https://packages.drupal.org/8/downloads",
  4184. "license": [
  4185. "GPL-2.0-or-later"
  4186. ],
  4187. "authors": [
  4188. {
  4189. "name": "anrikun",
  4190. "homepage": "https://www.drupal.org/user/410199"
  4191. },
  4192. {
  4193. "name": "jeroent",
  4194. "homepage": "https://www.drupal.org/user/2228934"
  4195. },
  4196. {
  4197. "name": "jonas139",
  4198. "homepage": "https://www.drupal.org/user/2873401"
  4199. },
  4200. {
  4201. "name": "mkdok",
  4202. "homepage": "https://www.drupal.org/user/3308753"
  4203. }
  4204. ],
  4205. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4206. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4207. "keywords": [
  4208. "Drupal"
  4209. ],
  4210. "support": {
  4211. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4212. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4213. }
  4214. },
  4215. {
  4216. "name": "drupal/metatag",
  4217. "version": "2.2.0",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://git.drupalcode.org/project/metatag.git",
  4221. "reference": "2.2.0"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://ftp.drupal.org/files/projects/metatag-2.2.0.zip",
  4226. "reference": "2.2.0",
  4227. "shasum": "b6ae4b665a49771d5139644c71cb3d5a68cb4828"
  4228. },
  4229. "require": {
  4230. "drupal/core": "^10.3 || ^11",
  4231. "drupal/token": "^1.0",
  4232. "php": ">=8.0"
  4233. },
  4234. "require-dev": {
  4235. "drupal/forum": "1.x-dev",
  4236. "drupal/hal": "^1 || ^2 || ^9",
  4237. "drupal/metatag_dc": "*",
  4238. "drupal/metatag_open_graph": "*",
  4239. "drupal/page_manager": "^4.0",
  4240. "drupal/redirect": "^1.0",
  4241. "ergebnis/composer-normalize": "*",
  4242. "mpyw/phpunit-patch-serializable-comparison": "*"
  4243. },
  4244. "type": "drupal-module",
  4245. "extra": {
  4246. "drupal": {
  4247. "version": "2.2.0",
  4248. "datestamp": "1758622371",
  4249. "security-coverage": {
  4250. "status": "covered",
  4251. "message": "Covered by Drupal's security advisory policy"
  4252. }
  4253. },
  4254. "composer-normalize": {
  4255. "indent-size": 2,
  4256. "indent-style": "space"
  4257. }
  4258. },
  4259. "notification-url": "https://packages.drupal.org/8/downloads",
  4260. "license": [
  4261. "GPL-2.0-or-later"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "See contributors",
  4266. "homepage": "https://www.drupal.org/node/640498/committers",
  4267. "role": "Developer"
  4268. },
  4269. {
  4270. "name": "dave reid",
  4271. "homepage": "https://www.drupal.org/user/53892"
  4272. }
  4273. ],
  4274. "description": "Manage meta tags for all entities.",
  4275. "homepage": "https://www.drupal.org/project/metatag",
  4276. "keywords": [
  4277. "Drupal",
  4278. "seo"
  4279. ],
  4280. "support": {
  4281. "source": "https://git.drupalcode.org/project/metatag",
  4282. "issues": "https://www.drupal.org/project/issues/metatag",
  4283. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4284. }
  4285. },
  4286. {
  4287. "name": "drupal/pathauto",
  4288. "version": "1.14.0",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://git.drupalcode.org/project/pathauto.git",
  4292. "reference": "8.x-1.14"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.14.zip",
  4297. "reference": "8.x-1.14",
  4298. "shasum": "07f0d2efcf0bfb450e2ab69a43921fa39dc5f25b"
  4299. },
  4300. "require": {
  4301. "drupal/core": "^10 || ^11",
  4302. "drupal/ctools": "*",
  4303. "drupal/token": "*"
  4304. },
  4305. "conflict": {
  4306. "drush/drush": "<12.5.1"
  4307. },
  4308. "require-dev": {
  4309. "drupal/forum": "*"
  4310. },
  4311. "suggest": {
  4312. "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."
  4313. },
  4314. "type": "drupal-module",
  4315. "extra": {
  4316. "drupal": {
  4317. "version": "8.x-1.14",
  4318. "datestamp": "1759838097",
  4319. "security-coverage": {
  4320. "status": "covered",
  4321. "message": "Covered by Drupal's security advisory policy"
  4322. }
  4323. }
  4324. },
  4325. "notification-url": "https://packages.drupal.org/8/downloads",
  4326. "license": [
  4327. "GPL-2.0-or-later"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "acbramley",
  4332. "homepage": "https://www.drupal.org/user/1036766"
  4333. },
  4334. {
  4335. "name": "berdir",
  4336. "homepage": "https://www.drupal.org/user/214652"
  4337. },
  4338. {
  4339. "name": "dave reid",
  4340. "homepage": "https://www.drupal.org/user/53892"
  4341. },
  4342. {
  4343. "name": "Freso",
  4344. "homepage": "https://www.drupal.org/user/27504"
  4345. },
  4346. {
  4347. "name": "greggles",
  4348. "homepage": "https://www.drupal.org/user/36762"
  4349. },
  4350. {
  4351. "name": "mably",
  4352. "homepage": "https://www.drupal.org/user/3375160"
  4353. }
  4354. ],
  4355. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4356. "homepage": "https://www.drupal.org/project/pathauto",
  4357. "support": {
  4358. "source": "https://cgit.drupalcode.org/pathauto",
  4359. "issues": "https://www.drupal.org/project/issues/pathauto",
  4360. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4361. }
  4362. },
  4363. {
  4364. "name": "drupal/profile",
  4365. "version": "1.14.0",
  4366. "source": {
  4367. "type": "git",
  4368. "url": "https://git.drupalcode.org/project/profile.git",
  4369. "reference": "8.x-1.14"
  4370. },
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.14.zip",
  4374. "reference": "8.x-1.14",
  4375. "shasum": "eda73cb55a9034b318fb87bc9f8db4b778c4fdd6"
  4376. },
  4377. "require": {
  4378. "drupal/core": "^9 || ^10 || ^11",
  4379. "drupal/entity": "^1.0",
  4380. "php": "^7.4 || ^8.0"
  4381. },
  4382. "require-dev": {
  4383. "drupal/search_api": "~1.30",
  4384. "drupal/token": "^1.7"
  4385. },
  4386. "type": "drupal-module",
  4387. "extra": {
  4388. "drupal": {
  4389. "version": "8.x-1.14",
  4390. "datestamp": "1765287779",
  4391. "security-coverage": {
  4392. "status": "covered",
  4393. "message": "Covered by Drupal's security advisory policy"
  4394. }
  4395. }
  4396. },
  4397. "notification-url": "https://packages.drupal.org/8/downloads",
  4398. "license": [
  4399. "GPL-2.0-or-later"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "bojanz",
  4404. "homepage": "https://www.drupal.org/user/86106"
  4405. },
  4406. {
  4407. "name": "daggerhart",
  4408. "homepage": "https://www.drupal.org/user/167806"
  4409. },
  4410. {
  4411. "name": "fago",
  4412. "homepage": "https://www.drupal.org/user/16747"
  4413. },
  4414. {
  4415. "name": "jsacksick",
  4416. "homepage": "https://www.drupal.org/user/972218"
  4417. },
  4418. {
  4419. "name": "mglaman",
  4420. "homepage": "https://www.drupal.org/user/2416470"
  4421. },
  4422. {
  4423. "name": "pcambra",
  4424. "homepage": "https://www.drupal.org/user/122101"
  4425. }
  4426. ],
  4427. "description": "Provides configurable user profiles.",
  4428. "homepage": "https://drupal.org/project/profile",
  4429. "support": {
  4430. "source": "https://git.drupalcode.org/project/profile"
  4431. }
  4432. },
  4433. {
  4434. "name": "drupal/redirect",
  4435. "version": "1.12.0",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://git.drupalcode.org/project/redirect.git",
  4439. "reference": "8.x-1.12"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.12.zip",
  4444. "reference": "8.x-1.12",
  4445. "shasum": "1cdee11356a25b9f9a10329aec0eeb293e0023de"
  4446. },
  4447. "require": {
  4448. "drupal/core": "^10 || ^11"
  4449. },
  4450. "type": "drupal-module",
  4451. "extra": {
  4452. "drupal": {
  4453. "version": "8.x-1.12",
  4454. "datestamp": "1756419163",
  4455. "security-coverage": {
  4456. "status": "covered",
  4457. "message": "Covered by Drupal's security advisory policy"
  4458. }
  4459. }
  4460. },
  4461. "notification-url": "https://packages.drupal.org/8/downloads",
  4462. "license": [
  4463. "GPL-2.0-or-later"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "berdir",
  4468. "homepage": "https://www.drupal.org/user/214652"
  4469. },
  4470. {
  4471. "name": "dave reid",
  4472. "homepage": "https://www.drupal.org/user/53892"
  4473. },
  4474. {
  4475. "name": "kristen pol",
  4476. "homepage": "https://www.drupal.org/user/8389"
  4477. },
  4478. {
  4479. "name": "pifagor",
  4480. "homepage": "https://www.drupal.org/user/2375692"
  4481. }
  4482. ],
  4483. "description": "Allows users to redirect from old URLs to new URLs.",
  4484. "homepage": "https://www.drupal.org/project/redirect",
  4485. "support": {
  4486. "source": "https://git.drupalcode.org/project/redirect"
  4487. }
  4488. },
  4489. {
  4490. "name": "drupal/redis",
  4491. "version": "1.11.0",
  4492. "source": {
  4493. "type": "git",
  4494. "url": "https://git.drupalcode.org/project/redis.git",
  4495. "reference": "8.x-1.11"
  4496. },
  4497. "dist": {
  4498. "type": "zip",
  4499. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.11.zip",
  4500. "reference": "8.x-1.11",
  4501. "shasum": "4a32e50b85523fd09500b6c6398cf18504bdc652"
  4502. },
  4503. "require": {
  4504. "drupal/core": "^9.3 || ^10 || ^11"
  4505. },
  4506. "suggest": {
  4507. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4508. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4509. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4510. },
  4511. "type": "drupal-module",
  4512. "extra": {
  4513. "drupal": {
  4514. "version": "8.x-1.11",
  4515. "datestamp": "1762688846",
  4516. "security-coverage": {
  4517. "status": "covered",
  4518. "message": "Covered by Drupal's security advisory policy"
  4519. }
  4520. }
  4521. },
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Drupal\\redis\\": "src"
  4525. }
  4526. },
  4527. "notification-url": "https://packages.drupal.org/8/downloads",
  4528. "license": [
  4529. "GPL-2.0-or-later"
  4530. ],
  4531. "authors": [
  4532. {
  4533. "name": "berdir",
  4534. "homepage": "https://www.drupal.org/user/214652"
  4535. },
  4536. {
  4537. "name": "greg.1.anderson",
  4538. "homepage": "https://www.drupal.org/user/438598"
  4539. },
  4540. {
  4541. "name": "kporras07",
  4542. "homepage": "https://www.drupal.org/user/1349780"
  4543. },
  4544. {
  4545. "name": "pounard",
  4546. "homepage": "https://www.drupal.org/user/240164"
  4547. }
  4548. ],
  4549. "description": "Integration of Drupal with the Redis key-value store.",
  4550. "homepage": "https://www.drupal.org/project/redis",
  4551. "support": {
  4552. "source": "https://git.drupalcode.org/project/redis"
  4553. }
  4554. },
  4555. {
  4556. "name": "drupal/restui",
  4557. "version": "1.22.0",
  4558. "source": {
  4559. "type": "git",
  4560. "url": "https://git.drupalcode.org/project/restui.git",
  4561. "reference": "8.x-1.22"
  4562. },
  4563. "dist": {
  4564. "type": "zip",
  4565. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4566. "reference": "8.x-1.22",
  4567. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4568. },
  4569. "require": {
  4570. "drupal/core": "^9.5 || ^10 || ^11"
  4571. },
  4572. "type": "drupal-module",
  4573. "extra": {
  4574. "drupal": {
  4575. "version": "8.x-1.22",
  4576. "datestamp": "1721134189",
  4577. "security-coverage": {
  4578. "status": "covered",
  4579. "message": "Covered by Drupal's security advisory policy"
  4580. }
  4581. }
  4582. },
  4583. "notification-url": "https://packages.drupal.org/8/downloads",
  4584. "license": [
  4585. "GPL-2.0-or-later"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "-enzo-",
  4590. "homepage": "https://www.drupal.org/user/294937"
  4591. },
  4592. {
  4593. "name": "clemens.tolboom",
  4594. "homepage": "https://www.drupal.org/user/125814"
  4595. },
  4596. {
  4597. "name": "juampynr",
  4598. "homepage": "https://www.drupal.org/user/682736"
  4599. },
  4600. {
  4601. "name": "kamkejj",
  4602. "homepage": "https://www.drupal.org/user/81043"
  4603. },
  4604. {
  4605. "name": "vipin.mittal18",
  4606. "homepage": "https://www.drupal.org/user/319716"
  4607. }
  4608. ],
  4609. "description": "Provides a user interface to manage REST resources.",
  4610. "homepage": "https://www.drupal.org/project/restui",
  4611. "support": {
  4612. "source": "https://git.drupalcode.org/project/restui"
  4613. }
  4614. },
  4615. {
  4616. "name": "drupal/search_api",
  4617. "version": "1.35.0",
  4618. "source": {
  4619. "type": "git",
  4620. "url": "https://git.drupalcode.org/project/search_api.git",
  4621. "reference": "8.x-1.35"
  4622. },
  4623. "dist": {
  4624. "type": "zip",
  4625. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.35.zip",
  4626. "reference": "8.x-1.35",
  4627. "shasum": "d119726e870f793c6470d2a4fa9286662c5eb45d"
  4628. },
  4629. "require": {
  4630. "drupal/core": "^10.1 || ^11"
  4631. },
  4632. "conflict": {
  4633. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4634. },
  4635. "require-dev": {
  4636. "drupal/language_fallback_fix": "@dev",
  4637. "drupal/search_api_autocomplete": "@dev",
  4638. "drupal/search_api_db": "*"
  4639. },
  4640. "suggest": {
  4641. "drupal/facets": "Adds the ability to create faceted searches.",
  4642. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4643. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4644. },
  4645. "type": "drupal-module",
  4646. "extra": {
  4647. "drupal": {
  4648. "version": "8.x-1.35",
  4649. "datestamp": "1718551025",
  4650. "security-coverage": {
  4651. "status": "covered",
  4652. "message": "Covered by Drupal's security advisory policy"
  4653. }
  4654. },
  4655. "drush": {
  4656. "services": {
  4657. "drush.services.yml": "^9 || ^10 || ^11"
  4658. }
  4659. }
  4660. },
  4661. "notification-url": "https://packages.drupal.org/8/downloads",
  4662. "license": [
  4663. "GPL-2.0-or-later"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Thomas Seidl",
  4668. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4669. },
  4670. {
  4671. "name": "Nick Veenhof",
  4672. "homepage": "https://www.drupal.org/u/nick_vh"
  4673. },
  4674. {
  4675. "name": "See other contributors",
  4676. "homepage": "https://www.drupal.org/node/790418/committers"
  4677. }
  4678. ],
  4679. "description": "Provides a generic framework for modules offering search capabilities.",
  4680. "homepage": "https://www.drupal.org/project/search_api",
  4681. "support": {
  4682. "source": "https://git.drupalcode.org/project/search_api",
  4683. "issues": "https://www.drupal.org/project/issues/search_api",
  4684. "irc": "irc://irc.freenode.org/drupal-search-api"
  4685. }
  4686. },
  4687. {
  4688. "name": "drupal/seven",
  4689. "version": "1.0.0",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://git.drupalcode.org/project/seven.git",
  4693. "reference": "1.0.0"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4698. "reference": "1.0.0",
  4699. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4700. },
  4701. "require": {
  4702. "drupal/core": "^9 || ^10"
  4703. },
  4704. "type": "drupal-theme",
  4705. "extra": {
  4706. "drupal": {
  4707. "version": "1.0.0",
  4708. "datestamp": "1758908691",
  4709. "security-coverage": {
  4710. "status": "covered",
  4711. "message": "Covered by Drupal's security advisory policy"
  4712. }
  4713. }
  4714. },
  4715. "notification-url": "https://packages.drupal.org/8/downloads",
  4716. "license": [
  4717. "GPL-2.0-or-later"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "avpaderno",
  4722. "homepage": "https://www.drupal.org/user/55077"
  4723. },
  4724. {
  4725. "name": "bnjmnm",
  4726. "homepage": "https://www.drupal.org/user/2369194"
  4727. },
  4728. {
  4729. "name": "krakenbite",
  4730. "homepage": "https://www.drupal.org/user/3805933"
  4731. },
  4732. {
  4733. "name": "lauriii",
  4734. "homepage": "https://www.drupal.org/user/1078742"
  4735. },
  4736. {
  4737. "name": "mcrittenden",
  4738. "homepage": "https://www.drupal.org/user/420631"
  4739. },
  4740. {
  4741. "name": "mrfelton",
  4742. "homepage": "https://www.drupal.org/user/305669"
  4743. }
  4744. ],
  4745. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4746. "homepage": "https://www.drupal.org/project/seven",
  4747. "support": {
  4748. "source": "https://git.drupalcode.org/project/seven"
  4749. }
  4750. },
  4751. {
  4752. "name": "drupal/simple_sitemap",
  4753. "version": "4.2.1",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4757. "reference": "4.2.1"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.1.zip",
  4762. "reference": "4.2.1",
  4763. "shasum": "d96b481571ca2fecdb305e87d2557f9338116864"
  4764. },
  4765. "require": {
  4766. "drupal/core": "^10.2 || ^11",
  4767. "ext-xmlwriter": "*"
  4768. },
  4769. "type": "drupal-module",
  4770. "extra": {
  4771. "drupal": {
  4772. "version": "4.2.1",
  4773. "datestamp": "1723802052",
  4774. "security-coverage": {
  4775. "status": "covered",
  4776. "message": "Covered by Drupal's security advisory policy"
  4777. }
  4778. },
  4779. "drush": {
  4780. "services": {
  4781. "drush.services.yml": ">=9"
  4782. }
  4783. }
  4784. },
  4785. "notification-url": "https://packages.drupal.org/8/downloads",
  4786. "license": [
  4787. "GPL-2.0-or-later"
  4788. ],
  4789. "authors": [
  4790. {
  4791. "name": "Pawel Ginalski (gbyte)",
  4792. "homepage": "https://www.drupal.org/u/gbyte",
  4793. "email": "contact@gbyte.dev",
  4794. "role": "Maintainer"
  4795. },
  4796. {
  4797. "name": "walkingdexter",
  4798. "homepage": "https://www.drupal.org/user/3251330"
  4799. }
  4800. ],
  4801. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4802. "homepage": "https://drupal.org/project/simple_sitemap",
  4803. "support": {
  4804. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4805. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4806. }
  4807. },
  4808. {
  4809. "name": "drupal/stable",
  4810. "version": "2.1.0",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://git.drupalcode.org/project/stable.git",
  4814. "reference": "2.1.0"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4819. "reference": "2.1.0",
  4820. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4821. },
  4822. "require": {
  4823. "drupal/core": "^10.3 || ^11"
  4824. },
  4825. "type": "drupal-theme",
  4826. "extra": {
  4827. "drupal": {
  4828. "version": "2.1.0",
  4829. "datestamp": "1721202956",
  4830. "security-coverage": {
  4831. "status": "covered",
  4832. "message": "Covered by Drupal's security advisory policy"
  4833. }
  4834. }
  4835. },
  4836. "notification-url": "https://packages.drupal.org/8/downloads",
  4837. "license": [
  4838. "GPL-2.0-or-later"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "bnjmnm",
  4843. "homepage": "https://www.drupal.org/user/2369194"
  4844. },
  4845. {
  4846. "name": "lauriii",
  4847. "homepage": "https://www.drupal.org/user/1078742"
  4848. },
  4849. {
  4850. "name": "rajeshreeputra",
  4851. "homepage": "https://www.drupal.org/user/3418561"
  4852. },
  4853. {
  4854. "name": "star-szr",
  4855. "homepage": "https://www.drupal.org/user/1167326"
  4856. }
  4857. ],
  4858. "description": "A base theme using Drupal core markup and CSS.",
  4859. "homepage": "https://www.drupal.org/project/stable",
  4860. "support": {
  4861. "source": "https://git.drupalcode.org/project/stable"
  4862. }
  4863. },
  4864. {
  4865. "name": "drupal/synonyms",
  4866. "version": "2.1.4",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://git.drupalcode.org/project/synonyms.git",
  4870. "reference": "2.1.4"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4875. "reference": "2.1.4",
  4876. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4877. },
  4878. "require": {
  4879. "drupal/core": "^9 || ^10 || ^11"
  4880. },
  4881. "require-dev": {
  4882. "drupal/synonyms_list_field": "*"
  4883. },
  4884. "type": "drupal-module",
  4885. "extra": {
  4886. "drupal": {
  4887. "version": "2.1.4",
  4888. "datestamp": "1723069842",
  4889. "security-coverage": {
  4890. "status": "covered",
  4891. "message": "Covered by Drupal's security advisory policy"
  4892. }
  4893. }
  4894. },
  4895. "notification-url": "https://packages.drupal.org/8/downloads",
  4896. "license": [
  4897. "GPL-2.0-or-later"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "Bojan Zivanovic",
  4902. "homepage": "https://www.drupal.org/u/bojanz",
  4903. "role": "Author and D5, D6 and D7 versions developer."
  4904. },
  4905. {
  4906. "name": "Alex Trosenko",
  4907. "homepage": "https://www.drupal.org/u/bucefal91",
  4908. "role": "D7 and D8 versions developer."
  4909. },
  4910. {
  4911. "name": "Duro Arezina",
  4912. "homepage": "https://www.drupal.org/u/devad",
  4913. "role": "D8+ versions maintenance"
  4914. },
  4915. {
  4916. "name": "See other contributors",
  4917. "homepage": "https://www.drupal.org/node/148775/committers"
  4918. }
  4919. ],
  4920. "description": "Provides synonyms feature for all entities.",
  4921. "homepage": "https://www.drupal.org/project/synonyms",
  4922. "support": {
  4923. "source": "https://git.drupalcode.org/project/synonyms",
  4924. "issues": "https://www.drupal.org/project/issues/synonyms"
  4925. }
  4926. },
  4927. {
  4928. "name": "drupal/token",
  4929. "version": "1.17.0",
  4930. "source": {
  4931. "type": "git",
  4932. "url": "https://git.drupalcode.org/project/token.git",
  4933. "reference": "8.x-1.17"
  4934. },
  4935. "dist": {
  4936. "type": "zip",
  4937. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.17.zip",
  4938. "reference": "8.x-1.17",
  4939. "shasum": "21d11adf0be16f1aa95b6348b4ceadbe9a625824"
  4940. },
  4941. "require": {
  4942. "drupal/core": "^10.3 || ^11"
  4943. },
  4944. "require-dev": {
  4945. "drupal/book": "^1 || ^2"
  4946. },
  4947. "type": "drupal-module",
  4948. "extra": {
  4949. "drupal": {
  4950. "version": "8.x-1.17",
  4951. "datestamp": "1767942434",
  4952. "security-coverage": {
  4953. "status": "covered",
  4954. "message": "Covered by Drupal's security advisory policy"
  4955. }
  4956. },
  4957. "drush": {
  4958. "services": {
  4959. "drush.services.yml": ">=9"
  4960. }
  4961. }
  4962. },
  4963. "notification-url": "https://packages.drupal.org/8/downloads",
  4964. "license": [
  4965. "GPL-2.0-or-later"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "berdir",
  4970. "homepage": "https://www.drupal.org/user/214652"
  4971. },
  4972. {
  4973. "name": "dave reid",
  4974. "homepage": "https://www.drupal.org/user/53892"
  4975. },
  4976. {
  4977. "name": "eaton",
  4978. "homepage": "https://www.drupal.org/user/16496"
  4979. },
  4980. {
  4981. "name": "fago",
  4982. "homepage": "https://www.drupal.org/user/16747"
  4983. },
  4984. {
  4985. "name": "greggles",
  4986. "homepage": "https://www.drupal.org/user/36762"
  4987. },
  4988. {
  4989. "name": "mikeryan",
  4990. "homepage": "https://www.drupal.org/user/4420"
  4991. }
  4992. ],
  4993. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4994. "homepage": "https://www.drupal.org/project/token",
  4995. "support": {
  4996. "source": "https://git.drupalcode.org/project/token"
  4997. }
  4998. },
  4999. {
  5000. "name": "drupal/translation_views",
  5001. "version": "1.0.0-alpha11",
  5002. "source": {
  5003. "type": "git",
  5004. "url": "https://git.drupalcode.org/project/translation_views.git",
  5005. "reference": "8.x-1.0-alpha11"
  5006. },
  5007. "dist": {
  5008. "type": "zip",
  5009. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5010. "reference": "8.x-1.0-alpha11",
  5011. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5012. },
  5013. "require": {
  5014. "drupal/core": "^8.8 || ^9 || ^10"
  5015. },
  5016. "require-dev": {
  5017. "drupal/translators_content": "^1.0@alpha"
  5018. },
  5019. "type": "drupal-module",
  5020. "extra": {
  5021. "drupal": {
  5022. "version": "8.x-1.0-alpha11",
  5023. "datestamp": "1679660668",
  5024. "security-coverage": {
  5025. "status": "not-covered",
  5026. "message": "Project has not opted into security advisory coverage!"
  5027. }
  5028. }
  5029. },
  5030. "notification-url": "https://packages.drupal.org/8/downloads",
  5031. "license": [
  5032. "GPL-2.0-or-later"
  5033. ],
  5034. "authors": [
  5035. {
  5036. "name": "matsbla",
  5037. "homepage": "https://www.drupal.org/user/2325394"
  5038. },
  5039. {
  5040. "name": "vlad.dancer",
  5041. "homepage": "https://www.drupal.org/user/903844"
  5042. }
  5043. ],
  5044. "description": "Create customized lists and queries of translations from your database.",
  5045. "homepage": "https://www.drupal.org/project/translation_views",
  5046. "support": {
  5047. "source": "https://git.drupalcode.org/project/translation_views"
  5048. }
  5049. },
  5050. {
  5051. "name": "drupal/upgrade_status",
  5052. "version": "4.3.5",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5056. "reference": "4.3.5"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.5.zip",
  5061. "reference": "4.3.5",
  5062. "shasum": "353c17f14c855f5ba0fe48c6a4f6486360c066a7"
  5063. },
  5064. "require": {
  5065. "dekor/php-array-table": "^2.0",
  5066. "drupal/core": "^9 || ^10 || ^11",
  5067. "mglaman/phpstan-drupal": "^1.2.11",
  5068. "nikic/php-parser": "^4.0.0|^5.0.0",
  5069. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5070. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5071. "webflo/drupal-finder": "^1.2"
  5072. },
  5073. "require-dev": {
  5074. "drush/drush": "^11|^12|^13"
  5075. },
  5076. "type": "drupal-module",
  5077. "extra": {
  5078. "drupal": {
  5079. "version": "4.3.5",
  5080. "datestamp": "1723044184",
  5081. "security-coverage": {
  5082. "status": "covered",
  5083. "message": "Covered by Drupal's security advisory policy"
  5084. }
  5085. },
  5086. "drush": {
  5087. "services": {
  5088. "drush.services.yml": "^9 || ^10"
  5089. }
  5090. }
  5091. },
  5092. "notification-url": "https://packages.drupal.org/8/downloads",
  5093. "license": [
  5094. "GPL-2.0-or-later"
  5095. ],
  5096. "authors": [
  5097. {
  5098. "name": "Gábor Hojtsy",
  5099. "homepage": "https://www.drupal.org/user/4166"
  5100. }
  5101. ],
  5102. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5103. "homepage": "http://drupal.org/project/upgrade_status",
  5104. "support": {
  5105. "source": "https://git.drupalcode.org/project/upgrade_status"
  5106. }
  5107. },
  5108. {
  5109. "name": "drupal/views_bulk_edit",
  5110. "version": "3.0.0",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5114. "reference": "3.0.0"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  5119. "reference": "3.0.0",
  5120. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  5121. },
  5122. "require": {
  5123. "drupal/core": "^9.4 || ^10 || ^11",
  5124. "php": ">=8.1"
  5125. },
  5126. "require-dev": {
  5127. "drupal/views_bulk_operations": "~4.2.4"
  5128. },
  5129. "suggest": {
  5130. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5131. },
  5132. "type": "drupal-module",
  5133. "extra": {
  5134. "drupal": {
  5135. "version": "3.0.0",
  5136. "datestamp": "1725358398",
  5137. "security-coverage": {
  5138. "status": "covered",
  5139. "message": "Covered by Drupal's security advisory policy"
  5140. }
  5141. }
  5142. },
  5143. "notification-url": "https://packages.drupal.org/8/downloads",
  5144. "license": [
  5145. "GPL-2.0+"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Marcin Grabias",
  5150. "homepage": "https://www.drupal.org/u/graber"
  5151. },
  5152. {
  5153. "name": "benjy",
  5154. "homepage": "https://www.drupal.org/user/1852732"
  5155. },
  5156. {
  5157. "name": "graber",
  5158. "homepage": "https://www.drupal.org/user/1599440"
  5159. },
  5160. {
  5161. "name": "grevil",
  5162. "homepage": "https://www.drupal.org/user/3668491"
  5163. },
  5164. {
  5165. "name": "joseph.olstad",
  5166. "homepage": "https://www.drupal.org/user/1321830"
  5167. }
  5168. ],
  5169. "description": "Allows bulk edition of entity field values.",
  5170. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5171. "support": {
  5172. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5173. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5174. }
  5175. },
  5176. {
  5177. "name": "drupal/views_bulk_operations",
  5178. "version": "4.3.4",
  5179. "source": {
  5180. "type": "git",
  5181. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5182. "reference": "4.3.4"
  5183. },
  5184. "dist": {
  5185. "type": "zip",
  5186. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  5187. "reference": "4.3.4",
  5188. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  5189. },
  5190. "require": {
  5191. "drupal/core": "^10.3 || ^11"
  5192. },
  5193. "conflict": {
  5194. "drush/drush": "<12.5.1"
  5195. },
  5196. "require-dev": {
  5197. "drush/drush": "^12 || ^13"
  5198. },
  5199. "suggest": {
  5200. "drush/drush": "^12 || ^13"
  5201. },
  5202. "type": "drupal-module",
  5203. "extra": {
  5204. "drupal": {
  5205. "version": "4.3.4",
  5206. "datestamp": "1741604495",
  5207. "security-coverage": {
  5208. "status": "covered",
  5209. "message": "Covered by Drupal's security advisory policy"
  5210. }
  5211. }
  5212. },
  5213. "notification-url": "https://packages.drupal.org/8/downloads",
  5214. "license": [
  5215. "GPL-2.0-or-later"
  5216. ],
  5217. "authors": [
  5218. {
  5219. "name": "Marcin Grabias",
  5220. "homepage": "https://www.drupal.org/u/graber"
  5221. },
  5222. {
  5223. "name": "graber",
  5224. "homepage": "https://www.drupal.org/user/1599440"
  5225. },
  5226. {
  5227. "name": "joelpittet",
  5228. "homepage": "https://www.drupal.org/user/160302"
  5229. }
  5230. ],
  5231. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5232. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5233. "support": {
  5234. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5235. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  5236. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  5237. }
  5238. },
  5239. {
  5240. "name": "drupal/workflow",
  5241. "version": "1.8.0",
  5242. "source": {
  5243. "type": "git",
  5244. "url": "https://git.drupalcode.org/project/workflow.git",
  5245. "reference": "8.x-1.8"
  5246. },
  5247. "dist": {
  5248. "type": "zip",
  5249. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5250. "reference": "8.x-1.8",
  5251. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5252. },
  5253. "require": {
  5254. "drupal/core": ">=8.8"
  5255. },
  5256. "type": "drupal-module",
  5257. "extra": {
  5258. "drupal": {
  5259. "version": "8.x-1.8",
  5260. "datestamp": "1717579628",
  5261. "security-coverage": {
  5262. "status": "covered",
  5263. "message": "Covered by Drupal's security advisory policy"
  5264. }
  5265. }
  5266. },
  5267. "notification-url": "https://packages.drupal.org/8/downloads",
  5268. "license": [
  5269. "GPL-2.0-or-later"
  5270. ],
  5271. "authors": [
  5272. {
  5273. "name": "Bastlynn",
  5274. "homepage": "https://www.drupal.org/user/275249"
  5275. },
  5276. {
  5277. "name": "eaton",
  5278. "homepage": "https://www.drupal.org/user/16496"
  5279. },
  5280. {
  5281. "name": "Heine",
  5282. "homepage": "https://www.drupal.org/user/17943"
  5283. },
  5284. {
  5285. "name": "JacobSingh",
  5286. "homepage": "https://www.drupal.org/user/68912"
  5287. },
  5288. {
  5289. "name": "johnv",
  5290. "homepage": "https://www.drupal.org/user/591042"
  5291. },
  5292. {
  5293. "name": "jvandyk",
  5294. "homepage": "https://www.drupal.org/user/2375"
  5295. },
  5296. {
  5297. "name": "mfredrickson",
  5298. "homepage": "https://www.drupal.org/user/31994"
  5299. },
  5300. {
  5301. "name": "NancyDru",
  5302. "homepage": "https://www.drupal.org/user/101412"
  5303. },
  5304. {
  5305. "name": "q0rban",
  5306. "homepage": "https://www.drupal.org/user/31022"
  5307. }
  5308. ],
  5309. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5310. "homepage": "https://www.drupal.org/project/workflow",
  5311. "support": {
  5312. "source": "https://git.drupalcode.org/project/workflow"
  5313. }
  5314. },
  5315. {
  5316. "name": "drush/drush",
  5317. "version": "13.7.2",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://github.com/drush-ops/drush.git",
  5321. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://api.github.com/repos/drush-ops/drush/zipball/670c5f81b3f525b3f08263f038c7f07558f2580d",
  5326. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d",
  5327. "shasum": ""
  5328. },
  5329. "require": {
  5330. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  5331. "composer-runtime-api": "^2.2",
  5332. "composer/semver": "^1.4 || ^3",
  5333. "consolidation/annotated-command": "^4.10.2",
  5334. "consolidation/config": "^2.1.2 || ^3.1.1",
  5335. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5336. "consolidation/output-formatters": "^4.6.1",
  5337. "consolidation/robo": "^4.0.6 || ^5.1.0",
  5338. "consolidation/site-alias": "^4.1.1",
  5339. "consolidation/site-process": "^5.4.2",
  5340. "dflydev/dot-access-data": "^3.0.2",
  5341. "ext-dom": "*",
  5342. "grasmash/yaml-cli": "^3.2",
  5343. "guzzlehttp/guzzle": "^7.0",
  5344. "laravel/prompts": "^0.3.5",
  5345. "league/container": "^4.2",
  5346. "php": ">=8.3",
  5347. "psy/psysh": "~0.12",
  5348. "symfony/event-dispatcher": "^6 || ^7",
  5349. "symfony/filesystem": "^6.1 || ^7",
  5350. "symfony/finder": "^6 || ^7",
  5351. "symfony/var-dumper": "^6.0 || ^7",
  5352. "symfony/yaml": "^6.0 || ^7"
  5353. },
  5354. "conflict": {
  5355. "drupal/core": "< 10.4",
  5356. "drupal/migrate_run": "*",
  5357. "drupal/migrate_tools": "<= 5"
  5358. },
  5359. "require-dev": {
  5360. "composer/installers": "^2",
  5361. "cweagans/composer-patches": "~1.7.3",
  5362. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  5363. "drupal/semver_example": "2.3.0",
  5364. "jetbrains/phpstorm-attributes": "^1.0",
  5365. "mglaman/phpstan-drupal": "^2",
  5366. "phpunit/phpunit": "^9 || ^10 || ^11",
  5367. "rector/rector": "^2",
  5368. "squizlabs/php_codesniffer": "^3.7"
  5369. },
  5370. "bin": [
  5371. "drush",
  5372. "drush.php"
  5373. ],
  5374. "type": "library",
  5375. "extra": {
  5376. "patches-file": "composer.patches.json",
  5377. "installer-paths": {
  5378. "sut/core": [
  5379. "type:drupal-core"
  5380. ],
  5381. "sut/libraries/{$name}": [
  5382. "type:drupal-library"
  5383. ],
  5384. "sut/themes/unish/{$name}": [
  5385. "drupal/empty_theme"
  5386. ],
  5387. "sut/drush/contrib/{$name}": [
  5388. "type:drupal-drush"
  5389. ],
  5390. "sut/modules/unish/{$name}": [
  5391. "drupal/devel"
  5392. ],
  5393. "sut/themes/contrib/{$name}": [
  5394. "type:drupal-theme"
  5395. ],
  5396. "sut/modules/contrib/{$name}": [
  5397. "type:drupal-module"
  5398. ],
  5399. "sut/profiles/contrib/{$name}": [
  5400. "type:drupal-profile"
  5401. ]
  5402. }
  5403. },
  5404. "autoload": {
  5405. "psr-4": {
  5406. "Drush\\": "src/"
  5407. }
  5408. },
  5409. "notification-url": "https://packagist.org/downloads/",
  5410. "license": [
  5411. "GPL-2.0-or-later"
  5412. ],
  5413. "authors": [
  5414. {
  5415. "name": "Moshe Weitzman",
  5416. "email": "weitzman@tejasa.com"
  5417. },
  5418. {
  5419. "name": "Owen Barton",
  5420. "email": "drupal@owenbarton.com"
  5421. },
  5422. {
  5423. "name": "Greg Anderson",
  5424. "email": "greg.1.anderson@greenknowe.org"
  5425. },
  5426. {
  5427. "name": "Jonathan Araña Cruz",
  5428. "email": "jonhattan@faita.net"
  5429. },
  5430. {
  5431. "name": "Jonathan Hedstrom",
  5432. "email": "jhedstrom@gmail.com"
  5433. },
  5434. {
  5435. "name": "Christopher Gervais",
  5436. "email": "chris@ergonlogic.com"
  5437. },
  5438. {
  5439. "name": "Dave Reid",
  5440. "email": "dave@davereid.net"
  5441. },
  5442. {
  5443. "name": "Damian Lee",
  5444. "email": "damiankloip@googlemail.com"
  5445. }
  5446. ],
  5447. "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.",
  5448. "homepage": "http://www.drush.org",
  5449. "support": {
  5450. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5451. "issues": "https://github.com/drush-ops/drush/issues",
  5452. "security": "https://github.com/drush-ops/drush/security/advisories",
  5453. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5454. "source": "https://github.com/drush-ops/drush/tree/13.7.2"
  5455. },
  5456. "funding": [
  5457. {
  5458. "url": "https://github.com/weitzman",
  5459. "type": "github"
  5460. }
  5461. ],
  5462. "time": "2026-03-20T19:18:11+00:00"
  5463. },
  5464. {
  5465. "name": "egulias/email-validator",
  5466. "version": "4.0.4",
  5467. "source": {
  5468. "type": "git",
  5469. "url": "https://github.com/egulias/EmailValidator.git",
  5470. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  5471. },
  5472. "dist": {
  5473. "type": "zip",
  5474. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5475. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5476. "shasum": ""
  5477. },
  5478. "require": {
  5479. "doctrine/lexer": "^2.0 || ^3.0",
  5480. "php": ">=8.1",
  5481. "symfony/polyfill-intl-idn": "^1.26"
  5482. },
  5483. "require-dev": {
  5484. "phpunit/phpunit": "^10.2",
  5485. "vimeo/psalm": "^5.12"
  5486. },
  5487. "suggest": {
  5488. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5489. },
  5490. "type": "library",
  5491. "extra": {
  5492. "branch-alias": {
  5493. "dev-master": "4.0.x-dev"
  5494. }
  5495. },
  5496. "autoload": {
  5497. "psr-4": {
  5498. "Egulias\\EmailValidator\\": "src"
  5499. }
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Eduardo Gulias Davis"
  5508. }
  5509. ],
  5510. "description": "A library for validating emails against several RFCs",
  5511. "homepage": "https://github.com/egulias/EmailValidator",
  5512. "keywords": [
  5513. "email",
  5514. "emailvalidation",
  5515. "emailvalidator",
  5516. "validation",
  5517. "validator"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/egulias/EmailValidator/issues",
  5521. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://github.com/egulias",
  5526. "type": "github"
  5527. }
  5528. ],
  5529. "time": "2025-03-06T22:45:56+00:00"
  5530. },
  5531. {
  5532. "name": "grasmash/expander",
  5533. "version": "3.0.1",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/grasmash/expander.git",
  5537. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5542. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "dflydev/dot-access-data": "^3.0.0",
  5547. "php": ">=8.0",
  5548. "psr/log": "^2 | ^3"
  5549. },
  5550. "require-dev": {
  5551. "greg-1-anderson/composer-test-scenarios": "^1",
  5552. "php-coveralls/php-coveralls": "^2.5",
  5553. "phpunit/phpunit": "^9",
  5554. "squizlabs/php_codesniffer": "^3.3"
  5555. },
  5556. "type": "library",
  5557. "extra": {
  5558. "branch-alias": {
  5559. "dev-master": "1.x-dev"
  5560. }
  5561. },
  5562. "autoload": {
  5563. "psr-4": {
  5564. "Grasmash\\Expander\\": "src/"
  5565. }
  5566. },
  5567. "notification-url": "https://packagist.org/downloads/",
  5568. "license": [
  5569. "MIT"
  5570. ],
  5571. "authors": [
  5572. {
  5573. "name": "Matthew Grasmick"
  5574. }
  5575. ],
  5576. "description": "Expands internal property references in PHP arrays file.",
  5577. "support": {
  5578. "issues": "https://github.com/grasmash/expander/issues",
  5579. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  5580. },
  5581. "time": "2024-11-25T23:28:05+00:00"
  5582. },
  5583. {
  5584. "name": "grasmash/yaml-cli",
  5585. "version": "3.2.1",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/grasmash/yaml-cli.git",
  5589. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5594. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5595. "shasum": ""
  5596. },
  5597. "require": {
  5598. "dflydev/dot-access-data": "^3",
  5599. "php": ">=8.0",
  5600. "symfony/console": "^6 || ^7",
  5601. "symfony/filesystem": "^6 || ^7",
  5602. "symfony/yaml": "^6 || ^7"
  5603. },
  5604. "require-dev": {
  5605. "php-coveralls/php-coveralls": "^2",
  5606. "phpunit/phpunit": "^9",
  5607. "squizlabs/php_codesniffer": "^3.0"
  5608. },
  5609. "bin": [
  5610. "bin/yaml-cli"
  5611. ],
  5612. "type": "library",
  5613. "extra": {
  5614. "branch-alias": {
  5615. "dev-master": "3.x-dev"
  5616. }
  5617. },
  5618. "autoload": {
  5619. "psr-4": {
  5620. "Grasmash\\YamlCli\\": "src/"
  5621. }
  5622. },
  5623. "notification-url": "https://packagist.org/downloads/",
  5624. "license": [
  5625. "MIT"
  5626. ],
  5627. "authors": [
  5628. {
  5629. "name": "Matthew Grasmick"
  5630. }
  5631. ],
  5632. "description": "A command line tool for reading and manipulating yaml files.",
  5633. "support": {
  5634. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5635. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5636. },
  5637. "time": "2024-04-23T02:10:57+00:00"
  5638. },
  5639. {
  5640. "name": "guzzlehttp/guzzle",
  5641. "version": "7.10.0",
  5642. "source": {
  5643. "type": "git",
  5644. "url": "https://github.com/guzzle/guzzle.git",
  5645. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  5646. },
  5647. "dist": {
  5648. "type": "zip",
  5649. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5650. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5651. "shasum": ""
  5652. },
  5653. "require": {
  5654. "ext-json": "*",
  5655. "guzzlehttp/promises": "^2.3",
  5656. "guzzlehttp/psr7": "^2.8",
  5657. "php": "^7.2.5 || ^8.0",
  5658. "psr/http-client": "^1.0",
  5659. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5660. },
  5661. "provide": {
  5662. "psr/http-client-implementation": "1.0"
  5663. },
  5664. "require-dev": {
  5665. "bamarni/composer-bin-plugin": "^1.8.2",
  5666. "ext-curl": "*",
  5667. "guzzle/client-integration-tests": "3.0.2",
  5668. "php-http/message-factory": "^1.1",
  5669. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5670. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5671. },
  5672. "suggest": {
  5673. "ext-curl": "Required for CURL handler support",
  5674. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5675. "psr/log": "Required for using the Log middleware"
  5676. },
  5677. "type": "library",
  5678. "extra": {
  5679. "bamarni-bin": {
  5680. "bin-links": true,
  5681. "forward-command": false
  5682. }
  5683. },
  5684. "autoload": {
  5685. "files": [
  5686. "src/functions_include.php"
  5687. ],
  5688. "psr-4": {
  5689. "GuzzleHttp\\": "src/"
  5690. }
  5691. },
  5692. "notification-url": "https://packagist.org/downloads/",
  5693. "license": [
  5694. "MIT"
  5695. ],
  5696. "authors": [
  5697. {
  5698. "name": "Graham Campbell",
  5699. "email": "hello@gjcampbell.co.uk",
  5700. "homepage": "https://github.com/GrahamCampbell"
  5701. },
  5702. {
  5703. "name": "Michael Dowling",
  5704. "email": "mtdowling@gmail.com",
  5705. "homepage": "https://github.com/mtdowling"
  5706. },
  5707. {
  5708. "name": "Jeremy Lindblom",
  5709. "email": "jeremeamia@gmail.com",
  5710. "homepage": "https://github.com/jeremeamia"
  5711. },
  5712. {
  5713. "name": "George Mponos",
  5714. "email": "gmponos@gmail.com",
  5715. "homepage": "https://github.com/gmponos"
  5716. },
  5717. {
  5718. "name": "Tobias Nyholm",
  5719. "email": "tobias.nyholm@gmail.com",
  5720. "homepage": "https://github.com/Nyholm"
  5721. },
  5722. {
  5723. "name": "Márk Sági-Kazár",
  5724. "email": "mark.sagikazar@gmail.com",
  5725. "homepage": "https://github.com/sagikazarmark"
  5726. },
  5727. {
  5728. "name": "Tobias Schultze",
  5729. "email": "webmaster@tubo-world.de",
  5730. "homepage": "https://github.com/Tobion"
  5731. }
  5732. ],
  5733. "description": "Guzzle is a PHP HTTP client library",
  5734. "keywords": [
  5735. "client",
  5736. "curl",
  5737. "framework",
  5738. "http",
  5739. "http client",
  5740. "psr-18",
  5741. "psr-7",
  5742. "rest",
  5743. "web service"
  5744. ],
  5745. "support": {
  5746. "issues": "https://github.com/guzzle/guzzle/issues",
  5747. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  5748. },
  5749. "funding": [
  5750. {
  5751. "url": "https://github.com/GrahamCampbell",
  5752. "type": "github"
  5753. },
  5754. {
  5755. "url": "https://github.com/Nyholm",
  5756. "type": "github"
  5757. },
  5758. {
  5759. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5760. "type": "tidelift"
  5761. }
  5762. ],
  5763. "time": "2025-08-23T22:36:01+00:00"
  5764. },
  5765. {
  5766. "name": "guzzlehttp/promises",
  5767. "version": "2.3.0",
  5768. "source": {
  5769. "type": "git",
  5770. "url": "https://github.com/guzzle/promises.git",
  5771. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  5772. },
  5773. "dist": {
  5774. "type": "zip",
  5775. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  5776. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  5777. "shasum": ""
  5778. },
  5779. "require": {
  5780. "php": "^7.2.5 || ^8.0"
  5781. },
  5782. "require-dev": {
  5783. "bamarni/composer-bin-plugin": "^1.8.2",
  5784. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5785. },
  5786. "type": "library",
  5787. "extra": {
  5788. "bamarni-bin": {
  5789. "bin-links": true,
  5790. "forward-command": false
  5791. }
  5792. },
  5793. "autoload": {
  5794. "psr-4": {
  5795. "GuzzleHttp\\Promise\\": "src/"
  5796. }
  5797. },
  5798. "notification-url": "https://packagist.org/downloads/",
  5799. "license": [
  5800. "MIT"
  5801. ],
  5802. "authors": [
  5803. {
  5804. "name": "Graham Campbell",
  5805. "email": "hello@gjcampbell.co.uk",
  5806. "homepage": "https://github.com/GrahamCampbell"
  5807. },
  5808. {
  5809. "name": "Michael Dowling",
  5810. "email": "mtdowling@gmail.com",
  5811. "homepage": "https://github.com/mtdowling"
  5812. },
  5813. {
  5814. "name": "Tobias Nyholm",
  5815. "email": "tobias.nyholm@gmail.com",
  5816. "homepage": "https://github.com/Nyholm"
  5817. },
  5818. {
  5819. "name": "Tobias Schultze",
  5820. "email": "webmaster@tubo-world.de",
  5821. "homepage": "https://github.com/Tobion"
  5822. }
  5823. ],
  5824. "description": "Guzzle promises library",
  5825. "keywords": [
  5826. "promise"
  5827. ],
  5828. "support": {
  5829. "issues": "https://github.com/guzzle/promises/issues",
  5830. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  5831. },
  5832. "funding": [
  5833. {
  5834. "url": "https://github.com/GrahamCampbell",
  5835. "type": "github"
  5836. },
  5837. {
  5838. "url": "https://github.com/Nyholm",
  5839. "type": "github"
  5840. },
  5841. {
  5842. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5843. "type": "tidelift"
  5844. }
  5845. ],
  5846. "time": "2025-08-22T14:34:08+00:00"
  5847. },
  5848. {
  5849. "name": "guzzlehttp/psr7",
  5850. "version": "2.8.1",
  5851. "source": {
  5852. "type": "git",
  5853. "url": "https://github.com/guzzle/psr7.git",
  5854. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9"
  5855. },
  5856. "dist": {
  5857. "type": "zip",
  5858. "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9",
  5859. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9",
  5860. "shasum": ""
  5861. },
  5862. "require": {
  5863. "php": "^7.2.5 || ^8.0",
  5864. "psr/http-factory": "^1.0",
  5865. "psr/http-message": "^1.1 || ^2.0",
  5866. "ralouphie/getallheaders": "^3.0"
  5867. },
  5868. "provide": {
  5869. "psr/http-factory-implementation": "1.0",
  5870. "psr/http-message-implementation": "1.0"
  5871. },
  5872. "require-dev": {
  5873. "bamarni/composer-bin-plugin": "^1.8.2",
  5874. "http-interop/http-factory-tests": "0.9.0",
  5875. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5876. },
  5877. "suggest": {
  5878. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5879. },
  5880. "type": "library",
  5881. "extra": {
  5882. "bamarni-bin": {
  5883. "bin-links": true,
  5884. "forward-command": false
  5885. }
  5886. },
  5887. "autoload": {
  5888. "psr-4": {
  5889. "GuzzleHttp\\Psr7\\": "src/"
  5890. }
  5891. },
  5892. "notification-url": "https://packagist.org/downloads/",
  5893. "license": [
  5894. "MIT"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "Graham Campbell",
  5899. "email": "hello@gjcampbell.co.uk",
  5900. "homepage": "https://github.com/GrahamCampbell"
  5901. },
  5902. {
  5903. "name": "Michael Dowling",
  5904. "email": "mtdowling@gmail.com",
  5905. "homepage": "https://github.com/mtdowling"
  5906. },
  5907. {
  5908. "name": "George Mponos",
  5909. "email": "gmponos@gmail.com",
  5910. "homepage": "https://github.com/gmponos"
  5911. },
  5912. {
  5913. "name": "Tobias Nyholm",
  5914. "email": "tobias.nyholm@gmail.com",
  5915. "homepage": "https://github.com/Nyholm"
  5916. },
  5917. {
  5918. "name": "Márk Sági-Kazár",
  5919. "email": "mark.sagikazar@gmail.com",
  5920. "homepage": "https://github.com/sagikazarmark"
  5921. },
  5922. {
  5923. "name": "Tobias Schultze",
  5924. "email": "webmaster@tubo-world.de",
  5925. "homepage": "https://github.com/Tobion"
  5926. },
  5927. {
  5928. "name": "Márk Sági-Kazár",
  5929. "email": "mark.sagikazar@gmail.com",
  5930. "homepage": "https://sagikazarmark.hu"
  5931. }
  5932. ],
  5933. "description": "PSR-7 message implementation that also provides common utility methods",
  5934. "keywords": [
  5935. "http",
  5936. "message",
  5937. "psr-7",
  5938. "request",
  5939. "response",
  5940. "stream",
  5941. "uri",
  5942. "url"
  5943. ],
  5944. "support": {
  5945. "issues": "https://github.com/guzzle/psr7/issues",
  5946. "source": "https://github.com/guzzle/psr7/tree/2.8.1"
  5947. },
  5948. "funding": [
  5949. {
  5950. "url": "https://github.com/GrahamCampbell",
  5951. "type": "github"
  5952. },
  5953. {
  5954. "url": "https://github.com/Nyholm",
  5955. "type": "github"
  5956. },
  5957. {
  5958. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5959. "type": "tidelift"
  5960. }
  5961. ],
  5962. "time": "2026-03-10T09:55:26+00:00"
  5963. },
  5964. {
  5965. "name": "kint-php/kint",
  5966. "version": "5.1.1",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/kint-php/kint.git",
  5970. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5975. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5976. "shasum": ""
  5977. },
  5978. "require": {
  5979. "php": ">=7.1"
  5980. },
  5981. "require-dev": {
  5982. "friendsofphp/php-cs-fixer": "^3",
  5983. "phpspec/prophecy-phpunit": "^2",
  5984. "phpunit/phpunit": "^9",
  5985. "seld/phar-utils": "^1",
  5986. "symfony/finder": ">=4.0",
  5987. "vimeo/psalm": "^5"
  5988. },
  5989. "suggest": {
  5990. "kint-php/kint-helpers": "Provides extra helper functions",
  5991. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5992. },
  5993. "type": "library",
  5994. "autoload": {
  5995. "files": [
  5996. "init.php"
  5997. ],
  5998. "psr-4": {
  5999. "Kint\\": "src/"
  6000. }
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Jonathan Vollebregt",
  6009. "homepage": "https://github.com/jnvsor"
  6010. },
  6011. {
  6012. "name": "Contributors",
  6013. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6014. }
  6015. ],
  6016. "description": "Kint - debugging tool for PHP developers",
  6017. "homepage": "https://kint-php.github.io/kint/",
  6018. "keywords": [
  6019. "debug",
  6020. "kint",
  6021. "php"
  6022. ],
  6023. "support": {
  6024. "issues": "https://github.com/kint-php/kint/issues",
  6025. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6026. },
  6027. "time": "2024-04-26T14:20:09+00:00"
  6028. },
  6029. {
  6030. "name": "laravel/prompts",
  6031. "version": "v0.3.16",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/laravel/prompts.git",
  6035. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/laravel/prompts/zipball/11e7d5f93803a2190b00e145142cb00a33d17ad2",
  6040. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "composer-runtime-api": "^2.2",
  6045. "ext-mbstring": "*",
  6046. "php": "^8.1",
  6047. "symfony/console": "^6.2|^7.0|^8.0"
  6048. },
  6049. "conflict": {
  6050. "illuminate/console": ">=10.17.0 <10.25.0",
  6051. "laravel/framework": ">=10.17.0 <10.25.0"
  6052. },
  6053. "require-dev": {
  6054. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  6055. "mockery/mockery": "^1.5",
  6056. "pestphp/pest": "^2.3|^3.4|^4.0",
  6057. "phpstan/phpstan": "^1.12.28",
  6058. "phpstan/phpstan-mockery": "^1.1.3"
  6059. },
  6060. "suggest": {
  6061. "ext-pcntl": "Required for the spinner to be animated."
  6062. },
  6063. "type": "library",
  6064. "extra": {
  6065. "branch-alias": {
  6066. "dev-main": "0.3.x-dev"
  6067. }
  6068. },
  6069. "autoload": {
  6070. "files": [
  6071. "src/helpers.php"
  6072. ],
  6073. "psr-4": {
  6074. "Laravel\\Prompts\\": "src/"
  6075. }
  6076. },
  6077. "notification-url": "https://packagist.org/downloads/",
  6078. "license": [
  6079. "MIT"
  6080. ],
  6081. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  6082. "support": {
  6083. "issues": "https://github.com/laravel/prompts/issues",
  6084. "source": "https://github.com/laravel/prompts/tree/v0.3.16"
  6085. },
  6086. "time": "2026-03-23T14:35:33+00:00"
  6087. },
  6088. {
  6089. "name": "league/container",
  6090. "version": "4.2.5",
  6091. "source": {
  6092. "type": "git",
  6093. "url": "https://github.com/thephpleague/container.git",
  6094. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  6095. },
  6096. "dist": {
  6097. "type": "zip",
  6098. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6099. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6100. "shasum": ""
  6101. },
  6102. "require": {
  6103. "php": "^7.2 || ^8.0",
  6104. "psr/container": "^1.1 || ^2.0"
  6105. },
  6106. "provide": {
  6107. "psr/container-implementation": "^1.0"
  6108. },
  6109. "replace": {
  6110. "orno/di": "~2.0"
  6111. },
  6112. "require-dev": {
  6113. "nette/php-generator": "^3.4",
  6114. "nikic/php-parser": "^4.10",
  6115. "phpstan/phpstan": "^0.12.47",
  6116. "phpunit/phpunit": "^8.5.17",
  6117. "roave/security-advisories": "dev-latest",
  6118. "scrutinizer/ocular": "^1.8",
  6119. "squizlabs/php_codesniffer": "^3.6"
  6120. },
  6121. "type": "library",
  6122. "extra": {
  6123. "branch-alias": {
  6124. "dev-1.x": "1.x-dev",
  6125. "dev-2.x": "2.x-dev",
  6126. "dev-3.x": "3.x-dev",
  6127. "dev-4.x": "4.x-dev",
  6128. "dev-master": "4.x-dev"
  6129. }
  6130. },
  6131. "autoload": {
  6132. "psr-4": {
  6133. "League\\Container\\": "src"
  6134. }
  6135. },
  6136. "notification-url": "https://packagist.org/downloads/",
  6137. "license": [
  6138. "MIT"
  6139. ],
  6140. "authors": [
  6141. {
  6142. "name": "Phil Bennett",
  6143. "email": "mail@philbennett.co.uk",
  6144. "role": "Developer"
  6145. }
  6146. ],
  6147. "description": "A fast and intuitive dependency injection container.",
  6148. "homepage": "https://github.com/thephpleague/container",
  6149. "keywords": [
  6150. "container",
  6151. "dependency",
  6152. "di",
  6153. "injection",
  6154. "league",
  6155. "provider",
  6156. "service"
  6157. ],
  6158. "support": {
  6159. "issues": "https://github.com/thephpleague/container/issues",
  6160. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  6161. },
  6162. "funding": [
  6163. {
  6164. "url": "https://github.com/philipobenito",
  6165. "type": "github"
  6166. }
  6167. ],
  6168. "time": "2025-05-20T12:55:37+00:00"
  6169. },
  6170. {
  6171. "name": "masterminds/html5",
  6172. "version": "2.10.0",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://github.com/Masterminds/html5-php.git",
  6176. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  6181. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  6182. "shasum": ""
  6183. },
  6184. "require": {
  6185. "ext-dom": "*",
  6186. "php": ">=5.3.0"
  6187. },
  6188. "require-dev": {
  6189. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6190. },
  6191. "type": "library",
  6192. "extra": {
  6193. "branch-alias": {
  6194. "dev-master": "2.7-dev"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "psr-4": {
  6199. "Masterminds\\": "src"
  6200. }
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "MIT"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Matt Butcher",
  6209. "email": "technosophos@gmail.com"
  6210. },
  6211. {
  6212. "name": "Matt Farina",
  6213. "email": "matt@mattfarina.com"
  6214. },
  6215. {
  6216. "name": "Asmir Mustafic",
  6217. "email": "goetas@gmail.com"
  6218. }
  6219. ],
  6220. "description": "An HTML5 parser and serializer.",
  6221. "homepage": "http://masterminds.github.io/html5-php",
  6222. "keywords": [
  6223. "HTML5",
  6224. "dom",
  6225. "html",
  6226. "parser",
  6227. "querypath",
  6228. "serializer",
  6229. "xml"
  6230. ],
  6231. "support": {
  6232. "issues": "https://github.com/Masterminds/html5-php/issues",
  6233. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  6234. },
  6235. "time": "2025-07-25T09:04:22+00:00"
  6236. },
  6237. {
  6238. "name": "mck89/peast",
  6239. "version": "v1.17.5",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/mck89/peast.git",
  6243. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/mck89/peast/zipball/e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6248. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "ext-mbstring": "*",
  6253. "php": ">=5.4.0"
  6254. },
  6255. "require-dev": {
  6256. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6257. },
  6258. "type": "library",
  6259. "extra": {
  6260. "branch-alias": {
  6261. "dev-master": "1.17.5-dev"
  6262. }
  6263. },
  6264. "autoload": {
  6265. "psr-4": {
  6266. "Peast\\": "lib/Peast/"
  6267. }
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "BSD-3-Clause"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Marco Marchiò",
  6276. "email": "marco.mm89@gmail.com"
  6277. }
  6278. ],
  6279. "description": "Peast is PHP library that generates AST for JavaScript code",
  6280. "support": {
  6281. "issues": "https://github.com/mck89/peast/issues",
  6282. "source": "https://github.com/mck89/peast/tree/v1.17.5"
  6283. },
  6284. "time": "2026-03-15T10:47:07+00:00"
  6285. },
  6286. {
  6287. "name": "mglaman/phpstan-drupal",
  6288. "version": "1.2.12",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6292. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6297. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6298. "shasum": ""
  6299. },
  6300. "require": {
  6301. "php": "^8.1",
  6302. "phpstan/phpstan": "^1.10.56",
  6303. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6304. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6305. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6306. "webflo/drupal-finder": "^1.2"
  6307. },
  6308. "require-dev": {
  6309. "behat/mink": "^1.8",
  6310. "composer/installers": "^1.9",
  6311. "drupal/core-recommended": "^10",
  6312. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6313. "phpstan/extension-installer": "^1.1",
  6314. "phpstan/phpstan-strict-rules": "^1.0",
  6315. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6316. "slevomat/coding-standard": "^7.1",
  6317. "squizlabs/php_codesniffer": "^3.3",
  6318. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6319. },
  6320. "suggest": {
  6321. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6322. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6323. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6324. },
  6325. "type": "phpstan-extension",
  6326. "extra": {
  6327. "branch-alias": {
  6328. "dev-main": "1.0-dev"
  6329. },
  6330. "installer-paths": {
  6331. "tests/fixtures/drupal/core": [
  6332. "type:drupal-core"
  6333. ],
  6334. "tests/fixtures/drupal/libraries/{$name}": [
  6335. "type:drupal-library"
  6336. ],
  6337. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6338. "type:drupal-module"
  6339. ],
  6340. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6341. "type:drupal-profile"
  6342. ],
  6343. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6344. "type:drupal-theme"
  6345. ]
  6346. },
  6347. "phpstan": {
  6348. "includes": [
  6349. "extension.neon",
  6350. "rules.neon"
  6351. ]
  6352. }
  6353. },
  6354. "autoload": {
  6355. "psr-4": {
  6356. "mglaman\\PHPStanDrupal\\": "src/"
  6357. }
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Matt Glaman",
  6366. "email": "nmd.matt@gmail.com"
  6367. }
  6368. ],
  6369. "description": "Drupal extension and rules for PHPStan",
  6370. "support": {
  6371. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6372. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6373. },
  6374. "funding": [
  6375. {
  6376. "url": "https://github.com/mglaman",
  6377. "type": "github"
  6378. },
  6379. {
  6380. "url": "https://opencollective.com/phpstan-drupal",
  6381. "type": "open_collective"
  6382. },
  6383. {
  6384. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6385. "type": "tidelift"
  6386. }
  6387. ],
  6388. "time": "2024-08-07T21:15:21+00:00"
  6389. },
  6390. {
  6391. "name": "nikic/php-parser",
  6392. "version": "v5.7.0",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://github.com/nikic/PHP-Parser.git",
  6396. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6401. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6402. "shasum": ""
  6403. },
  6404. "require": {
  6405. "ext-ctype": "*",
  6406. "ext-json": "*",
  6407. "ext-tokenizer": "*",
  6408. "php": ">=7.4"
  6409. },
  6410. "require-dev": {
  6411. "ircmaxell/php-yacc": "^0.0.7",
  6412. "phpunit/phpunit": "^9.0"
  6413. },
  6414. "bin": [
  6415. "bin/php-parse"
  6416. ],
  6417. "type": "library",
  6418. "extra": {
  6419. "branch-alias": {
  6420. "dev-master": "5.x-dev"
  6421. }
  6422. },
  6423. "autoload": {
  6424. "psr-4": {
  6425. "PhpParser\\": "lib/PhpParser"
  6426. }
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "BSD-3-Clause"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Nikita Popov"
  6435. }
  6436. ],
  6437. "description": "A PHP parser written in PHP",
  6438. "keywords": [
  6439. "parser",
  6440. "php"
  6441. ],
  6442. "support": {
  6443. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6444. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  6445. },
  6446. "time": "2025-12-06T11:56:16+00:00"
  6447. },
  6448. {
  6449. "name": "pear/archive_tar",
  6450. "version": "1.6.0",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/pear/Archive_Tar.git",
  6454. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6459. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6460. "shasum": ""
  6461. },
  6462. "require": {
  6463. "pear/pear-core-minimal": "^1.10.0alpha2",
  6464. "php": ">=5.4.0"
  6465. },
  6466. "require-dev": {
  6467. "phpunit/phpunit": "*"
  6468. },
  6469. "suggest": {
  6470. "ext-bz2": "Bz2 compression support.",
  6471. "ext-xz": "Lzma2 compression support.",
  6472. "ext-zlib": "Gzip compression support."
  6473. },
  6474. "type": "library",
  6475. "extra": {
  6476. "branch-alias": {
  6477. "dev-master": "1.4.x-dev"
  6478. }
  6479. },
  6480. "autoload": {
  6481. "psr-0": {
  6482. "Archive_Tar": ""
  6483. }
  6484. },
  6485. "notification-url": "https://packagist.org/downloads/",
  6486. "include-path": [
  6487. "./"
  6488. ],
  6489. "license": [
  6490. "BSD-2-Clause"
  6491. ],
  6492. "authors": [
  6493. {
  6494. "name": "Vincent Blavet",
  6495. "email": "vincent@phpconcept.net"
  6496. },
  6497. {
  6498. "name": "Greg Beaver",
  6499. "email": "greg@chiaraquartet.net"
  6500. },
  6501. {
  6502. "name": "Michiel Rook",
  6503. "email": "mrook@php.net"
  6504. }
  6505. ],
  6506. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6507. "homepage": "https://github.com/pear/Archive_Tar",
  6508. "keywords": [
  6509. "archive",
  6510. "tar"
  6511. ],
  6512. "support": {
  6513. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6514. "source": "https://github.com/pear/Archive_Tar"
  6515. },
  6516. "time": "2025-07-19T14:49:16+00:00"
  6517. },
  6518. {
  6519. "name": "pear/console_getopt",
  6520. "version": "v1.4.3",
  6521. "source": {
  6522. "type": "git",
  6523. "url": "https://github.com/pear/Console_Getopt.git",
  6524. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6525. },
  6526. "dist": {
  6527. "type": "zip",
  6528. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6529. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6530. "shasum": ""
  6531. },
  6532. "type": "library",
  6533. "autoload": {
  6534. "psr-0": {
  6535. "Console": "./"
  6536. }
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "include-path": [
  6540. "./"
  6541. ],
  6542. "license": [
  6543. "BSD-2-Clause"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "Andrei Zmievski",
  6548. "email": "andrei@php.net",
  6549. "role": "Lead"
  6550. },
  6551. {
  6552. "name": "Stig Bakken",
  6553. "email": "stig@php.net",
  6554. "role": "Developer"
  6555. },
  6556. {
  6557. "name": "Greg Beaver",
  6558. "email": "cellog@php.net",
  6559. "role": "Helper"
  6560. }
  6561. ],
  6562. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6563. "support": {
  6564. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6565. "source": "https://github.com/pear/Console_Getopt"
  6566. },
  6567. "time": "2019-11-20T18:27:48+00:00"
  6568. },
  6569. {
  6570. "name": "pear/pear-core-minimal",
  6571. "version": "v1.10.18",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/pear/pear-core-minimal.git",
  6575. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6580. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "pear/console_getopt": "~1.4",
  6585. "pear/pear_exception": "~1.0",
  6586. "php": ">=5.4"
  6587. },
  6588. "replace": {
  6589. "rsky/pear-core-min": "self.version"
  6590. },
  6591. "type": "library",
  6592. "autoload": {
  6593. "classmap": [
  6594. "src/"
  6595. ]
  6596. },
  6597. "notification-url": "https://packagist.org/downloads/",
  6598. "include-path": [
  6599. "src/"
  6600. ],
  6601. "license": [
  6602. "BSD-3-Clause"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "Christian Weiske",
  6607. "email": "cweiske@php.net",
  6608. "role": "Lead"
  6609. }
  6610. ],
  6611. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6612. "support": {
  6613. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6614. "source": "https://github.com/pear/pear-core-minimal"
  6615. },
  6616. "time": "2025-12-14T20:37:07+00:00"
  6617. },
  6618. {
  6619. "name": "pear/pear_exception",
  6620. "version": "v1.0.2",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/pear/PEAR_Exception.git",
  6624. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6629. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=5.2.0"
  6634. },
  6635. "require-dev": {
  6636. "phpunit/phpunit": "<9"
  6637. },
  6638. "type": "class",
  6639. "extra": {
  6640. "branch-alias": {
  6641. "dev-master": "1.0.x-dev"
  6642. }
  6643. },
  6644. "autoload": {
  6645. "classmap": [
  6646. "PEAR/"
  6647. ]
  6648. },
  6649. "notification-url": "https://packagist.org/downloads/",
  6650. "include-path": [
  6651. "."
  6652. ],
  6653. "license": [
  6654. "BSD-2-Clause"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Helgi Thormar",
  6659. "email": "dufuz@php.net"
  6660. },
  6661. {
  6662. "name": "Greg Beaver",
  6663. "email": "cellog@php.net"
  6664. }
  6665. ],
  6666. "description": "The PEAR Exception base class.",
  6667. "homepage": "https://github.com/pear/PEAR_Exception",
  6668. "keywords": [
  6669. "exception"
  6670. ],
  6671. "support": {
  6672. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6673. "source": "https://github.com/pear/PEAR_Exception"
  6674. },
  6675. "time": "2021-03-21T15:43:46+00:00"
  6676. },
  6677. {
  6678. "name": "phootwork/collection",
  6679. "version": "v3.2.3",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/phootwork/collection.git",
  6683. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6688. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6689. "shasum": ""
  6690. },
  6691. "require": {
  6692. "phootwork/lang": "^3.0",
  6693. "php": ">=8.0"
  6694. },
  6695. "type": "library",
  6696. "autoload": {
  6697. "psr-4": {
  6698. "phootwork\\collection\\": ""
  6699. }
  6700. },
  6701. "notification-url": "https://packagist.org/downloads/",
  6702. "license": [
  6703. "MIT"
  6704. ],
  6705. "authors": [
  6706. {
  6707. "name": "Thomas Gossmann",
  6708. "homepage": "http://gos.si"
  6709. }
  6710. ],
  6711. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6712. "homepage": "https://phootwork.github.io/collection/",
  6713. "keywords": [
  6714. "Array object",
  6715. "Text object",
  6716. "collection",
  6717. "collections",
  6718. "json",
  6719. "list",
  6720. "map",
  6721. "queue",
  6722. "set",
  6723. "stack",
  6724. "xml"
  6725. ],
  6726. "support": {
  6727. "issues": "https://github.com/phootwork/phootwork/issues",
  6728. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  6729. },
  6730. "time": "2022-08-27T12:51:24+00:00"
  6731. },
  6732. {
  6733. "name": "phootwork/lang",
  6734. "version": "v3.2.3",
  6735. "source": {
  6736. "type": "git",
  6737. "url": "https://github.com/phootwork/lang.git",
  6738. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  6739. },
  6740. "dist": {
  6741. "type": "zip",
  6742. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6743. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6744. "shasum": ""
  6745. },
  6746. "require": {
  6747. "php": ">=8.0",
  6748. "symfony/polyfill-mbstring": "^1.12",
  6749. "symfony/polyfill-php81": "^1.22"
  6750. },
  6751. "type": "library",
  6752. "autoload": {
  6753. "psr-4": {
  6754. "phootwork\\lang\\": ""
  6755. }
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "MIT"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "Thomas Gossmann",
  6764. "homepage": "http://gos.si"
  6765. }
  6766. ],
  6767. "description": "Missing PHP language constructs",
  6768. "homepage": "https://phootwork.github.io/lang/",
  6769. "keywords": [
  6770. "array",
  6771. "comparator",
  6772. "comparison",
  6773. "string"
  6774. ],
  6775. "support": {
  6776. "issues": "https://github.com/phootwork/phootwork/issues",
  6777. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  6778. },
  6779. "time": "2024-10-03T13:43:19+00:00"
  6780. },
  6781. {
  6782. "name": "phpowermove/docblock",
  6783. "version": "v4.0",
  6784. "source": {
  6785. "type": "git",
  6786. "url": "https://github.com/phpowermove/docblock.git",
  6787. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6788. },
  6789. "dist": {
  6790. "type": "zip",
  6791. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6792. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6793. "shasum": ""
  6794. },
  6795. "require": {
  6796. "phootwork/collection": "^3.0",
  6797. "phootwork/lang": "^3.0",
  6798. "php": ">=8.0"
  6799. },
  6800. "require-dev": {
  6801. "phootwork/php-cs-fixer-config": "^0.4",
  6802. "phpunit/phpunit": "^9.0",
  6803. "psalm/phar": "^4.3"
  6804. },
  6805. "type": "library",
  6806. "autoload": {
  6807. "psr-4": {
  6808. "phpowermove\\docblock\\": "src/"
  6809. }
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "Thomas Gossmann",
  6818. "homepage": "http://gos.si"
  6819. }
  6820. ],
  6821. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6822. "keywords": [
  6823. "docblock",
  6824. "generator",
  6825. "parser"
  6826. ],
  6827. "support": {
  6828. "issues": "https://github.com/phpowermove/docblock/issues",
  6829. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6830. },
  6831. "time": "2021-09-22T16:57:06+00:00"
  6832. },
  6833. {
  6834. "name": "phpstan/phpstan",
  6835. "version": "1.12.3",
  6836. "source": {
  6837. "type": "git",
  6838. "url": "https://github.com/phpstan/phpstan.git",
  6839. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6840. },
  6841. "dist": {
  6842. "type": "zip",
  6843. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6844. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6845. "shasum": ""
  6846. },
  6847. "require": {
  6848. "php": "^7.2|^8.0"
  6849. },
  6850. "conflict": {
  6851. "phpstan/phpstan-shim": "*"
  6852. },
  6853. "bin": [
  6854. "phpstan",
  6855. "phpstan.phar"
  6856. ],
  6857. "type": "library",
  6858. "autoload": {
  6859. "files": [
  6860. "bootstrap.php"
  6861. ]
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "description": "PHPStan - PHP Static Analysis Tool",
  6868. "keywords": [
  6869. "dev",
  6870. "static analysis"
  6871. ],
  6872. "support": {
  6873. "docs": "https://phpstan.org/user-guide/getting-started",
  6874. "forum": "https://github.com/phpstan/phpstan/discussions",
  6875. "issues": "https://github.com/phpstan/phpstan/issues",
  6876. "security": "https://github.com/phpstan/phpstan/security/policy",
  6877. "source": "https://github.com/phpstan/phpstan-src"
  6878. },
  6879. "funding": [
  6880. {
  6881. "url": "https://github.com/ondrejmirtes",
  6882. "type": "github"
  6883. },
  6884. {
  6885. "url": "https://github.com/phpstan",
  6886. "type": "github"
  6887. }
  6888. ],
  6889. "time": "2024-09-09T08:10:35+00:00"
  6890. },
  6891. {
  6892. "name": "phpstan/phpstan-deprecation-rules",
  6893. "version": "1.2.1",
  6894. "source": {
  6895. "type": "git",
  6896. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6897. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6898. },
  6899. "dist": {
  6900. "type": "zip",
  6901. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6902. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6903. "shasum": ""
  6904. },
  6905. "require": {
  6906. "php": "^7.2 || ^8.0",
  6907. "phpstan/phpstan": "^1.12"
  6908. },
  6909. "require-dev": {
  6910. "php-parallel-lint/php-parallel-lint": "^1.2",
  6911. "phpstan/phpstan-phpunit": "^1.0",
  6912. "phpunit/phpunit": "^9.5"
  6913. },
  6914. "type": "phpstan-extension",
  6915. "extra": {
  6916. "phpstan": {
  6917. "includes": [
  6918. "rules.neon"
  6919. ]
  6920. }
  6921. },
  6922. "autoload": {
  6923. "psr-4": {
  6924. "PHPStan\\": "src/"
  6925. }
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6932. "support": {
  6933. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6934. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  6935. },
  6936. "time": "2024-09-11T15:52:35+00:00"
  6937. },
  6938. {
  6939. "name": "psr/cache",
  6940. "version": "3.0.0",
  6941. "source": {
  6942. "type": "git",
  6943. "url": "https://github.com/php-fig/cache.git",
  6944. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6945. },
  6946. "dist": {
  6947. "type": "zip",
  6948. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6949. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6950. "shasum": ""
  6951. },
  6952. "require": {
  6953. "php": ">=8.0.0"
  6954. },
  6955. "type": "library",
  6956. "extra": {
  6957. "branch-alias": {
  6958. "dev-master": "1.0.x-dev"
  6959. }
  6960. },
  6961. "autoload": {
  6962. "psr-4": {
  6963. "Psr\\Cache\\": "src/"
  6964. }
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "PHP-FIG",
  6973. "homepage": "https://www.php-fig.org/"
  6974. }
  6975. ],
  6976. "description": "Common interface for caching libraries",
  6977. "keywords": [
  6978. "cache",
  6979. "psr",
  6980. "psr-6"
  6981. ],
  6982. "support": {
  6983. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6984. },
  6985. "time": "2021-02-03T23:26:27+00:00"
  6986. },
  6987. {
  6988. "name": "psr/container",
  6989. "version": "2.0.2",
  6990. "source": {
  6991. "type": "git",
  6992. "url": "https://github.com/php-fig/container.git",
  6993. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6994. },
  6995. "dist": {
  6996. "type": "zip",
  6997. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6998. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6999. "shasum": ""
  7000. },
  7001. "require": {
  7002. "php": ">=7.4.0"
  7003. },
  7004. "type": "library",
  7005. "extra": {
  7006. "branch-alias": {
  7007. "dev-master": "2.0.x-dev"
  7008. }
  7009. },
  7010. "autoload": {
  7011. "psr-4": {
  7012. "Psr\\Container\\": "src/"
  7013. }
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "license": [
  7017. "MIT"
  7018. ],
  7019. "authors": [
  7020. {
  7021. "name": "PHP-FIG",
  7022. "homepage": "https://www.php-fig.org/"
  7023. }
  7024. ],
  7025. "description": "Common Container Interface (PHP FIG PSR-11)",
  7026. "homepage": "https://github.com/php-fig/container",
  7027. "keywords": [
  7028. "PSR-11",
  7029. "container",
  7030. "container-interface",
  7031. "container-interop",
  7032. "psr"
  7033. ],
  7034. "support": {
  7035. "issues": "https://github.com/php-fig/container/issues",
  7036. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7037. },
  7038. "time": "2021-11-05T16:47:00+00:00"
  7039. },
  7040. {
  7041. "name": "psr/event-dispatcher",
  7042. "version": "1.0.0",
  7043. "source": {
  7044. "type": "git",
  7045. "url": "https://github.com/php-fig/event-dispatcher.git",
  7046. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7047. },
  7048. "dist": {
  7049. "type": "zip",
  7050. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7051. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7052. "shasum": ""
  7053. },
  7054. "require": {
  7055. "php": ">=7.2.0"
  7056. },
  7057. "type": "library",
  7058. "extra": {
  7059. "branch-alias": {
  7060. "dev-master": "1.0.x-dev"
  7061. }
  7062. },
  7063. "autoload": {
  7064. "psr-4": {
  7065. "Psr\\EventDispatcher\\": "src/"
  7066. }
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "PHP-FIG",
  7075. "homepage": "http://www.php-fig.org/"
  7076. }
  7077. ],
  7078. "description": "Standard interfaces for event handling.",
  7079. "keywords": [
  7080. "events",
  7081. "psr",
  7082. "psr-14"
  7083. ],
  7084. "support": {
  7085. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7086. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7087. },
  7088. "time": "2019-01-08T18:20:26+00:00"
  7089. },
  7090. {
  7091. "name": "psr/http-client",
  7092. "version": "1.0.3",
  7093. "source": {
  7094. "type": "git",
  7095. "url": "https://github.com/php-fig/http-client.git",
  7096. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7097. },
  7098. "dist": {
  7099. "type": "zip",
  7100. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7101. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7102. "shasum": ""
  7103. },
  7104. "require": {
  7105. "php": "^7.0 || ^8.0",
  7106. "psr/http-message": "^1.0 || ^2.0"
  7107. },
  7108. "type": "library",
  7109. "extra": {
  7110. "branch-alias": {
  7111. "dev-master": "1.0.x-dev"
  7112. }
  7113. },
  7114. "autoload": {
  7115. "psr-4": {
  7116. "Psr\\Http\\Client\\": "src/"
  7117. }
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "license": [
  7121. "MIT"
  7122. ],
  7123. "authors": [
  7124. {
  7125. "name": "PHP-FIG",
  7126. "homepage": "https://www.php-fig.org/"
  7127. }
  7128. ],
  7129. "description": "Common interface for HTTP clients",
  7130. "homepage": "https://github.com/php-fig/http-client",
  7131. "keywords": [
  7132. "http",
  7133. "http-client",
  7134. "psr",
  7135. "psr-18"
  7136. ],
  7137. "support": {
  7138. "source": "https://github.com/php-fig/http-client"
  7139. },
  7140. "time": "2023-09-23T14:17:50+00:00"
  7141. },
  7142. {
  7143. "name": "psr/http-factory",
  7144. "version": "1.1.0",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://github.com/php-fig/http-factory.git",
  7148. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7149. },
  7150. "dist": {
  7151. "type": "zip",
  7152. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7153. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7154. "shasum": ""
  7155. },
  7156. "require": {
  7157. "php": ">=7.1",
  7158. "psr/http-message": "^1.0 || ^2.0"
  7159. },
  7160. "type": "library",
  7161. "extra": {
  7162. "branch-alias": {
  7163. "dev-master": "1.0.x-dev"
  7164. }
  7165. },
  7166. "autoload": {
  7167. "psr-4": {
  7168. "Psr\\Http\\Message\\": "src/"
  7169. }
  7170. },
  7171. "notification-url": "https://packagist.org/downloads/",
  7172. "license": [
  7173. "MIT"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "PHP-FIG",
  7178. "homepage": "https://www.php-fig.org/"
  7179. }
  7180. ],
  7181. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7182. "keywords": [
  7183. "factory",
  7184. "http",
  7185. "message",
  7186. "psr",
  7187. "psr-17",
  7188. "psr-7",
  7189. "request",
  7190. "response"
  7191. ],
  7192. "support": {
  7193. "source": "https://github.com/php-fig/http-factory"
  7194. },
  7195. "time": "2024-04-15T12:06:14+00:00"
  7196. },
  7197. {
  7198. "name": "psr/http-message",
  7199. "version": "2.0",
  7200. "source": {
  7201. "type": "git",
  7202. "url": "https://github.com/php-fig/http-message.git",
  7203. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7204. },
  7205. "dist": {
  7206. "type": "zip",
  7207. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7208. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7209. "shasum": ""
  7210. },
  7211. "require": {
  7212. "php": "^7.2 || ^8.0"
  7213. },
  7214. "type": "library",
  7215. "extra": {
  7216. "branch-alias": {
  7217. "dev-master": "2.0.x-dev"
  7218. }
  7219. },
  7220. "autoload": {
  7221. "psr-4": {
  7222. "Psr\\Http\\Message\\": "src/"
  7223. }
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "PHP-FIG",
  7232. "homepage": "https://www.php-fig.org/"
  7233. }
  7234. ],
  7235. "description": "Common interface for HTTP messages",
  7236. "homepage": "https://github.com/php-fig/http-message",
  7237. "keywords": [
  7238. "http",
  7239. "http-message",
  7240. "psr",
  7241. "psr-7",
  7242. "request",
  7243. "response"
  7244. ],
  7245. "support": {
  7246. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7247. },
  7248. "time": "2023-04-04T09:54:51+00:00"
  7249. },
  7250. {
  7251. "name": "psr/log",
  7252. "version": "3.0.2",
  7253. "source": {
  7254. "type": "git",
  7255. "url": "https://github.com/php-fig/log.git",
  7256. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7257. },
  7258. "dist": {
  7259. "type": "zip",
  7260. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7261. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7262. "shasum": ""
  7263. },
  7264. "require": {
  7265. "php": ">=8.0.0"
  7266. },
  7267. "type": "library",
  7268. "extra": {
  7269. "branch-alias": {
  7270. "dev-master": "3.x-dev"
  7271. }
  7272. },
  7273. "autoload": {
  7274. "psr-4": {
  7275. "Psr\\Log\\": "src"
  7276. }
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "MIT"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "PHP-FIG",
  7285. "homepage": "https://www.php-fig.org/"
  7286. }
  7287. ],
  7288. "description": "Common interface for logging libraries",
  7289. "homepage": "https://github.com/php-fig/log",
  7290. "keywords": [
  7291. "log",
  7292. "psr",
  7293. "psr-3"
  7294. ],
  7295. "support": {
  7296. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7297. },
  7298. "time": "2024-09-11T13:17:53+00:00"
  7299. },
  7300. {
  7301. "name": "psy/psysh",
  7302. "version": "v0.12.22",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/bobthecow/psysh.git",
  7306. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7311. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "ext-json": "*",
  7316. "ext-tokenizer": "*",
  7317. "nikic/php-parser": "^5.0 || ^4.0",
  7318. "php": "^8.0 || ^7.4",
  7319. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7320. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7321. },
  7322. "conflict": {
  7323. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7324. },
  7325. "require-dev": {
  7326. "bamarni/composer-bin-plugin": "^1.2",
  7327. "composer/class-map-generator": "^1.6"
  7328. },
  7329. "suggest": {
  7330. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  7331. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7332. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7333. },
  7334. "bin": [
  7335. "bin/psysh"
  7336. ],
  7337. "type": "library",
  7338. "extra": {
  7339. "bamarni-bin": {
  7340. "bin-links": false,
  7341. "forward-command": false
  7342. },
  7343. "branch-alias": {
  7344. "dev-main": "0.12.x-dev"
  7345. }
  7346. },
  7347. "autoload": {
  7348. "files": [
  7349. "src/functions.php"
  7350. ],
  7351. "psr-4": {
  7352. "Psy\\": "src/"
  7353. }
  7354. },
  7355. "notification-url": "https://packagist.org/downloads/",
  7356. "license": [
  7357. "MIT"
  7358. ],
  7359. "authors": [
  7360. {
  7361. "name": "Justin Hileman",
  7362. "email": "justin@justinhileman.info"
  7363. }
  7364. ],
  7365. "description": "An interactive shell for modern PHP.",
  7366. "homepage": "https://psysh.org",
  7367. "keywords": [
  7368. "REPL",
  7369. "console",
  7370. "interactive",
  7371. "shell"
  7372. ],
  7373. "support": {
  7374. "issues": "https://github.com/bobthecow/psysh/issues",
  7375. "source": "https://github.com/bobthecow/psysh/tree/v0.12.22"
  7376. },
  7377. "time": "2026-03-22T23:03:24+00:00"
  7378. },
  7379. {
  7380. "name": "ralouphie/getallheaders",
  7381. "version": "3.0.3",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/ralouphie/getallheaders.git",
  7385. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7390. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7391. "shasum": ""
  7392. },
  7393. "require": {
  7394. "php": ">=5.6"
  7395. },
  7396. "require-dev": {
  7397. "php-coveralls/php-coveralls": "^2.1",
  7398. "phpunit/phpunit": "^5 || ^6.5"
  7399. },
  7400. "type": "library",
  7401. "autoload": {
  7402. "files": [
  7403. "src/getallheaders.php"
  7404. ]
  7405. },
  7406. "notification-url": "https://packagist.org/downloads/",
  7407. "license": [
  7408. "MIT"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "Ralph Khattar",
  7413. "email": "ralph.khattar@gmail.com"
  7414. }
  7415. ],
  7416. "description": "A polyfill for getallheaders.",
  7417. "support": {
  7418. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7419. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7420. },
  7421. "time": "2019-03-08T08:55:37+00:00"
  7422. },
  7423. {
  7424. "name": "sebastian/diff",
  7425. "version": "4.0.6",
  7426. "source": {
  7427. "type": "git",
  7428. "url": "https://github.com/sebastianbergmann/diff.git",
  7429. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7430. },
  7431. "dist": {
  7432. "type": "zip",
  7433. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7434. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7435. "shasum": ""
  7436. },
  7437. "require": {
  7438. "php": ">=7.3"
  7439. },
  7440. "require-dev": {
  7441. "phpunit/phpunit": "^9.3",
  7442. "symfony/process": "^4.2 || ^5"
  7443. },
  7444. "type": "library",
  7445. "extra": {
  7446. "branch-alias": {
  7447. "dev-master": "4.0-dev"
  7448. }
  7449. },
  7450. "autoload": {
  7451. "classmap": [
  7452. "src/"
  7453. ]
  7454. },
  7455. "notification-url": "https://packagist.org/downloads/",
  7456. "license": [
  7457. "BSD-3-Clause"
  7458. ],
  7459. "authors": [
  7460. {
  7461. "name": "Sebastian Bergmann",
  7462. "email": "sebastian@phpunit.de"
  7463. },
  7464. {
  7465. "name": "Kore Nordmann",
  7466. "email": "mail@kore-nordmann.de"
  7467. }
  7468. ],
  7469. "description": "Diff implementation",
  7470. "homepage": "https://github.com/sebastianbergmann/diff",
  7471. "keywords": [
  7472. "diff",
  7473. "udiff",
  7474. "unidiff",
  7475. "unified diff"
  7476. ],
  7477. "support": {
  7478. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7479. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7480. },
  7481. "funding": [
  7482. {
  7483. "url": "https://github.com/sebastianbergmann",
  7484. "type": "github"
  7485. }
  7486. ],
  7487. "time": "2024-03-02T06:30:58+00:00"
  7488. },
  7489. {
  7490. "name": "symfony/console",
  7491. "version": "v6.4.35",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://github.com/symfony/console.git",
  7495. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  7500. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  7501. "shasum": ""
  7502. },
  7503. "require": {
  7504. "php": ">=8.1",
  7505. "symfony/deprecation-contracts": "^2.5|^3",
  7506. "symfony/polyfill-mbstring": "~1.0",
  7507. "symfony/service-contracts": "^2.5|^3",
  7508. "symfony/string": "^5.4|^6.0|^7.0"
  7509. },
  7510. "conflict": {
  7511. "symfony/dependency-injection": "<5.4",
  7512. "symfony/dotenv": "<5.4",
  7513. "symfony/event-dispatcher": "<5.4",
  7514. "symfony/lock": "<5.4",
  7515. "symfony/process": "<5.4"
  7516. },
  7517. "provide": {
  7518. "psr/log-implementation": "1.0|2.0|3.0"
  7519. },
  7520. "require-dev": {
  7521. "psr/log": "^1|^2|^3",
  7522. "symfony/config": "^5.4|^6.0|^7.0",
  7523. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7524. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7525. "symfony/http-foundation": "^6.4|^7.0",
  7526. "symfony/http-kernel": "^6.4|^7.0",
  7527. "symfony/lock": "^5.4|^6.0|^7.0",
  7528. "symfony/messenger": "^5.4|^6.0|^7.0",
  7529. "symfony/process": "^5.4|^6.0|^7.0",
  7530. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7531. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7532. },
  7533. "type": "library",
  7534. "autoload": {
  7535. "psr-4": {
  7536. "Symfony\\Component\\Console\\": ""
  7537. },
  7538. "exclude-from-classmap": [
  7539. "/Tests/"
  7540. ]
  7541. },
  7542. "notification-url": "https://packagist.org/downloads/",
  7543. "license": [
  7544. "MIT"
  7545. ],
  7546. "authors": [
  7547. {
  7548. "name": "Fabien Potencier",
  7549. "email": "fabien@symfony.com"
  7550. },
  7551. {
  7552. "name": "Symfony Community",
  7553. "homepage": "https://symfony.com/contributors"
  7554. }
  7555. ],
  7556. "description": "Eases the creation of beautiful and testable command line interfaces",
  7557. "homepage": "https://symfony.com",
  7558. "keywords": [
  7559. "cli",
  7560. "command-line",
  7561. "console",
  7562. "terminal"
  7563. ],
  7564. "support": {
  7565. "source": "https://github.com/symfony/console/tree/v6.4.35"
  7566. },
  7567. "funding": [
  7568. {
  7569. "url": "https://symfony.com/sponsor",
  7570. "type": "custom"
  7571. },
  7572. {
  7573. "url": "https://github.com/fabpot",
  7574. "type": "github"
  7575. },
  7576. {
  7577. "url": "https://github.com/nicolas-grekas",
  7578. "type": "github"
  7579. },
  7580. {
  7581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7582. "type": "tidelift"
  7583. }
  7584. ],
  7585. "time": "2026-03-06T13:31:08+00:00"
  7586. },
  7587. {
  7588. "name": "symfony/dependency-injection",
  7589. "version": "v6.4.35",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://github.com/symfony/dependency-injection.git",
  7593. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  7598. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  7599. "shasum": ""
  7600. },
  7601. "require": {
  7602. "php": ">=8.1",
  7603. "psr/container": "^1.1|^2.0",
  7604. "symfony/deprecation-contracts": "^2.5|^3",
  7605. "symfony/service-contracts": "^2.5|^3.0",
  7606. "symfony/var-exporter": "^6.4.20|^7.2.5"
  7607. },
  7608. "conflict": {
  7609. "ext-psr": "<1.1|>=2",
  7610. "symfony/config": "<6.1",
  7611. "symfony/finder": "<5.4",
  7612. "symfony/proxy-manager-bridge": "<6.3",
  7613. "symfony/yaml": "<5.4"
  7614. },
  7615. "provide": {
  7616. "psr/container-implementation": "1.1|2.0",
  7617. "symfony/service-implementation": "1.1|2.0|3.0"
  7618. },
  7619. "require-dev": {
  7620. "symfony/config": "^6.1|^7.0",
  7621. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7622. "symfony/yaml": "^5.4|^6.0|^7.0"
  7623. },
  7624. "type": "library",
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Component\\DependencyInjection\\": ""
  7628. },
  7629. "exclude-from-classmap": [
  7630. "/Tests/"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Fabien Potencier",
  7640. "email": "fabien@symfony.com"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7648. "homepage": "https://symfony.com",
  7649. "support": {
  7650. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  7651. },
  7652. "funding": [
  7653. {
  7654. "url": "https://symfony.com/sponsor",
  7655. "type": "custom"
  7656. },
  7657. {
  7658. "url": "https://github.com/fabpot",
  7659. "type": "github"
  7660. },
  7661. {
  7662. "url": "https://github.com/nicolas-grekas",
  7663. "type": "github"
  7664. },
  7665. {
  7666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7667. "type": "tidelift"
  7668. }
  7669. ],
  7670. "time": "2026-02-26T12:16:01+00:00"
  7671. },
  7672. {
  7673. "name": "symfony/deprecation-contracts",
  7674. "version": "v3.6.0",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/symfony/deprecation-contracts.git",
  7678. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7683. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "php": ">=8.1"
  7688. },
  7689. "type": "library",
  7690. "extra": {
  7691. "thanks": {
  7692. "url": "https://github.com/symfony/contracts",
  7693. "name": "symfony/contracts"
  7694. },
  7695. "branch-alias": {
  7696. "dev-main": "3.6-dev"
  7697. }
  7698. },
  7699. "autoload": {
  7700. "files": [
  7701. "function.php"
  7702. ]
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "MIT"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "Nicolas Grekas",
  7711. "email": "p@tchwork.com"
  7712. },
  7713. {
  7714. "name": "Symfony Community",
  7715. "homepage": "https://symfony.com/contributors"
  7716. }
  7717. ],
  7718. "description": "A generic function and convention to trigger deprecation notices",
  7719. "homepage": "https://symfony.com",
  7720. "support": {
  7721. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  7722. },
  7723. "funding": [
  7724. {
  7725. "url": "https://symfony.com/sponsor",
  7726. "type": "custom"
  7727. },
  7728. {
  7729. "url": "https://github.com/fabpot",
  7730. "type": "github"
  7731. },
  7732. {
  7733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7734. "type": "tidelift"
  7735. }
  7736. ],
  7737. "time": "2024-09-25T14:21:43+00:00"
  7738. },
  7739. {
  7740. "name": "symfony/error-handler",
  7741. "version": "v6.4.32",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/symfony/error-handler.git",
  7745. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7750. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "php": ">=8.1",
  7755. "psr/log": "^1|^2|^3",
  7756. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7757. },
  7758. "conflict": {
  7759. "symfony/deprecation-contracts": "<2.5",
  7760. "symfony/http-kernel": "<6.4"
  7761. },
  7762. "require-dev": {
  7763. "symfony/deprecation-contracts": "^2.5|^3",
  7764. "symfony/http-kernel": "^6.4|^7.0",
  7765. "symfony/serializer": "^5.4|^6.0|^7.0"
  7766. },
  7767. "bin": [
  7768. "Resources/bin/patch-type-declarations"
  7769. ],
  7770. "type": "library",
  7771. "autoload": {
  7772. "psr-4": {
  7773. "Symfony\\Component\\ErrorHandler\\": ""
  7774. },
  7775. "exclude-from-classmap": [
  7776. "/Tests/"
  7777. ]
  7778. },
  7779. "notification-url": "https://packagist.org/downloads/",
  7780. "license": [
  7781. "MIT"
  7782. ],
  7783. "authors": [
  7784. {
  7785. "name": "Fabien Potencier",
  7786. "email": "fabien@symfony.com"
  7787. },
  7788. {
  7789. "name": "Symfony Community",
  7790. "homepage": "https://symfony.com/contributors"
  7791. }
  7792. ],
  7793. "description": "Provides tools to manage errors and ease debugging PHP code",
  7794. "homepage": "https://symfony.com",
  7795. "support": {
  7796. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  7797. },
  7798. "funding": [
  7799. {
  7800. "url": "https://symfony.com/sponsor",
  7801. "type": "custom"
  7802. },
  7803. {
  7804. "url": "https://github.com/fabpot",
  7805. "type": "github"
  7806. },
  7807. {
  7808. "url": "https://github.com/nicolas-grekas",
  7809. "type": "github"
  7810. },
  7811. {
  7812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7813. "type": "tidelift"
  7814. }
  7815. ],
  7816. "time": "2026-01-19T19:28:19+00:00"
  7817. },
  7818. {
  7819. "name": "symfony/event-dispatcher",
  7820. "version": "v6.4.32",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/symfony/event-dispatcher.git",
  7824. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  7829. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  7830. "shasum": ""
  7831. },
  7832. "require": {
  7833. "php": ">=8.1",
  7834. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7835. },
  7836. "conflict": {
  7837. "symfony/dependency-injection": "<5.4",
  7838. "symfony/service-contracts": "<2.5"
  7839. },
  7840. "provide": {
  7841. "psr/event-dispatcher-implementation": "1.0",
  7842. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7843. },
  7844. "require-dev": {
  7845. "psr/log": "^1|^2|^3",
  7846. "symfony/config": "^5.4|^6.0|^7.0",
  7847. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7848. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7849. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7850. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7851. "symfony/service-contracts": "^2.5|^3",
  7852. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7853. },
  7854. "type": "library",
  7855. "autoload": {
  7856. "psr-4": {
  7857. "Symfony\\Component\\EventDispatcher\\": ""
  7858. },
  7859. "exclude-from-classmap": [
  7860. "/Tests/"
  7861. ]
  7862. },
  7863. "notification-url": "https://packagist.org/downloads/",
  7864. "license": [
  7865. "MIT"
  7866. ],
  7867. "authors": [
  7868. {
  7869. "name": "Fabien Potencier",
  7870. "email": "fabien@symfony.com"
  7871. },
  7872. {
  7873. "name": "Symfony Community",
  7874. "homepage": "https://symfony.com/contributors"
  7875. }
  7876. ],
  7877. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7878. "homepage": "https://symfony.com",
  7879. "support": {
  7880. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://symfony.com/sponsor",
  7885. "type": "custom"
  7886. },
  7887. {
  7888. "url": "https://github.com/fabpot",
  7889. "type": "github"
  7890. },
  7891. {
  7892. "url": "https://github.com/nicolas-grekas",
  7893. "type": "github"
  7894. },
  7895. {
  7896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7897. "type": "tidelift"
  7898. }
  7899. ],
  7900. "time": "2026-01-05T11:13:48+00:00"
  7901. },
  7902. {
  7903. "name": "symfony/event-dispatcher-contracts",
  7904. "version": "v3.6.0",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7908. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7913. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7914. "shasum": ""
  7915. },
  7916. "require": {
  7917. "php": ">=8.1",
  7918. "psr/event-dispatcher": "^1"
  7919. },
  7920. "type": "library",
  7921. "extra": {
  7922. "thanks": {
  7923. "url": "https://github.com/symfony/contracts",
  7924. "name": "symfony/contracts"
  7925. },
  7926. "branch-alias": {
  7927. "dev-main": "3.6-dev"
  7928. }
  7929. },
  7930. "autoload": {
  7931. "psr-4": {
  7932. "Symfony\\Contracts\\EventDispatcher\\": ""
  7933. }
  7934. },
  7935. "notification-url": "https://packagist.org/downloads/",
  7936. "license": [
  7937. "MIT"
  7938. ],
  7939. "authors": [
  7940. {
  7941. "name": "Nicolas Grekas",
  7942. "email": "p@tchwork.com"
  7943. },
  7944. {
  7945. "name": "Symfony Community",
  7946. "homepage": "https://symfony.com/contributors"
  7947. }
  7948. ],
  7949. "description": "Generic abstractions related to dispatching event",
  7950. "homepage": "https://symfony.com",
  7951. "keywords": [
  7952. "abstractions",
  7953. "contracts",
  7954. "decoupling",
  7955. "interfaces",
  7956. "interoperability",
  7957. "standards"
  7958. ],
  7959. "support": {
  7960. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://symfony.com/sponsor",
  7965. "type": "custom"
  7966. },
  7967. {
  7968. "url": "https://github.com/fabpot",
  7969. "type": "github"
  7970. },
  7971. {
  7972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7973. "type": "tidelift"
  7974. }
  7975. ],
  7976. "time": "2024-09-25T14:21:43+00:00"
  7977. },
  7978. {
  7979. "name": "symfony/filesystem",
  7980. "version": "v6.4.34",
  7981. "source": {
  7982. "type": "git",
  7983. "url": "https://github.com/symfony/filesystem.git",
  7984. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  7985. },
  7986. "dist": {
  7987. "type": "zip",
  7988. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7989. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7990. "shasum": ""
  7991. },
  7992. "require": {
  7993. "php": ">=8.1",
  7994. "symfony/polyfill-ctype": "~1.8",
  7995. "symfony/polyfill-mbstring": "~1.8"
  7996. },
  7997. "require-dev": {
  7998. "symfony/process": "^5.4|^6.4|^7.0"
  7999. },
  8000. "type": "library",
  8001. "autoload": {
  8002. "psr-4": {
  8003. "Symfony\\Component\\Filesystem\\": ""
  8004. },
  8005. "exclude-from-classmap": [
  8006. "/Tests/"
  8007. ]
  8008. },
  8009. "notification-url": "https://packagist.org/downloads/",
  8010. "license": [
  8011. "MIT"
  8012. ],
  8013. "authors": [
  8014. {
  8015. "name": "Fabien Potencier",
  8016. "email": "fabien@symfony.com"
  8017. },
  8018. {
  8019. "name": "Symfony Community",
  8020. "homepage": "https://symfony.com/contributors"
  8021. }
  8022. ],
  8023. "description": "Provides basic utilities for the filesystem",
  8024. "homepage": "https://symfony.com",
  8025. "support": {
  8026. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  8027. },
  8028. "funding": [
  8029. {
  8030. "url": "https://symfony.com/sponsor",
  8031. "type": "custom"
  8032. },
  8033. {
  8034. "url": "https://github.com/fabpot",
  8035. "type": "github"
  8036. },
  8037. {
  8038. "url": "https://github.com/nicolas-grekas",
  8039. "type": "github"
  8040. },
  8041. {
  8042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8043. "type": "tidelift"
  8044. }
  8045. ],
  8046. "time": "2026-02-24T17:51:06+00:00"
  8047. },
  8048. {
  8049. "name": "symfony/finder",
  8050. "version": "v6.4.34",
  8051. "source": {
  8052. "type": "git",
  8053. "url": "https://github.com/symfony/finder.git",
  8054. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  8055. },
  8056. "dist": {
  8057. "type": "zip",
  8058. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  8059. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  8060. "shasum": ""
  8061. },
  8062. "require": {
  8063. "php": ">=8.1"
  8064. },
  8065. "require-dev": {
  8066. "symfony/filesystem": "^6.0|^7.0"
  8067. },
  8068. "type": "library",
  8069. "autoload": {
  8070. "psr-4": {
  8071. "Symfony\\Component\\Finder\\": ""
  8072. },
  8073. "exclude-from-classmap": [
  8074. "/Tests/"
  8075. ]
  8076. },
  8077. "notification-url": "https://packagist.org/downloads/",
  8078. "license": [
  8079. "MIT"
  8080. ],
  8081. "authors": [
  8082. {
  8083. "name": "Fabien Potencier",
  8084. "email": "fabien@symfony.com"
  8085. },
  8086. {
  8087. "name": "Symfony Community",
  8088. "homepage": "https://symfony.com/contributors"
  8089. }
  8090. ],
  8091. "description": "Finds files and directories via an intuitive fluent interface",
  8092. "homepage": "https://symfony.com",
  8093. "support": {
  8094. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  8095. },
  8096. "funding": [
  8097. {
  8098. "url": "https://symfony.com/sponsor",
  8099. "type": "custom"
  8100. },
  8101. {
  8102. "url": "https://github.com/fabpot",
  8103. "type": "github"
  8104. },
  8105. {
  8106. "url": "https://github.com/nicolas-grekas",
  8107. "type": "github"
  8108. },
  8109. {
  8110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8111. "type": "tidelift"
  8112. }
  8113. ],
  8114. "time": "2026-01-28T15:16:37+00:00"
  8115. },
  8116. {
  8117. "name": "symfony/http-foundation",
  8118. "version": "v6.4.35",
  8119. "source": {
  8120. "type": "git",
  8121. "url": "https://github.com/symfony/http-foundation.git",
  8122. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  8123. },
  8124. "dist": {
  8125. "type": "zip",
  8126. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8127. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8128. "shasum": ""
  8129. },
  8130. "require": {
  8131. "php": ">=8.1",
  8132. "symfony/deprecation-contracts": "^2.5|^3",
  8133. "symfony/polyfill-mbstring": "~1.1",
  8134. "symfony/polyfill-php83": "^1.27"
  8135. },
  8136. "conflict": {
  8137. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8138. },
  8139. "require-dev": {
  8140. "doctrine/dbal": "^2.13.1|^3|^4",
  8141. "predis/predis": "^1.1|^2.0",
  8142. "symfony/cache": "^6.4.12|^7.1.5",
  8143. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8144. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8145. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8146. "symfony/mime": "^5.4|^6.0|^7.0",
  8147. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8148. },
  8149. "type": "library",
  8150. "autoload": {
  8151. "psr-4": {
  8152. "Symfony\\Component\\HttpFoundation\\": ""
  8153. },
  8154. "exclude-from-classmap": [
  8155. "/Tests/"
  8156. ]
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "MIT"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "Fabien Potencier",
  8165. "email": "fabien@symfony.com"
  8166. },
  8167. {
  8168. "name": "Symfony Community",
  8169. "homepage": "https://symfony.com/contributors"
  8170. }
  8171. ],
  8172. "description": "Defines an object-oriented layer for the HTTP specification",
  8173. "homepage": "https://symfony.com",
  8174. "support": {
  8175. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  8176. },
  8177. "funding": [
  8178. {
  8179. "url": "https://symfony.com/sponsor",
  8180. "type": "custom"
  8181. },
  8182. {
  8183. "url": "https://github.com/fabpot",
  8184. "type": "github"
  8185. },
  8186. {
  8187. "url": "https://github.com/nicolas-grekas",
  8188. "type": "github"
  8189. },
  8190. {
  8191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8192. "type": "tidelift"
  8193. }
  8194. ],
  8195. "time": "2026-03-06T11:15:58+00:00"
  8196. },
  8197. {
  8198. "name": "symfony/http-kernel",
  8199. "version": "v6.4.35",
  8200. "source": {
  8201. "type": "git",
  8202. "url": "https://github.com/symfony/http-kernel.git",
  8203. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  8204. },
  8205. "dist": {
  8206. "type": "zip",
  8207. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  8208. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  8209. "shasum": ""
  8210. },
  8211. "require": {
  8212. "php": ">=8.1",
  8213. "psr/log": "^1|^2|^3",
  8214. "symfony/deprecation-contracts": "^2.5|^3",
  8215. "symfony/error-handler": "^6.4|^7.0",
  8216. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8217. "symfony/http-foundation": "^6.4|^7.0",
  8218. "symfony/polyfill-ctype": "^1.8"
  8219. },
  8220. "conflict": {
  8221. "symfony/browser-kit": "<5.4",
  8222. "symfony/cache": "<5.4",
  8223. "symfony/config": "<6.1",
  8224. "symfony/console": "<5.4",
  8225. "symfony/dependency-injection": "<6.4",
  8226. "symfony/doctrine-bridge": "<5.4",
  8227. "symfony/form": "<5.4",
  8228. "symfony/http-client": "<5.4",
  8229. "symfony/http-client-contracts": "<2.5",
  8230. "symfony/mailer": "<5.4",
  8231. "symfony/messenger": "<5.4",
  8232. "symfony/translation": "<5.4",
  8233. "symfony/translation-contracts": "<2.5",
  8234. "symfony/twig-bridge": "<5.4",
  8235. "symfony/validator": "<6.4",
  8236. "symfony/var-dumper": "<6.3",
  8237. "twig/twig": "<2.13"
  8238. },
  8239. "provide": {
  8240. "psr/log-implementation": "1.0|2.0|3.0"
  8241. },
  8242. "require-dev": {
  8243. "psr/cache": "^1.0|^2.0|^3.0",
  8244. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8245. "symfony/clock": "^6.2|^7.0",
  8246. "symfony/config": "^6.1|^7.0",
  8247. "symfony/console": "^5.4|^6.0|^7.0",
  8248. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8249. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  8250. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8251. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8252. "symfony/finder": "^5.4|^6.0|^7.0",
  8253. "symfony/http-client-contracts": "^2.5|^3",
  8254. "symfony/process": "^5.4|^6.0|^7.0",
  8255. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8256. "symfony/routing": "^5.4|^6.0|^7.0",
  8257. "symfony/serializer": "^6.4.4|^7.0.4",
  8258. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8259. "symfony/translation": "^5.4|^6.0|^7.0",
  8260. "symfony/translation-contracts": "^2.5|^3",
  8261. "symfony/uid": "^5.4|^6.0|^7.0",
  8262. "symfony/validator": "^6.4|^7.0",
  8263. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8264. "symfony/var-exporter": "^6.2|^7.0",
  8265. "twig/twig": "^2.13|^3.0.4"
  8266. },
  8267. "type": "library",
  8268. "autoload": {
  8269. "psr-4": {
  8270. "Symfony\\Component\\HttpKernel\\": ""
  8271. },
  8272. "exclude-from-classmap": [
  8273. "/Tests/"
  8274. ]
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "authors": [
  8281. {
  8282. "name": "Fabien Potencier",
  8283. "email": "fabien@symfony.com"
  8284. },
  8285. {
  8286. "name": "Symfony Community",
  8287. "homepage": "https://symfony.com/contributors"
  8288. }
  8289. ],
  8290. "description": "Provides a structured process for converting a Request into a Response",
  8291. "homepage": "https://symfony.com",
  8292. "support": {
  8293. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://symfony.com/sponsor",
  8298. "type": "custom"
  8299. },
  8300. {
  8301. "url": "https://github.com/fabpot",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://github.com/nicolas-grekas",
  8306. "type": "github"
  8307. },
  8308. {
  8309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8310. "type": "tidelift"
  8311. }
  8312. ],
  8313. "time": "2026-03-06T16:28:07+00:00"
  8314. },
  8315. {
  8316. "name": "symfony/mailer",
  8317. "version": "v6.4.34",
  8318. "source": {
  8319. "type": "git",
  8320. "url": "https://github.com/symfony/mailer.git",
  8321. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  8322. },
  8323. "dist": {
  8324. "type": "zip",
  8325. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  8326. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  8327. "shasum": ""
  8328. },
  8329. "require": {
  8330. "egulias/email-validator": "^2.1.10|^3|^4",
  8331. "php": ">=8.1",
  8332. "psr/event-dispatcher": "^1",
  8333. "psr/log": "^1|^2|^3",
  8334. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8335. "symfony/mime": "^6.2|^7.0",
  8336. "symfony/service-contracts": "^2.5|^3"
  8337. },
  8338. "conflict": {
  8339. "symfony/http-client-contracts": "<2.5",
  8340. "symfony/http-kernel": "<5.4",
  8341. "symfony/messenger": "<6.2",
  8342. "symfony/mime": "<6.2",
  8343. "symfony/twig-bridge": "<6.2.1"
  8344. },
  8345. "require-dev": {
  8346. "symfony/console": "^5.4|^6.0|^7.0",
  8347. "symfony/http-client": "^5.4|^6.0|^7.0",
  8348. "symfony/messenger": "^6.2|^7.0",
  8349. "symfony/twig-bridge": "^6.2|^7.0"
  8350. },
  8351. "type": "library",
  8352. "autoload": {
  8353. "psr-4": {
  8354. "Symfony\\Component\\Mailer\\": ""
  8355. },
  8356. "exclude-from-classmap": [
  8357. "/Tests/"
  8358. ]
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "MIT"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Fabien Potencier",
  8367. "email": "fabien@symfony.com"
  8368. },
  8369. {
  8370. "name": "Symfony Community",
  8371. "homepage": "https://symfony.com/contributors"
  8372. }
  8373. ],
  8374. "description": "Helps sending emails",
  8375. "homepage": "https://symfony.com",
  8376. "support": {
  8377. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  8378. },
  8379. "funding": [
  8380. {
  8381. "url": "https://symfony.com/sponsor",
  8382. "type": "custom"
  8383. },
  8384. {
  8385. "url": "https://github.com/fabpot",
  8386. "type": "github"
  8387. },
  8388. {
  8389. "url": "https://github.com/nicolas-grekas",
  8390. "type": "github"
  8391. },
  8392. {
  8393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8394. "type": "tidelift"
  8395. }
  8396. ],
  8397. "time": "2026-02-24T09:34:36+00:00"
  8398. },
  8399. {
  8400. "name": "symfony/mime",
  8401. "version": "v6.4.35",
  8402. "source": {
  8403. "type": "git",
  8404. "url": "https://github.com/symfony/mime.git",
  8405. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  8406. },
  8407. "dist": {
  8408. "type": "zip",
  8409. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8410. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8411. "shasum": ""
  8412. },
  8413. "require": {
  8414. "php": ">=8.1",
  8415. "symfony/deprecation-contracts": "^2.5|^3",
  8416. "symfony/polyfill-intl-idn": "^1.10",
  8417. "symfony/polyfill-mbstring": "^1.0"
  8418. },
  8419. "conflict": {
  8420. "egulias/email-validator": "~3.0.0",
  8421. "phpdocumentor/reflection-docblock": "<3.2.2",
  8422. "phpdocumentor/type-resolver": "<1.4.0",
  8423. "symfony/mailer": "<5.4",
  8424. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8425. },
  8426. "require-dev": {
  8427. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8428. "league/html-to-markdown": "^5.0",
  8429. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8430. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8431. "symfony/process": "^5.4|^6.4|^7.0",
  8432. "symfony/property-access": "^5.4|^6.0|^7.0",
  8433. "symfony/property-info": "^5.4|^6.0|^7.0",
  8434. "symfony/serializer": "^6.4.3|^7.0.3"
  8435. },
  8436. "type": "library",
  8437. "autoload": {
  8438. "psr-4": {
  8439. "Symfony\\Component\\Mime\\": ""
  8440. },
  8441. "exclude-from-classmap": [
  8442. "/Tests/"
  8443. ]
  8444. },
  8445. "notification-url": "https://packagist.org/downloads/",
  8446. "license": [
  8447. "MIT"
  8448. ],
  8449. "authors": [
  8450. {
  8451. "name": "Fabien Potencier",
  8452. "email": "fabien@symfony.com"
  8453. },
  8454. {
  8455. "name": "Symfony Community",
  8456. "homepage": "https://symfony.com/contributors"
  8457. }
  8458. ],
  8459. "description": "Allows manipulating MIME messages",
  8460. "homepage": "https://symfony.com",
  8461. "keywords": [
  8462. "mime",
  8463. "mime-type"
  8464. ],
  8465. "support": {
  8466. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  8467. },
  8468. "funding": [
  8469. {
  8470. "url": "https://symfony.com/sponsor",
  8471. "type": "custom"
  8472. },
  8473. {
  8474. "url": "https://github.com/fabpot",
  8475. "type": "github"
  8476. },
  8477. {
  8478. "url": "https://github.com/nicolas-grekas",
  8479. "type": "github"
  8480. },
  8481. {
  8482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8483. "type": "tidelift"
  8484. }
  8485. ],
  8486. "time": "2026-03-05T11:25:28+00:00"
  8487. },
  8488. {
  8489. "name": "symfony/polyfill-ctype",
  8490. "version": "v1.33.0",
  8491. "source": {
  8492. "type": "git",
  8493. "url": "https://github.com/symfony/polyfill-ctype.git",
  8494. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8495. },
  8496. "dist": {
  8497. "type": "zip",
  8498. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8499. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8500. "shasum": ""
  8501. },
  8502. "require": {
  8503. "php": ">=7.2"
  8504. },
  8505. "provide": {
  8506. "ext-ctype": "*"
  8507. },
  8508. "suggest": {
  8509. "ext-ctype": "For best performance"
  8510. },
  8511. "type": "library",
  8512. "extra": {
  8513. "thanks": {
  8514. "url": "https://github.com/symfony/polyfill",
  8515. "name": "symfony/polyfill"
  8516. }
  8517. },
  8518. "autoload": {
  8519. "files": [
  8520. "bootstrap.php"
  8521. ],
  8522. "psr-4": {
  8523. "Symfony\\Polyfill\\Ctype\\": ""
  8524. }
  8525. },
  8526. "notification-url": "https://packagist.org/downloads/",
  8527. "license": [
  8528. "MIT"
  8529. ],
  8530. "authors": [
  8531. {
  8532. "name": "Gert de Pagter",
  8533. "email": "BackEndTea@gmail.com"
  8534. },
  8535. {
  8536. "name": "Symfony Community",
  8537. "homepage": "https://symfony.com/contributors"
  8538. }
  8539. ],
  8540. "description": "Symfony polyfill for ctype functions",
  8541. "homepage": "https://symfony.com",
  8542. "keywords": [
  8543. "compatibility",
  8544. "ctype",
  8545. "polyfill",
  8546. "portable"
  8547. ],
  8548. "support": {
  8549. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  8550. },
  8551. "funding": [
  8552. {
  8553. "url": "https://symfony.com/sponsor",
  8554. "type": "custom"
  8555. },
  8556. {
  8557. "url": "https://github.com/fabpot",
  8558. "type": "github"
  8559. },
  8560. {
  8561. "url": "https://github.com/nicolas-grekas",
  8562. "type": "github"
  8563. },
  8564. {
  8565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8566. "type": "tidelift"
  8567. }
  8568. ],
  8569. "time": "2024-09-09T11:45:10+00:00"
  8570. },
  8571. {
  8572. "name": "symfony/polyfill-iconv",
  8573. "version": "v1.33.0",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/symfony/polyfill-iconv.git",
  8577. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8582. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "php": ">=7.2"
  8587. },
  8588. "provide": {
  8589. "ext-iconv": "*"
  8590. },
  8591. "suggest": {
  8592. "ext-iconv": "For best performance"
  8593. },
  8594. "type": "library",
  8595. "extra": {
  8596. "thanks": {
  8597. "url": "https://github.com/symfony/polyfill",
  8598. "name": "symfony/polyfill"
  8599. }
  8600. },
  8601. "autoload": {
  8602. "files": [
  8603. "bootstrap.php"
  8604. ],
  8605. "psr-4": {
  8606. "Symfony\\Polyfill\\Iconv\\": ""
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "MIT"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Nicolas Grekas",
  8616. "email": "p@tchwork.com"
  8617. },
  8618. {
  8619. "name": "Symfony Community",
  8620. "homepage": "https://symfony.com/contributors"
  8621. }
  8622. ],
  8623. "description": "Symfony polyfill for the Iconv extension",
  8624. "homepage": "https://symfony.com",
  8625. "keywords": [
  8626. "compatibility",
  8627. "iconv",
  8628. "polyfill",
  8629. "portable",
  8630. "shim"
  8631. ],
  8632. "support": {
  8633. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  8634. },
  8635. "funding": [
  8636. {
  8637. "url": "https://symfony.com/sponsor",
  8638. "type": "custom"
  8639. },
  8640. {
  8641. "url": "https://github.com/fabpot",
  8642. "type": "github"
  8643. },
  8644. {
  8645. "url": "https://github.com/nicolas-grekas",
  8646. "type": "github"
  8647. },
  8648. {
  8649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8650. "type": "tidelift"
  8651. }
  8652. ],
  8653. "time": "2024-09-17T14:58:18+00:00"
  8654. },
  8655. {
  8656. "name": "symfony/polyfill-intl-grapheme",
  8657. "version": "v1.33.0",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8661. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8666. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": ">=7.2"
  8671. },
  8672. "suggest": {
  8673. "ext-intl": "For best performance"
  8674. },
  8675. "type": "library",
  8676. "extra": {
  8677. "thanks": {
  8678. "url": "https://github.com/symfony/polyfill",
  8679. "name": "symfony/polyfill"
  8680. }
  8681. },
  8682. "autoload": {
  8683. "files": [
  8684. "bootstrap.php"
  8685. ],
  8686. "psr-4": {
  8687. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8688. }
  8689. },
  8690. "notification-url": "https://packagist.org/downloads/",
  8691. "license": [
  8692. "MIT"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Nicolas Grekas",
  8697. "email": "p@tchwork.com"
  8698. },
  8699. {
  8700. "name": "Symfony Community",
  8701. "homepage": "https://symfony.com/contributors"
  8702. }
  8703. ],
  8704. "description": "Symfony polyfill for intl's grapheme_* functions",
  8705. "homepage": "https://symfony.com",
  8706. "keywords": [
  8707. "compatibility",
  8708. "grapheme",
  8709. "intl",
  8710. "polyfill",
  8711. "portable",
  8712. "shim"
  8713. ],
  8714. "support": {
  8715. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  8716. },
  8717. "funding": [
  8718. {
  8719. "url": "https://symfony.com/sponsor",
  8720. "type": "custom"
  8721. },
  8722. {
  8723. "url": "https://github.com/fabpot",
  8724. "type": "github"
  8725. },
  8726. {
  8727. "url": "https://github.com/nicolas-grekas",
  8728. "type": "github"
  8729. },
  8730. {
  8731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8732. "type": "tidelift"
  8733. }
  8734. ],
  8735. "time": "2025-06-27T09:58:17+00:00"
  8736. },
  8737. {
  8738. "name": "symfony/polyfill-intl-idn",
  8739. "version": "v1.33.0",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8743. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8748. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "php": ">=7.2",
  8753. "symfony/polyfill-intl-normalizer": "^1.10"
  8754. },
  8755. "suggest": {
  8756. "ext-intl": "For best performance"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "thanks": {
  8761. "url": "https://github.com/symfony/polyfill",
  8762. "name": "symfony/polyfill"
  8763. }
  8764. },
  8765. "autoload": {
  8766. "files": [
  8767. "bootstrap.php"
  8768. ],
  8769. "psr-4": {
  8770. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8771. }
  8772. },
  8773. "notification-url": "https://packagist.org/downloads/",
  8774. "license": [
  8775. "MIT"
  8776. ],
  8777. "authors": [
  8778. {
  8779. "name": "Laurent Bassin",
  8780. "email": "laurent@bassin.info"
  8781. },
  8782. {
  8783. "name": "Trevor Rowbotham",
  8784. "email": "trevor.rowbotham@pm.me"
  8785. },
  8786. {
  8787. "name": "Symfony Community",
  8788. "homepage": "https://symfony.com/contributors"
  8789. }
  8790. ],
  8791. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8792. "homepage": "https://symfony.com",
  8793. "keywords": [
  8794. "compatibility",
  8795. "idn",
  8796. "intl",
  8797. "polyfill",
  8798. "portable",
  8799. "shim"
  8800. ],
  8801. "support": {
  8802. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  8803. },
  8804. "funding": [
  8805. {
  8806. "url": "https://symfony.com/sponsor",
  8807. "type": "custom"
  8808. },
  8809. {
  8810. "url": "https://github.com/fabpot",
  8811. "type": "github"
  8812. },
  8813. {
  8814. "url": "https://github.com/nicolas-grekas",
  8815. "type": "github"
  8816. },
  8817. {
  8818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8819. "type": "tidelift"
  8820. }
  8821. ],
  8822. "time": "2024-09-10T14:38:51+00:00"
  8823. },
  8824. {
  8825. "name": "symfony/polyfill-intl-normalizer",
  8826. "version": "v1.33.0",
  8827. "source": {
  8828. "type": "git",
  8829. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8830. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8831. },
  8832. "dist": {
  8833. "type": "zip",
  8834. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8835. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8836. "shasum": ""
  8837. },
  8838. "require": {
  8839. "php": ">=7.2"
  8840. },
  8841. "suggest": {
  8842. "ext-intl": "For best performance"
  8843. },
  8844. "type": "library",
  8845. "extra": {
  8846. "thanks": {
  8847. "url": "https://github.com/symfony/polyfill",
  8848. "name": "symfony/polyfill"
  8849. }
  8850. },
  8851. "autoload": {
  8852. "files": [
  8853. "bootstrap.php"
  8854. ],
  8855. "psr-4": {
  8856. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8857. },
  8858. "classmap": [
  8859. "Resources/stubs"
  8860. ]
  8861. },
  8862. "notification-url": "https://packagist.org/downloads/",
  8863. "license": [
  8864. "MIT"
  8865. ],
  8866. "authors": [
  8867. {
  8868. "name": "Nicolas Grekas",
  8869. "email": "p@tchwork.com"
  8870. },
  8871. {
  8872. "name": "Symfony Community",
  8873. "homepage": "https://symfony.com/contributors"
  8874. }
  8875. ],
  8876. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8877. "homepage": "https://symfony.com",
  8878. "keywords": [
  8879. "compatibility",
  8880. "intl",
  8881. "normalizer",
  8882. "polyfill",
  8883. "portable",
  8884. "shim"
  8885. ],
  8886. "support": {
  8887. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  8888. },
  8889. "funding": [
  8890. {
  8891. "url": "https://symfony.com/sponsor",
  8892. "type": "custom"
  8893. },
  8894. {
  8895. "url": "https://github.com/fabpot",
  8896. "type": "github"
  8897. },
  8898. {
  8899. "url": "https://github.com/nicolas-grekas",
  8900. "type": "github"
  8901. },
  8902. {
  8903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8904. "type": "tidelift"
  8905. }
  8906. ],
  8907. "time": "2024-09-09T11:45:10+00:00"
  8908. },
  8909. {
  8910. "name": "symfony/polyfill-mbstring",
  8911. "version": "v1.33.0",
  8912. "source": {
  8913. "type": "git",
  8914. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8915. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8916. },
  8917. "dist": {
  8918. "type": "zip",
  8919. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8920. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8921. "shasum": ""
  8922. },
  8923. "require": {
  8924. "ext-iconv": "*",
  8925. "php": ">=7.2"
  8926. },
  8927. "provide": {
  8928. "ext-mbstring": "*"
  8929. },
  8930. "suggest": {
  8931. "ext-mbstring": "For best performance"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "thanks": {
  8936. "url": "https://github.com/symfony/polyfill",
  8937. "name": "symfony/polyfill"
  8938. }
  8939. },
  8940. "autoload": {
  8941. "files": [
  8942. "bootstrap.php"
  8943. ],
  8944. "psr-4": {
  8945. "Symfony\\Polyfill\\Mbstring\\": ""
  8946. }
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "MIT"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Nicolas Grekas",
  8955. "email": "p@tchwork.com"
  8956. },
  8957. {
  8958. "name": "Symfony Community",
  8959. "homepage": "https://symfony.com/contributors"
  8960. }
  8961. ],
  8962. "description": "Symfony polyfill for the Mbstring extension",
  8963. "homepage": "https://symfony.com",
  8964. "keywords": [
  8965. "compatibility",
  8966. "mbstring",
  8967. "polyfill",
  8968. "portable",
  8969. "shim"
  8970. ],
  8971. "support": {
  8972. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  8973. },
  8974. "funding": [
  8975. {
  8976. "url": "https://symfony.com/sponsor",
  8977. "type": "custom"
  8978. },
  8979. {
  8980. "url": "https://github.com/fabpot",
  8981. "type": "github"
  8982. },
  8983. {
  8984. "url": "https://github.com/nicolas-grekas",
  8985. "type": "github"
  8986. },
  8987. {
  8988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8989. "type": "tidelift"
  8990. }
  8991. ],
  8992. "time": "2024-12-23T08:48:59+00:00"
  8993. },
  8994. {
  8995. "name": "symfony/polyfill-php81",
  8996. "version": "v1.33.0",
  8997. "source": {
  8998. "type": "git",
  8999. "url": "https://github.com/symfony/polyfill-php81.git",
  9000. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  9001. },
  9002. "dist": {
  9003. "type": "zip",
  9004. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9005. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9006. "shasum": ""
  9007. },
  9008. "require": {
  9009. "php": ">=7.2"
  9010. },
  9011. "type": "library",
  9012. "extra": {
  9013. "thanks": {
  9014. "url": "https://github.com/symfony/polyfill",
  9015. "name": "symfony/polyfill"
  9016. }
  9017. },
  9018. "autoload": {
  9019. "files": [
  9020. "bootstrap.php"
  9021. ],
  9022. "psr-4": {
  9023. "Symfony\\Polyfill\\Php81\\": ""
  9024. },
  9025. "classmap": [
  9026. "Resources/stubs"
  9027. ]
  9028. },
  9029. "notification-url": "https://packagist.org/downloads/",
  9030. "license": [
  9031. "MIT"
  9032. ],
  9033. "authors": [
  9034. {
  9035. "name": "Nicolas Grekas",
  9036. "email": "p@tchwork.com"
  9037. },
  9038. {
  9039. "name": "Symfony Community",
  9040. "homepage": "https://symfony.com/contributors"
  9041. }
  9042. ],
  9043. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9044. "homepage": "https://symfony.com",
  9045. "keywords": [
  9046. "compatibility",
  9047. "polyfill",
  9048. "portable",
  9049. "shim"
  9050. ],
  9051. "support": {
  9052. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  9053. },
  9054. "funding": [
  9055. {
  9056. "url": "https://symfony.com/sponsor",
  9057. "type": "custom"
  9058. },
  9059. {
  9060. "url": "https://github.com/fabpot",
  9061. "type": "github"
  9062. },
  9063. {
  9064. "url": "https://github.com/nicolas-grekas",
  9065. "type": "github"
  9066. },
  9067. {
  9068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9069. "type": "tidelift"
  9070. }
  9071. ],
  9072. "time": "2024-09-09T11:45:10+00:00"
  9073. },
  9074. {
  9075. "name": "symfony/polyfill-php83",
  9076. "version": "v1.33.0",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/symfony/polyfill-php83.git",
  9080. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9085. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9086. "shasum": ""
  9087. },
  9088. "require": {
  9089. "php": ">=7.2"
  9090. },
  9091. "type": "library",
  9092. "extra": {
  9093. "thanks": {
  9094. "url": "https://github.com/symfony/polyfill",
  9095. "name": "symfony/polyfill"
  9096. }
  9097. },
  9098. "autoload": {
  9099. "files": [
  9100. "bootstrap.php"
  9101. ],
  9102. "psr-4": {
  9103. "Symfony\\Polyfill\\Php83\\": ""
  9104. },
  9105. "classmap": [
  9106. "Resources/stubs"
  9107. ]
  9108. },
  9109. "notification-url": "https://packagist.org/downloads/",
  9110. "license": [
  9111. "MIT"
  9112. ],
  9113. "authors": [
  9114. {
  9115. "name": "Nicolas Grekas",
  9116. "email": "p@tchwork.com"
  9117. },
  9118. {
  9119. "name": "Symfony Community",
  9120. "homepage": "https://symfony.com/contributors"
  9121. }
  9122. ],
  9123. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9124. "homepage": "https://symfony.com",
  9125. "keywords": [
  9126. "compatibility",
  9127. "polyfill",
  9128. "portable",
  9129. "shim"
  9130. ],
  9131. "support": {
  9132. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  9133. },
  9134. "funding": [
  9135. {
  9136. "url": "https://symfony.com/sponsor",
  9137. "type": "custom"
  9138. },
  9139. {
  9140. "url": "https://github.com/fabpot",
  9141. "type": "github"
  9142. },
  9143. {
  9144. "url": "https://github.com/nicolas-grekas",
  9145. "type": "github"
  9146. },
  9147. {
  9148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9149. "type": "tidelift"
  9150. }
  9151. ],
  9152. "time": "2025-07-08T02:45:35+00:00"
  9153. },
  9154. {
  9155. "name": "symfony/process",
  9156. "version": "v6.4.33",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/symfony/process.git",
  9160. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  9165. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  9166. "shasum": ""
  9167. },
  9168. "require": {
  9169. "php": ">=8.1"
  9170. },
  9171. "type": "library",
  9172. "autoload": {
  9173. "psr-4": {
  9174. "Symfony\\Component\\Process\\": ""
  9175. },
  9176. "exclude-from-classmap": [
  9177. "/Tests/"
  9178. ]
  9179. },
  9180. "notification-url": "https://packagist.org/downloads/",
  9181. "license": [
  9182. "MIT"
  9183. ],
  9184. "authors": [
  9185. {
  9186. "name": "Fabien Potencier",
  9187. "email": "fabien@symfony.com"
  9188. },
  9189. {
  9190. "name": "Symfony Community",
  9191. "homepage": "https://symfony.com/contributors"
  9192. }
  9193. ],
  9194. "description": "Executes commands in sub-processes",
  9195. "homepage": "https://symfony.com",
  9196. "support": {
  9197. "source": "https://github.com/symfony/process/tree/v6.4.33"
  9198. },
  9199. "funding": [
  9200. {
  9201. "url": "https://symfony.com/sponsor",
  9202. "type": "custom"
  9203. },
  9204. {
  9205. "url": "https://github.com/fabpot",
  9206. "type": "github"
  9207. },
  9208. {
  9209. "url": "https://github.com/nicolas-grekas",
  9210. "type": "github"
  9211. },
  9212. {
  9213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9214. "type": "tidelift"
  9215. }
  9216. ],
  9217. "time": "2026-01-23T16:02:12+00:00"
  9218. },
  9219. {
  9220. "name": "symfony/psr-http-message-bridge",
  9221. "version": "v6.4.32",
  9222. "source": {
  9223. "type": "git",
  9224. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9225. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  9226. },
  9227. "dist": {
  9228. "type": "zip",
  9229. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  9230. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  9231. "shasum": ""
  9232. },
  9233. "require": {
  9234. "php": ">=8.1",
  9235. "psr/http-message": "^1.0|^2.0",
  9236. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9237. },
  9238. "conflict": {
  9239. "php-http/discovery": "<1.15",
  9240. "symfony/http-kernel": "<6.2"
  9241. },
  9242. "require-dev": {
  9243. "nyholm/psr7": "^1.1",
  9244. "php-http/discovery": "^1.15",
  9245. "psr/log": "^1.1.4|^2|^3",
  9246. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9247. "symfony/config": "^5.4|^6.0|^7.0",
  9248. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9249. "symfony/framework-bundle": "^6.2|^7.0",
  9250. "symfony/http-kernel": "^6.2|^7.0"
  9251. },
  9252. "type": "symfony-bridge",
  9253. "autoload": {
  9254. "psr-4": {
  9255. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9256. },
  9257. "exclude-from-classmap": [
  9258. "/Tests/"
  9259. ]
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "MIT"
  9264. ],
  9265. "authors": [
  9266. {
  9267. "name": "Fabien Potencier",
  9268. "email": "fabien@symfony.com"
  9269. },
  9270. {
  9271. "name": "Symfony Community",
  9272. "homepage": "https://symfony.com/contributors"
  9273. }
  9274. ],
  9275. "description": "PSR HTTP message bridge",
  9276. "homepage": "https://symfony.com",
  9277. "keywords": [
  9278. "http",
  9279. "http-message",
  9280. "psr-17",
  9281. "psr-7"
  9282. ],
  9283. "support": {
  9284. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  9285. },
  9286. "funding": [
  9287. {
  9288. "url": "https://symfony.com/sponsor",
  9289. "type": "custom"
  9290. },
  9291. {
  9292. "url": "https://github.com/fabpot",
  9293. "type": "github"
  9294. },
  9295. {
  9296. "url": "https://github.com/nicolas-grekas",
  9297. "type": "github"
  9298. },
  9299. {
  9300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9301. "type": "tidelift"
  9302. }
  9303. ],
  9304. "time": "2026-01-02T11:59:06+00:00"
  9305. },
  9306. {
  9307. "name": "symfony/routing",
  9308. "version": "v6.4.34",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/symfony/routing.git",
  9312. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9317. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "php": ">=8.1",
  9322. "symfony/deprecation-contracts": "^2.5|^3"
  9323. },
  9324. "conflict": {
  9325. "doctrine/annotations": "<1.12",
  9326. "symfony/config": "<6.2",
  9327. "symfony/dependency-injection": "<5.4",
  9328. "symfony/yaml": "<5.4"
  9329. },
  9330. "require-dev": {
  9331. "doctrine/annotations": "^1.12|^2",
  9332. "psr/log": "^1|^2|^3",
  9333. "symfony/config": "^6.2|^7.0",
  9334. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9335. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9336. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9337. "symfony/yaml": "^5.4|^6.0|^7.0"
  9338. },
  9339. "type": "library",
  9340. "autoload": {
  9341. "psr-4": {
  9342. "Symfony\\Component\\Routing\\": ""
  9343. },
  9344. "exclude-from-classmap": [
  9345. "/Tests/"
  9346. ]
  9347. },
  9348. "notification-url": "https://packagist.org/downloads/",
  9349. "license": [
  9350. "MIT"
  9351. ],
  9352. "authors": [
  9353. {
  9354. "name": "Fabien Potencier",
  9355. "email": "fabien@symfony.com"
  9356. },
  9357. {
  9358. "name": "Symfony Community",
  9359. "homepage": "https://symfony.com/contributors"
  9360. }
  9361. ],
  9362. "description": "Maps an HTTP request to a set of configuration variables",
  9363. "homepage": "https://symfony.com",
  9364. "keywords": [
  9365. "router",
  9366. "routing",
  9367. "uri",
  9368. "url"
  9369. ],
  9370. "support": {
  9371. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://symfony.com/sponsor",
  9376. "type": "custom"
  9377. },
  9378. {
  9379. "url": "https://github.com/fabpot",
  9380. "type": "github"
  9381. },
  9382. {
  9383. "url": "https://github.com/nicolas-grekas",
  9384. "type": "github"
  9385. },
  9386. {
  9387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9388. "type": "tidelift"
  9389. }
  9390. ],
  9391. "time": "2026-02-24T17:34:50+00:00"
  9392. },
  9393. {
  9394. "name": "symfony/serializer",
  9395. "version": "v6.4.35",
  9396. "source": {
  9397. "type": "git",
  9398. "url": "https://github.com/symfony/serializer.git",
  9399. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  9400. },
  9401. "dist": {
  9402. "type": "zip",
  9403. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  9404. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  9405. "shasum": ""
  9406. },
  9407. "require": {
  9408. "php": ">=8.1",
  9409. "symfony/deprecation-contracts": "^2.5|^3",
  9410. "symfony/polyfill-ctype": "~1.8"
  9411. },
  9412. "conflict": {
  9413. "doctrine/annotations": "<1.12",
  9414. "phpdocumentor/reflection-docblock": "<3.2.2",
  9415. "phpdocumentor/type-resolver": "<1.4.0",
  9416. "symfony/dependency-injection": "<5.4",
  9417. "symfony/property-access": "<5.4",
  9418. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9419. "symfony/uid": "<5.4",
  9420. "symfony/validator": "<6.4",
  9421. "symfony/yaml": "<5.4"
  9422. },
  9423. "require-dev": {
  9424. "doctrine/annotations": "^1.12|^2",
  9425. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9426. "seld/jsonlint": "^1.10",
  9427. "symfony/cache": "^5.4|^6.0|^7.0",
  9428. "symfony/config": "^5.4|^6.0|^7.0",
  9429. "symfony/console": "^5.4|^6.0|^7.0",
  9430. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9431. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9432. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9433. "symfony/form": "^5.4|^6.0|^7.0",
  9434. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9435. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9436. "symfony/messenger": "^5.4|^6.0|^7.0",
  9437. "symfony/mime": "^5.4|^6.0|^7.0",
  9438. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9439. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9440. "symfony/translation-contracts": "^2.5|^3",
  9441. "symfony/uid": "^5.4|^6.0|^7.0",
  9442. "symfony/validator": "^6.4|^7.0",
  9443. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9444. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9445. "symfony/yaml": "^5.4|^6.0|^7.0"
  9446. },
  9447. "type": "library",
  9448. "autoload": {
  9449. "psr-4": {
  9450. "Symfony\\Component\\Serializer\\": ""
  9451. },
  9452. "exclude-from-classmap": [
  9453. "/Tests/"
  9454. ]
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "MIT"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Fabien Potencier",
  9463. "email": "fabien@symfony.com"
  9464. },
  9465. {
  9466. "name": "Symfony Community",
  9467. "homepage": "https://symfony.com/contributors"
  9468. }
  9469. ],
  9470. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9471. "homepage": "https://symfony.com",
  9472. "support": {
  9473. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  9474. },
  9475. "funding": [
  9476. {
  9477. "url": "https://symfony.com/sponsor",
  9478. "type": "custom"
  9479. },
  9480. {
  9481. "url": "https://github.com/fabpot",
  9482. "type": "github"
  9483. },
  9484. {
  9485. "url": "https://github.com/nicolas-grekas",
  9486. "type": "github"
  9487. },
  9488. {
  9489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9490. "type": "tidelift"
  9491. }
  9492. ],
  9493. "time": "2026-03-06T11:03:24+00:00"
  9494. },
  9495. {
  9496. "name": "symfony/service-contracts",
  9497. "version": "v3.6.1",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/symfony/service-contracts.git",
  9501. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  9506. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  9507. "shasum": ""
  9508. },
  9509. "require": {
  9510. "php": ">=8.1",
  9511. "psr/container": "^1.1|^2.0",
  9512. "symfony/deprecation-contracts": "^2.5|^3"
  9513. },
  9514. "conflict": {
  9515. "ext-psr": "<1.1|>=2"
  9516. },
  9517. "type": "library",
  9518. "extra": {
  9519. "thanks": {
  9520. "url": "https://github.com/symfony/contracts",
  9521. "name": "symfony/contracts"
  9522. },
  9523. "branch-alias": {
  9524. "dev-main": "3.6-dev"
  9525. }
  9526. },
  9527. "autoload": {
  9528. "psr-4": {
  9529. "Symfony\\Contracts\\Service\\": ""
  9530. },
  9531. "exclude-from-classmap": [
  9532. "/Test/"
  9533. ]
  9534. },
  9535. "notification-url": "https://packagist.org/downloads/",
  9536. "license": [
  9537. "MIT"
  9538. ],
  9539. "authors": [
  9540. {
  9541. "name": "Nicolas Grekas",
  9542. "email": "p@tchwork.com"
  9543. },
  9544. {
  9545. "name": "Symfony Community",
  9546. "homepage": "https://symfony.com/contributors"
  9547. }
  9548. ],
  9549. "description": "Generic abstractions related to writing services",
  9550. "homepage": "https://symfony.com",
  9551. "keywords": [
  9552. "abstractions",
  9553. "contracts",
  9554. "decoupling",
  9555. "interfaces",
  9556. "interoperability",
  9557. "standards"
  9558. ],
  9559. "support": {
  9560. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  9561. },
  9562. "funding": [
  9563. {
  9564. "url": "https://symfony.com/sponsor",
  9565. "type": "custom"
  9566. },
  9567. {
  9568. "url": "https://github.com/fabpot",
  9569. "type": "github"
  9570. },
  9571. {
  9572. "url": "https://github.com/nicolas-grekas",
  9573. "type": "github"
  9574. },
  9575. {
  9576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9577. "type": "tidelift"
  9578. }
  9579. ],
  9580. "time": "2025-07-15T11:30:57+00:00"
  9581. },
  9582. {
  9583. "name": "symfony/string",
  9584. "version": "v6.4.34",
  9585. "source": {
  9586. "type": "git",
  9587. "url": "https://github.com/symfony/string.git",
  9588. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  9589. },
  9590. "dist": {
  9591. "type": "zip",
  9592. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9593. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9594. "shasum": ""
  9595. },
  9596. "require": {
  9597. "php": ">=8.1",
  9598. "symfony/polyfill-ctype": "~1.8",
  9599. "symfony/polyfill-intl-grapheme": "~1.0",
  9600. "symfony/polyfill-intl-normalizer": "~1.0",
  9601. "symfony/polyfill-mbstring": "~1.0"
  9602. },
  9603. "conflict": {
  9604. "symfony/translation-contracts": "<2.5"
  9605. },
  9606. "require-dev": {
  9607. "symfony/http-client": "^5.4|^6.0|^7.0",
  9608. "symfony/intl": "^6.2|^7.0",
  9609. "symfony/translation-contracts": "^2.5|^3.0",
  9610. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9611. },
  9612. "type": "library",
  9613. "autoload": {
  9614. "files": [
  9615. "Resources/functions.php"
  9616. ],
  9617. "psr-4": {
  9618. "Symfony\\Component\\String\\": ""
  9619. },
  9620. "exclude-from-classmap": [
  9621. "/Tests/"
  9622. ]
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "MIT"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Nicolas Grekas",
  9631. "email": "p@tchwork.com"
  9632. },
  9633. {
  9634. "name": "Symfony Community",
  9635. "homepage": "https://symfony.com/contributors"
  9636. }
  9637. ],
  9638. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9639. "homepage": "https://symfony.com",
  9640. "keywords": [
  9641. "grapheme",
  9642. "i18n",
  9643. "string",
  9644. "unicode",
  9645. "utf-8",
  9646. "utf8"
  9647. ],
  9648. "support": {
  9649. "source": "https://github.com/symfony/string/tree/v6.4.34"
  9650. },
  9651. "funding": [
  9652. {
  9653. "url": "https://symfony.com/sponsor",
  9654. "type": "custom"
  9655. },
  9656. {
  9657. "url": "https://github.com/fabpot",
  9658. "type": "github"
  9659. },
  9660. {
  9661. "url": "https://github.com/nicolas-grekas",
  9662. "type": "github"
  9663. },
  9664. {
  9665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9666. "type": "tidelift"
  9667. }
  9668. ],
  9669. "time": "2026-02-08T20:44:54+00:00"
  9670. },
  9671. {
  9672. "name": "symfony/translation-contracts",
  9673. "version": "v3.6.1",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/symfony/translation-contracts.git",
  9677. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  9682. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  9683. "shasum": ""
  9684. },
  9685. "require": {
  9686. "php": ">=8.1"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "thanks": {
  9691. "url": "https://github.com/symfony/contracts",
  9692. "name": "symfony/contracts"
  9693. },
  9694. "branch-alias": {
  9695. "dev-main": "3.6-dev"
  9696. }
  9697. },
  9698. "autoload": {
  9699. "psr-4": {
  9700. "Symfony\\Contracts\\Translation\\": ""
  9701. },
  9702. "exclude-from-classmap": [
  9703. "/Test/"
  9704. ]
  9705. },
  9706. "notification-url": "https://packagist.org/downloads/",
  9707. "license": [
  9708. "MIT"
  9709. ],
  9710. "authors": [
  9711. {
  9712. "name": "Nicolas Grekas",
  9713. "email": "p@tchwork.com"
  9714. },
  9715. {
  9716. "name": "Symfony Community",
  9717. "homepage": "https://symfony.com/contributors"
  9718. }
  9719. ],
  9720. "description": "Generic abstractions related to translation",
  9721. "homepage": "https://symfony.com",
  9722. "keywords": [
  9723. "abstractions",
  9724. "contracts",
  9725. "decoupling",
  9726. "interfaces",
  9727. "interoperability",
  9728. "standards"
  9729. ],
  9730. "support": {
  9731. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  9732. },
  9733. "funding": [
  9734. {
  9735. "url": "https://symfony.com/sponsor",
  9736. "type": "custom"
  9737. },
  9738. {
  9739. "url": "https://github.com/fabpot",
  9740. "type": "github"
  9741. },
  9742. {
  9743. "url": "https://github.com/nicolas-grekas",
  9744. "type": "github"
  9745. },
  9746. {
  9747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9748. "type": "tidelift"
  9749. }
  9750. ],
  9751. "time": "2025-07-15T13:41:35+00:00"
  9752. },
  9753. {
  9754. "name": "symfony/validator",
  9755. "version": "v6.4.35",
  9756. "source": {
  9757. "type": "git",
  9758. "url": "https://github.com/symfony/validator.git",
  9759. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  9760. },
  9761. "dist": {
  9762. "type": "zip",
  9763. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9764. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9765. "shasum": ""
  9766. },
  9767. "require": {
  9768. "php": ">=8.1",
  9769. "symfony/deprecation-contracts": "^2.5|^3",
  9770. "symfony/polyfill-ctype": "~1.8",
  9771. "symfony/polyfill-mbstring": "~1.0",
  9772. "symfony/polyfill-php83": "^1.27",
  9773. "symfony/translation-contracts": "^2.5|^3"
  9774. },
  9775. "conflict": {
  9776. "doctrine/annotations": "<1.13",
  9777. "doctrine/lexer": "<1.1",
  9778. "symfony/dependency-injection": "<5.4",
  9779. "symfony/expression-language": "<5.4",
  9780. "symfony/http-kernel": "<5.4",
  9781. "symfony/intl": "<5.4",
  9782. "symfony/property-info": "<5.4",
  9783. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9784. "symfony/yaml": "<5.4"
  9785. },
  9786. "require-dev": {
  9787. "doctrine/annotations": "^1.13|^2",
  9788. "egulias/email-validator": "^2.1.10|^3|^4",
  9789. "symfony/cache": "^5.4|^6.0|^7.0",
  9790. "symfony/config": "^5.4|^6.0|^7.0",
  9791. "symfony/console": "^5.4|^6.0|^7.0",
  9792. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9793. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9794. "symfony/finder": "^5.4|^6.0|^7.0",
  9795. "symfony/http-client": "^5.4|^6.0|^7.0",
  9796. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9797. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9798. "symfony/intl": "^5.4|^6.0|^7.0",
  9799. "symfony/mime": "^5.4|^6.0|^7.0",
  9800. "symfony/property-access": "^5.4|^6.0|^7.0",
  9801. "symfony/property-info": "^5.4|^6.0|^7.0",
  9802. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9803. "symfony/yaml": "^5.4|^6.0|^7.0"
  9804. },
  9805. "type": "library",
  9806. "autoload": {
  9807. "psr-4": {
  9808. "Symfony\\Component\\Validator\\": ""
  9809. },
  9810. "exclude-from-classmap": [
  9811. "/Tests/",
  9812. "/Resources/bin/"
  9813. ]
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "MIT"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Fabien Potencier",
  9822. "email": "fabien@symfony.com"
  9823. },
  9824. {
  9825. "name": "Symfony Community",
  9826. "homepage": "https://symfony.com/contributors"
  9827. }
  9828. ],
  9829. "description": "Provides tools to validate values",
  9830. "homepage": "https://symfony.com",
  9831. "support": {
  9832. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  9833. },
  9834. "funding": [
  9835. {
  9836. "url": "https://symfony.com/sponsor",
  9837. "type": "custom"
  9838. },
  9839. {
  9840. "url": "https://github.com/fabpot",
  9841. "type": "github"
  9842. },
  9843. {
  9844. "url": "https://github.com/nicolas-grekas",
  9845. "type": "github"
  9846. },
  9847. {
  9848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9849. "type": "tidelift"
  9850. }
  9851. ],
  9852. "time": "2026-03-02T17:53:19+00:00"
  9853. },
  9854. {
  9855. "name": "symfony/var-dumper",
  9856. "version": "v6.4.32",
  9857. "source": {
  9858. "type": "git",
  9859. "url": "https://github.com/symfony/var-dumper.git",
  9860. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  9861. },
  9862. "dist": {
  9863. "type": "zip",
  9864. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  9865. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  9866. "shasum": ""
  9867. },
  9868. "require": {
  9869. "php": ">=8.1",
  9870. "symfony/deprecation-contracts": "^2.5|^3",
  9871. "symfony/polyfill-mbstring": "~1.0"
  9872. },
  9873. "conflict": {
  9874. "symfony/console": "<5.4"
  9875. },
  9876. "require-dev": {
  9877. "symfony/console": "^5.4|^6.0|^7.0",
  9878. "symfony/error-handler": "^6.3|^7.0",
  9879. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9880. "symfony/process": "^5.4|^6.0|^7.0",
  9881. "symfony/uid": "^5.4|^6.0|^7.0",
  9882. "twig/twig": "^2.13|^3.0.4"
  9883. },
  9884. "bin": [
  9885. "Resources/bin/var-dump-server"
  9886. ],
  9887. "type": "library",
  9888. "autoload": {
  9889. "files": [
  9890. "Resources/functions/dump.php"
  9891. ],
  9892. "psr-4": {
  9893. "Symfony\\Component\\VarDumper\\": ""
  9894. },
  9895. "exclude-from-classmap": [
  9896. "/Tests/"
  9897. ]
  9898. },
  9899. "notification-url": "https://packagist.org/downloads/",
  9900. "license": [
  9901. "MIT"
  9902. ],
  9903. "authors": [
  9904. {
  9905. "name": "Nicolas Grekas",
  9906. "email": "p@tchwork.com"
  9907. },
  9908. {
  9909. "name": "Symfony Community",
  9910. "homepage": "https://symfony.com/contributors"
  9911. }
  9912. ],
  9913. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9914. "homepage": "https://symfony.com",
  9915. "keywords": [
  9916. "debug",
  9917. "dump"
  9918. ],
  9919. "support": {
  9920. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  9921. },
  9922. "funding": [
  9923. {
  9924. "url": "https://symfony.com/sponsor",
  9925. "type": "custom"
  9926. },
  9927. {
  9928. "url": "https://github.com/fabpot",
  9929. "type": "github"
  9930. },
  9931. {
  9932. "url": "https://github.com/nicolas-grekas",
  9933. "type": "github"
  9934. },
  9935. {
  9936. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9937. "type": "tidelift"
  9938. }
  9939. ],
  9940. "time": "2026-01-01T13:34:06+00:00"
  9941. },
  9942. {
  9943. "name": "symfony/var-exporter",
  9944. "version": "v6.4.26",
  9945. "source": {
  9946. "type": "git",
  9947. "url": "https://github.com/symfony/var-exporter.git",
  9948. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  9949. },
  9950. "dist": {
  9951. "type": "zip",
  9952. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9953. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9954. "shasum": ""
  9955. },
  9956. "require": {
  9957. "php": ">=8.1",
  9958. "symfony/deprecation-contracts": "^2.5|^3"
  9959. },
  9960. "require-dev": {
  9961. "symfony/property-access": "^6.4|^7.0",
  9962. "symfony/serializer": "^6.4|^7.0",
  9963. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9964. },
  9965. "type": "library",
  9966. "autoload": {
  9967. "psr-4": {
  9968. "Symfony\\Component\\VarExporter\\": ""
  9969. },
  9970. "exclude-from-classmap": [
  9971. "/Tests/"
  9972. ]
  9973. },
  9974. "notification-url": "https://packagist.org/downloads/",
  9975. "license": [
  9976. "MIT"
  9977. ],
  9978. "authors": [
  9979. {
  9980. "name": "Nicolas Grekas",
  9981. "email": "p@tchwork.com"
  9982. },
  9983. {
  9984. "name": "Symfony Community",
  9985. "homepage": "https://symfony.com/contributors"
  9986. }
  9987. ],
  9988. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9989. "homepage": "https://symfony.com",
  9990. "keywords": [
  9991. "clone",
  9992. "construct",
  9993. "export",
  9994. "hydrate",
  9995. "instantiate",
  9996. "lazy-loading",
  9997. "proxy",
  9998. "serialize"
  9999. ],
  10000. "support": {
  10001. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  10002. },
  10003. "funding": [
  10004. {
  10005. "url": "https://symfony.com/sponsor",
  10006. "type": "custom"
  10007. },
  10008. {
  10009. "url": "https://github.com/fabpot",
  10010. "type": "github"
  10011. },
  10012. {
  10013. "url": "https://github.com/nicolas-grekas",
  10014. "type": "github"
  10015. },
  10016. {
  10017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10018. "type": "tidelift"
  10019. }
  10020. ],
  10021. "time": "2025-09-11T09:57:09+00:00"
  10022. },
  10023. {
  10024. "name": "symfony/yaml",
  10025. "version": "v6.4.34",
  10026. "source": {
  10027. "type": "git",
  10028. "url": "https://github.com/symfony/yaml.git",
  10029. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  10030. },
  10031. "dist": {
  10032. "type": "zip",
  10033. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  10034. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  10035. "shasum": ""
  10036. },
  10037. "require": {
  10038. "php": ">=8.1",
  10039. "symfony/deprecation-contracts": "^2.5|^3",
  10040. "symfony/polyfill-ctype": "^1.8"
  10041. },
  10042. "conflict": {
  10043. "symfony/console": "<5.4"
  10044. },
  10045. "require-dev": {
  10046. "symfony/console": "^5.4|^6.0|^7.0"
  10047. },
  10048. "bin": [
  10049. "Resources/bin/yaml-lint"
  10050. ],
  10051. "type": "library",
  10052. "autoload": {
  10053. "psr-4": {
  10054. "Symfony\\Component\\Yaml\\": ""
  10055. },
  10056. "exclude-from-classmap": [
  10057. "/Tests/"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "MIT"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Fabien Potencier",
  10067. "email": "fabien@symfony.com"
  10068. },
  10069. {
  10070. "name": "Symfony Community",
  10071. "homepage": "https://symfony.com/contributors"
  10072. }
  10073. ],
  10074. "description": "Loads and dumps YAML files",
  10075. "homepage": "https://symfony.com",
  10076. "support": {
  10077. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  10078. },
  10079. "funding": [
  10080. {
  10081. "url": "https://symfony.com/sponsor",
  10082. "type": "custom"
  10083. },
  10084. {
  10085. "url": "https://github.com/fabpot",
  10086. "type": "github"
  10087. },
  10088. {
  10089. "url": "https://github.com/nicolas-grekas",
  10090. "type": "github"
  10091. },
  10092. {
  10093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10094. "type": "tidelift"
  10095. }
  10096. ],
  10097. "time": "2026-02-06T18:32:11+00:00"
  10098. },
  10099. {
  10100. "name": "twig/twig",
  10101. "version": "v3.22.2",
  10102. "source": {
  10103. "type": "git",
  10104. "url": "https://github.com/twigphp/Twig.git",
  10105. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  10106. },
  10107. "dist": {
  10108. "type": "zip",
  10109. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10110. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10111. "shasum": ""
  10112. },
  10113. "require": {
  10114. "php": ">=8.1.0",
  10115. "symfony/deprecation-contracts": "^2.5|^3",
  10116. "symfony/polyfill-ctype": "^1.8",
  10117. "symfony/polyfill-mbstring": "^1.3"
  10118. },
  10119. "require-dev": {
  10120. "phpstan/phpstan": "^2.0",
  10121. "psr/container": "^1.0|^2.0",
  10122. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10123. },
  10124. "type": "library",
  10125. "autoload": {
  10126. "files": [
  10127. "src/Resources/core.php",
  10128. "src/Resources/debug.php",
  10129. "src/Resources/escaper.php",
  10130. "src/Resources/string_loader.php"
  10131. ],
  10132. "psr-4": {
  10133. "Twig\\": "src/"
  10134. }
  10135. },
  10136. "notification-url": "https://packagist.org/downloads/",
  10137. "license": [
  10138. "BSD-3-Clause"
  10139. ],
  10140. "authors": [
  10141. {
  10142. "name": "Fabien Potencier",
  10143. "email": "fabien@symfony.com",
  10144. "homepage": "http://fabien.potencier.org",
  10145. "role": "Lead Developer"
  10146. },
  10147. {
  10148. "name": "Twig Team",
  10149. "role": "Contributors"
  10150. },
  10151. {
  10152. "name": "Armin Ronacher",
  10153. "email": "armin.ronacher@active-4.com",
  10154. "role": "Project Founder"
  10155. }
  10156. ],
  10157. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10158. "homepage": "https://twig.symfony.com",
  10159. "keywords": [
  10160. "templating"
  10161. ],
  10162. "support": {
  10163. "issues": "https://github.com/twigphp/Twig/issues",
  10164. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  10165. },
  10166. "funding": [
  10167. {
  10168. "url": "https://github.com/fabpot",
  10169. "type": "github"
  10170. },
  10171. {
  10172. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10173. "type": "tidelift"
  10174. }
  10175. ],
  10176. "time": "2025-12-14T11:28:47+00:00"
  10177. },
  10178. {
  10179. "name": "vlucas/phpdotenv",
  10180. "version": "v2.6.9",
  10181. "source": {
  10182. "type": "git",
  10183. "url": "https://github.com/vlucas/phpdotenv.git",
  10184. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10185. },
  10186. "dist": {
  10187. "type": "zip",
  10188. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10189. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10190. "shasum": ""
  10191. },
  10192. "require": {
  10193. "php": "^5.3.9 || ^7.0 || ^8.0",
  10194. "symfony/polyfill-ctype": "^1.17"
  10195. },
  10196. "require-dev": {
  10197. "ext-filter": "*",
  10198. "ext-pcre": "*",
  10199. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10200. },
  10201. "suggest": {
  10202. "ext-filter": "Required to use the boolean validator.",
  10203. "ext-pcre": "Required to use most of the library."
  10204. },
  10205. "type": "library",
  10206. "extra": {
  10207. "branch-alias": {
  10208. "dev-master": "2.6-dev"
  10209. }
  10210. },
  10211. "autoload": {
  10212. "psr-4": {
  10213. "Dotenv\\": "src/"
  10214. }
  10215. },
  10216. "notification-url": "https://packagist.org/downloads/",
  10217. "license": [
  10218. "BSD-3-Clause"
  10219. ],
  10220. "authors": [
  10221. {
  10222. "name": "Graham Campbell",
  10223. "email": "hello@gjcampbell.co.uk",
  10224. "homepage": "https://github.com/GrahamCampbell"
  10225. },
  10226. {
  10227. "name": "Vance Lucas",
  10228. "email": "vance@vancelucas.com",
  10229. "homepage": "https://github.com/vlucas"
  10230. }
  10231. ],
  10232. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10233. "keywords": [
  10234. "dotenv",
  10235. "env",
  10236. "environment"
  10237. ],
  10238. "support": {
  10239. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10240. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10241. },
  10242. "funding": [
  10243. {
  10244. "url": "https://github.com/GrahamCampbell",
  10245. "type": "github"
  10246. },
  10247. {
  10248. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10249. "type": "tidelift"
  10250. }
  10251. ],
  10252. "time": "2021-12-12T22:59:22+00:00"
  10253. },
  10254. {
  10255. "name": "webflo/drupal-finder",
  10256. "version": "1.3.1",
  10257. "source": {
  10258. "type": "git",
  10259. "url": "https://github.com/webflo/drupal-finder.git",
  10260. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10261. },
  10262. "dist": {
  10263. "type": "zip",
  10264. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10265. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10266. "shasum": ""
  10267. },
  10268. "require": {
  10269. "composer-runtime-api": "^2.2",
  10270. "php": ">=8.1"
  10271. },
  10272. "require-dev": {
  10273. "mikey179/vfsstream": "^1.6",
  10274. "phpunit/phpunit": "^10.4",
  10275. "symfony/process": "^6.4"
  10276. },
  10277. "type": "library",
  10278. "autoload": {
  10279. "psr-4": {
  10280. "DrupalFinder\\": "src/"
  10281. }
  10282. },
  10283. "notification-url": "https://packagist.org/downloads/",
  10284. "license": [
  10285. "GPL-2.0-or-later"
  10286. ],
  10287. "authors": [
  10288. {
  10289. "name": "Florian Weber",
  10290. "email": "florian@webflo.org"
  10291. }
  10292. ],
  10293. "description": "Helper class to locate a Drupal installation.",
  10294. "support": {
  10295. "issues": "https://github.com/webflo/drupal-finder/issues",
  10296. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10297. },
  10298. "time": "2024-06-28T13:45:36+00:00"
  10299. },
  10300. {
  10301. "name": "webmozart/assert",
  10302. "version": "1.12.1",
  10303. "source": {
  10304. "type": "git",
  10305. "url": "https://github.com/webmozarts/assert.git",
  10306. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68"
  10307. },
  10308. "dist": {
  10309. "type": "zip",
  10310. "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68",
  10311. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68",
  10312. "shasum": ""
  10313. },
  10314. "require": {
  10315. "ext-ctype": "*",
  10316. "ext-date": "*",
  10317. "ext-filter": "*",
  10318. "php": "^7.2 || ^8.0"
  10319. },
  10320. "suggest": {
  10321. "ext-intl": "",
  10322. "ext-simplexml": "",
  10323. "ext-spl": ""
  10324. },
  10325. "type": "library",
  10326. "extra": {
  10327. "branch-alias": {
  10328. "dev-master": "1.10-dev"
  10329. }
  10330. },
  10331. "autoload": {
  10332. "psr-4": {
  10333. "Webmozart\\Assert\\": "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": "Assertions to validate method input/output with nice error messages.",
  10347. "keywords": [
  10348. "assert",
  10349. "check",
  10350. "validate"
  10351. ],
  10352. "support": {
  10353. "issues": "https://github.com/webmozarts/assert/issues",
  10354. "source": "https://github.com/webmozarts/assert/tree/1.12.1"
  10355. },
  10356. "time": "2025-10-29T15:56:20+00:00"
  10357. },
  10358. {
  10359. "name": "webmozart/path-util",
  10360. "version": "2.3.0",
  10361. "source": {
  10362. "type": "git",
  10363. "url": "https://github.com/webmozart/path-util.git",
  10364. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10365. },
  10366. "dist": {
  10367. "type": "zip",
  10368. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10369. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10370. "shasum": ""
  10371. },
  10372. "require": {
  10373. "php": ">=5.3.3",
  10374. "webmozart/assert": "~1.0"
  10375. },
  10376. "require-dev": {
  10377. "phpunit/phpunit": "^4.6",
  10378. "sebastian/version": "^1.0.1"
  10379. },
  10380. "type": "library",
  10381. "extra": {
  10382. "branch-alias": {
  10383. "dev-master": "2.3-dev"
  10384. }
  10385. },
  10386. "autoload": {
  10387. "psr-4": {
  10388. "Webmozart\\PathUtil\\": "src/"
  10389. }
  10390. },
  10391. "notification-url": "https://packagist.org/downloads/",
  10392. "license": [
  10393. "MIT"
  10394. ],
  10395. "authors": [
  10396. {
  10397. "name": "Bernhard Schussek",
  10398. "email": "bschussek@gmail.com"
  10399. }
  10400. ],
  10401. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10402. "support": {
  10403. "issues": "https://github.com/webmozart/path-util/issues",
  10404. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10405. },
  10406. "abandoned": "symfony/filesystem",
  10407. "time": "2015-12-17T08:42:14+00:00"
  10408. }
  10409. ],
  10410. "packages-dev": [],
  10411. "aliases": [],
  10412. "minimum-stability": "dev",
  10413. "stability-flags": {
  10414. "drupal/basic": 15,
  10415. "drupal/bulkdelete": 20,
  10416. "drupal/config_update": 15,
  10417. "drupal/context": 5,
  10418. "drupal/domain": 10,
  10419. "drupal/filefield_sources": 20
  10420. },
  10421. "prefer-stable": true,
  10422. "prefer-lowest": false,
  10423. "platform": {
  10424. "php": ">=5.6"
  10425. },
  10426. "platform-dev": {},
  10427. "plugin-api-version": "2.9.0"
  10428. }