composer.lock 379 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407
  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": "23a2e9f4e2fc5d57ac071b1cfd369405",
  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.0",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/consolidation/annotated-command.git",
  359. "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c",
  364. "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c",
  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",
  372. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  373. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  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.0"
  406. },
  407. "time": "2024-04-05T21:05:39+00:00"
  408. },
  409. {
  410. "name": "consolidation/config",
  411. "version": "2.1.2",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/consolidation/config.git",
  415. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  420. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  425. "grasmash/expander": "^2.0.1 || ^3",
  426. "php": ">=7.1.3",
  427. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  428. },
  429. "require-dev": {
  430. "ext-json": "*",
  431. "phpunit/phpunit": ">=7.5.20",
  432. "squizlabs/php_codesniffer": "^3",
  433. "symfony/console": "^4 || ^5 || ^6",
  434. "symfony/yaml": "^4 || ^5 || ^6",
  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": "2.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/2.1.2"
  466. },
  467. "time": "2022-10-06T17:48:03+00:00"
  468. },
  469. {
  470. "name": "consolidation/filter-via-dot-access-data",
  471. "version": "2.0.2",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  475. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  480. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  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.2"
  516. },
  517. "time": "2021-12-30T03:56:08+00:00"
  518. },
  519. {
  520. "name": "consolidation/log",
  521. "version": "3.1.0",
  522. "source": {
  523. "type": "git",
  524. "url": "https://github.com/consolidation/log.git",
  525. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
  526. },
  527. "dist": {
  528. "type": "zip",
  529. "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
  530. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
  531. "shasum": ""
  532. },
  533. "require": {
  534. "php": ">=8.0.0",
  535. "psr/log": "^3",
  536. "symfony/console": "^5 || ^6 || ^7"
  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.0"
  568. },
  569. "time": "2024-04-04T23:50:25+00:00"
  570. },
  571. {
  572. "name": "consolidation/output-formatters",
  573. "version": "4.5.0",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/consolidation/output-formatters.git",
  577. "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/7a611b01eb48eb19cd54672339fc08c0985bf540",
  582. "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540",
  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",
  589. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  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",
  596. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  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.5.0"
  622. },
  623. "time": "2024-04-02T15:18:52+00:00"
  624. },
  625. {
  626. "name": "consolidation/robo",
  627. "version": "4.0.6",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/consolidation/robo.git",
  631. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  636. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "consolidation/annotated-command": "^4.8.1",
  641. "consolidation/config": "^2.0.1",
  642. "consolidation/log": "^2.0.2 || ^3",
  643. "consolidation/output-formatters": "^4.1.2",
  644. "consolidation/self-update": "^2.0",
  645. "league/container": "^3.3.1 || ^4.0",
  646. "php": ">=8.0",
  647. "phpowermove/docblock": "^4.0",
  648. "symfony/console": "^6",
  649. "symfony/event-dispatcher": "^6",
  650. "symfony/filesystem": "^6",
  651. "symfony/finder": "^6",
  652. "symfony/process": "^6",
  653. "symfony/yaml": "^6"
  654. },
  655. "conflict": {
  656. "codegyre/robo": "*"
  657. },
  658. "require-dev": {
  659. "natxet/cssmin": "3.0.4",
  660. "patchwork/jsqueeze": "^2",
  661. "pear/archive_tar": "^1.4.4",
  662. "phpunit/phpunit": "^7.5.20 || ^8",
  663. "squizlabs/php_codesniffer": "^3.6",
  664. "yoast/phpunit-polyfills": "^0.2.0"
  665. },
  666. "suggest": {
  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/4.0.6"
  695. },
  696. "time": "2023-04-30T21:49:04+00:00"
  697. },
  698. {
  699. "name": "consolidation/self-update",
  700. "version": "2.2.0",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/consolidation/self-update.git",
  704. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  709. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "composer/semver": "^3.2",
  714. "php": ">=5.5.0",
  715. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  716. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  717. },
  718. "bin": [
  719. "scripts/release"
  720. ],
  721. "type": "library",
  722. "extra": {
  723. "branch-alias": {
  724. "dev-main": "2.x-dev"
  725. }
  726. },
  727. "autoload": {
  728. "psr-4": {
  729. "SelfUpdate\\": "src"
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Alexander Menk",
  739. "email": "menk@mestrona.net"
  740. },
  741. {
  742. "name": "Greg Anderson",
  743. "email": "greg.1.anderson@greenknowe.org"
  744. }
  745. ],
  746. "description": "Provides a self:update command for Symfony Console applications.",
  747. "support": {
  748. "issues": "https://github.com/consolidation/self-update/issues",
  749. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  750. },
  751. "time": "2023-03-18T01:37:41+00:00"
  752. },
  753. {
  754. "name": "consolidation/site-alias",
  755. "version": "4.1.0",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/consolidation/site-alias.git",
  759. "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf",
  764. "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf",
  765. "shasum": ""
  766. },
  767. "require": {
  768. "consolidation/config": "^1.2.1 || ^2 || ^3",
  769. "php": ">=7.4",
  770. "symfony/filesystem": "^5.4 || ^6 || ^7",
  771. "symfony/finder": "^5 || ^6 || ^7"
  772. },
  773. "require-dev": {
  774. "php-coveralls/php-coveralls": "^2.4.2",
  775. "phpunit/phpunit": ">=7",
  776. "squizlabs/php_codesniffer": "^3",
  777. "symfony/var-dumper": "^4",
  778. "yoast/phpunit-polyfills": "^0.2.0"
  779. },
  780. "type": "library",
  781. "extra": {
  782. "branch-alias": {
  783. "dev-main": "4.x-dev"
  784. }
  785. },
  786. "autoload": {
  787. "psr-4": {
  788. "Consolidation\\SiteAlias\\": "src"
  789. }
  790. },
  791. "notification-url": "https://packagist.org/downloads/",
  792. "license": [
  793. "MIT"
  794. ],
  795. "authors": [
  796. {
  797. "name": "Greg Anderson",
  798. "email": "greg.1.anderson@greenknowe.org"
  799. },
  800. {
  801. "name": "Moshe Weitzman",
  802. "email": "weitzman@tejasa.com"
  803. }
  804. ],
  805. "description": "Manage alias records for local and remote sites.",
  806. "support": {
  807. "issues": "https://github.com/consolidation/site-alias/issues",
  808. "source": "https://github.com/consolidation/site-alias/tree/4.1.0"
  809. },
  810. "time": "2024-04-05T15:58:04+00:00"
  811. },
  812. {
  813. "name": "consolidation/site-process",
  814. "version": "5.4.0",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/consolidation/site-process.git",
  818. "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a",
  823. "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a",
  824. "shasum": ""
  825. },
  826. "require": {
  827. "consolidation/config": "^2 || ^3",
  828. "consolidation/site-alias": "^3 || ^4",
  829. "php": ">=8.0.14",
  830. "symfony/console": "^5.4 || ^6 || ^7",
  831. "symfony/process": "^6 || ^7"
  832. },
  833. "require-dev": {
  834. "phpunit/phpunit": "^9",
  835. "squizlabs/php_codesniffer": "^3"
  836. },
  837. "type": "library",
  838. "extra": {
  839. "branch-alias": {
  840. "dev-main": "5.x-dev"
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "Consolidation\\SiteProcess\\": "src"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Greg Anderson",
  855. "email": "greg.1.anderson@greenknowe.org"
  856. },
  857. {
  858. "name": "Moshe Weitzman",
  859. "email": "weitzman@tejasa.com"
  860. }
  861. ],
  862. "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.",
  863. "support": {
  864. "issues": "https://github.com/consolidation/site-process/issues",
  865. "source": "https://github.com/consolidation/site-process/tree/5.4.0"
  866. },
  867. "time": "2024-04-06T00:00:28+00:00"
  868. },
  869. {
  870. "name": "cweagans/composer-patches",
  871. "version": "1.7.3",
  872. "source": {
  873. "type": "git",
  874. "url": "https://github.com/cweagans/composer-patches.git",
  875. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  876. },
  877. "dist": {
  878. "type": "zip",
  879. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  880. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  881. "shasum": ""
  882. },
  883. "require": {
  884. "composer-plugin-api": "^1.0 || ^2.0",
  885. "php": ">=5.3.0"
  886. },
  887. "require-dev": {
  888. "composer/composer": "~1.0 || ~2.0",
  889. "phpunit/phpunit": "~4.6"
  890. },
  891. "type": "composer-plugin",
  892. "extra": {
  893. "class": "cweagans\\Composer\\Patches"
  894. },
  895. "autoload": {
  896. "psr-4": {
  897. "cweagans\\Composer\\": "src"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "BSD-3-Clause"
  903. ],
  904. "authors": [
  905. {
  906. "name": "Cameron Eagans",
  907. "email": "me@cweagans.net"
  908. }
  909. ],
  910. "description": "Provides a way to patch Composer packages.",
  911. "support": {
  912. "issues": "https://github.com/cweagans/composer-patches/issues",
  913. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  914. },
  915. "time": "2022-12-20T22:53:13+00:00"
  916. },
  917. {
  918. "name": "dekor/php-array-table",
  919. "version": "2.0",
  920. "source": {
  921. "type": "git",
  922. "url": "https://github.com/deniskoronets/php-array-table.git",
  923. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  924. },
  925. "dist": {
  926. "type": "zip",
  927. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  928. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  929. "shasum": ""
  930. },
  931. "require": {
  932. "ext-mbstring": "*",
  933. "php": ">=5.6.0"
  934. },
  935. "require-dev": {
  936. "phpunit/phpunit": "^10"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "psr-4": {
  941. "dekor\\": "src"
  942. }
  943. },
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "BSD-3-Clause"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Denis Koronets",
  951. "email": "deniskoronets@woo.zp.ua",
  952. "homepage": "https://woo.zp.ua/"
  953. }
  954. ],
  955. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  956. "keywords": [
  957. "library",
  958. "php"
  959. ],
  960. "support": {
  961. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  962. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  963. },
  964. "time": "2023-02-10T10:13:42+00:00"
  965. },
  966. {
  967. "name": "dflydev/dot-access-data",
  968. "version": "v3.0.3",
  969. "source": {
  970. "type": "git",
  971. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  972. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  973. },
  974. "dist": {
  975. "type": "zip",
  976. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  977. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  978. "shasum": ""
  979. },
  980. "require": {
  981. "php": "^7.1 || ^8.0"
  982. },
  983. "require-dev": {
  984. "phpstan/phpstan": "^0.12.42",
  985. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  986. "scrutinizer/ocular": "1.6.0",
  987. "squizlabs/php_codesniffer": "^3.5",
  988. "vimeo/psalm": "^4.0.0"
  989. },
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-main": "3.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Dflydev\\DotAccessData\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Dragonfly Development Inc.",
  1008. "email": "info@dflydev.com",
  1009. "homepage": "http://dflydev.com"
  1010. },
  1011. {
  1012. "name": "Beau Simensen",
  1013. "email": "beau@dflydev.com",
  1014. "homepage": "http://beausimensen.com"
  1015. },
  1016. {
  1017. "name": "Carlos Frutos",
  1018. "email": "carlos@kiwing.it",
  1019. "homepage": "https://github.com/cfrutos"
  1020. },
  1021. {
  1022. "name": "Colin O'Dell",
  1023. "email": "colinodell@gmail.com",
  1024. "homepage": "https://www.colinodell.com"
  1025. }
  1026. ],
  1027. "description": "Given a deep data structure, access data by dot notation.",
  1028. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1029. "keywords": [
  1030. "access",
  1031. "data",
  1032. "dot",
  1033. "notation"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1037. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1038. },
  1039. "time": "2024-07-08T12:26:09+00:00"
  1040. },
  1041. {
  1042. "name": "doctrine/annotations",
  1043. "version": "1.14.4",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/doctrine/annotations.git",
  1047. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1052. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "doctrine/lexer": "^1 || ^2",
  1057. "ext-tokenizer": "*",
  1058. "php": "^7.1 || ^8.0",
  1059. "psr/cache": "^1 || ^2 || ^3"
  1060. },
  1061. "require-dev": {
  1062. "doctrine/cache": "^1.11 || ^2.0",
  1063. "doctrine/coding-standard": "^9 || ^12",
  1064. "phpstan/phpstan": "~1.4.10 || ^1.10.28",
  1065. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1066. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
  1067. "vimeo/psalm": "^4.30 || ^5.14"
  1068. },
  1069. "suggest": {
  1070. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Guilherme Blanco",
  1085. "email": "guilhermeblanco@gmail.com"
  1086. },
  1087. {
  1088. "name": "Roman Borschel",
  1089. "email": "roman@code-factory.org"
  1090. },
  1091. {
  1092. "name": "Benjamin Eberlei",
  1093. "email": "kontakt@beberlei.de"
  1094. },
  1095. {
  1096. "name": "Jonathan Wage",
  1097. "email": "jonwage@gmail.com"
  1098. },
  1099. {
  1100. "name": "Johannes Schmitt",
  1101. "email": "schmittjoh@gmail.com"
  1102. }
  1103. ],
  1104. "description": "Docblock Annotations Parser",
  1105. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1106. "keywords": [
  1107. "annotations",
  1108. "docblock",
  1109. "parser"
  1110. ],
  1111. "support": {
  1112. "issues": "https://github.com/doctrine/annotations/issues",
  1113. "source": "https://github.com/doctrine/annotations/tree/1.14.4"
  1114. },
  1115. "time": "2024-09-05T10:15:52+00:00"
  1116. },
  1117. {
  1118. "name": "doctrine/common",
  1119. "version": "3.5.0",
  1120. "source": {
  1121. "type": "git",
  1122. "url": "https://github.com/doctrine/common.git",
  1123. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1124. },
  1125. "dist": {
  1126. "type": "zip",
  1127. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1128. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1129. "shasum": ""
  1130. },
  1131. "require": {
  1132. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1133. "php": "^7.1 || ^8.0"
  1134. },
  1135. "require-dev": {
  1136. "doctrine/coding-standard": "^9.0 || ^10.0",
  1137. "doctrine/collections": "^1",
  1138. "phpstan/phpstan": "^1.4.1",
  1139. "phpstan/phpstan-phpunit": "^1",
  1140. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1141. "squizlabs/php_codesniffer": "^3.0",
  1142. "symfony/phpunit-bridge": "^6.1",
  1143. "vimeo/psalm": "^4.4"
  1144. },
  1145. "type": "library",
  1146. "autoload": {
  1147. "psr-4": {
  1148. "Doctrine\\Common\\": "src"
  1149. }
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "MIT"
  1154. ],
  1155. "authors": [
  1156. {
  1157. "name": "Guilherme Blanco",
  1158. "email": "guilhermeblanco@gmail.com"
  1159. },
  1160. {
  1161. "name": "Roman Borschel",
  1162. "email": "roman@code-factory.org"
  1163. },
  1164. {
  1165. "name": "Benjamin Eberlei",
  1166. "email": "kontakt@beberlei.de"
  1167. },
  1168. {
  1169. "name": "Jonathan Wage",
  1170. "email": "jonwage@gmail.com"
  1171. },
  1172. {
  1173. "name": "Johannes Schmitt",
  1174. "email": "schmittjoh@gmail.com"
  1175. },
  1176. {
  1177. "name": "Marco Pivetta",
  1178. "email": "ocramius@gmail.com"
  1179. }
  1180. ],
  1181. "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.",
  1182. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1183. "keywords": [
  1184. "common",
  1185. "doctrine",
  1186. "php"
  1187. ],
  1188. "support": {
  1189. "issues": "https://github.com/doctrine/common/issues",
  1190. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1191. },
  1192. "funding": [
  1193. {
  1194. "url": "https://www.doctrine-project.org/sponsorship.html",
  1195. "type": "custom"
  1196. },
  1197. {
  1198. "url": "https://www.patreon.com/phpdoctrine",
  1199. "type": "patreon"
  1200. },
  1201. {
  1202. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1203. "type": "tidelift"
  1204. }
  1205. ],
  1206. "time": "2025-01-01T22:12:03+00:00"
  1207. },
  1208. {
  1209. "name": "doctrine/deprecations",
  1210. "version": "1.1.5",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/doctrine/deprecations.git",
  1214. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1219. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": "^7.1 || ^8.0"
  1224. },
  1225. "conflict": {
  1226. "phpunit/phpunit": "<=7.5 || >=13"
  1227. },
  1228. "require-dev": {
  1229. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1230. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1231. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1232. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1233. "psr/log": "^1 || ^2 || ^3"
  1234. },
  1235. "suggest": {
  1236. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1237. },
  1238. "type": "library",
  1239. "autoload": {
  1240. "psr-4": {
  1241. "Doctrine\\Deprecations\\": "src"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "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.",
  1249. "homepage": "https://www.doctrine-project.org/",
  1250. "support": {
  1251. "issues": "https://github.com/doctrine/deprecations/issues",
  1252. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1253. },
  1254. "time": "2025-04-07T20:06:18+00:00"
  1255. },
  1256. {
  1257. "name": "doctrine/event-manager",
  1258. "version": "2.0.1",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/doctrine/event-manager.git",
  1262. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1267. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "php": "^8.1"
  1272. },
  1273. "conflict": {
  1274. "doctrine/common": "<2.9"
  1275. },
  1276. "require-dev": {
  1277. "doctrine/coding-standard": "^12",
  1278. "phpstan/phpstan": "^1.8.8",
  1279. "phpunit/phpunit": "^10.5",
  1280. "vimeo/psalm": "^5.24"
  1281. },
  1282. "type": "library",
  1283. "autoload": {
  1284. "psr-4": {
  1285. "Doctrine\\Common\\": "src"
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Guilherme Blanco",
  1295. "email": "guilhermeblanco@gmail.com"
  1296. },
  1297. {
  1298. "name": "Roman Borschel",
  1299. "email": "roman@code-factory.org"
  1300. },
  1301. {
  1302. "name": "Benjamin Eberlei",
  1303. "email": "kontakt@beberlei.de"
  1304. },
  1305. {
  1306. "name": "Jonathan Wage",
  1307. "email": "jonwage@gmail.com"
  1308. },
  1309. {
  1310. "name": "Johannes Schmitt",
  1311. "email": "schmittjoh@gmail.com"
  1312. },
  1313. {
  1314. "name": "Marco Pivetta",
  1315. "email": "ocramius@gmail.com"
  1316. }
  1317. ],
  1318. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1319. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1320. "keywords": [
  1321. "event",
  1322. "event dispatcher",
  1323. "event manager",
  1324. "event system",
  1325. "events"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/doctrine/event-manager/issues",
  1329. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1330. },
  1331. "funding": [
  1332. {
  1333. "url": "https://www.doctrine-project.org/sponsorship.html",
  1334. "type": "custom"
  1335. },
  1336. {
  1337. "url": "https://www.patreon.com/phpdoctrine",
  1338. "type": "patreon"
  1339. },
  1340. {
  1341. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1342. "type": "tidelift"
  1343. }
  1344. ],
  1345. "time": "2024-05-22T20:47:39+00:00"
  1346. },
  1347. {
  1348. "name": "doctrine/lexer",
  1349. "version": "2.1.1",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://github.com/doctrine/lexer.git",
  1353. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1358. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1359. "shasum": ""
  1360. },
  1361. "require": {
  1362. "doctrine/deprecations": "^1.0",
  1363. "php": "^7.1 || ^8.0"
  1364. },
  1365. "require-dev": {
  1366. "doctrine/coding-standard": "^9 || ^12",
  1367. "phpstan/phpstan": "^1.3",
  1368. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1369. "psalm/plugin-phpunit": "^0.18.3",
  1370. "vimeo/psalm": "^4.11 || ^5.21"
  1371. },
  1372. "type": "library",
  1373. "autoload": {
  1374. "psr-4": {
  1375. "Doctrine\\Common\\Lexer\\": "src"
  1376. }
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "MIT"
  1381. ],
  1382. "authors": [
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Roman Borschel",
  1389. "email": "roman@code-factory.org"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1397. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1398. "keywords": [
  1399. "annotations",
  1400. "docblock",
  1401. "lexer",
  1402. "parser",
  1403. "php"
  1404. ],
  1405. "support": {
  1406. "issues": "https://github.com/doctrine/lexer/issues",
  1407. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1408. },
  1409. "funding": [
  1410. {
  1411. "url": "https://www.doctrine-project.org/sponsorship.html",
  1412. "type": "custom"
  1413. },
  1414. {
  1415. "url": "https://www.patreon.com/phpdoctrine",
  1416. "type": "patreon"
  1417. },
  1418. {
  1419. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1420. "type": "tidelift"
  1421. }
  1422. ],
  1423. "time": "2024-02-05T11:35:39+00:00"
  1424. },
  1425. {
  1426. "name": "doctrine/persistence",
  1427. "version": "4.1.0",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/doctrine/persistence.git",
  1431. "reference": "dcbdfe4b211ae09478e192289cae7ab0987b29a4"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/doctrine/persistence/zipball/dcbdfe4b211ae09478e192289cae7ab0987b29a4",
  1436. "reference": "dcbdfe4b211ae09478e192289cae7ab0987b29a4",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "doctrine/event-manager": "^1 || ^2",
  1441. "php": "^8.1",
  1442. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1443. },
  1444. "require-dev": {
  1445. "doctrine/coding-standard": "^12",
  1446. "phpstan/phpstan": "1.12.7",
  1447. "phpstan/phpstan-phpunit": "^1",
  1448. "phpstan/phpstan-strict-rules": "^1.6",
  1449. "phpunit/phpunit": "^9.6",
  1450. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1451. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1452. },
  1453. "type": "library",
  1454. "autoload": {
  1455. "psr-4": {
  1456. "Doctrine\\Persistence\\": "src/Persistence"
  1457. }
  1458. },
  1459. "notification-url": "https://packagist.org/downloads/",
  1460. "license": [
  1461. "MIT"
  1462. ],
  1463. "authors": [
  1464. {
  1465. "name": "Guilherme Blanco",
  1466. "email": "guilhermeblanco@gmail.com"
  1467. },
  1468. {
  1469. "name": "Roman Borschel",
  1470. "email": "roman@code-factory.org"
  1471. },
  1472. {
  1473. "name": "Benjamin Eberlei",
  1474. "email": "kontakt@beberlei.de"
  1475. },
  1476. {
  1477. "name": "Jonathan Wage",
  1478. "email": "jonwage@gmail.com"
  1479. },
  1480. {
  1481. "name": "Johannes Schmitt",
  1482. "email": "schmittjoh@gmail.com"
  1483. },
  1484. {
  1485. "name": "Marco Pivetta",
  1486. "email": "ocramius@gmail.com"
  1487. }
  1488. ],
  1489. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1490. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1491. "keywords": [
  1492. "mapper",
  1493. "object",
  1494. "odm",
  1495. "orm",
  1496. "persistence"
  1497. ],
  1498. "support": {
  1499. "issues": "https://github.com/doctrine/persistence/issues",
  1500. "source": "https://github.com/doctrine/persistence/tree/4.1.0"
  1501. },
  1502. "funding": [
  1503. {
  1504. "url": "https://www.doctrine-project.org/sponsorship.html",
  1505. "type": "custom"
  1506. },
  1507. {
  1508. "url": "https://www.patreon.com/phpdoctrine",
  1509. "type": "patreon"
  1510. },
  1511. {
  1512. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1513. "type": "tidelift"
  1514. }
  1515. ],
  1516. "time": "2025-08-21T16:00:31+00:00"
  1517. },
  1518. {
  1519. "name": "drupal/addtoany",
  1520. "version": "2.0.7",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://git.drupalcode.org/project/addtoany.git",
  1524. "reference": "2.0.7"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.7.zip",
  1529. "reference": "2.0.7",
  1530. "shasum": "33bfb5f425134705f8208f7c2f6ac23382a87bb6"
  1531. },
  1532. "require": {
  1533. "drupal/core": "^10.1 || ^11"
  1534. },
  1535. "type": "drupal-module",
  1536. "extra": {
  1537. "drupal": {
  1538. "version": "2.0.7",
  1539. "datestamp": "1731984029",
  1540. "security-coverage": {
  1541. "status": "covered",
  1542. "message": "Covered by Drupal's security advisory policy"
  1543. }
  1544. }
  1545. },
  1546. "notification-url": "https://packages.drupal.org/8/downloads",
  1547. "license": [
  1548. "GPL-2.0-or-later"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "AddToAny",
  1553. "homepage": "https://www.drupal.org/user/2640913"
  1554. },
  1555. {
  1556. "name": "micropat",
  1557. "homepage": "https://www.drupal.org/user/260224"
  1558. }
  1559. ],
  1560. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1561. "homepage": "https://www.drupal.org/project/addtoany",
  1562. "keywords": [
  1563. "Drupal"
  1564. ],
  1565. "support": {
  1566. "source": "https://git.drupalcode.org/project/addtoany",
  1567. "issues": "https://www.drupal.org/project/issues/addtoany"
  1568. }
  1569. },
  1570. {
  1571. "name": "drupal/admin_toolbar",
  1572. "version": "3.6.2",
  1573. "source": {
  1574. "type": "git",
  1575. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1576. "reference": "3.6.2"
  1577. },
  1578. "dist": {
  1579. "type": "zip",
  1580. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.2.zip",
  1581. "reference": "3.6.2",
  1582. "shasum": "0d25e3b7bcea28533ae5f2371a34d507603bfb66"
  1583. },
  1584. "require": {
  1585. "drupal/core": "^9.5 || ^10 || ^11"
  1586. },
  1587. "type": "drupal-module",
  1588. "extra": {
  1589. "drupal": {
  1590. "version": "3.6.2",
  1591. "datestamp": "1753826106",
  1592. "security-coverage": {
  1593. "status": "covered",
  1594. "message": "Covered by Drupal's security advisory policy"
  1595. }
  1596. }
  1597. },
  1598. "notification-url": "https://packages.drupal.org/8/downloads",
  1599. "license": [
  1600. "GPL-2.0-or-later"
  1601. ],
  1602. "authors": [
  1603. {
  1604. "name": "Wilfrid Roze (eme)",
  1605. "homepage": "https://www.drupal.org/u/eme",
  1606. "role": "Maintainer"
  1607. },
  1608. {
  1609. "name": "Romain Jarraud (romainj)",
  1610. "homepage": "https://www.drupal.org/u/romainj",
  1611. "role": "Maintainer"
  1612. },
  1613. {
  1614. "name": "Adrian Cid Almaguer (adriancid)",
  1615. "homepage": "https://www.drupal.org/u/adriancid",
  1616. "email": "adriancid@gmail.com",
  1617. "role": "Maintainer"
  1618. },
  1619. {
  1620. "name": "Mohamed Anis Taktak (matio89)",
  1621. "homepage": "https://www.drupal.org/u/matio89",
  1622. "role": "Maintainer"
  1623. },
  1624. {
  1625. "name": "fethi.krout",
  1626. "homepage": "https://www.drupal.org/user/3206765"
  1627. },
  1628. {
  1629. "name": "japerry",
  1630. "homepage": "https://www.drupal.org/user/45640"
  1631. },
  1632. {
  1633. "name": "matio89",
  1634. "homepage": "https://www.drupal.org/user/2320090"
  1635. },
  1636. {
  1637. "name": "musa.thomas",
  1638. "homepage": "https://www.drupal.org/user/1213824"
  1639. },
  1640. {
  1641. "name": "romainj",
  1642. "homepage": "https://www.drupal.org/user/370706"
  1643. }
  1644. ],
  1645. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1646. "homepage": "http://drupal.org/project/admin_toolbar",
  1647. "keywords": [
  1648. "Drupal",
  1649. "Toolbar"
  1650. ],
  1651. "support": {
  1652. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1653. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1654. }
  1655. },
  1656. {
  1657. "name": "drupal/adminimal_theme",
  1658. "version": "1.7.0",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1662. "reference": "8.x-1.7"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1667. "reference": "8.x-1.7",
  1668. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1669. },
  1670. "require": {
  1671. "drupal/core": "^9.3 || ^10",
  1672. "drupal/seven": "~1.0"
  1673. },
  1674. "type": "drupal-theme",
  1675. "extra": {
  1676. "drupal": {
  1677. "version": "8.x-1.7",
  1678. "datestamp": "1691504486",
  1679. "security-coverage": {
  1680. "status": "covered",
  1681. "message": "Covered by Drupal's security advisory policy"
  1682. }
  1683. }
  1684. },
  1685. "notification-url": "https://packages.drupal.org/8/downloads",
  1686. "license": [
  1687. "GPL-2.0+"
  1688. ],
  1689. "authors": [
  1690. {
  1691. "name": "ANDiTKO",
  1692. "homepage": "https://www.drupal.org/user/1428124"
  1693. },
  1694. {
  1695. "name": "andrey.troeglazov",
  1696. "homepage": "https://www.drupal.org/user/3145389"
  1697. },
  1698. {
  1699. "name": "realityloop",
  1700. "homepage": "https://www.drupal.org/user/139189"
  1701. },
  1702. {
  1703. "name": "rjjakes",
  1704. "homepage": "https://www.drupal.org/user/3457245"
  1705. }
  1706. ],
  1707. "description": "Drupal administration theme with modern minimalist design.",
  1708. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1711. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1712. }
  1713. },
  1714. {
  1715. "name": "drupal/audiofield",
  1716. "version": "1.13.0",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://git.drupalcode.org/project/audiofield.git",
  1720. "reference": "8.x-1.13"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1725. "reference": "8.x-1.13",
  1726. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1727. },
  1728. "require": {
  1729. "drupal/core": "^8 || ^9 || ^10"
  1730. },
  1731. "type": "drupal-module",
  1732. "extra": {
  1733. "drupal": {
  1734. "version": "8.x-1.13",
  1735. "datestamp": "1681143245",
  1736. "security-coverage": {
  1737. "status": "covered",
  1738. "message": "Covered by Drupal's security advisory policy"
  1739. }
  1740. },
  1741. "drush": {
  1742. "services": {
  1743. "drush.services.yml": "^9"
  1744. }
  1745. }
  1746. },
  1747. "notification-url": "https://packages.drupal.org/8/downloads",
  1748. "license": [
  1749. "GPL-2.0-or-later"
  1750. ],
  1751. "authors": [
  1752. {
  1753. "name": "Daniel Moberly",
  1754. "homepage": "https://www.drupal.org/u/danielmoberly",
  1755. "role": "Maintainer"
  1756. },
  1757. {
  1758. "name": "tamerzg",
  1759. "homepage": "https://www.drupal.org/user/464564"
  1760. }
  1761. ],
  1762. "description": "AudioField Module",
  1763. "homepage": "https://www.drupal.org/project/audiofield",
  1764. "support": {
  1765. "source": "https://git.drupalcode.org/project/audiofield",
  1766. "issues": "https://www.drupal.org/project/issues/audiofield"
  1767. }
  1768. },
  1769. {
  1770. "name": "drupal/autologout",
  1771. "version": "2.0.0",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://git.drupalcode.org/project/autologout.git",
  1775. "reference": "2.0.0"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.0.zip",
  1780. "reference": "2.0.0",
  1781. "shasum": "e9a1d4846cc323eef2eb54a0276023b1f0ff8bd2"
  1782. },
  1783. "require": {
  1784. "drupal/core": "^9.2 || ^10 || ^11",
  1785. "drupal/js_cookie": "^1.0"
  1786. },
  1787. "type": "drupal-module",
  1788. "extra": {
  1789. "drupal": {
  1790. "version": "2.0.0",
  1791. "datestamp": "1716413762",
  1792. "security-coverage": {
  1793. "status": "covered",
  1794. "message": "Covered by Drupal's security advisory policy"
  1795. }
  1796. }
  1797. },
  1798. "notification-url": "https://packages.drupal.org/8/downloads",
  1799. "license": [
  1800. "GPL-2.0-or-later"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "ajits",
  1805. "homepage": "https://www.drupal.org/user/981944"
  1806. },
  1807. {
  1808. "name": "AjK",
  1809. "homepage": "https://www.drupal.org/user/39030"
  1810. },
  1811. {
  1812. "name": "boshtian",
  1813. "homepage": "https://www.drupal.org/user/1773456"
  1814. },
  1815. {
  1816. "name": "dandrews",
  1817. "homepage": "https://www.drupal.org/user/2014490"
  1818. },
  1819. {
  1820. "name": "darksnow",
  1821. "homepage": "https://www.drupal.org/user/391915"
  1822. },
  1823. {
  1824. "name": "japerry",
  1825. "homepage": "https://www.drupal.org/user/45640"
  1826. },
  1827. {
  1828. "name": "johnennew",
  1829. "homepage": "https://www.drupal.org/user/1150042"
  1830. },
  1831. {
  1832. "name": "jrglasgow",
  1833. "homepage": "https://www.drupal.org/user/36590"
  1834. },
  1835. {
  1836. "name": "kmasood",
  1837. "homepage": "https://www.drupal.org/user/1262860"
  1838. },
  1839. {
  1840. "name": "levelos",
  1841. "homepage": "https://www.drupal.org/user/54135"
  1842. },
  1843. {
  1844. "name": "prabeen.giri",
  1845. "homepage": "https://www.drupal.org/user/913078"
  1846. },
  1847. {
  1848. "name": "scott_earnest",
  1849. "homepage": "https://www.drupal.org/user/416158"
  1850. },
  1851. {
  1852. "name": "str8",
  1853. "homepage": "https://www.drupal.org/user/2865063"
  1854. }
  1855. ],
  1856. "description": "Adds automated timed logout.",
  1857. "homepage": "http://drupal.org/project/autologout",
  1858. "support": {
  1859. "source": "https://git.drupalcode.org/project/autologout",
  1860. "issues": "https://www.drupal.org/project/issues/autologout"
  1861. }
  1862. },
  1863. {
  1864. "name": "drupal/basic",
  1865. "version": "3.0.0-alpha2",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://git.drupalcode.org/project/basic.git",
  1869. "reference": "3.0.0-alpha2"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  1874. "reference": "3.0.0-alpha2",
  1875. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  1876. },
  1877. "require": {
  1878. "drupal/core": "^9.3 || ^10"
  1879. },
  1880. "type": "drupal-theme",
  1881. "extra": {
  1882. "drupal": {
  1883. "version": "3.0.0-alpha2",
  1884. "datestamp": "1674980765",
  1885. "security-coverage": {
  1886. "status": "not-covered",
  1887. "message": "Alpha releases are not covered by Drupal security advisories."
  1888. }
  1889. }
  1890. },
  1891. "notification-url": "https://packages.drupal.org/8/downloads",
  1892. "license": [
  1893. "GPL-2.0+"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "Steve Krueger",
  1898. "homepage": "http://thejibe.com",
  1899. "email": "steve@thejibe.com",
  1900. "role": "Maintainer"
  1901. },
  1902. {
  1903. "name": "Joël Pittet",
  1904. "homepage": "https://www.drupal.org/u/joelpittet",
  1905. "email": "joel@pittet.ca",
  1906. "role": "Maintainer"
  1907. },
  1908. {
  1909. "name": "Leah Wagner",
  1910. "homepage": "http://thejibe.com",
  1911. "email": "leah@thejibe.com",
  1912. "role": "Maintainer"
  1913. },
  1914. {
  1915. "name": "Catherine Winters",
  1916. "homepage": "http://www.catherinewinters.com",
  1917. "email": "catherine@catherinewinters.com",
  1918. "role": "Maintainer"
  1919. },
  1920. {
  1921. "name": "Johannes Schmidt",
  1922. "homepage": "http://2tabs.com",
  1923. "email": "mail@2tabs.com",
  1924. "role": "Maintainer"
  1925. },
  1926. {
  1927. "name": "Chuck Kosman",
  1928. "homepage": "http://thejibe.com",
  1929. "email": "chuck@thejibe.com",
  1930. "role": "Maintainer"
  1931. },
  1932. {
  1933. "name": "SteveK",
  1934. "homepage": "https://www.drupal.org/user/111656"
  1935. }
  1936. ],
  1937. "description": "HTML5, SASS, Responsive grid starter theme.",
  1938. "homepage": "http://drupal.org/project/basic",
  1939. "support": {
  1940. "source": "http://cgit.drupalcode.org/basic",
  1941. "issues": "https://www.drupal.org/project/issues/basic",
  1942. "irc": "irc://irc.freenode.org/drupal-contribute"
  1943. }
  1944. },
  1945. {
  1946. "name": "drupal/bulkdelete",
  1947. "version": "dev-1.x",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1951. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1952. },
  1953. "require": {
  1954. "drupal/core": "^8.7.7 || ^9 || ^10"
  1955. },
  1956. "type": "drupal-module",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-1.x": "1.x-dev"
  1960. },
  1961. "drupal": {
  1962. "version": "8.x-1.x-dev",
  1963. "datestamp": "1655322426",
  1964. "security-coverage": {
  1965. "status": "not-covered",
  1966. "message": "Dev releases are not covered by Drupal security advisories."
  1967. }
  1968. }
  1969. },
  1970. "notification-url": "https://packages.drupal.org/8/downloads",
  1971. "license": [
  1972. "GPL-2.0-or-later"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "Kars-T",
  1977. "homepage": "https://www.drupal.org/user/224499"
  1978. },
  1979. {
  1980. "name": "Rahul Seth",
  1981. "homepage": "https://www.drupal.org/user/2694359"
  1982. },
  1983. {
  1984. "name": "adriancid",
  1985. "homepage": "https://www.drupal.org/user/1962106"
  1986. },
  1987. {
  1988. "name": "robertDouglass",
  1989. "homepage": "https://www.drupal.org/user/5449"
  1990. }
  1991. ],
  1992. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1993. "homepage": "https://www.drupal.org/project/bulkdelete",
  1994. "support": {
  1995. "source": "https://git.drupalcode.org/project/bulkdelete"
  1996. }
  1997. },
  1998. {
  1999. "name": "drupal/classy",
  2000. "version": "1.0.2",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://git.drupalcode.org/project/classy.git",
  2004. "reference": "1.0.2"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  2009. "reference": "1.0.2",
  2010. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  2011. },
  2012. "require": {
  2013. "drupal/core": "^9 || ^10",
  2014. "drupal/stable": "^2.0.0"
  2015. },
  2016. "type": "drupal-theme",
  2017. "extra": {
  2018. "drupal": {
  2019. "version": "1.0.2",
  2020. "datestamp": "1663949784",
  2021. "security-coverage": {
  2022. "status": "covered",
  2023. "message": "Covered by Drupal's security advisory policy"
  2024. }
  2025. }
  2026. },
  2027. "notification-url": "https://packages.drupal.org/8/downloads",
  2028. "license": [
  2029. "GPL-2.0-or-later"
  2030. ],
  2031. "authors": [
  2032. {
  2033. "name": "bnjmnm",
  2034. "homepage": "https://www.drupal.org/user/2369194"
  2035. },
  2036. {
  2037. "name": "davidhernandez",
  2038. "homepage": "https://www.drupal.org/user/274559"
  2039. },
  2040. {
  2041. "name": "lauriii",
  2042. "homepage": "https://www.drupal.org/user/1078742"
  2043. },
  2044. {
  2045. "name": "smustgrave",
  2046. "homepage": "https://www.drupal.org/user/3252890"
  2047. }
  2048. ],
  2049. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  2050. "homepage": "https://drupal.org/project/classy",
  2051. "support": {
  2052. "source": "https://git.drupalcode.org/project/classy",
  2053. "issues": "https://drupal.org/project/issues/classy"
  2054. }
  2055. },
  2056. {
  2057. "name": "drupal/color_field",
  2058. "version": "3.0.1",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://git.drupalcode.org/project/color_field.git",
  2062. "reference": "3.0.1"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2067. "reference": "3.0.1",
  2068. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2069. },
  2070. "require": {
  2071. "drupal/core": "^9 || ^10 || ^11"
  2072. },
  2073. "require-dev": {
  2074. "drupal/core-recommended": "^9 || ^10",
  2075. "drupal/feeds": "^3.0@beta",
  2076. "drupal/token": "~1.3"
  2077. },
  2078. "suggest": {
  2079. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2080. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2081. },
  2082. "type": "drupal-module",
  2083. "extra": {
  2084. "drupal": {
  2085. "version": "3.0.1",
  2086. "datestamp": "1717506868",
  2087. "security-coverage": {
  2088. "status": "covered",
  2089. "message": "Covered by Drupal's security advisory policy"
  2090. }
  2091. }
  2092. },
  2093. "notification-url": "https://packages.drupal.org/8/downloads",
  2094. "license": [
  2095. "GPL-2.0-or-later"
  2096. ],
  2097. "authors": [
  2098. {
  2099. "name": "targoo",
  2100. "homepage": "https://www.drupal.org/user/431910",
  2101. "role": "Maintainer"
  2102. },
  2103. {
  2104. "name": "Nick Wilde",
  2105. "homepage": "https://www.drupal.org/user/nickwilde",
  2106. "role": "Maintainer"
  2107. },
  2108. {
  2109. "name": "targoo",
  2110. "homepage": "https://www.drupal.org/user/431910"
  2111. }
  2112. ],
  2113. "description": "Provides a color field type to store the color value and opacity",
  2114. "homepage": "https://www.drupal.org/project/color_field",
  2115. "support": {
  2116. "source": "https://git.drupalcode.org/project/color_field",
  2117. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2118. }
  2119. },
  2120. {
  2121. "name": "drupal/composer_deploy",
  2122. "version": "1.8.0",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  2126. "reference": "8.x-1.8"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.8.zip",
  2131. "reference": "8.x-1.8",
  2132. "shasum": "10889488b0ecbdeed41f6d0c847030eddf0b56b3"
  2133. },
  2134. "require": {
  2135. "drupal/core": "^9 || ^10 || ^11",
  2136. "php": ">=8.1",
  2137. "webflo/drupal-finder": "^1.3",
  2138. "webmozart/path-util": "^2.1.0"
  2139. },
  2140. "type": "drupal-module",
  2141. "extra": {
  2142. "drupal": {
  2143. "version": "8.x-1.8",
  2144. "datestamp": "1728568570",
  2145. "security-coverage": {
  2146. "status": "covered",
  2147. "message": "Covered by Drupal's security advisory policy"
  2148. }
  2149. }
  2150. },
  2151. "notification-url": "https://packages.drupal.org/8/downloads",
  2152. "license": [
  2153. "GPL-2.0+"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "jhedstrom",
  2158. "homepage": "https://www.drupal.org/user/208732"
  2159. },
  2160. {
  2161. "name": "joelpittet",
  2162. "homepage": "https://www.drupal.org/user/160302"
  2163. },
  2164. {
  2165. "name": "nerdstein",
  2166. "homepage": "https://www.drupal.org/user/1557710"
  2167. },
  2168. {
  2169. "name": "webflo",
  2170. "homepage": "https://www.drupal.org/user/254778"
  2171. }
  2172. ],
  2173. "description": "Provide version number from composers lockfile.",
  2174. "homepage": "https://www.drupal.org/project/composer_deploy",
  2175. "support": {
  2176. "source": "https://git.drupalcode.org/project/composer_deploy"
  2177. }
  2178. },
  2179. {
  2180. "name": "drupal/config_devel",
  2181. "version": "1.10.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://git.drupalcode.org/project/config_devel.git",
  2185. "reference": "8.x-1.10"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2190. "reference": "8.x-1.10",
  2191. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2192. },
  2193. "require": {
  2194. "drupal/core": "^9.3 || ^10 || ^11"
  2195. },
  2196. "type": "drupal-module",
  2197. "extra": {
  2198. "drupal": {
  2199. "version": "8.x-1.10",
  2200. "datestamp": "1727184343",
  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+"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "alexpott",
  2214. "homepage": "https://www.drupal.org/user/157725"
  2215. },
  2216. {
  2217. "name": "benjy",
  2218. "homepage": "https://www.drupal.org/user/1852732"
  2219. },
  2220. {
  2221. "name": "chx",
  2222. "homepage": "https://www.drupal.org/user/9446"
  2223. },
  2224. {
  2225. "name": "joachim",
  2226. "homepage": "https://www.drupal.org/user/107701"
  2227. },
  2228. {
  2229. "name": "vijaycs85",
  2230. "homepage": "https://www.drupal.org/user/93488"
  2231. }
  2232. ],
  2233. "description": "Helps developers work with configuration.",
  2234. "homepage": "https://www.drupal.org/project/config_devel",
  2235. "support": {
  2236. "source": "https://git.drupalcode.org/project/config_devel"
  2237. }
  2238. },
  2239. {
  2240. "name": "drupal/config_filter",
  2241. "version": "2.7.0",
  2242. "source": {
  2243. "type": "git",
  2244. "url": "https://git.drupalcode.org/project/config_filter.git",
  2245. "reference": "8.x-2.7"
  2246. },
  2247. "dist": {
  2248. "type": "zip",
  2249. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2250. "reference": "8.x-2.7",
  2251. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2252. },
  2253. "require": {
  2254. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2255. },
  2256. "conflict": {
  2257. "drush/drush": "<10"
  2258. },
  2259. "suggest": {
  2260. "drupal/config_split": "Split site configuration for different environments."
  2261. },
  2262. "type": "drupal-module",
  2263. "extra": {
  2264. "drupal": {
  2265. "version": "8.x-2.7",
  2266. "datestamp": "1727472458",
  2267. "security-coverage": {
  2268. "status": "covered",
  2269. "message": "Covered by Drupal's security advisory policy"
  2270. }
  2271. }
  2272. },
  2273. "notification-url": "https://packages.drupal.org/8/downloads",
  2274. "license": [
  2275. "GPL-2.0-or-later"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "Fabian Bircher",
  2280. "homepage": "https://www.drupal.org/u/bircher",
  2281. "email": "opensource@fabianbircher.com",
  2282. "role": "Maintainer"
  2283. },
  2284. {
  2285. "name": "Nuvole Web",
  2286. "homepage": "http://nuvole.org",
  2287. "email": "info@nuvole.org",
  2288. "role": "Maintainer"
  2289. },
  2290. {
  2291. "name": "pescetti",
  2292. "homepage": "https://www.drupal.org/user/436244"
  2293. }
  2294. ],
  2295. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2296. "homepage": "https://www.drupal.org/project/config_filter",
  2297. "keywords": [
  2298. "Drupal",
  2299. "configuration",
  2300. "configuration management"
  2301. ],
  2302. "support": {
  2303. "source": "https://git.drupalcode.org/project/config_filter",
  2304. "issues": "https://www.drupal.org/project/issues/config_filter",
  2305. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2306. }
  2307. },
  2308. {
  2309. "name": "drupal/config_ignore",
  2310. "version": "3.3.0",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2314. "reference": "8.x-3.3"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2319. "reference": "8.x-3.3",
  2320. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2321. },
  2322. "require": {
  2323. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2324. },
  2325. "require-dev": {
  2326. "drupal/config_filter": "^1.8||^2.2",
  2327. "drush/drush": "^10 || ^11 || ^12"
  2328. },
  2329. "type": "drupal-module",
  2330. "extra": {
  2331. "drupal": {
  2332. "version": "8.x-3.3",
  2333. "datestamp": "1713299496",
  2334. "security-coverage": {
  2335. "status": "covered",
  2336. "message": "Covered by Drupal's security advisory policy"
  2337. }
  2338. }
  2339. },
  2340. "notification-url": "https://packages.drupal.org/8/downloads",
  2341. "license": [
  2342. "GPL-2.0-or-later"
  2343. ],
  2344. "authors": [
  2345. {
  2346. "name": "Tommy Lynge Jørgensen",
  2347. "homepage": "https://www.drupal.org/u/tlyngej",
  2348. "email": "tlyngej@gmail.com",
  2349. "role": "Maintainer"
  2350. },
  2351. {
  2352. "name": "Fabian Bircher",
  2353. "homepage": "https://www.drupal.org/u/bircher",
  2354. "role": "Maintainer"
  2355. },
  2356. {
  2357. "name": "tlyngej",
  2358. "homepage": "https://www.drupal.org/user/413139"
  2359. }
  2360. ],
  2361. "description": "Ignore certain configuration during import and export.",
  2362. "homepage": "http://drupal.org/project/config_ignore",
  2363. "support": {
  2364. "source": "https://git.drupalcode.org/project/config_ignore",
  2365. "issues": "http://drupal.org/project/config_ignore"
  2366. }
  2367. },
  2368. {
  2369. "name": "drupal/config_update",
  2370. "version": "2.0.0-alpha4",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://git.drupalcode.org/project/config_update.git",
  2374. "reference": "2.0.0-alpha4"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2379. "reference": "2.0.0-alpha4",
  2380. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2381. },
  2382. "require": {
  2383. "drupal/core": "^9.4 || ^10 || ^11"
  2384. },
  2385. "type": "drupal-module",
  2386. "extra": {
  2387. "drupal": {
  2388. "version": "2.0.0-alpha4",
  2389. "datestamp": "1724596931",
  2390. "security-coverage": {
  2391. "status": "not-covered",
  2392. "message": "Alpha releases are not covered by Drupal security advisories."
  2393. }
  2394. }
  2395. },
  2396. "notification-url": "https://packages.drupal.org/8/downloads",
  2397. "license": [
  2398. "GPL-2.0-or-later"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "codebymikey",
  2403. "homepage": "https://www.drupal.org/user/3573206"
  2404. },
  2405. {
  2406. "name": "pasqualle",
  2407. "homepage": "https://www.drupal.org/user/80733"
  2408. },
  2409. {
  2410. "name": "vishalkhode",
  2411. "homepage": "https://www.drupal.org/user/2439156"
  2412. }
  2413. ],
  2414. "description": "Provides basic revert and update functionality for other modules.",
  2415. "homepage": "https://www.drupal.org/project/config_update",
  2416. "support": {
  2417. "source": "https://git.drupalcode.org/project/config_update"
  2418. }
  2419. },
  2420. {
  2421. "name": "drupal/context",
  2422. "version": "5.0.0-rc1",
  2423. "source": {
  2424. "type": "git",
  2425. "url": "https://git.drupalcode.org/project/context.git",
  2426. "reference": "5.0.0-rc1"
  2427. },
  2428. "dist": {
  2429. "type": "zip",
  2430. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2431. "reference": "5.0.0-rc1",
  2432. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2433. },
  2434. "require": {
  2435. "drupal/core": "^9.3 || ^10"
  2436. },
  2437. "type": "drupal-module",
  2438. "extra": {
  2439. "drupal": {
  2440. "version": "5.0.0-rc1",
  2441. "datestamp": "1677054769",
  2442. "security-coverage": {
  2443. "status": "not-covered",
  2444. "message": "RC releases are not covered by Drupal security advisories."
  2445. }
  2446. }
  2447. },
  2448. "notification-url": "https://packages.drupal.org/8/downloads",
  2449. "license": [
  2450. "MIT"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "Christoffer Palm",
  2455. "homepage": "http://www.oddhill.se/",
  2456. "email": "christoffer.palm@oddhill.se",
  2457. "role": "Developer"
  2458. },
  2459. {
  2460. "name": "boshtian",
  2461. "homepage": "https://www.drupal.org/user/1773456"
  2462. },
  2463. {
  2464. "name": "colan",
  2465. "homepage": "https://www.drupal.org/user/58704"
  2466. },
  2467. {
  2468. "name": "emanaton",
  2469. "homepage": "https://www.drupal.org/user/120853"
  2470. },
  2471. {
  2472. "name": "febbraro",
  2473. "homepage": "https://www.drupal.org/user/43670"
  2474. },
  2475. {
  2476. "name": "fizk",
  2477. "homepage": "https://www.drupal.org/user/473174"
  2478. },
  2479. {
  2480. "name": "hass",
  2481. "homepage": "https://www.drupal.org/user/85918"
  2482. },
  2483. {
  2484. "name": "hefox",
  2485. "homepage": "https://www.drupal.org/user/426416"
  2486. },
  2487. {
  2488. "name": "jmiccolis",
  2489. "homepage": "https://www.drupal.org/user/31731"
  2490. },
  2491. {
  2492. "name": "Kristen Pol",
  2493. "homepage": "https://www.drupal.org/user/8389"
  2494. },
  2495. {
  2496. "name": "nedjo",
  2497. "homepage": "https://www.drupal.org/user/4481"
  2498. },
  2499. {
  2500. "name": "NormySan",
  2501. "homepage": "https://www.drupal.org/user/112352"
  2502. },
  2503. {
  2504. "name": "patricksettle",
  2505. "homepage": "https://www.drupal.org/user/26618"
  2506. },
  2507. {
  2508. "name": "paulocs",
  2509. "homepage": "https://www.drupal.org/user/3640109"
  2510. },
  2511. {
  2512. "name": "Steven Jones",
  2513. "homepage": "https://www.drupal.org/user/99644"
  2514. },
  2515. {
  2516. "name": "tekante",
  2517. "homepage": "https://www.drupal.org/user/640024"
  2518. },
  2519. {
  2520. "name": "yhahn",
  2521. "homepage": "https://www.drupal.org/user/264833"
  2522. }
  2523. ],
  2524. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2525. "homepage": "https://github.com/oddhill/context",
  2526. "keywords": [
  2527. "Drupal",
  2528. "block",
  2529. "conditions",
  2530. "context",
  2531. "visibility"
  2532. ],
  2533. "support": {
  2534. "source": "https://github.com/oddhill/context",
  2535. "issues": "https://github.com/oddhill/context/issues",
  2536. "docs": "https://github.com/oddhill/context"
  2537. }
  2538. },
  2539. {
  2540. "name": "drupal/core",
  2541. "version": "10.5.2",
  2542. "source": {
  2543. "type": "git",
  2544. "url": "https://github.com/drupal/core.git",
  2545. "reference": "f7daa3932311b473a3b480be94fa91883eb42391"
  2546. },
  2547. "dist": {
  2548. "type": "zip",
  2549. "url": "https://api.github.com/repos/drupal/core/zipball/f7daa3932311b473a3b480be94fa91883eb42391",
  2550. "reference": "f7daa3932311b473a3b480be94fa91883eb42391",
  2551. "shasum": ""
  2552. },
  2553. "require": {
  2554. "asm89/stack-cors": "^2.3",
  2555. "composer-runtime-api": "^2.1",
  2556. "composer/semver": "^3.3",
  2557. "doctrine/annotations": "^1.14",
  2558. "egulias/email-validator": "^3.2.1|^4.0",
  2559. "ext-date": "*",
  2560. "ext-dom": "*",
  2561. "ext-filter": "*",
  2562. "ext-gd": "*",
  2563. "ext-hash": "*",
  2564. "ext-json": "*",
  2565. "ext-pcre": "*",
  2566. "ext-pdo": "*",
  2567. "ext-session": "*",
  2568. "ext-simplexml": "*",
  2569. "ext-spl": "*",
  2570. "ext-tokenizer": "*",
  2571. "ext-xml": "*",
  2572. "guzzlehttp/guzzle": "^7.5",
  2573. "guzzlehttp/psr7": "^2.4.5",
  2574. "masterminds/html5": "^2.7",
  2575. "mck89/peast": "^1.14",
  2576. "pear/archive_tar": "^1.4.14",
  2577. "php": ">=8.1.0",
  2578. "psr/log": "^3.0",
  2579. "sebastian/diff": "^4",
  2580. "symfony/console": "^6.4",
  2581. "symfony/dependency-injection": "^6.4",
  2582. "symfony/event-dispatcher": "^6.4",
  2583. "symfony/filesystem": "^6.4",
  2584. "symfony/finder": "^6.4",
  2585. "symfony/http-foundation": "^6.4",
  2586. "symfony/http-kernel": "^6.4",
  2587. "symfony/mailer": "^6.4",
  2588. "symfony/mime": "^6.4",
  2589. "symfony/polyfill-iconv": "^1.26",
  2590. "symfony/process": "^6.4",
  2591. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2592. "symfony/routing": "^6.4",
  2593. "symfony/serializer": "^6.4",
  2594. "symfony/validator": "^6.4",
  2595. "symfony/yaml": "^6.4",
  2596. "twig/twig": "^3.15.0"
  2597. },
  2598. "conflict": {
  2599. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  2600. "drush/drush": "<12.4.3"
  2601. },
  2602. "replace": {
  2603. "drupal/core-annotation": "self.version",
  2604. "drupal/core-assertion": "self.version",
  2605. "drupal/core-class-finder": "self.version",
  2606. "drupal/core-datetime": "self.version",
  2607. "drupal/core-dependency-injection": "self.version",
  2608. "drupal/core-diff": "self.version",
  2609. "drupal/core-discovery": "self.version",
  2610. "drupal/core-event-dispatcher": "self.version",
  2611. "drupal/core-file-cache": "self.version",
  2612. "drupal/core-file-security": "self.version",
  2613. "drupal/core-filesystem": "self.version",
  2614. "drupal/core-front-matter": "self.version",
  2615. "drupal/core-gettext": "self.version",
  2616. "drupal/core-graph": "self.version",
  2617. "drupal/core-http-foundation": "self.version",
  2618. "drupal/core-php-storage": "self.version",
  2619. "drupal/core-plugin": "self.version",
  2620. "drupal/core-proxy-builder": "self.version",
  2621. "drupal/core-render": "self.version",
  2622. "drupal/core-serialization": "self.version",
  2623. "drupal/core-transliteration": "self.version",
  2624. "drupal/core-utility": "self.version",
  2625. "drupal/core-uuid": "self.version",
  2626. "drupal/core-version": "self.version"
  2627. },
  2628. "suggest": {
  2629. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2630. },
  2631. "type": "drupal-core",
  2632. "extra": {
  2633. "drupal-scaffold": {
  2634. "file-mapping": {
  2635. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2636. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2637. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2638. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2639. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2640. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2641. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2642. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2643. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2644. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2645. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2646. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2647. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2648. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2649. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  2650. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2651. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2652. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2653. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2654. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2655. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2656. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2657. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  2658. }
  2659. }
  2660. },
  2661. "autoload": {
  2662. "files": [
  2663. "includes/bootstrap.inc"
  2664. ],
  2665. "psr-4": {
  2666. "Drupal\\Core\\": "lib/Drupal/Core",
  2667. "Drupal\\Component\\": "lib/Drupal/Component"
  2668. },
  2669. "classmap": [
  2670. "lib/Drupal.php",
  2671. "lib/Drupal/Component/DependencyInjection/Container.php",
  2672. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2673. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2674. "lib/Drupal/Component/Utility/Timer.php",
  2675. "lib/Drupal/Component/Utility/Unicode.php",
  2676. "lib/Drupal/Core/Cache/Cache.php",
  2677. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2678. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2679. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2680. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2681. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2682. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2683. "lib/Drupal/Core/Database/Connection.php",
  2684. "lib/Drupal/Core/Database/Database.php",
  2685. "lib/Drupal/Core/Database/StatementInterface.php",
  2686. "lib/Drupal/Core/DependencyInjection/Container.php",
  2687. "lib/Drupal/Core/DrupalKernel.php",
  2688. "lib/Drupal/Core/DrupalKernelInterface.php",
  2689. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2690. "lib/Drupal/Core/Site/Settings.php",
  2691. "lib/Drupal/Component/Datetime/Time.php"
  2692. ]
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "GPL-2.0-or-later"
  2697. ],
  2698. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2699. "support": {
  2700. "source": "https://github.com/drupal/core/tree/10.5.2"
  2701. },
  2702. "time": "2025-08-07T10:36:31+00:00"
  2703. },
  2704. {
  2705. "name": "drupal/core-composer-scaffold",
  2706. "version": "10.3.6",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2710. "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/f58ab5c0d02d275c5aa226c4505b457e41b161cc",
  2715. "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc",
  2716. "shasum": ""
  2717. },
  2718. "require": {
  2719. "composer-plugin-api": "^2",
  2720. "php": ">=7.3.0"
  2721. },
  2722. "conflict": {
  2723. "drupal-composer/drupal-scaffold": "*"
  2724. },
  2725. "require-dev": {
  2726. "composer/composer": "^1.8@stable"
  2727. },
  2728. "type": "composer-plugin",
  2729. "extra": {
  2730. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2731. "branch-alias": {
  2732. "dev-master": "1.0.x-dev"
  2733. }
  2734. },
  2735. "autoload": {
  2736. "psr-4": {
  2737. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2738. }
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "GPL-2.0-or-later"
  2743. ],
  2744. "description": "A flexible Composer project scaffold builder.",
  2745. "homepage": "https://www.drupal.org/project/drupal",
  2746. "keywords": [
  2747. "drupal"
  2748. ],
  2749. "support": {
  2750. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.3.6"
  2751. },
  2752. "time": "2024-08-22T14:31:34+00:00"
  2753. },
  2754. {
  2755. "name": "drupal/core-project-message",
  2756. "version": "10.3.6",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://github.com/drupal/core-project-message.git",
  2760. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2765. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2766. "shasum": ""
  2767. },
  2768. "require": {
  2769. "composer-plugin-api": "^2",
  2770. "php": ">=7.3.0"
  2771. },
  2772. "type": "composer-plugin",
  2773. "extra": {
  2774. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2775. },
  2776. "autoload": {
  2777. "psr-4": {
  2778. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "GPL-2.0-or-later"
  2784. ],
  2785. "description": "Adds a message after Composer installation.",
  2786. "homepage": "https://www.drupal.org/project/drupal",
  2787. "keywords": [
  2788. "drupal"
  2789. ],
  2790. "support": {
  2791. "source": "https://github.com/drupal/core-project-message/tree/11.0.5"
  2792. },
  2793. "time": "2023-07-24T07:55:25+00:00"
  2794. },
  2795. {
  2796. "name": "drupal/core-recommended",
  2797. "version": "10.5.2",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/drupal/core-recommended.git",
  2801. "reference": "fde5c3c87e8dc8b28ece04f7503e3d602fd7d4ed"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/fde5c3c87e8dc8b28ece04f7503e3d602fd7d4ed",
  2806. "reference": "fde5c3c87e8dc8b28ece04f7503e3d602fd7d4ed",
  2807. "shasum": ""
  2808. },
  2809. "require": {
  2810. "asm89/stack-cors": "~v2.3.0",
  2811. "composer/semver": "~3.4.3",
  2812. "doctrine/annotations": "~1.14.4",
  2813. "doctrine/deprecations": "~1.1.5",
  2814. "doctrine/lexer": "~2.1.1",
  2815. "drupal/core": "10.5.2",
  2816. "egulias/email-validator": "~4.0.4",
  2817. "guzzlehttp/guzzle": "~7.9.3",
  2818. "guzzlehttp/promises": "~2.2.0",
  2819. "guzzlehttp/psr7": "~2.7.1",
  2820. "masterminds/html5": "~2.9.0",
  2821. "mck89/peast": "~v1.17.0",
  2822. "pear/archive_tar": "~1.5.0",
  2823. "pear/console_getopt": "~v1.4.3",
  2824. "pear/pear-core-minimal": "~v1.10.16",
  2825. "pear/pear_exception": "~v1.0.2",
  2826. "psr/cache": "~3.0.0",
  2827. "psr/container": "~2.0.2",
  2828. "psr/event-dispatcher": "~1.0.0",
  2829. "psr/http-client": "~1.0.3",
  2830. "psr/http-factory": "~1.1.0",
  2831. "psr/log": "~3.0.2",
  2832. "ralouphie/getallheaders": "~3.0.3",
  2833. "sebastian/diff": "~4.0.6",
  2834. "symfony/console": "~v6.4.21",
  2835. "symfony/dependency-injection": "~v6.4.20",
  2836. "symfony/deprecation-contracts": "~v3.5.1",
  2837. "symfony/error-handler": "~v6.4.20",
  2838. "symfony/event-dispatcher": "~v6.4.13",
  2839. "symfony/event-dispatcher-contracts": "~v3.5.1",
  2840. "symfony/filesystem": "~v6.4.13",
  2841. "symfony/finder": "~v6.4.17",
  2842. "symfony/http-foundation": "~v6.4.21",
  2843. "symfony/http-kernel": "~v6.4.21",
  2844. "symfony/mailer": "~v6.4.21",
  2845. "symfony/mime": "~v6.4.21",
  2846. "symfony/polyfill-ctype": "~v1.31.0",
  2847. "symfony/polyfill-iconv": "~v1.31.0",
  2848. "symfony/polyfill-intl-grapheme": "~v1.31.0",
  2849. "symfony/polyfill-intl-idn": "~v1.31.0",
  2850. "symfony/polyfill-intl-normalizer": "~v1.31.0",
  2851. "symfony/polyfill-mbstring": "~v1.31.0",
  2852. "symfony/polyfill-php83": "~v1.31.0",
  2853. "symfony/process": "~v6.4.20",
  2854. "symfony/psr-http-message-bridge": "~v6.4.13",
  2855. "symfony/routing": "~v6.4.18",
  2856. "symfony/serializer": "~v6.4.21",
  2857. "symfony/service-contracts": "~v3.5.1",
  2858. "symfony/string": "~v6.4.21",
  2859. "symfony/translation-contracts": "~v3.5.1",
  2860. "symfony/validator": "~v6.4.21",
  2861. "symfony/var-dumper": "~v6.4.21",
  2862. "symfony/var-exporter": "~v6.4.21",
  2863. "symfony/yaml": "~v6.4.21",
  2864. "twig/twig": "~v3.20.0"
  2865. },
  2866. "conflict": {
  2867. "webflo/drupal-core-strict": "*"
  2868. },
  2869. "type": "metapackage",
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "GPL-2.0-or-later"
  2873. ],
  2874. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2875. "support": {
  2876. "source": "https://github.com/drupal/core-recommended/tree/10.5.2"
  2877. },
  2878. "time": "2025-08-07T10:36:31+00:00"
  2879. },
  2880. {
  2881. "name": "drupal/ctools",
  2882. "version": "4.1.0",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://git.drupalcode.org/project/ctools.git",
  2886. "reference": "4.1.0"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2891. "reference": "4.1.0",
  2892. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2893. },
  2894. "require": {
  2895. "drupal/core": "^9.5 || ^10 || ^11"
  2896. },
  2897. "type": "drupal-module",
  2898. "extra": {
  2899. "drupal": {
  2900. "version": "4.1.0",
  2901. "datestamp": "1718144949",
  2902. "security-coverage": {
  2903. "status": "covered",
  2904. "message": "Covered by Drupal's security advisory policy"
  2905. }
  2906. },
  2907. "branch-alias": {
  2908. "dev-8.x-3.x": "3.x-dev"
  2909. }
  2910. },
  2911. "notification-url": "https://packages.drupal.org/8/downloads",
  2912. "license": [
  2913. "GPL-2.0-or-later"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Kris Vanderwater (EclipseGc)",
  2918. "homepage": "https://www.drupal.org/u/eclipsegc",
  2919. "role": "Maintainer"
  2920. },
  2921. {
  2922. "name": "Jakob Perry (japerry)",
  2923. "homepage": "https://www.drupal.org/u/japerry",
  2924. "role": "Maintainer"
  2925. },
  2926. {
  2927. "name": "Tim Plunkett (tim.plunkett)",
  2928. "homepage": "https://www.drupal.org/u/timplunkett",
  2929. "role": "Maintainer"
  2930. },
  2931. {
  2932. "name": "James Gilliland (neclimdul)",
  2933. "homepage": "https://www.drupal.org/u/neclimdul",
  2934. "role": "Maintainer"
  2935. },
  2936. {
  2937. "name": "Daniel Wehner (dawehner)",
  2938. "homepage": "https://www.drupal.org/u/dawehner",
  2939. "role": "Maintainer"
  2940. },
  2941. {
  2942. "name": "joelpittet",
  2943. "homepage": "https://www.drupal.org/user/160302"
  2944. },
  2945. {
  2946. "name": "merlinofchaos",
  2947. "homepage": "https://www.drupal.org/user/26979"
  2948. },
  2949. {
  2950. "name": "neclimdul",
  2951. "homepage": "https://www.drupal.org/user/48673"
  2952. },
  2953. {
  2954. "name": "sdboyer",
  2955. "homepage": "https://www.drupal.org/user/146719"
  2956. },
  2957. {
  2958. "name": "sun",
  2959. "homepage": "https://www.drupal.org/user/54136"
  2960. },
  2961. {
  2962. "name": "tim.plunkett",
  2963. "homepage": "https://www.drupal.org/user/241634"
  2964. }
  2965. ],
  2966. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2967. "homepage": "https://www.drupal.org/project/ctools",
  2968. "support": {
  2969. "source": "https://git.drupalcode.org/project/ctools",
  2970. "issues": "https://www.drupal.org/project/issues/ctools"
  2971. }
  2972. },
  2973. {
  2974. "name": "drupal/date_range_formatter",
  2975. "version": "4.0.2",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2979. "reference": "4.0.2"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2984. "reference": "4.0.2",
  2985. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2986. },
  2987. "require": {
  2988. "drupal/core": "^8 || ^9 || ^10"
  2989. },
  2990. "type": "drupal-module",
  2991. "extra": {
  2992. "drupal": {
  2993. "version": "4.0.2",
  2994. "datestamp": "1703156621",
  2995. "security-coverage": {
  2996. "status": "covered",
  2997. "message": "Covered by Drupal's security advisory policy"
  2998. }
  2999. }
  3000. },
  3001. "notification-url": "https://packages.drupal.org/8/downloads",
  3002. "license": [
  3003. "GPL-2.0-or-later"
  3004. ],
  3005. "authors": [
  3006. {
  3007. "name": "maximpodorov",
  3008. "homepage": "https://www.drupal.org/user/515310"
  3009. },
  3010. {
  3011. "name": "sudishth",
  3012. "homepage": "https://www.drupal.org/user/1440562"
  3013. }
  3014. ],
  3015. "description": "Formats date ranges.",
  3016. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3017. "support": {
  3018. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3019. }
  3020. },
  3021. {
  3022. "name": "drupal/devel",
  3023. "version": "5.3.1",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://git.drupalcode.org/project/devel.git",
  3027. "reference": "5.3.1"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://ftp.drupal.org/files/projects/devel-5.3.1.zip",
  3032. "reference": "5.3.1",
  3033. "shasum": "6a5f13bdf93dc5f7f194b6af847589ae15e37b63"
  3034. },
  3035. "require": {
  3036. "doctrine/common": "^2.7 || ^3.4",
  3037. "drupal/core": "^10.3 || ^11 || ^12",
  3038. "php": ">=8.1",
  3039. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3040. },
  3041. "conflict": {
  3042. "drupal/core": "<10.3",
  3043. "drush/drush": "<12.5.1",
  3044. "kint-php/kint": "<3"
  3045. },
  3046. "require-dev": {
  3047. "drush/drush": "^13",
  3048. "firephp/firephp-core": "^0.5.3",
  3049. "kint-php/kint": "^5.1"
  3050. },
  3051. "suggest": {
  3052. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3053. },
  3054. "type": "drupal-module",
  3055. "extra": {
  3056. "drupal": {
  3057. "version": "5.3.1",
  3058. "datestamp": "1723258446",
  3059. "security-coverage": {
  3060. "status": "covered",
  3061. "message": "Covered by Drupal's security advisory policy"
  3062. }
  3063. }
  3064. },
  3065. "notification-url": "https://packages.drupal.org/8/downloads",
  3066. "license": [
  3067. "GPL-2.0-or-later"
  3068. ],
  3069. "authors": [
  3070. {
  3071. "name": "moshe weitzman",
  3072. "homepage": "https://www.drupal.org/user/23"
  3073. }
  3074. ],
  3075. "description": "Various blocks, pages, and functions for developers.",
  3076. "homepage": "https://www.drupal.org/project/devel",
  3077. "support": {
  3078. "source": "https://gitlab.com/drupalspoons/devel",
  3079. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3080. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3081. }
  3082. },
  3083. {
  3084. "name": "drupal/domain",
  3085. "version": "2.0.0-beta1",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://git.drupalcode.org/project/domain.git",
  3089. "reference": "2.0.0-beta1"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3094. "reference": "2.0.0-beta1",
  3095. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3096. },
  3097. "require": {
  3098. "drupal/core": "^9 || ^10"
  3099. },
  3100. "require-dev": {
  3101. "drupal/domain_access": "*",
  3102. "drupal/domain_config": "*"
  3103. },
  3104. "type": "drupal-module",
  3105. "extra": {
  3106. "drupal": {
  3107. "version": "2.0.0-beta1",
  3108. "datestamp": "1686067462",
  3109. "security-coverage": {
  3110. "status": "not-covered",
  3111. "message": "Beta releases are not covered by Drupal security advisories."
  3112. }
  3113. }
  3114. },
  3115. "notification-url": "https://packages.drupal.org/8/downloads",
  3116. "license": [
  3117. "GPL-2.0-or-later"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "agentrickard",
  3122. "homepage": "https://www.drupal.org/user/20975"
  3123. },
  3124. {
  3125. "name": "nonsie",
  3126. "homepage": "https://www.drupal.org/user/29899"
  3127. },
  3128. {
  3129. "name": "webflo",
  3130. "homepage": "https://www.drupal.org/user/254778"
  3131. }
  3132. ],
  3133. "description": "Creates domain records within a Drupal installation.",
  3134. "homepage": "https://www.drupal.org/project/domain",
  3135. "support": {
  3136. "source": "https://git.drupalcode.org/project/domain"
  3137. }
  3138. },
  3139. {
  3140. "name": "drupal/domain_access",
  3141. "version": "2.0.0-beta1",
  3142. "require": {
  3143. "drupal/core": "^9 || ^10",
  3144. "drupal/domain": "*"
  3145. },
  3146. "type": "metapackage",
  3147. "extra": {
  3148. "drupal": {
  3149. "version": "2.0.0-beta1",
  3150. "datestamp": "1686067462",
  3151. "security-coverage": {
  3152. "status": "not-covered",
  3153. "message": "Beta releases are not covered by Drupal security advisories."
  3154. }
  3155. }
  3156. },
  3157. "notification-url": "https://packages.drupal.org/8/downloads",
  3158. "license": [
  3159. "GPL-2.0-or-later"
  3160. ],
  3161. "authors": [
  3162. {
  3163. "name": "agentrickard",
  3164. "homepage": "https://www.drupal.org/user/20975"
  3165. },
  3166. {
  3167. "name": "nonsie",
  3168. "homepage": "https://www.drupal.org/user/29899"
  3169. },
  3170. {
  3171. "name": "webflo",
  3172. "homepage": "https://www.drupal.org/user/254778"
  3173. }
  3174. ],
  3175. "description": "Domain-based access control for content.",
  3176. "homepage": "https://www.drupal.org/project/domain",
  3177. "support": {
  3178. "source": "https://git.drupalcode.org/project/domain"
  3179. }
  3180. },
  3181. {
  3182. "name": "drupal/domain_config",
  3183. "version": "2.0.0-beta1",
  3184. "require": {
  3185. "drupal/core": "^9 || ^10",
  3186. "drupal/domain": "*"
  3187. },
  3188. "type": "metapackage",
  3189. "extra": {
  3190. "drupal": {
  3191. "version": "2.0.0-beta1",
  3192. "datestamp": "1686067462",
  3193. "security-coverage": {
  3194. "status": "not-covered",
  3195. "message": "Beta releases are not covered by Drupal security advisories."
  3196. }
  3197. }
  3198. },
  3199. "notification-url": "https://packages.drupal.org/8/downloads",
  3200. "license": [
  3201. "GPL-2.0-or-later"
  3202. ],
  3203. "authors": [
  3204. {
  3205. "name": "agentrickard",
  3206. "homepage": "https://www.drupal.org/user/20975"
  3207. },
  3208. {
  3209. "name": "nonsie",
  3210. "homepage": "https://www.drupal.org/user/29899"
  3211. },
  3212. {
  3213. "name": "webflo",
  3214. "homepage": "https://www.drupal.org/user/254778"
  3215. }
  3216. ],
  3217. "description": "Allows domain specific configuration.",
  3218. "homepage": "https://www.drupal.org/project/domain",
  3219. "support": {
  3220. "source": "https://git.drupalcode.org/project/domain"
  3221. }
  3222. },
  3223. {
  3224. "name": "drupal/domain_menu_access",
  3225. "version": "2.0.0",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3229. "reference": "2.0.0"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-2.0.0.zip",
  3234. "reference": "2.0.0",
  3235. "shasum": "b362fbadb1b45cd6c3eb6af8275ad94dc4257045"
  3236. },
  3237. "require": {
  3238. "drupal/core": "^9 || ^10 || ^11",
  3239. "drupal/domain": "^1.0 || ^2.0",
  3240. "drupal/domain_access": "*"
  3241. },
  3242. "require-dev": {
  3243. "drupal/menu_block": "^1.0",
  3244. "phpstan/phpstan-deprecation-rules": "^1.1",
  3245. "phpstan/phpstan-strict-rules": "^1.5"
  3246. },
  3247. "suggest": {
  3248. "drupal/menu_block": "Provides configurable blocks of menu links and is needed to allow to install the submodule domain_menu_access_menu_block"
  3249. },
  3250. "type": "drupal-module",
  3251. "extra": {
  3252. "drupal": {
  3253. "version": "2.0.0",
  3254. "datestamp": "1713375017",
  3255. "security-coverage": {
  3256. "status": "covered",
  3257. "message": "Covered by Drupal's security advisory policy"
  3258. }
  3259. }
  3260. },
  3261. "notification-url": "https://packages.drupal.org/8/downloads",
  3262. "license": [
  3263. "GPL-2.0-or-later"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "maciej.zgadzaj",
  3268. "homepage": "https://www.drupal.org/u/maciejzgadzaj",
  3269. "role": "Maintainer"
  3270. },
  3271. {
  3272. "name": "Oleksandr Dekhteruk (pifagor)",
  3273. "homepage": "https://www.drupal.org/u/pifagor",
  3274. "role": "Co-maintainer"
  3275. },
  3276. {
  3277. "name": "Sebastien MALOT (Sebastien M.)",
  3278. "homepage": "https://www.drupal.org/u/sebastien-m",
  3279. "role": "Co-maintainer"
  3280. },
  3281. {
  3282. "name": "Tim Diels (tim-diels)",
  3283. "homepage": "https://www.drupal.org/u/tim-diels",
  3284. "role": "Co-maintainer"
  3285. }
  3286. ],
  3287. "description": "Domain-based access control for menu link.",
  3288. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3289. "support": {
  3290. "source": "https://git.drupalcode.org/project/domain_menu_access",
  3291. "issues": "https://drupal.org/project/issues/domain_menu_access"
  3292. }
  3293. },
  3294. {
  3295. "name": "drupal/domain_site_settings",
  3296. "version": "1.6.0",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3300. "reference": "8.x-1.6"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3305. "reference": "8.x-1.6",
  3306. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3307. },
  3308. "require": {
  3309. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3310. "drupal/domain": "^1.0 || ^2.0",
  3311. "drupal/domain_config": "*"
  3312. },
  3313. "type": "drupal-module",
  3314. "extra": {
  3315. "drupal": {
  3316. "version": "8.x-1.6",
  3317. "datestamp": "1726238712",
  3318. "security-coverage": {
  3319. "status": "covered",
  3320. "message": "Covered by Drupal's security advisory policy"
  3321. }
  3322. }
  3323. },
  3324. "notification-url": "https://packages.drupal.org/8/downloads",
  3325. "license": [
  3326. "GPL-2.0+"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "aloknarwaria",
  3331. "homepage": "https://www.drupal.org/user/906640"
  3332. },
  3333. {
  3334. "name": "jeroent",
  3335. "homepage": "https://www.drupal.org/user/2228934"
  3336. },
  3337. {
  3338. "name": "malaynayak",
  3339. "homepage": "https://www.drupal.org/user/3529755"
  3340. }
  3341. ],
  3342. "description": "Basic Site Setting for Domains.",
  3343. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3344. "keywords": [
  3345. "Drupal"
  3346. ],
  3347. "support": {
  3348. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3349. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3350. }
  3351. },
  3352. {
  3353. "name": "drupal/email_registration",
  3354. "version": "1.4.0",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://git.drupalcode.org/project/email_registration.git",
  3358. "reference": "8.x-1.4"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3363. "reference": "8.x-1.4",
  3364. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3365. },
  3366. "require": {
  3367. "drupal/core": "^9.1 || ^10"
  3368. },
  3369. "conflict": {
  3370. "drupal/commerce": "<2.12"
  3371. },
  3372. "require-dev": {
  3373. "drupal/commerce": "^2.0",
  3374. "drupal/token": "*"
  3375. },
  3376. "type": "drupal-module",
  3377. "extra": {
  3378. "drupal": {
  3379. "version": "8.x-1.4",
  3380. "datestamp": "1700548925",
  3381. "security-coverage": {
  3382. "status": "covered",
  3383. "message": "Covered by Drupal's security advisory policy"
  3384. }
  3385. }
  3386. },
  3387. "notification-url": "https://packages.drupal.org/8/downloads",
  3388. "license": [
  3389. "GPL-2.0-or-later"
  3390. ],
  3391. "authors": [
  3392. {
  3393. "name": "Greg Knaddison (greggles)",
  3394. "homepage": "https://www.drupal.org/u/greggles",
  3395. "role": "Maintainer"
  3396. },
  3397. {
  3398. "name": "Andrey Postnikov (andypost)",
  3399. "homepage": "https://www.drupal.org/u/andypost",
  3400. "role": "Maintainer"
  3401. },
  3402. {
  3403. "name": "Chris Herberte",
  3404. "homepage": "https://www.drupal.org/u/chris-herberte",
  3405. "role": "Maintainer"
  3406. },
  3407. {
  3408. "name": "Moshe Weitzman (moshe weitzman)",
  3409. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3410. "role": "Maintainer"
  3411. },
  3412. {
  3413. "name": "Grevil",
  3414. "homepage": "https://www.drupal.org/user/3668491"
  3415. },
  3416. {
  3417. "name": "moshe weitzman",
  3418. "homepage": "https://www.drupal.org/user/23"
  3419. }
  3420. ],
  3421. "description": "Allows users to register with an email address as their username.",
  3422. "homepage": "https://www.drupal.org/project/email_registration",
  3423. "support": {
  3424. "source": "https://git.drupalcode.org/project/email_registration",
  3425. "issues": "http://drupal.org/project/issues/email_registration"
  3426. }
  3427. },
  3428. {
  3429. "name": "drupal/entity",
  3430. "version": "1.5.0",
  3431. "source": {
  3432. "type": "git",
  3433. "url": "https://git.drupalcode.org/project/entity.git",
  3434. "reference": "8.x-1.5"
  3435. },
  3436. "dist": {
  3437. "type": "zip",
  3438. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.5.zip",
  3439. "reference": "8.x-1.5",
  3440. "shasum": "86c0b75c173144aaedde3e3258dc0d3ce11d1a22"
  3441. },
  3442. "require": {
  3443. "drupal/core": "^10.1 || ^11"
  3444. },
  3445. "type": "drupal-module",
  3446. "extra": {
  3447. "drupal": {
  3448. "version": "8.x-1.5",
  3449. "datestamp": "1723380062",
  3450. "security-coverage": {
  3451. "status": "covered",
  3452. "message": "Covered by Drupal's security advisory policy"
  3453. }
  3454. }
  3455. },
  3456. "notification-url": "https://packages.drupal.org/8/downloads",
  3457. "license": [
  3458. "GPL-2.0-or-later"
  3459. ],
  3460. "authors": [
  3461. {
  3462. "name": "berdir",
  3463. "homepage": "https://www.drupal.org/user/214652"
  3464. },
  3465. {
  3466. "name": "bojanz",
  3467. "homepage": "https://www.drupal.org/user/86106"
  3468. },
  3469. {
  3470. "name": "dawehner",
  3471. "homepage": "https://www.drupal.org/user/99340"
  3472. },
  3473. {
  3474. "name": "dixon_",
  3475. "homepage": "https://www.drupal.org/user/239911"
  3476. },
  3477. {
  3478. "name": "fago",
  3479. "homepage": "https://www.drupal.org/user/16747"
  3480. },
  3481. {
  3482. "name": "mglaman",
  3483. "homepage": "https://www.drupal.org/user/2416470"
  3484. },
  3485. {
  3486. "name": "TR",
  3487. "homepage": "https://www.drupal.org/user/202830"
  3488. }
  3489. ],
  3490. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3491. "homepage": "https://www.drupal.org/project/entity",
  3492. "support": {
  3493. "source": "https://git.drupalcode.org/project/entity",
  3494. "issues": "https://www.drupal.org/project/issues/entity"
  3495. }
  3496. },
  3497. {
  3498. "name": "drupal/field_group",
  3499. "version": "3.6.0",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://git.drupalcode.org/project/field_group.git",
  3503. "reference": "8.x-3.6"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3508. "reference": "8.x-3.6",
  3509. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3510. },
  3511. "require": {
  3512. "drupal/core": "^9.2 || ^10 || ^11"
  3513. },
  3514. "require-dev": {
  3515. "drupal/jquery_ui_accordion": "*"
  3516. },
  3517. "type": "drupal-module",
  3518. "extra": {
  3519. "drupal": {
  3520. "version": "8.x-3.6",
  3521. "datestamp": "1722672510",
  3522. "security-coverage": {
  3523. "status": "covered",
  3524. "message": "Covered by Drupal's security advisory policy"
  3525. }
  3526. }
  3527. },
  3528. "notification-url": "https://packages.drupal.org/8/downloads",
  3529. "license": [
  3530. "GPL-2.0-or-later"
  3531. ],
  3532. "authors": [
  3533. {
  3534. "name": "anybody",
  3535. "homepage": "https://www.drupal.org/user/291091"
  3536. },
  3537. {
  3538. "name": "grevil",
  3539. "homepage": "https://www.drupal.org/user/3668491"
  3540. },
  3541. {
  3542. "name": "hydra",
  3543. "homepage": "https://www.drupal.org/user/647364"
  3544. },
  3545. {
  3546. "name": "joevagyok",
  3547. "homepage": "https://www.drupal.org/user/2876343"
  3548. },
  3549. {
  3550. "name": "jyve",
  3551. "homepage": "https://www.drupal.org/user/591438"
  3552. },
  3553. {
  3554. "name": "nils.destoop",
  3555. "homepage": "https://www.drupal.org/user/361625"
  3556. },
  3557. {
  3558. "name": "Stalski",
  3559. "homepage": "https://www.drupal.org/user/322618"
  3560. },
  3561. {
  3562. "name": "swentel",
  3563. "homepage": "https://www.drupal.org/user/107403"
  3564. }
  3565. ],
  3566. "description": "Provides the field_group module.",
  3567. "homepage": "https://www.drupal.org/project/field_group",
  3568. "support": {
  3569. "source": "https://git.drupalcode.org/project/field_group",
  3570. "issues": "https://www.drupal.org/project/issues/field_group"
  3571. }
  3572. },
  3573. {
  3574. "name": "drupal/filefield_sources",
  3575. "version": "dev-2.0.x",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3579. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3580. },
  3581. "require": {
  3582. "drupal/core": "^9.2.0 | ^10"
  3583. },
  3584. "require-dev": {
  3585. "drupal/imce": "^3.0"
  3586. },
  3587. "type": "drupal-module",
  3588. "extra": {
  3589. "branch-alias": {
  3590. "dev-2.0.x": "2.0.x-dev"
  3591. },
  3592. "drupal": {
  3593. "version": "2.0.x-dev",
  3594. "datestamp": "1714083250",
  3595. "security-coverage": {
  3596. "status": "not-covered",
  3597. "message": "Dev releases are not covered by Drupal security advisories."
  3598. }
  3599. }
  3600. },
  3601. "notification-url": "https://packages.drupal.org/8/downloads",
  3602. "license": [
  3603. "GPL-2.0-or-later"
  3604. ],
  3605. "authors": [
  3606. {
  3607. "name": "Nate Lampton (quicksketch)",
  3608. "homepage": "https://www.drupal.org/u/quicksketch",
  3609. "role": "Maintainer"
  3610. },
  3611. {
  3612. "name": "Andrey Khromyshev (profak)",
  3613. "homepage": "https://www.drupal.org/u/profak",
  3614. "role": "Maintainer"
  3615. },
  3616. {
  3617. "name": "David Valdez (gnuget)",
  3618. "homepage": "https://www.drupal.org/u/gnuget",
  3619. "role": "Maintainer"
  3620. },
  3621. {
  3622. "name": "quicksketch",
  3623. "homepage": "https://www.drupal.org/user/35821"
  3624. }
  3625. ],
  3626. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3627. "homepage": "https://www.drupal.org/project/filefield_sources",
  3628. "support": {
  3629. "source": "https://git.drupalcode.org/project/filefield_sources",
  3630. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3631. "irc": "irc://irc.freenode.org/drupal-contribute"
  3632. }
  3633. },
  3634. {
  3635. "name": "drupal/filter_perms",
  3636. "version": "2.0.1",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3640. "reference": "2.0.1"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3645. "reference": "2.0.1",
  3646. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3647. },
  3648. "require": {
  3649. "drupal/core": "^9.0 || ^10.0 || ^11"
  3650. },
  3651. "type": "drupal-module",
  3652. "extra": {
  3653. "drupal": {
  3654. "version": "2.0.1",
  3655. "datestamp": "1722444219",
  3656. "security-coverage": {
  3657. "status": "covered",
  3658. "message": "Covered by Drupal's security advisory policy"
  3659. }
  3660. }
  3661. },
  3662. "notification-url": "https://packages.drupal.org/8/downloads",
  3663. "license": [
  3664. "GPL-2.0+"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "cYu",
  3669. "homepage": "https://www.drupal.org/user/202205"
  3670. },
  3671. {
  3672. "name": "deekayen",
  3673. "homepage": "https://www.drupal.org/user/972"
  3674. },
  3675. {
  3676. "name": "ivavictoria",
  3677. "homepage": "https://www.drupal.org/user/3061533"
  3678. },
  3679. {
  3680. "name": "justcaldwell",
  3681. "homepage": "https://www.drupal.org/user/290069"
  3682. },
  3683. {
  3684. "name": "mgbellaire",
  3685. "homepage": "https://www.drupal.org/user/1831932"
  3686. },
  3687. {
  3688. "name": "willzyx",
  3689. "homepage": "https://www.drupal.org/user/1043862"
  3690. }
  3691. ],
  3692. "description": "Provides role and module filters to simplify the user permissions page.",
  3693. "homepage": "https://www.drupal.org/project/filter_perms",
  3694. "support": {
  3695. "source": "http://cgit.drupalcode.org/filter_perms",
  3696. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3697. }
  3698. },
  3699. {
  3700. "name": "drupal/honeypot",
  3701. "version": "2.2.0",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://git.drupalcode.org/project/honeypot.git",
  3705. "reference": "2.2.0"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.0.zip",
  3710. "reference": "2.2.0",
  3711. "shasum": "56397c3779ebac1526cce9ecd39385017ee9a837"
  3712. },
  3713. "require": {
  3714. "drupal/core": "^10.3 || ^11"
  3715. },
  3716. "require-dev": {
  3717. "drupal/rules": "^4.0"
  3718. },
  3719. "type": "drupal-module",
  3720. "extra": {
  3721. "drupal": {
  3722. "version": "2.2.0",
  3723. "datestamp": "1723761042",
  3724. "security-coverage": {
  3725. "status": "covered",
  3726. "message": "Covered by Drupal's security advisory policy"
  3727. }
  3728. }
  3729. },
  3730. "notification-url": "https://packages.drupal.org/8/downloads",
  3731. "license": [
  3732. "GPL-2.0-or-later"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Jeff Geerling",
  3737. "homepage": "https://www.drupal.org/user/389011",
  3738. "email": "geerlingguy@mac.com"
  3739. },
  3740. {
  3741. "name": "Manuel Garcia",
  3742. "homepage": "https://www.drupal.org/user/213194"
  3743. },
  3744. {
  3745. "name": "tr",
  3746. "homepage": "https://www.drupal.org/user/202830"
  3747. },
  3748. {
  3749. "name": "vijaycs85",
  3750. "homepage": "https://www.drupal.org/user/93488"
  3751. }
  3752. ],
  3753. "description": "Mitigates spam form submissions using the honeypot method.",
  3754. "homepage": "https://www.drupal.org/project/honeypot",
  3755. "keywords": [
  3756. "deterrent",
  3757. "form",
  3758. "honeypot",
  3759. "honeytrap",
  3760. "php",
  3761. "spam"
  3762. ],
  3763. "support": {
  3764. "source": "https://git.drupalcode.org/project/honeypot",
  3765. "issues": "https://www.drupal.org/project/issues/honeypot"
  3766. }
  3767. },
  3768. {
  3769. "name": "drupal/jquery_ui",
  3770. "version": "1.7.0",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3774. "reference": "8.x-1.7"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3779. "reference": "8.x-1.7",
  3780. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3781. },
  3782. "require": {
  3783. "drupal/core": "^9.2 || ^10 || ^11"
  3784. },
  3785. "type": "drupal-module",
  3786. "extra": {
  3787. "drupal": {
  3788. "version": "8.x-1.7",
  3789. "datestamp": "1717002098",
  3790. "security-coverage": {
  3791. "status": "covered",
  3792. "message": "Covered by Drupal's security advisory policy"
  3793. }
  3794. }
  3795. },
  3796. "notification-url": "https://packages.drupal.org/8/downloads",
  3797. "license": [
  3798. "GPL-2.0-or-later"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "bnjmnm",
  3803. "homepage": "https://www.drupal.org/user/2369194"
  3804. },
  3805. {
  3806. "name": "jjeff",
  3807. "homepage": "https://www.drupal.org/user/17190"
  3808. },
  3809. {
  3810. "name": "lauriii",
  3811. "homepage": "https://www.drupal.org/user/1078742"
  3812. },
  3813. {
  3814. "name": "litwol",
  3815. "homepage": "https://www.drupal.org/user/78134"
  3816. },
  3817. {
  3818. "name": "mfb",
  3819. "homepage": "https://www.drupal.org/user/12302"
  3820. },
  3821. {
  3822. "name": "mfer",
  3823. "homepage": "https://www.drupal.org/user/25701"
  3824. },
  3825. {
  3826. "name": "mikelutz",
  3827. "homepage": "https://www.drupal.org/user/2972409"
  3828. },
  3829. {
  3830. "name": "nod_",
  3831. "homepage": "https://www.drupal.org/user/598310"
  3832. },
  3833. {
  3834. "name": "phenaproxima",
  3835. "homepage": "https://www.drupal.org/user/205645"
  3836. },
  3837. {
  3838. "name": "RobLoach",
  3839. "homepage": "https://www.drupal.org/user/61114"
  3840. },
  3841. {
  3842. "name": "sun",
  3843. "homepage": "https://www.drupal.org/user/54136"
  3844. },
  3845. {
  3846. "name": "webchick",
  3847. "homepage": "https://www.drupal.org/user/24967"
  3848. },
  3849. {
  3850. "name": "Wim Leers",
  3851. "homepage": "https://www.drupal.org/user/99777"
  3852. },
  3853. {
  3854. "name": "zrpnr",
  3855. "homepage": "https://www.drupal.org/user/1448368"
  3856. }
  3857. ],
  3858. "description": "Provides jQuery UI library.",
  3859. "homepage": "https://www.drupal.org/project/jquery_ui",
  3860. "support": {
  3861. "source": "https://git.drupalcode.org/project/jquery_ui"
  3862. }
  3863. },
  3864. {
  3865. "name": "drupal/jquery_ui_draggable",
  3866. "version": "2.1.0",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3870. "reference": "2.1.0"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3875. "reference": "2.1.0",
  3876. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3877. },
  3878. "require": {
  3879. "drupal/core": "^9.2 || ^10 || ^11",
  3880. "drupal/jquery_ui": "^1.7"
  3881. },
  3882. "type": "drupal-module",
  3883. "extra": {
  3884. "drupal": {
  3885. "version": "2.1.0",
  3886. "datestamp": "1717015492",
  3887. "security-coverage": {
  3888. "status": "covered",
  3889. "message": "Covered by Drupal's security advisory policy"
  3890. }
  3891. }
  3892. },
  3893. "notification-url": "https://packages.drupal.org/8/downloads",
  3894. "license": [
  3895. "GPL-2.0-or-later"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "bnjmnm",
  3900. "homepage": "https://www.drupal.org/user/2369194"
  3901. },
  3902. {
  3903. "name": "lauriii",
  3904. "homepage": "https://www.drupal.org/user/1078742"
  3905. },
  3906. {
  3907. "name": "zrpnr",
  3908. "homepage": "https://www.drupal.org/user/1448368"
  3909. }
  3910. ],
  3911. "description": "Provides jQuery UI Draggable library.",
  3912. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3913. "support": {
  3914. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3915. }
  3916. },
  3917. {
  3918. "name": "drupal/jquery_ui_droppable",
  3919. "version": "2.1.0",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3923. "reference": "2.1.0"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3928. "reference": "2.1.0",
  3929. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3930. },
  3931. "require": {
  3932. "drupal/core": "^9.2 || ^10 || ^11",
  3933. "drupal/jquery_ui": "^1.7",
  3934. "drupal/jquery_ui_draggable": "^2.1"
  3935. },
  3936. "type": "drupal-module",
  3937. "extra": {
  3938. "drupal": {
  3939. "version": "2.1.0",
  3940. "datestamp": "1717031391",
  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": "bnjmnm",
  3954. "homepage": "https://www.drupal.org/user/2369194"
  3955. },
  3956. {
  3957. "name": "lauriii",
  3958. "homepage": "https://www.drupal.org/user/1078742"
  3959. },
  3960. {
  3961. "name": "zrpnr",
  3962. "homepage": "https://www.drupal.org/user/1448368"
  3963. }
  3964. ],
  3965. "description": "Provides jQuery UI Droppable library.",
  3966. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3967. "support": {
  3968. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3969. }
  3970. },
  3971. {
  3972. "name": "drupal/jquery_ui_sortable",
  3973. "version": "2.0.1",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3977. "reference": "2.0.1"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  3982. "reference": "2.0.1",
  3983. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  3984. },
  3985. "require": {
  3986. "drupal/core": "^9.2 || ^10",
  3987. "drupal/jquery_ui": "^1.5"
  3988. },
  3989. "type": "drupal-module",
  3990. "extra": {
  3991. "drupal": {
  3992. "version": "2.0.1",
  3993. "datestamp": "1694604335",
  3994. "security-coverage": {
  3995. "status": "covered",
  3996. "message": "Covered by Drupal's security advisory policy"
  3997. }
  3998. }
  3999. },
  4000. "notification-url": "https://packages.drupal.org/8/downloads",
  4001. "license": [
  4002. "GPL-2.0-or-later"
  4003. ],
  4004. "authors": [
  4005. {
  4006. "name": "bnjmnm",
  4007. "homepage": "https://www.drupal.org/user/2369194"
  4008. },
  4009. {
  4010. "name": "lauriii",
  4011. "homepage": "https://www.drupal.org/user/1078742"
  4012. },
  4013. {
  4014. "name": "zrpnr",
  4015. "homepage": "https://www.drupal.org/user/1448368"
  4016. }
  4017. ],
  4018. "description": "Provides jQuery UI Sortable library.",
  4019. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4020. "support": {
  4021. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4022. }
  4023. },
  4024. {
  4025. "name": "drupal/js_cookie",
  4026. "version": "1.0.1",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4030. "reference": "1.0.1"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4035. "reference": "1.0.1",
  4036. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4037. },
  4038. "require": {
  4039. "drupal/core": "^9 || ^10 || ^11"
  4040. },
  4041. "type": "drupal-module",
  4042. "extra": {
  4043. "drupal": {
  4044. "version": "1.0.1",
  4045. "datestamp": "1693951097",
  4046. "security-coverage": {
  4047. "status": "covered",
  4048. "message": "Covered by Drupal's security advisory policy"
  4049. }
  4050. }
  4051. },
  4052. "notification-url": "https://packages.drupal.org/8/downloads",
  4053. "license": [
  4054. "GPL-2.0-or-later"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "Dave Reid",
  4059. "homepage": "https://www.drupal.org/user/53892"
  4060. }
  4061. ],
  4062. "description": "Provides the js-cookie library as a dependency.",
  4063. "homepage": "https://www.drupal.org/project/js_cookie",
  4064. "support": {
  4065. "source": "https://git.drupalcode.org/project/js_cookie"
  4066. }
  4067. },
  4068. {
  4069. "name": "drupal/linkit",
  4070. "version": "6.1.4",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://git.drupalcode.org/project/linkit.git",
  4074. "reference": "6.1.4"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.4.zip",
  4079. "reference": "6.1.4",
  4080. "shasum": "f5544a39d691af5efd1532bd5403862a7153f60b"
  4081. },
  4082. "require": {
  4083. "drupal/core": "^10.1"
  4084. },
  4085. "require-dev": {
  4086. "drupal/ckeditor": "*",
  4087. "drupal/imce": "*"
  4088. },
  4089. "type": "drupal-module",
  4090. "extra": {
  4091. "drupal": {
  4092. "version": "6.1.4",
  4093. "datestamp": "1715203830",
  4094. "security-coverage": {
  4095. "status": "covered",
  4096. "message": "Covered by Drupal's security advisory policy"
  4097. }
  4098. }
  4099. },
  4100. "notification-url": "https://packages.drupal.org/8/downloads",
  4101. "license": [
  4102. "GPL-2.0-or-later"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Emil Stjerneman",
  4107. "homepage": "https://stjerneman.com",
  4108. "email": "emil@stjerneman.com",
  4109. "role": "Maintainer"
  4110. },
  4111. {
  4112. "name": "johnwebdev",
  4113. "homepage": "https://www.drupal.org/user/3331569"
  4114. },
  4115. {
  4116. "name": "mark_fullmer",
  4117. "homepage": "https://www.drupal.org/user/2612816"
  4118. }
  4119. ],
  4120. "description": "Linkit - Enriched linking experience",
  4121. "homepage": "http://drupal.org/project/linkit",
  4122. "support": {
  4123. "source": "http://cgit.drupalcode.org/linkit",
  4124. "issues": "http://drupal.org/project/linkit"
  4125. }
  4126. },
  4127. {
  4128. "name": "drupal/login_emailusername",
  4129. "version": "2.1.0",
  4130. "source": {
  4131. "type": "git",
  4132. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4133. "reference": "2.1.0"
  4134. },
  4135. "dist": {
  4136. "type": "zip",
  4137. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4138. "reference": "2.1.0",
  4139. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4140. },
  4141. "require": {
  4142. "drupal/core": "^8.8 || ^9 || ^10"
  4143. },
  4144. "type": "drupal-module",
  4145. "extra": {
  4146. "drupal": {
  4147. "version": "2.1.0",
  4148. "datestamp": "1677072401",
  4149. "security-coverage": {
  4150. "status": "covered",
  4151. "message": "Covered by Drupal's security advisory policy"
  4152. }
  4153. },
  4154. "branch-alias": {
  4155. "dev-8.x-1.x": "8.1.x-dev"
  4156. }
  4157. },
  4158. "notification-url": "https://packages.drupal.org/8/downloads",
  4159. "license": [
  4160. "GPL-2.0-or-later"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "See contributors",
  4165. "homepage": "https://www.drupal.org/node/2820429/committers",
  4166. "role": "contributor"
  4167. },
  4168. {
  4169. "name": "rjjakes",
  4170. "homepage": "https://www.drupal.org/user/3457245"
  4171. },
  4172. {
  4173. "name": "VladimirAus",
  4174. "homepage": "https://www.drupal.org/user/673120"
  4175. }
  4176. ],
  4177. "description": "Login with the email as username.",
  4178. "homepage": "https://drupal.org/project/login_emailusername",
  4179. "support": {
  4180. "source": "https://git.drupalcode.org/project/login_emailusername",
  4181. "issues": "https://drupal.org/project/issues/login_emailusername"
  4182. }
  4183. },
  4184. {
  4185. "name": "drupal/maillog",
  4186. "version": "1.1.0",
  4187. "source": {
  4188. "type": "git",
  4189. "url": "https://git.drupalcode.org/project/maillog.git",
  4190. "reference": "8.x-1.1"
  4191. },
  4192. "dist": {
  4193. "type": "zip",
  4194. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4195. "reference": "8.x-1.1",
  4196. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4197. },
  4198. "require": {
  4199. "drupal/core": "^9 || ^10"
  4200. },
  4201. "type": "drupal-module",
  4202. "extra": {
  4203. "drupal": {
  4204. "version": "8.x-1.1",
  4205. "datestamp": "1685616898",
  4206. "security-coverage": {
  4207. "status": "covered",
  4208. "message": "Covered by Drupal's security advisory policy"
  4209. }
  4210. }
  4211. },
  4212. "notification-url": "https://packages.drupal.org/8/downloads",
  4213. "license": [
  4214. "GPL-2.0-or-later"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "berdir",
  4219. "homepage": "https://www.drupal.org/user/214652"
  4220. },
  4221. {
  4222. "name": "damienmckenna",
  4223. "homepage": "https://www.drupal.org/user/108450"
  4224. },
  4225. {
  4226. "name": "miro_dietiker",
  4227. "homepage": "https://www.drupal.org/user/227761"
  4228. },
  4229. {
  4230. "name": "pluess",
  4231. "homepage": "https://www.drupal.org/user/84659"
  4232. }
  4233. ],
  4234. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4235. "homepage": "https://www.drupal.org/project/maillog",
  4236. "support": {
  4237. "source": "https://git.drupalcode.org/project/maillog"
  4238. }
  4239. },
  4240. {
  4241. "name": "drupal/menu_admin_per_menu",
  4242. "version": "1.6.0",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4246. "reference": "8.x-1.6"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip",
  4251. "reference": "8.x-1.6",
  4252. "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a"
  4253. },
  4254. "require": {
  4255. "drupal/core": "^10.2 || ^11.0"
  4256. },
  4257. "type": "drupal-module",
  4258. "extra": {
  4259. "drupal": {
  4260. "version": "8.x-1.6",
  4261. "datestamp": "1726150514",
  4262. "security-coverage": {
  4263. "status": "covered",
  4264. "message": "Covered by Drupal's security advisory policy"
  4265. }
  4266. }
  4267. },
  4268. "notification-url": "https://packages.drupal.org/8/downloads",
  4269. "license": [
  4270. "GPL-2.0-or-later"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "anrikun",
  4275. "homepage": "https://www.drupal.org/user/410199"
  4276. },
  4277. {
  4278. "name": "jeroent",
  4279. "homepage": "https://www.drupal.org/user/2228934"
  4280. },
  4281. {
  4282. "name": "jonas139",
  4283. "homepage": "https://www.drupal.org/user/2873401"
  4284. },
  4285. {
  4286. "name": "mkdok",
  4287. "homepage": "https://www.drupal.org/user/3308753"
  4288. }
  4289. ],
  4290. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4291. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4292. "keywords": [
  4293. "Drupal"
  4294. ],
  4295. "support": {
  4296. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4297. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4298. }
  4299. },
  4300. {
  4301. "name": "drupal/metatag",
  4302. "version": "2.0.2",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://git.drupalcode.org/project/metatag.git",
  4306. "reference": "2.0.2"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4311. "reference": "2.0.2",
  4312. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4313. },
  4314. "require": {
  4315. "drupal/core": "^9.4 || ^10 || ^11",
  4316. "drupal/token": "^1.0",
  4317. "php": ">=8.0"
  4318. },
  4319. "require-dev": {
  4320. "drupal/hal": "^1 || ^2 || ^9",
  4321. "drupal/metatag_dc": "*",
  4322. "drupal/metatag_open_graph": "*",
  4323. "drupal/page_manager": "^4.0",
  4324. "drupal/redirect": "^1.0",
  4325. "ergebnis/composer-normalize": "*",
  4326. "mpyw/phpunit-patch-serializable-comparison": "*"
  4327. },
  4328. "type": "drupal-module",
  4329. "extra": {
  4330. "drupal": {
  4331. "version": "2.0.2",
  4332. "datestamp": "1722869772",
  4333. "security-coverage": {
  4334. "status": "covered",
  4335. "message": "Covered by Drupal's security advisory policy"
  4336. }
  4337. },
  4338. "composer-normalize": {
  4339. "indent-size": 2,
  4340. "indent-style": "space"
  4341. }
  4342. },
  4343. "notification-url": "https://packages.drupal.org/8/downloads",
  4344. "license": [
  4345. "GPL-2.0-or-later"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "See contributors",
  4350. "homepage": "https://www.drupal.org/node/640498/committers",
  4351. "role": "Developer"
  4352. },
  4353. {
  4354. "name": "dave reid",
  4355. "homepage": "https://www.drupal.org/user/53892"
  4356. }
  4357. ],
  4358. "description": "Manage meta tags for all entities.",
  4359. "homepage": "https://www.drupal.org/project/metatag",
  4360. "keywords": [
  4361. "Drupal",
  4362. "seo"
  4363. ],
  4364. "support": {
  4365. "source": "https://git.drupalcode.org/project/metatag",
  4366. "issues": "https://www.drupal.org/project/issues/metatag",
  4367. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4368. }
  4369. },
  4370. {
  4371. "name": "drupal/pathauto",
  4372. "version": "1.13.0",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://git.drupalcode.org/project/pathauto.git",
  4376. "reference": "8.x-1.13"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4381. "reference": "8.x-1.13",
  4382. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4383. },
  4384. "require": {
  4385. "drupal/core": "^9.4 || ^10 || ^11",
  4386. "drupal/ctools": "*",
  4387. "drupal/token": "*"
  4388. },
  4389. "require-dev": {
  4390. "drupal/forum": "*"
  4391. },
  4392. "suggest": {
  4393. "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."
  4394. },
  4395. "type": "drupal-module",
  4396. "extra": {
  4397. "drupal": {
  4398. "version": "8.x-1.13",
  4399. "datestamp": "1722507672",
  4400. "security-coverage": {
  4401. "status": "covered",
  4402. "message": "Covered by Drupal's security advisory policy"
  4403. }
  4404. },
  4405. "drush": {
  4406. "services": {
  4407. "drush.services.yml": "^9 || ^10"
  4408. }
  4409. }
  4410. },
  4411. "notification-url": "https://packages.drupal.org/8/downloads",
  4412. "license": [
  4413. "GPL-2.0-or-later"
  4414. ],
  4415. "authors": [
  4416. {
  4417. "name": "Berdir",
  4418. "homepage": "https://www.drupal.org/user/214652"
  4419. },
  4420. {
  4421. "name": "Dave Reid",
  4422. "homepage": "https://www.drupal.org/user/53892"
  4423. },
  4424. {
  4425. "name": "Freso",
  4426. "homepage": "https://www.drupal.org/user/27504"
  4427. },
  4428. {
  4429. "name": "greggles",
  4430. "homepage": "https://www.drupal.org/user/36762"
  4431. }
  4432. ],
  4433. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4434. "homepage": "https://www.drupal.org/project/pathauto",
  4435. "support": {
  4436. "source": "https://cgit.drupalcode.org/pathauto",
  4437. "issues": "https://www.drupal.org/project/issues/pathauto",
  4438. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4439. }
  4440. },
  4441. {
  4442. "name": "drupal/profile",
  4443. "version": "1.11.0",
  4444. "source": {
  4445. "type": "git",
  4446. "url": "https://git.drupalcode.org/project/profile.git",
  4447. "reference": "8.x-1.11"
  4448. },
  4449. "dist": {
  4450. "type": "zip",
  4451. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.11.zip",
  4452. "reference": "8.x-1.11",
  4453. "shasum": "cdb6c7180be1f0a2d8a03c1a933d939f3d878cfb"
  4454. },
  4455. "require": {
  4456. "drupal/core": "^9 || ^10 || ^11",
  4457. "drupal/entity": "^1.0",
  4458. "php": "^7.4 || ^8.0"
  4459. },
  4460. "require-dev": {
  4461. "drupal/search_api": "~1.30",
  4462. "drupal/token": "^1.7"
  4463. },
  4464. "type": "drupal-module",
  4465. "extra": {
  4466. "drupal": {
  4467. "version": "8.x-1.11",
  4468. "datestamp": "1721735588",
  4469. "security-coverage": {
  4470. "status": "covered",
  4471. "message": "Covered by Drupal's security advisory policy"
  4472. }
  4473. }
  4474. },
  4475. "notification-url": "https://packages.drupal.org/8/downloads",
  4476. "license": [
  4477. "GPL-2.0-or-later"
  4478. ],
  4479. "authors": [
  4480. {
  4481. "name": "bojanz",
  4482. "homepage": "https://www.drupal.org/user/86106"
  4483. },
  4484. {
  4485. "name": "daggerhart",
  4486. "homepage": "https://www.drupal.org/user/167806"
  4487. },
  4488. {
  4489. "name": "fago",
  4490. "homepage": "https://www.drupal.org/user/16747"
  4491. },
  4492. {
  4493. "name": "jsacksick",
  4494. "homepage": "https://www.drupal.org/user/972218"
  4495. },
  4496. {
  4497. "name": "mglaman",
  4498. "homepage": "https://www.drupal.org/user/2416470"
  4499. },
  4500. {
  4501. "name": "pcambra",
  4502. "homepage": "https://www.drupal.org/user/122101"
  4503. }
  4504. ],
  4505. "description": "Provides configurable user profiles.",
  4506. "homepage": "https://drupal.org/project/profile",
  4507. "support": {
  4508. "source": "https://git.drupalcode.org/project/profile"
  4509. }
  4510. },
  4511. {
  4512. "name": "drupal/redirect",
  4513. "version": "1.10.0",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://git.drupalcode.org/project/redirect.git",
  4517. "reference": "8.x-1.10"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4522. "reference": "8.x-1.10",
  4523. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4524. },
  4525. "require": {
  4526. "drupal/core": "^9.2 || ^10 || ^11"
  4527. },
  4528. "type": "drupal-module",
  4529. "extra": {
  4530. "drupal": {
  4531. "version": "8.x-1.10",
  4532. "datestamp": "1723277641",
  4533. "security-coverage": {
  4534. "status": "covered",
  4535. "message": "Covered by Drupal's security advisory policy"
  4536. }
  4537. }
  4538. },
  4539. "notification-url": "https://packages.drupal.org/8/downloads",
  4540. "license": [
  4541. "GPL-2.0-or-later"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Berdir",
  4546. "homepage": "https://www.drupal.org/user/214652"
  4547. },
  4548. {
  4549. "name": "dave reid",
  4550. "homepage": "https://www.drupal.org/user/53892"
  4551. },
  4552. {
  4553. "name": "Kristen Pol",
  4554. "homepage": "https://www.drupal.org/user/8389"
  4555. },
  4556. {
  4557. "name": "pifagor",
  4558. "homepage": "https://www.drupal.org/user/2375692"
  4559. }
  4560. ],
  4561. "description": "Allows users to redirect from old URLs to new URLs.",
  4562. "homepage": "https://www.drupal.org/project/redirect",
  4563. "support": {
  4564. "source": "https://git.drupalcode.org/project/redirect"
  4565. }
  4566. },
  4567. {
  4568. "name": "drupal/redis",
  4569. "version": "1.8.0",
  4570. "source": {
  4571. "type": "git",
  4572. "url": "https://git.drupalcode.org/project/redis.git",
  4573. "reference": "8.x-1.8"
  4574. },
  4575. "dist": {
  4576. "type": "zip",
  4577. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4578. "reference": "8.x-1.8",
  4579. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4580. },
  4581. "require": {
  4582. "drupal/core": "^9.3 || ^10 || ^11"
  4583. },
  4584. "suggest": {
  4585. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4586. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4587. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4588. },
  4589. "type": "drupal-module",
  4590. "extra": {
  4591. "drupal": {
  4592. "version": "8.x-1.8",
  4593. "datestamp": "1723934771",
  4594. "security-coverage": {
  4595. "status": "covered",
  4596. "message": "Covered by Drupal's security advisory policy"
  4597. }
  4598. }
  4599. },
  4600. "autoload": {
  4601. "psr-4": {
  4602. "Drupal\\redis\\": "src"
  4603. }
  4604. },
  4605. "notification-url": "https://packages.drupal.org/8/downloads",
  4606. "license": [
  4607. "GPL-2.0-or-later"
  4608. ],
  4609. "authors": [
  4610. {
  4611. "name": "berdir",
  4612. "homepage": "https://www.drupal.org/user/214652"
  4613. },
  4614. {
  4615. "name": "greg.1.anderson",
  4616. "homepage": "https://www.drupal.org/user/438598"
  4617. },
  4618. {
  4619. "name": "kporras07",
  4620. "homepage": "https://www.drupal.org/user/1349780"
  4621. },
  4622. {
  4623. "name": "pounard",
  4624. "homepage": "https://www.drupal.org/user/240164"
  4625. }
  4626. ],
  4627. "description": "Integration of Drupal with the Redis key-value store.",
  4628. "homepage": "https://www.drupal.org/project/redis",
  4629. "support": {
  4630. "source": "https://git.drupalcode.org/project/redis"
  4631. }
  4632. },
  4633. {
  4634. "name": "drupal/restui",
  4635. "version": "1.22.0",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://git.drupalcode.org/project/restui.git",
  4639. "reference": "8.x-1.22"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4644. "reference": "8.x-1.22",
  4645. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4646. },
  4647. "require": {
  4648. "drupal/core": "^9.5 || ^10 || ^11"
  4649. },
  4650. "type": "drupal-module",
  4651. "extra": {
  4652. "drupal": {
  4653. "version": "8.x-1.22",
  4654. "datestamp": "1721134189",
  4655. "security-coverage": {
  4656. "status": "covered",
  4657. "message": "Covered by Drupal's security advisory policy"
  4658. }
  4659. }
  4660. },
  4661. "notification-url": "https://packages.drupal.org/8/downloads",
  4662. "license": [
  4663. "GPL-2.0-or-later"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "-enzo-",
  4668. "homepage": "https://www.drupal.org/user/294937"
  4669. },
  4670. {
  4671. "name": "clemens.tolboom",
  4672. "homepage": "https://www.drupal.org/user/125814"
  4673. },
  4674. {
  4675. "name": "juampynr",
  4676. "homepage": "https://www.drupal.org/user/682736"
  4677. },
  4678. {
  4679. "name": "kamkejj",
  4680. "homepage": "https://www.drupal.org/user/81043"
  4681. },
  4682. {
  4683. "name": "vipin.mittal18",
  4684. "homepage": "https://www.drupal.org/user/319716"
  4685. }
  4686. ],
  4687. "description": "Provides a user interface to manage REST resources.",
  4688. "homepage": "https://www.drupal.org/project/restui",
  4689. "support": {
  4690. "source": "https://git.drupalcode.org/project/restui"
  4691. }
  4692. },
  4693. {
  4694. "name": "drupal/search_api",
  4695. "version": "1.35.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://git.drupalcode.org/project/search_api.git",
  4699. "reference": "8.x-1.35"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.35.zip",
  4704. "reference": "8.x-1.35",
  4705. "shasum": "d119726e870f793c6470d2a4fa9286662c5eb45d"
  4706. },
  4707. "require": {
  4708. "drupal/core": "^10.1 || ^11"
  4709. },
  4710. "conflict": {
  4711. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4712. },
  4713. "require-dev": {
  4714. "drupal/language_fallback_fix": "@dev",
  4715. "drupal/search_api_autocomplete": "@dev",
  4716. "drupal/search_api_db": "*"
  4717. },
  4718. "suggest": {
  4719. "drupal/facets": "Adds the ability to create faceted searches.",
  4720. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4721. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4722. },
  4723. "type": "drupal-module",
  4724. "extra": {
  4725. "drupal": {
  4726. "version": "8.x-1.35",
  4727. "datestamp": "1718551025",
  4728. "security-coverage": {
  4729. "status": "covered",
  4730. "message": "Covered by Drupal's security advisory policy"
  4731. }
  4732. },
  4733. "drush": {
  4734. "services": {
  4735. "drush.services.yml": "^9 || ^10 || ^11"
  4736. }
  4737. }
  4738. },
  4739. "notification-url": "https://packages.drupal.org/8/downloads",
  4740. "license": [
  4741. "GPL-2.0-or-later"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Thomas Seidl",
  4746. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4747. },
  4748. {
  4749. "name": "Nick Veenhof",
  4750. "homepage": "https://www.drupal.org/u/nick_vh"
  4751. },
  4752. {
  4753. "name": "See other contributors",
  4754. "homepage": "https://www.drupal.org/node/790418/committers"
  4755. }
  4756. ],
  4757. "description": "Provides a generic framework for modules offering search capabilities.",
  4758. "homepage": "https://www.drupal.org/project/search_api",
  4759. "support": {
  4760. "source": "https://git.drupalcode.org/project/search_api",
  4761. "issues": "https://www.drupal.org/project/issues/search_api",
  4762. "irc": "irc://irc.freenode.org/drupal-search-api"
  4763. }
  4764. },
  4765. {
  4766. "name": "drupal/seven",
  4767. "version": "1.0.0",
  4768. "source": {
  4769. "type": "git",
  4770. "url": "https://git.drupalcode.org/project/seven.git",
  4771. "reference": "1.0.0"
  4772. },
  4773. "dist": {
  4774. "type": "zip",
  4775. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4776. "reference": "1.0.0",
  4777. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4778. },
  4779. "require": {
  4780. "drupal/core": "^9 || ^10"
  4781. },
  4782. "type": "drupal-theme",
  4783. "extra": {
  4784. "drupal": {
  4785. "version": "1.0.0",
  4786. "datestamp": "1683652106",
  4787. "security-coverage": {
  4788. "status": "covered",
  4789. "message": "Covered by Drupal's security advisory policy"
  4790. }
  4791. }
  4792. },
  4793. "notification-url": "https://packages.drupal.org/8/downloads",
  4794. "license": [
  4795. "GPL-2.0-or-later"
  4796. ],
  4797. "authors": [
  4798. {
  4799. "name": "avpaderno",
  4800. "homepage": "https://www.drupal.org/user/55077"
  4801. },
  4802. {
  4803. "name": "bnjmnm",
  4804. "homepage": "https://www.drupal.org/user/2369194"
  4805. },
  4806. {
  4807. "name": "krakenbite",
  4808. "homepage": "https://www.drupal.org/user/3805933"
  4809. },
  4810. {
  4811. "name": "lauriii",
  4812. "homepage": "https://www.drupal.org/user/1078742"
  4813. },
  4814. {
  4815. "name": "mcrittenden",
  4816. "homepage": "https://www.drupal.org/user/420631"
  4817. },
  4818. {
  4819. "name": "mrfelton",
  4820. "homepage": "https://www.drupal.org/user/305669"
  4821. }
  4822. ],
  4823. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4824. "homepage": "https://www.drupal.org/project/seven",
  4825. "support": {
  4826. "source": "https://git.drupalcode.org/project/seven"
  4827. }
  4828. },
  4829. {
  4830. "name": "drupal/simple_sitemap",
  4831. "version": "4.2.1",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4835. "reference": "4.2.1"
  4836. },
  4837. "dist": {
  4838. "type": "zip",
  4839. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.1.zip",
  4840. "reference": "4.2.1",
  4841. "shasum": "d96b481571ca2fecdb305e87d2557f9338116864"
  4842. },
  4843. "require": {
  4844. "drupal/core": "^10.2 || ^11",
  4845. "ext-xmlwriter": "*"
  4846. },
  4847. "type": "drupal-module",
  4848. "extra": {
  4849. "drupal": {
  4850. "version": "4.2.1",
  4851. "datestamp": "1723802052",
  4852. "security-coverage": {
  4853. "status": "covered",
  4854. "message": "Covered by Drupal's security advisory policy"
  4855. }
  4856. },
  4857. "drush": {
  4858. "services": {
  4859. "drush.services.yml": ">=9"
  4860. }
  4861. }
  4862. },
  4863. "notification-url": "https://packages.drupal.org/8/downloads",
  4864. "license": [
  4865. "GPL-2.0-or-later"
  4866. ],
  4867. "authors": [
  4868. {
  4869. "name": "Pawel Ginalski (gbyte)",
  4870. "homepage": "https://www.drupal.org/u/gbyte",
  4871. "email": "contact@gbyte.dev",
  4872. "role": "Maintainer"
  4873. },
  4874. {
  4875. "name": "walkingdexter",
  4876. "homepage": "https://www.drupal.org/user/3251330"
  4877. }
  4878. ],
  4879. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4880. "homepage": "https://drupal.org/project/simple_sitemap",
  4881. "support": {
  4882. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4883. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4884. }
  4885. },
  4886. {
  4887. "name": "drupal/stable",
  4888. "version": "2.1.0",
  4889. "source": {
  4890. "type": "git",
  4891. "url": "https://git.drupalcode.org/project/stable.git",
  4892. "reference": "2.1.0"
  4893. },
  4894. "dist": {
  4895. "type": "zip",
  4896. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4897. "reference": "2.1.0",
  4898. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4899. },
  4900. "require": {
  4901. "drupal/core": "^10.3 || ^11"
  4902. },
  4903. "type": "drupal-theme",
  4904. "extra": {
  4905. "drupal": {
  4906. "version": "2.1.0",
  4907. "datestamp": "1721202956",
  4908. "security-coverage": {
  4909. "status": "covered",
  4910. "message": "Covered by Drupal's security advisory policy"
  4911. }
  4912. }
  4913. },
  4914. "notification-url": "https://packages.drupal.org/8/downloads",
  4915. "license": [
  4916. "GPL-2.0-or-later"
  4917. ],
  4918. "authors": [
  4919. {
  4920. "name": "bnjmnm",
  4921. "homepage": "https://www.drupal.org/user/2369194"
  4922. },
  4923. {
  4924. "name": "lauriii",
  4925. "homepage": "https://www.drupal.org/user/1078742"
  4926. },
  4927. {
  4928. "name": "Rajeshreeputra",
  4929. "homepage": "https://www.drupal.org/user/3418561"
  4930. },
  4931. {
  4932. "name": "star-szr",
  4933. "homepage": "https://www.drupal.org/user/1167326"
  4934. }
  4935. ],
  4936. "description": "A base theme using Drupal core markup and CSS.",
  4937. "homepage": "https://www.drupal.org/project/stable",
  4938. "support": {
  4939. "source": "https://git.drupalcode.org/project/stable"
  4940. }
  4941. },
  4942. {
  4943. "name": "drupal/synonyms",
  4944. "version": "2.1.4",
  4945. "source": {
  4946. "type": "git",
  4947. "url": "https://git.drupalcode.org/project/synonyms.git",
  4948. "reference": "2.1.4"
  4949. },
  4950. "dist": {
  4951. "type": "zip",
  4952. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4953. "reference": "2.1.4",
  4954. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4955. },
  4956. "require": {
  4957. "drupal/core": "^9 || ^10 || ^11"
  4958. },
  4959. "require-dev": {
  4960. "drupal/synonyms_list_field": "*"
  4961. },
  4962. "type": "drupal-module",
  4963. "extra": {
  4964. "drupal": {
  4965. "version": "2.1.4",
  4966. "datestamp": "1723069842",
  4967. "security-coverage": {
  4968. "status": "covered",
  4969. "message": "Covered by Drupal's security advisory policy"
  4970. }
  4971. }
  4972. },
  4973. "notification-url": "https://packages.drupal.org/8/downloads",
  4974. "license": [
  4975. "GPL-2.0-or-later"
  4976. ],
  4977. "authors": [
  4978. {
  4979. "name": "Bojan Zivanovic",
  4980. "homepage": "https://www.drupal.org/u/bojanz",
  4981. "role": "Author and D5, D6 and D7 versions developer."
  4982. },
  4983. {
  4984. "name": "Alex Trosenko",
  4985. "homepage": "https://www.drupal.org/u/bucefal91",
  4986. "role": "D7 and D8 versions developer."
  4987. },
  4988. {
  4989. "name": "Duro Arezina",
  4990. "homepage": "https://www.drupal.org/u/devad",
  4991. "role": "D8+ versions maintenance"
  4992. },
  4993. {
  4994. "name": "See other contributors",
  4995. "homepage": "https://www.drupal.org/node/148775/committers"
  4996. }
  4997. ],
  4998. "description": "Provides synonyms feature for all entities.",
  4999. "homepage": "https://www.drupal.org/project/synonyms",
  5000. "support": {
  5001. "source": "https://git.drupalcode.org/project/synonyms",
  5002. "issues": "https://www.drupal.org/project/issues/synonyms"
  5003. }
  5004. },
  5005. {
  5006. "name": "drupal/token",
  5007. "version": "1.15.0",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://git.drupalcode.org/project/token.git",
  5011. "reference": "8.x-1.15"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  5016. "reference": "8.x-1.15",
  5017. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  5018. },
  5019. "require": {
  5020. "drupal/core": "^9.2 || ^10 || ^11"
  5021. },
  5022. "require-dev": {
  5023. "drupal/book": "*"
  5024. },
  5025. "type": "drupal-module",
  5026. "extra": {
  5027. "drupal": {
  5028. "version": "8.x-1.15",
  5029. "datestamp": "1722206211",
  5030. "security-coverage": {
  5031. "status": "covered",
  5032. "message": "Covered by Drupal's security advisory policy"
  5033. }
  5034. },
  5035. "drush": {
  5036. "services": {
  5037. "drush.services.yml": ">=9"
  5038. }
  5039. }
  5040. },
  5041. "notification-url": "https://packages.drupal.org/8/downloads",
  5042. "license": [
  5043. "GPL-2.0-or-later"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Berdir",
  5048. "homepage": "https://www.drupal.org/user/214652"
  5049. },
  5050. {
  5051. "name": "Dave Reid",
  5052. "homepage": "https://www.drupal.org/user/53892"
  5053. },
  5054. {
  5055. "name": "eaton",
  5056. "homepage": "https://www.drupal.org/user/16496"
  5057. },
  5058. {
  5059. "name": "fago",
  5060. "homepage": "https://www.drupal.org/user/16747"
  5061. },
  5062. {
  5063. "name": "greggles",
  5064. "homepage": "https://www.drupal.org/user/36762"
  5065. },
  5066. {
  5067. "name": "mikeryan",
  5068. "homepage": "https://www.drupal.org/user/4420"
  5069. }
  5070. ],
  5071. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5072. "homepage": "https://www.drupal.org/project/token",
  5073. "support": {
  5074. "source": "https://git.drupalcode.org/project/token"
  5075. }
  5076. },
  5077. {
  5078. "name": "drupal/translation_views",
  5079. "version": "1.0.0-alpha11",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://git.drupalcode.org/project/translation_views.git",
  5083. "reference": "8.x-1.0-alpha11"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5088. "reference": "8.x-1.0-alpha11",
  5089. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5090. },
  5091. "require": {
  5092. "drupal/core": "^8.8 || ^9 || ^10"
  5093. },
  5094. "require-dev": {
  5095. "drupal/translators_content": "^1.0@alpha"
  5096. },
  5097. "type": "drupal-module",
  5098. "extra": {
  5099. "drupal": {
  5100. "version": "8.x-1.0-alpha11",
  5101. "datestamp": "1679660668",
  5102. "security-coverage": {
  5103. "status": "not-covered",
  5104. "message": "Project has not opted into security advisory coverage!"
  5105. }
  5106. }
  5107. },
  5108. "notification-url": "https://packages.drupal.org/8/downloads",
  5109. "license": [
  5110. "GPL-2.0-or-later"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "matsbla",
  5115. "homepage": "https://www.drupal.org/user/2325394"
  5116. },
  5117. {
  5118. "name": "vlad.dancer",
  5119. "homepage": "https://www.drupal.org/user/903844"
  5120. }
  5121. ],
  5122. "description": "Create customized lists and queries of translations from your database.",
  5123. "homepage": "https://www.drupal.org/project/translation_views",
  5124. "support": {
  5125. "source": "https://git.drupalcode.org/project/translation_views"
  5126. }
  5127. },
  5128. {
  5129. "name": "drupal/upgrade_status",
  5130. "version": "4.3.5",
  5131. "source": {
  5132. "type": "git",
  5133. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5134. "reference": "4.3.5"
  5135. },
  5136. "dist": {
  5137. "type": "zip",
  5138. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.5.zip",
  5139. "reference": "4.3.5",
  5140. "shasum": "353c17f14c855f5ba0fe48c6a4f6486360c066a7"
  5141. },
  5142. "require": {
  5143. "dekor/php-array-table": "^2.0",
  5144. "drupal/core": "^9 || ^10 || ^11",
  5145. "mglaman/phpstan-drupal": "^1.2.11",
  5146. "nikic/php-parser": "^4.0.0|^5.0.0",
  5147. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5148. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5149. "webflo/drupal-finder": "^1.2"
  5150. },
  5151. "require-dev": {
  5152. "drush/drush": "^11|^12|^13"
  5153. },
  5154. "type": "drupal-module",
  5155. "extra": {
  5156. "drupal": {
  5157. "version": "4.3.5",
  5158. "datestamp": "1723044184",
  5159. "security-coverage": {
  5160. "status": "covered",
  5161. "message": "Covered by Drupal's security advisory policy"
  5162. }
  5163. },
  5164. "drush": {
  5165. "services": {
  5166. "drush.services.yml": "^9 || ^10"
  5167. }
  5168. }
  5169. },
  5170. "notification-url": "https://packages.drupal.org/8/downloads",
  5171. "license": [
  5172. "GPL-2.0-or-later"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "Gábor Hojtsy",
  5177. "homepage": "https://www.drupal.org/user/4166"
  5178. }
  5179. ],
  5180. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5181. "homepage": "http://drupal.org/project/upgrade_status",
  5182. "support": {
  5183. "source": "https://git.drupalcode.org/project/upgrade_status"
  5184. }
  5185. },
  5186. {
  5187. "name": "drupal/views_bulk_edit",
  5188. "version": "3.0.0",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5192. "reference": "3.0.0"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  5197. "reference": "3.0.0",
  5198. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  5199. },
  5200. "require": {
  5201. "drupal/core": "^9.4 || ^10 || ^11",
  5202. "php": ">=8.1"
  5203. },
  5204. "require-dev": {
  5205. "drupal/views_bulk_operations": "~4.2.4"
  5206. },
  5207. "suggest": {
  5208. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5209. },
  5210. "type": "drupal-module",
  5211. "extra": {
  5212. "drupal": {
  5213. "version": "3.0.0",
  5214. "datestamp": "1725358398",
  5215. "security-coverage": {
  5216. "status": "covered",
  5217. "message": "Covered by Drupal's security advisory policy"
  5218. }
  5219. }
  5220. },
  5221. "notification-url": "https://packages.drupal.org/8/downloads",
  5222. "license": [
  5223. "GPL-2.0+"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "Marcin Grabias",
  5228. "homepage": "https://www.drupal.org/u/graber"
  5229. },
  5230. {
  5231. "name": "benjy",
  5232. "homepage": "https://www.drupal.org/user/1852732"
  5233. },
  5234. {
  5235. "name": "graber",
  5236. "homepage": "https://www.drupal.org/user/1599440"
  5237. },
  5238. {
  5239. "name": "grevil",
  5240. "homepage": "https://www.drupal.org/user/3668491"
  5241. },
  5242. {
  5243. "name": "joseph.olstad",
  5244. "homepage": "https://www.drupal.org/user/1321830"
  5245. }
  5246. ],
  5247. "description": "Allows bulk edition of entity field values.",
  5248. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5249. "support": {
  5250. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5251. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5252. }
  5253. },
  5254. {
  5255. "name": "drupal/views_bulk_operations",
  5256. "version": "4.3.4",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5260. "reference": "4.3.4"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  5265. "reference": "4.3.4",
  5266. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  5267. },
  5268. "require": {
  5269. "drupal/core": "^10.3 || ^11"
  5270. },
  5271. "conflict": {
  5272. "drush/drush": "<12.5.1"
  5273. },
  5274. "require-dev": {
  5275. "drush/drush": "^12 || ^13"
  5276. },
  5277. "suggest": {
  5278. "drush/drush": "^12 || ^13"
  5279. },
  5280. "type": "drupal-module",
  5281. "extra": {
  5282. "drupal": {
  5283. "version": "4.3.4",
  5284. "datestamp": "1741604495",
  5285. "security-coverage": {
  5286. "status": "covered",
  5287. "message": "Covered by Drupal's security advisory policy"
  5288. }
  5289. }
  5290. },
  5291. "notification-url": "https://packages.drupal.org/8/downloads",
  5292. "license": [
  5293. "GPL-2.0-or-later"
  5294. ],
  5295. "authors": [
  5296. {
  5297. "name": "Marcin Grabias",
  5298. "homepage": "https://www.drupal.org/u/graber"
  5299. },
  5300. {
  5301. "name": "graber",
  5302. "homepage": "https://www.drupal.org/user/1599440"
  5303. },
  5304. {
  5305. "name": "joelpittet",
  5306. "homepage": "https://www.drupal.org/user/160302"
  5307. }
  5308. ],
  5309. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5310. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5311. "support": {
  5312. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5313. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  5314. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  5315. }
  5316. },
  5317. {
  5318. "name": "drupal/workflow",
  5319. "version": "1.8.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://git.drupalcode.org/project/workflow.git",
  5323. "reference": "8.x-1.8"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5328. "reference": "8.x-1.8",
  5329. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5330. },
  5331. "require": {
  5332. "drupal/core": ">=8.8"
  5333. },
  5334. "type": "drupal-module",
  5335. "extra": {
  5336. "drupal": {
  5337. "version": "8.x-1.8",
  5338. "datestamp": "1717579628",
  5339. "security-coverage": {
  5340. "status": "covered",
  5341. "message": "Covered by Drupal's security advisory policy"
  5342. }
  5343. }
  5344. },
  5345. "notification-url": "https://packages.drupal.org/8/downloads",
  5346. "license": [
  5347. "GPL-2.0-or-later"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "Bastlynn",
  5352. "homepage": "https://www.drupal.org/user/275249"
  5353. },
  5354. {
  5355. "name": "eaton",
  5356. "homepage": "https://www.drupal.org/user/16496"
  5357. },
  5358. {
  5359. "name": "Heine",
  5360. "homepage": "https://www.drupal.org/user/17943"
  5361. },
  5362. {
  5363. "name": "JacobSingh",
  5364. "homepage": "https://www.drupal.org/user/68912"
  5365. },
  5366. {
  5367. "name": "johnv",
  5368. "homepage": "https://www.drupal.org/user/591042"
  5369. },
  5370. {
  5371. "name": "jvandyk",
  5372. "homepage": "https://www.drupal.org/user/2375"
  5373. },
  5374. {
  5375. "name": "mfredrickson",
  5376. "homepage": "https://www.drupal.org/user/31994"
  5377. },
  5378. {
  5379. "name": "NancyDru",
  5380. "homepage": "https://www.drupal.org/user/101412"
  5381. },
  5382. {
  5383. "name": "q0rban",
  5384. "homepage": "https://www.drupal.org/user/31022"
  5385. }
  5386. ],
  5387. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5388. "homepage": "https://www.drupal.org/project/workflow",
  5389. "support": {
  5390. "source": "https://git.drupalcode.org/project/workflow"
  5391. }
  5392. },
  5393. {
  5394. "name": "drush/drush",
  5395. "version": "12.5.3",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/drush-ops/drush.git",
  5399. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  5404. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  5405. "shasum": ""
  5406. },
  5407. "require": {
  5408. "chi-teck/drupal-code-generator": "^3.0",
  5409. "composer-runtime-api": "^2.2",
  5410. "composer/semver": "^1.4 || ^3",
  5411. "consolidation/annotated-command": "^4.9.2",
  5412. "consolidation/config": "^2.1.2",
  5413. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5414. "consolidation/output-formatters": "^4.3.2",
  5415. "consolidation/robo": "^4.0.6",
  5416. "consolidation/site-alias": "^4",
  5417. "consolidation/site-process": "^5.2.0",
  5418. "ext-dom": "*",
  5419. "grasmash/yaml-cli": "^3.1",
  5420. "guzzlehttp/guzzle": "^7.0",
  5421. "league/container": "^4",
  5422. "php": ">=8.1",
  5423. "psy/psysh": "~0.11",
  5424. "symfony/event-dispatcher": "^6",
  5425. "symfony/filesystem": "^6.1",
  5426. "symfony/finder": "^6",
  5427. "symfony/var-dumper": "^6.0",
  5428. "symfony/yaml": "^6.0",
  5429. "webflo/drupal-finder": "^1.2"
  5430. },
  5431. "conflict": {
  5432. "drupal/core": "< 10.0",
  5433. "drupal/migrate_run": "*",
  5434. "drupal/migrate_tools": "<= 5"
  5435. },
  5436. "require-dev": {
  5437. "composer/installers": "^2",
  5438. "cweagans/composer-patches": "~1.0",
  5439. "drupal/core-recommended": "^10",
  5440. "drupal/semver_example": "2.3.0",
  5441. "phpunit/phpunit": "^9",
  5442. "rector/rector": "^0.12",
  5443. "squizlabs/php_codesniffer": "^3.7"
  5444. },
  5445. "bin": [
  5446. "drush"
  5447. ],
  5448. "type": "library",
  5449. "extra": {
  5450. "installer-paths": {
  5451. "sut/core": [
  5452. "type:drupal-core"
  5453. ],
  5454. "sut/libraries/{$name}": [
  5455. "type:drupal-library"
  5456. ],
  5457. "sut/modules/unish/{$name}": [
  5458. "drupal/devel"
  5459. ],
  5460. "sut/themes/unish/{$name}": [
  5461. "drupal/empty_theme"
  5462. ],
  5463. "sut/modules/contrib/{$name}": [
  5464. "type:drupal-module"
  5465. ],
  5466. "sut/profiles/contrib/{$name}": [
  5467. "type:drupal-profile"
  5468. ],
  5469. "sut/themes/contrib/{$name}": [
  5470. "type:drupal-theme"
  5471. ],
  5472. "sut/drush/contrib/{$name}": [
  5473. "type:drupal-drush"
  5474. ]
  5475. }
  5476. },
  5477. "autoload": {
  5478. "psr-4": {
  5479. "Drush\\": "src/"
  5480. }
  5481. },
  5482. "notification-url": "https://packagist.org/downloads/",
  5483. "license": [
  5484. "GPL-2.0-or-later"
  5485. ],
  5486. "authors": [
  5487. {
  5488. "name": "Moshe Weitzman",
  5489. "email": "weitzman@tejasa.com"
  5490. },
  5491. {
  5492. "name": "Owen Barton",
  5493. "email": "drupal@owenbarton.com"
  5494. },
  5495. {
  5496. "name": "Greg Anderson",
  5497. "email": "greg.1.anderson@greenknowe.org"
  5498. },
  5499. {
  5500. "name": "Jonathan Araña Cruz",
  5501. "email": "jonhattan@faita.net"
  5502. },
  5503. {
  5504. "name": "Jonathan Hedstrom",
  5505. "email": "jhedstrom@gmail.com"
  5506. },
  5507. {
  5508. "name": "Christopher Gervais",
  5509. "email": "chris@ergonlogic.com"
  5510. },
  5511. {
  5512. "name": "Dave Reid",
  5513. "email": "dave@davereid.net"
  5514. },
  5515. {
  5516. "name": "Damian Lee",
  5517. "email": "damiankloip@googlemail.com"
  5518. }
  5519. ],
  5520. "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.",
  5521. "homepage": "http://www.drush.org",
  5522. "support": {
  5523. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5524. "issues": "https://github.com/drush-ops/drush/issues",
  5525. "security": "https://github.com/drush-ops/drush/security/advisories",
  5526. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5527. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  5528. },
  5529. "funding": [
  5530. {
  5531. "url": "https://github.com/weitzman",
  5532. "type": "github"
  5533. }
  5534. ],
  5535. "time": "2024-08-02T11:57:29+00:00"
  5536. },
  5537. {
  5538. "name": "egulias/email-validator",
  5539. "version": "4.0.4",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/egulias/EmailValidator.git",
  5543. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5548. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "doctrine/lexer": "^2.0 || ^3.0",
  5553. "php": ">=8.1",
  5554. "symfony/polyfill-intl-idn": "^1.26"
  5555. },
  5556. "require-dev": {
  5557. "phpunit/phpunit": "^10.2",
  5558. "vimeo/psalm": "^5.12"
  5559. },
  5560. "suggest": {
  5561. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5562. },
  5563. "type": "library",
  5564. "extra": {
  5565. "branch-alias": {
  5566. "dev-master": "4.0.x-dev"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Egulias\\EmailValidator\\": "src"
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "MIT"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "Eduardo Gulias Davis"
  5581. }
  5582. ],
  5583. "description": "A library for validating emails against several RFCs",
  5584. "homepage": "https://github.com/egulias/EmailValidator",
  5585. "keywords": [
  5586. "email",
  5587. "emailvalidation",
  5588. "emailvalidator",
  5589. "validation",
  5590. "validator"
  5591. ],
  5592. "support": {
  5593. "issues": "https://github.com/egulias/EmailValidator/issues",
  5594. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  5595. },
  5596. "funding": [
  5597. {
  5598. "url": "https://github.com/egulias",
  5599. "type": "github"
  5600. }
  5601. ],
  5602. "time": "2025-03-06T22:45:56+00:00"
  5603. },
  5604. {
  5605. "name": "grasmash/expander",
  5606. "version": "3.0.0",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/grasmash/expander.git",
  5610. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  5615. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  5616. "shasum": ""
  5617. },
  5618. "require": {
  5619. "dflydev/dot-access-data": "^3.0.0",
  5620. "php": ">=8.0",
  5621. "psr/log": "^2 | ^3"
  5622. },
  5623. "require-dev": {
  5624. "greg-1-anderson/composer-test-scenarios": "^1",
  5625. "php-coveralls/php-coveralls": "^2.5",
  5626. "phpunit/phpunit": "^9",
  5627. "squizlabs/php_codesniffer": "^3.3"
  5628. },
  5629. "type": "library",
  5630. "extra": {
  5631. "branch-alias": {
  5632. "dev-master": "1.x-dev"
  5633. }
  5634. },
  5635. "autoload": {
  5636. "psr-4": {
  5637. "Grasmash\\Expander\\": "src/"
  5638. }
  5639. },
  5640. "notification-url": "https://packagist.org/downloads/",
  5641. "license": [
  5642. "MIT"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "Matthew Grasmick"
  5647. }
  5648. ],
  5649. "description": "Expands internal property references in PHP arrays file.",
  5650. "support": {
  5651. "issues": "https://github.com/grasmash/expander/issues",
  5652. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  5653. },
  5654. "time": "2022-05-10T13:14:49+00:00"
  5655. },
  5656. {
  5657. "name": "grasmash/yaml-cli",
  5658. "version": "3.2.1",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://github.com/grasmash/yaml-cli.git",
  5662. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5663. },
  5664. "dist": {
  5665. "type": "zip",
  5666. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5667. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5668. "shasum": ""
  5669. },
  5670. "require": {
  5671. "dflydev/dot-access-data": "^3",
  5672. "php": ">=8.0",
  5673. "symfony/console": "^6 || ^7",
  5674. "symfony/filesystem": "^6 || ^7",
  5675. "symfony/yaml": "^6 || ^7"
  5676. },
  5677. "require-dev": {
  5678. "php-coveralls/php-coveralls": "^2",
  5679. "phpunit/phpunit": "^9",
  5680. "squizlabs/php_codesniffer": "^3.0"
  5681. },
  5682. "bin": [
  5683. "bin/yaml-cli"
  5684. ],
  5685. "type": "library",
  5686. "extra": {
  5687. "branch-alias": {
  5688. "dev-master": "3.x-dev"
  5689. }
  5690. },
  5691. "autoload": {
  5692. "psr-4": {
  5693. "Grasmash\\YamlCli\\": "src/"
  5694. }
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "MIT"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Matthew Grasmick"
  5703. }
  5704. ],
  5705. "description": "A command line tool for reading and manipulating yaml files.",
  5706. "support": {
  5707. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5708. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5709. },
  5710. "time": "2024-04-23T02:10:57+00:00"
  5711. },
  5712. {
  5713. "name": "guzzlehttp/guzzle",
  5714. "version": "7.9.3",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/guzzle/guzzle.git",
  5718. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  5723. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "ext-json": "*",
  5728. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  5729. "guzzlehttp/psr7": "^2.7.0",
  5730. "php": "^7.2.5 || ^8.0",
  5731. "psr/http-client": "^1.0",
  5732. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5733. },
  5734. "provide": {
  5735. "psr/http-client-implementation": "1.0"
  5736. },
  5737. "require-dev": {
  5738. "bamarni/composer-bin-plugin": "^1.8.2",
  5739. "ext-curl": "*",
  5740. "guzzle/client-integration-tests": "3.0.2",
  5741. "php-http/message-factory": "^1.1",
  5742. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5743. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5744. },
  5745. "suggest": {
  5746. "ext-curl": "Required for CURL handler support",
  5747. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5748. "psr/log": "Required for using the Log middleware"
  5749. },
  5750. "type": "library",
  5751. "extra": {
  5752. "bamarni-bin": {
  5753. "bin-links": true,
  5754. "forward-command": false
  5755. }
  5756. },
  5757. "autoload": {
  5758. "files": [
  5759. "src/functions_include.php"
  5760. ],
  5761. "psr-4": {
  5762. "GuzzleHttp\\": "src/"
  5763. }
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "MIT"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Graham Campbell",
  5772. "email": "hello@gjcampbell.co.uk",
  5773. "homepage": "https://github.com/GrahamCampbell"
  5774. },
  5775. {
  5776. "name": "Michael Dowling",
  5777. "email": "mtdowling@gmail.com",
  5778. "homepage": "https://github.com/mtdowling"
  5779. },
  5780. {
  5781. "name": "Jeremy Lindblom",
  5782. "email": "jeremeamia@gmail.com",
  5783. "homepage": "https://github.com/jeremeamia"
  5784. },
  5785. {
  5786. "name": "George Mponos",
  5787. "email": "gmponos@gmail.com",
  5788. "homepage": "https://github.com/gmponos"
  5789. },
  5790. {
  5791. "name": "Tobias Nyholm",
  5792. "email": "tobias.nyholm@gmail.com",
  5793. "homepage": "https://github.com/Nyholm"
  5794. },
  5795. {
  5796. "name": "Márk Sági-Kazár",
  5797. "email": "mark.sagikazar@gmail.com",
  5798. "homepage": "https://github.com/sagikazarmark"
  5799. },
  5800. {
  5801. "name": "Tobias Schultze",
  5802. "email": "webmaster@tubo-world.de",
  5803. "homepage": "https://github.com/Tobion"
  5804. }
  5805. ],
  5806. "description": "Guzzle is a PHP HTTP client library",
  5807. "keywords": [
  5808. "client",
  5809. "curl",
  5810. "framework",
  5811. "http",
  5812. "http client",
  5813. "psr-18",
  5814. "psr-7",
  5815. "rest",
  5816. "web service"
  5817. ],
  5818. "support": {
  5819. "issues": "https://github.com/guzzle/guzzle/issues",
  5820. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  5821. },
  5822. "funding": [
  5823. {
  5824. "url": "https://github.com/GrahamCampbell",
  5825. "type": "github"
  5826. },
  5827. {
  5828. "url": "https://github.com/Nyholm",
  5829. "type": "github"
  5830. },
  5831. {
  5832. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5833. "type": "tidelift"
  5834. }
  5835. ],
  5836. "time": "2025-03-27T13:37:11+00:00"
  5837. },
  5838. {
  5839. "name": "guzzlehttp/promises",
  5840. "version": "2.2.0",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/guzzle/promises.git",
  5844. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  5849. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "php": "^7.2.5 || ^8.0"
  5854. },
  5855. "require-dev": {
  5856. "bamarni/composer-bin-plugin": "^1.8.2",
  5857. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  5858. },
  5859. "type": "library",
  5860. "extra": {
  5861. "bamarni-bin": {
  5862. "bin-links": true,
  5863. "forward-command": false
  5864. }
  5865. },
  5866. "autoload": {
  5867. "psr-4": {
  5868. "GuzzleHttp\\Promise\\": "src/"
  5869. }
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "MIT"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Graham Campbell",
  5878. "email": "hello@gjcampbell.co.uk",
  5879. "homepage": "https://github.com/GrahamCampbell"
  5880. },
  5881. {
  5882. "name": "Michael Dowling",
  5883. "email": "mtdowling@gmail.com",
  5884. "homepage": "https://github.com/mtdowling"
  5885. },
  5886. {
  5887. "name": "Tobias Nyholm",
  5888. "email": "tobias.nyholm@gmail.com",
  5889. "homepage": "https://github.com/Nyholm"
  5890. },
  5891. {
  5892. "name": "Tobias Schultze",
  5893. "email": "webmaster@tubo-world.de",
  5894. "homepage": "https://github.com/Tobion"
  5895. }
  5896. ],
  5897. "description": "Guzzle promises library",
  5898. "keywords": [
  5899. "promise"
  5900. ],
  5901. "support": {
  5902. "issues": "https://github.com/guzzle/promises/issues",
  5903. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  5904. },
  5905. "funding": [
  5906. {
  5907. "url": "https://github.com/GrahamCampbell",
  5908. "type": "github"
  5909. },
  5910. {
  5911. "url": "https://github.com/Nyholm",
  5912. "type": "github"
  5913. },
  5914. {
  5915. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5916. "type": "tidelift"
  5917. }
  5918. ],
  5919. "time": "2025-03-27T13:27:01+00:00"
  5920. },
  5921. {
  5922. "name": "guzzlehttp/psr7",
  5923. "version": "2.7.1",
  5924. "source": {
  5925. "type": "git",
  5926. "url": "https://github.com/guzzle/psr7.git",
  5927. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  5928. },
  5929. "dist": {
  5930. "type": "zip",
  5931. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  5932. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  5933. "shasum": ""
  5934. },
  5935. "require": {
  5936. "php": "^7.2.5 || ^8.0",
  5937. "psr/http-factory": "^1.0",
  5938. "psr/http-message": "^1.1 || ^2.0",
  5939. "ralouphie/getallheaders": "^3.0"
  5940. },
  5941. "provide": {
  5942. "psr/http-factory-implementation": "1.0",
  5943. "psr/http-message-implementation": "1.0"
  5944. },
  5945. "require-dev": {
  5946. "bamarni/composer-bin-plugin": "^1.8.2",
  5947. "http-interop/http-factory-tests": "0.9.0",
  5948. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  5949. },
  5950. "suggest": {
  5951. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5952. },
  5953. "type": "library",
  5954. "extra": {
  5955. "bamarni-bin": {
  5956. "bin-links": true,
  5957. "forward-command": false
  5958. }
  5959. },
  5960. "autoload": {
  5961. "psr-4": {
  5962. "GuzzleHttp\\Psr7\\": "src/"
  5963. }
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "Graham Campbell",
  5972. "email": "hello@gjcampbell.co.uk",
  5973. "homepage": "https://github.com/GrahamCampbell"
  5974. },
  5975. {
  5976. "name": "Michael Dowling",
  5977. "email": "mtdowling@gmail.com",
  5978. "homepage": "https://github.com/mtdowling"
  5979. },
  5980. {
  5981. "name": "George Mponos",
  5982. "email": "gmponos@gmail.com",
  5983. "homepage": "https://github.com/gmponos"
  5984. },
  5985. {
  5986. "name": "Tobias Nyholm",
  5987. "email": "tobias.nyholm@gmail.com",
  5988. "homepage": "https://github.com/Nyholm"
  5989. },
  5990. {
  5991. "name": "Márk Sági-Kazár",
  5992. "email": "mark.sagikazar@gmail.com",
  5993. "homepage": "https://github.com/sagikazarmark"
  5994. },
  5995. {
  5996. "name": "Tobias Schultze",
  5997. "email": "webmaster@tubo-world.de",
  5998. "homepage": "https://github.com/Tobion"
  5999. },
  6000. {
  6001. "name": "Márk Sági-Kazár",
  6002. "email": "mark.sagikazar@gmail.com",
  6003. "homepage": "https://sagikazarmark.hu"
  6004. }
  6005. ],
  6006. "description": "PSR-7 message implementation that also provides common utility methods",
  6007. "keywords": [
  6008. "http",
  6009. "message",
  6010. "psr-7",
  6011. "request",
  6012. "response",
  6013. "stream",
  6014. "uri",
  6015. "url"
  6016. ],
  6017. "support": {
  6018. "issues": "https://github.com/guzzle/psr7/issues",
  6019. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  6020. },
  6021. "funding": [
  6022. {
  6023. "url": "https://github.com/GrahamCampbell",
  6024. "type": "github"
  6025. },
  6026. {
  6027. "url": "https://github.com/Nyholm",
  6028. "type": "github"
  6029. },
  6030. {
  6031. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6032. "type": "tidelift"
  6033. }
  6034. ],
  6035. "time": "2025-03-27T12:30:47+00:00"
  6036. },
  6037. {
  6038. "name": "kint-php/kint",
  6039. "version": "5.1.1",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/kint-php/kint.git",
  6043. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6048. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=7.1"
  6053. },
  6054. "require-dev": {
  6055. "friendsofphp/php-cs-fixer": "^3",
  6056. "phpspec/prophecy-phpunit": "^2",
  6057. "phpunit/phpunit": "^9",
  6058. "seld/phar-utils": "^1",
  6059. "symfony/finder": ">=4.0",
  6060. "vimeo/psalm": "^5"
  6061. },
  6062. "suggest": {
  6063. "kint-php/kint-helpers": "Provides extra helper functions",
  6064. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6065. },
  6066. "type": "library",
  6067. "autoload": {
  6068. "files": [
  6069. "init.php"
  6070. ],
  6071. "psr-4": {
  6072. "Kint\\": "src/"
  6073. }
  6074. },
  6075. "notification-url": "https://packagist.org/downloads/",
  6076. "license": [
  6077. "MIT"
  6078. ],
  6079. "authors": [
  6080. {
  6081. "name": "Jonathan Vollebregt",
  6082. "homepage": "https://github.com/jnvsor"
  6083. },
  6084. {
  6085. "name": "Contributors",
  6086. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6087. }
  6088. ],
  6089. "description": "Kint - debugging tool for PHP developers",
  6090. "homepage": "https://kint-php.github.io/kint/",
  6091. "keywords": [
  6092. "debug",
  6093. "kint",
  6094. "php"
  6095. ],
  6096. "support": {
  6097. "issues": "https://github.com/kint-php/kint/issues",
  6098. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6099. },
  6100. "time": "2024-04-26T14:20:09+00:00"
  6101. },
  6102. {
  6103. "name": "league/container",
  6104. "version": "4.2.2",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/thephpleague/container.git",
  6108. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88",
  6113. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88",
  6114. "shasum": ""
  6115. },
  6116. "require": {
  6117. "php": "^7.2 || ^8.0",
  6118. "psr/container": "^1.1 || ^2.0"
  6119. },
  6120. "provide": {
  6121. "psr/container-implementation": "^1.0"
  6122. },
  6123. "replace": {
  6124. "orno/di": "~2.0"
  6125. },
  6126. "require-dev": {
  6127. "nette/php-generator": "^3.4",
  6128. "nikic/php-parser": "^4.10",
  6129. "phpstan/phpstan": "^0.12.47",
  6130. "phpunit/phpunit": "^8.5.17",
  6131. "roave/security-advisories": "dev-latest",
  6132. "scrutinizer/ocular": "^1.8",
  6133. "squizlabs/php_codesniffer": "^3.6"
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-master": "4.x-dev",
  6139. "dev-4.x": "4.x-dev",
  6140. "dev-3.x": "3.x-dev",
  6141. "dev-2.x": "2.x-dev",
  6142. "dev-1.x": "1.x-dev"
  6143. }
  6144. },
  6145. "autoload": {
  6146. "psr-4": {
  6147. "League\\Container\\": "src"
  6148. }
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Phil Bennett",
  6157. "email": "mail@philbennett.co.uk",
  6158. "role": "Developer"
  6159. }
  6160. ],
  6161. "description": "A fast and intuitive dependency injection container.",
  6162. "homepage": "https://github.com/thephpleague/container",
  6163. "keywords": [
  6164. "container",
  6165. "dependency",
  6166. "di",
  6167. "injection",
  6168. "league",
  6169. "provider",
  6170. "service"
  6171. ],
  6172. "support": {
  6173. "issues": "https://github.com/thephpleague/container/issues",
  6174. "source": "https://github.com/thephpleague/container/tree/4.2.2"
  6175. },
  6176. "funding": [
  6177. {
  6178. "url": "https://github.com/philipobenito",
  6179. "type": "github"
  6180. }
  6181. ],
  6182. "time": "2024-03-13T13:12:53+00:00"
  6183. },
  6184. {
  6185. "name": "masterminds/html5",
  6186. "version": "2.9.0",
  6187. "source": {
  6188. "type": "git",
  6189. "url": "https://github.com/Masterminds/html5-php.git",
  6190. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  6191. },
  6192. "dist": {
  6193. "type": "zip",
  6194. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  6195. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  6196. "shasum": ""
  6197. },
  6198. "require": {
  6199. "ext-dom": "*",
  6200. "php": ">=5.3.0"
  6201. },
  6202. "require-dev": {
  6203. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "branch-alias": {
  6208. "dev-master": "2.7-dev"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "psr-4": {
  6213. "Masterminds\\": "src"
  6214. }
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "license": [
  6218. "MIT"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "Matt Butcher",
  6223. "email": "technosophos@gmail.com"
  6224. },
  6225. {
  6226. "name": "Matt Farina",
  6227. "email": "matt@mattfarina.com"
  6228. },
  6229. {
  6230. "name": "Asmir Mustafic",
  6231. "email": "goetas@gmail.com"
  6232. }
  6233. ],
  6234. "description": "An HTML5 parser and serializer.",
  6235. "homepage": "http://masterminds.github.io/html5-php",
  6236. "keywords": [
  6237. "HTML5",
  6238. "dom",
  6239. "html",
  6240. "parser",
  6241. "querypath",
  6242. "serializer",
  6243. "xml"
  6244. ],
  6245. "support": {
  6246. "issues": "https://github.com/Masterminds/html5-php/issues",
  6247. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  6248. },
  6249. "time": "2024-03-31T07:05:07+00:00"
  6250. },
  6251. {
  6252. "name": "mck89/peast",
  6253. "version": "v1.17.2",
  6254. "source": {
  6255. "type": "git",
  6256. "url": "https://github.com/mck89/peast.git",
  6257. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea"
  6258. },
  6259. "dist": {
  6260. "type": "zip",
  6261. "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea",
  6262. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea",
  6263. "shasum": ""
  6264. },
  6265. "require": {
  6266. "ext-mbstring": "*",
  6267. "php": ">=5.4.0"
  6268. },
  6269. "require-dev": {
  6270. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-master": "1.17.2-dev"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "psr-4": {
  6280. "Peast\\": "lib/Peast/"
  6281. }
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "BSD-3-Clause"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Marco Marchiò",
  6290. "email": "marco.mm89@gmail.com"
  6291. }
  6292. ],
  6293. "description": "Peast is PHP library that generates AST for JavaScript code",
  6294. "support": {
  6295. "issues": "https://github.com/mck89/peast/issues",
  6296. "source": "https://github.com/mck89/peast/tree/v1.17.2"
  6297. },
  6298. "time": "2025-07-01T09:30:45+00:00"
  6299. },
  6300. {
  6301. "name": "mglaman/phpstan-drupal",
  6302. "version": "1.2.12",
  6303. "source": {
  6304. "type": "git",
  6305. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6306. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6307. },
  6308. "dist": {
  6309. "type": "zip",
  6310. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6311. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6312. "shasum": ""
  6313. },
  6314. "require": {
  6315. "php": "^8.1",
  6316. "phpstan/phpstan": "^1.10.56",
  6317. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6318. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6319. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6320. "webflo/drupal-finder": "^1.2"
  6321. },
  6322. "require-dev": {
  6323. "behat/mink": "^1.8",
  6324. "composer/installers": "^1.9",
  6325. "drupal/core-recommended": "^10",
  6326. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6327. "phpstan/extension-installer": "^1.1",
  6328. "phpstan/phpstan-strict-rules": "^1.0",
  6329. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6330. "slevomat/coding-standard": "^7.1",
  6331. "squizlabs/php_codesniffer": "^3.3",
  6332. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6333. },
  6334. "suggest": {
  6335. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6336. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6337. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6338. },
  6339. "type": "phpstan-extension",
  6340. "extra": {
  6341. "branch-alias": {
  6342. "dev-main": "1.0-dev"
  6343. },
  6344. "installer-paths": {
  6345. "tests/fixtures/drupal/core": [
  6346. "type:drupal-core"
  6347. ],
  6348. "tests/fixtures/drupal/libraries/{$name}": [
  6349. "type:drupal-library"
  6350. ],
  6351. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6352. "type:drupal-module"
  6353. ],
  6354. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6355. "type:drupal-profile"
  6356. ],
  6357. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6358. "type:drupal-theme"
  6359. ]
  6360. },
  6361. "phpstan": {
  6362. "includes": [
  6363. "extension.neon",
  6364. "rules.neon"
  6365. ]
  6366. }
  6367. },
  6368. "autoload": {
  6369. "psr-4": {
  6370. "mglaman\\PHPStanDrupal\\": "src/"
  6371. }
  6372. },
  6373. "notification-url": "https://packagist.org/downloads/",
  6374. "license": [
  6375. "MIT"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "Matt Glaman",
  6380. "email": "nmd.matt@gmail.com"
  6381. }
  6382. ],
  6383. "description": "Drupal extension and rules for PHPStan",
  6384. "support": {
  6385. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6386. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://github.com/mglaman",
  6391. "type": "github"
  6392. },
  6393. {
  6394. "url": "https://opencollective.com/phpstan-drupal",
  6395. "type": "open_collective"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2024-08-07T21:15:21+00:00"
  6403. },
  6404. {
  6405. "name": "nikic/php-parser",
  6406. "version": "v5.2.0",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/nikic/PHP-Parser.git",
  6410. "reference": "23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb",
  6415. "reference": "23c79fbbfb725fb92af9bcf41065c8e9a0d49ddb",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "ext-ctype": "*",
  6420. "ext-json": "*",
  6421. "ext-tokenizer": "*",
  6422. "php": ">=7.4"
  6423. },
  6424. "require-dev": {
  6425. "ircmaxell/php-yacc": "^0.0.7",
  6426. "phpunit/phpunit": "^9.0"
  6427. },
  6428. "bin": [
  6429. "bin/php-parse"
  6430. ],
  6431. "type": "library",
  6432. "extra": {
  6433. "branch-alias": {
  6434. "dev-master": "5.0-dev"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "psr-4": {
  6439. "PhpParser\\": "lib/PhpParser"
  6440. }
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "BSD-3-Clause"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Nikita Popov"
  6449. }
  6450. ],
  6451. "description": "A PHP parser written in PHP",
  6452. "keywords": [
  6453. "parser",
  6454. "php"
  6455. ],
  6456. "support": {
  6457. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6458. "source": "https://github.com/nikic/PHP-Parser/tree/v5.2.0"
  6459. },
  6460. "time": "2024-09-15T16:40:33+00:00"
  6461. },
  6462. {
  6463. "name": "pear/archive_tar",
  6464. "version": "1.5.0",
  6465. "source": {
  6466. "type": "git",
  6467. "url": "https://github.com/pear/Archive_Tar.git",
  6468. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  6469. },
  6470. "dist": {
  6471. "type": "zip",
  6472. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  6473. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  6474. "shasum": ""
  6475. },
  6476. "require": {
  6477. "pear/pear-core-minimal": "^1.10.0alpha2",
  6478. "php": ">=5.2.0"
  6479. },
  6480. "require-dev": {
  6481. "phpunit/phpunit": "*"
  6482. },
  6483. "suggest": {
  6484. "ext-bz2": "Bz2 compression support.",
  6485. "ext-xz": "Lzma2 compression support.",
  6486. "ext-zlib": "Gzip compression support."
  6487. },
  6488. "type": "library",
  6489. "extra": {
  6490. "branch-alias": {
  6491. "dev-master": "1.4.x-dev"
  6492. }
  6493. },
  6494. "autoload": {
  6495. "psr-0": {
  6496. "Archive_Tar": ""
  6497. }
  6498. },
  6499. "notification-url": "https://packagist.org/downloads/",
  6500. "include-path": [
  6501. "./"
  6502. ],
  6503. "license": [
  6504. "BSD-2-Clause"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Vincent Blavet",
  6509. "email": "vincent@phpconcept.net"
  6510. },
  6511. {
  6512. "name": "Greg Beaver",
  6513. "email": "greg@chiaraquartet.net"
  6514. },
  6515. {
  6516. "name": "Michiel Rook",
  6517. "email": "mrook@php.net"
  6518. }
  6519. ],
  6520. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6521. "homepage": "https://github.com/pear/Archive_Tar",
  6522. "keywords": [
  6523. "archive",
  6524. "tar"
  6525. ],
  6526. "support": {
  6527. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6528. "source": "https://github.com/pear/Archive_Tar"
  6529. },
  6530. "time": "2024-03-16T16:21:40+00:00"
  6531. },
  6532. {
  6533. "name": "pear/console_getopt",
  6534. "version": "v1.4.3",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/pear/Console_Getopt.git",
  6538. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6543. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6544. "shasum": ""
  6545. },
  6546. "type": "library",
  6547. "autoload": {
  6548. "psr-0": {
  6549. "Console": "./"
  6550. }
  6551. },
  6552. "notification-url": "https://packagist.org/downloads/",
  6553. "include-path": [
  6554. "./"
  6555. ],
  6556. "license": [
  6557. "BSD-2-Clause"
  6558. ],
  6559. "authors": [
  6560. {
  6561. "name": "Andrei Zmievski",
  6562. "email": "andrei@php.net",
  6563. "role": "Lead"
  6564. },
  6565. {
  6566. "name": "Stig Bakken",
  6567. "email": "stig@php.net",
  6568. "role": "Developer"
  6569. },
  6570. {
  6571. "name": "Greg Beaver",
  6572. "email": "cellog@php.net",
  6573. "role": "Helper"
  6574. }
  6575. ],
  6576. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6577. "support": {
  6578. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6579. "source": "https://github.com/pear/Console_Getopt"
  6580. },
  6581. "time": "2019-11-20T18:27:48+00:00"
  6582. },
  6583. {
  6584. "name": "pear/pear-core-minimal",
  6585. "version": "v1.10.16",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/pear/pear-core-minimal.git",
  6589. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  6594. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "pear/console_getopt": "~1.4",
  6599. "pear/pear_exception": "~1.0",
  6600. "php": ">=5.4"
  6601. },
  6602. "replace": {
  6603. "rsky/pear-core-min": "self.version"
  6604. },
  6605. "type": "library",
  6606. "autoload": {
  6607. "classmap": [
  6608. "src/"
  6609. ]
  6610. },
  6611. "notification-url": "https://packagist.org/downloads/",
  6612. "include-path": [
  6613. "src/"
  6614. ],
  6615. "license": [
  6616. "BSD-3-Clause"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "Christian Weiske",
  6621. "email": "cweiske@php.net",
  6622. "role": "Lead"
  6623. }
  6624. ],
  6625. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6626. "support": {
  6627. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6628. "source": "https://github.com/pear/pear-core-minimal"
  6629. },
  6630. "time": "2024-11-24T22:27:58+00:00"
  6631. },
  6632. {
  6633. "name": "pear/pear_exception",
  6634. "version": "v1.0.2",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://github.com/pear/PEAR_Exception.git",
  6638. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6643. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6644. "shasum": ""
  6645. },
  6646. "require": {
  6647. "php": ">=5.2.0"
  6648. },
  6649. "require-dev": {
  6650. "phpunit/phpunit": "<9"
  6651. },
  6652. "type": "class",
  6653. "extra": {
  6654. "branch-alias": {
  6655. "dev-master": "1.0.x-dev"
  6656. }
  6657. },
  6658. "autoload": {
  6659. "classmap": [
  6660. "PEAR/"
  6661. ]
  6662. },
  6663. "notification-url": "https://packagist.org/downloads/",
  6664. "include-path": [
  6665. "."
  6666. ],
  6667. "license": [
  6668. "BSD-2-Clause"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Helgi Thormar",
  6673. "email": "dufuz@php.net"
  6674. },
  6675. {
  6676. "name": "Greg Beaver",
  6677. "email": "cellog@php.net"
  6678. }
  6679. ],
  6680. "description": "The PEAR Exception base class.",
  6681. "homepage": "https://github.com/pear/PEAR_Exception",
  6682. "keywords": [
  6683. "exception"
  6684. ],
  6685. "support": {
  6686. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6687. "source": "https://github.com/pear/PEAR_Exception"
  6688. },
  6689. "time": "2021-03-21T15:43:46+00:00"
  6690. },
  6691. {
  6692. "name": "phootwork/collection",
  6693. "version": "v3.2.2",
  6694. "source": {
  6695. "type": "git",
  6696. "url": "https://github.com/phootwork/collection.git",
  6697. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6698. },
  6699. "dist": {
  6700. "type": "zip",
  6701. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6702. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6703. "shasum": ""
  6704. },
  6705. "require": {
  6706. "phootwork/lang": "^3.0",
  6707. "php": ">=8.0"
  6708. },
  6709. "type": "library",
  6710. "autoload": {
  6711. "psr-4": {
  6712. "phootwork\\collection\\": ""
  6713. }
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Thomas Gossmann",
  6722. "homepage": "http://gos.si"
  6723. }
  6724. ],
  6725. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6726. "homepage": "https://phootwork.github.io/collection/",
  6727. "keywords": [
  6728. "Array object",
  6729. "Text object",
  6730. "collection",
  6731. "collections",
  6732. "json",
  6733. "list",
  6734. "map",
  6735. "queue",
  6736. "set",
  6737. "stack",
  6738. "xml"
  6739. ],
  6740. "support": {
  6741. "issues": "https://github.com/phootwork/phootwork/issues",
  6742. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  6743. },
  6744. "time": "2022-08-27T12:51:24+00:00"
  6745. },
  6746. {
  6747. "name": "phootwork/lang",
  6748. "version": "v3.2.2",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/phootwork/lang.git",
  6752. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  6757. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "php": ">=8.0",
  6762. "symfony/polyfill-mbstring": "^1.12",
  6763. "symfony/polyfill-php81": "^1.22"
  6764. },
  6765. "type": "library",
  6766. "autoload": {
  6767. "psr-4": {
  6768. "phootwork\\lang\\": ""
  6769. }
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Thomas Gossmann",
  6778. "homepage": "http://gos.si"
  6779. }
  6780. ],
  6781. "description": "Missing PHP language constructs",
  6782. "homepage": "https://phootwork.github.io/lang/",
  6783. "keywords": [
  6784. "array",
  6785. "comparator",
  6786. "comparison",
  6787. "string"
  6788. ],
  6789. "support": {
  6790. "issues": "https://github.com/phootwork/phootwork/issues",
  6791. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  6792. },
  6793. "time": "2023-05-26T05:37:59+00:00"
  6794. },
  6795. {
  6796. "name": "phpowermove/docblock",
  6797. "version": "v4.0",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/phpowermove/docblock.git",
  6801. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6806. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6807. "shasum": ""
  6808. },
  6809. "require": {
  6810. "phootwork/collection": "^3.0",
  6811. "phootwork/lang": "^3.0",
  6812. "php": ">=8.0"
  6813. },
  6814. "require-dev": {
  6815. "phootwork/php-cs-fixer-config": "^0.4",
  6816. "phpunit/phpunit": "^9.0",
  6817. "psalm/phar": "^4.3"
  6818. },
  6819. "type": "library",
  6820. "autoload": {
  6821. "psr-4": {
  6822. "phpowermove\\docblock\\": "src/"
  6823. }
  6824. },
  6825. "notification-url": "https://packagist.org/downloads/",
  6826. "license": [
  6827. "MIT"
  6828. ],
  6829. "authors": [
  6830. {
  6831. "name": "Thomas Gossmann",
  6832. "homepage": "http://gos.si"
  6833. }
  6834. ],
  6835. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6836. "keywords": [
  6837. "docblock",
  6838. "generator",
  6839. "parser"
  6840. ],
  6841. "support": {
  6842. "issues": "https://github.com/phpowermove/docblock/issues",
  6843. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6844. },
  6845. "time": "2021-09-22T16:57:06+00:00"
  6846. },
  6847. {
  6848. "name": "phpstan/phpstan",
  6849. "version": "1.12.3",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/phpstan/phpstan.git",
  6853. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6858. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6859. "shasum": ""
  6860. },
  6861. "require": {
  6862. "php": "^7.2|^8.0"
  6863. },
  6864. "conflict": {
  6865. "phpstan/phpstan-shim": "*"
  6866. },
  6867. "bin": [
  6868. "phpstan",
  6869. "phpstan.phar"
  6870. ],
  6871. "type": "library",
  6872. "autoload": {
  6873. "files": [
  6874. "bootstrap.php"
  6875. ]
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "description": "PHPStan - PHP Static Analysis Tool",
  6882. "keywords": [
  6883. "dev",
  6884. "static analysis"
  6885. ],
  6886. "support": {
  6887. "docs": "https://phpstan.org/user-guide/getting-started",
  6888. "forum": "https://github.com/phpstan/phpstan/discussions",
  6889. "issues": "https://github.com/phpstan/phpstan/issues",
  6890. "security": "https://github.com/phpstan/phpstan/security/policy",
  6891. "source": "https://github.com/phpstan/phpstan-src"
  6892. },
  6893. "funding": [
  6894. {
  6895. "url": "https://github.com/ondrejmirtes",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://github.com/phpstan",
  6900. "type": "github"
  6901. }
  6902. ],
  6903. "time": "2024-09-09T08:10:35+00:00"
  6904. },
  6905. {
  6906. "name": "phpstan/phpstan-deprecation-rules",
  6907. "version": "1.2.1",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6911. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6916. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": "^7.2 || ^8.0",
  6921. "phpstan/phpstan": "^1.12"
  6922. },
  6923. "require-dev": {
  6924. "php-parallel-lint/php-parallel-lint": "^1.2",
  6925. "phpstan/phpstan-phpunit": "^1.0",
  6926. "phpunit/phpunit": "^9.5"
  6927. },
  6928. "type": "phpstan-extension",
  6929. "extra": {
  6930. "phpstan": {
  6931. "includes": [
  6932. "rules.neon"
  6933. ]
  6934. }
  6935. },
  6936. "autoload": {
  6937. "psr-4": {
  6938. "PHPStan\\": "src/"
  6939. }
  6940. },
  6941. "notification-url": "https://packagist.org/downloads/",
  6942. "license": [
  6943. "MIT"
  6944. ],
  6945. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6946. "support": {
  6947. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6948. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  6949. },
  6950. "time": "2024-09-11T15:52:35+00:00"
  6951. },
  6952. {
  6953. "name": "psr/cache",
  6954. "version": "3.0.0",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/php-fig/cache.git",
  6958. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6963. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=8.0.0"
  6968. },
  6969. "type": "library",
  6970. "extra": {
  6971. "branch-alias": {
  6972. "dev-master": "1.0.x-dev"
  6973. }
  6974. },
  6975. "autoload": {
  6976. "psr-4": {
  6977. "Psr\\Cache\\": "src/"
  6978. }
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "PHP-FIG",
  6987. "homepage": "https://www.php-fig.org/"
  6988. }
  6989. ],
  6990. "description": "Common interface for caching libraries",
  6991. "keywords": [
  6992. "cache",
  6993. "psr",
  6994. "psr-6"
  6995. ],
  6996. "support": {
  6997. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6998. },
  6999. "time": "2021-02-03T23:26:27+00:00"
  7000. },
  7001. {
  7002. "name": "psr/container",
  7003. "version": "2.0.2",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/php-fig/container.git",
  7007. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7012. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7013. "shasum": ""
  7014. },
  7015. "require": {
  7016. "php": ">=7.4.0"
  7017. },
  7018. "type": "library",
  7019. "extra": {
  7020. "branch-alias": {
  7021. "dev-master": "2.0.x-dev"
  7022. }
  7023. },
  7024. "autoload": {
  7025. "psr-4": {
  7026. "Psr\\Container\\": "src/"
  7027. }
  7028. },
  7029. "notification-url": "https://packagist.org/downloads/",
  7030. "license": [
  7031. "MIT"
  7032. ],
  7033. "authors": [
  7034. {
  7035. "name": "PHP-FIG",
  7036. "homepage": "https://www.php-fig.org/"
  7037. }
  7038. ],
  7039. "description": "Common Container Interface (PHP FIG PSR-11)",
  7040. "homepage": "https://github.com/php-fig/container",
  7041. "keywords": [
  7042. "PSR-11",
  7043. "container",
  7044. "container-interface",
  7045. "container-interop",
  7046. "psr"
  7047. ],
  7048. "support": {
  7049. "issues": "https://github.com/php-fig/container/issues",
  7050. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7051. },
  7052. "time": "2021-11-05T16:47:00+00:00"
  7053. },
  7054. {
  7055. "name": "psr/event-dispatcher",
  7056. "version": "1.0.0",
  7057. "source": {
  7058. "type": "git",
  7059. "url": "https://github.com/php-fig/event-dispatcher.git",
  7060. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7061. },
  7062. "dist": {
  7063. "type": "zip",
  7064. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7065. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7066. "shasum": ""
  7067. },
  7068. "require": {
  7069. "php": ">=7.2.0"
  7070. },
  7071. "type": "library",
  7072. "extra": {
  7073. "branch-alias": {
  7074. "dev-master": "1.0.x-dev"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Psr\\EventDispatcher\\": "src/"
  7080. }
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "PHP-FIG",
  7089. "homepage": "http://www.php-fig.org/"
  7090. }
  7091. ],
  7092. "description": "Standard interfaces for event handling.",
  7093. "keywords": [
  7094. "events",
  7095. "psr",
  7096. "psr-14"
  7097. ],
  7098. "support": {
  7099. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7100. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7101. },
  7102. "time": "2019-01-08T18:20:26+00:00"
  7103. },
  7104. {
  7105. "name": "psr/http-client",
  7106. "version": "1.0.3",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/php-fig/http-client.git",
  7110. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7115. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "php": "^7.0 || ^8.0",
  7120. "psr/http-message": "^1.0 || ^2.0"
  7121. },
  7122. "type": "library",
  7123. "extra": {
  7124. "branch-alias": {
  7125. "dev-master": "1.0.x-dev"
  7126. }
  7127. },
  7128. "autoload": {
  7129. "psr-4": {
  7130. "Psr\\Http\\Client\\": "src/"
  7131. }
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "MIT"
  7136. ],
  7137. "authors": [
  7138. {
  7139. "name": "PHP-FIG",
  7140. "homepage": "https://www.php-fig.org/"
  7141. }
  7142. ],
  7143. "description": "Common interface for HTTP clients",
  7144. "homepage": "https://github.com/php-fig/http-client",
  7145. "keywords": [
  7146. "http",
  7147. "http-client",
  7148. "psr",
  7149. "psr-18"
  7150. ],
  7151. "support": {
  7152. "source": "https://github.com/php-fig/http-client"
  7153. },
  7154. "time": "2023-09-23T14:17:50+00:00"
  7155. },
  7156. {
  7157. "name": "psr/http-factory",
  7158. "version": "1.1.0",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/php-fig/http-factory.git",
  7162. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7167. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": ">=7.1",
  7172. "psr/http-message": "^1.0 || ^2.0"
  7173. },
  7174. "type": "library",
  7175. "extra": {
  7176. "branch-alias": {
  7177. "dev-master": "1.0.x-dev"
  7178. }
  7179. },
  7180. "autoload": {
  7181. "psr-4": {
  7182. "Psr\\Http\\Message\\": "src/"
  7183. }
  7184. },
  7185. "notification-url": "https://packagist.org/downloads/",
  7186. "license": [
  7187. "MIT"
  7188. ],
  7189. "authors": [
  7190. {
  7191. "name": "PHP-FIG",
  7192. "homepage": "https://www.php-fig.org/"
  7193. }
  7194. ],
  7195. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7196. "keywords": [
  7197. "factory",
  7198. "http",
  7199. "message",
  7200. "psr",
  7201. "psr-17",
  7202. "psr-7",
  7203. "request",
  7204. "response"
  7205. ],
  7206. "support": {
  7207. "source": "https://github.com/php-fig/http-factory"
  7208. },
  7209. "time": "2024-04-15T12:06:14+00:00"
  7210. },
  7211. {
  7212. "name": "psr/http-message",
  7213. "version": "2.0",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/php-fig/http-message.git",
  7217. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7222. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": "^7.2 || ^8.0"
  7227. },
  7228. "type": "library",
  7229. "extra": {
  7230. "branch-alias": {
  7231. "dev-master": "2.0.x-dev"
  7232. }
  7233. },
  7234. "autoload": {
  7235. "psr-4": {
  7236. "Psr\\Http\\Message\\": "src/"
  7237. }
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "PHP-FIG",
  7246. "homepage": "https://www.php-fig.org/"
  7247. }
  7248. ],
  7249. "description": "Common interface for HTTP messages",
  7250. "homepage": "https://github.com/php-fig/http-message",
  7251. "keywords": [
  7252. "http",
  7253. "http-message",
  7254. "psr",
  7255. "psr-7",
  7256. "request",
  7257. "response"
  7258. ],
  7259. "support": {
  7260. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7261. },
  7262. "time": "2023-04-04T09:54:51+00:00"
  7263. },
  7264. {
  7265. "name": "psr/log",
  7266. "version": "3.0.2",
  7267. "source": {
  7268. "type": "git",
  7269. "url": "https://github.com/php-fig/log.git",
  7270. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7271. },
  7272. "dist": {
  7273. "type": "zip",
  7274. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7275. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7276. "shasum": ""
  7277. },
  7278. "require": {
  7279. "php": ">=8.0.0"
  7280. },
  7281. "type": "library",
  7282. "extra": {
  7283. "branch-alias": {
  7284. "dev-master": "3.x-dev"
  7285. }
  7286. },
  7287. "autoload": {
  7288. "psr-4": {
  7289. "Psr\\Log\\": "src"
  7290. }
  7291. },
  7292. "notification-url": "https://packagist.org/downloads/",
  7293. "license": [
  7294. "MIT"
  7295. ],
  7296. "authors": [
  7297. {
  7298. "name": "PHP-FIG",
  7299. "homepage": "https://www.php-fig.org/"
  7300. }
  7301. ],
  7302. "description": "Common interface for logging libraries",
  7303. "homepage": "https://github.com/php-fig/log",
  7304. "keywords": [
  7305. "log",
  7306. "psr",
  7307. "psr-3"
  7308. ],
  7309. "support": {
  7310. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7311. },
  7312. "time": "2024-09-11T13:17:53+00:00"
  7313. },
  7314. {
  7315. "name": "psy/psysh",
  7316. "version": "v0.12.4",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/bobthecow/psysh.git",
  7320. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  7325. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "ext-json": "*",
  7330. "ext-tokenizer": "*",
  7331. "nikic/php-parser": "^5.0 || ^4.0",
  7332. "php": "^8.0 || ^7.4",
  7333. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7334. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7335. },
  7336. "conflict": {
  7337. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7338. },
  7339. "require-dev": {
  7340. "bamarni/composer-bin-plugin": "^1.2"
  7341. },
  7342. "suggest": {
  7343. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7344. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7345. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7346. },
  7347. "bin": [
  7348. "bin/psysh"
  7349. ],
  7350. "type": "library",
  7351. "extra": {
  7352. "branch-alias": {
  7353. "dev-main": "0.12.x-dev"
  7354. },
  7355. "bamarni-bin": {
  7356. "bin-links": false,
  7357. "forward-command": false
  7358. }
  7359. },
  7360. "autoload": {
  7361. "files": [
  7362. "src/functions.php"
  7363. ],
  7364. "psr-4": {
  7365. "Psy\\": "src/"
  7366. }
  7367. },
  7368. "notification-url": "https://packagist.org/downloads/",
  7369. "license": [
  7370. "MIT"
  7371. ],
  7372. "authors": [
  7373. {
  7374. "name": "Justin Hileman",
  7375. "email": "justin@justinhileman.info",
  7376. "homepage": "http://justinhileman.com"
  7377. }
  7378. ],
  7379. "description": "An interactive shell for modern PHP.",
  7380. "homepage": "http://psysh.org",
  7381. "keywords": [
  7382. "REPL",
  7383. "console",
  7384. "interactive",
  7385. "shell"
  7386. ],
  7387. "support": {
  7388. "issues": "https://github.com/bobthecow/psysh/issues",
  7389. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  7390. },
  7391. "time": "2024-06-10T01:18:23+00:00"
  7392. },
  7393. {
  7394. "name": "ralouphie/getallheaders",
  7395. "version": "3.0.3",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/ralouphie/getallheaders.git",
  7399. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7404. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7405. "shasum": ""
  7406. },
  7407. "require": {
  7408. "php": ">=5.6"
  7409. },
  7410. "require-dev": {
  7411. "php-coveralls/php-coveralls": "^2.1",
  7412. "phpunit/phpunit": "^5 || ^6.5"
  7413. },
  7414. "type": "library",
  7415. "autoload": {
  7416. "files": [
  7417. "src/getallheaders.php"
  7418. ]
  7419. },
  7420. "notification-url": "https://packagist.org/downloads/",
  7421. "license": [
  7422. "MIT"
  7423. ],
  7424. "authors": [
  7425. {
  7426. "name": "Ralph Khattar",
  7427. "email": "ralph.khattar@gmail.com"
  7428. }
  7429. ],
  7430. "description": "A polyfill for getallheaders.",
  7431. "support": {
  7432. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7433. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7434. },
  7435. "time": "2019-03-08T08:55:37+00:00"
  7436. },
  7437. {
  7438. "name": "sebastian/diff",
  7439. "version": "4.0.6",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/sebastianbergmann/diff.git",
  7443. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7448. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "php": ">=7.3"
  7453. },
  7454. "require-dev": {
  7455. "phpunit/phpunit": "^9.3",
  7456. "symfony/process": "^4.2 || ^5"
  7457. },
  7458. "type": "library",
  7459. "extra": {
  7460. "branch-alias": {
  7461. "dev-master": "4.0-dev"
  7462. }
  7463. },
  7464. "autoload": {
  7465. "classmap": [
  7466. "src/"
  7467. ]
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "BSD-3-Clause"
  7472. ],
  7473. "authors": [
  7474. {
  7475. "name": "Sebastian Bergmann",
  7476. "email": "sebastian@phpunit.de"
  7477. },
  7478. {
  7479. "name": "Kore Nordmann",
  7480. "email": "mail@kore-nordmann.de"
  7481. }
  7482. ],
  7483. "description": "Diff implementation",
  7484. "homepage": "https://github.com/sebastianbergmann/diff",
  7485. "keywords": [
  7486. "diff",
  7487. "udiff",
  7488. "unidiff",
  7489. "unified diff"
  7490. ],
  7491. "support": {
  7492. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7493. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://github.com/sebastianbergmann",
  7498. "type": "github"
  7499. }
  7500. ],
  7501. "time": "2024-03-02T06:30:58+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/console",
  7505. "version": "v6.4.24",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/console.git",
  7509. "reference": "59266a5bf6a596e3e0844fd95e6ad7ea3c1d3350"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/console/zipball/59266a5bf6a596e3e0844fd95e6ad7ea3c1d3350",
  7514. "reference": "59266a5bf6a596e3e0844fd95e6ad7ea3c1d3350",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "php": ">=8.1",
  7519. "symfony/deprecation-contracts": "^2.5|^3",
  7520. "symfony/polyfill-mbstring": "~1.0",
  7521. "symfony/service-contracts": "^2.5|^3",
  7522. "symfony/string": "^5.4|^6.0|^7.0"
  7523. },
  7524. "conflict": {
  7525. "symfony/dependency-injection": "<5.4",
  7526. "symfony/dotenv": "<5.4",
  7527. "symfony/event-dispatcher": "<5.4",
  7528. "symfony/lock": "<5.4",
  7529. "symfony/process": "<5.4"
  7530. },
  7531. "provide": {
  7532. "psr/log-implementation": "1.0|2.0|3.0"
  7533. },
  7534. "require-dev": {
  7535. "psr/log": "^1|^2|^3",
  7536. "symfony/config": "^5.4|^6.0|^7.0",
  7537. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7538. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7539. "symfony/http-foundation": "^6.4|^7.0",
  7540. "symfony/http-kernel": "^6.4|^7.0",
  7541. "symfony/lock": "^5.4|^6.0|^7.0",
  7542. "symfony/messenger": "^5.4|^6.0|^7.0",
  7543. "symfony/process": "^5.4|^6.0|^7.0",
  7544. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7545. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7546. },
  7547. "type": "library",
  7548. "autoload": {
  7549. "psr-4": {
  7550. "Symfony\\Component\\Console\\": ""
  7551. },
  7552. "exclude-from-classmap": [
  7553. "/Tests/"
  7554. ]
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "Fabien Potencier",
  7563. "email": "fabien@symfony.com"
  7564. },
  7565. {
  7566. "name": "Symfony Community",
  7567. "homepage": "https://symfony.com/contributors"
  7568. }
  7569. ],
  7570. "description": "Eases the creation of beautiful and testable command line interfaces",
  7571. "homepage": "https://symfony.com",
  7572. "keywords": [
  7573. "cli",
  7574. "command-line",
  7575. "console",
  7576. "terminal"
  7577. ],
  7578. "support": {
  7579. "source": "https://github.com/symfony/console/tree/v6.4.24"
  7580. },
  7581. "funding": [
  7582. {
  7583. "url": "https://symfony.com/sponsor",
  7584. "type": "custom"
  7585. },
  7586. {
  7587. "url": "https://github.com/fabpot",
  7588. "type": "github"
  7589. },
  7590. {
  7591. "url": "https://github.com/nicolas-grekas",
  7592. "type": "github"
  7593. },
  7594. {
  7595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7596. "type": "tidelift"
  7597. }
  7598. ],
  7599. "time": "2025-07-30T10:38:54+00:00"
  7600. },
  7601. {
  7602. "name": "symfony/dependency-injection",
  7603. "version": "v6.4.24",
  7604. "source": {
  7605. "type": "git",
  7606. "url": "https://github.com/symfony/dependency-injection.git",
  7607. "reference": "929ab73b93247a15166ee79e807ccee4f930322d"
  7608. },
  7609. "dist": {
  7610. "type": "zip",
  7611. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/929ab73b93247a15166ee79e807ccee4f930322d",
  7612. "reference": "929ab73b93247a15166ee79e807ccee4f930322d",
  7613. "shasum": ""
  7614. },
  7615. "require": {
  7616. "php": ">=8.1",
  7617. "psr/container": "^1.1|^2.0",
  7618. "symfony/deprecation-contracts": "^2.5|^3",
  7619. "symfony/service-contracts": "^2.5|^3.0",
  7620. "symfony/var-exporter": "^6.4.20|^7.2.5"
  7621. },
  7622. "conflict": {
  7623. "ext-psr": "<1.1|>=2",
  7624. "symfony/config": "<6.1",
  7625. "symfony/finder": "<5.4",
  7626. "symfony/proxy-manager-bridge": "<6.3",
  7627. "symfony/yaml": "<5.4"
  7628. },
  7629. "provide": {
  7630. "psr/container-implementation": "1.1|2.0",
  7631. "symfony/service-implementation": "1.1|2.0|3.0"
  7632. },
  7633. "require-dev": {
  7634. "symfony/config": "^6.1|^7.0",
  7635. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7636. "symfony/yaml": "^5.4|^6.0|^7.0"
  7637. },
  7638. "type": "library",
  7639. "autoload": {
  7640. "psr-4": {
  7641. "Symfony\\Component\\DependencyInjection\\": ""
  7642. },
  7643. "exclude-from-classmap": [
  7644. "/Tests/"
  7645. ]
  7646. },
  7647. "notification-url": "https://packagist.org/downloads/",
  7648. "license": [
  7649. "MIT"
  7650. ],
  7651. "authors": [
  7652. {
  7653. "name": "Fabien Potencier",
  7654. "email": "fabien@symfony.com"
  7655. },
  7656. {
  7657. "name": "Symfony Community",
  7658. "homepage": "https://symfony.com/contributors"
  7659. }
  7660. ],
  7661. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7662. "homepage": "https://symfony.com",
  7663. "support": {
  7664. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.24"
  7665. },
  7666. "funding": [
  7667. {
  7668. "url": "https://symfony.com/sponsor",
  7669. "type": "custom"
  7670. },
  7671. {
  7672. "url": "https://github.com/fabpot",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://github.com/nicolas-grekas",
  7677. "type": "github"
  7678. },
  7679. {
  7680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7681. "type": "tidelift"
  7682. }
  7683. ],
  7684. "time": "2025-07-30T17:30:48+00:00"
  7685. },
  7686. {
  7687. "name": "symfony/deprecation-contracts",
  7688. "version": "v3.5.1",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/symfony/deprecation-contracts.git",
  7692. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7697. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7698. "shasum": ""
  7699. },
  7700. "require": {
  7701. "php": ">=8.1"
  7702. },
  7703. "type": "library",
  7704. "extra": {
  7705. "thanks": {
  7706. "url": "https://github.com/symfony/contracts",
  7707. "name": "symfony/contracts"
  7708. },
  7709. "branch-alias": {
  7710. "dev-main": "3.5-dev"
  7711. }
  7712. },
  7713. "autoload": {
  7714. "files": [
  7715. "function.php"
  7716. ]
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "MIT"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Nicolas Grekas",
  7725. "email": "p@tchwork.com"
  7726. },
  7727. {
  7728. "name": "Symfony Community",
  7729. "homepage": "https://symfony.com/contributors"
  7730. }
  7731. ],
  7732. "description": "A generic function and convention to trigger deprecation notices",
  7733. "homepage": "https://symfony.com",
  7734. "support": {
  7735. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7736. },
  7737. "funding": [
  7738. {
  7739. "url": "https://symfony.com/sponsor",
  7740. "type": "custom"
  7741. },
  7742. {
  7743. "url": "https://github.com/fabpot",
  7744. "type": "github"
  7745. },
  7746. {
  7747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7748. "type": "tidelift"
  7749. }
  7750. ],
  7751. "time": "2024-09-25T14:20:29+00:00"
  7752. },
  7753. {
  7754. "name": "symfony/error-handler",
  7755. "version": "v6.4.24",
  7756. "source": {
  7757. "type": "git",
  7758. "url": "https://github.com/symfony/error-handler.git",
  7759. "reference": "30fd0b3cf0e972e82636038ce4db0e4fe777112c"
  7760. },
  7761. "dist": {
  7762. "type": "zip",
  7763. "url": "https://api.github.com/repos/symfony/error-handler/zipball/30fd0b3cf0e972e82636038ce4db0e4fe777112c",
  7764. "reference": "30fd0b3cf0e972e82636038ce4db0e4fe777112c",
  7765. "shasum": ""
  7766. },
  7767. "require": {
  7768. "php": ">=8.1",
  7769. "psr/log": "^1|^2|^3",
  7770. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7771. },
  7772. "conflict": {
  7773. "symfony/deprecation-contracts": "<2.5",
  7774. "symfony/http-kernel": "<6.4"
  7775. },
  7776. "require-dev": {
  7777. "symfony/deprecation-contracts": "^2.5|^3",
  7778. "symfony/http-kernel": "^6.4|^7.0",
  7779. "symfony/serializer": "^5.4|^6.0|^7.0"
  7780. },
  7781. "bin": [
  7782. "Resources/bin/patch-type-declarations"
  7783. ],
  7784. "type": "library",
  7785. "autoload": {
  7786. "psr-4": {
  7787. "Symfony\\Component\\ErrorHandler\\": ""
  7788. },
  7789. "exclude-from-classmap": [
  7790. "/Tests/"
  7791. ]
  7792. },
  7793. "notification-url": "https://packagist.org/downloads/",
  7794. "license": [
  7795. "MIT"
  7796. ],
  7797. "authors": [
  7798. {
  7799. "name": "Fabien Potencier",
  7800. "email": "fabien@symfony.com"
  7801. },
  7802. {
  7803. "name": "Symfony Community",
  7804. "homepage": "https://symfony.com/contributors"
  7805. }
  7806. ],
  7807. "description": "Provides tools to manage errors and ease debugging PHP code",
  7808. "homepage": "https://symfony.com",
  7809. "support": {
  7810. "source": "https://github.com/symfony/error-handler/tree/v6.4.24"
  7811. },
  7812. "funding": [
  7813. {
  7814. "url": "https://symfony.com/sponsor",
  7815. "type": "custom"
  7816. },
  7817. {
  7818. "url": "https://github.com/fabpot",
  7819. "type": "github"
  7820. },
  7821. {
  7822. "url": "https://github.com/nicolas-grekas",
  7823. "type": "github"
  7824. },
  7825. {
  7826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7827. "type": "tidelift"
  7828. }
  7829. ],
  7830. "time": "2025-07-24T08:25:04+00:00"
  7831. },
  7832. {
  7833. "name": "symfony/event-dispatcher",
  7834. "version": "v6.4.24",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/symfony/event-dispatcher.git",
  7838. "reference": "307a09d8d7228d14a05e5e05b95fffdacab032b2"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/307a09d8d7228d14a05e5e05b95fffdacab032b2",
  7843. "reference": "307a09d8d7228d14a05e5e05b95fffdacab032b2",
  7844. "shasum": ""
  7845. },
  7846. "require": {
  7847. "php": ">=8.1",
  7848. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7849. },
  7850. "conflict": {
  7851. "symfony/dependency-injection": "<5.4",
  7852. "symfony/service-contracts": "<2.5"
  7853. },
  7854. "provide": {
  7855. "psr/event-dispatcher-implementation": "1.0",
  7856. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7857. },
  7858. "require-dev": {
  7859. "psr/log": "^1|^2|^3",
  7860. "symfony/config": "^5.4|^6.0|^7.0",
  7861. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7862. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7863. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7864. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7865. "symfony/service-contracts": "^2.5|^3",
  7866. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7867. },
  7868. "type": "library",
  7869. "autoload": {
  7870. "psr-4": {
  7871. "Symfony\\Component\\EventDispatcher\\": ""
  7872. },
  7873. "exclude-from-classmap": [
  7874. "/Tests/"
  7875. ]
  7876. },
  7877. "notification-url": "https://packagist.org/downloads/",
  7878. "license": [
  7879. "MIT"
  7880. ],
  7881. "authors": [
  7882. {
  7883. "name": "Fabien Potencier",
  7884. "email": "fabien@symfony.com"
  7885. },
  7886. {
  7887. "name": "Symfony Community",
  7888. "homepage": "https://symfony.com/contributors"
  7889. }
  7890. ],
  7891. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7892. "homepage": "https://symfony.com",
  7893. "support": {
  7894. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.24"
  7895. },
  7896. "funding": [
  7897. {
  7898. "url": "https://symfony.com/sponsor",
  7899. "type": "custom"
  7900. },
  7901. {
  7902. "url": "https://github.com/fabpot",
  7903. "type": "github"
  7904. },
  7905. {
  7906. "url": "https://github.com/nicolas-grekas",
  7907. "type": "github"
  7908. },
  7909. {
  7910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7911. "type": "tidelift"
  7912. }
  7913. ],
  7914. "time": "2025-07-10T08:14:14+00:00"
  7915. },
  7916. {
  7917. "name": "symfony/event-dispatcher-contracts",
  7918. "version": "v3.5.1",
  7919. "source": {
  7920. "type": "git",
  7921. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7922. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7923. },
  7924. "dist": {
  7925. "type": "zip",
  7926. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7927. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7928. "shasum": ""
  7929. },
  7930. "require": {
  7931. "php": ">=8.1",
  7932. "psr/event-dispatcher": "^1"
  7933. },
  7934. "type": "library",
  7935. "extra": {
  7936. "thanks": {
  7937. "url": "https://github.com/symfony/contracts",
  7938. "name": "symfony/contracts"
  7939. },
  7940. "branch-alias": {
  7941. "dev-main": "3.5-dev"
  7942. }
  7943. },
  7944. "autoload": {
  7945. "psr-4": {
  7946. "Symfony\\Contracts\\EventDispatcher\\": ""
  7947. }
  7948. },
  7949. "notification-url": "https://packagist.org/downloads/",
  7950. "license": [
  7951. "MIT"
  7952. ],
  7953. "authors": [
  7954. {
  7955. "name": "Nicolas Grekas",
  7956. "email": "p@tchwork.com"
  7957. },
  7958. {
  7959. "name": "Symfony Community",
  7960. "homepage": "https://symfony.com/contributors"
  7961. }
  7962. ],
  7963. "description": "Generic abstractions related to dispatching event",
  7964. "homepage": "https://symfony.com",
  7965. "keywords": [
  7966. "abstractions",
  7967. "contracts",
  7968. "decoupling",
  7969. "interfaces",
  7970. "interoperability",
  7971. "standards"
  7972. ],
  7973. "support": {
  7974. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7975. },
  7976. "funding": [
  7977. {
  7978. "url": "https://symfony.com/sponsor",
  7979. "type": "custom"
  7980. },
  7981. {
  7982. "url": "https://github.com/fabpot",
  7983. "type": "github"
  7984. },
  7985. {
  7986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7987. "type": "tidelift"
  7988. }
  7989. ],
  7990. "time": "2024-09-25T14:20:29+00:00"
  7991. },
  7992. {
  7993. "name": "symfony/filesystem",
  7994. "version": "v6.4.24",
  7995. "source": {
  7996. "type": "git",
  7997. "url": "https://github.com/symfony/filesystem.git",
  7998. "reference": "75ae2edb7cdcc0c53766c30b0a2512b8df574bd8"
  7999. },
  8000. "dist": {
  8001. "type": "zip",
  8002. "url": "https://api.github.com/repos/symfony/filesystem/zipball/75ae2edb7cdcc0c53766c30b0a2512b8df574bd8",
  8003. "reference": "75ae2edb7cdcc0c53766c30b0a2512b8df574bd8",
  8004. "shasum": ""
  8005. },
  8006. "require": {
  8007. "php": ">=8.1",
  8008. "symfony/polyfill-ctype": "~1.8",
  8009. "symfony/polyfill-mbstring": "~1.8"
  8010. },
  8011. "require-dev": {
  8012. "symfony/process": "^5.4|^6.4|^7.0"
  8013. },
  8014. "type": "library",
  8015. "autoload": {
  8016. "psr-4": {
  8017. "Symfony\\Component\\Filesystem\\": ""
  8018. },
  8019. "exclude-from-classmap": [
  8020. "/Tests/"
  8021. ]
  8022. },
  8023. "notification-url": "https://packagist.org/downloads/",
  8024. "license": [
  8025. "MIT"
  8026. ],
  8027. "authors": [
  8028. {
  8029. "name": "Fabien Potencier",
  8030. "email": "fabien@symfony.com"
  8031. },
  8032. {
  8033. "name": "Symfony Community",
  8034. "homepage": "https://symfony.com/contributors"
  8035. }
  8036. ],
  8037. "description": "Provides basic utilities for the filesystem",
  8038. "homepage": "https://symfony.com",
  8039. "support": {
  8040. "source": "https://github.com/symfony/filesystem/tree/v6.4.24"
  8041. },
  8042. "funding": [
  8043. {
  8044. "url": "https://symfony.com/sponsor",
  8045. "type": "custom"
  8046. },
  8047. {
  8048. "url": "https://github.com/fabpot",
  8049. "type": "github"
  8050. },
  8051. {
  8052. "url": "https://github.com/nicolas-grekas",
  8053. "type": "github"
  8054. },
  8055. {
  8056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8057. "type": "tidelift"
  8058. }
  8059. ],
  8060. "time": "2025-07-10T08:14:14+00:00"
  8061. },
  8062. {
  8063. "name": "symfony/finder",
  8064. "version": "v6.4.24",
  8065. "source": {
  8066. "type": "git",
  8067. "url": "https://github.com/symfony/finder.git",
  8068. "reference": "73089124388c8510efb8d2d1689285d285937b08"
  8069. },
  8070. "dist": {
  8071. "type": "zip",
  8072. "url": "https://api.github.com/repos/symfony/finder/zipball/73089124388c8510efb8d2d1689285d285937b08",
  8073. "reference": "73089124388c8510efb8d2d1689285d285937b08",
  8074. "shasum": ""
  8075. },
  8076. "require": {
  8077. "php": ">=8.1"
  8078. },
  8079. "require-dev": {
  8080. "symfony/filesystem": "^6.0|^7.0"
  8081. },
  8082. "type": "library",
  8083. "autoload": {
  8084. "psr-4": {
  8085. "Symfony\\Component\\Finder\\": ""
  8086. },
  8087. "exclude-from-classmap": [
  8088. "/Tests/"
  8089. ]
  8090. },
  8091. "notification-url": "https://packagist.org/downloads/",
  8092. "license": [
  8093. "MIT"
  8094. ],
  8095. "authors": [
  8096. {
  8097. "name": "Fabien Potencier",
  8098. "email": "fabien@symfony.com"
  8099. },
  8100. {
  8101. "name": "Symfony Community",
  8102. "homepage": "https://symfony.com/contributors"
  8103. }
  8104. ],
  8105. "description": "Finds files and directories via an intuitive fluent interface",
  8106. "homepage": "https://symfony.com",
  8107. "support": {
  8108. "source": "https://github.com/symfony/finder/tree/v6.4.24"
  8109. },
  8110. "funding": [
  8111. {
  8112. "url": "https://symfony.com/sponsor",
  8113. "type": "custom"
  8114. },
  8115. {
  8116. "url": "https://github.com/fabpot",
  8117. "type": "github"
  8118. },
  8119. {
  8120. "url": "https://github.com/nicolas-grekas",
  8121. "type": "github"
  8122. },
  8123. {
  8124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8125. "type": "tidelift"
  8126. }
  8127. ],
  8128. "time": "2025-07-15T12:02:45+00:00"
  8129. },
  8130. {
  8131. "name": "symfony/http-foundation",
  8132. "version": "v6.4.24",
  8133. "source": {
  8134. "type": "git",
  8135. "url": "https://github.com/symfony/http-foundation.git",
  8136. "reference": "0341e41d8d8830c31a1dff5cbc5bdb3ec872a073"
  8137. },
  8138. "dist": {
  8139. "type": "zip",
  8140. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0341e41d8d8830c31a1dff5cbc5bdb3ec872a073",
  8141. "reference": "0341e41d8d8830c31a1dff5cbc5bdb3ec872a073",
  8142. "shasum": ""
  8143. },
  8144. "require": {
  8145. "php": ">=8.1",
  8146. "symfony/deprecation-contracts": "^2.5|^3",
  8147. "symfony/polyfill-mbstring": "~1.1",
  8148. "symfony/polyfill-php83": "^1.27"
  8149. },
  8150. "conflict": {
  8151. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8152. },
  8153. "require-dev": {
  8154. "doctrine/dbal": "^2.13.1|^3|^4",
  8155. "predis/predis": "^1.1|^2.0",
  8156. "symfony/cache": "^6.4.12|^7.1.5",
  8157. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8158. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8159. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8160. "symfony/mime": "^5.4|^6.0|^7.0",
  8161. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8162. },
  8163. "type": "library",
  8164. "autoload": {
  8165. "psr-4": {
  8166. "Symfony\\Component\\HttpFoundation\\": ""
  8167. },
  8168. "exclude-from-classmap": [
  8169. "/Tests/"
  8170. ]
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Fabien Potencier",
  8179. "email": "fabien@symfony.com"
  8180. },
  8181. {
  8182. "name": "Symfony Community",
  8183. "homepage": "https://symfony.com/contributors"
  8184. }
  8185. ],
  8186. "description": "Defines an object-oriented layer for the HTTP specification",
  8187. "homepage": "https://symfony.com",
  8188. "support": {
  8189. "source": "https://github.com/symfony/http-foundation/tree/v6.4.24"
  8190. },
  8191. "funding": [
  8192. {
  8193. "url": "https://symfony.com/sponsor",
  8194. "type": "custom"
  8195. },
  8196. {
  8197. "url": "https://github.com/fabpot",
  8198. "type": "github"
  8199. },
  8200. {
  8201. "url": "https://github.com/nicolas-grekas",
  8202. "type": "github"
  8203. },
  8204. {
  8205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8206. "type": "tidelift"
  8207. }
  8208. ],
  8209. "time": "2025-07-10T08:14:14+00:00"
  8210. },
  8211. {
  8212. "name": "symfony/http-kernel",
  8213. "version": "v6.4.24",
  8214. "source": {
  8215. "type": "git",
  8216. "url": "https://github.com/symfony/http-kernel.git",
  8217. "reference": "b81dcdbe34b8e8f7b3fc7b2a47fa065d5bf30726"
  8218. },
  8219. "dist": {
  8220. "type": "zip",
  8221. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b81dcdbe34b8e8f7b3fc7b2a47fa065d5bf30726",
  8222. "reference": "b81dcdbe34b8e8f7b3fc7b2a47fa065d5bf30726",
  8223. "shasum": ""
  8224. },
  8225. "require": {
  8226. "php": ">=8.1",
  8227. "psr/log": "^1|^2|^3",
  8228. "symfony/deprecation-contracts": "^2.5|^3",
  8229. "symfony/error-handler": "^6.4|^7.0",
  8230. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8231. "symfony/http-foundation": "^6.4|^7.0",
  8232. "symfony/polyfill-ctype": "^1.8"
  8233. },
  8234. "conflict": {
  8235. "symfony/browser-kit": "<5.4",
  8236. "symfony/cache": "<5.4",
  8237. "symfony/config": "<6.1",
  8238. "symfony/console": "<5.4",
  8239. "symfony/dependency-injection": "<6.4",
  8240. "symfony/doctrine-bridge": "<5.4",
  8241. "symfony/form": "<5.4",
  8242. "symfony/http-client": "<5.4",
  8243. "symfony/http-client-contracts": "<2.5",
  8244. "symfony/mailer": "<5.4",
  8245. "symfony/messenger": "<5.4",
  8246. "symfony/translation": "<5.4",
  8247. "symfony/translation-contracts": "<2.5",
  8248. "symfony/twig-bridge": "<5.4",
  8249. "symfony/validator": "<6.4",
  8250. "symfony/var-dumper": "<6.3",
  8251. "twig/twig": "<2.13"
  8252. },
  8253. "provide": {
  8254. "psr/log-implementation": "1.0|2.0|3.0"
  8255. },
  8256. "require-dev": {
  8257. "psr/cache": "^1.0|^2.0|^3.0",
  8258. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8259. "symfony/clock": "^6.2|^7.0",
  8260. "symfony/config": "^6.1|^7.0",
  8261. "symfony/console": "^5.4|^6.0|^7.0",
  8262. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8263. "symfony/dependency-injection": "^6.4|^7.0",
  8264. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8265. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8266. "symfony/finder": "^5.4|^6.0|^7.0",
  8267. "symfony/http-client-contracts": "^2.5|^3",
  8268. "symfony/process": "^5.4|^6.0|^7.0",
  8269. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8270. "symfony/routing": "^5.4|^6.0|^7.0",
  8271. "symfony/serializer": "^6.4.4|^7.0.4",
  8272. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8273. "symfony/translation": "^5.4|^6.0|^7.0",
  8274. "symfony/translation-contracts": "^2.5|^3",
  8275. "symfony/uid": "^5.4|^6.0|^7.0",
  8276. "symfony/validator": "^6.4|^7.0",
  8277. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8278. "symfony/var-exporter": "^6.2|^7.0",
  8279. "twig/twig": "^2.13|^3.0.4"
  8280. },
  8281. "type": "library",
  8282. "autoload": {
  8283. "psr-4": {
  8284. "Symfony\\Component\\HttpKernel\\": ""
  8285. },
  8286. "exclude-from-classmap": [
  8287. "/Tests/"
  8288. ]
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "MIT"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Fabien Potencier",
  8297. "email": "fabien@symfony.com"
  8298. },
  8299. {
  8300. "name": "Symfony Community",
  8301. "homepage": "https://symfony.com/contributors"
  8302. }
  8303. ],
  8304. "description": "Provides a structured process for converting a Request into a Response",
  8305. "homepage": "https://symfony.com",
  8306. "support": {
  8307. "source": "https://github.com/symfony/http-kernel/tree/v6.4.24"
  8308. },
  8309. "funding": [
  8310. {
  8311. "url": "https://symfony.com/sponsor",
  8312. "type": "custom"
  8313. },
  8314. {
  8315. "url": "https://github.com/fabpot",
  8316. "type": "github"
  8317. },
  8318. {
  8319. "url": "https://github.com/nicolas-grekas",
  8320. "type": "github"
  8321. },
  8322. {
  8323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8324. "type": "tidelift"
  8325. }
  8326. ],
  8327. "time": "2025-07-31T09:23:30+00:00"
  8328. },
  8329. {
  8330. "name": "symfony/mailer",
  8331. "version": "v6.4.24",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/symfony/mailer.git",
  8335. "reference": "b4d7fa2c69641109979ed06e98a588d245362062"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/symfony/mailer/zipball/b4d7fa2c69641109979ed06e98a588d245362062",
  8340. "reference": "b4d7fa2c69641109979ed06e98a588d245362062",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "egulias/email-validator": "^2.1.10|^3|^4",
  8345. "php": ">=8.1",
  8346. "psr/event-dispatcher": "^1",
  8347. "psr/log": "^1|^2|^3",
  8348. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8349. "symfony/mime": "^6.2|^7.0",
  8350. "symfony/service-contracts": "^2.5|^3"
  8351. },
  8352. "conflict": {
  8353. "symfony/http-client-contracts": "<2.5",
  8354. "symfony/http-kernel": "<5.4",
  8355. "symfony/messenger": "<6.2",
  8356. "symfony/mime": "<6.2",
  8357. "symfony/twig-bridge": "<6.2.1"
  8358. },
  8359. "require-dev": {
  8360. "symfony/console": "^5.4|^6.0|^7.0",
  8361. "symfony/http-client": "^5.4|^6.0|^7.0",
  8362. "symfony/messenger": "^6.2|^7.0",
  8363. "symfony/twig-bridge": "^6.2|^7.0"
  8364. },
  8365. "type": "library",
  8366. "autoload": {
  8367. "psr-4": {
  8368. "Symfony\\Component\\Mailer\\": ""
  8369. },
  8370. "exclude-from-classmap": [
  8371. "/Tests/"
  8372. ]
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Fabien Potencier",
  8381. "email": "fabien@symfony.com"
  8382. },
  8383. {
  8384. "name": "Symfony Community",
  8385. "homepage": "https://symfony.com/contributors"
  8386. }
  8387. ],
  8388. "description": "Helps sending emails",
  8389. "homepage": "https://symfony.com",
  8390. "support": {
  8391. "source": "https://github.com/symfony/mailer/tree/v6.4.24"
  8392. },
  8393. "funding": [
  8394. {
  8395. "url": "https://symfony.com/sponsor",
  8396. "type": "custom"
  8397. },
  8398. {
  8399. "url": "https://github.com/fabpot",
  8400. "type": "github"
  8401. },
  8402. {
  8403. "url": "https://github.com/nicolas-grekas",
  8404. "type": "github"
  8405. },
  8406. {
  8407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8408. "type": "tidelift"
  8409. }
  8410. ],
  8411. "time": "2025-07-24T08:25:04+00:00"
  8412. },
  8413. {
  8414. "name": "symfony/mime",
  8415. "version": "v6.4.24",
  8416. "source": {
  8417. "type": "git",
  8418. "url": "https://github.com/symfony/mime.git",
  8419. "reference": "664d5e844a2de5e11c8255d0aef6bc15a9660ac7"
  8420. },
  8421. "dist": {
  8422. "type": "zip",
  8423. "url": "https://api.github.com/repos/symfony/mime/zipball/664d5e844a2de5e11c8255d0aef6bc15a9660ac7",
  8424. "reference": "664d5e844a2de5e11c8255d0aef6bc15a9660ac7",
  8425. "shasum": ""
  8426. },
  8427. "require": {
  8428. "php": ">=8.1",
  8429. "symfony/deprecation-contracts": "^2.5|^3",
  8430. "symfony/polyfill-intl-idn": "^1.10",
  8431. "symfony/polyfill-mbstring": "^1.0"
  8432. },
  8433. "conflict": {
  8434. "egulias/email-validator": "~3.0.0",
  8435. "phpdocumentor/reflection-docblock": "<3.2.2",
  8436. "phpdocumentor/type-resolver": "<1.4.0",
  8437. "symfony/mailer": "<5.4",
  8438. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8439. },
  8440. "require-dev": {
  8441. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8442. "league/html-to-markdown": "^5.0",
  8443. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8444. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8445. "symfony/process": "^5.4|^6.4|^7.0",
  8446. "symfony/property-access": "^5.4|^6.0|^7.0",
  8447. "symfony/property-info": "^5.4|^6.0|^7.0",
  8448. "symfony/serializer": "^6.4.3|^7.0.3"
  8449. },
  8450. "type": "library",
  8451. "autoload": {
  8452. "psr-4": {
  8453. "Symfony\\Component\\Mime\\": ""
  8454. },
  8455. "exclude-from-classmap": [
  8456. "/Tests/"
  8457. ]
  8458. },
  8459. "notification-url": "https://packagist.org/downloads/",
  8460. "license": [
  8461. "MIT"
  8462. ],
  8463. "authors": [
  8464. {
  8465. "name": "Fabien Potencier",
  8466. "email": "fabien@symfony.com"
  8467. },
  8468. {
  8469. "name": "Symfony Community",
  8470. "homepage": "https://symfony.com/contributors"
  8471. }
  8472. ],
  8473. "description": "Allows manipulating MIME messages",
  8474. "homepage": "https://symfony.com",
  8475. "keywords": [
  8476. "mime",
  8477. "mime-type"
  8478. ],
  8479. "support": {
  8480. "source": "https://github.com/symfony/mime/tree/v6.4.24"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://symfony.com/sponsor",
  8485. "type": "custom"
  8486. },
  8487. {
  8488. "url": "https://github.com/fabpot",
  8489. "type": "github"
  8490. },
  8491. {
  8492. "url": "https://github.com/nicolas-grekas",
  8493. "type": "github"
  8494. },
  8495. {
  8496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8497. "type": "tidelift"
  8498. }
  8499. ],
  8500. "time": "2025-07-15T12:02:45+00:00"
  8501. },
  8502. {
  8503. "name": "symfony/polyfill-ctype",
  8504. "version": "v1.31.0",
  8505. "source": {
  8506. "type": "git",
  8507. "url": "https://github.com/symfony/polyfill-ctype.git",
  8508. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8509. },
  8510. "dist": {
  8511. "type": "zip",
  8512. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8513. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8514. "shasum": ""
  8515. },
  8516. "require": {
  8517. "php": ">=7.2"
  8518. },
  8519. "provide": {
  8520. "ext-ctype": "*"
  8521. },
  8522. "suggest": {
  8523. "ext-ctype": "For best performance"
  8524. },
  8525. "type": "library",
  8526. "extra": {
  8527. "thanks": {
  8528. "url": "https://github.com/symfony/polyfill",
  8529. "name": "symfony/polyfill"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "files": [
  8534. "bootstrap.php"
  8535. ],
  8536. "psr-4": {
  8537. "Symfony\\Polyfill\\Ctype\\": ""
  8538. }
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "authors": [
  8545. {
  8546. "name": "Gert de Pagter",
  8547. "email": "BackEndTea@gmail.com"
  8548. },
  8549. {
  8550. "name": "Symfony Community",
  8551. "homepage": "https://symfony.com/contributors"
  8552. }
  8553. ],
  8554. "description": "Symfony polyfill for ctype functions",
  8555. "homepage": "https://symfony.com",
  8556. "keywords": [
  8557. "compatibility",
  8558. "ctype",
  8559. "polyfill",
  8560. "portable"
  8561. ],
  8562. "support": {
  8563. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  8564. },
  8565. "funding": [
  8566. {
  8567. "url": "https://symfony.com/sponsor",
  8568. "type": "custom"
  8569. },
  8570. {
  8571. "url": "https://github.com/fabpot",
  8572. "type": "github"
  8573. },
  8574. {
  8575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8576. "type": "tidelift"
  8577. }
  8578. ],
  8579. "time": "2024-09-09T11:45:10+00:00"
  8580. },
  8581. {
  8582. "name": "symfony/polyfill-iconv",
  8583. "version": "v1.31.0",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/symfony/polyfill-iconv.git",
  8587. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  8592. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  8593. "shasum": ""
  8594. },
  8595. "require": {
  8596. "php": ">=7.2"
  8597. },
  8598. "provide": {
  8599. "ext-iconv": "*"
  8600. },
  8601. "suggest": {
  8602. "ext-iconv": "For best performance"
  8603. },
  8604. "type": "library",
  8605. "extra": {
  8606. "thanks": {
  8607. "url": "https://github.com/symfony/polyfill",
  8608. "name": "symfony/polyfill"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "files": [
  8613. "bootstrap.php"
  8614. ],
  8615. "psr-4": {
  8616. "Symfony\\Polyfill\\Iconv\\": ""
  8617. }
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "MIT"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Nicolas Grekas",
  8626. "email": "p@tchwork.com"
  8627. },
  8628. {
  8629. "name": "Symfony Community",
  8630. "homepage": "https://symfony.com/contributors"
  8631. }
  8632. ],
  8633. "description": "Symfony polyfill for the Iconv extension",
  8634. "homepage": "https://symfony.com",
  8635. "keywords": [
  8636. "compatibility",
  8637. "iconv",
  8638. "polyfill",
  8639. "portable",
  8640. "shim"
  8641. ],
  8642. "support": {
  8643. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://symfony.com/sponsor",
  8648. "type": "custom"
  8649. },
  8650. {
  8651. "url": "https://github.com/fabpot",
  8652. "type": "github"
  8653. },
  8654. {
  8655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8656. "type": "tidelift"
  8657. }
  8658. ],
  8659. "time": "2024-09-09T11:45:10+00:00"
  8660. },
  8661. {
  8662. "name": "symfony/polyfill-intl-grapheme",
  8663. "version": "v1.31.0",
  8664. "source": {
  8665. "type": "git",
  8666. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8667. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  8668. },
  8669. "dist": {
  8670. "type": "zip",
  8671. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8672. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8673. "shasum": ""
  8674. },
  8675. "require": {
  8676. "php": ">=7.2"
  8677. },
  8678. "suggest": {
  8679. "ext-intl": "For best performance"
  8680. },
  8681. "type": "library",
  8682. "extra": {
  8683. "thanks": {
  8684. "url": "https://github.com/symfony/polyfill",
  8685. "name": "symfony/polyfill"
  8686. }
  8687. },
  8688. "autoload": {
  8689. "files": [
  8690. "bootstrap.php"
  8691. ],
  8692. "psr-4": {
  8693. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8694. }
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "MIT"
  8699. ],
  8700. "authors": [
  8701. {
  8702. "name": "Nicolas Grekas",
  8703. "email": "p@tchwork.com"
  8704. },
  8705. {
  8706. "name": "Symfony Community",
  8707. "homepage": "https://symfony.com/contributors"
  8708. }
  8709. ],
  8710. "description": "Symfony polyfill for intl's grapheme_* functions",
  8711. "homepage": "https://symfony.com",
  8712. "keywords": [
  8713. "compatibility",
  8714. "grapheme",
  8715. "intl",
  8716. "polyfill",
  8717. "portable",
  8718. "shim"
  8719. ],
  8720. "support": {
  8721. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  8722. },
  8723. "funding": [
  8724. {
  8725. "url": "https://symfony.com/sponsor",
  8726. "type": "custom"
  8727. },
  8728. {
  8729. "url": "https://github.com/fabpot",
  8730. "type": "github"
  8731. },
  8732. {
  8733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8734. "type": "tidelift"
  8735. }
  8736. ],
  8737. "time": "2024-09-09T11:45:10+00:00"
  8738. },
  8739. {
  8740. "name": "symfony/polyfill-intl-idn",
  8741. "version": "v1.31.0",
  8742. "source": {
  8743. "type": "git",
  8744. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8745. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  8746. },
  8747. "dist": {
  8748. "type": "zip",
  8749. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  8750. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  8751. "shasum": ""
  8752. },
  8753. "require": {
  8754. "php": ">=7.2",
  8755. "symfony/polyfill-intl-normalizer": "^1.10"
  8756. },
  8757. "suggest": {
  8758. "ext-intl": "For best performance"
  8759. },
  8760. "type": "library",
  8761. "extra": {
  8762. "thanks": {
  8763. "url": "https://github.com/symfony/polyfill",
  8764. "name": "symfony/polyfill"
  8765. }
  8766. },
  8767. "autoload": {
  8768. "files": [
  8769. "bootstrap.php"
  8770. ],
  8771. "psr-4": {
  8772. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8773. }
  8774. },
  8775. "notification-url": "https://packagist.org/downloads/",
  8776. "license": [
  8777. "MIT"
  8778. ],
  8779. "authors": [
  8780. {
  8781. "name": "Laurent Bassin",
  8782. "email": "laurent@bassin.info"
  8783. },
  8784. {
  8785. "name": "Trevor Rowbotham",
  8786. "email": "trevor.rowbotham@pm.me"
  8787. },
  8788. {
  8789. "name": "Symfony Community",
  8790. "homepage": "https://symfony.com/contributors"
  8791. }
  8792. ],
  8793. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8794. "homepage": "https://symfony.com",
  8795. "keywords": [
  8796. "compatibility",
  8797. "idn",
  8798. "intl",
  8799. "polyfill",
  8800. "portable",
  8801. "shim"
  8802. ],
  8803. "support": {
  8804. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  8805. },
  8806. "funding": [
  8807. {
  8808. "url": "https://symfony.com/sponsor",
  8809. "type": "custom"
  8810. },
  8811. {
  8812. "url": "https://github.com/fabpot",
  8813. "type": "github"
  8814. },
  8815. {
  8816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8817. "type": "tidelift"
  8818. }
  8819. ],
  8820. "time": "2024-09-09T11:45:10+00:00"
  8821. },
  8822. {
  8823. "name": "symfony/polyfill-intl-normalizer",
  8824. "version": "v1.31.0",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8828. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8833. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8834. "shasum": ""
  8835. },
  8836. "require": {
  8837. "php": ">=7.2"
  8838. },
  8839. "suggest": {
  8840. "ext-intl": "For best performance"
  8841. },
  8842. "type": "library",
  8843. "extra": {
  8844. "thanks": {
  8845. "url": "https://github.com/symfony/polyfill",
  8846. "name": "symfony/polyfill"
  8847. }
  8848. },
  8849. "autoload": {
  8850. "files": [
  8851. "bootstrap.php"
  8852. ],
  8853. "psr-4": {
  8854. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8855. },
  8856. "classmap": [
  8857. "Resources/stubs"
  8858. ]
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "MIT"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Nicolas Grekas",
  8867. "email": "p@tchwork.com"
  8868. },
  8869. {
  8870. "name": "Symfony Community",
  8871. "homepage": "https://symfony.com/contributors"
  8872. }
  8873. ],
  8874. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8875. "homepage": "https://symfony.com",
  8876. "keywords": [
  8877. "compatibility",
  8878. "intl",
  8879. "normalizer",
  8880. "polyfill",
  8881. "portable",
  8882. "shim"
  8883. ],
  8884. "support": {
  8885. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8886. },
  8887. "funding": [
  8888. {
  8889. "url": "https://symfony.com/sponsor",
  8890. "type": "custom"
  8891. },
  8892. {
  8893. "url": "https://github.com/fabpot",
  8894. "type": "github"
  8895. },
  8896. {
  8897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8898. "type": "tidelift"
  8899. }
  8900. ],
  8901. "time": "2024-09-09T11:45:10+00:00"
  8902. },
  8903. {
  8904. "name": "symfony/polyfill-mbstring",
  8905. "version": "v1.31.0",
  8906. "source": {
  8907. "type": "git",
  8908. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8909. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8910. },
  8911. "dist": {
  8912. "type": "zip",
  8913. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8914. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8915. "shasum": ""
  8916. },
  8917. "require": {
  8918. "php": ">=7.2"
  8919. },
  8920. "provide": {
  8921. "ext-mbstring": "*"
  8922. },
  8923. "suggest": {
  8924. "ext-mbstring": "For best performance"
  8925. },
  8926. "type": "library",
  8927. "extra": {
  8928. "thanks": {
  8929. "url": "https://github.com/symfony/polyfill",
  8930. "name": "symfony/polyfill"
  8931. }
  8932. },
  8933. "autoload": {
  8934. "files": [
  8935. "bootstrap.php"
  8936. ],
  8937. "psr-4": {
  8938. "Symfony\\Polyfill\\Mbstring\\": ""
  8939. }
  8940. },
  8941. "notification-url": "https://packagist.org/downloads/",
  8942. "license": [
  8943. "MIT"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Nicolas Grekas",
  8948. "email": "p@tchwork.com"
  8949. },
  8950. {
  8951. "name": "Symfony Community",
  8952. "homepage": "https://symfony.com/contributors"
  8953. }
  8954. ],
  8955. "description": "Symfony polyfill for the Mbstring extension",
  8956. "homepage": "https://symfony.com",
  8957. "keywords": [
  8958. "compatibility",
  8959. "mbstring",
  8960. "polyfill",
  8961. "portable",
  8962. "shim"
  8963. ],
  8964. "support": {
  8965. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8966. },
  8967. "funding": [
  8968. {
  8969. "url": "https://symfony.com/sponsor",
  8970. "type": "custom"
  8971. },
  8972. {
  8973. "url": "https://github.com/fabpot",
  8974. "type": "github"
  8975. },
  8976. {
  8977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8978. "type": "tidelift"
  8979. }
  8980. ],
  8981. "time": "2024-09-09T11:45:10+00:00"
  8982. },
  8983. {
  8984. "name": "symfony/polyfill-php81",
  8985. "version": "v1.33.0",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/symfony/polyfill-php81.git",
  8989. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8994. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  8995. "shasum": ""
  8996. },
  8997. "require": {
  8998. "php": ">=7.2"
  8999. },
  9000. "type": "library",
  9001. "extra": {
  9002. "thanks": {
  9003. "url": "https://github.com/symfony/polyfill",
  9004. "name": "symfony/polyfill"
  9005. }
  9006. },
  9007. "autoload": {
  9008. "files": [
  9009. "bootstrap.php"
  9010. ],
  9011. "psr-4": {
  9012. "Symfony\\Polyfill\\Php81\\": ""
  9013. },
  9014. "classmap": [
  9015. "Resources/stubs"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "MIT"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Nicolas Grekas",
  9025. "email": "p@tchwork.com"
  9026. },
  9027. {
  9028. "name": "Symfony Community",
  9029. "homepage": "https://symfony.com/contributors"
  9030. }
  9031. ],
  9032. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9033. "homepage": "https://symfony.com",
  9034. "keywords": [
  9035. "compatibility",
  9036. "polyfill",
  9037. "portable",
  9038. "shim"
  9039. ],
  9040. "support": {
  9041. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  9042. },
  9043. "funding": [
  9044. {
  9045. "url": "https://symfony.com/sponsor",
  9046. "type": "custom"
  9047. },
  9048. {
  9049. "url": "https://github.com/fabpot",
  9050. "type": "github"
  9051. },
  9052. {
  9053. "url": "https://github.com/nicolas-grekas",
  9054. "type": "github"
  9055. },
  9056. {
  9057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9058. "type": "tidelift"
  9059. }
  9060. ],
  9061. "time": "2024-09-09T11:45:10+00:00"
  9062. },
  9063. {
  9064. "name": "symfony/polyfill-php83",
  9065. "version": "v1.31.0",
  9066. "source": {
  9067. "type": "git",
  9068. "url": "https://github.com/symfony/polyfill-php83.git",
  9069. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  9070. },
  9071. "dist": {
  9072. "type": "zip",
  9073. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  9074. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  9075. "shasum": ""
  9076. },
  9077. "require": {
  9078. "php": ">=7.2"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "thanks": {
  9083. "url": "https://github.com/symfony/polyfill",
  9084. "name": "symfony/polyfill"
  9085. }
  9086. },
  9087. "autoload": {
  9088. "files": [
  9089. "bootstrap.php"
  9090. ],
  9091. "psr-4": {
  9092. "Symfony\\Polyfill\\Php83\\": ""
  9093. },
  9094. "classmap": [
  9095. "Resources/stubs"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "MIT"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Nicolas Grekas",
  9105. "email": "p@tchwork.com"
  9106. },
  9107. {
  9108. "name": "Symfony Community",
  9109. "homepage": "https://symfony.com/contributors"
  9110. }
  9111. ],
  9112. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9113. "homepage": "https://symfony.com",
  9114. "keywords": [
  9115. "compatibility",
  9116. "polyfill",
  9117. "portable",
  9118. "shim"
  9119. ],
  9120. "support": {
  9121. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  9122. },
  9123. "funding": [
  9124. {
  9125. "url": "https://symfony.com/sponsor",
  9126. "type": "custom"
  9127. },
  9128. {
  9129. "url": "https://github.com/fabpot",
  9130. "type": "github"
  9131. },
  9132. {
  9133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9134. "type": "tidelift"
  9135. }
  9136. ],
  9137. "time": "2024-09-09T11:45:10+00:00"
  9138. },
  9139. {
  9140. "name": "symfony/process",
  9141. "version": "v6.4.24",
  9142. "source": {
  9143. "type": "git",
  9144. "url": "https://github.com/symfony/process.git",
  9145. "reference": "8eb6dc555bfb49b2703438d5de65cc9f138ff50b"
  9146. },
  9147. "dist": {
  9148. "type": "zip",
  9149. "url": "https://api.github.com/repos/symfony/process/zipball/8eb6dc555bfb49b2703438d5de65cc9f138ff50b",
  9150. "reference": "8eb6dc555bfb49b2703438d5de65cc9f138ff50b",
  9151. "shasum": ""
  9152. },
  9153. "require": {
  9154. "php": ">=8.1"
  9155. },
  9156. "type": "library",
  9157. "autoload": {
  9158. "psr-4": {
  9159. "Symfony\\Component\\Process\\": ""
  9160. },
  9161. "exclude-from-classmap": [
  9162. "/Tests/"
  9163. ]
  9164. },
  9165. "notification-url": "https://packagist.org/downloads/",
  9166. "license": [
  9167. "MIT"
  9168. ],
  9169. "authors": [
  9170. {
  9171. "name": "Fabien Potencier",
  9172. "email": "fabien@symfony.com"
  9173. },
  9174. {
  9175. "name": "Symfony Community",
  9176. "homepage": "https://symfony.com/contributors"
  9177. }
  9178. ],
  9179. "description": "Executes commands in sub-processes",
  9180. "homepage": "https://symfony.com",
  9181. "support": {
  9182. "source": "https://github.com/symfony/process/tree/v6.4.24"
  9183. },
  9184. "funding": [
  9185. {
  9186. "url": "https://symfony.com/sponsor",
  9187. "type": "custom"
  9188. },
  9189. {
  9190. "url": "https://github.com/fabpot",
  9191. "type": "github"
  9192. },
  9193. {
  9194. "url": "https://github.com/nicolas-grekas",
  9195. "type": "github"
  9196. },
  9197. {
  9198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9199. "type": "tidelift"
  9200. }
  9201. ],
  9202. "time": "2025-07-10T08:14:14+00:00"
  9203. },
  9204. {
  9205. "name": "symfony/psr-http-message-bridge",
  9206. "version": "v6.4.24",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9210. "reference": "6954b4e8aef0e5d46f8558c90edcf27bb01b4724"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/6954b4e8aef0e5d46f8558c90edcf27bb01b4724",
  9215. "reference": "6954b4e8aef0e5d46f8558c90edcf27bb01b4724",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "php": ">=8.1",
  9220. "psr/http-message": "^1.0|^2.0",
  9221. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9222. },
  9223. "conflict": {
  9224. "php-http/discovery": "<1.15",
  9225. "symfony/http-kernel": "<6.2"
  9226. },
  9227. "require-dev": {
  9228. "nyholm/psr7": "^1.1",
  9229. "php-http/discovery": "^1.15",
  9230. "psr/log": "^1.1.4|^2|^3",
  9231. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9232. "symfony/config": "^5.4|^6.0|^7.0",
  9233. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9234. "symfony/framework-bundle": "^6.2|^7.0",
  9235. "symfony/http-kernel": "^6.2|^7.0"
  9236. },
  9237. "type": "symfony-bridge",
  9238. "autoload": {
  9239. "psr-4": {
  9240. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9241. },
  9242. "exclude-from-classmap": [
  9243. "/Tests/"
  9244. ]
  9245. },
  9246. "notification-url": "https://packagist.org/downloads/",
  9247. "license": [
  9248. "MIT"
  9249. ],
  9250. "authors": [
  9251. {
  9252. "name": "Fabien Potencier",
  9253. "email": "fabien@symfony.com"
  9254. },
  9255. {
  9256. "name": "Symfony Community",
  9257. "homepage": "https://symfony.com/contributors"
  9258. }
  9259. ],
  9260. "description": "PSR HTTP message bridge",
  9261. "homepage": "https://symfony.com",
  9262. "keywords": [
  9263. "http",
  9264. "http-message",
  9265. "psr-17",
  9266. "psr-7"
  9267. ],
  9268. "support": {
  9269. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.24"
  9270. },
  9271. "funding": [
  9272. {
  9273. "url": "https://symfony.com/sponsor",
  9274. "type": "custom"
  9275. },
  9276. {
  9277. "url": "https://github.com/fabpot",
  9278. "type": "github"
  9279. },
  9280. {
  9281. "url": "https://github.com/nicolas-grekas",
  9282. "type": "github"
  9283. },
  9284. {
  9285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9286. "type": "tidelift"
  9287. }
  9288. ],
  9289. "time": "2025-07-10T08:14:14+00:00"
  9290. },
  9291. {
  9292. "name": "symfony/routing",
  9293. "version": "v6.4.24",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/symfony/routing.git",
  9297. "reference": "e4f94e625c8e6f910aa004a0042f7b2d398278f5"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/symfony/routing/zipball/e4f94e625c8e6f910aa004a0042f7b2d398278f5",
  9302. "reference": "e4f94e625c8e6f910aa004a0042f7b2d398278f5",
  9303. "shasum": ""
  9304. },
  9305. "require": {
  9306. "php": ">=8.1",
  9307. "symfony/deprecation-contracts": "^2.5|^3"
  9308. },
  9309. "conflict": {
  9310. "doctrine/annotations": "<1.12",
  9311. "symfony/config": "<6.2",
  9312. "symfony/dependency-injection": "<5.4",
  9313. "symfony/yaml": "<5.4"
  9314. },
  9315. "require-dev": {
  9316. "doctrine/annotations": "^1.12|^2",
  9317. "psr/log": "^1|^2|^3",
  9318. "symfony/config": "^6.2|^7.0",
  9319. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9320. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9321. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9322. "symfony/yaml": "^5.4|^6.0|^7.0"
  9323. },
  9324. "type": "library",
  9325. "autoload": {
  9326. "psr-4": {
  9327. "Symfony\\Component\\Routing\\": ""
  9328. },
  9329. "exclude-from-classmap": [
  9330. "/Tests/"
  9331. ]
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "MIT"
  9336. ],
  9337. "authors": [
  9338. {
  9339. "name": "Fabien Potencier",
  9340. "email": "fabien@symfony.com"
  9341. },
  9342. {
  9343. "name": "Symfony Community",
  9344. "homepage": "https://symfony.com/contributors"
  9345. }
  9346. ],
  9347. "description": "Maps an HTTP request to a set of configuration variables",
  9348. "homepage": "https://symfony.com",
  9349. "keywords": [
  9350. "router",
  9351. "routing",
  9352. "uri",
  9353. "url"
  9354. ],
  9355. "support": {
  9356. "source": "https://github.com/symfony/routing/tree/v6.4.24"
  9357. },
  9358. "funding": [
  9359. {
  9360. "url": "https://symfony.com/sponsor",
  9361. "type": "custom"
  9362. },
  9363. {
  9364. "url": "https://github.com/fabpot",
  9365. "type": "github"
  9366. },
  9367. {
  9368. "url": "https://github.com/nicolas-grekas",
  9369. "type": "github"
  9370. },
  9371. {
  9372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9373. "type": "tidelift"
  9374. }
  9375. ],
  9376. "time": "2025-07-15T08:46:37+00:00"
  9377. },
  9378. {
  9379. "name": "symfony/serializer",
  9380. "version": "v6.4.24",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/symfony/serializer.git",
  9384. "reference": "c01c719c8a837173dc100f2bd141a6271ea68a1d"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/symfony/serializer/zipball/c01c719c8a837173dc100f2bd141a6271ea68a1d",
  9389. "reference": "c01c719c8a837173dc100f2bd141a6271ea68a1d",
  9390. "shasum": ""
  9391. },
  9392. "require": {
  9393. "php": ">=8.1",
  9394. "symfony/deprecation-contracts": "^2.5|^3",
  9395. "symfony/polyfill-ctype": "~1.8"
  9396. },
  9397. "conflict": {
  9398. "doctrine/annotations": "<1.12",
  9399. "phpdocumentor/reflection-docblock": "<3.2.2",
  9400. "phpdocumentor/type-resolver": "<1.4.0",
  9401. "symfony/dependency-injection": "<5.4",
  9402. "symfony/property-access": "<5.4",
  9403. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9404. "symfony/uid": "<5.4",
  9405. "symfony/validator": "<6.4",
  9406. "symfony/yaml": "<5.4"
  9407. },
  9408. "require-dev": {
  9409. "doctrine/annotations": "^1.12|^2",
  9410. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9411. "seld/jsonlint": "^1.10",
  9412. "symfony/cache": "^5.4|^6.0|^7.0",
  9413. "symfony/config": "^5.4|^6.0|^7.0",
  9414. "symfony/console": "^5.4|^6.0|^7.0",
  9415. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9416. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9417. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9418. "symfony/form": "^5.4|^6.0|^7.0",
  9419. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9420. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9421. "symfony/messenger": "^5.4|^6.0|^7.0",
  9422. "symfony/mime": "^5.4|^6.0|^7.0",
  9423. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9424. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9425. "symfony/translation-contracts": "^2.5|^3",
  9426. "symfony/uid": "^5.4|^6.0|^7.0",
  9427. "symfony/validator": "^6.4|^7.0",
  9428. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9429. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9430. "symfony/yaml": "^5.4|^6.0|^7.0"
  9431. },
  9432. "type": "library",
  9433. "autoload": {
  9434. "psr-4": {
  9435. "Symfony\\Component\\Serializer\\": ""
  9436. },
  9437. "exclude-from-classmap": [
  9438. "/Tests/"
  9439. ]
  9440. },
  9441. "notification-url": "https://packagist.org/downloads/",
  9442. "license": [
  9443. "MIT"
  9444. ],
  9445. "authors": [
  9446. {
  9447. "name": "Fabien Potencier",
  9448. "email": "fabien@symfony.com"
  9449. },
  9450. {
  9451. "name": "Symfony Community",
  9452. "homepage": "https://symfony.com/contributors"
  9453. }
  9454. ],
  9455. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9456. "homepage": "https://symfony.com",
  9457. "support": {
  9458. "source": "https://github.com/symfony/serializer/tree/v6.4.24"
  9459. },
  9460. "funding": [
  9461. {
  9462. "url": "https://symfony.com/sponsor",
  9463. "type": "custom"
  9464. },
  9465. {
  9466. "url": "https://github.com/fabpot",
  9467. "type": "github"
  9468. },
  9469. {
  9470. "url": "https://github.com/nicolas-grekas",
  9471. "type": "github"
  9472. },
  9473. {
  9474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9475. "type": "tidelift"
  9476. }
  9477. ],
  9478. "time": "2025-07-10T08:14:14+00:00"
  9479. },
  9480. {
  9481. "name": "symfony/service-contracts",
  9482. "version": "v3.5.1",
  9483. "source": {
  9484. "type": "git",
  9485. "url": "https://github.com/symfony/service-contracts.git",
  9486. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  9487. },
  9488. "dist": {
  9489. "type": "zip",
  9490. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  9491. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  9492. "shasum": ""
  9493. },
  9494. "require": {
  9495. "php": ">=8.1",
  9496. "psr/container": "^1.1|^2.0",
  9497. "symfony/deprecation-contracts": "^2.5|^3"
  9498. },
  9499. "conflict": {
  9500. "ext-psr": "<1.1|>=2"
  9501. },
  9502. "type": "library",
  9503. "extra": {
  9504. "thanks": {
  9505. "url": "https://github.com/symfony/contracts",
  9506. "name": "symfony/contracts"
  9507. },
  9508. "branch-alias": {
  9509. "dev-main": "3.5-dev"
  9510. }
  9511. },
  9512. "autoload": {
  9513. "psr-4": {
  9514. "Symfony\\Contracts\\Service\\": ""
  9515. },
  9516. "exclude-from-classmap": [
  9517. "/Test/"
  9518. ]
  9519. },
  9520. "notification-url": "https://packagist.org/downloads/",
  9521. "license": [
  9522. "MIT"
  9523. ],
  9524. "authors": [
  9525. {
  9526. "name": "Nicolas Grekas",
  9527. "email": "p@tchwork.com"
  9528. },
  9529. {
  9530. "name": "Symfony Community",
  9531. "homepage": "https://symfony.com/contributors"
  9532. }
  9533. ],
  9534. "description": "Generic abstractions related to writing services",
  9535. "homepage": "https://symfony.com",
  9536. "keywords": [
  9537. "abstractions",
  9538. "contracts",
  9539. "decoupling",
  9540. "interfaces",
  9541. "interoperability",
  9542. "standards"
  9543. ],
  9544. "support": {
  9545. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://symfony.com/sponsor",
  9550. "type": "custom"
  9551. },
  9552. {
  9553. "url": "https://github.com/fabpot",
  9554. "type": "github"
  9555. },
  9556. {
  9557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9558. "type": "tidelift"
  9559. }
  9560. ],
  9561. "time": "2024-09-25T14:20:29+00:00"
  9562. },
  9563. {
  9564. "name": "symfony/string",
  9565. "version": "v6.4.24",
  9566. "source": {
  9567. "type": "git",
  9568. "url": "https://github.com/symfony/string.git",
  9569. "reference": "f0ce0bd36a3accb4a225435be077b4b4875587f4"
  9570. },
  9571. "dist": {
  9572. "type": "zip",
  9573. "url": "https://api.github.com/repos/symfony/string/zipball/f0ce0bd36a3accb4a225435be077b4b4875587f4",
  9574. "reference": "f0ce0bd36a3accb4a225435be077b4b4875587f4",
  9575. "shasum": ""
  9576. },
  9577. "require": {
  9578. "php": ">=8.1",
  9579. "symfony/polyfill-ctype": "~1.8",
  9580. "symfony/polyfill-intl-grapheme": "~1.0",
  9581. "symfony/polyfill-intl-normalizer": "~1.0",
  9582. "symfony/polyfill-mbstring": "~1.0"
  9583. },
  9584. "conflict": {
  9585. "symfony/translation-contracts": "<2.5"
  9586. },
  9587. "require-dev": {
  9588. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9589. "symfony/http-client": "^5.4|^6.0|^7.0",
  9590. "symfony/intl": "^6.2|^7.0",
  9591. "symfony/translation-contracts": "^2.5|^3.0",
  9592. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9593. },
  9594. "type": "library",
  9595. "autoload": {
  9596. "files": [
  9597. "Resources/functions.php"
  9598. ],
  9599. "psr-4": {
  9600. "Symfony\\Component\\String\\": ""
  9601. },
  9602. "exclude-from-classmap": [
  9603. "/Tests/"
  9604. ]
  9605. },
  9606. "notification-url": "https://packagist.org/downloads/",
  9607. "license": [
  9608. "MIT"
  9609. ],
  9610. "authors": [
  9611. {
  9612. "name": "Nicolas Grekas",
  9613. "email": "p@tchwork.com"
  9614. },
  9615. {
  9616. "name": "Symfony Community",
  9617. "homepage": "https://symfony.com/contributors"
  9618. }
  9619. ],
  9620. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9621. "homepage": "https://symfony.com",
  9622. "keywords": [
  9623. "grapheme",
  9624. "i18n",
  9625. "string",
  9626. "unicode",
  9627. "utf-8",
  9628. "utf8"
  9629. ],
  9630. "support": {
  9631. "source": "https://github.com/symfony/string/tree/v6.4.24"
  9632. },
  9633. "funding": [
  9634. {
  9635. "url": "https://symfony.com/sponsor",
  9636. "type": "custom"
  9637. },
  9638. {
  9639. "url": "https://github.com/fabpot",
  9640. "type": "github"
  9641. },
  9642. {
  9643. "url": "https://github.com/nicolas-grekas",
  9644. "type": "github"
  9645. },
  9646. {
  9647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9648. "type": "tidelift"
  9649. }
  9650. ],
  9651. "time": "2025-07-10T08:14:14+00:00"
  9652. },
  9653. {
  9654. "name": "symfony/translation-contracts",
  9655. "version": "v3.5.1",
  9656. "source": {
  9657. "type": "git",
  9658. "url": "https://github.com/symfony/translation-contracts.git",
  9659. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  9660. },
  9661. "dist": {
  9662. "type": "zip",
  9663. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  9664. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  9665. "shasum": ""
  9666. },
  9667. "require": {
  9668. "php": ">=8.1"
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "thanks": {
  9673. "url": "https://github.com/symfony/contracts",
  9674. "name": "symfony/contracts"
  9675. },
  9676. "branch-alias": {
  9677. "dev-main": "3.5-dev"
  9678. }
  9679. },
  9680. "autoload": {
  9681. "psr-4": {
  9682. "Symfony\\Contracts\\Translation\\": ""
  9683. },
  9684. "exclude-from-classmap": [
  9685. "/Test/"
  9686. ]
  9687. },
  9688. "notification-url": "https://packagist.org/downloads/",
  9689. "license": [
  9690. "MIT"
  9691. ],
  9692. "authors": [
  9693. {
  9694. "name": "Nicolas Grekas",
  9695. "email": "p@tchwork.com"
  9696. },
  9697. {
  9698. "name": "Symfony Community",
  9699. "homepage": "https://symfony.com/contributors"
  9700. }
  9701. ],
  9702. "description": "Generic abstractions related to translation",
  9703. "homepage": "https://symfony.com",
  9704. "keywords": [
  9705. "abstractions",
  9706. "contracts",
  9707. "decoupling",
  9708. "interfaces",
  9709. "interoperability",
  9710. "standards"
  9711. ],
  9712. "support": {
  9713. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  9714. },
  9715. "funding": [
  9716. {
  9717. "url": "https://symfony.com/sponsor",
  9718. "type": "custom"
  9719. },
  9720. {
  9721. "url": "https://github.com/fabpot",
  9722. "type": "github"
  9723. },
  9724. {
  9725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9726. "type": "tidelift"
  9727. }
  9728. ],
  9729. "time": "2024-09-25T14:20:29+00:00"
  9730. },
  9731. {
  9732. "name": "symfony/validator",
  9733. "version": "v6.4.24",
  9734. "source": {
  9735. "type": "git",
  9736. "url": "https://github.com/symfony/validator.git",
  9737. "reference": "297a24dccf13cc09f1d03207b20807f528f088cc"
  9738. },
  9739. "dist": {
  9740. "type": "zip",
  9741. "url": "https://api.github.com/repos/symfony/validator/zipball/297a24dccf13cc09f1d03207b20807f528f088cc",
  9742. "reference": "297a24dccf13cc09f1d03207b20807f528f088cc",
  9743. "shasum": ""
  9744. },
  9745. "require": {
  9746. "php": ">=8.1",
  9747. "symfony/deprecation-contracts": "^2.5|^3",
  9748. "symfony/polyfill-ctype": "~1.8",
  9749. "symfony/polyfill-mbstring": "~1.0",
  9750. "symfony/polyfill-php83": "^1.27",
  9751. "symfony/translation-contracts": "^2.5|^3"
  9752. },
  9753. "conflict": {
  9754. "doctrine/annotations": "<1.13",
  9755. "doctrine/lexer": "<1.1",
  9756. "symfony/dependency-injection": "<5.4",
  9757. "symfony/expression-language": "<5.4",
  9758. "symfony/http-kernel": "<5.4",
  9759. "symfony/intl": "<5.4",
  9760. "symfony/property-info": "<5.4",
  9761. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9762. "symfony/yaml": "<5.4"
  9763. },
  9764. "require-dev": {
  9765. "doctrine/annotations": "^1.13|^2",
  9766. "egulias/email-validator": "^2.1.10|^3|^4",
  9767. "symfony/cache": "^5.4|^6.0|^7.0",
  9768. "symfony/config": "^5.4|^6.0|^7.0",
  9769. "symfony/console": "^5.4|^6.0|^7.0",
  9770. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9771. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9772. "symfony/finder": "^5.4|^6.0|^7.0",
  9773. "symfony/http-client": "^5.4|^6.0|^7.0",
  9774. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9775. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9776. "symfony/intl": "^5.4|^6.0|^7.0",
  9777. "symfony/mime": "^5.4|^6.0|^7.0",
  9778. "symfony/property-access": "^5.4|^6.0|^7.0",
  9779. "symfony/property-info": "^5.4|^6.0|^7.0",
  9780. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9781. "symfony/yaml": "^5.4|^6.0|^7.0"
  9782. },
  9783. "type": "library",
  9784. "autoload": {
  9785. "psr-4": {
  9786. "Symfony\\Component\\Validator\\": ""
  9787. },
  9788. "exclude-from-classmap": [
  9789. "/Tests/",
  9790. "/Resources/bin/"
  9791. ]
  9792. },
  9793. "notification-url": "https://packagist.org/downloads/",
  9794. "license": [
  9795. "MIT"
  9796. ],
  9797. "authors": [
  9798. {
  9799. "name": "Fabien Potencier",
  9800. "email": "fabien@symfony.com"
  9801. },
  9802. {
  9803. "name": "Symfony Community",
  9804. "homepage": "https://symfony.com/contributors"
  9805. }
  9806. ],
  9807. "description": "Provides tools to validate values",
  9808. "homepage": "https://symfony.com",
  9809. "support": {
  9810. "source": "https://github.com/symfony/validator/tree/v6.4.24"
  9811. },
  9812. "funding": [
  9813. {
  9814. "url": "https://symfony.com/sponsor",
  9815. "type": "custom"
  9816. },
  9817. {
  9818. "url": "https://github.com/fabpot",
  9819. "type": "github"
  9820. },
  9821. {
  9822. "url": "https://github.com/nicolas-grekas",
  9823. "type": "github"
  9824. },
  9825. {
  9826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9827. "type": "tidelift"
  9828. }
  9829. ],
  9830. "time": "2025-07-29T18:08:45+00:00"
  9831. },
  9832. {
  9833. "name": "symfony/var-dumper",
  9834. "version": "v6.4.24",
  9835. "source": {
  9836. "type": "git",
  9837. "url": "https://github.com/symfony/var-dumper.git",
  9838. "reference": "aa29484ce0544bd69fa9f0df902e5ed7b7fe5034"
  9839. },
  9840. "dist": {
  9841. "type": "zip",
  9842. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/aa29484ce0544bd69fa9f0df902e5ed7b7fe5034",
  9843. "reference": "aa29484ce0544bd69fa9f0df902e5ed7b7fe5034",
  9844. "shasum": ""
  9845. },
  9846. "require": {
  9847. "php": ">=8.1",
  9848. "symfony/deprecation-contracts": "^2.5|^3",
  9849. "symfony/polyfill-mbstring": "~1.0"
  9850. },
  9851. "conflict": {
  9852. "symfony/console": "<5.4"
  9853. },
  9854. "require-dev": {
  9855. "symfony/console": "^5.4|^6.0|^7.0",
  9856. "symfony/error-handler": "^6.3|^7.0",
  9857. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9858. "symfony/process": "^5.4|^6.0|^7.0",
  9859. "symfony/uid": "^5.4|^6.0|^7.0",
  9860. "twig/twig": "^2.13|^3.0.4"
  9861. },
  9862. "bin": [
  9863. "Resources/bin/var-dump-server"
  9864. ],
  9865. "type": "library",
  9866. "autoload": {
  9867. "files": [
  9868. "Resources/functions/dump.php"
  9869. ],
  9870. "psr-4": {
  9871. "Symfony\\Component\\VarDumper\\": ""
  9872. },
  9873. "exclude-from-classmap": [
  9874. "/Tests/"
  9875. ]
  9876. },
  9877. "notification-url": "https://packagist.org/downloads/",
  9878. "license": [
  9879. "MIT"
  9880. ],
  9881. "authors": [
  9882. {
  9883. "name": "Nicolas Grekas",
  9884. "email": "p@tchwork.com"
  9885. },
  9886. {
  9887. "name": "Symfony Community",
  9888. "homepage": "https://symfony.com/contributors"
  9889. }
  9890. ],
  9891. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9892. "homepage": "https://symfony.com",
  9893. "keywords": [
  9894. "debug",
  9895. "dump"
  9896. ],
  9897. "support": {
  9898. "source": "https://github.com/symfony/var-dumper/tree/v6.4.24"
  9899. },
  9900. "funding": [
  9901. {
  9902. "url": "https://symfony.com/sponsor",
  9903. "type": "custom"
  9904. },
  9905. {
  9906. "url": "https://github.com/fabpot",
  9907. "type": "github"
  9908. },
  9909. {
  9910. "url": "https://github.com/nicolas-grekas",
  9911. "type": "github"
  9912. },
  9913. {
  9914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9915. "type": "tidelift"
  9916. }
  9917. ],
  9918. "time": "2025-07-29T18:40:01+00:00"
  9919. },
  9920. {
  9921. "name": "symfony/var-exporter",
  9922. "version": "v6.4.24",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/symfony/var-exporter.git",
  9926. "reference": "1e742d559fe5b19d0cdc281b1bf0b1fcc243bd35"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1e742d559fe5b19d0cdc281b1bf0b1fcc243bd35",
  9931. "reference": "1e742d559fe5b19d0cdc281b1bf0b1fcc243bd35",
  9932. "shasum": ""
  9933. },
  9934. "require": {
  9935. "php": ">=8.1",
  9936. "symfony/deprecation-contracts": "^2.5|^3"
  9937. },
  9938. "require-dev": {
  9939. "symfony/property-access": "^6.4|^7.0",
  9940. "symfony/serializer": "^6.4|^7.0",
  9941. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9942. },
  9943. "type": "library",
  9944. "autoload": {
  9945. "psr-4": {
  9946. "Symfony\\Component\\VarExporter\\": ""
  9947. },
  9948. "exclude-from-classmap": [
  9949. "/Tests/"
  9950. ]
  9951. },
  9952. "notification-url": "https://packagist.org/downloads/",
  9953. "license": [
  9954. "MIT"
  9955. ],
  9956. "authors": [
  9957. {
  9958. "name": "Nicolas Grekas",
  9959. "email": "p@tchwork.com"
  9960. },
  9961. {
  9962. "name": "Symfony Community",
  9963. "homepage": "https://symfony.com/contributors"
  9964. }
  9965. ],
  9966. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9967. "homepage": "https://symfony.com",
  9968. "keywords": [
  9969. "clone",
  9970. "construct",
  9971. "export",
  9972. "hydrate",
  9973. "instantiate",
  9974. "lazy-loading",
  9975. "proxy",
  9976. "serialize"
  9977. ],
  9978. "support": {
  9979. "source": "https://github.com/symfony/var-exporter/tree/v6.4.24"
  9980. },
  9981. "funding": [
  9982. {
  9983. "url": "https://symfony.com/sponsor",
  9984. "type": "custom"
  9985. },
  9986. {
  9987. "url": "https://github.com/fabpot",
  9988. "type": "github"
  9989. },
  9990. {
  9991. "url": "https://github.com/nicolas-grekas",
  9992. "type": "github"
  9993. },
  9994. {
  9995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9996. "type": "tidelift"
  9997. }
  9998. ],
  9999. "time": "2025-07-10T08:14:14+00:00"
  10000. },
  10001. {
  10002. "name": "symfony/yaml",
  10003. "version": "v6.4.24",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/symfony/yaml.git",
  10007. "reference": "742a8efc94027624b36b10ba58e23d402f961f51"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/symfony/yaml/zipball/742a8efc94027624b36b10ba58e23d402f961f51",
  10012. "reference": "742a8efc94027624b36b10ba58e23d402f961f51",
  10013. "shasum": ""
  10014. },
  10015. "require": {
  10016. "php": ">=8.1",
  10017. "symfony/deprecation-contracts": "^2.5|^3",
  10018. "symfony/polyfill-ctype": "^1.8"
  10019. },
  10020. "conflict": {
  10021. "symfony/console": "<5.4"
  10022. },
  10023. "require-dev": {
  10024. "symfony/console": "^5.4|^6.0|^7.0"
  10025. },
  10026. "bin": [
  10027. "Resources/bin/yaml-lint"
  10028. ],
  10029. "type": "library",
  10030. "autoload": {
  10031. "psr-4": {
  10032. "Symfony\\Component\\Yaml\\": ""
  10033. },
  10034. "exclude-from-classmap": [
  10035. "/Tests/"
  10036. ]
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "MIT"
  10041. ],
  10042. "authors": [
  10043. {
  10044. "name": "Fabien Potencier",
  10045. "email": "fabien@symfony.com"
  10046. },
  10047. {
  10048. "name": "Symfony Community",
  10049. "homepage": "https://symfony.com/contributors"
  10050. }
  10051. ],
  10052. "description": "Loads and dumps YAML files",
  10053. "homepage": "https://symfony.com",
  10054. "support": {
  10055. "source": "https://github.com/symfony/yaml/tree/v6.4.24"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://symfony.com/sponsor",
  10060. "type": "custom"
  10061. },
  10062. {
  10063. "url": "https://github.com/fabpot",
  10064. "type": "github"
  10065. },
  10066. {
  10067. "url": "https://github.com/nicolas-grekas",
  10068. "type": "github"
  10069. },
  10070. {
  10071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10072. "type": "tidelift"
  10073. }
  10074. ],
  10075. "time": "2025-07-10T08:14:14+00:00"
  10076. },
  10077. {
  10078. "name": "twig/twig",
  10079. "version": "v3.20.0",
  10080. "source": {
  10081. "type": "git",
  10082. "url": "https://github.com/twigphp/Twig.git",
  10083. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  10084. },
  10085. "dist": {
  10086. "type": "zip",
  10087. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  10088. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  10089. "shasum": ""
  10090. },
  10091. "require": {
  10092. "php": ">=8.1.0",
  10093. "symfony/deprecation-contracts": "^2.5|^3",
  10094. "symfony/polyfill-ctype": "^1.8",
  10095. "symfony/polyfill-mbstring": "^1.3"
  10096. },
  10097. "require-dev": {
  10098. "phpstan/phpstan": "^2.0",
  10099. "psr/container": "^1.0|^2.0",
  10100. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10101. },
  10102. "type": "library",
  10103. "autoload": {
  10104. "files": [
  10105. "src/Resources/core.php",
  10106. "src/Resources/debug.php",
  10107. "src/Resources/escaper.php",
  10108. "src/Resources/string_loader.php"
  10109. ],
  10110. "psr-4": {
  10111. "Twig\\": "src/"
  10112. }
  10113. },
  10114. "notification-url": "https://packagist.org/downloads/",
  10115. "license": [
  10116. "BSD-3-Clause"
  10117. ],
  10118. "authors": [
  10119. {
  10120. "name": "Fabien Potencier",
  10121. "email": "fabien@symfony.com",
  10122. "homepage": "http://fabien.potencier.org",
  10123. "role": "Lead Developer"
  10124. },
  10125. {
  10126. "name": "Twig Team",
  10127. "role": "Contributors"
  10128. },
  10129. {
  10130. "name": "Armin Ronacher",
  10131. "email": "armin.ronacher@active-4.com",
  10132. "role": "Project Founder"
  10133. }
  10134. ],
  10135. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10136. "homepage": "https://twig.symfony.com",
  10137. "keywords": [
  10138. "templating"
  10139. ],
  10140. "support": {
  10141. "issues": "https://github.com/twigphp/Twig/issues",
  10142. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  10143. },
  10144. "funding": [
  10145. {
  10146. "url": "https://github.com/fabpot",
  10147. "type": "github"
  10148. },
  10149. {
  10150. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10151. "type": "tidelift"
  10152. }
  10153. ],
  10154. "time": "2025-02-13T08:34:43+00:00"
  10155. },
  10156. {
  10157. "name": "vlucas/phpdotenv",
  10158. "version": "v2.6.9",
  10159. "source": {
  10160. "type": "git",
  10161. "url": "https://github.com/vlucas/phpdotenv.git",
  10162. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10163. },
  10164. "dist": {
  10165. "type": "zip",
  10166. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10167. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10168. "shasum": ""
  10169. },
  10170. "require": {
  10171. "php": "^5.3.9 || ^7.0 || ^8.0",
  10172. "symfony/polyfill-ctype": "^1.17"
  10173. },
  10174. "require-dev": {
  10175. "ext-filter": "*",
  10176. "ext-pcre": "*",
  10177. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10178. },
  10179. "suggest": {
  10180. "ext-filter": "Required to use the boolean validator.",
  10181. "ext-pcre": "Required to use most of the library."
  10182. },
  10183. "type": "library",
  10184. "extra": {
  10185. "branch-alias": {
  10186. "dev-master": "2.6-dev"
  10187. }
  10188. },
  10189. "autoload": {
  10190. "psr-4": {
  10191. "Dotenv\\": "src/"
  10192. }
  10193. },
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "BSD-3-Clause"
  10197. ],
  10198. "authors": [
  10199. {
  10200. "name": "Graham Campbell",
  10201. "email": "hello@gjcampbell.co.uk",
  10202. "homepage": "https://github.com/GrahamCampbell"
  10203. },
  10204. {
  10205. "name": "Vance Lucas",
  10206. "email": "vance@vancelucas.com",
  10207. "homepage": "https://github.com/vlucas"
  10208. }
  10209. ],
  10210. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10211. "keywords": [
  10212. "dotenv",
  10213. "env",
  10214. "environment"
  10215. ],
  10216. "support": {
  10217. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10218. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10219. },
  10220. "funding": [
  10221. {
  10222. "url": "https://github.com/GrahamCampbell",
  10223. "type": "github"
  10224. },
  10225. {
  10226. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10227. "type": "tidelift"
  10228. }
  10229. ],
  10230. "time": "2021-12-12T22:59:22+00:00"
  10231. },
  10232. {
  10233. "name": "webflo/drupal-finder",
  10234. "version": "1.3.1",
  10235. "source": {
  10236. "type": "git",
  10237. "url": "https://github.com/webflo/drupal-finder.git",
  10238. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10239. },
  10240. "dist": {
  10241. "type": "zip",
  10242. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10243. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10244. "shasum": ""
  10245. },
  10246. "require": {
  10247. "composer-runtime-api": "^2.2",
  10248. "php": ">=8.1"
  10249. },
  10250. "require-dev": {
  10251. "mikey179/vfsstream": "^1.6",
  10252. "phpunit/phpunit": "^10.4",
  10253. "symfony/process": "^6.4"
  10254. },
  10255. "type": "library",
  10256. "autoload": {
  10257. "psr-4": {
  10258. "DrupalFinder\\": "src/"
  10259. }
  10260. },
  10261. "notification-url": "https://packagist.org/downloads/",
  10262. "license": [
  10263. "GPL-2.0-or-later"
  10264. ],
  10265. "authors": [
  10266. {
  10267. "name": "Florian Weber",
  10268. "email": "florian@webflo.org"
  10269. }
  10270. ],
  10271. "description": "Helper class to locate a Drupal installation.",
  10272. "support": {
  10273. "issues": "https://github.com/webflo/drupal-finder/issues",
  10274. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10275. },
  10276. "time": "2024-06-28T13:45:36+00:00"
  10277. },
  10278. {
  10279. "name": "webmozart/assert",
  10280. "version": "1.11.0",
  10281. "source": {
  10282. "type": "git",
  10283. "url": "https://github.com/webmozarts/assert.git",
  10284. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10285. },
  10286. "dist": {
  10287. "type": "zip",
  10288. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10289. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10290. "shasum": ""
  10291. },
  10292. "require": {
  10293. "ext-ctype": "*",
  10294. "php": "^7.2 || ^8.0"
  10295. },
  10296. "conflict": {
  10297. "phpstan/phpstan": "<0.12.20",
  10298. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10299. },
  10300. "require-dev": {
  10301. "phpunit/phpunit": "^8.5.13"
  10302. },
  10303. "type": "library",
  10304. "extra": {
  10305. "branch-alias": {
  10306. "dev-master": "1.10-dev"
  10307. }
  10308. },
  10309. "autoload": {
  10310. "psr-4": {
  10311. "Webmozart\\Assert\\": "src/"
  10312. }
  10313. },
  10314. "notification-url": "https://packagist.org/downloads/",
  10315. "license": [
  10316. "MIT"
  10317. ],
  10318. "authors": [
  10319. {
  10320. "name": "Bernhard Schussek",
  10321. "email": "bschussek@gmail.com"
  10322. }
  10323. ],
  10324. "description": "Assertions to validate method input/output with nice error messages.",
  10325. "keywords": [
  10326. "assert",
  10327. "check",
  10328. "validate"
  10329. ],
  10330. "support": {
  10331. "issues": "https://github.com/webmozarts/assert/issues",
  10332. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10333. },
  10334. "time": "2022-06-03T18:03:27+00:00"
  10335. },
  10336. {
  10337. "name": "webmozart/path-util",
  10338. "version": "2.3.0",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/webmozart/path-util.git",
  10342. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10347. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10348. "shasum": ""
  10349. },
  10350. "require": {
  10351. "php": ">=5.3.3",
  10352. "webmozart/assert": "~1.0"
  10353. },
  10354. "require-dev": {
  10355. "phpunit/phpunit": "^4.6",
  10356. "sebastian/version": "^1.0.1"
  10357. },
  10358. "type": "library",
  10359. "extra": {
  10360. "branch-alias": {
  10361. "dev-master": "2.3-dev"
  10362. }
  10363. },
  10364. "autoload": {
  10365. "psr-4": {
  10366. "Webmozart\\PathUtil\\": "src/"
  10367. }
  10368. },
  10369. "notification-url": "https://packagist.org/downloads/",
  10370. "license": [
  10371. "MIT"
  10372. ],
  10373. "authors": [
  10374. {
  10375. "name": "Bernhard Schussek",
  10376. "email": "bschussek@gmail.com"
  10377. }
  10378. ],
  10379. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10380. "support": {
  10381. "issues": "https://github.com/webmozart/path-util/issues",
  10382. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10383. },
  10384. "abandoned": "symfony/filesystem",
  10385. "time": "2015-12-17T08:42:14+00:00"
  10386. }
  10387. ],
  10388. "packages-dev": [],
  10389. "aliases": [],
  10390. "minimum-stability": "dev",
  10391. "stability-flags": {
  10392. "drupal/basic": 15,
  10393. "drupal/bulkdelete": 20,
  10394. "drupal/config_update": 15,
  10395. "drupal/context": 5,
  10396. "drupal/domain": 10,
  10397. "drupal/filefield_sources": 20,
  10398. "drupal/linkit": 10
  10399. },
  10400. "prefer-stable": true,
  10401. "prefer-lowest": false,
  10402. "platform": {
  10403. "php": ">=5.6"
  10404. },
  10405. "platform-dev": {},
  10406. "plugin-api-version": "2.6.0"
  10407. }