composer.lock 381 KB

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