composer.lock 455 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453
  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": "fe3a970f200733b71d21e9f07b783697",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-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.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "2.6.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
  76. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=7.4",
  82. "psr/log": "^1.1 || ^2.0 || ^3.0",
  83. "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
  84. "symfony/filesystem": "^4.4 || ^5.1 || ^6",
  85. "symfony/polyfill-php80": "^1.23",
  86. "symfony/string": "^5.1 || ^6",
  87. "twig/twig": "^2.14.11 || ^3.1"
  88. },
  89. "conflict": {
  90. "squizlabs/php_codesniffer": "<3.6"
  91. },
  92. "require-dev": {
  93. "chi-teck/drupal-coder-extension": "^1.2",
  94. "drupal/coder": "^8.3.14",
  95. "phpspec/prophecy-phpunit": "^2.0",
  96. "phpunit/phpunit": "^9.4",
  97. "squizlabs/php_codesniffer": "^3.5",
  98. "symfony/var-dumper": "^5.2 || ^6.0",
  99. "symfony/yaml": "^5.2 || ^6.0"
  100. },
  101. "bin": [
  102. "bin/dcg"
  103. ],
  104. "type": "library",
  105. "extra": {
  106. "branch-alias": {
  107. "dev-master": "2.x-dev"
  108. }
  109. },
  110. "autoload": {
  111. "psr-4": {
  112. "DrupalCodeGenerator\\": "src"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "GPL-2.0-or-later"
  118. ],
  119. "description": "Drupal code generator",
  120. "support": {
  121. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  122. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
  123. },
  124. "time": "2022-11-11T15:34:04+00:00"
  125. },
  126. {
  127. "name": "commerceguys/addressing",
  128. "version": "v1.4.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/commerceguys/addressing.git",
  132. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "doctrine/collections": "^1.2 || ^2.0",
  142. "php": ">=7.3"
  143. },
  144. "require-dev": {
  145. "ext-json": "*",
  146. "mikey179/vfsstream": "^1.6.10",
  147. "phpunit/phpunit": "^9.5",
  148. "squizlabs/php_codesniffer": "^3.6",
  149. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  150. },
  151. "suggest": {
  152. "symfony/validator": "to validate addresses"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "1.x-dev"
  158. }
  159. },
  160. "autoload": {
  161. "psr-4": {
  162. "CommerceGuys\\Addressing\\": "src"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Bojan Zivanovic"
  172. },
  173. {
  174. "name": "Damien Tournoud"
  175. }
  176. ],
  177. "description": "Addressing library powered by CLDR and Google's address data.",
  178. "keywords": [
  179. "address",
  180. "internationalization",
  181. "localization",
  182. "postal"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/commerceguys/addressing/issues",
  186. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  187. },
  188. "time": "2023-02-15T10:11:14+00:00"
  189. },
  190. {
  191. "name": "components/highlightjs",
  192. "version": "9.7.0",
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  196. },
  197. "type": "drupal-library"
  198. },
  199. {
  200. "name": "composer/installers",
  201. "version": "v2.2.0",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/installers.git",
  205. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  211. "shasum": ""
  212. },
  213. "require": {
  214. "composer-plugin-api": "^1.0 || ^2.0",
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "composer/composer": "1.6.* || ^2.0",
  219. "composer/semver": "^1 || ^3",
  220. "phpstan/phpstan": "^0.12.55",
  221. "phpstan/phpstan-phpunit": "^0.12.16",
  222. "symfony/phpunit-bridge": "^5.3",
  223. "symfony/process": "^5"
  224. },
  225. "type": "composer-plugin",
  226. "extra": {
  227. "class": "Composer\\Installers\\Plugin",
  228. "branch-alias": {
  229. "dev-main": "2.x-dev"
  230. },
  231. "plugin-modifies-install-path": true
  232. },
  233. "autoload": {
  234. "psr-4": {
  235. "Composer\\Installers\\": "src/Composer/Installers"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Kyle Robinson Young",
  245. "email": "kyle@dontkry.com",
  246. "homepage": "https://github.com/shama"
  247. }
  248. ],
  249. "description": "A multi-framework Composer library installer",
  250. "homepage": "https://composer.github.io/installers/",
  251. "keywords": [
  252. "Dolibarr",
  253. "Eliasis",
  254. "Hurad",
  255. "ImageCMS",
  256. "Kanboard",
  257. "Lan Management System",
  258. "MODX Evo",
  259. "MantisBT",
  260. "Mautic",
  261. "Maya",
  262. "OXID",
  263. "Plentymarkets",
  264. "Porto",
  265. "RadPHP",
  266. "SMF",
  267. "Starbug",
  268. "Thelia",
  269. "Whmcs",
  270. "WolfCMS",
  271. "agl",
  272. "annotatecms",
  273. "attogram",
  274. "bitrix",
  275. "cakephp",
  276. "chef",
  277. "cockpit",
  278. "codeigniter",
  279. "concrete5",
  280. "croogo",
  281. "dokuwiki",
  282. "drupal",
  283. "eZ Platform",
  284. "elgg",
  285. "expressionengine",
  286. "fuelphp",
  287. "grav",
  288. "installer",
  289. "itop",
  290. "known",
  291. "kohana",
  292. "laravel",
  293. "lavalite",
  294. "lithium",
  295. "magento",
  296. "majima",
  297. "mako",
  298. "matomo",
  299. "mediawiki",
  300. "miaoxing",
  301. "modulework",
  302. "modx",
  303. "moodle",
  304. "osclass",
  305. "pantheon",
  306. "phpbb",
  307. "piwik",
  308. "ppi",
  309. "processwire",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "sylius",
  318. "tastyigniter",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/composer/installers/issues",
  326. "source": "https://github.com/composer/installers/tree/v2.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://packagist.com",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://github.com/composer",
  335. "type": "github"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2022-08-20T06:45:11+00:00"
  343. },
  344. {
  345. "name": "composer/semver",
  346. "version": "3.3.2",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/composer/semver.git",
  350. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  355. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.2 || ^7.0 || ^8.0"
  360. },
  361. "require-dev": {
  362. "phpstan/phpstan": "^1.4",
  363. "symfony/phpunit-bridge": "^4.2 || ^5"
  364. },
  365. "type": "library",
  366. "extra": {
  367. "branch-alias": {
  368. "dev-main": "3.x-dev"
  369. }
  370. },
  371. "autoload": {
  372. "psr-4": {
  373. "Composer\\Semver\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Nils Adermann",
  383. "email": "naderman@naderman.de",
  384. "homepage": "http://www.naderman.de"
  385. },
  386. {
  387. "name": "Jordi Boggiano",
  388. "email": "j.boggiano@seld.be",
  389. "homepage": "http://seld.be"
  390. },
  391. {
  392. "name": "Rob Bast",
  393. "email": "rob.bast@gmail.com",
  394. "homepage": "http://robbast.nl"
  395. }
  396. ],
  397. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  398. "keywords": [
  399. "semantic",
  400. "semver",
  401. "validation",
  402. "versioning"
  403. ],
  404. "support": {
  405. "irc": "irc://irc.freenode.org/composer",
  406. "issues": "https://github.com/composer/semver/issues",
  407. "source": "https://github.com/composer/semver/tree/3.3.2"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://packagist.com",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://github.com/composer",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-04-01T19:23:25+00:00"
  424. },
  425. {
  426. "name": "consolidation/annotated-command",
  427. "version": "4.9.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/consolidation/annotated-command.git",
  431. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  436. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "consolidation/output-formatters": "^4.3.1",
  441. "php": ">=7.1.3",
  442. "psr/log": "^1 || ^2 || ^3",
  443. "symfony/console": "^4.4.8 || ^5 || ^6",
  444. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  445. "symfony/finder": "^4.4.8 || ^5 || ^6"
  446. },
  447. "require-dev": {
  448. "composer-runtime-api": "^2.0",
  449. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  450. "squizlabs/php_codesniffer": "^3",
  451. "yoast/phpunit-polyfills": "^0.2.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-main": "4.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Consolidation\\AnnotatedCommand\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Greg Anderson",
  471. "email": "greg.1.anderson@greenknowe.org"
  472. }
  473. ],
  474. "description": "Initialize Symfony Console commands from annotated command class methods.",
  475. "support": {
  476. "issues": "https://github.com/consolidation/annotated-command/issues",
  477. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  478. },
  479. "time": "2023-05-20T04:19:01+00:00"
  480. },
  481. {
  482. "name": "consolidation/config",
  483. "version": "2.1.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/config.git",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  492. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  497. "grasmash/expander": "^2.0.1 || ^3",
  498. "php": ">=7.1.3",
  499. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  500. },
  501. "require-dev": {
  502. "ext-json": "*",
  503. "phpunit/phpunit": ">=7.5.20",
  504. "squizlabs/php_codesniffer": "^3",
  505. "symfony/console": "^4 || ^5 || ^6",
  506. "symfony/yaml": "^4 || ^5 || ^6",
  507. "yoast/phpunit-polyfills": "^1"
  508. },
  509. "suggest": {
  510. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  511. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\Config\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Provide configuration services for a commandline tool.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/config/issues",
  537. "source": "https://github.com/consolidation/config/tree/2.1.2"
  538. },
  539. "time": "2022-10-06T17:48:03+00:00"
  540. },
  541. {
  542. "name": "consolidation/filter-via-dot-access-data",
  543. "version": "2.0.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  552. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  557. "php": ">=7.1.3"
  558. },
  559. "require-dev": {
  560. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  561. "squizlabs/php_codesniffer": "^3",
  562. "yoast/phpunit-polyfills": "^0.2.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-main": "2.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Consolidation\\Filter\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Greg Anderson",
  582. "email": "greg.1.anderson@greenknowe.org"
  583. }
  584. ],
  585. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  586. "support": {
  587. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  588. },
  589. "time": "2021-12-30T03:56:08+00:00"
  590. },
  591. {
  592. "name": "consolidation/log",
  593. "version": "3.0.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/consolidation/log.git",
  597. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  602. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=8.0.0",
  607. "psr/log": "^3",
  608. "symfony/console": "^5 || ^6"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": ">=7.5.20",
  612. "squizlabs/php_codesniffer": "^3",
  613. "yoast/phpunit-polyfills": "^0.2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-main": "2.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Consolidation\\Log\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Greg Anderson",
  633. "email": "greg.1.anderson@greenknowe.org"
  634. }
  635. ],
  636. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  637. "support": {
  638. "issues": "https://github.com/consolidation/log/issues",
  639. "source": "https://github.com/consolidation/log/tree/3.0.0"
  640. },
  641. "time": "2022-04-05T16:53:32+00:00"
  642. },
  643. {
  644. "name": "consolidation/output-formatters",
  645. "version": "4.3.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/consolidation/output-formatters.git",
  649. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  654. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  659. "php": ">=7.1.3",
  660. "symfony/console": "^4 || ^5 || ^6",
  661. "symfony/finder": "^4 || ^5 || ^6"
  662. },
  663. "require-dev": {
  664. "php-coveralls/php-coveralls": "^2.4.2",
  665. "phpunit/phpunit": "^7 || ^8 || ^9",
  666. "squizlabs/php_codesniffer": "^3",
  667. "symfony/var-dumper": "^4 || ^5 || ^6",
  668. "symfony/yaml": "^4 || ^5 || ^6",
  669. "yoast/phpunit-polyfills": "^1"
  670. },
  671. "suggest": {
  672. "symfony/var-dumper": "For using the var_dump formatter"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\OutputFormatters\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "Format text by applying transformations provided by plug-in formatters.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/output-formatters/issues",
  693. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  694. },
  695. "time": "2023-07-06T04:45:41+00:00"
  696. },
  697. {
  698. "name": "consolidation/robo",
  699. "version": "4.0.6",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/robo.git",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  708. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "consolidation/annotated-command": "^4.8.1",
  713. "consolidation/config": "^2.0.1",
  714. "consolidation/log": "^2.0.2 || ^3",
  715. "consolidation/output-formatters": "^4.1.2",
  716. "consolidation/self-update": "^2.0",
  717. "league/container": "^3.3.1 || ^4.0",
  718. "php": ">=8.0",
  719. "phpowermove/docblock": "^4.0",
  720. "symfony/console": "^6",
  721. "symfony/event-dispatcher": "^6",
  722. "symfony/filesystem": "^6",
  723. "symfony/finder": "^6",
  724. "symfony/process": "^6",
  725. "symfony/yaml": "^6"
  726. },
  727. "conflict": {
  728. "codegyre/robo": "*"
  729. },
  730. "require-dev": {
  731. "natxet/cssmin": "3.0.4",
  732. "patchwork/jsqueeze": "^2",
  733. "pear/archive_tar": "^1.4.4",
  734. "phpunit/phpunit": "^7.5.20 || ^8",
  735. "squizlabs/php_codesniffer": "^3.6",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "natxet/cssmin": "For minifying CSS files in taskMinify",
  740. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  741. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  742. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  743. },
  744. "bin": [
  745. "robo"
  746. ],
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "Robo\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Davert",
  760. "email": "davert.php@resend.cc"
  761. }
  762. ],
  763. "description": "Modern task runner",
  764. "support": {
  765. "issues": "https://github.com/consolidation/robo/issues",
  766. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  767. },
  768. "time": "2023-04-30T21:49:04+00:00"
  769. },
  770. {
  771. "name": "consolidation/self-update",
  772. "version": "2.2.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/consolidation/self-update.git",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  781. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "composer/semver": "^3.2",
  786. "php": ">=5.5.0",
  787. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  788. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  789. },
  790. "bin": [
  791. "scripts/release"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-main": "2.x-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "SelfUpdate\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Alexander Menk",
  811. "email": "menk@mestrona.net"
  812. },
  813. {
  814. "name": "Greg Anderson",
  815. "email": "greg.1.anderson@greenknowe.org"
  816. }
  817. ],
  818. "description": "Provides a self:update command for Symfony Console applications.",
  819. "support": {
  820. "issues": "https://github.com/consolidation/self-update/issues",
  821. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  822. },
  823. "time": "2023-03-18T01:37:41+00:00"
  824. },
  825. {
  826. "name": "consolidation/site-alias",
  827. "version": "4.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/consolidation/site-alias.git",
  831. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  836. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "consolidation/config": "^1.2.1 || ^2",
  841. "php": ">=7.4",
  842. "symfony/filesystem": "^5.4 || ^6",
  843. "symfony/finder": "^5 || ^6"
  844. },
  845. "require-dev": {
  846. "php-coveralls/php-coveralls": "^2.4.2",
  847. "phpunit/phpunit": ">=7",
  848. "squizlabs/php_codesniffer": "^3",
  849. "symfony/var-dumper": "^4",
  850. "yoast/phpunit-polyfills": "^0.2.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-main": "4.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "Consolidation\\SiteAlias\\": "src"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Greg Anderson",
  870. "email": "greg.1.anderson@greenknowe.org"
  871. },
  872. {
  873. "name": "Moshe Weitzman",
  874. "email": "weitzman@tejasa.com"
  875. }
  876. ],
  877. "description": "Manage alias records for local and remote sites.",
  878. "support": {
  879. "issues": "https://github.com/consolidation/site-alias/issues",
  880. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  881. },
  882. "time": "2023-04-29T17:18:10+00:00"
  883. },
  884. {
  885. "name": "consolidation/site-process",
  886. "version": "5.2.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/consolidation/site-process.git",
  890. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  895. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "consolidation/config": "^2",
  900. "consolidation/site-alias": "^3 || ^4",
  901. "php": ">=8.0.14",
  902. "symfony/console": "^5.4 || ^6",
  903. "symfony/process": "^6"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^9",
  907. "squizlabs/php_codesniffer": "^3"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-main": "5.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Consolidation\\SiteProcess\\": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Greg Anderson",
  927. "email": "greg.1.anderson@greenknowe.org"
  928. },
  929. {
  930. "name": "Moshe Weitzman",
  931. "email": "weitzman@tejasa.com"
  932. }
  933. ],
  934. "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.",
  935. "support": {
  936. "issues": "https://github.com/consolidation/site-process/issues",
  937. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  938. },
  939. "time": "2022-12-06T17:57:16+00:00"
  940. },
  941. {
  942. "name": "cweagans/composer-patches",
  943. "version": "1.7.3",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/cweagans/composer-patches.git",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  952. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "composer-plugin-api": "^1.0 || ^2.0",
  957. "php": ">=5.3.0"
  958. },
  959. "require-dev": {
  960. "composer/composer": "~1.0 || ~2.0",
  961. "phpunit/phpunit": "~4.6"
  962. },
  963. "type": "composer-plugin",
  964. "extra": {
  965. "class": "cweagans\\Composer\\Patches"
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "cweagans\\Composer\\": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "BSD-3-Clause"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Cameron Eagans",
  979. "email": "me@cweagans.net"
  980. }
  981. ],
  982. "description": "Provides a way to patch Composer packages.",
  983. "support": {
  984. "issues": "https://github.com/cweagans/composer-patches/issues",
  985. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  986. },
  987. "time": "2022-12-20T22:53:13+00:00"
  988. },
  989. {
  990. "name": "d3/d3",
  991. "version": "v3.5.17",
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  995. },
  996. "type": "drupal-library"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.2",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1009. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": "^7.1 || ^8.0"
  1014. },
  1015. "require-dev": {
  1016. "phpstan/phpstan": "^0.12.42",
  1017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1018. "scrutinizer/ocular": "1.6.0",
  1019. "squizlabs/php_codesniffer": "^3.5",
  1020. "vimeo/psalm": "^4.0.0"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-main": "3.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Dflydev\\DotAccessData\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Dragonfly Development Inc.",
  1040. "email": "info@dflydev.com",
  1041. "homepage": "http://dflydev.com"
  1042. },
  1043. {
  1044. "name": "Beau Simensen",
  1045. "email": "beau@dflydev.com",
  1046. "homepage": "http://beausimensen.com"
  1047. },
  1048. {
  1049. "name": "Carlos Frutos",
  1050. "email": "carlos@kiwing.it",
  1051. "homepage": "https://github.com/cfrutos"
  1052. },
  1053. {
  1054. "name": "Colin O'Dell",
  1055. "email": "colinodell@gmail.com",
  1056. "homepage": "https://www.colinodell.com"
  1057. }
  1058. ],
  1059. "description": "Given a deep data structure, access data by dot notation.",
  1060. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1061. "keywords": [
  1062. "access",
  1063. "data",
  1064. "dot",
  1065. "notation"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1069. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1070. },
  1071. "time": "2022-10-27T11:44:00+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/lexer": "^1 || ^2",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1 || ^8.0",
  1091. "psr/cache": "^1 || ^2 || ^3"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/cache": "^1.11 || ^2.0",
  1095. "doctrine/coding-standard": "^9 || ^10",
  1096. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1098. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1099. "vimeo/psalm": "^4.10"
  1100. },
  1101. "suggest": {
  1102. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1103. },
  1104. "type": "library",
  1105. "autoload": {
  1106. "psr-4": {
  1107. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Guilherme Blanco",
  1117. "email": "guilhermeblanco@gmail.com"
  1118. },
  1119. {
  1120. "name": "Roman Borschel",
  1121. "email": "roman@code-factory.org"
  1122. },
  1123. {
  1124. "name": "Benjamin Eberlei",
  1125. "email": "kontakt@beberlei.de"
  1126. },
  1127. {
  1128. "name": "Jonathan Wage",
  1129. "email": "jonwage@gmail.com"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "Docblock Annotations Parser",
  1137. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/doctrine/annotations/issues",
  1145. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1146. },
  1147. "time": "2023-02-01T09:20:38+00:00"
  1148. },
  1149. {
  1150. "name": "doctrine/collections",
  1151. "version": "2.1.4",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/doctrine/collections.git",
  1155. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  1160. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "doctrine/deprecations": "^1",
  1165. "php": "^8.1"
  1166. },
  1167. "require-dev": {
  1168. "doctrine/coding-standard": "^12",
  1169. "ext-json": "*",
  1170. "phpstan/phpstan": "^1.8",
  1171. "phpstan/phpstan-phpunit": "^1.0",
  1172. "phpunit/phpunit": "^9.5",
  1173. "vimeo/psalm": "^5.11"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Collections\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Guilherme Blanco",
  1188. "email": "guilhermeblanco@gmail.com"
  1189. },
  1190. {
  1191. "name": "Roman Borschel",
  1192. "email": "roman@code-factory.org"
  1193. },
  1194. {
  1195. "name": "Benjamin Eberlei",
  1196. "email": "kontakt@beberlei.de"
  1197. },
  1198. {
  1199. "name": "Jonathan Wage",
  1200. "email": "jonwage@gmail.com"
  1201. },
  1202. {
  1203. "name": "Johannes Schmitt",
  1204. "email": "schmittjoh@gmail.com"
  1205. }
  1206. ],
  1207. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1208. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1209. "keywords": [
  1210. "array",
  1211. "collections",
  1212. "iterators",
  1213. "php"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/collections/issues",
  1217. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://www.doctrine-project.org/sponsorship.html",
  1222. "type": "custom"
  1223. },
  1224. {
  1225. "url": "https://www.patreon.com/phpdoctrine",
  1226. "type": "patreon"
  1227. },
  1228. {
  1229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1230. "type": "tidelift"
  1231. }
  1232. ],
  1233. "time": "2023-10-03T09:22:33+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/common",
  1237. "version": "3.4.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/common.git",
  1241. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  1246. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "doctrine/persistence": "^2.0 || ^3.0",
  1251. "php": "^7.1 || ^8.0"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "^9.0 || ^10.0",
  1255. "doctrine/collections": "^1",
  1256. "phpstan/phpstan": "^1.4.1",
  1257. "phpstan/phpstan-phpunit": "^1",
  1258. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1259. "squizlabs/php_codesniffer": "^3.0",
  1260. "symfony/phpunit-bridge": "^6.1",
  1261. "vimeo/psalm": "^4.4"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\Common\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Guilherme Blanco",
  1276. "email": "guilhermeblanco@gmail.com"
  1277. },
  1278. {
  1279. "name": "Roman Borschel",
  1280. "email": "roman@code-factory.org"
  1281. },
  1282. {
  1283. "name": "Benjamin Eberlei",
  1284. "email": "kontakt@beberlei.de"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. },
  1290. {
  1291. "name": "Johannes Schmitt",
  1292. "email": "schmittjoh@gmail.com"
  1293. },
  1294. {
  1295. "name": "Marco Pivetta",
  1296. "email": "ocramius@gmail.com"
  1297. }
  1298. ],
  1299. "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.",
  1300. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1301. "keywords": [
  1302. "common",
  1303. "doctrine",
  1304. "php"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/doctrine/common/issues",
  1308. "source": "https://github.com/doctrine/common/tree/3.4.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://www.doctrine-project.org/sponsorship.html",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://www.patreon.com/phpdoctrine",
  1317. "type": "patreon"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-10-09T11:47:59+00:00"
  1325. },
  1326. {
  1327. "name": "doctrine/deprecations",
  1328. "version": "1.1.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/doctrine/deprecations.git",
  1332. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1337. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.1 || ^8.0"
  1342. },
  1343. "require-dev": {
  1344. "doctrine/coding-standard": "^9",
  1345. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1346. "phpstan/phpstan-phpunit": "^1.0",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1348. "psalm/plugin-phpunit": "0.18.4",
  1349. "psr/log": "^1 || ^2 || ^3",
  1350. "vimeo/psalm": "4.30.0 || 5.12.0"
  1351. },
  1352. "suggest": {
  1353. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "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.",
  1366. "homepage": "https://www.doctrine-project.org/",
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/deprecations/issues",
  1369. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  1370. },
  1371. "time": "2023-09-27T20:04:15+00:00"
  1372. },
  1373. {
  1374. "name": "doctrine/event-manager",
  1375. "version": "2.0.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/doctrine/event-manager.git",
  1379. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1384. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": "^8.1"
  1389. },
  1390. "conflict": {
  1391. "doctrine/common": "<2.9"
  1392. },
  1393. "require-dev": {
  1394. "doctrine/coding-standard": "^10",
  1395. "phpstan/phpstan": "^1.8.8",
  1396. "phpunit/phpunit": "^9.5",
  1397. "vimeo/psalm": "^4.28"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Roman Borschel",
  1416. "email": "roman@code-factory.org"
  1417. },
  1418. {
  1419. "name": "Benjamin Eberlei",
  1420. "email": "kontakt@beberlei.de"
  1421. },
  1422. {
  1423. "name": "Jonathan Wage",
  1424. "email": "jonwage@gmail.com"
  1425. },
  1426. {
  1427. "name": "Johannes Schmitt",
  1428. "email": "schmittjoh@gmail.com"
  1429. },
  1430. {
  1431. "name": "Marco Pivetta",
  1432. "email": "ocramius@gmail.com"
  1433. }
  1434. ],
  1435. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1436. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1437. "keywords": [
  1438. "event",
  1439. "event dispatcher",
  1440. "event manager",
  1441. "event system",
  1442. "events"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/event-manager/issues",
  1446. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://www.doctrine-project.org/sponsorship.html",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://www.patreon.com/phpdoctrine",
  1455. "type": "patreon"
  1456. },
  1457. {
  1458. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1459. "type": "tidelift"
  1460. }
  1461. ],
  1462. "time": "2022-10-12T20:59:15+00:00"
  1463. },
  1464. {
  1465. "name": "doctrine/lexer",
  1466. "version": "2.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/doctrine/lexer.git",
  1470. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1475. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/deprecations": "^1.0",
  1480. "php": "^7.1 || ^8.0"
  1481. },
  1482. "require-dev": {
  1483. "doctrine/coding-standard": "^9 || ^10",
  1484. "phpstan/phpstan": "^1.3",
  1485. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1486. "psalm/plugin-phpunit": "^0.18.3",
  1487. "vimeo/psalm": "^4.11 || ^5.0"
  1488. },
  1489. "type": "library",
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Lexer\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Johannes Schmitt",
  1510. "email": "schmittjoh@gmail.com"
  1511. }
  1512. ],
  1513. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1514. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1515. "keywords": [
  1516. "annotations",
  1517. "docblock",
  1518. "lexer",
  1519. "parser",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/lexer/issues",
  1524. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-12-14T08:49:07+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/persistence",
  1544. "version": "3.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/persistence.git",
  1548. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1553. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/event-manager": "^1 || ^2",
  1558. "php": "^7.2 || ^8.0",
  1559. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1560. },
  1561. "conflict": {
  1562. "doctrine/common": "<2.10"
  1563. },
  1564. "require-dev": {
  1565. "composer/package-versions-deprecated": "^1.11",
  1566. "doctrine/coding-standard": "^11",
  1567. "doctrine/common": "^3.0",
  1568. "phpstan/phpstan": "1.9.4",
  1569. "phpstan/phpstan-phpunit": "^1",
  1570. "phpstan/phpstan-strict-rules": "^1.1",
  1571. "phpunit/phpunit": "^8.5 || ^9.5",
  1572. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1573. "vimeo/psalm": "4.30.0 || 5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Doctrine\\Persistence\\": "src/Persistence"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Roman Borschel",
  1592. "email": "roman@code-factory.org"
  1593. },
  1594. {
  1595. "name": "Benjamin Eberlei",
  1596. "email": "kontakt@beberlei.de"
  1597. },
  1598. {
  1599. "name": "Jonathan Wage",
  1600. "email": "jonwage@gmail.com"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. },
  1606. {
  1607. "name": "Marco Pivetta",
  1608. "email": "ocramius@gmail.com"
  1609. }
  1610. ],
  1611. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1612. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1613. "keywords": [
  1614. "mapper",
  1615. "object",
  1616. "odm",
  1617. "orm",
  1618. "persistence"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/doctrine/persistence/issues",
  1622. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.doctrine-project.org/sponsorship.html",
  1627. "type": "custom"
  1628. },
  1629. {
  1630. "url": "https://www.patreon.com/phpdoctrine",
  1631. "type": "patreon"
  1632. },
  1633. {
  1634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1635. "type": "tidelift"
  1636. }
  1637. ],
  1638. "time": "2023-05-17T18:32:04+00:00"
  1639. },
  1640. {
  1641. "name": "drupal/address",
  1642. "version": "1.12.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://git.drupalcode.org/project/address.git",
  1646. "reference": "8.x-1.12"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1651. "reference": "8.x-1.12",
  1652. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1653. },
  1654. "require": {
  1655. "commerceguys/addressing": "^1.4.2",
  1656. "drupal/core": "^9.2 || ^10",
  1657. "php": "^7.3 || ^8.0"
  1658. },
  1659. "require-dev": {
  1660. "drupal/token": "^1.0"
  1661. },
  1662. "type": "drupal-module",
  1663. "extra": {
  1664. "drupal": {
  1665. "version": "8.x-1.12",
  1666. "datestamp": "1684710176",
  1667. "security-coverage": {
  1668. "status": "covered",
  1669. "message": "Covered by Drupal's security advisory policy"
  1670. }
  1671. }
  1672. },
  1673. "notification-url": "https://packages.drupal.org/8/downloads",
  1674. "license": [
  1675. "GPL-2.0-or-later"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "bojanz",
  1680. "homepage": "https://www.drupal.org/user/86106"
  1681. },
  1682. {
  1683. "name": "Centarro",
  1684. "homepage": "https://www.drupal.org/user/3661446"
  1685. },
  1686. {
  1687. "name": "dww",
  1688. "homepage": "https://www.drupal.org/user/46549"
  1689. },
  1690. {
  1691. "name": "googletorp",
  1692. "homepage": "https://www.drupal.org/user/386230"
  1693. },
  1694. {
  1695. "name": "jsacksick",
  1696. "homepage": "https://www.drupal.org/user/972218"
  1697. },
  1698. {
  1699. "name": "mglaman",
  1700. "homepage": "https://www.drupal.org/user/2416470"
  1701. },
  1702. {
  1703. "name": "rszrama",
  1704. "homepage": "https://www.drupal.org/user/49344"
  1705. }
  1706. ],
  1707. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1708. "homepage": "http://drupal.org/project/address",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/address"
  1711. }
  1712. },
  1713. {
  1714. "name": "drupal/admin_toolbar",
  1715. "version": "3.4.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1719. "reference": "3.4.2"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1724. "reference": "3.4.2",
  1725. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^9.2 || ^10"
  1729. },
  1730. "require-dev": {
  1731. "drupal/admin_toolbar_tools": "*"
  1732. },
  1733. "type": "drupal-module",
  1734. "extra": {
  1735. "drupal": {
  1736. "version": "3.4.2",
  1737. "datestamp": "1696006195",
  1738. "security-coverage": {
  1739. "status": "covered",
  1740. "message": "Covered by Drupal's security advisory policy"
  1741. }
  1742. }
  1743. },
  1744. "notification-url": "https://packages.drupal.org/8/downloads",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Wilfrid Roze (eme)",
  1751. "homepage": "https://www.drupal.org/u/eme",
  1752. "role": "Maintainer"
  1753. },
  1754. {
  1755. "name": "Romain Jarraud (romainj)",
  1756. "homepage": "https://www.drupal.org/u/romainj",
  1757. "role": "Maintainer"
  1758. },
  1759. {
  1760. "name": "Adrian Cid Almaguer (adriancid)",
  1761. "homepage": "https://www.drupal.org/u/adriancid",
  1762. "email": "adriancid@gmail.com",
  1763. "role": "Maintainer"
  1764. },
  1765. {
  1766. "name": "Mohamed Anis Taktak (matio89)",
  1767. "homepage": "https://www.drupal.org/u/matio89",
  1768. "role": "Maintainer"
  1769. },
  1770. {
  1771. "name": "matio89",
  1772. "homepage": "https://www.drupal.org/user/2320090"
  1773. },
  1774. {
  1775. "name": "Musa.thomas",
  1776. "homepage": "https://www.drupal.org/user/1213824"
  1777. },
  1778. {
  1779. "name": "romainj",
  1780. "homepage": "https://www.drupal.org/user/370706"
  1781. }
  1782. ],
  1783. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1784. "homepage": "http://drupal.org/project/admin_toolbar",
  1785. "keywords": [
  1786. "Drupal",
  1787. "Toolbar"
  1788. ],
  1789. "support": {
  1790. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1791. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1792. }
  1793. },
  1794. {
  1795. "name": "drupal/adminimal_theme",
  1796. "version": "1.7.0",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1800. "reference": "8.x-1.7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1805. "reference": "8.x-1.7",
  1806. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1807. },
  1808. "require": {
  1809. "drupal/core": "^9.3 || ^10",
  1810. "drupal/seven": "~1.0"
  1811. },
  1812. "type": "drupal-theme",
  1813. "extra": {
  1814. "drupal": {
  1815. "version": "8.x-1.7",
  1816. "datestamp": "1691504486",
  1817. "security-coverage": {
  1818. "status": "covered",
  1819. "message": "Covered by Drupal's security advisory policy"
  1820. }
  1821. }
  1822. },
  1823. "notification-url": "https://packages.drupal.org/8/downloads",
  1824. "license": [
  1825. "GPL-2.0+"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "ANDiTKO",
  1830. "homepage": "https://www.drupal.org/user/1428124"
  1831. },
  1832. {
  1833. "name": "andrey.troeglazov",
  1834. "homepage": "https://www.drupal.org/user/3145389"
  1835. },
  1836. {
  1837. "name": "realityloop",
  1838. "homepage": "https://www.drupal.org/user/139189"
  1839. },
  1840. {
  1841. "name": "rjjakes",
  1842. "homepage": "https://www.drupal.org/user/3457245"
  1843. }
  1844. ],
  1845. "description": "Drupal administration theme with modern minimalist design.",
  1846. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1847. "support": {
  1848. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1849. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1850. }
  1851. },
  1852. {
  1853. "name": "drupal/advanced_email_validation",
  1854. "version": "1.1.5",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://git.drupalcode.org/project/advanced_email_validation.git",
  1858. "reference": "1.1.5"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://ftp.drupal.org/files/projects/advanced_email_validation-1.1.5.zip",
  1863. "reference": "1.1.5",
  1864. "shasum": "39bb313fe3be5c329012aa5310a6081cdc7e9df0"
  1865. },
  1866. "require": {
  1867. "drupal/core": "^9.3 || ^10",
  1868. "stymiee/email-validator": "^1.0.1"
  1869. },
  1870. "type": "drupal-module",
  1871. "extra": {
  1872. "drupal": {
  1873. "version": "1.1.5",
  1874. "datestamp": "1686705109",
  1875. "security-coverage": {
  1876. "status": "covered",
  1877. "message": "Covered by Drupal's security advisory policy"
  1878. }
  1879. }
  1880. },
  1881. "notification-url": "https://packages.drupal.org/8/downloads",
  1882. "license": [
  1883. "GPL-2.0+"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Max Pogonowski (darvanen)",
  1888. "homepage": "https://www.drupal.org/u/darvanen",
  1889. "role": "Maintainer"
  1890. }
  1891. ],
  1892. "description": "User account email validation using MX records and lists of free or disposable emails (configurable).",
  1893. "homepage": "https://www.drupal.org/project/advanced_email_validation",
  1894. "keywords": [
  1895. "Drupal"
  1896. ],
  1897. "support": {
  1898. "source": "http://cgit.drupalcode.org/advanced_email_validation",
  1899. "issues": "https://www.drupal.org/project/issues/advanced_email_validation"
  1900. }
  1901. },
  1902. {
  1903. "name": "drupal/advanced_text_formatter",
  1904. "version": "3.0.0-rc1",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1908. "reference": "3.0.0-rc1"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1913. "reference": "3.0.0-rc1",
  1914. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1915. },
  1916. "require": {
  1917. "drupal/core": "^8 || ^9 || ^10"
  1918. },
  1919. "type": "drupal-module",
  1920. "extra": {
  1921. "drupal": {
  1922. "version": "3.0.0-rc1",
  1923. "datestamp": "1675163352",
  1924. "security-coverage": {
  1925. "status": "not-covered",
  1926. "message": "RC releases are not covered by Drupal security advisories."
  1927. }
  1928. }
  1929. },
  1930. "notification-url": "https://packages.drupal.org/8/downloads",
  1931. "license": [
  1932. "GPL-2.0-or-later"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "azovsky",
  1937. "homepage": "https://www.drupal.org/user/330533"
  1938. },
  1939. {
  1940. "name": "thmnhat",
  1941. "homepage": "https://www.drupal.org/user/998946"
  1942. }
  1943. ],
  1944. "description": "Provides an additional formatter for text field, text area and text format.",
  1945. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1946. "support": {
  1947. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  1948. }
  1949. },
  1950. {
  1951. "name": "drupal/audiofield",
  1952. "version": "1.13.0",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://git.drupalcode.org/project/audiofield.git",
  1956. "reference": "8.x-1.13"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1961. "reference": "8.x-1.13",
  1962. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1963. },
  1964. "require": {
  1965. "drupal/core": "^8 || ^9 || ^10"
  1966. },
  1967. "type": "drupal-module",
  1968. "extra": {
  1969. "drupal": {
  1970. "version": "8.x-1.13",
  1971. "datestamp": "1681143245",
  1972. "security-coverage": {
  1973. "status": "covered",
  1974. "message": "Covered by Drupal's security advisory policy"
  1975. }
  1976. },
  1977. "drush": {
  1978. "services": {
  1979. "drush.services.yml": "^9"
  1980. }
  1981. }
  1982. },
  1983. "notification-url": "https://packages.drupal.org/8/downloads",
  1984. "license": [
  1985. "GPL-2.0-or-later"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Daniel Moberly",
  1990. "homepage": "https://www.drupal.org/u/danielmoberly",
  1991. "role": "Maintainer"
  1992. },
  1993. {
  1994. "name": "tamerzg",
  1995. "homepage": "https://www.drupal.org/user/464564"
  1996. }
  1997. ],
  1998. "description": "AudioField Module",
  1999. "homepage": "https://www.drupal.org/project/audiofield",
  2000. "support": {
  2001. "source": "https://git.drupalcode.org/project/audiofield",
  2002. "issues": "https://www.drupal.org/project/issues/audiofield"
  2003. }
  2004. },
  2005. {
  2006. "name": "drupal/autocomplete_deluxe",
  2007. "version": "2.0.3",
  2008. "source": {
  2009. "type": "git",
  2010. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2011. "reference": "2.0.3"
  2012. },
  2013. "dist": {
  2014. "type": "zip",
  2015. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  2016. "reference": "2.0.3",
  2017. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  2018. },
  2019. "require": {
  2020. "drupal/core": "^8 || ^9 || ^10"
  2021. },
  2022. "type": "drupal-module",
  2023. "extra": {
  2024. "drupal": {
  2025. "version": "2.0.3",
  2026. "datestamp": "1673454732",
  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": "Vardot",
  2040. "homepage": "https://www.drupal.org/vardot",
  2041. "role": "Maintenance for D8 and D9 versions"
  2042. },
  2043. {
  2044. "name": "Mediacurrent",
  2045. "homepage": "https://www.drupal.org/mediacurrent",
  2046. "role": "Supporting organization"
  2047. },
  2048. {
  2049. "name": "Mohammed J. Razem",
  2050. "homepage": "https://www.drupal.org/user/255384"
  2051. },
  2052. {
  2053. "name": "mpriscella",
  2054. "homepage": "https://www.drupal.org/user/2354820"
  2055. },
  2056. {
  2057. "name": "Rajab Natshah",
  2058. "homepage": "https://www.drupal.org/user/1414312"
  2059. },
  2060. {
  2061. "name": "sepgil",
  2062. "homepage": "https://www.drupal.org/user/512828"
  2063. }
  2064. ],
  2065. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2066. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2067. "support": {
  2068. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2069. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2070. }
  2071. },
  2072. {
  2073. "name": "drupal/autologout",
  2074. "version": "1.4.0",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://git.drupalcode.org/project/autologout.git",
  2078. "reference": "8.x-1.4"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2083. "reference": "8.x-1.4",
  2084. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2085. },
  2086. "require": {
  2087. "drupal/core": "^9.2 || ^10"
  2088. },
  2089. "type": "drupal-module",
  2090. "extra": {
  2091. "drupal": {
  2092. "version": "8.x-1.4",
  2093. "datestamp": "1658168199",
  2094. "security-coverage": {
  2095. "status": "covered",
  2096. "message": "Covered by Drupal's security advisory policy"
  2097. }
  2098. }
  2099. },
  2100. "notification-url": "https://packages.drupal.org/8/downloads",
  2101. "license": [
  2102. "GPL-2.0-or-later"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "AjitS",
  2107. "homepage": "https://www.drupal.org/user/981944"
  2108. },
  2109. {
  2110. "name": "AjK",
  2111. "homepage": "https://www.drupal.org/user/39030"
  2112. },
  2113. {
  2114. "name": "boshtian",
  2115. "homepage": "https://www.drupal.org/user/1773456"
  2116. },
  2117. {
  2118. "name": "dandrews",
  2119. "homepage": "https://www.drupal.org/user/2014490"
  2120. },
  2121. {
  2122. "name": "darksnow",
  2123. "homepage": "https://www.drupal.org/user/391915"
  2124. },
  2125. {
  2126. "name": "japerry",
  2127. "homepage": "https://www.drupal.org/user/45640"
  2128. },
  2129. {
  2130. "name": "johnennew",
  2131. "homepage": "https://www.drupal.org/user/1150042"
  2132. },
  2133. {
  2134. "name": "jrglasgow",
  2135. "homepage": "https://www.drupal.org/user/36590"
  2136. },
  2137. {
  2138. "name": "kmasood",
  2139. "homepage": "https://www.drupal.org/user/1262860"
  2140. },
  2141. {
  2142. "name": "levelos",
  2143. "homepage": "https://www.drupal.org/user/54135"
  2144. },
  2145. {
  2146. "name": "prabeen.giri",
  2147. "homepage": "https://www.drupal.org/user/913078"
  2148. },
  2149. {
  2150. "name": "str8",
  2151. "homepage": "https://www.drupal.org/user/2865063"
  2152. }
  2153. ],
  2154. "description": "Adds automated timed logout.",
  2155. "homepage": "http://drupal.org/project/autologout",
  2156. "support": {
  2157. "source": "https://git.drupalcode.org/project/autologout"
  2158. }
  2159. },
  2160. {
  2161. "name": "drupal/better_exposed_filters",
  2162. "version": "6.0.3",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2166. "reference": "6.0.3"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2171. "reference": "6.0.3",
  2172. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2173. },
  2174. "require": {
  2175. "drupal/core": "^9 || ^10",
  2176. "drupal/jquery_ui": "^1.6",
  2177. "drupal/jquery_ui_datepicker": "^2.0",
  2178. "drupal/jquery_ui_slider": "^2.0.0",
  2179. "drupal/jquery_ui_touch_punch": "^1.0"
  2180. },
  2181. "type": "drupal-module",
  2182. "extra": {
  2183. "drupal": {
  2184. "version": "6.0.3",
  2185. "datestamp": "1671541877",
  2186. "security-coverage": {
  2187. "status": "covered",
  2188. "message": "Covered by Drupal's security advisory policy"
  2189. }
  2190. }
  2191. },
  2192. "notification-url": "https://packages.drupal.org/8/downloads",
  2193. "license": [
  2194. "GPL-2.0-or-later"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Mike Keran",
  2199. "homepage": "https://www.drupal.org/u/mikeker"
  2200. },
  2201. {
  2202. "name": "Martin Keereman",
  2203. "homepage": "https://www.drupal.org/u/etroid"
  2204. },
  2205. {
  2206. "name": "Neslee Canil Pinto",
  2207. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2208. },
  2209. {
  2210. "name": "mikeker",
  2211. "homepage": "https://www.drupal.org/user/192273"
  2212. },
  2213. {
  2214. "name": "Neslee Canil Pinto",
  2215. "homepage": "https://www.drupal.org/user/3580850"
  2216. },
  2217. {
  2218. "name": "podarok",
  2219. "homepage": "https://www.drupal.org/user/116002"
  2220. },
  2221. {
  2222. "name": "rlhawk",
  2223. "homepage": "https://www.drupal.org/user/352283"
  2224. }
  2225. ],
  2226. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2227. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2228. "support": {
  2229. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2230. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2231. }
  2232. },
  2233. {
  2234. "name": "drupal/block_class",
  2235. "version": "2.0.11",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://git.drupalcode.org/project/block_class.git",
  2239. "reference": "2.0.11"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2244. "reference": "2.0.11",
  2245. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2246. },
  2247. "require": {
  2248. "drupal/core": "^8 || ^9 || ^10"
  2249. },
  2250. "type": "drupal-module",
  2251. "extra": {
  2252. "drupal": {
  2253. "version": "2.0.11",
  2254. "datestamp": "1672065313",
  2255. "security-coverage": {
  2256. "status": "covered",
  2257. "message": "Covered by Drupal's security advisory policy"
  2258. }
  2259. }
  2260. },
  2261. "notification-url": "https://packages.drupal.org/8/downloads",
  2262. "license": [
  2263. "GPL-2.0-or-later"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Todd Nienkerk",
  2268. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2269. "role": "Maintainer"
  2270. },
  2271. {
  2272. "name": "Renato Gonçalves (RenatoG)",
  2273. "homepage": "https://www.drupal.org/u/RenatoG",
  2274. "role": "Maintainer"
  2275. },
  2276. {
  2277. "name": "Neslee Canil Pinto",
  2278. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2279. "role": "Maintainer"
  2280. },
  2281. {
  2282. "name": "Aaron Stanush",
  2283. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2284. "role": "Maintainer"
  2285. },
  2286. {
  2287. "name": "David Suissa (DYdave)",
  2288. "homepage": "https://www.drupal.org/u/DYdave",
  2289. "role": "Maintainer"
  2290. },
  2291. {
  2292. "name": "Four Kitchens",
  2293. "homepage": "https://www.drupal.org/user/358502",
  2294. "role": "Maintainer"
  2295. },
  2296. {
  2297. "name": "berenddeboer",
  2298. "homepage": "https://www.drupal.org/u/berenddeboer",
  2299. "role": "Maintainer"
  2300. },
  2301. {
  2302. "name": "elliotttf",
  2303. "homepage": "https://www.drupal.org/u/elliotttf",
  2304. "role": "Maintainer"
  2305. },
  2306. {
  2307. "name": "Michal Minecki (mirzu)",
  2308. "homepage": "https://www.drupal.org/u/mirzu",
  2309. "role": "Maintainer"
  2310. },
  2311. {
  2312. "name": "Patrick Coffey (pcoffey)",
  2313. "homepage": "https://www.drupal.org/u/pcoffey",
  2314. "role": "Maintainer"
  2315. },
  2316. {
  2317. "name": "Taylor Smith (tsmith512)",
  2318. "homepage": "https://www.drupal.org/u/tsmith512",
  2319. "role": "Maintainer"
  2320. }
  2321. ],
  2322. "description": "Allows assigning classes to Blocks.",
  2323. "homepage": "https://www.drupal.org/project/block_class",
  2324. "keywords": [
  2325. "Drupal"
  2326. ],
  2327. "support": {
  2328. "source": "https://git.drupalcode.org/project/block_class",
  2329. "issues": "https://www.drupal.org/project/issues/block_class",
  2330. "irc": "irc://irc.freenode.org/drupal-contribute"
  2331. }
  2332. },
  2333. {
  2334. "name": "drupal/bulkdelete",
  2335. "version": "dev-1.x",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2339. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2340. },
  2341. "require": {
  2342. "drupal/core": "^8.7.7 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-1.x": "1.x-dev"
  2348. },
  2349. "drupal": {
  2350. "version": "8.x-1.x-dev",
  2351. "datestamp": "1655322426",
  2352. "security-coverage": {
  2353. "status": "not-covered",
  2354. "message": "Dev releases are not covered by Drupal security advisories."
  2355. }
  2356. }
  2357. },
  2358. "notification-url": "https://packages.drupal.org/8/downloads",
  2359. "license": [
  2360. "GPL-2.0-or-later"
  2361. ],
  2362. "authors": [
  2363. {
  2364. "name": "Kars-T",
  2365. "homepage": "https://www.drupal.org/user/224499"
  2366. },
  2367. {
  2368. "name": "Rahul Seth",
  2369. "homepage": "https://www.drupal.org/user/2694359"
  2370. },
  2371. {
  2372. "name": "adriancid",
  2373. "homepage": "https://www.drupal.org/user/1962106"
  2374. },
  2375. {
  2376. "name": "robertDouglass",
  2377. "homepage": "https://www.drupal.org/user/5449"
  2378. }
  2379. ],
  2380. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2381. "homepage": "https://www.drupal.org/project/bulkdelete",
  2382. "support": {
  2383. "source": "https://git.drupalcode.org/project/bulkdelete"
  2384. }
  2385. },
  2386. {
  2387. "name": "drupal/config_devel",
  2388. "version": "dev-1.x",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://git.drupalcode.org/project/config_devel.git",
  2392. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2393. },
  2394. "require": {
  2395. "drupal/core": "^9.3 || ^10"
  2396. },
  2397. "type": "drupal-module",
  2398. "extra": {
  2399. "branch-alias": {
  2400. "dev-1.x": "1.x-dev"
  2401. },
  2402. "drupal": {
  2403. "version": "8.x-1.8+2-dev",
  2404. "datestamp": "1678264720",
  2405. "security-coverage": {
  2406. "status": "not-covered",
  2407. "message": "Dev releases are not covered by Drupal security advisories."
  2408. }
  2409. }
  2410. },
  2411. "notification-url": "https://packages.drupal.org/8/downloads",
  2412. "license": [
  2413. "GPL-2.0+"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "alexpott",
  2418. "homepage": "https://www.drupal.org/user/157725"
  2419. },
  2420. {
  2421. "name": "benjy",
  2422. "homepage": "https://www.drupal.org/user/1852732"
  2423. },
  2424. {
  2425. "name": "chx",
  2426. "homepage": "https://www.drupal.org/user/9446"
  2427. },
  2428. {
  2429. "name": "joachim",
  2430. "homepage": "https://www.drupal.org/user/107701"
  2431. },
  2432. {
  2433. "name": "nedjo",
  2434. "homepage": "https://www.drupal.org/user/4481"
  2435. },
  2436. {
  2437. "name": "vijaycs85",
  2438. "homepage": "https://www.drupal.org/user/93488"
  2439. }
  2440. ],
  2441. "description": "Helps developers work with configuration.",
  2442. "homepage": "https://www.drupal.org/project/config_devel",
  2443. "support": {
  2444. "source": "https://git.drupalcode.org/project/config_devel"
  2445. }
  2446. },
  2447. {
  2448. "name": "drupal/config_filter",
  2449. "version": "2.6.0",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://git.drupalcode.org/project/config_filter.git",
  2453. "reference": "8.x-2.6"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2458. "reference": "8.x-2.6",
  2459. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2460. },
  2461. "require": {
  2462. "drupal/core": "^8.8 || ^9 || ^10"
  2463. },
  2464. "conflict": {
  2465. "drush/drush": "<10"
  2466. },
  2467. "suggest": {
  2468. "drupal/config_split": "Split site configuration for different environments."
  2469. },
  2470. "type": "drupal-module",
  2471. "extra": {
  2472. "drupal": {
  2473. "version": "8.x-2.6",
  2474. "datestamp": "1698308577",
  2475. "security-coverage": {
  2476. "status": "covered",
  2477. "message": "Covered by Drupal's security advisory policy"
  2478. }
  2479. }
  2480. },
  2481. "notification-url": "https://packages.drupal.org/8/downloads",
  2482. "license": [
  2483. "GPL-2.0-or-later"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Fabian Bircher",
  2488. "homepage": "https://www.drupal.org/u/bircher",
  2489. "email": "opensource@fabianbircher.com",
  2490. "role": "Maintainer"
  2491. },
  2492. {
  2493. "name": "Nuvole Web",
  2494. "homepage": "http://nuvole.org",
  2495. "email": "info@nuvole.org",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "pescetti",
  2500. "homepage": "https://www.drupal.org/user/436244"
  2501. }
  2502. ],
  2503. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2504. "homepage": "https://www.drupal.org/project/config_filter",
  2505. "keywords": [
  2506. "Drupal",
  2507. "configuration",
  2508. "configuration management"
  2509. ],
  2510. "support": {
  2511. "source": "https://git.drupalcode.org/project/config_filter",
  2512. "issues": "https://www.drupal.org/project/issues/config_filter",
  2513. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2514. }
  2515. },
  2516. {
  2517. "name": "drupal/config_ignore",
  2518. "version": "2.4.0",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2522. "reference": "8.x-2.4"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2527. "reference": "8.x-2.4",
  2528. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2529. },
  2530. "require": {
  2531. "drupal/config_filter": "^1 || ^2",
  2532. "drupal/core": "^8 || ^9 || ^10"
  2533. },
  2534. "type": "drupal-module",
  2535. "extra": {
  2536. "drupal": {
  2537. "version": "8.x-2.4",
  2538. "datestamp": "1676045435",
  2539. "security-coverage": {
  2540. "status": "covered",
  2541. "message": "Covered by Drupal's security advisory policy"
  2542. }
  2543. }
  2544. },
  2545. "notification-url": "https://packages.drupal.org/8/downloads",
  2546. "license": [
  2547. "GPL-2.0-or-later"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Tommy Lynge Jørgensen",
  2552. "homepage": "https://www.drupal.org/u/tlyngej",
  2553. "email": "tlyngej@gmail.com",
  2554. "role": "Maintainer"
  2555. },
  2556. {
  2557. "name": "Fabian Bircher",
  2558. "homepage": "https://www.drupal.org/u/bircher",
  2559. "role": "Maintainer"
  2560. },
  2561. {
  2562. "name": "tlyngej",
  2563. "homepage": "https://www.drupal.org/user/413139"
  2564. }
  2565. ],
  2566. "description": "Ignore certain configuration during import.",
  2567. "homepage": "http://drupal.org/project/config_ignore",
  2568. "support": {
  2569. "source": "https://git.drupalcode.org/project/config_ignore",
  2570. "issues": "https://drupal.org/project/config_ignore",
  2571. "irc": "irc://irc.freenode.org/drupal-contribute"
  2572. }
  2573. },
  2574. {
  2575. "name": "drupal/config_pages",
  2576. "version": "2.15.0",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://git.drupalcode.org/project/config_pages.git",
  2580. "reference": "8.x-2.15"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2585. "reference": "8.x-2.15",
  2586. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2587. },
  2588. "require": {
  2589. "drupal/core": "^8.5 | ^9 || ^10"
  2590. },
  2591. "type": "drupal-module",
  2592. "extra": {
  2593. "drupal": {
  2594. "version": "8.x-2.15",
  2595. "datestamp": "1688847929",
  2596. "security-coverage": {
  2597. "status": "covered",
  2598. "message": "Covered by Drupal's security advisory policy"
  2599. }
  2600. },
  2601. "drush": {
  2602. "services": {
  2603. "drush.services.yml": "^9"
  2604. }
  2605. }
  2606. },
  2607. "notification-url": "https://packages.drupal.org/8/downloads",
  2608. "license": [
  2609. "GPL-2.0-or-later"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "m.krestnicov",
  2614. "homepage": "https://www.drupal.org/user/3193903"
  2615. },
  2616. {
  2617. "name": "Qwaygon",
  2618. "homepage": "https://www.drupal.org/user/636624"
  2619. },
  2620. {
  2621. "name": "shumer",
  2622. "homepage": "https://www.drupal.org/user/2297432"
  2623. }
  2624. ],
  2625. "description": "ConfigPages module",
  2626. "homepage": "http://drupal.org/project/config_pages",
  2627. "keywords": [
  2628. "Drupal"
  2629. ],
  2630. "support": {
  2631. "source": "http://cgit.drupalcode.org/config_pages",
  2632. "issues": "http://drupal.org/project/issues/config_pages"
  2633. }
  2634. },
  2635. {
  2636. "name": "drupal/config_update",
  2637. "version": "2.0.0-alpha3",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://git.drupalcode.org/project/config_update.git",
  2641. "reference": "2.0.0-alpha3"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2646. "reference": "2.0.0-alpha3",
  2647. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2648. },
  2649. "require": {
  2650. "drupal/core": "^9.4 || ^10"
  2651. },
  2652. "type": "drupal-module",
  2653. "extra": {
  2654. "drupal": {
  2655. "version": "2.0.0-alpha3",
  2656. "datestamp": "1683807608",
  2657. "security-coverage": {
  2658. "status": "not-covered",
  2659. "message": "Alpha releases are not covered by Drupal security advisories."
  2660. }
  2661. }
  2662. },
  2663. "notification-url": "https://packages.drupal.org/8/downloads",
  2664. "license": [
  2665. "GPL-2.0-or-later"
  2666. ],
  2667. "authors": [
  2668. {
  2669. "name": "codebymikey",
  2670. "homepage": "https://www.drupal.org/user/3573206"
  2671. },
  2672. {
  2673. "name": "Pasqualle",
  2674. "homepage": "https://www.drupal.org/user/80733"
  2675. }
  2676. ],
  2677. "description": "Provides basic revert and update functionality for other modules.",
  2678. "homepage": "https://www.drupal.org/project/config_update",
  2679. "support": {
  2680. "source": "https://git.drupalcode.org/project/config_update"
  2681. }
  2682. },
  2683. {
  2684. "name": "drupal/content_as_config",
  2685. "version": "1.0.10",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2689. "reference": "1.0.10"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  2694. "reference": "1.0.10",
  2695. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  2696. },
  2697. "require": {
  2698. "drupal/core": "^9.3 || ^10"
  2699. },
  2700. "conflict": {
  2701. "drupal/structure_sync": "*"
  2702. },
  2703. "require-dev": {
  2704. "drupal/feeds": "*",
  2705. "drupal/group": "*"
  2706. },
  2707. "suggest": {
  2708. "drupal/markdown": "Render module help more elegantly."
  2709. },
  2710. "type": "drupal-module",
  2711. "extra": {
  2712. "drupal": {
  2713. "version": "1.0.10",
  2714. "datestamp": "1665066743",
  2715. "security-coverage": {
  2716. "status": "covered",
  2717. "message": "Covered by Drupal's security advisory policy"
  2718. }
  2719. },
  2720. "drush": {
  2721. "services": {
  2722. "drush.services.yml": "^9"
  2723. }
  2724. }
  2725. },
  2726. "notification-url": "https://packages.drupal.org/8/downloads",
  2727. "license": [
  2728. "GPL-2.0-or-later"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "Daniel Johnson (daniel_j)",
  2733. "homepage": "https://www.drupal.org/u/daniel_j",
  2734. "role": "Maintainer"
  2735. }
  2736. ],
  2737. "description": "Allows content entities to be exported/imported as configuration.",
  2738. "homepage": "https://drupal.org/project/content_as_config",
  2739. "keywords": [
  2740. "Configuration",
  2741. "Drupal"
  2742. ],
  2743. "support": {
  2744. "source": "https://git.drupalcode.org/project/content_as_config",
  2745. "issues": "https://www.drupal.org/project/issues/content_as_config"
  2746. }
  2747. },
  2748. {
  2749. "name": "drupal/content_lock",
  2750. "version": "2.3.0",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://git.drupalcode.org/project/content_lock.git",
  2754. "reference": "8.x-2.3"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2759. "reference": "8.x-2.3",
  2760. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2761. },
  2762. "require": {
  2763. "drupal/core": "^9.0 || ^10.0"
  2764. },
  2765. "type": "drupal-module",
  2766. "extra": {
  2767. "drupal": {
  2768. "version": "8.x-2.3",
  2769. "datestamp": "1668427342",
  2770. "security-coverage": {
  2771. "status": "covered",
  2772. "message": "Covered by Drupal's security advisory policy"
  2773. }
  2774. }
  2775. },
  2776. "notification-url": "https://packages.drupal.org/8/downloads",
  2777. "license": [
  2778. "GPL-2.0-or-later"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "alexpott",
  2783. "homepage": "https://www.drupal.org/user/157725"
  2784. },
  2785. {
  2786. "name": "chr.fritsch",
  2787. "homepage": "https://www.drupal.org/user/2103716"
  2788. },
  2789. {
  2790. "name": "daniel.bosen",
  2791. "homepage": "https://www.drupal.org/user/404865"
  2792. },
  2793. {
  2794. "name": "ergonlogic",
  2795. "homepage": "https://www.drupal.org/user/368613"
  2796. },
  2797. {
  2798. "name": "mfb",
  2799. "homepage": "https://www.drupal.org/user/12302"
  2800. },
  2801. {
  2802. "name": "pandaski",
  2803. "homepage": "https://www.drupal.org/user/1987218"
  2804. },
  2805. {
  2806. "name": "volkerk",
  2807. "homepage": "https://www.drupal.org/user/57527"
  2808. }
  2809. ],
  2810. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2811. "homepage": "https://www.drupal.org/project/content_lock",
  2812. "support": {
  2813. "source": "https://git.drupalcode.org/project/content_lock"
  2814. }
  2815. },
  2816. {
  2817. "name": "drupal/context",
  2818. "version": "5.0.0-rc1",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://git.drupalcode.org/project/context.git",
  2822. "reference": "5.0.0-rc1"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2827. "reference": "5.0.0-rc1",
  2828. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2829. },
  2830. "require": {
  2831. "drupal/core": "^9.3 || ^10"
  2832. },
  2833. "type": "drupal-module",
  2834. "extra": {
  2835. "drupal": {
  2836. "version": "5.0.0-rc1",
  2837. "datestamp": "1677054769",
  2838. "security-coverage": {
  2839. "status": "not-covered",
  2840. "message": "RC releases are not covered by Drupal security advisories."
  2841. }
  2842. }
  2843. },
  2844. "notification-url": "https://packages.drupal.org/8/downloads",
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Christoffer Palm",
  2851. "homepage": "http://www.oddhill.se/",
  2852. "email": "christoffer.palm@oddhill.se",
  2853. "role": "Developer"
  2854. },
  2855. {
  2856. "name": "boshtian",
  2857. "homepage": "https://www.drupal.org/user/1773456"
  2858. },
  2859. {
  2860. "name": "colan",
  2861. "homepage": "https://www.drupal.org/user/58704"
  2862. },
  2863. {
  2864. "name": "emanaton",
  2865. "homepage": "https://www.drupal.org/user/120853"
  2866. },
  2867. {
  2868. "name": "febbraro",
  2869. "homepage": "https://www.drupal.org/user/43670"
  2870. },
  2871. {
  2872. "name": "fizk",
  2873. "homepage": "https://www.drupal.org/user/473174"
  2874. },
  2875. {
  2876. "name": "hass",
  2877. "homepage": "https://www.drupal.org/user/85918"
  2878. },
  2879. {
  2880. "name": "hefox",
  2881. "homepage": "https://www.drupal.org/user/426416"
  2882. },
  2883. {
  2884. "name": "jmiccolis",
  2885. "homepage": "https://www.drupal.org/user/31731"
  2886. },
  2887. {
  2888. "name": "Kristen Pol",
  2889. "homepage": "https://www.drupal.org/user/8389"
  2890. },
  2891. {
  2892. "name": "nedjo",
  2893. "homepage": "https://www.drupal.org/user/4481"
  2894. },
  2895. {
  2896. "name": "NormySan",
  2897. "homepage": "https://www.drupal.org/user/112352"
  2898. },
  2899. {
  2900. "name": "patricksettle",
  2901. "homepage": "https://www.drupal.org/user/26618"
  2902. },
  2903. {
  2904. "name": "paulocs",
  2905. "homepage": "https://www.drupal.org/user/3640109"
  2906. },
  2907. {
  2908. "name": "Steven Jones",
  2909. "homepage": "https://www.drupal.org/user/99644"
  2910. },
  2911. {
  2912. "name": "tekante",
  2913. "homepage": "https://www.drupal.org/user/640024"
  2914. },
  2915. {
  2916. "name": "yhahn",
  2917. "homepage": "https://www.drupal.org/user/264833"
  2918. }
  2919. ],
  2920. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2921. "homepage": "https://github.com/oddhill/context",
  2922. "keywords": [
  2923. "Drupal",
  2924. "block",
  2925. "conditions",
  2926. "context",
  2927. "visibility"
  2928. ],
  2929. "support": {
  2930. "source": "https://github.com/oddhill/context",
  2931. "issues": "https://github.com/oddhill/context/issues",
  2932. "docs": "https://github.com/oddhill/context"
  2933. }
  2934. },
  2935. {
  2936. "name": "drupal/core",
  2937. "version": "10.1.6",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/drupal/core.git",
  2941. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  2946. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "asm89/stack-cors": "^2.1",
  2951. "composer-runtime-api": "^2.1",
  2952. "composer/semver": "^3.3",
  2953. "doctrine/annotations": "^1.14",
  2954. "egulias/email-validator": "^3.2.1|^4.0",
  2955. "ext-date": "*",
  2956. "ext-dom": "*",
  2957. "ext-filter": "*",
  2958. "ext-gd": "*",
  2959. "ext-hash": "*",
  2960. "ext-json": "*",
  2961. "ext-pcre": "*",
  2962. "ext-pdo": "*",
  2963. "ext-session": "*",
  2964. "ext-simplexml": "*",
  2965. "ext-spl": "*",
  2966. "ext-tokenizer": "*",
  2967. "ext-xml": "*",
  2968. "guzzlehttp/guzzle": "^7.5",
  2969. "guzzlehttp/psr7": "^2.4.5",
  2970. "masterminds/html5": "^2.7",
  2971. "mck89/peast": "^1.14",
  2972. "pear/archive_tar": "^1.4.14",
  2973. "php": ">=8.1.0",
  2974. "psr/log": "^3.0",
  2975. "sebastian/diff": "^4",
  2976. "symfony/console": "^6.3",
  2977. "symfony/dependency-injection": "^6.3",
  2978. "symfony/event-dispatcher": "^6.3",
  2979. "symfony/http-foundation": "^6.3",
  2980. "symfony/http-kernel": "^6.3",
  2981. "symfony/mime": "^6.3",
  2982. "symfony/polyfill-iconv": "^1.26",
  2983. "symfony/process": "^6.3",
  2984. "symfony/psr-http-message-bridge": "^2.1",
  2985. "symfony/routing": "^6.3",
  2986. "symfony/serializer": "^6.3",
  2987. "symfony/validator": "^6.3",
  2988. "symfony/yaml": "^6.3",
  2989. "twig/twig": "^3.5.0"
  2990. },
  2991. "conflict": {
  2992. "drush/drush": "<8.1.10"
  2993. },
  2994. "replace": {
  2995. "drupal/core-annotation": "self.version",
  2996. "drupal/core-assertion": "self.version",
  2997. "drupal/core-class-finder": "self.version",
  2998. "drupal/core-datetime": "self.version",
  2999. "drupal/core-dependency-injection": "self.version",
  3000. "drupal/core-diff": "self.version",
  3001. "drupal/core-discovery": "self.version",
  3002. "drupal/core-event-dispatcher": "self.version",
  3003. "drupal/core-file-cache": "self.version",
  3004. "drupal/core-file-security": "self.version",
  3005. "drupal/core-filesystem": "self.version",
  3006. "drupal/core-front-matter": "self.version",
  3007. "drupal/core-gettext": "self.version",
  3008. "drupal/core-graph": "self.version",
  3009. "drupal/core-http-foundation": "self.version",
  3010. "drupal/core-php-storage": "self.version",
  3011. "drupal/core-plugin": "self.version",
  3012. "drupal/core-proxy-builder": "self.version",
  3013. "drupal/core-render": "self.version",
  3014. "drupal/core-serialization": "self.version",
  3015. "drupal/core-transliteration": "self.version",
  3016. "drupal/core-utility": "self.version",
  3017. "drupal/core-uuid": "self.version",
  3018. "drupal/core-version": "self.version"
  3019. },
  3020. "suggest": {
  3021. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3022. },
  3023. "type": "drupal-core",
  3024. "extra": {
  3025. "drupal-scaffold": {
  3026. "file-mapping": {
  3027. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3028. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3029. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3030. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3031. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3032. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3033. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3034. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3035. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3036. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3037. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3038. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3039. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3040. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3041. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3042. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3043. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3044. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3045. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3046. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3047. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3048. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3049. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3050. }
  3051. }
  3052. },
  3053. "autoload": {
  3054. "files": [
  3055. "includes/bootstrap.inc"
  3056. ],
  3057. "psr-4": {
  3058. "Drupal\\Core\\": "lib/Drupal/Core",
  3059. "Drupal\\Component\\": "lib/Drupal/Component"
  3060. },
  3061. "classmap": [
  3062. "lib/Drupal.php",
  3063. "lib/Drupal/Component/DependencyInjection/Container.php",
  3064. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3065. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3066. "lib/Drupal/Component/Utility/Timer.php",
  3067. "lib/Drupal/Component/Utility/Unicode.php",
  3068. "lib/Drupal/Core/Cache/Cache.php",
  3069. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3070. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3071. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3072. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3073. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3074. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3075. "lib/Drupal/Core/Database/Connection.php",
  3076. "lib/Drupal/Core/Database/Database.php",
  3077. "lib/Drupal/Core/Database/StatementInterface.php",
  3078. "lib/Drupal/Core/DependencyInjection/Container.php",
  3079. "lib/Drupal/Core/DrupalKernel.php",
  3080. "lib/Drupal/Core/DrupalKernelInterface.php",
  3081. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3082. "lib/Drupal/Core/Site/Settings.php"
  3083. ]
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "GPL-2.0-or-later"
  3088. ],
  3089. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3090. "support": {
  3091. "source": "https://github.com/drupal/core/tree/10.1.6"
  3092. },
  3093. "time": "2023-11-01T11:59:20+00:00"
  3094. },
  3095. {
  3096. "name": "drupal/core-composer-scaffold",
  3097. "version": "10.1.6",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3101. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3106. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "composer-plugin-api": "^2",
  3111. "php": ">=7.3.0"
  3112. },
  3113. "conflict": {
  3114. "drupal-composer/drupal-scaffold": "*"
  3115. },
  3116. "require-dev": {
  3117. "composer/composer": "^1.8@stable"
  3118. },
  3119. "type": "composer-plugin",
  3120. "extra": {
  3121. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3122. "branch-alias": {
  3123. "dev-master": "1.0.x-dev"
  3124. }
  3125. },
  3126. "autoload": {
  3127. "psr-4": {
  3128. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3129. }
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "GPL-2.0-or-later"
  3134. ],
  3135. "description": "A flexible Composer project scaffold builder.",
  3136. "homepage": "https://www.drupal.org/project/drupal",
  3137. "keywords": [
  3138. "drupal"
  3139. ],
  3140. "support": {
  3141. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3142. },
  3143. "time": "2023-04-30T16:15:32+00:00"
  3144. },
  3145. {
  3146. "name": "drupal/core-project-message",
  3147. "version": "10.1.6",
  3148. "source": {
  3149. "type": "git",
  3150. "url": "https://github.com/drupal/core-project-message.git",
  3151. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3152. },
  3153. "dist": {
  3154. "type": "zip",
  3155. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3156. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3157. "shasum": ""
  3158. },
  3159. "require": {
  3160. "composer-plugin-api": "^2",
  3161. "php": ">=7.3.0"
  3162. },
  3163. "type": "composer-plugin",
  3164. "extra": {
  3165. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "GPL-2.0-or-later"
  3175. ],
  3176. "description": "Adds a message after Composer installation.",
  3177. "homepage": "https://www.drupal.org/project/drupal",
  3178. "keywords": [
  3179. "drupal"
  3180. ],
  3181. "support": {
  3182. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3183. },
  3184. "time": "2022-07-01T08:32:39+00:00"
  3185. },
  3186. {
  3187. "name": "drupal/core-recommended",
  3188. "version": "10.1.6",
  3189. "source": {
  3190. "type": "git",
  3191. "url": "https://github.com/drupal/core-recommended.git",
  3192. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3193. },
  3194. "dist": {
  3195. "type": "zip",
  3196. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3197. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3198. "shasum": ""
  3199. },
  3200. "require": {
  3201. "asm89/stack-cors": "~v2.1.1",
  3202. "composer/semver": "~3.3.2",
  3203. "doctrine/annotations": "~1.14.3",
  3204. "doctrine/deprecations": "~v1.1.1",
  3205. "doctrine/lexer": "~2.1.0",
  3206. "drupal/core": "10.1.6",
  3207. "egulias/email-validator": "~4.0.1",
  3208. "guzzlehttp/guzzle": "~7.7.0",
  3209. "guzzlehttp/psr7": "~2.5.0",
  3210. "masterminds/html5": "~2.8.0",
  3211. "mck89/peast": "~v1.15.4",
  3212. "pear/archive_tar": "~1.4.14",
  3213. "pear/console_getopt": "~v1.4.3",
  3214. "pear/pear-core-minimal": "~v1.10.13",
  3215. "pear/pear_exception": "~v1.0.2",
  3216. "psr/cache": "~3.0.0",
  3217. "psr/container": "~2.0.2",
  3218. "psr/event-dispatcher": "~1.0.0",
  3219. "psr/http-client": "~1.0.2",
  3220. "psr/http-factory": "~1.0.2",
  3221. "psr/log": "~3.0.0",
  3222. "ralouphie/getallheaders": "~3.0.3",
  3223. "sebastian/diff": "~4.0.5",
  3224. "symfony/console": "~v6.3.0",
  3225. "symfony/dependency-injection": "~v6.3.0",
  3226. "symfony/deprecation-contracts": "~v3.3.0",
  3227. "symfony/error-handler": "~v6.3.0",
  3228. "symfony/event-dispatcher": "~v6.3.0",
  3229. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3230. "symfony/http-foundation": "~v6.3.0",
  3231. "symfony/http-kernel": "~v6.3.0",
  3232. "symfony/mime": "~v6.3.0",
  3233. "symfony/polyfill-ctype": "~v1.27.0",
  3234. "symfony/polyfill-iconv": "~v1.27.0",
  3235. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3236. "symfony/polyfill-intl-idn": "~v1.27.0",
  3237. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3238. "symfony/polyfill-mbstring": "~v1.27.0",
  3239. "symfony/polyfill-php83": "~v1.27.0",
  3240. "symfony/process": "~v6.3.0",
  3241. "symfony/psr-http-message-bridge": "~v2.2.0",
  3242. "symfony/routing": "~v6.3.0",
  3243. "symfony/serializer": "~v6.3.0",
  3244. "symfony/service-contracts": "~v3.3.0",
  3245. "symfony/string": "~v6.3.0",
  3246. "symfony/translation-contracts": "~v3.3.0",
  3247. "symfony/validator": "~v6.3.0",
  3248. "symfony/var-dumper": "~v6.3.0",
  3249. "symfony/var-exporter": "~v6.3.0",
  3250. "symfony/yaml": "~v6.3.0",
  3251. "twig/twig": "~v3.6.0"
  3252. },
  3253. "conflict": {
  3254. "webflo/drupal-core-strict": "*"
  3255. },
  3256. "type": "metapackage",
  3257. "notification-url": "https://packagist.org/downloads/",
  3258. "license": [
  3259. "GPL-2.0-or-later"
  3260. ],
  3261. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3262. "support": {
  3263. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3264. },
  3265. "time": "2023-11-01T11:59:20+00:00"
  3266. },
  3267. {
  3268. "name": "drupal/cshs",
  3269. "version": "4.0.0",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://git.drupalcode.org/project/cshs.git",
  3273. "reference": "4.0.0"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3278. "reference": "4.0.0",
  3279. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3280. },
  3281. "require": {
  3282. "drupal/core": "^9 || ^10",
  3283. "php": ">=8.0"
  3284. },
  3285. "type": "drupal-module",
  3286. "extra": {
  3287. "drupal": {
  3288. "version": "4.0.0",
  3289. "datestamp": "1668457722",
  3290. "security-coverage": {
  3291. "status": "covered",
  3292. "message": "Covered by Drupal's security advisory policy"
  3293. }
  3294. }
  3295. },
  3296. "notification-url": "https://packages.drupal.org/8/downloads",
  3297. "license": [
  3298. "GPL-2.0-or-later"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Walter Jenner",
  3303. "homepage": "https://drupal.org/u/valderama"
  3304. },
  3305. {
  3306. "name": "Sergii Bondarenko",
  3307. "homepage": "https://drupal.org/u/BR0kEN",
  3308. "email": "sb@firstvector.org"
  3309. },
  3310. {
  3311. "name": "Daneel Cruz",
  3312. "homepage": "https://drupal.org/u/daneelcm"
  3313. },
  3314. {
  3315. "name": "Purushotam Rai",
  3316. "homepage": "https://drupal.org/u/purushotam.rai"
  3317. }
  3318. ],
  3319. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3320. "homepage": "https://www.drupal.org/project/cshs",
  3321. "keywords": [
  3322. "client-side-select",
  3323. "hierarchical-select",
  3324. "module",
  3325. "select",
  3326. "taxonomy"
  3327. ],
  3328. "support": {
  3329. "source": "https://git.drupalcode.org/project/cshs",
  3330. "issues": "https://www.drupal.org/project/issues/cshs"
  3331. }
  3332. },
  3333. {
  3334. "name": "drupal/ctools",
  3335. "version": "3.14.0",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://git.drupalcode.org/project/ctools.git",
  3339. "reference": "8.x-3.14"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3344. "reference": "8.x-3.14",
  3345. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3346. },
  3347. "require": {
  3348. "drupal/core": "^9.3 || ^10"
  3349. },
  3350. "type": "drupal-module",
  3351. "extra": {
  3352. "drupal": {
  3353. "version": "8.x-3.14",
  3354. "datestamp": "1684299793",
  3355. "security-coverage": {
  3356. "status": "covered",
  3357. "message": "Covered by Drupal's security advisory policy"
  3358. }
  3359. },
  3360. "branch-alias": {
  3361. "dev-8.x-3.x": "3.x-dev"
  3362. }
  3363. },
  3364. "notification-url": "https://packages.drupal.org/8/downloads",
  3365. "license": [
  3366. "GPL-2.0-or-later"
  3367. ],
  3368. "authors": [
  3369. {
  3370. "name": "Kris Vanderwater (EclipseGc)",
  3371. "homepage": "https://www.drupal.org/u/eclipsegc",
  3372. "role": "Maintainer"
  3373. },
  3374. {
  3375. "name": "Jakob Perry (japerry)",
  3376. "homepage": "https://www.drupal.org/u/japerry",
  3377. "role": "Maintainer"
  3378. },
  3379. {
  3380. "name": "Tim Plunkett (tim.plunkett)",
  3381. "homepage": "https://www.drupal.org/u/timplunkett",
  3382. "role": "Maintainer"
  3383. },
  3384. {
  3385. "name": "James Gilliland (neclimdul)",
  3386. "homepage": "https://www.drupal.org/u/neclimdul",
  3387. "role": "Maintainer"
  3388. },
  3389. {
  3390. "name": "Daniel Wehner (dawehner)",
  3391. "homepage": "https://www.drupal.org/u/dawehner",
  3392. "role": "Maintainer"
  3393. },
  3394. {
  3395. "name": "joelpittet",
  3396. "homepage": "https://www.drupal.org/user/160302"
  3397. },
  3398. {
  3399. "name": "merlinofchaos",
  3400. "homepage": "https://www.drupal.org/user/26979"
  3401. },
  3402. {
  3403. "name": "neclimdul",
  3404. "homepage": "https://www.drupal.org/user/48673"
  3405. },
  3406. {
  3407. "name": "sdboyer",
  3408. "homepage": "https://www.drupal.org/user/146719"
  3409. },
  3410. {
  3411. "name": "sun",
  3412. "homepage": "https://www.drupal.org/user/54136"
  3413. },
  3414. {
  3415. "name": "tim.plunkett",
  3416. "homepage": "https://www.drupal.org/user/241634"
  3417. }
  3418. ],
  3419. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3420. "homepage": "https://www.drupal.org/project/ctools",
  3421. "support": {
  3422. "source": "https://git.drupalcode.org/project/ctools",
  3423. "issues": "https://www.drupal.org/project/issues/ctools"
  3424. }
  3425. },
  3426. {
  3427. "name": "drupal/date_range_formatter",
  3428. "version": "dev-9.0.x",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3432. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3433. },
  3434. "require": {
  3435. "drupal/core": "^8 || ^9 || ^10"
  3436. },
  3437. "type": "drupal-module",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-9.0.x": "9.0.x-dev"
  3441. },
  3442. "drupal": {
  3443. "version": "9.0.x-dev",
  3444. "datestamp": "1661511425",
  3445. "security-coverage": {
  3446. "status": "not-covered",
  3447. "message": "Dev releases are not covered by Drupal security advisories."
  3448. }
  3449. }
  3450. },
  3451. "notification-url": "https://packages.drupal.org/8/downloads",
  3452. "license": [
  3453. "GPL-2.0-or-later"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "maximpodorov",
  3458. "homepage": "https://www.drupal.org/user/515310"
  3459. },
  3460. {
  3461. "name": "sudishth",
  3462. "homepage": "https://www.drupal.org/user/1440562"
  3463. }
  3464. ],
  3465. "description": "Formats date ranges.",
  3466. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3467. "support": {
  3468. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3469. }
  3470. },
  3471. {
  3472. "name": "drupal/devel",
  3473. "version": "5.1.2",
  3474. "source": {
  3475. "type": "git",
  3476. "url": "https://git.drupalcode.org/project/devel.git",
  3477. "reference": "5.1.2"
  3478. },
  3479. "dist": {
  3480. "type": "zip",
  3481. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3482. "reference": "5.1.2",
  3483. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3484. },
  3485. "require": {
  3486. "doctrine/common": "^2.7 || ^3.4",
  3487. "drupal/core": "^9 || ^10",
  3488. "php": ">=7.4",
  3489. "symfony/var-dumper": "^4 || ^5 || ^6"
  3490. },
  3491. "conflict": {
  3492. "kint-php/kint": "<3"
  3493. },
  3494. "require-dev": {
  3495. "drush/drush": "^11"
  3496. },
  3497. "suggest": {
  3498. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3499. },
  3500. "type": "drupal-module",
  3501. "extra": {
  3502. "drupal": {
  3503. "version": "5.1.2",
  3504. "datestamp": "1686161028",
  3505. "security-coverage": {
  3506. "status": "covered",
  3507. "message": "Covered by Drupal's security advisory policy"
  3508. }
  3509. },
  3510. "drush": {
  3511. "services": {
  3512. "drush.services.yml": "^9 || ^10 || ^11"
  3513. }
  3514. }
  3515. },
  3516. "notification-url": "https://packages.drupal.org/8/downloads",
  3517. "license": [
  3518. "GPL-2.0-or-later"
  3519. ],
  3520. "authors": [
  3521. {
  3522. "name": "drupalspoons",
  3523. "homepage": "https://www.drupal.org/user/3647684"
  3524. },
  3525. {
  3526. "name": "moshe weitzman",
  3527. "homepage": "https://www.drupal.org/user/23"
  3528. }
  3529. ],
  3530. "description": "Various blocks, pages, and functions for developers.",
  3531. "homepage": "https://www.drupal.org/project/devel",
  3532. "support": {
  3533. "source": "https://gitlab.com/drupalspoons/devel",
  3534. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3535. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3536. }
  3537. },
  3538. {
  3539. "name": "drupal/devel_kint_extras",
  3540. "version": "1.1.0",
  3541. "source": {
  3542. "type": "git",
  3543. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3544. "reference": "1.1.0"
  3545. },
  3546. "dist": {
  3547. "type": "zip",
  3548. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3549. "reference": "1.1.0",
  3550. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3551. },
  3552. "require": {
  3553. "drupal/core": "^9 || ^10",
  3554. "drupal/devel": "^4.0 || ^5.0",
  3555. "kint-php/kint": "^3.3 || ^4.0"
  3556. },
  3557. "type": "drupal-module",
  3558. "extra": {
  3559. "drupal": {
  3560. "version": "1.1.0",
  3561. "datestamp": "1663760998",
  3562. "security-coverage": {
  3563. "status": "covered",
  3564. "message": "Covered by Drupal's security advisory policy"
  3565. }
  3566. }
  3567. },
  3568. "notification-url": "https://packages.drupal.org/8/downloads",
  3569. "license": [
  3570. "GPL-2.0-or-later"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "Jan Chojnacki",
  3575. "homepage": "https://www.drupal.org/u/janchojnacki"
  3576. },
  3577. {
  3578. "name": "Other contributors",
  3579. "homepage": "https://www.drupal.org/node/3164492/committers"
  3580. }
  3581. ],
  3582. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3583. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3584. "support": {
  3585. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3586. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3587. "chat": "irc://irc.freenode.org/drupal-contribute"
  3588. }
  3589. },
  3590. {
  3591. "name": "drupal/email_registration",
  3592. "version": "1.3.0",
  3593. "source": {
  3594. "type": "git",
  3595. "url": "https://git.drupalcode.org/project/email_registration.git",
  3596. "reference": "8.x-1.3"
  3597. },
  3598. "dist": {
  3599. "type": "zip",
  3600. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3601. "reference": "8.x-1.3",
  3602. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3603. },
  3604. "require": {
  3605. "drupal/core": "^9.1 || ^10"
  3606. },
  3607. "conflict": {
  3608. "drupal/commerce": "<2.12"
  3609. },
  3610. "require-dev": {
  3611. "drupal/commerce": "^2.0",
  3612. "drupal/token": "*"
  3613. },
  3614. "type": "drupal-module",
  3615. "extra": {
  3616. "drupal": {
  3617. "version": "8.x-1.3",
  3618. "datestamp": "1697182609",
  3619. "security-coverage": {
  3620. "status": "covered",
  3621. "message": "Covered by Drupal's security advisory policy"
  3622. }
  3623. }
  3624. },
  3625. "notification-url": "https://packages.drupal.org/8/downloads",
  3626. "license": [
  3627. "GPL-2.0-or-later"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "Greg Knaddison (greggles)",
  3632. "homepage": "https://www.drupal.org/u/greggles",
  3633. "role": "Maintainer"
  3634. },
  3635. {
  3636. "name": "Andrey Postnikov (andypost)",
  3637. "homepage": "https://www.drupal.org/u/andypost",
  3638. "role": "Maintainer"
  3639. },
  3640. {
  3641. "name": "Chris Herberte",
  3642. "homepage": "https://www.drupal.org/u/chris-herberte",
  3643. "role": "Maintainer"
  3644. },
  3645. {
  3646. "name": "Moshe Weitzman (moshe weitzman)",
  3647. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3648. "role": "Maintainer"
  3649. },
  3650. {
  3651. "name": "Grevil",
  3652. "homepage": "https://www.drupal.org/user/3668491"
  3653. },
  3654. {
  3655. "name": "moshe weitzman",
  3656. "homepage": "https://www.drupal.org/user/23"
  3657. }
  3658. ],
  3659. "description": "Allows users to register with an email address as their username.",
  3660. "homepage": "https://www.drupal.org/project/email_registration",
  3661. "support": {
  3662. "source": "https://git.drupalcode.org/project/email_registration",
  3663. "issues": "http://drupal.org/project/issues/email_registration"
  3664. }
  3665. },
  3666. {
  3667. "name": "drupal/embed",
  3668. "version": "1.7.0",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://git.drupalcode.org/project/embed.git",
  3672. "reference": "8.x-1.7"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3677. "reference": "8.x-1.7",
  3678. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3679. },
  3680. "require": {
  3681. "drupal/core": "^9.3 | ^10"
  3682. },
  3683. "require-dev": {
  3684. "drupal/ckeditor": "*"
  3685. },
  3686. "type": "drupal-module",
  3687. "extra": {
  3688. "drupal": {
  3689. "version": "8.x-1.7",
  3690. "datestamp": "1697642867",
  3691. "security-coverage": {
  3692. "status": "covered",
  3693. "message": "Covered by Drupal's security advisory policy"
  3694. }
  3695. }
  3696. },
  3697. "notification-url": "https://packages.drupal.org/8/downloads",
  3698. "license": [
  3699. "GPL-2.0-or-later"
  3700. ],
  3701. "authors": [
  3702. {
  3703. "name": "cs_shadow",
  3704. "homepage": "https://www.drupal.org/user/2828287"
  3705. },
  3706. {
  3707. "name": "Dave Reid",
  3708. "homepage": "https://www.drupal.org/user/53892"
  3709. },
  3710. {
  3711. "name": "Devin Carlson",
  3712. "homepage": "https://www.drupal.org/user/290182"
  3713. },
  3714. {
  3715. "name": "Drupal Media Team",
  3716. "homepage": "https://www.drupal.org/user/3260690"
  3717. },
  3718. {
  3719. "name": "phenaproxima",
  3720. "homepage": "https://www.drupal.org/user/205645"
  3721. },
  3722. {
  3723. "name": "slashrsm",
  3724. "homepage": "https://www.drupal.org/user/744628"
  3725. }
  3726. ],
  3727. "description": "Provides a framework for different types of embeds in text editors.",
  3728. "homepage": "https://www.drupal.org/project/embed",
  3729. "support": {
  3730. "source": "https://git.drupalcode.org/project/embed"
  3731. }
  3732. },
  3733. {
  3734. "name": "drupal/entity",
  3735. "version": "1.4.0",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://git.drupalcode.org/project/entity.git",
  3739. "reference": "8.x-1.4"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3744. "reference": "8.x-1.4",
  3745. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3746. },
  3747. "require": {
  3748. "drupal/core": "^9.2|^10.0"
  3749. },
  3750. "type": "drupal-module",
  3751. "extra": {
  3752. "drupal": {
  3753. "version": "8.x-1.4",
  3754. "datestamp": "1661898023",
  3755. "security-coverage": {
  3756. "status": "covered",
  3757. "message": "Covered by Drupal's security advisory policy"
  3758. }
  3759. }
  3760. },
  3761. "notification-url": "https://packages.drupal.org/8/downloads",
  3762. "license": [
  3763. "GPL-2.0-or-later"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "Berdir",
  3768. "homepage": "https://www.drupal.org/user/214652"
  3769. },
  3770. {
  3771. "name": "bojanz",
  3772. "homepage": "https://www.drupal.org/user/86106"
  3773. },
  3774. {
  3775. "name": "dawehner",
  3776. "homepage": "https://www.drupal.org/user/99340"
  3777. },
  3778. {
  3779. "name": "dixon_",
  3780. "homepage": "https://www.drupal.org/user/239911"
  3781. },
  3782. {
  3783. "name": "fago",
  3784. "homepage": "https://www.drupal.org/user/16747"
  3785. },
  3786. {
  3787. "name": "mglaman",
  3788. "homepage": "https://www.drupal.org/user/2416470"
  3789. },
  3790. {
  3791. "name": "TR",
  3792. "homepage": "https://www.drupal.org/user/202830"
  3793. }
  3794. ],
  3795. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3796. "homepage": "https://www.drupal.org/project/entity",
  3797. "support": {
  3798. "source": "https://git.drupalcode.org/project/entity",
  3799. "issues": "https://www.drupal.org/project/issues/entity"
  3800. }
  3801. },
  3802. {
  3803. "name": "drupal/entity_browser",
  3804. "version": "2.9.0",
  3805. "source": {
  3806. "type": "git",
  3807. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3808. "reference": "8.x-2.9"
  3809. },
  3810. "dist": {
  3811. "type": "zip",
  3812. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3813. "reference": "8.x-2.9",
  3814. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3815. },
  3816. "require": {
  3817. "drupal/core": "^9.2 || ^10"
  3818. },
  3819. "require-dev": {
  3820. "drupal/embed": "~1.0",
  3821. "drupal/entity_embed": "1.x-dev",
  3822. "drupal/entity_reference_revisions": "1.x-dev",
  3823. "drupal/entityqueue": "1.x-dev",
  3824. "drupal/inline_entity_form": "1.x-dev",
  3825. "drupal/paragraphs": "1.x-dev",
  3826. "drupal/token": "1.x-dev"
  3827. },
  3828. "type": "drupal-module",
  3829. "extra": {
  3830. "drupal": {
  3831. "version": "8.x-2.9",
  3832. "datestamp": "1674070933",
  3833. "security-coverage": {
  3834. "status": "covered",
  3835. "message": "Covered by Drupal's security advisory policy"
  3836. }
  3837. }
  3838. },
  3839. "notification-url": "https://packages.drupal.org/8/downloads",
  3840. "license": [
  3841. "GPL-2.0+"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Janez Urevc",
  3846. "homepage": "https://github.com/slashrsm",
  3847. "role": "Maintainer"
  3848. },
  3849. {
  3850. "name": "Primoz Hmeljak",
  3851. "homepage": "https://github.com/primsi",
  3852. "role": "Maintainer"
  3853. },
  3854. {
  3855. "name": "See other contributors",
  3856. "homepage": "https://www.drupal.org/node/1943336/committers",
  3857. "role": "contributor"
  3858. },
  3859. {
  3860. "name": "Drupal Media Team",
  3861. "homepage": "https://www.drupal.org/user/3260690"
  3862. },
  3863. {
  3864. "name": "marcingy",
  3865. "homepage": "https://www.drupal.org/user/77320"
  3866. },
  3867. {
  3868. "name": "oknate",
  3869. "homepage": "https://www.drupal.org/user/471638"
  3870. },
  3871. {
  3872. "name": "Primsi",
  3873. "homepage": "https://www.drupal.org/user/282629"
  3874. },
  3875. {
  3876. "name": "samuel.mortenson",
  3877. "homepage": "https://www.drupal.org/user/2582268"
  3878. },
  3879. {
  3880. "name": "slashrsm",
  3881. "homepage": "https://www.drupal.org/user/744628"
  3882. }
  3883. ],
  3884. "description": "Entity browsing and selecting component.",
  3885. "homepage": "http://drupal.org/project/entity_browser",
  3886. "support": {
  3887. "source": "https://git.drupalcode.org/project/entity_browser",
  3888. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3889. "irc": "irc://irc.freenode.org/drupal-contribute"
  3890. }
  3891. },
  3892. {
  3893. "name": "drupal/entity_browser_enhanced",
  3894. "version": "2.0.0",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  3898. "reference": "2.0.0"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  3903. "reference": "2.0.0",
  3904. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  3905. },
  3906. "require": {
  3907. "drupal/core": "^9 || ^10",
  3908. "drupal/entity_browser": "~2.0"
  3909. },
  3910. "type": "drupal-module",
  3911. "extra": {
  3912. "drupal": {
  3913. "version": "2.0.0",
  3914. "datestamp": "1697211243",
  3915. "security-coverage": {
  3916. "status": "covered",
  3917. "message": "Covered by Drupal's security advisory policy"
  3918. }
  3919. }
  3920. },
  3921. "notification-url": "https://packages.drupal.org/8/downloads",
  3922. "license": [
  3923. "GPL-2.0-or-later"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "Vardot",
  3928. "homepage": "https://www.drupal.org/vardot",
  3929. "role": "Maintainer"
  3930. },
  3931. {
  3932. "name": "Rajab Natshah",
  3933. "homepage": "https://www.drupal.org/user/1414312"
  3934. }
  3935. ],
  3936. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3937. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3938. "support": {
  3939. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3940. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3941. }
  3942. },
  3943. {
  3944. "name": "drupal/entity_clone",
  3945. "version": "dev-2.x",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://git.drupalcode.org/project/entity_clone.git",
  3949. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  3950. },
  3951. "require": {
  3952. "drupal/core": "^8.8 || ^9 || ^10"
  3953. },
  3954. "require-dev": {
  3955. "drupal/entity_browser": "2.x-dev",
  3956. "drupal/entity_usage": "2.x-dev",
  3957. "drupal/paragraphs": "^1.0",
  3958. "drupal/search_api": "~1.0"
  3959. },
  3960. "type": "drupal-module",
  3961. "extra": {
  3962. "branch-alias": {
  3963. "dev-2.x": "2.x-dev"
  3964. },
  3965. "drupal": {
  3966. "version": "2.0.0-beta4+3-dev",
  3967. "datestamp": "1697545494",
  3968. "security-coverage": {
  3969. "status": "not-covered",
  3970. "message": "Dev releases are not covered by Drupal security advisories."
  3971. }
  3972. }
  3973. },
  3974. "notification-url": "https://packages.drupal.org/8/downloads",
  3975. "license": [
  3976. "GPL-2.0-or-later"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "colan",
  3981. "homepage": "https://www.drupal.org/user/58704"
  3982. },
  3983. {
  3984. "name": "joevagyok",
  3985. "homepage": "https://www.drupal.org/user/2876343"
  3986. },
  3987. {
  3988. "name": "NickDickinsonWilde",
  3989. "homepage": "https://www.drupal.org/user/3094661"
  3990. },
  3991. {
  3992. "name": "Rajeshreeputra",
  3993. "homepage": "https://www.drupal.org/user/3418561"
  3994. },
  3995. {
  3996. "name": "Upchuk",
  3997. "homepage": "https://www.drupal.org/user/1885838"
  3998. },
  3999. {
  4000. "name": "vpeltot",
  4001. "homepage": "https://www.drupal.org/user/1361586"
  4002. }
  4003. ],
  4004. "description": "Add a clone action for all entities.",
  4005. "homepage": "https://drupal.org/project/entity_clone",
  4006. "support": {
  4007. "source": "https://git.drupalcode.org/project/entity_clone"
  4008. }
  4009. },
  4010. {
  4011. "name": "drupal/entity_reference_revisions",
  4012. "version": "1.10.0",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4016. "reference": "8.x-1.10"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4021. "reference": "8.x-1.10",
  4022. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4023. },
  4024. "require": {
  4025. "drupal/core": "^9 || ^10"
  4026. },
  4027. "require-dev": {
  4028. "drupal/diff": "1.x-dev"
  4029. },
  4030. "type": "drupal-module",
  4031. "extra": {
  4032. "drupal": {
  4033. "version": "8.x-1.10",
  4034. "datestamp": "1660664712",
  4035. "security-coverage": {
  4036. "status": "covered",
  4037. "message": "Covered by Drupal's security advisory policy"
  4038. }
  4039. },
  4040. "drush": {
  4041. "services": {
  4042. "drush.services.yml": "^9 || ^10 || ^11"
  4043. }
  4044. }
  4045. },
  4046. "notification-url": "https://packages.drupal.org/8/downloads",
  4047. "license": [
  4048. "GPL-2.0-or-later"
  4049. ],
  4050. "authors": [
  4051. {
  4052. "name": "Berdir",
  4053. "homepage": "https://www.drupal.org/user/214652"
  4054. },
  4055. {
  4056. "name": "Frans",
  4057. "homepage": "https://www.drupal.org/user/514222"
  4058. },
  4059. {
  4060. "name": "jeroen.b",
  4061. "homepage": "https://www.drupal.org/user/1853532"
  4062. },
  4063. {
  4064. "name": "miro_dietiker",
  4065. "homepage": "https://www.drupal.org/user/227761"
  4066. }
  4067. ],
  4068. "description": "Entity Reference Revisions",
  4069. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4070. "support": {
  4071. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4072. }
  4073. },
  4074. {
  4075. "name": "drupal/extlink",
  4076. "version": "1.7.0",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://git.drupalcode.org/project/extlink.git",
  4080. "reference": "8.x-1.7"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4085. "reference": "8.x-1.7",
  4086. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4087. },
  4088. "require": {
  4089. "drupal/core": "^8 || ^9 || ^10"
  4090. },
  4091. "type": "drupal-module",
  4092. "extra": {
  4093. "drupal": {
  4094. "version": "8.x-1.7",
  4095. "datestamp": "1665770295",
  4096. "security-coverage": {
  4097. "status": "covered",
  4098. "message": "Covered by Drupal's security advisory policy"
  4099. }
  4100. }
  4101. },
  4102. "notification-url": "https://packages.drupal.org/8/downloads",
  4103. "license": [
  4104. "GPL-2.0-or-later"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "Nate Lampton",
  4109. "homepage": "https://www.drupal.org/u/quicksketch",
  4110. "role": "Maintainer"
  4111. },
  4112. {
  4113. "name": "Lachlan Ennis",
  4114. "homepage": "https://www.drupal.org/u/elachlan",
  4115. "role": "Maintainer"
  4116. },
  4117. {
  4118. "name": "Neslee Canil Pinto",
  4119. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4120. "role": "Maintainer"
  4121. }
  4122. ],
  4123. "description": "Modify behavior and appearance of external links.",
  4124. "homepage": "https://www.drupal.org/project/extlink",
  4125. "keywords": [
  4126. "Drupal",
  4127. "External Links"
  4128. ],
  4129. "support": {
  4130. "source": "https://git.drupalcode.org/project/extlink",
  4131. "issues": "https://www.drupal.org/project/issues/extlink"
  4132. }
  4133. },
  4134. {
  4135. "name": "drupal/field_group",
  4136. "version": "dev-3.x",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://git.drupalcode.org/project/field_group.git",
  4140. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4141. },
  4142. "require": {
  4143. "drupal/core": "^9.2 || ^10"
  4144. },
  4145. "type": "drupal-module",
  4146. "extra": {
  4147. "branch-alias": {
  4148. "dev-3.x": "3.x-dev"
  4149. },
  4150. "drupal": {
  4151. "version": "8.x-3.4+4-dev",
  4152. "datestamp": "1696831482",
  4153. "security-coverage": {
  4154. "status": "not-covered",
  4155. "message": "Dev releases are not covered by Drupal security advisories."
  4156. }
  4157. }
  4158. },
  4159. "notification-url": "https://packages.drupal.org/8/downloads",
  4160. "license": [
  4161. "GPL-2.0-or-later"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "Anybody",
  4166. "homepage": "https://www.drupal.org/user/291091"
  4167. },
  4168. {
  4169. "name": "Hydra",
  4170. "homepage": "https://www.drupal.org/user/647364"
  4171. },
  4172. {
  4173. "name": "jyve",
  4174. "homepage": "https://www.drupal.org/user/591438"
  4175. },
  4176. {
  4177. "name": "nils.destoop",
  4178. "homepage": "https://www.drupal.org/user/361625"
  4179. },
  4180. {
  4181. "name": "Stalski",
  4182. "homepage": "https://www.drupal.org/user/322618"
  4183. },
  4184. {
  4185. "name": "swentel",
  4186. "homepage": "https://www.drupal.org/user/107403"
  4187. }
  4188. ],
  4189. "description": "Provides the field_group module.",
  4190. "homepage": "https://www.drupal.org/project/field_group",
  4191. "support": {
  4192. "source": "https://git.drupalcode.org/project/field_group",
  4193. "issues": "https://www.drupal.org/project/issues/field_group"
  4194. }
  4195. },
  4196. {
  4197. "name": "drupal/file_mdm",
  4198. "version": "2.6.0",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4202. "reference": "8.x-2.6"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4207. "reference": "8.x-2.6",
  4208. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4209. },
  4210. "require": {
  4211. "drupal/core": "^9.3 | ^10",
  4212. "fileeye/pel": "^0.9.20",
  4213. "phenx/php-font-lib": "^0.5.4"
  4214. },
  4215. "require-dev": {
  4216. "drupal/vendor_stream_wrapper": "^2.0.2",
  4217. "fileeye/linuxlibertine-fonts": "^5.3"
  4218. },
  4219. "type": "drupal-module",
  4220. "extra": {
  4221. "drupal": {
  4222. "version": "8.x-2.6",
  4223. "datestamp": "1688489716",
  4224. "security-coverage": {
  4225. "status": "covered",
  4226. "message": "Covered by Drupal's security advisory policy"
  4227. }
  4228. }
  4229. },
  4230. "notification-url": "https://packages.drupal.org/8/downloads",
  4231. "license": [
  4232. "GPL-2.0-or-later"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "mondrake",
  4237. "homepage": "https://www.drupal.org/user/1307444"
  4238. }
  4239. ],
  4240. "description": "Provides a service to manage file metadata.",
  4241. "homepage": "https://www.drupal.org/project/file_mdm",
  4242. "support": {
  4243. "source": "https://git.drupalcode.org/project/file_mdm"
  4244. }
  4245. },
  4246. {
  4247. "name": "drupal/filter_perms",
  4248. "version": "dev-1.x",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4252. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4253. },
  4254. "require": {
  4255. "drupal/core": "^9.0 || ^10.0"
  4256. },
  4257. "type": "drupal-module",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-1.x": "1.x-dev"
  4261. },
  4262. "drupal": {
  4263. "version": "8.x-1.0-alpha2+1-dev",
  4264. "datestamp": "1697635045",
  4265. "security-coverage": {
  4266. "status": "not-covered",
  4267. "message": "Dev releases are not covered by Drupal security advisories."
  4268. }
  4269. }
  4270. },
  4271. "notification-url": "https://packages.drupal.org/8/downloads",
  4272. "license": [
  4273. "GPL-2.0+"
  4274. ],
  4275. "authors": [
  4276. {
  4277. "name": "cYu",
  4278. "homepage": "https://www.drupal.org/user/202205"
  4279. },
  4280. {
  4281. "name": "deekayen",
  4282. "homepage": "https://www.drupal.org/user/972"
  4283. },
  4284. {
  4285. "name": "ivavictoria",
  4286. "homepage": "https://www.drupal.org/user/3061533"
  4287. },
  4288. {
  4289. "name": "justcaldwell",
  4290. "homepage": "https://www.drupal.org/user/290069"
  4291. },
  4292. {
  4293. "name": "mgbellaire",
  4294. "homepage": "https://www.drupal.org/user/1831932"
  4295. },
  4296. {
  4297. "name": "willzyx",
  4298. "homepage": "https://www.drupal.org/user/1043862"
  4299. }
  4300. ],
  4301. "description": "Provides role and module filters to simplify the user permissions page.",
  4302. "homepage": "https://www.drupal.org/project/filter_perms",
  4303. "support": {
  4304. "source": "http://cgit.drupalcode.org/filter_perms",
  4305. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4306. }
  4307. },
  4308. {
  4309. "name": "drupal/formatter_suite",
  4310. "version": "2.0.0",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4314. "reference": "2.0.0"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4319. "reference": "2.0.0",
  4320. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4321. },
  4322. "require": {
  4323. "drupal/core": "^9 || ^10"
  4324. },
  4325. "type": "drupal-module",
  4326. "extra": {
  4327. "drupal": {
  4328. "version": "2.0.0",
  4329. "datestamp": "1694036572",
  4330. "security-coverage": {
  4331. "status": "covered",
  4332. "message": "Covered by Drupal's security advisory policy"
  4333. }
  4334. }
  4335. },
  4336. "notification-url": "https://packages.drupal.org/8/downloads",
  4337. "license": [
  4338. "GPL-2.0-or-later"
  4339. ],
  4340. "authors": [
  4341. {
  4342. "name": "thecooltechguy",
  4343. "homepage": "https://www.drupal.org/user/3674323"
  4344. },
  4345. {
  4346. "name": "toamit",
  4347. "homepage": "https://www.drupal.org/user/2820523"
  4348. }
  4349. ],
  4350. "description": "Field formaters to present numbers, text, links, etc.",
  4351. "homepage": "https://www.drupal.org/project/formatter_suite",
  4352. "keywords": [
  4353. "Drupal",
  4354. "Format"
  4355. ],
  4356. "support": {
  4357. "source": "http://cgit.drupalcode.org/formatter_suite",
  4358. "issues": "http://drupal.org/project/issues/formatter_suite"
  4359. }
  4360. },
  4361. {
  4362. "name": "drupal/honeypot",
  4363. "version": "2.1.3",
  4364. "source": {
  4365. "type": "git",
  4366. "url": "https://git.drupalcode.org/project/honeypot.git",
  4367. "reference": "2.1.3"
  4368. },
  4369. "dist": {
  4370. "type": "zip",
  4371. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4372. "reference": "2.1.3",
  4373. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4374. },
  4375. "require": {
  4376. "drupal/core": "^9.2 || ^10"
  4377. },
  4378. "require-dev": {
  4379. "drupal/rules": "^3.0"
  4380. },
  4381. "type": "drupal-module",
  4382. "extra": {
  4383. "drupal": {
  4384. "version": "2.1.3",
  4385. "datestamp": "1695604754",
  4386. "security-coverage": {
  4387. "status": "covered",
  4388. "message": "Covered by Drupal's security advisory policy"
  4389. }
  4390. }
  4391. },
  4392. "notification-url": "https://packages.drupal.org/8/downloads",
  4393. "license": [
  4394. "GPL-2.0-or-later"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "Jeff Geerling",
  4399. "homepage": "https://www.drupal.org/user/389011",
  4400. "email": "geerlingguy@mac.com"
  4401. },
  4402. {
  4403. "name": "Manuel Garcia",
  4404. "homepage": "https://www.drupal.org/user/213194"
  4405. },
  4406. {
  4407. "name": "TR",
  4408. "homepage": "https://www.drupal.org/user/202830"
  4409. },
  4410. {
  4411. "name": "vijaycs85",
  4412. "homepage": "https://www.drupal.org/user/93488"
  4413. }
  4414. ],
  4415. "description": "Mitigates spam form submissions using the honeypot method.",
  4416. "homepage": "https://www.drupal.org/project/honeypot",
  4417. "keywords": [
  4418. "deterrent",
  4419. "form",
  4420. "honeypot",
  4421. "honeytrap",
  4422. "php",
  4423. "spam"
  4424. ],
  4425. "support": {
  4426. "source": "https://git.drupalcode.org/project/honeypot",
  4427. "issues": "https://www.drupal.org/project/issues/honeypot"
  4428. }
  4429. },
  4430. {
  4431. "name": "drupal/imagemagick",
  4432. "version": "3.4.0",
  4433. "source": {
  4434. "type": "git",
  4435. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4436. "reference": "8.x-3.4"
  4437. },
  4438. "dist": {
  4439. "type": "zip",
  4440. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4441. "reference": "8.x-3.4",
  4442. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4443. },
  4444. "require": {
  4445. "drupal/core": "^9.3 || ^10",
  4446. "drupal/file_mdm": "^2.5",
  4447. "drupal/sophron": "^1.2 || ^2"
  4448. },
  4449. "type": "drupal-module",
  4450. "extra": {
  4451. "drupal": {
  4452. "version": "8.x-3.4",
  4453. "datestamp": "1663947784",
  4454. "security-coverage": {
  4455. "status": "covered",
  4456. "message": "Covered by Drupal's security advisory policy"
  4457. }
  4458. }
  4459. },
  4460. "notification-url": "https://packages.drupal.org/8/downloads",
  4461. "license": [
  4462. "GPL-2.0-or-later"
  4463. ],
  4464. "authors": [
  4465. {
  4466. "name": "Chris Charlton",
  4467. "homepage": "https://www.drupal.org/user/17089"
  4468. },
  4469. {
  4470. "name": "chx",
  4471. "homepage": "https://www.drupal.org/user/9446"
  4472. },
  4473. {
  4474. "name": "claudiu.cristea",
  4475. "homepage": "https://www.drupal.org/user/56348"
  4476. },
  4477. {
  4478. "name": "dman",
  4479. "homepage": "https://www.drupal.org/user/33240"
  4480. },
  4481. {
  4482. "name": "dopry",
  4483. "homepage": "https://www.drupal.org/user/22202"
  4484. },
  4485. {
  4486. "name": "drewish",
  4487. "homepage": "https://www.drupal.org/user/34869"
  4488. },
  4489. {
  4490. "name": "gdl",
  4491. "homepage": "https://www.drupal.org/user/507326"
  4492. },
  4493. {
  4494. "name": "mondrake",
  4495. "homepage": "https://www.drupal.org/user/1307444"
  4496. },
  4497. {
  4498. "name": "quicksketch",
  4499. "homepage": "https://www.drupal.org/user/35821"
  4500. },
  4501. {
  4502. "name": "sun",
  4503. "homepage": "https://www.drupal.org/user/54136"
  4504. },
  4505. {
  4506. "name": "walkah",
  4507. "homepage": "https://www.drupal.org/user/1531"
  4508. }
  4509. ],
  4510. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4511. "homepage": "https://www.drupal.org/project/imagemagick",
  4512. "support": {
  4513. "source": "https://git.drupalcode.org/project/imagemagick"
  4514. }
  4515. },
  4516. {
  4517. "name": "drupal/inline_entity_form",
  4518. "version": "1.0.0-rc15",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4522. "reference": "8.x-1.0-rc15"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4527. "reference": "8.x-1.0-rc15",
  4528. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4529. },
  4530. "require": {
  4531. "drupal/core": "^8.8 || ^9 || ^10",
  4532. "php": ">=7.1"
  4533. },
  4534. "require-dev": {
  4535. "drupal/entity_reference_revisions": "^1.0"
  4536. },
  4537. "type": "drupal-module",
  4538. "extra": {
  4539. "drupal": {
  4540. "version": "8.x-1.0-rc15",
  4541. "datestamp": "1678126675",
  4542. "security-coverage": {
  4543. "status": "not-covered",
  4544. "message": "RC releases are not covered by Drupal security advisories."
  4545. }
  4546. }
  4547. },
  4548. "notification-url": "https://packages.drupal.org/8/downloads",
  4549. "license": [
  4550. "GPL-2.0-or-later"
  4551. ],
  4552. "authors": [
  4553. {
  4554. "name": "bojanz",
  4555. "homepage": "https://www.drupal.org/user/86106"
  4556. },
  4557. {
  4558. "name": "Centarro",
  4559. "homepage": "https://www.drupal.org/user/3661446"
  4560. },
  4561. {
  4562. "name": "dawehner",
  4563. "homepage": "https://www.drupal.org/user/99340"
  4564. },
  4565. {
  4566. "name": "geek-merlin",
  4567. "homepage": "https://www.drupal.org/user/229048"
  4568. },
  4569. {
  4570. "name": "joachim",
  4571. "homepage": "https://www.drupal.org/user/107701"
  4572. },
  4573. {
  4574. "name": "jsacksick",
  4575. "homepage": "https://www.drupal.org/user/972218"
  4576. },
  4577. {
  4578. "name": "oknate",
  4579. "homepage": "https://www.drupal.org/user/471638"
  4580. },
  4581. {
  4582. "name": "podarok",
  4583. "homepage": "https://www.drupal.org/user/116002"
  4584. },
  4585. {
  4586. "name": "ram4nd",
  4587. "homepage": "https://www.drupal.org/user/601534"
  4588. },
  4589. {
  4590. "name": "rszrama",
  4591. "homepage": "https://www.drupal.org/user/49344"
  4592. },
  4593. {
  4594. "name": "slashrsm",
  4595. "homepage": "https://www.drupal.org/user/744628"
  4596. },
  4597. {
  4598. "name": "webflo",
  4599. "homepage": "https://www.drupal.org/user/254778"
  4600. }
  4601. ],
  4602. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4603. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4604. "support": {
  4605. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4606. }
  4607. },
  4608. {
  4609. "name": "drupal/jquery_ui",
  4610. "version": "1.6.0",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4614. "reference": "8.x-1.6"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4619. "reference": "8.x-1.6",
  4620. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4621. },
  4622. "require": {
  4623. "drupal/core": "^9.2 || ^10"
  4624. },
  4625. "type": "drupal-module",
  4626. "extra": {
  4627. "drupal": {
  4628. "version": "8.x-1.6",
  4629. "datestamp": "1668521197",
  4630. "security-coverage": {
  4631. "status": "covered",
  4632. "message": "Covered by Drupal's security advisory policy"
  4633. }
  4634. }
  4635. },
  4636. "notification-url": "https://packages.drupal.org/8/downloads",
  4637. "license": [
  4638. "GPL-2.0-or-later"
  4639. ],
  4640. "authors": [
  4641. {
  4642. "name": "bnjmnm",
  4643. "homepage": "https://www.drupal.org/user/2369194"
  4644. },
  4645. {
  4646. "name": "jjeff",
  4647. "homepage": "https://www.drupal.org/user/17190"
  4648. },
  4649. {
  4650. "name": "lauriii",
  4651. "homepage": "https://www.drupal.org/user/1078742"
  4652. },
  4653. {
  4654. "name": "litwol",
  4655. "homepage": "https://www.drupal.org/user/78134"
  4656. },
  4657. {
  4658. "name": "mfb",
  4659. "homepage": "https://www.drupal.org/user/12302"
  4660. },
  4661. {
  4662. "name": "mfer",
  4663. "homepage": "https://www.drupal.org/user/25701"
  4664. },
  4665. {
  4666. "name": "mikelutz",
  4667. "homepage": "https://www.drupal.org/user/2972409"
  4668. },
  4669. {
  4670. "name": "nod_",
  4671. "homepage": "https://www.drupal.org/user/598310"
  4672. },
  4673. {
  4674. "name": "phenaproxima",
  4675. "homepage": "https://www.drupal.org/user/205645"
  4676. },
  4677. {
  4678. "name": "RobLoach",
  4679. "homepage": "https://www.drupal.org/user/61114"
  4680. },
  4681. {
  4682. "name": "sun",
  4683. "homepage": "https://www.drupal.org/user/54136"
  4684. },
  4685. {
  4686. "name": "webchick",
  4687. "homepage": "https://www.drupal.org/user/24967"
  4688. },
  4689. {
  4690. "name": "Wim Leers",
  4691. "homepage": "https://www.drupal.org/user/99777"
  4692. },
  4693. {
  4694. "name": "zrpnr",
  4695. "homepage": "https://www.drupal.org/user/1448368"
  4696. }
  4697. ],
  4698. "description": "Provides jQuery UI library.",
  4699. "homepage": "https://www.drupal.org/project/jquery_ui",
  4700. "support": {
  4701. "source": "https://git.drupalcode.org/project/jquery_ui"
  4702. }
  4703. },
  4704. {
  4705. "name": "drupal/jquery_ui_datepicker",
  4706. "version": "2.0.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4710. "reference": "2.0.0"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4715. "reference": "2.0.0",
  4716. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4717. },
  4718. "require": {
  4719. "drupal/core": "^9.2 || ^10",
  4720. "drupal/jquery_ui": "^1.6"
  4721. },
  4722. "type": "drupal-module",
  4723. "extra": {
  4724. "drupal": {
  4725. "version": "2.0.0",
  4726. "datestamp": "1670871494",
  4727. "security-coverage": {
  4728. "status": "covered",
  4729. "message": "Covered by Drupal's security advisory policy"
  4730. }
  4731. }
  4732. },
  4733. "notification-url": "https://packages.drupal.org/8/downloads",
  4734. "license": [
  4735. "GPL-2.0-or-later"
  4736. ],
  4737. "authors": [
  4738. {
  4739. "name": "bnjmnm",
  4740. "homepage": "https://www.drupal.org/user/2369194"
  4741. },
  4742. {
  4743. "name": "jrockowitz",
  4744. "homepage": "https://www.drupal.org/user/371407"
  4745. },
  4746. {
  4747. "name": "lauriii",
  4748. "homepage": "https://www.drupal.org/user/1078742"
  4749. },
  4750. {
  4751. "name": "nod_",
  4752. "homepage": "https://www.drupal.org/user/598310"
  4753. },
  4754. {
  4755. "name": "phenaproxima",
  4756. "homepage": "https://www.drupal.org/user/205645"
  4757. },
  4758. {
  4759. "name": "zrpnr",
  4760. "homepage": "https://www.drupal.org/user/1448368"
  4761. }
  4762. ],
  4763. "description": "Provides jQuery UI Datepicker library.",
  4764. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4765. "support": {
  4766. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4767. }
  4768. },
  4769. {
  4770. "name": "drupal/jquery_ui_draggable",
  4771. "version": "2.0.0",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4775. "reference": "2.0.0"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  4780. "reference": "2.0.0",
  4781. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  4782. },
  4783. "require": {
  4784. "drupal/core": "^9.2 || ^10",
  4785. "drupal/jquery_ui": "^1.6"
  4786. },
  4787. "type": "drupal-module",
  4788. "extra": {
  4789. "drupal": {
  4790. "version": "2.0.0",
  4791. "datestamp": "1670871516",
  4792. "security-coverage": {
  4793. "status": "covered",
  4794. "message": "Covered by Drupal's security advisory policy"
  4795. }
  4796. }
  4797. },
  4798. "notification-url": "https://packages.drupal.org/8/downloads",
  4799. "license": [
  4800. "GPL-2.0-or-later"
  4801. ],
  4802. "authors": [
  4803. {
  4804. "name": "bnjmnm",
  4805. "homepage": "https://www.drupal.org/user/2369194"
  4806. },
  4807. {
  4808. "name": "lauriii",
  4809. "homepage": "https://www.drupal.org/user/1078742"
  4810. },
  4811. {
  4812. "name": "zrpnr",
  4813. "homepage": "https://www.drupal.org/user/1448368"
  4814. }
  4815. ],
  4816. "description": "Provides jQuery UI Draggable library.",
  4817. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4818. "support": {
  4819. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4820. }
  4821. },
  4822. {
  4823. "name": "drupal/jquery_ui_droppable",
  4824. "version": "1.5.0",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4828. "reference": "8.x-1.5"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  4833. "reference": "8.x-1.5",
  4834. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  4835. },
  4836. "require": {
  4837. "drupal/core": "^9.2 || ^10",
  4838. "drupal/jquery_ui": "^1.5",
  4839. "drupal/jquery_ui_draggable": "*"
  4840. },
  4841. "type": "drupal-module",
  4842. "extra": {
  4843. "drupal": {
  4844. "version": "8.x-1.5",
  4845. "datestamp": "1668452746",
  4846. "security-coverage": {
  4847. "status": "covered",
  4848. "message": "Covered by Drupal's security advisory policy"
  4849. }
  4850. }
  4851. },
  4852. "notification-url": "https://packages.drupal.org/8/downloads",
  4853. "license": [
  4854. "GPL-2.0-or-later"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "bnjmnm",
  4859. "homepage": "https://www.drupal.org/user/2369194"
  4860. },
  4861. {
  4862. "name": "lauriii",
  4863. "homepage": "https://www.drupal.org/user/1078742"
  4864. },
  4865. {
  4866. "name": "zrpnr",
  4867. "homepage": "https://www.drupal.org/user/1448368"
  4868. }
  4869. ],
  4870. "description": "Provides jQuery UI Droppable library.",
  4871. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4872. "support": {
  4873. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4874. }
  4875. },
  4876. {
  4877. "name": "drupal/jquery_ui_slider",
  4878. "version": "2.0.0",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4882. "reference": "2.0.0"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4887. "reference": "2.0.0",
  4888. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4889. },
  4890. "require": {
  4891. "drupal/core": "^9.2 || ^10",
  4892. "drupal/jquery_ui": "^1.6"
  4893. },
  4894. "type": "drupal-module",
  4895. "extra": {
  4896. "drupal": {
  4897. "version": "2.0.0",
  4898. "datestamp": "1670871571",
  4899. "security-coverage": {
  4900. "status": "covered",
  4901. "message": "Covered by Drupal's security advisory policy"
  4902. }
  4903. }
  4904. },
  4905. "notification-url": "https://packages.drupal.org/8/downloads",
  4906. "license": [
  4907. "GPL-2.0-or-later"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "bnjmnm",
  4912. "homepage": "https://www.drupal.org/user/2369194"
  4913. },
  4914. {
  4915. "name": "lauriii",
  4916. "homepage": "https://www.drupal.org/user/1078742"
  4917. },
  4918. {
  4919. "name": "zrpnr",
  4920. "homepage": "https://www.drupal.org/user/1448368"
  4921. }
  4922. ],
  4923. "description": "Provides jQuery UI Slider library.",
  4924. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  4925. "support": {
  4926. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  4927. }
  4928. },
  4929. {
  4930. "name": "drupal/jquery_ui_touch_punch",
  4931. "version": "1.1.0",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  4935. "reference": "1.1.0"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  4940. "reference": "1.1.0",
  4941. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  4942. },
  4943. "require": {
  4944. "drupal/core": "^8 || ^9 || ^10",
  4945. "drupal/jquery_ui": "^1.0",
  4946. "politsin/jquery-ui-touch-punch": "^1.0"
  4947. },
  4948. "type": "drupal-module",
  4949. "extra": {
  4950. "drupal": {
  4951. "version": "1.1.0",
  4952. "datestamp": "1662744607",
  4953. "security-coverage": {
  4954. "status": "covered",
  4955. "message": "Covered by Drupal's security advisory policy"
  4956. }
  4957. }
  4958. },
  4959. "notification-url": "https://packages.drupal.org/8/downloads",
  4960. "license": [
  4961. "GPL-2.0-or-later"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Naveen Valecha",
  4966. "homepage": "https://drupal.org/u/naveenvalecha",
  4967. "role": "Maintainer"
  4968. },
  4969. {
  4970. "name": "naveenvalecha",
  4971. "homepage": "https://www.drupal.org/user/2665733"
  4972. }
  4973. ],
  4974. "description": "Provides jQuery UI Touch Punch library.",
  4975. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4976. "keywords": [
  4977. "Drupal",
  4978. "jquery_ui_touch_punch"
  4979. ],
  4980. "support": {
  4981. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4982. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  4983. }
  4984. },
  4985. {
  4986. "name": "drupal/link_attributes",
  4987. "version": "1.14.0",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://git.drupalcode.org/project/link_attributes.git",
  4991. "reference": "8.x-1.14"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  4996. "reference": "8.x-1.14",
  4997. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  4998. },
  4999. "require": {
  5000. "drupal/core": "^9 || ^10"
  5001. },
  5002. "type": "drupal-module",
  5003. "extra": {
  5004. "drupal": {
  5005. "version": "8.x-1.14",
  5006. "datestamp": "1687393687",
  5007. "security-coverage": {
  5008. "status": "covered",
  5009. "message": "Covered by Drupal's security advisory policy"
  5010. }
  5011. }
  5012. },
  5013. "notification-url": "https://packages.drupal.org/8/downloads",
  5014. "license": [
  5015. "GPL-2.0-or-later"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "larowlan",
  5020. "homepage": "https://www.drupal.org/user/395439"
  5021. }
  5022. ],
  5023. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5024. "homepage": "https://www.drupal.org/project/link_attributes",
  5025. "keywords": [
  5026. "Drupal"
  5027. ],
  5028. "support": {
  5029. "source": "https://git.drupalcode.org/project/link_attributes",
  5030. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5031. }
  5032. },
  5033. {
  5034. "name": "drupal/linked_field",
  5035. "version": "1.5.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://git.drupalcode.org/project/linked_field.git",
  5039. "reference": "8.x-1.5"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5044. "reference": "8.x-1.5",
  5045. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5046. },
  5047. "require": {
  5048. "drupal/core": "^8.8 || ^9 || ^10"
  5049. },
  5050. "type": "drupal-module",
  5051. "extra": {
  5052. "drupal": {
  5053. "version": "8.x-1.5",
  5054. "datestamp": "1677239525",
  5055. "security-coverage": {
  5056. "status": "covered",
  5057. "message": "Covered by Drupal's security advisory policy"
  5058. }
  5059. }
  5060. },
  5061. "notification-url": "https://packages.drupal.org/8/downloads",
  5062. "license": [
  5063. "GPL-2.0-or-later"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "jcnventura",
  5068. "homepage": "https://www.drupal.org/user/122464"
  5069. },
  5070. {
  5071. "name": "yannickoo",
  5072. "homepage": "https://www.drupal.org/user/531118"
  5073. }
  5074. ],
  5075. "description": "Adds the functionality to link fields to a specific destination.",
  5076. "homepage": "https://www.drupal.org/project/linked_field",
  5077. "support": {
  5078. "source": "https://git.drupalcode.org/project/linked_field"
  5079. }
  5080. },
  5081. {
  5082. "name": "drupal/linkit",
  5083. "version": "6.1.2",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://git.drupalcode.org/project/linkit.git",
  5087. "reference": "6.1.2"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5092. "reference": "6.1.2",
  5093. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5094. },
  5095. "require": {
  5096. "drupal/core": "^10.1"
  5097. },
  5098. "require-dev": {
  5099. "drupal/ckeditor": "*",
  5100. "drupal/imce": "*"
  5101. },
  5102. "type": "drupal-module",
  5103. "extra": {
  5104. "drupal": {
  5105. "version": "6.1.2",
  5106. "datestamp": "1696865478",
  5107. "security-coverage": {
  5108. "status": "covered",
  5109. "message": "Covered by Drupal's security advisory policy"
  5110. }
  5111. }
  5112. },
  5113. "notification-url": "https://packages.drupal.org/8/downloads",
  5114. "license": [
  5115. "GPL-2.0-or-later"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Emil Stjerneman",
  5120. "homepage": "https://stjerneman.com",
  5121. "email": "emil@stjerneman.com",
  5122. "role": "Maintainer"
  5123. },
  5124. {
  5125. "name": "johnwebdev",
  5126. "homepage": "https://www.drupal.org/user/3331569"
  5127. },
  5128. {
  5129. "name": "mark_fullmer",
  5130. "homepage": "https://www.drupal.org/user/2612816"
  5131. }
  5132. ],
  5133. "description": "Linkit - Enriched linking experience",
  5134. "homepage": "http://drupal.org/project/linkit",
  5135. "support": {
  5136. "source": "http://cgit.drupalcode.org/linkit",
  5137. "issues": "http://drupal.org/project/linkit"
  5138. }
  5139. },
  5140. {
  5141. "name": "drupal/login_destination",
  5142. "version": "dev-2.x",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://git.drupalcode.org/project/login_destination.git",
  5146. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5147. },
  5148. "require": {
  5149. "drupal/core": "^8.7.10 || ^9 || ^10"
  5150. },
  5151. "require-dev": {
  5152. "drupal/admin_toolbar": "^1.23",
  5153. "drupal/admin_toolbar_tools": "*"
  5154. },
  5155. "type": "drupal-module",
  5156. "extra": {
  5157. "branch-alias": {
  5158. "dev-2.x": "2.x-dev"
  5159. },
  5160. "drupal": {
  5161. "version": "8.x-2.0-beta5+3-dev",
  5162. "datestamp": "1680181961",
  5163. "security-coverage": {
  5164. "status": "not-covered",
  5165. "message": "Dev releases are not covered by Drupal security advisories."
  5166. }
  5167. }
  5168. },
  5169. "notification-url": "https://packages.drupal.org/8/downloads",
  5170. "license": [
  5171. "GPL-2.0-or-later"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "rsvelko",
  5176. "homepage": "https://www.drupal.org/u/rsvelko",
  5177. "role": "Creator, Maintainer"
  5178. },
  5179. {
  5180. "name": "Other Contributors",
  5181. "homepage": "https://www.drupal.org/node/69051/committers",
  5182. "role": "Contributors"
  5183. },
  5184. {
  5185. "name": "ddrozdik",
  5186. "homepage": "https://www.drupal.org/user/574124"
  5187. },
  5188. {
  5189. "name": "jng12",
  5190. "homepage": "https://www.drupal.org/user/204316"
  5191. },
  5192. {
  5193. "name": "marcp",
  5194. "homepage": "https://www.drupal.org/user/20885"
  5195. },
  5196. {
  5197. "name": "mithy",
  5198. "homepage": "https://www.drupal.org/user/258911"
  5199. },
  5200. {
  5201. "name": "moshe weitzman",
  5202. "homepage": "https://www.drupal.org/user/23"
  5203. },
  5204. {
  5205. "name": "Oliver Huynh",
  5206. "homepage": "https://www.drupal.org/user/243730"
  5207. },
  5208. {
  5209. "name": "perennial.sky",
  5210. "homepage": "https://www.drupal.org/user/2622667"
  5211. },
  5212. {
  5213. "name": "rsvelko",
  5214. "homepage": "https://www.drupal.org/user/337401"
  5215. }
  5216. ],
  5217. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5218. "homepage": "https://drupal.org/project/login_destination",
  5219. "support": {
  5220. "source": "https://git.drupalcode.org/project/login_destination",
  5221. "issues": "https://drupal.org/project/issues/login_destination"
  5222. }
  5223. },
  5224. {
  5225. "name": "drupal/maillog",
  5226. "version": "dev-1.x",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://git.drupalcode.org/project/maillog.git",
  5230. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5231. },
  5232. "require": {
  5233. "drupal/core": "^9 || ^10"
  5234. },
  5235. "type": "drupal-module",
  5236. "extra": {
  5237. "branch-alias": {
  5238. "dev-1.x": "1.x-dev"
  5239. },
  5240. "drupal": {
  5241. "version": "8.x-1.1+2-dev",
  5242. "datestamp": "1686405787",
  5243. "security-coverage": {
  5244. "status": "not-covered",
  5245. "message": "Dev releases are not covered by Drupal security advisories."
  5246. }
  5247. }
  5248. },
  5249. "notification-url": "https://packages.drupal.org/8/downloads",
  5250. "license": [
  5251. "GPL-2.0-or-later"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "Berdir",
  5256. "homepage": "https://www.drupal.org/user/214652"
  5257. },
  5258. {
  5259. "name": "DamienMcKenna",
  5260. "homepage": "https://www.drupal.org/user/108450"
  5261. },
  5262. {
  5263. "name": "miro_dietiker",
  5264. "homepage": "https://www.drupal.org/user/227761"
  5265. },
  5266. {
  5267. "name": "pluess",
  5268. "homepage": "https://www.drupal.org/user/84659"
  5269. }
  5270. ],
  5271. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5272. "homepage": "https://www.drupal.org/project/maillog",
  5273. "support": {
  5274. "source": "https://git.drupalcode.org/project/maillog"
  5275. }
  5276. },
  5277. {
  5278. "name": "drupal/matomo",
  5279. "version": "1.22.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://git.drupalcode.org/project/matomo.git",
  5283. "reference": "8.x-1.22"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  5288. "reference": "8.x-1.22",
  5289. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  5290. },
  5291. "require": {
  5292. "drupal/core": "^9.0 || ^10"
  5293. },
  5294. "conflict": {
  5295. "drupal/csp": "<1.12"
  5296. },
  5297. "require-dev": {
  5298. "drupal/csp": "~1.12",
  5299. "drupal/php": "~1.1",
  5300. "drupal/token": "~1.9"
  5301. },
  5302. "type": "drupal-module",
  5303. "extra": {
  5304. "drupal": {
  5305. "version": "8.x-1.22",
  5306. "datestamp": "1691004328",
  5307. "security-coverage": {
  5308. "status": "covered",
  5309. "message": "Covered by Drupal's security advisory policy"
  5310. }
  5311. }
  5312. },
  5313. "notification-url": "https://packages.drupal.org/8/downloads",
  5314. "license": [
  5315. "GPL-2.0-or-later"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "C-Logemann",
  5320. "homepage": "https://www.drupal.org/user/218368"
  5321. },
  5322. {
  5323. "name": "Grimreaper",
  5324. "homepage": "https://www.drupal.org/user/2388214"
  5325. },
  5326. {
  5327. "name": "hass",
  5328. "homepage": "https://www.drupal.org/user/85918"
  5329. },
  5330. {
  5331. "name": "shelane",
  5332. "homepage": "https://www.drupal.org/user/2674989"
  5333. }
  5334. ],
  5335. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5336. "homepage": "https://www.drupal.org/project/matomo",
  5337. "support": {
  5338. "source": "https://git.drupalcode.org/project/matomo"
  5339. }
  5340. },
  5341. {
  5342. "name": "drupal/maxlength",
  5343. "version": "2.1.2",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://git.drupalcode.org/project/maxlength.git",
  5347. "reference": "2.1.2"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5352. "reference": "2.1.2",
  5353. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5354. },
  5355. "require": {
  5356. "drupal/core": "^9.2 || ^10"
  5357. },
  5358. "type": "drupal-module",
  5359. "extra": {
  5360. "drupal": {
  5361. "version": "2.1.2",
  5362. "datestamp": "1689974531",
  5363. "security-coverage": {
  5364. "status": "covered",
  5365. "message": "Covered by Drupal's security advisory policy"
  5366. }
  5367. }
  5368. },
  5369. "notification-url": "https://packages.drupal.org/8/downloads",
  5370. "license": [
  5371. "GPL-2.0-or-later"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "Marius Scurtescu (mariuss)",
  5376. "homepage": "https://www.drupal.org/u/mariuss",
  5377. "role": "Maintainer"
  5378. },
  5379. {
  5380. "name": "Clayton Dewey (cedewey)",
  5381. "homepage": "https://www.drupal.org/u/cedewey",
  5382. "role": "Maintainer"
  5383. },
  5384. {
  5385. "name": "Daniel Wehner (dawehner)",
  5386. "homepage": "https://www.drupal.org/u/dawehner",
  5387. "role": "Maintainer"
  5388. },
  5389. {
  5390. "name": "Paulino Michelazzo (pmichelazzo)",
  5391. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5392. "role": "Maintainer"
  5393. },
  5394. {
  5395. "name": "Jeff Hipp (hipp2bsquare)",
  5396. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5397. "role": "Maintainer"
  5398. },
  5399. {
  5400. "name": "Steven DuBois (srdtwc)",
  5401. "homepage": "https://www.drupal.org/u/srdtwc",
  5402. "role": "Maintainer"
  5403. },
  5404. {
  5405. "name": "srdtwc",
  5406. "homepage": "https://www.drupal.org/user/3422763"
  5407. }
  5408. ],
  5409. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5410. "homepage": "https://www.drupal.org/project/maxlength",
  5411. "support": {
  5412. "source": "https://git.drupalcode.org/project/maxlength",
  5413. "issues": "https://www.drupal.org/project/issues/maxlength"
  5414. }
  5415. },
  5416. {
  5417. "name": "drupal/menu_admin_per_menu",
  5418. "version": "1.5.0",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5422. "reference": "8.x-1.5"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5427. "reference": "8.x-1.5",
  5428. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5429. },
  5430. "require": {
  5431. "drupal/core": "^9 || ^10"
  5432. },
  5433. "type": "drupal-module",
  5434. "extra": {
  5435. "drupal": {
  5436. "version": "8.x-1.5",
  5437. "datestamp": "1660918821",
  5438. "security-coverage": {
  5439. "status": "covered",
  5440. "message": "Covered by Drupal's security advisory policy"
  5441. }
  5442. }
  5443. },
  5444. "notification-url": "https://packages.drupal.org/8/downloads",
  5445. "license": [
  5446. "GPL-2.0-or-later"
  5447. ],
  5448. "authors": [
  5449. {
  5450. "name": "anrikun",
  5451. "homepage": "https://www.drupal.org/user/410199"
  5452. },
  5453. {
  5454. "name": "JeroenT",
  5455. "homepage": "https://www.drupal.org/user/2228934"
  5456. },
  5457. {
  5458. "name": "jonas139",
  5459. "homepage": "https://www.drupal.org/user/2873401"
  5460. },
  5461. {
  5462. "name": "mkdok",
  5463. "homepage": "https://www.drupal.org/user/3308753"
  5464. }
  5465. ],
  5466. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5467. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5468. "support": {
  5469. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5470. }
  5471. },
  5472. {
  5473. "name": "drupal/menu_block",
  5474. "version": "dev-1.x",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://git.drupalcode.org/project/menu_block.git",
  5478. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5479. },
  5480. "require": {
  5481. "drupal/core": "^9.1 || ^10"
  5482. },
  5483. "type": "drupal-module",
  5484. "extra": {
  5485. "branch-alias": {
  5486. "dev-1.x": "1.x-dev"
  5487. },
  5488. "drupal": {
  5489. "version": "8.x-1.9+1-dev",
  5490. "datestamp": "1667434044",
  5491. "security-coverage": {
  5492. "status": "not-covered",
  5493. "message": "Dev releases are not covered by Drupal security advisories."
  5494. }
  5495. }
  5496. },
  5497. "notification-url": "https://packages.drupal.org/8/downloads",
  5498. "license": [
  5499. "GPL-2.0-or-later"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Dave Reid",
  5504. "homepage": "https://www.drupal.org/user/53892"
  5505. },
  5506. {
  5507. "name": "joelpittet",
  5508. "homepage": "https://www.drupal.org/user/160302"
  5509. },
  5510. {
  5511. "name": "JohnAlbin",
  5512. "homepage": "https://www.drupal.org/user/32095"
  5513. },
  5514. {
  5515. "name": "kim.pepper",
  5516. "homepage": "https://www.drupal.org/user/370574"
  5517. },
  5518. {
  5519. "name": "RenatoG",
  5520. "homepage": "https://www.drupal.org/user/3326031"
  5521. },
  5522. {
  5523. "name": "rrrob",
  5524. "homepage": "https://www.drupal.org/user/273533"
  5525. }
  5526. ],
  5527. "description": "Provides configurable blocks of menu links.",
  5528. "homepage": "https://www.drupal.org/project/menu_block",
  5529. "support": {
  5530. "source": "https://git.drupalcode.org/project/menu_block"
  5531. }
  5532. },
  5533. {
  5534. "name": "drupal/menu_position",
  5535. "version": "dev-1.x",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://git.drupalcode.org/project/menu_position.git",
  5539. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5540. },
  5541. "require": {
  5542. "drupal/core": "^8 || ^9 || ^10"
  5543. },
  5544. "type": "drupal-module",
  5545. "extra": {
  5546. "branch-alias": {
  5547. "dev-1.x": "1.x-dev"
  5548. },
  5549. "drupal": {
  5550. "version": "8.x-1.0+6-dev",
  5551. "datestamp": "1685505680",
  5552. "security-coverage": {
  5553. "status": "not-covered",
  5554. "message": "Dev releases are not covered by Drupal security advisories."
  5555. }
  5556. }
  5557. },
  5558. "notification-url": "https://packages.drupal.org/8/downloads",
  5559. "license": [
  5560. "GPL-2.0-or-later"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "BarisW",
  5565. "homepage": "https://www.drupal.org/user/107229"
  5566. },
  5567. {
  5568. "name": "joelpittet",
  5569. "homepage": "https://www.drupal.org/user/160302"
  5570. },
  5571. {
  5572. "name": "JohnAlbin",
  5573. "homepage": "https://www.drupal.org/user/32095"
  5574. },
  5575. {
  5576. "name": "lbainbridge",
  5577. "homepage": "https://www.drupal.org/user/2406996"
  5578. },
  5579. {
  5580. "name": "Rajab Natshah",
  5581. "homepage": "https://www.drupal.org/user/1414312"
  5582. },
  5583. {
  5584. "name": "Sutharsan",
  5585. "homepage": "https://www.drupal.org/user/73854"
  5586. }
  5587. ],
  5588. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5589. "homepage": "https://www.drupal.org/project/menu_position",
  5590. "support": {
  5591. "source": "https://git.drupalcode.org/project/menu_position",
  5592. "issues": "https://www.drupal.org/project/issues/menu_position"
  5593. }
  5594. },
  5595. {
  5596. "name": "drupal/page_manager",
  5597. "version": "4.0.0-rc2",
  5598. "source": {
  5599. "type": "git",
  5600. "url": "https://git.drupalcode.org/project/page_manager.git",
  5601. "reference": "8.x-4.0-rc2"
  5602. },
  5603. "dist": {
  5604. "type": "zip",
  5605. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  5606. "reference": "8.x-4.0-rc2",
  5607. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  5608. },
  5609. "require": {
  5610. "drupal/core": "^9.3 || ^10",
  5611. "drupal/ctools": "^3.11 || ^4.0"
  5612. },
  5613. "type": "drupal-module",
  5614. "extra": {
  5615. "drupal": {
  5616. "version": "8.x-4.0-rc2",
  5617. "datestamp": "1671210021",
  5618. "security-coverage": {
  5619. "status": "not-covered",
  5620. "message": "RC releases are not covered by Drupal security advisories."
  5621. }
  5622. },
  5623. "branch-alias": {
  5624. "dev-8.x-4.x": "4.x-dev"
  5625. }
  5626. },
  5627. "notification-url": "https://packages.drupal.org/8/downloads",
  5628. "license": [
  5629. "GPL-2.0-or-later"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Tim Plunkett",
  5634. "homepage": "https://www.drupal.org/u/tim.plunkett",
  5635. "role": "Maintainer"
  5636. },
  5637. {
  5638. "name": "EclipseGc",
  5639. "homepage": "https://www.drupal.org/user/61203"
  5640. },
  5641. {
  5642. "name": "ivnish",
  5643. "homepage": "https://www.drupal.org/user/3547706"
  5644. },
  5645. {
  5646. "name": "japerry",
  5647. "homepage": "https://www.drupal.org/user/45640"
  5648. },
  5649. {
  5650. "name": "joelpittet",
  5651. "homepage": "https://www.drupal.org/user/160302"
  5652. },
  5653. {
  5654. "name": "manuel.adan",
  5655. "homepage": "https://www.drupal.org/user/516420"
  5656. },
  5657. {
  5658. "name": "phenaproxima",
  5659. "homepage": "https://www.drupal.org/user/205645"
  5660. }
  5661. ],
  5662. "description": "Provides a way to place blocks on a custom page.",
  5663. "homepage": "https://www.drupal.org/project/page_manager",
  5664. "support": {
  5665. "source": "https://git.drupal.org/project/page_manager.git",
  5666. "issues": "https://www.drupal.org/project/issues/page_manager",
  5667. "irc": "irc://irc.freenode.org/drupal-contribute"
  5668. }
  5669. },
  5670. {
  5671. "name": "drupal/pagerer",
  5672. "version": "3.0.0",
  5673. "source": {
  5674. "type": "git",
  5675. "url": "https://git.drupalcode.org/project/pagerer.git",
  5676. "reference": "3.0.0"
  5677. },
  5678. "dist": {
  5679. "type": "zip",
  5680. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  5681. "reference": "3.0.0",
  5682. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  5683. },
  5684. "require": {
  5685. "drupal/core": "^10"
  5686. },
  5687. "type": "drupal-module",
  5688. "extra": {
  5689. "drupal": {
  5690. "version": "3.0.0",
  5691. "datestamp": "1663962586",
  5692. "security-coverage": {
  5693. "status": "covered",
  5694. "message": "Covered by Drupal's security advisory policy"
  5695. }
  5696. }
  5697. },
  5698. "notification-url": "https://packages.drupal.org/8/downloads",
  5699. "license": [
  5700. "GPL-2.0-or-later"
  5701. ],
  5702. "authors": [
  5703. {
  5704. "name": "mondrake",
  5705. "homepage": "https://www.drupal.org/user/1307444"
  5706. }
  5707. ],
  5708. "description": "Configurable pager styles.",
  5709. "homepage": "https://www.drupal.org/project/pagerer",
  5710. "support": {
  5711. "source": "https://git.drupalcode.org/project/pagerer"
  5712. }
  5713. },
  5714. {
  5715. "name": "drupal/panels",
  5716. "version": "4.7.0",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://git.drupalcode.org/project/panels.git",
  5720. "reference": "8.x-4.7"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  5725. "reference": "8.x-4.7",
  5726. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  5727. },
  5728. "require": {
  5729. "drupal/core": "^9.2 || ^10",
  5730. "drupal/ctools": "^3.12",
  5731. "drupal/jquery_ui_droppable": "^1.5"
  5732. },
  5733. "require-dev": {
  5734. "drupal/jquery_ui_droppable": "*",
  5735. "drupal/page_manager": "^4"
  5736. },
  5737. "type": "drupal-module",
  5738. "extra": {
  5739. "drupal": {
  5740. "version": "8.x-4.7",
  5741. "datestamp": "1668632919",
  5742. "security-coverage": {
  5743. "status": "covered",
  5744. "message": "Covered by Drupal's security advisory policy"
  5745. }
  5746. },
  5747. "branch-alias": {
  5748. "dev-8.x-4.x": "4.x-dev"
  5749. }
  5750. },
  5751. "notification-url": "https://packages.drupal.org/8/downloads",
  5752. "license": [
  5753. "GPL-2.0+"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Jakob Perry",
  5758. "homepage": "https://www.drupal.org/u/japerry"
  5759. },
  5760. {
  5761. "name": "Samuel Mortenson",
  5762. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  5763. },
  5764. {
  5765. "name": "See other contributors",
  5766. "homepage": "https://www.drupal.org/node/74958/committers"
  5767. },
  5768. {
  5769. "name": "joelpittet",
  5770. "homepage": "https://www.drupal.org/user/160302"
  5771. },
  5772. {
  5773. "name": "Letharion",
  5774. "homepage": "https://www.drupal.org/user/373603"
  5775. },
  5776. {
  5777. "name": "merlinofchaos",
  5778. "homepage": "https://www.drupal.org/user/26979"
  5779. },
  5780. {
  5781. "name": "neclimdul",
  5782. "homepage": "https://www.drupal.org/user/48673"
  5783. },
  5784. {
  5785. "name": "phenaproxima",
  5786. "homepage": "https://www.drupal.org/user/205645"
  5787. },
  5788. {
  5789. "name": "samuel.mortenson",
  5790. "homepage": "https://www.drupal.org/user/2582268"
  5791. }
  5792. ],
  5793. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  5794. "homepage": "https://www.drupal.org/project/panels",
  5795. "support": {
  5796. "source": "http://git.drupal.org/project/panels.git",
  5797. "issues": "https://www.drupal.org/project/issues/panels",
  5798. "irc": "irc://irc.freenode.org/drupal-scotch"
  5799. }
  5800. },
  5801. {
  5802. "name": "drupal/paragraphs",
  5803. "version": "1.16.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://git.drupalcode.org/project/paragraphs.git",
  5807. "reference": "8.x-1.16"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  5812. "reference": "8.x-1.16",
  5813. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  5814. },
  5815. "require": {
  5816. "drupal/core": "^9.3 || ^10",
  5817. "drupal/entity_reference_revisions": "~1.3"
  5818. },
  5819. "require-dev": {
  5820. "drupal/block_field": "1.x-dev",
  5821. "drupal/diff": "1.x-dev",
  5822. "drupal/entity_browser": "2.x-dev",
  5823. "drupal/entity_usage": "2.x-dev",
  5824. "drupal/field_group": "3.x-dev",
  5825. "drupal/inline_entity_form": "1.x-dev",
  5826. "drupal/paragraphs-paragraphs_library": "*",
  5827. "drupal/replicate": "1.x-dev",
  5828. "drupal/search_api": "1.x-dev",
  5829. "drupal/search_api_db": "*"
  5830. },
  5831. "suggest": {
  5832. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  5833. },
  5834. "type": "drupal-module",
  5835. "extra": {
  5836. "drupal": {
  5837. "version": "8.x-1.16",
  5838. "datestamp": "1694007797",
  5839. "security-coverage": {
  5840. "status": "covered",
  5841. "message": "Covered by Drupal's security advisory policy"
  5842. }
  5843. }
  5844. },
  5845. "notification-url": "https://packages.drupal.org/8/downloads",
  5846. "license": [
  5847. "GPL-2.0-or-later"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Berdir",
  5852. "homepage": "https://www.drupal.org/user/214652"
  5853. },
  5854. {
  5855. "name": "Frans",
  5856. "homepage": "https://www.drupal.org/user/514222"
  5857. },
  5858. {
  5859. "name": "jeroen.b",
  5860. "homepage": "https://www.drupal.org/user/1853532"
  5861. },
  5862. {
  5863. "name": "jstoller",
  5864. "homepage": "https://www.drupal.org/user/99012"
  5865. },
  5866. {
  5867. "name": "miro_dietiker",
  5868. "homepage": "https://www.drupal.org/user/227761"
  5869. },
  5870. {
  5871. "name": "Primsi",
  5872. "homepage": "https://www.drupal.org/user/282629"
  5873. }
  5874. ],
  5875. "description": "Enables the creation of Paragraphs entities.",
  5876. "homepage": "https://www.drupal.org/project/paragraphs",
  5877. "support": {
  5878. "source": "https://git.drupalcode.org/project/paragraphs"
  5879. }
  5880. },
  5881. {
  5882. "name": "drupal/path_alias_xt",
  5883. "version": "dev-1.x",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5887. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  5888. },
  5889. "require": {
  5890. "drupal/core": "^9.3 || ^10"
  5891. },
  5892. "type": "drupal-module",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-1.x": "1.x-dev"
  5896. },
  5897. "drupal": {
  5898. "version": "8.x-1.x-dev",
  5899. "datestamp": "1658166545",
  5900. "security-coverage": {
  5901. "status": "not-covered",
  5902. "message": "Dev releases are not covered by Drupal security advisories."
  5903. }
  5904. }
  5905. },
  5906. "notification-url": "https://packages.drupal.org/8/downloads",
  5907. "license": [
  5908. "GPL-2.0-or-later"
  5909. ],
  5910. "authors": [
  5911. {
  5912. "name": "adriancid",
  5913. "homepage": "https://www.drupal.org/user/1962106"
  5914. },
  5915. {
  5916. "name": "RdeBoer",
  5917. "homepage": "https://www.drupal.org/user/404007"
  5918. },
  5919. {
  5920. "name": "sdstyles",
  5921. "homepage": "https://www.drupal.org/user/1420228"
  5922. }
  5923. ],
  5924. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  5925. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5926. "support": {
  5927. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5928. }
  5929. },
  5930. {
  5931. "name": "drupal/pathauto",
  5932. "version": "1.12.0",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://git.drupalcode.org/project/pathauto.git",
  5936. "reference": "8.x-1.12"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  5941. "reference": "8.x-1.12",
  5942. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  5943. },
  5944. "require": {
  5945. "drupal/core": "^9.3 || ^10",
  5946. "drupal/ctools": "*",
  5947. "drupal/token": "*"
  5948. },
  5949. "suggest": {
  5950. "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."
  5951. },
  5952. "type": "drupal-module",
  5953. "extra": {
  5954. "drupal": {
  5955. "version": "8.x-1.12",
  5956. "datestamp": "1696776683",
  5957. "security-coverage": {
  5958. "status": "covered",
  5959. "message": "Covered by Drupal's security advisory policy"
  5960. }
  5961. },
  5962. "drush": {
  5963. "services": {
  5964. "drush.services.yml": "^9 || ^10"
  5965. }
  5966. }
  5967. },
  5968. "notification-url": "https://packages.drupal.org/8/downloads",
  5969. "license": [
  5970. "GPL-2.0-or-later"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Berdir",
  5975. "homepage": "https://www.drupal.org/user/214652"
  5976. },
  5977. {
  5978. "name": "Dave Reid",
  5979. "homepage": "https://www.drupal.org/user/53892"
  5980. },
  5981. {
  5982. "name": "Freso",
  5983. "homepage": "https://www.drupal.org/user/27504"
  5984. },
  5985. {
  5986. "name": "greggles",
  5987. "homepage": "https://www.drupal.org/user/36762"
  5988. }
  5989. ],
  5990. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5991. "homepage": "https://www.drupal.org/project/pathauto",
  5992. "support": {
  5993. "source": "https://cgit.drupalcode.org/pathauto",
  5994. "issues": "https://www.drupal.org/project/issues/pathauto",
  5995. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  5996. }
  5997. },
  5998. {
  5999. "name": "drupal/pathologic",
  6000. "version": "2.0.0-alpha1",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://git.drupalcode.org/project/pathologic.git",
  6004. "reference": "2.0.0-alpha1"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6009. "reference": "2.0.0-alpha1",
  6010. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6011. },
  6012. "require": {
  6013. "drupal/core": "^9 || ^10"
  6014. },
  6015. "type": "drupal-module",
  6016. "extra": {
  6017. "drupal": {
  6018. "version": "2.0.0-alpha1",
  6019. "datestamp": "1681263978",
  6020. "security-coverage": {
  6021. "status": "not-covered",
  6022. "message": "Alpha releases are not covered by Drupal security advisories."
  6023. }
  6024. }
  6025. },
  6026. "notification-url": "https://packages.drupal.org/8/downloads",
  6027. "license": [
  6028. "GPL-2.0+"
  6029. ],
  6030. "authors": [
  6031. {
  6032. "name": "Berdir",
  6033. "homepage": "https://www.drupal.org/user/214652"
  6034. },
  6035. {
  6036. "name": "dww",
  6037. "homepage": "https://www.drupal.org/user/46549"
  6038. },
  6039. {
  6040. "name": "Garrett Albright",
  6041. "homepage": "https://www.drupal.org/user/191212"
  6042. },
  6043. {
  6044. "name": "mark_fullmer",
  6045. "homepage": "https://www.drupal.org/user/2612816"
  6046. }
  6047. ],
  6048. "description": "Helps avoid broken links and incorrect paths in content.",
  6049. "homepage": "https://www.drupal.org/project/pathologic",
  6050. "support": {
  6051. "source": "https://git.drupalcode.org/project/pathologic"
  6052. }
  6053. },
  6054. {
  6055. "name": "drupal/persistent_login",
  6056. "version": "1.6.0",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6060. "reference": "8.x-1.6"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6065. "reference": "8.x-1.6",
  6066. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6067. },
  6068. "require": {
  6069. "drupal/core": "^9.2 || ^10"
  6070. },
  6071. "type": "drupal-module",
  6072. "extra": {
  6073. "drupal": {
  6074. "version": "8.x-1.6",
  6075. "datestamp": "1679547817",
  6076. "security-coverage": {
  6077. "status": "covered",
  6078. "message": "Covered by Drupal's security advisory policy"
  6079. }
  6080. }
  6081. },
  6082. "notification-url": "https://packages.drupal.org/8/downloads",
  6083. "license": [
  6084. "GPL-2.0-or-later"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "gapple",
  6089. "homepage": "https://www.drupal.org/user/490940"
  6090. }
  6091. ],
  6092. "description": "Provides a \"Remember Me\" feature on the login form.",
  6093. "homepage": "https://www.drupal.org/project/persistent_login",
  6094. "keywords": [
  6095. "Drupal"
  6096. ],
  6097. "support": {
  6098. "source": "https://git.drupalcode.org/project/persistent_login",
  6099. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6100. }
  6101. },
  6102. {
  6103. "name": "drupal/phone_number",
  6104. "version": "2.0.0-alpha5",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://git.drupalcode.org/project/phone_number.git",
  6108. "reference": "2.0.0-alpha5"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6113. "reference": "2.0.0-alpha5",
  6114. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6115. },
  6116. "require": {
  6117. "drupal/core": "^9.2 || ^10",
  6118. "giggsey/libphonenumber-for-php": "^8.0"
  6119. },
  6120. "type": "drupal-module",
  6121. "extra": {
  6122. "drupal": {
  6123. "version": "2.0.0-alpha5",
  6124. "datestamp": "1698159525",
  6125. "security-coverage": {
  6126. "status": "not-covered",
  6127. "message": "Alpha releases are not covered by Drupal security advisories."
  6128. }
  6129. }
  6130. },
  6131. "notification-url": "https://packages.drupal.org/8/downloads",
  6132. "license": [
  6133. "GPL-2.0+"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "Christopher Caldwell",
  6138. "homepage": "https://www.drupal.org/u/chrisolof",
  6139. "email": "chrisolof@gmail.com",
  6140. "role": "Maintainer"
  6141. },
  6142. {
  6143. "name": "nyariv",
  6144. "homepage": "https://www.drupal.org/user/2747789"
  6145. },
  6146. {
  6147. "name": "tim-diels",
  6148. "homepage": "https://www.drupal.org/user/2915097"
  6149. },
  6150. {
  6151. "name": "vaish",
  6152. "homepage": "https://www.drupal.org/user/92189"
  6153. }
  6154. ],
  6155. "description": "A validated phone number field.",
  6156. "homepage": "http://drupal.org/project/phone_number",
  6157. "support": {
  6158. "source": "https://git.drupalcode.org/project/phone_number"
  6159. }
  6160. },
  6161. {
  6162. "name": "drupal/profile",
  6163. "version": "1.7.0",
  6164. "source": {
  6165. "type": "git",
  6166. "url": "https://git.drupalcode.org/project/profile.git",
  6167. "reference": "8.x-1.7"
  6168. },
  6169. "dist": {
  6170. "type": "zip",
  6171. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6172. "reference": "8.x-1.7",
  6173. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6174. },
  6175. "require": {
  6176. "drupal/core": "^9 || ^10",
  6177. "drupal/entity": "^1.0"
  6178. },
  6179. "require-dev": {
  6180. "drupal/token": "^1.7"
  6181. },
  6182. "type": "drupal-module",
  6183. "extra": {
  6184. "drupal": {
  6185. "version": "8.x-1.7",
  6186. "datestamp": "1665131792",
  6187. "security-coverage": {
  6188. "status": "covered",
  6189. "message": "Covered by Drupal's security advisory policy"
  6190. }
  6191. }
  6192. },
  6193. "notification-url": "https://packages.drupal.org/8/downloads",
  6194. "license": [
  6195. "GPL-2.0-or-later"
  6196. ],
  6197. "authors": [
  6198. {
  6199. "name": "bojanz",
  6200. "homepage": "https://www.drupal.org/user/86106"
  6201. },
  6202. {
  6203. "name": "daggerhart",
  6204. "homepage": "https://www.drupal.org/user/167806"
  6205. },
  6206. {
  6207. "name": "fago",
  6208. "homepage": "https://www.drupal.org/user/16747"
  6209. },
  6210. {
  6211. "name": "jsacksick",
  6212. "homepage": "https://www.drupal.org/user/972218"
  6213. },
  6214. {
  6215. "name": "mglaman",
  6216. "homepage": "https://www.drupal.org/user/2416470"
  6217. },
  6218. {
  6219. "name": "pcambra",
  6220. "homepage": "https://www.drupal.org/user/122101"
  6221. }
  6222. ],
  6223. "description": "Provides configurable user profiles.",
  6224. "homepage": "https://drupal.org/project/profile",
  6225. "support": {
  6226. "source": "https://git.drupalcode.org/project/profile"
  6227. }
  6228. },
  6229. {
  6230. "name": "drupal/redirect",
  6231. "version": "1.9.0",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://git.drupalcode.org/project/redirect.git",
  6235. "reference": "8.x-1.9"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6240. "reference": "8.x-1.9",
  6241. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6242. },
  6243. "require": {
  6244. "drupal/core": "^9.2 || ^10"
  6245. },
  6246. "type": "drupal-module",
  6247. "extra": {
  6248. "drupal": {
  6249. "version": "8.x-1.9",
  6250. "datestamp": "1693393506",
  6251. "security-coverage": {
  6252. "status": "covered",
  6253. "message": "Covered by Drupal's security advisory policy"
  6254. }
  6255. }
  6256. },
  6257. "notification-url": "https://packages.drupal.org/8/downloads",
  6258. "license": [
  6259. "GPL-2.0-or-later"
  6260. ],
  6261. "authors": [
  6262. {
  6263. "name": "Berdir",
  6264. "homepage": "https://www.drupal.org/user/214652"
  6265. },
  6266. {
  6267. "name": "Dave Reid",
  6268. "homepage": "https://www.drupal.org/user/53892"
  6269. },
  6270. {
  6271. "name": "Kristen Pol",
  6272. "homepage": "https://www.drupal.org/user/8389"
  6273. },
  6274. {
  6275. "name": "pifagor",
  6276. "homepage": "https://www.drupal.org/user/2375692"
  6277. }
  6278. ],
  6279. "description": "Allows users to redirect from old URLs to new URLs.",
  6280. "homepage": "https://www.drupal.org/project/redirect",
  6281. "support": {
  6282. "source": "https://git.drupalcode.org/project/redirect"
  6283. }
  6284. },
  6285. {
  6286. "name": "drupal/redis",
  6287. "version": "1.7.0",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://git.drupalcode.org/project/redis.git",
  6291. "reference": "8.x-1.7"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6296. "reference": "8.x-1.7",
  6297. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6298. },
  6299. "require": {
  6300. "drupal/core": "^9.3 || ^10"
  6301. },
  6302. "suggest": {
  6303. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6304. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6305. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6306. },
  6307. "type": "drupal-module",
  6308. "extra": {
  6309. "drupal": {
  6310. "version": "8.x-1.7",
  6311. "datestamp": "1686175620",
  6312. "security-coverage": {
  6313. "status": "covered",
  6314. "message": "Covered by Drupal's security advisory policy"
  6315. }
  6316. }
  6317. },
  6318. "autoload": {
  6319. "psr-4": {
  6320. "Drupal\\redis\\": "src"
  6321. }
  6322. },
  6323. "notification-url": "https://packages.drupal.org/8/downloads",
  6324. "license": [
  6325. "GPL-2.0-or-later"
  6326. ],
  6327. "authors": [
  6328. {
  6329. "name": "Berdir",
  6330. "homepage": "https://www.drupal.org/user/214652"
  6331. },
  6332. {
  6333. "name": "greg.1.anderson",
  6334. "homepage": "https://www.drupal.org/user/438598"
  6335. },
  6336. {
  6337. "name": "kporras07",
  6338. "homepage": "https://www.drupal.org/user/1349780"
  6339. },
  6340. {
  6341. "name": "pounard",
  6342. "homepage": "https://www.drupal.org/user/240164"
  6343. }
  6344. ],
  6345. "description": "Integration of Drupal with the Redis key-value store.",
  6346. "homepage": "https://www.drupal.org/project/redis",
  6347. "support": {
  6348. "source": "https://git.drupalcode.org/project/redis"
  6349. }
  6350. },
  6351. {
  6352. "name": "drupal/search_api",
  6353. "version": "1.30.0",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://git.drupalcode.org/project/search_api.git",
  6357. "reference": "8.x-1.30"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  6362. "reference": "8.x-1.30",
  6363. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  6364. },
  6365. "require": {
  6366. "drupal/core": "^9.3 || ^10.0"
  6367. },
  6368. "conflict": {
  6369. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6370. },
  6371. "require-dev": {
  6372. "drupal/language_fallback_fix": "@dev",
  6373. "drupal/search_api_autocomplete": "@dev",
  6374. "drupal/search_api_db": "*"
  6375. },
  6376. "suggest": {
  6377. "drupal/facets": "Adds the ability to create faceted searches.",
  6378. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6379. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6380. },
  6381. "type": "drupal-module",
  6382. "extra": {
  6383. "drupal": {
  6384. "version": "8.x-1.30",
  6385. "datestamp": "1697366291",
  6386. "security-coverage": {
  6387. "status": "covered",
  6388. "message": "Covered by Drupal's security advisory policy"
  6389. }
  6390. },
  6391. "drush": {
  6392. "services": {
  6393. "drush.services.yml": "^9 || ^10 || ^11"
  6394. }
  6395. }
  6396. },
  6397. "notification-url": "https://packages.drupal.org/8/downloads",
  6398. "license": [
  6399. "GPL-2.0-or-later"
  6400. ],
  6401. "authors": [
  6402. {
  6403. "name": "Thomas Seidl",
  6404. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6405. },
  6406. {
  6407. "name": "Nick Veenhof",
  6408. "homepage": "https://www.drupal.org/u/nick_vh"
  6409. },
  6410. {
  6411. "name": "See other contributors",
  6412. "homepage": "https://www.drupal.org/node/790418/committers"
  6413. }
  6414. ],
  6415. "description": "Provides a generic framework for modules offering search capabilities.",
  6416. "homepage": "https://www.drupal.org/project/search_api",
  6417. "support": {
  6418. "source": "https://git.drupalcode.org/project/search_api",
  6419. "issues": "https://www.drupal.org/project/issues/search_api",
  6420. "irc": "irc://irc.freenode.org/drupal-search-api"
  6421. }
  6422. },
  6423. {
  6424. "name": "drupal/search_api_db",
  6425. "version": "1.30.0",
  6426. "require": {
  6427. "drupal/core": "^9.2 || ^10.0",
  6428. "drupal/search_api": "*"
  6429. },
  6430. "type": "metapackage",
  6431. "extra": {
  6432. "drupal": {
  6433. "version": "8.x-1.30",
  6434. "datestamp": "1697366291",
  6435. "security-coverage": {
  6436. "status": "covered",
  6437. "message": "Covered by Drupal's security advisory policy"
  6438. }
  6439. }
  6440. },
  6441. "notification-url": "https://packages.drupal.org/8/downloads",
  6442. "license": [
  6443. "GPL-2.0-or-later"
  6444. ],
  6445. "authors": [
  6446. {
  6447. "name": "borisson_",
  6448. "homepage": "https://www.drupal.org/user/2393360"
  6449. },
  6450. {
  6451. "name": "drunken monkey",
  6452. "homepage": "https://www.drupal.org/user/205582"
  6453. },
  6454. {
  6455. "name": "Nick_vh",
  6456. "homepage": "https://www.drupal.org/user/122682"
  6457. }
  6458. ],
  6459. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6460. "homepage": "https://www.drupal.org/project/search_api",
  6461. "support": {
  6462. "source": "https://git.drupalcode.org/project/search_api"
  6463. }
  6464. },
  6465. {
  6466. "name": "drupal/seven",
  6467. "version": "1.0.0",
  6468. "source": {
  6469. "type": "git",
  6470. "url": "https://git.drupalcode.org/project/seven.git",
  6471. "reference": "1.0.0"
  6472. },
  6473. "dist": {
  6474. "type": "zip",
  6475. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6476. "reference": "1.0.0",
  6477. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6478. },
  6479. "require": {
  6480. "drupal/core": "^9 || ^10"
  6481. },
  6482. "type": "drupal-theme",
  6483. "extra": {
  6484. "drupal": {
  6485. "version": "1.0.0",
  6486. "datestamp": "1683652106",
  6487. "security-coverage": {
  6488. "status": "covered",
  6489. "message": "Covered by Drupal's security advisory policy"
  6490. }
  6491. }
  6492. },
  6493. "notification-url": "https://packages.drupal.org/8/downloads",
  6494. "license": [
  6495. "GPL-2.0-or-later"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "bnjmnm",
  6500. "homepage": "https://www.drupal.org/user/2369194"
  6501. },
  6502. {
  6503. "name": "lauriii",
  6504. "homepage": "https://www.drupal.org/user/1078742"
  6505. },
  6506. {
  6507. "name": "mcrittenden",
  6508. "homepage": "https://www.drupal.org/user/420631"
  6509. },
  6510. {
  6511. "name": "mrfelton",
  6512. "homepage": "https://www.drupal.org/user/305669"
  6513. },
  6514. {
  6515. "name": "TravisCarden",
  6516. "homepage": "https://www.drupal.org/user/236758"
  6517. }
  6518. ],
  6519. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6520. "homepage": "https://www.drupal.org/project/seven",
  6521. "support": {
  6522. "source": "https://git.drupalcode.org/project/seven"
  6523. }
  6524. },
  6525. {
  6526. "name": "drupal/smart_trim",
  6527. "version": "2.1.0",
  6528. "source": {
  6529. "type": "git",
  6530. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6531. "reference": "2.1.0"
  6532. },
  6533. "dist": {
  6534. "type": "zip",
  6535. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  6536. "reference": "2.1.0",
  6537. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  6538. },
  6539. "require": {
  6540. "drupal/core": "^8 || ^9 || ^10",
  6541. "drupal/token": "^1.0",
  6542. "php": ">=7.4.0"
  6543. },
  6544. "require-dev": {
  6545. "drupal/token_filter": "^2.0"
  6546. },
  6547. "type": "drupal-module",
  6548. "extra": {
  6549. "drupal": {
  6550. "version": "2.1.0",
  6551. "datestamp": "1686152417",
  6552. "security-coverage": {
  6553. "status": "covered",
  6554. "message": "Covered by Drupal's security advisory policy"
  6555. }
  6556. }
  6557. },
  6558. "notification-url": "https://packages.drupal.org/8/downloads",
  6559. "license": [
  6560. "GPL-2.0-or-later"
  6561. ],
  6562. "authors": [
  6563. {
  6564. "name": "Mark Casias (markie)",
  6565. "homepage": "https://www.drupal.org/u/markie",
  6566. "role": "Maintainer"
  6567. },
  6568. {
  6569. "name": "AmyJune Hineline (volkswagenchick)",
  6570. "homepage": "https://www.drupal.org/u/volkswagenchick",
  6571. "role": "Maintainer"
  6572. },
  6573. {
  6574. "name": "Michael Anello (ultimike)",
  6575. "homepage": "https://www.drupal.org/u/ultimike",
  6576. "role": "Maintainer"
  6577. }
  6578. ],
  6579. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6580. "homepage": "https://drupal.org/project/smart_trim",
  6581. "support": {
  6582. "source": "https://git.drupalcode.org/project/smart_trim",
  6583. "issues": "https://drupal.org/project/issues/smart_trim"
  6584. }
  6585. },
  6586. {
  6587. "name": "drupal/smtp",
  6588. "version": "1.2.0",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://git.drupalcode.org/project/smtp.git",
  6592. "reference": "8.x-1.2"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  6597. "reference": "8.x-1.2",
  6598. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  6599. },
  6600. "require": {
  6601. "drupal/core": ">=8.9 <11",
  6602. "phpmailer/phpmailer": "^6.1.7"
  6603. },
  6604. "suggest": {
  6605. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6606. },
  6607. "type": "drupal-module",
  6608. "extra": {
  6609. "drupal": {
  6610. "version": "8.x-1.2",
  6611. "datestamp": "1667416337",
  6612. "security-coverage": {
  6613. "status": "covered",
  6614. "message": "Covered by Drupal's security advisory policy"
  6615. }
  6616. },
  6617. "branch-alias": {
  6618. "dev-8.x-1.x": "1.x-dev"
  6619. }
  6620. },
  6621. "notification-url": "https://packages.drupal.org/8/downloads",
  6622. "license": [
  6623. "GPL-2.0-or-later"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "japerry",
  6628. "homepage": "https://www.drupal.org/user/45640"
  6629. },
  6630. {
  6631. "name": "joseph.olstad",
  6632. "homepage": "https://www.drupal.org/user/1321830"
  6633. },
  6634. {
  6635. "name": "josesanmartin",
  6636. "homepage": "https://www.drupal.org/user/72012"
  6637. },
  6638. {
  6639. "name": "LukeLast",
  6640. "homepage": "https://www.drupal.org/user/30151"
  6641. },
  6642. {
  6643. "name": "oadaeh",
  6644. "homepage": "https://www.drupal.org/user/4649"
  6645. },
  6646. {
  6647. "name": "sadashiv",
  6648. "homepage": "https://www.drupal.org/user/1773304"
  6649. },
  6650. {
  6651. "name": "wundo",
  6652. "homepage": "https://www.drupal.org/user/25523"
  6653. },
  6654. {
  6655. "name": "yettyn",
  6656. "homepage": "https://www.drupal.org/user/93281"
  6657. }
  6658. ],
  6659. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6660. "homepage": "https://www.drupal.org/project/smtp",
  6661. "support": {
  6662. "source": "https://git.drupalcode.org/project/smtp",
  6663. "issues": "https://www.drupal.org/project/issues/smtp"
  6664. }
  6665. },
  6666. {
  6667. "name": "drupal/sophron",
  6668. "version": "2.0.1",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://git.drupalcode.org/project/sophron.git",
  6672. "reference": "2.0.1"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  6677. "reference": "2.0.1",
  6678. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  6679. },
  6680. "require": {
  6681. "drupal/core": "^10",
  6682. "fileeye/mimemap": "^2.0.1"
  6683. },
  6684. "type": "drupal-module",
  6685. "extra": {
  6686. "drupal": {
  6687. "version": "2.0.1",
  6688. "datestamp": "1676319965",
  6689. "security-coverage": {
  6690. "status": "covered",
  6691. "message": "Covered by Drupal's security advisory policy"
  6692. }
  6693. }
  6694. },
  6695. "autoload": {
  6696. "psr-4": {
  6697. "Drupal\\sophron\\": "src/"
  6698. }
  6699. },
  6700. "notification-url": "https://packages.drupal.org/8/downloads",
  6701. "license": [
  6702. "GPL-2.0-or-later"
  6703. ],
  6704. "authors": [
  6705. {
  6706. "name": "mondrake",
  6707. "homepage": "https://www.drupal.org/user/1307444"
  6708. }
  6709. ],
  6710. "description": "Provides an extensive MIME types management API",
  6711. "homepage": "https://www.drupal.org/project/sophron",
  6712. "support": {
  6713. "source": "https://git.drupalcode.org/project/sophron"
  6714. }
  6715. },
  6716. {
  6717. "name": "drupal/synonyms",
  6718. "version": "2.1.2",
  6719. "source": {
  6720. "type": "git",
  6721. "url": "https://git.drupalcode.org/project/synonyms.git",
  6722. "reference": "2.1.2"
  6723. },
  6724. "dist": {
  6725. "type": "zip",
  6726. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  6727. "reference": "2.1.2",
  6728. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  6729. },
  6730. "require": {
  6731. "drupal/core": "^9 || ^10"
  6732. },
  6733. "require-dev": {
  6734. "drupal/synonyms_list_field": "*"
  6735. },
  6736. "type": "drupal-module",
  6737. "extra": {
  6738. "drupal": {
  6739. "version": "2.1.2",
  6740. "datestamp": "1665785027",
  6741. "security-coverage": {
  6742. "status": "covered",
  6743. "message": "Covered by Drupal's security advisory policy"
  6744. }
  6745. }
  6746. },
  6747. "notification-url": "https://packages.drupal.org/8/downloads",
  6748. "license": [
  6749. "GPL-2.0-or-later"
  6750. ],
  6751. "authors": [
  6752. {
  6753. "name": "Bojan Zivanovic",
  6754. "homepage": "https://www.drupal.org/u/bojanz",
  6755. "role": "Author and D5, D6 and D7 versions developer."
  6756. },
  6757. {
  6758. "name": "Alex Trosenko",
  6759. "homepage": "https://www.drupal.org/u/bucefal91",
  6760. "role": "D7 and D8 versions developer."
  6761. },
  6762. {
  6763. "name": "Duro Arezina",
  6764. "homepage": "https://www.drupal.org/u/devad",
  6765. "role": "D8, D9 and D10 versions maintenance"
  6766. },
  6767. {
  6768. "name": "See other contributors",
  6769. "homepage": "https://www.drupal.org/node/148775/committers"
  6770. }
  6771. ],
  6772. "description": "Provides synonyms feature for all entities.",
  6773. "homepage": "https://www.drupal.org/project/synonyms",
  6774. "support": {
  6775. "source": "https://git.drupalcode.org/project/synonyms",
  6776. "issues": "https://www.drupal.org/project/issues/synonyms"
  6777. }
  6778. },
  6779. {
  6780. "name": "drupal/token",
  6781. "version": "1.13.0",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://git.drupalcode.org/project/token.git",
  6785. "reference": "8.x-1.13"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6790. "reference": "8.x-1.13",
  6791. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6792. },
  6793. "require": {
  6794. "drupal/core": "^9.2 || ^10"
  6795. },
  6796. "type": "drupal-module",
  6797. "extra": {
  6798. "drupal": {
  6799. "version": "8.x-1.13",
  6800. "datestamp": "1697885927",
  6801. "security-coverage": {
  6802. "status": "covered",
  6803. "message": "Covered by Drupal's security advisory policy"
  6804. }
  6805. },
  6806. "drush": {
  6807. "services": {
  6808. "drush.services.yml": ">=9"
  6809. }
  6810. }
  6811. },
  6812. "notification-url": "https://packages.drupal.org/8/downloads",
  6813. "license": [
  6814. "GPL-2.0-or-later"
  6815. ],
  6816. "authors": [
  6817. {
  6818. "name": "Berdir",
  6819. "homepage": "https://www.drupal.org/user/214652"
  6820. },
  6821. {
  6822. "name": "Dave Reid",
  6823. "homepage": "https://www.drupal.org/user/53892"
  6824. },
  6825. {
  6826. "name": "eaton",
  6827. "homepage": "https://www.drupal.org/user/16496"
  6828. },
  6829. {
  6830. "name": "fago",
  6831. "homepage": "https://www.drupal.org/user/16747"
  6832. },
  6833. {
  6834. "name": "greggles",
  6835. "homepage": "https://www.drupal.org/user/36762"
  6836. },
  6837. {
  6838. "name": "mikeryan",
  6839. "homepage": "https://www.drupal.org/user/4420"
  6840. }
  6841. ],
  6842. "description": "Provides a user interface for the Token API, some missing core tokens.",
  6843. "homepage": "https://www.drupal.org/project/token",
  6844. "support": {
  6845. "source": "https://git.drupalcode.org/project/token"
  6846. }
  6847. },
  6848. {
  6849. "name": "drupal/translation_views",
  6850. "version": "1.0.0-alpha11",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://git.drupalcode.org/project/translation_views.git",
  6854. "reference": "8.x-1.0-alpha11"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  6859. "reference": "8.x-1.0-alpha11",
  6860. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  6861. },
  6862. "require": {
  6863. "drupal/core": "^8.8 || ^9 || ^10"
  6864. },
  6865. "require-dev": {
  6866. "drupal/translators_content": "^1.0@alpha"
  6867. },
  6868. "type": "drupal-module",
  6869. "extra": {
  6870. "drupal": {
  6871. "version": "8.x-1.0-alpha11",
  6872. "datestamp": "1679660668",
  6873. "security-coverage": {
  6874. "status": "not-covered",
  6875. "message": "Project has not opted into security advisory coverage!"
  6876. }
  6877. }
  6878. },
  6879. "notification-url": "https://packages.drupal.org/8/downloads",
  6880. "license": [
  6881. "GPL-2.0-or-later"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "matsbla",
  6886. "homepage": "https://www.drupal.org/user/2325394"
  6887. },
  6888. {
  6889. "name": "vlad.dancer",
  6890. "homepage": "https://www.drupal.org/user/903844"
  6891. }
  6892. ],
  6893. "description": "Create customized lists and queries of translations from your database.",
  6894. "homepage": "https://www.drupal.org/project/translation_views",
  6895. "support": {
  6896. "source": "https://git.drupalcode.org/project/translation_views"
  6897. }
  6898. },
  6899. {
  6900. "name": "drupal/ultimate_cron",
  6901. "version": "2.0.0-alpha6",
  6902. "source": {
  6903. "type": "git",
  6904. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  6905. "reference": "8.x-2.0-alpha6"
  6906. },
  6907. "dist": {
  6908. "type": "zip",
  6909. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  6910. "reference": "8.x-2.0-alpha6",
  6911. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  6912. },
  6913. "require": {
  6914. "drupal/core": "^9 || ^10"
  6915. },
  6916. "type": "drupal-module",
  6917. "extra": {
  6918. "drupal": {
  6919. "version": "8.x-2.0-alpha6",
  6920. "datestamp": "1666471448",
  6921. "security-coverage": {
  6922. "status": "not-covered",
  6923. "message": "Alpha releases are not covered by Drupal security advisories."
  6924. }
  6925. },
  6926. "drush": {
  6927. "services": {
  6928. "drush.services.yml": "^9 || ^10 || ^11"
  6929. }
  6930. }
  6931. },
  6932. "notification-url": "https://packages.drupal.org/8/downloads",
  6933. "license": [
  6934. "GPL-2.0+"
  6935. ],
  6936. "authors": [
  6937. {
  6938. "name": "arnested",
  6939. "homepage": "https://www.drupal.org/user/245635"
  6940. },
  6941. {
  6942. "name": "Berdir",
  6943. "homepage": "https://www.drupal.org/user/214652"
  6944. },
  6945. {
  6946. "name": "Dane Powell",
  6947. "homepage": "https://www.drupal.org/user/339326"
  6948. },
  6949. {
  6950. "name": "gielfeldt",
  6951. "homepage": "https://www.drupal.org/user/366993"
  6952. },
  6953. {
  6954. "name": "miro_dietiker",
  6955. "homepage": "https://www.drupal.org/user/227761"
  6956. },
  6957. {
  6958. "name": "Primsi",
  6959. "homepage": "https://www.drupal.org/user/282629"
  6960. }
  6961. ],
  6962. "description": "Ultimate cron",
  6963. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6964. "support": {
  6965. "source": "https://git.drupalcode.org/project/ultimate_cron"
  6966. }
  6967. },
  6968. {
  6969. "name": "drupal/video_embed_field",
  6970. "version": "2.5.0",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  6974. "reference": "8.x-2.5"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  6979. "reference": "8.x-2.5",
  6980. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  6981. },
  6982. "require": {
  6983. "drupal/core": "^9.2 || ^10"
  6984. },
  6985. "require-dev": {
  6986. "drupal/ckeditor": "^1",
  6987. "drupal/colorbox": "^2",
  6988. "drupal/video_embed_media": "*"
  6989. },
  6990. "type": "drupal-module",
  6991. "extra": {
  6992. "drupal": {
  6993. "version": "8.x-2.5",
  6994. "datestamp": "1671413311",
  6995. "security-coverage": {
  6996. "status": "covered",
  6997. "message": "Covered by Drupal's security advisory policy"
  6998. }
  6999. }
  7000. },
  7001. "notification-url": "https://packages.drupal.org/8/downloads",
  7002. "license": [
  7003. "GPL-2.0-or-later"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "abhinesh",
  7008. "homepage": "https://www.drupal.org/user/3645979"
  7009. },
  7010. {
  7011. "name": "jec006",
  7012. "homepage": "https://www.drupal.org/user/855980"
  7013. },
  7014. {
  7015. "name": "plopesc",
  7016. "homepage": "https://www.drupal.org/user/282415"
  7017. },
  7018. {
  7019. "name": "Sam152",
  7020. "homepage": "https://www.drupal.org/user/1485048"
  7021. }
  7022. ],
  7023. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7024. "homepage": "https://www.drupal.org/project/video_embed_field",
  7025. "support": {
  7026. "source": "https://git.drupalcode.org/project/video_embed_field"
  7027. }
  7028. },
  7029. {
  7030. "name": "drupal/views_bulk_edit",
  7031. "version": "2.9.0",
  7032. "source": {
  7033. "type": "git",
  7034. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7035. "reference": "8.x-2.9"
  7036. },
  7037. "dist": {
  7038. "type": "zip",
  7039. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  7040. "reference": "8.x-2.9",
  7041. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  7042. },
  7043. "require": {
  7044. "drupal/core": "^9.4 || ^10"
  7045. },
  7046. "require-dev": {
  7047. "drupal/views_bulk_operations": "~4.2.4"
  7048. },
  7049. "suggest": {
  7050. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7051. },
  7052. "type": "drupal-module",
  7053. "extra": {
  7054. "drupal": {
  7055. "version": "8.x-2.9",
  7056. "datestamp": "1690222256",
  7057. "security-coverage": {
  7058. "status": "covered",
  7059. "message": "Covered by Drupal's security advisory policy"
  7060. }
  7061. }
  7062. },
  7063. "notification-url": "https://packages.drupal.org/8/downloads",
  7064. "license": [
  7065. "GPL-2.0+"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "Marcin Grabias",
  7070. "homepage": "https://www.drupal.org/u/graber"
  7071. },
  7072. {
  7073. "name": "Graber",
  7074. "homepage": "https://www.drupal.org/user/1599440"
  7075. },
  7076. {
  7077. "name": "joseph.olstad",
  7078. "homepage": "https://www.drupal.org/user/1321830"
  7079. }
  7080. ],
  7081. "description": "Allows bulk edition of entity field values.",
  7082. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7083. "support": {
  7084. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7085. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7086. }
  7087. },
  7088. {
  7089. "name": "drupal/views_bulk_operations",
  7090. "version": "4.2.5",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7094. "reference": "4.2.5"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  7099. "reference": "4.2.5",
  7100. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  7101. },
  7102. "require": {
  7103. "drupal/core": "^9.4 || ^10",
  7104. "php": ">=7.4.0"
  7105. },
  7106. "require-dev": {
  7107. "drush/drush": "^11"
  7108. },
  7109. "suggest": {
  7110. "drush/drush": "^10 || ^11"
  7111. },
  7112. "type": "drupal-module",
  7113. "extra": {
  7114. "drupal": {
  7115. "version": "4.2.5",
  7116. "datestamp": "1691066184",
  7117. "security-coverage": {
  7118. "status": "covered",
  7119. "message": "Covered by Drupal's security advisory policy"
  7120. }
  7121. },
  7122. "drush": {
  7123. "services": {
  7124. "drush.services.yml": "^10 || ^11"
  7125. }
  7126. }
  7127. },
  7128. "notification-url": "https://packages.drupal.org/8/downloads",
  7129. "license": [
  7130. "GPL-2.0-or-later"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Marcin Grabias",
  7135. "homepage": "https://www.drupal.org/u/graber"
  7136. },
  7137. {
  7138. "name": "Graber",
  7139. "homepage": "https://www.drupal.org/user/1599440"
  7140. },
  7141. {
  7142. "name": "joelpittet",
  7143. "homepage": "https://www.drupal.org/user/160302"
  7144. }
  7145. ],
  7146. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7147. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7148. "support": {
  7149. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7150. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7151. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7152. }
  7153. },
  7154. {
  7155. "name": "drupal/webform",
  7156. "version": "6.2.0",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://git.drupalcode.org/project/webform.git",
  7160. "reference": "6.2.0"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  7165. "reference": "6.2.0",
  7166. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  7167. },
  7168. "require": {
  7169. "drupal/core": "^9.4 || ^10",
  7170. "php": ">=8.1"
  7171. },
  7172. "require-dev": {
  7173. "drupal/address": "1.x-dev",
  7174. "drupal/bootstrap": "3.x-dev",
  7175. "drupal/captcha": "^1 || ^2",
  7176. "drupal/chosen": "3.0.x-dev",
  7177. "drupal/ckeditor": "1.0.x-dev",
  7178. "drupal/clientside_validation": "^3 || ^4",
  7179. "drupal/clientside_validation_jquery": "*",
  7180. "drupal/devel": "5.x-dev",
  7181. "drupal/entity": "1.x-dev",
  7182. "drupal/entity_print": "2.x-dev",
  7183. "drupal/group": "1.x-dev",
  7184. "drupal/hal": "1 - 2",
  7185. "drupal/jquery_ui": "1.x-dev",
  7186. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7187. "drupal/jquery_ui_datepicker": "2.x-dev",
  7188. "drupal/mailsystem": "4.x-dev",
  7189. "drupal/metatag": "1.x-dev",
  7190. "drupal/paragraphs": "1.x-dev",
  7191. "drupal/select2": "1.x-dev",
  7192. "drupal/smtp": "1.x-dev",
  7193. "drupal/styleguide": "^1 || ^2",
  7194. "drupal/telephone_validation": "2.x-dev",
  7195. "drupal/token": "1.x-dev",
  7196. "drupal/variationcache": "1.x-dev",
  7197. "drupal/webform_access": "*",
  7198. "drupal/webform_attachment": "*",
  7199. "drupal/webform_clientside_validation": "*",
  7200. "drupal/webform_devel": "*",
  7201. "drupal/webform_entity_print": "*",
  7202. "drupal/webform_node": "*",
  7203. "drupal/webform_options_limit": "*",
  7204. "drupal/webform_scheduled_email": "*",
  7205. "drupal/webform_share": "*",
  7206. "drupal/webform_ui": "*"
  7207. },
  7208. "suggest": {
  7209. "drupal/jquery_ui_checkboxradio": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
  7210. "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
  7211. },
  7212. "type": "drupal-module",
  7213. "extra": {
  7214. "drupal": {
  7215. "version": "6.2.0",
  7216. "datestamp": "1698674300",
  7217. "security-coverage": {
  7218. "status": "covered",
  7219. "message": "Covered by Drupal's security advisory policy"
  7220. }
  7221. },
  7222. "drush": {
  7223. "services": {
  7224. "drush.services.yml": ">=9"
  7225. }
  7226. }
  7227. },
  7228. "notification-url": "https://packages.drupal.org/8/downloads",
  7229. "license": [
  7230. "GPL-2.0-or-later"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Jacob Rockowitz (jrockowitz)",
  7235. "homepage": "https://www.drupal.org/u/jrockowitz",
  7236. "role": "Maintainer"
  7237. },
  7238. {
  7239. "name": "Contributors",
  7240. "homepage": "https://www.drupal.org/node/7404/committers",
  7241. "role": "Contributor"
  7242. },
  7243. {
  7244. "name": "Liam Morland",
  7245. "homepage": "https://www.drupal.org/user/493050"
  7246. },
  7247. {
  7248. "name": "quicksketch",
  7249. "homepage": "https://www.drupal.org/user/35821"
  7250. },
  7251. {
  7252. "name": "torotil",
  7253. "homepage": "https://www.drupal.org/user/865256"
  7254. }
  7255. ],
  7256. "description": "Enables the creation of webforms and questionnaires.",
  7257. "homepage": "https://drupal.org/project/webform",
  7258. "support": {
  7259. "source": "https://git.drupalcode.org/project/webform",
  7260. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7261. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7262. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  7263. }
  7264. },
  7265. {
  7266. "name": "drush/drush",
  7267. "version": "11.6.0",
  7268. "source": {
  7269. "type": "git",
  7270. "url": "https://github.com/drush-ops/drush.git",
  7271. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  7272. },
  7273. "dist": {
  7274. "type": "zip",
  7275. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7276. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7277. "shasum": ""
  7278. },
  7279. "require": {
  7280. "chi-teck/drupal-code-generator": "^2.4",
  7281. "composer/semver": "^1.4 || ^3",
  7282. "consolidation/annotated-command": "^4.8.2",
  7283. "consolidation/config": "^2",
  7284. "consolidation/filter-via-dot-access-data": "^2",
  7285. "consolidation/robo": "^3.0.9 || ^4.0.1",
  7286. "consolidation/site-alias": "^3.1.6 || ^4",
  7287. "consolidation/site-process": "^4.1.3 || ^5",
  7288. "enlightn/security-checker": "^1",
  7289. "ext-dom": "*",
  7290. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7291. "league/container": "^3.4 || ^4",
  7292. "php": ">=7.4",
  7293. "psy/psysh": "~0.11",
  7294. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  7295. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  7296. "symfony/finder": "^4.0 || ^5 || ^6",
  7297. "symfony/polyfill-php80": "^1.23",
  7298. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  7299. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  7300. "webflo/drupal-finder": "^1.2"
  7301. },
  7302. "conflict": {
  7303. "drupal/core": "< 9.2",
  7304. "drupal/migrate_run": "*",
  7305. "drupal/migrate_tools": "<= 5"
  7306. },
  7307. "require-dev": {
  7308. "composer/installers": "^1.7",
  7309. "cweagans/composer-patches": "~1.0",
  7310. "david-garcia/phpwhois": "4.3.0",
  7311. "drupal/core-recommended": "^9 || ^10",
  7312. "drupal/semver_example": "2.3.0",
  7313. "phpunit/phpunit": ">=7.5.20",
  7314. "rector/rector": "^0.12",
  7315. "squizlabs/php_codesniffer": "^3.6",
  7316. "vlucas/phpdotenv": "^2.4",
  7317. "yoast/phpunit-polyfills": "^0.2.0"
  7318. },
  7319. "bin": [
  7320. "drush"
  7321. ],
  7322. "type": "library",
  7323. "extra": {
  7324. "installer-paths": {
  7325. "sut/core": [
  7326. "type:drupal-core"
  7327. ],
  7328. "sut/libraries/{$name}": [
  7329. "type:drupal-library"
  7330. ],
  7331. "sut/modules/unish/{$name}": [
  7332. "drupal/devel"
  7333. ],
  7334. "sut/themes/unish/{$name}": [
  7335. "drupal/empty_theme"
  7336. ],
  7337. "sut/modules/contrib/{$name}": [
  7338. "type:drupal-module"
  7339. ],
  7340. "sut/profiles/contrib/{$name}": [
  7341. "type:drupal-profile"
  7342. ],
  7343. "sut/themes/contrib/{$name}": [
  7344. "type:drupal-theme"
  7345. ],
  7346. "sut/drush/contrib/{$name}": [
  7347. "type:drupal-drush"
  7348. ]
  7349. }
  7350. },
  7351. "autoload": {
  7352. "psr-4": {
  7353. "Drush\\": "src/"
  7354. }
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "GPL-2.0-or-later"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Moshe Weitzman",
  7363. "email": "weitzman@tejasa.com"
  7364. },
  7365. {
  7366. "name": "Owen Barton",
  7367. "email": "drupal@owenbarton.com"
  7368. },
  7369. {
  7370. "name": "Greg Anderson",
  7371. "email": "greg.1.anderson@greenknowe.org"
  7372. },
  7373. {
  7374. "name": "Jonathan Araña Cruz",
  7375. "email": "jonhattan@faita.net"
  7376. },
  7377. {
  7378. "name": "Jonathan Hedstrom",
  7379. "email": "jhedstrom@gmail.com"
  7380. },
  7381. {
  7382. "name": "Christopher Gervais",
  7383. "email": "chris@ergonlogic.com"
  7384. },
  7385. {
  7386. "name": "Dave Reid",
  7387. "email": "dave@davereid.net"
  7388. },
  7389. {
  7390. "name": "Damian Lee",
  7391. "email": "damiankloip@googlemail.com"
  7392. }
  7393. ],
  7394. "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.",
  7395. "homepage": "http://www.drush.org",
  7396. "support": {
  7397. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  7398. "issues": "https://github.com/drush-ops/drush/issues",
  7399. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  7400. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  7401. },
  7402. "funding": [
  7403. {
  7404. "url": "https://github.com/weitzman",
  7405. "type": "github"
  7406. }
  7407. ],
  7408. "time": "2023-06-06T18:46:18+00:00"
  7409. },
  7410. {
  7411. "name": "egulias/email-validator",
  7412. "version": "4.0.2",
  7413. "source": {
  7414. "type": "git",
  7415. "url": "https://github.com/egulias/EmailValidator.git",
  7416. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  7417. },
  7418. "dist": {
  7419. "type": "zip",
  7420. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  7421. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  7422. "shasum": ""
  7423. },
  7424. "require": {
  7425. "doctrine/lexer": "^2.0 || ^3.0",
  7426. "php": ">=8.1",
  7427. "symfony/polyfill-intl-idn": "^1.26"
  7428. },
  7429. "require-dev": {
  7430. "phpunit/phpunit": "^10.2",
  7431. "vimeo/psalm": "^5.12"
  7432. },
  7433. "suggest": {
  7434. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7435. },
  7436. "type": "library",
  7437. "extra": {
  7438. "branch-alias": {
  7439. "dev-master": "4.0.x-dev"
  7440. }
  7441. },
  7442. "autoload": {
  7443. "psr-4": {
  7444. "Egulias\\EmailValidator\\": "src"
  7445. }
  7446. },
  7447. "notification-url": "https://packagist.org/downloads/",
  7448. "license": [
  7449. "MIT"
  7450. ],
  7451. "authors": [
  7452. {
  7453. "name": "Eduardo Gulias Davis"
  7454. }
  7455. ],
  7456. "description": "A library for validating emails against several RFCs",
  7457. "homepage": "https://github.com/egulias/EmailValidator",
  7458. "keywords": [
  7459. "email",
  7460. "emailvalidation",
  7461. "emailvalidator",
  7462. "validation",
  7463. "validator"
  7464. ],
  7465. "support": {
  7466. "issues": "https://github.com/egulias/EmailValidator/issues",
  7467. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  7468. },
  7469. "funding": [
  7470. {
  7471. "url": "https://github.com/egulias",
  7472. "type": "github"
  7473. }
  7474. ],
  7475. "time": "2023-10-06T06:47:41+00:00"
  7476. },
  7477. {
  7478. "name": "enlightn/security-checker",
  7479. "version": "v1.10.0",
  7480. "source": {
  7481. "type": "git",
  7482. "url": "https://github.com/enlightn/security-checker.git",
  7483. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  7484. },
  7485. "dist": {
  7486. "type": "zip",
  7487. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  7488. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  7489. "shasum": ""
  7490. },
  7491. "require": {
  7492. "ext-json": "*",
  7493. "guzzlehttp/guzzle": "^6.3|^7.0",
  7494. "php": ">=5.6",
  7495. "symfony/console": "^3.4|^4|^5|^6",
  7496. "symfony/finder": "^3|^4|^5|^6",
  7497. "symfony/process": "^3.4|^4|^5|^6",
  7498. "symfony/yaml": "^3.4|^4|^5|^6"
  7499. },
  7500. "require-dev": {
  7501. "ext-zip": "*",
  7502. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  7503. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7504. },
  7505. "bin": [
  7506. "security-checker"
  7507. ],
  7508. "type": "library",
  7509. "autoload": {
  7510. "psr-4": {
  7511. "Enlightn\\SecurityChecker\\": "src"
  7512. }
  7513. },
  7514. "notification-url": "https://packagist.org/downloads/",
  7515. "license": [
  7516. "MIT"
  7517. ],
  7518. "authors": [
  7519. {
  7520. "name": "Paras Malhotra",
  7521. "email": "paras@laravel-enlightn.com"
  7522. },
  7523. {
  7524. "name": "Miguel Piedrafita",
  7525. "email": "soy@miguelpiedrafita.com"
  7526. }
  7527. ],
  7528. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7529. "keywords": [
  7530. "package",
  7531. "php",
  7532. "scanner",
  7533. "security",
  7534. "security advisories",
  7535. "vulnerability scanner"
  7536. ],
  7537. "support": {
  7538. "issues": "https://github.com/enlightn/security-checker/issues",
  7539. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  7540. },
  7541. "time": "2022-02-21T22:40:16+00:00"
  7542. },
  7543. {
  7544. "name": "fileeye/mimemap",
  7545. "version": "2.0.2",
  7546. "source": {
  7547. "type": "git",
  7548. "url": "https://github.com/FileEye/MimeMap.git",
  7549. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  7550. },
  7551. "dist": {
  7552. "type": "zip",
  7553. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7554. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7555. "shasum": ""
  7556. },
  7557. "require": {
  7558. "php": ">=7.3"
  7559. },
  7560. "require-dev": {
  7561. "composer-runtime-api": "^2.0.0",
  7562. "phpstan/phpstan": "^1.2",
  7563. "phpunit/phpunit": "^9 | ^10",
  7564. "sebastian/comparator": ">=4",
  7565. "sebastian/diff": ">=4",
  7566. "squizlabs/php_codesniffer": ">=3.6",
  7567. "symfony/console": ">=5.4",
  7568. "symfony/filesystem": ">=5.4",
  7569. "symfony/var-dumper": ">=5.4",
  7570. "symfony/yaml": ">=5.4",
  7571. "vimeo/psalm": "^4.23 | ^5"
  7572. },
  7573. "bin": [
  7574. "bin/fileeye-mimemap"
  7575. ],
  7576. "type": "library",
  7577. "extra": {
  7578. "branch-alias": {
  7579. "dev-master": "2.x-dev"
  7580. }
  7581. },
  7582. "autoload": {
  7583. "psr-4": {
  7584. "FileEye\\MimeMap\\": "src/"
  7585. }
  7586. },
  7587. "notification-url": "https://packagist.org/downloads/",
  7588. "license": [
  7589. "LGPL-3.0-or-later"
  7590. ],
  7591. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7592. "homepage": "https://github.com/FileEye/MimeMap",
  7593. "keywords": [
  7594. "mime",
  7595. "mime-database",
  7596. "mime-parser",
  7597. "mime-type"
  7598. ],
  7599. "support": {
  7600. "issues": "https://github.com/FileEye/MimeMap/issues",
  7601. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  7602. },
  7603. "time": "2023-08-29T16:20:26+00:00"
  7604. },
  7605. {
  7606. "name": "fileeye/pel",
  7607. "version": "0.9.20",
  7608. "source": {
  7609. "type": "git",
  7610. "url": "https://github.com/FileEye/pel.git",
  7611. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  7612. },
  7613. "dist": {
  7614. "type": "zip",
  7615. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7616. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7617. "shasum": ""
  7618. },
  7619. "require": {
  7620. "php": ">=7.1.0"
  7621. },
  7622. "require-dev": {
  7623. "ext-exif": "*",
  7624. "ext-gd": "*",
  7625. "php-coveralls/php-coveralls": ">2.4",
  7626. "phpstan/phpstan": "^1.4",
  7627. "squizlabs/php_codesniffer": ">3.5",
  7628. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  7629. },
  7630. "type": "library",
  7631. "autoload": {
  7632. "psr-4": {
  7633. "lsolesen\\pel\\": "src/"
  7634. }
  7635. },
  7636. "notification-url": "https://packagist.org/downloads/",
  7637. "license": [
  7638. "GPL-2.0"
  7639. ],
  7640. "authors": [
  7641. {
  7642. "name": "Lars Olesen",
  7643. "email": "lars@intraface.dk",
  7644. "homepage": "http://intraface.dk",
  7645. "role": "Developer"
  7646. },
  7647. {
  7648. "name": "Martin Geisler",
  7649. "email": "martin@geisler.net",
  7650. "homepage": "http://geisler.net",
  7651. "role": "Developer"
  7652. }
  7653. ],
  7654. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7655. "homepage": "https://github.com/FileEye/pel",
  7656. "keywords": [
  7657. "exif",
  7658. "image"
  7659. ],
  7660. "support": {
  7661. "issues": "https://github.com/FileEye/pel/issues",
  7662. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  7663. },
  7664. "time": "2023-06-20T07:10:35+00:00"
  7665. },
  7666. {
  7667. "name": "giggsey/libphonenumber-for-php",
  7668. "version": "8.13.25",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7672. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  7677. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  7678. "shasum": ""
  7679. },
  7680. "require": {
  7681. "giggsey/locale": "^1.7|^2.0",
  7682. "php": ">=5.3.2",
  7683. "symfony/polyfill-mbstring": "^1.17"
  7684. },
  7685. "require-dev": {
  7686. "pear/pear-core-minimal": "^1.9",
  7687. "pear/pear_exception": "^1.0",
  7688. "pear/versioncontrol_git": "^0.5",
  7689. "phing/phing": "^2.7",
  7690. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7691. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  7692. "symfony/phpunit-bridge": "^4.2 || ^5"
  7693. },
  7694. "type": "library",
  7695. "extra": {
  7696. "branch-alias": {
  7697. "dev-master": "8.x-dev"
  7698. }
  7699. },
  7700. "autoload": {
  7701. "psr-4": {
  7702. "libphonenumber\\": "src/"
  7703. },
  7704. "exclude-from-classmap": [
  7705. "/src/data/",
  7706. "/src/carrier/data/",
  7707. "/src/geocoding/data/",
  7708. "/src/timezone/data/"
  7709. ]
  7710. },
  7711. "notification-url": "https://packagist.org/downloads/",
  7712. "license": [
  7713. "Apache-2.0"
  7714. ],
  7715. "authors": [
  7716. {
  7717. "name": "Joshua Gigg",
  7718. "email": "giggsey@gmail.com",
  7719. "homepage": "https://giggsey.com/"
  7720. }
  7721. ],
  7722. "description": "PHP Port of Google's libphonenumber",
  7723. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7724. "keywords": [
  7725. "geocoding",
  7726. "geolocation",
  7727. "libphonenumber",
  7728. "mobile",
  7729. "phonenumber",
  7730. "validation"
  7731. ],
  7732. "support": {
  7733. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  7734. "source": "https://github.com/giggsey/libphonenumber-for-php"
  7735. },
  7736. "time": "2023-11-13T09:34:15+00:00"
  7737. },
  7738. {
  7739. "name": "giggsey/locale",
  7740. "version": "2.5",
  7741. "source": {
  7742. "type": "git",
  7743. "url": "https://github.com/giggsey/Locale.git",
  7744. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  7745. },
  7746. "dist": {
  7747. "type": "zip",
  7748. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7749. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7750. "shasum": ""
  7751. },
  7752. "require": {
  7753. "php": ">=7.2"
  7754. },
  7755. "require-dev": {
  7756. "ext-json": "*",
  7757. "pear/pear-core-minimal": "^1.9",
  7758. "pear/pear_exception": "^1.0",
  7759. "pear/versioncontrol_git": "^0.5",
  7760. "phing/phing": "^2.7",
  7761. "php-coveralls/php-coveralls": "^2.0",
  7762. "phpunit/phpunit": "^8.5|^9.5",
  7763. "symfony/console": "^5.0|^6.0",
  7764. "symfony/filesystem": "^5.0|^6.0",
  7765. "symfony/finder": "^5.0|^6.0",
  7766. "symfony/process": "^5.0|^6.0"
  7767. },
  7768. "type": "library",
  7769. "autoload": {
  7770. "psr-4": {
  7771. "Giggsey\\Locale\\": "src/"
  7772. }
  7773. },
  7774. "notification-url": "https://packagist.org/downloads/",
  7775. "license": [
  7776. "MIT"
  7777. ],
  7778. "authors": [
  7779. {
  7780. "name": "Joshua Gigg",
  7781. "email": "giggsey@gmail.com",
  7782. "homepage": "https://giggsey.com/"
  7783. }
  7784. ],
  7785. "description": "Locale functions required by libphonenumber-for-php",
  7786. "support": {
  7787. "issues": "https://github.com/giggsey/Locale/issues",
  7788. "source": "https://github.com/giggsey/Locale/tree/2.5"
  7789. },
  7790. "time": "2023-11-01T17:19:48+00:00"
  7791. },
  7792. {
  7793. "name": "grasmash/expander",
  7794. "version": "3.0.0",
  7795. "source": {
  7796. "type": "git",
  7797. "url": "https://github.com/grasmash/expander.git",
  7798. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  7799. },
  7800. "dist": {
  7801. "type": "zip",
  7802. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7803. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7804. "shasum": ""
  7805. },
  7806. "require": {
  7807. "dflydev/dot-access-data": "^3.0.0",
  7808. "php": ">=8.0",
  7809. "psr/log": "^2 | ^3"
  7810. },
  7811. "require-dev": {
  7812. "greg-1-anderson/composer-test-scenarios": "^1",
  7813. "php-coveralls/php-coveralls": "^2.5",
  7814. "phpunit/phpunit": "^9",
  7815. "squizlabs/php_codesniffer": "^3.3"
  7816. },
  7817. "type": "library",
  7818. "extra": {
  7819. "branch-alias": {
  7820. "dev-master": "1.x-dev"
  7821. }
  7822. },
  7823. "autoload": {
  7824. "psr-4": {
  7825. "Grasmash\\Expander\\": "src/"
  7826. }
  7827. },
  7828. "notification-url": "https://packagist.org/downloads/",
  7829. "license": [
  7830. "MIT"
  7831. ],
  7832. "authors": [
  7833. {
  7834. "name": "Matthew Grasmick"
  7835. }
  7836. ],
  7837. "description": "Expands internal property references in PHP arrays file.",
  7838. "support": {
  7839. "issues": "https://github.com/grasmash/expander/issues",
  7840. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  7841. },
  7842. "time": "2022-05-10T13:14:49+00:00"
  7843. },
  7844. {
  7845. "name": "guzzlehttp/guzzle",
  7846. "version": "7.7.1",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/guzzle/guzzle.git",
  7850. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  7855. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "ext-json": "*",
  7860. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  7861. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  7862. "php": "^7.2.5 || ^8.0",
  7863. "psr/http-client": "^1.0",
  7864. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7865. },
  7866. "provide": {
  7867. "psr/http-client-implementation": "1.0"
  7868. },
  7869. "require-dev": {
  7870. "bamarni/composer-bin-plugin": "^1.8.1",
  7871. "ext-curl": "*",
  7872. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  7873. "php-http/message-factory": "^1.1",
  7874. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  7875. "psr/log": "^1.1 || ^2.0 || ^3.0"
  7876. },
  7877. "suggest": {
  7878. "ext-curl": "Required for CURL handler support",
  7879. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  7880. "psr/log": "Required for using the Log middleware"
  7881. },
  7882. "type": "library",
  7883. "extra": {
  7884. "bamarni-bin": {
  7885. "bin-links": true,
  7886. "forward-command": false
  7887. }
  7888. },
  7889. "autoload": {
  7890. "files": [
  7891. "src/functions_include.php"
  7892. ],
  7893. "psr-4": {
  7894. "GuzzleHttp\\": "src/"
  7895. }
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Graham Campbell",
  7904. "email": "hello@gjcampbell.co.uk",
  7905. "homepage": "https://github.com/GrahamCampbell"
  7906. },
  7907. {
  7908. "name": "Michael Dowling",
  7909. "email": "mtdowling@gmail.com",
  7910. "homepage": "https://github.com/mtdowling"
  7911. },
  7912. {
  7913. "name": "Jeremy Lindblom",
  7914. "email": "jeremeamia@gmail.com",
  7915. "homepage": "https://github.com/jeremeamia"
  7916. },
  7917. {
  7918. "name": "George Mponos",
  7919. "email": "gmponos@gmail.com",
  7920. "homepage": "https://github.com/gmponos"
  7921. },
  7922. {
  7923. "name": "Tobias Nyholm",
  7924. "email": "tobias.nyholm@gmail.com",
  7925. "homepage": "https://github.com/Nyholm"
  7926. },
  7927. {
  7928. "name": "Márk Sági-Kazár",
  7929. "email": "mark.sagikazar@gmail.com",
  7930. "homepage": "https://github.com/sagikazarmark"
  7931. },
  7932. {
  7933. "name": "Tobias Schultze",
  7934. "email": "webmaster@tubo-world.de",
  7935. "homepage": "https://github.com/Tobion"
  7936. }
  7937. ],
  7938. "description": "Guzzle is a PHP HTTP client library",
  7939. "keywords": [
  7940. "client",
  7941. "curl",
  7942. "framework",
  7943. "http",
  7944. "http client",
  7945. "psr-18",
  7946. "psr-7",
  7947. "rest",
  7948. "web service"
  7949. ],
  7950. "support": {
  7951. "issues": "https://github.com/guzzle/guzzle/issues",
  7952. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  7953. },
  7954. "funding": [
  7955. {
  7956. "url": "https://github.com/GrahamCampbell",
  7957. "type": "github"
  7958. },
  7959. {
  7960. "url": "https://github.com/Nyholm",
  7961. "type": "github"
  7962. },
  7963. {
  7964. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  7965. "type": "tidelift"
  7966. }
  7967. ],
  7968. "time": "2023-08-27T10:02:06+00:00"
  7969. },
  7970. {
  7971. "name": "guzzlehttp/promises",
  7972. "version": "2.0.1",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/guzzle/promises.git",
  7976. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  7981. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  7982. "shasum": ""
  7983. },
  7984. "require": {
  7985. "php": "^7.2.5 || ^8.0"
  7986. },
  7987. "require-dev": {
  7988. "bamarni/composer-bin-plugin": "^1.8.1",
  7989. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7990. },
  7991. "type": "library",
  7992. "extra": {
  7993. "bamarni-bin": {
  7994. "bin-links": true,
  7995. "forward-command": false
  7996. }
  7997. },
  7998. "autoload": {
  7999. "psr-4": {
  8000. "GuzzleHttp\\Promise\\": "src/"
  8001. }
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "MIT"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Graham Campbell",
  8010. "email": "hello@gjcampbell.co.uk",
  8011. "homepage": "https://github.com/GrahamCampbell"
  8012. },
  8013. {
  8014. "name": "Michael Dowling",
  8015. "email": "mtdowling@gmail.com",
  8016. "homepage": "https://github.com/mtdowling"
  8017. },
  8018. {
  8019. "name": "Tobias Nyholm",
  8020. "email": "tobias.nyholm@gmail.com",
  8021. "homepage": "https://github.com/Nyholm"
  8022. },
  8023. {
  8024. "name": "Tobias Schultze",
  8025. "email": "webmaster@tubo-world.de",
  8026. "homepage": "https://github.com/Tobion"
  8027. }
  8028. ],
  8029. "description": "Guzzle promises library",
  8030. "keywords": [
  8031. "promise"
  8032. ],
  8033. "support": {
  8034. "issues": "https://github.com/guzzle/promises/issues",
  8035. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  8036. },
  8037. "funding": [
  8038. {
  8039. "url": "https://github.com/GrahamCampbell",
  8040. "type": "github"
  8041. },
  8042. {
  8043. "url": "https://github.com/Nyholm",
  8044. "type": "github"
  8045. },
  8046. {
  8047. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8048. "type": "tidelift"
  8049. }
  8050. ],
  8051. "time": "2023-08-03T15:11:55+00:00"
  8052. },
  8053. {
  8054. "name": "guzzlehttp/psr7",
  8055. "version": "2.5.1",
  8056. "source": {
  8057. "type": "git",
  8058. "url": "https://github.com/guzzle/psr7.git",
  8059. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  8060. },
  8061. "dist": {
  8062. "type": "zip",
  8063. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8064. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8065. "shasum": ""
  8066. },
  8067. "require": {
  8068. "php": "^7.2.5 || ^8.0",
  8069. "psr/http-factory": "^1.0",
  8070. "psr/http-message": "^1.1 || ^2.0",
  8071. "ralouphie/getallheaders": "^3.0"
  8072. },
  8073. "provide": {
  8074. "psr/http-factory-implementation": "1.0",
  8075. "psr/http-message-implementation": "1.0"
  8076. },
  8077. "require-dev": {
  8078. "bamarni/composer-bin-plugin": "^1.8.1",
  8079. "http-interop/http-factory-tests": "^0.9",
  8080. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8081. },
  8082. "suggest": {
  8083. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8084. },
  8085. "type": "library",
  8086. "extra": {
  8087. "bamarni-bin": {
  8088. "bin-links": true,
  8089. "forward-command": false
  8090. }
  8091. },
  8092. "autoload": {
  8093. "psr-4": {
  8094. "GuzzleHttp\\Psr7\\": "src/"
  8095. }
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "MIT"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Graham Campbell",
  8104. "email": "hello@gjcampbell.co.uk",
  8105. "homepage": "https://github.com/GrahamCampbell"
  8106. },
  8107. {
  8108. "name": "Michael Dowling",
  8109. "email": "mtdowling@gmail.com",
  8110. "homepage": "https://github.com/mtdowling"
  8111. },
  8112. {
  8113. "name": "George Mponos",
  8114. "email": "gmponos@gmail.com",
  8115. "homepage": "https://github.com/gmponos"
  8116. },
  8117. {
  8118. "name": "Tobias Nyholm",
  8119. "email": "tobias.nyholm@gmail.com",
  8120. "homepage": "https://github.com/Nyholm"
  8121. },
  8122. {
  8123. "name": "Márk Sági-Kazár",
  8124. "email": "mark.sagikazar@gmail.com",
  8125. "homepage": "https://github.com/sagikazarmark"
  8126. },
  8127. {
  8128. "name": "Tobias Schultze",
  8129. "email": "webmaster@tubo-world.de",
  8130. "homepage": "https://github.com/Tobion"
  8131. },
  8132. {
  8133. "name": "Márk Sági-Kazár",
  8134. "email": "mark.sagikazar@gmail.com",
  8135. "homepage": "https://sagikazarmark.hu"
  8136. }
  8137. ],
  8138. "description": "PSR-7 message implementation that also provides common utility methods",
  8139. "keywords": [
  8140. "http",
  8141. "message",
  8142. "psr-7",
  8143. "request",
  8144. "response",
  8145. "stream",
  8146. "uri",
  8147. "url"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/guzzle/psr7/issues",
  8151. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  8152. },
  8153. "funding": [
  8154. {
  8155. "url": "https://github.com/GrahamCampbell",
  8156. "type": "github"
  8157. },
  8158. {
  8159. "url": "https://github.com/Nyholm",
  8160. "type": "github"
  8161. },
  8162. {
  8163. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8164. "type": "tidelift"
  8165. }
  8166. ],
  8167. "time": "2023-08-03T15:02:42+00:00"
  8168. },
  8169. {
  8170. "name": "kint-php/kint",
  8171. "version": "3.3",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/kint-php/kint.git",
  8175. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8180. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "php": ">=5.3.6"
  8185. },
  8186. "require-dev": {
  8187. "friendsofphp/php-cs-fixer": "^2.0",
  8188. "phpunit/phpunit": "^4.0",
  8189. "seld/phar-utils": "^1.0",
  8190. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8191. "vimeo/psalm": "^3.0"
  8192. },
  8193. "suggest": {
  8194. "ext-ctype": "Simple data type tests",
  8195. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8196. "ext-mbstring": "Provides string encoding detection",
  8197. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8198. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8199. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8200. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8201. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8202. },
  8203. "type": "library",
  8204. "autoload": {
  8205. "files": [
  8206. "init.php"
  8207. ],
  8208. "psr-4": {
  8209. "Kint\\": "src/"
  8210. }
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "authors": [
  8217. {
  8218. "name": "Jonathan Vollebregt",
  8219. "homepage": "https://github.com/jnvsor"
  8220. },
  8221. {
  8222. "name": "Rokas Šleinius",
  8223. "homepage": "https://github.com/raveren"
  8224. },
  8225. {
  8226. "name": "Contributors",
  8227. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8228. }
  8229. ],
  8230. "description": "Kint - debugging tool for PHP developers",
  8231. "homepage": "https://kint-php.github.io/kint/",
  8232. "keywords": [
  8233. "debug",
  8234. "kint",
  8235. "php"
  8236. ],
  8237. "support": {
  8238. "issues": "https://github.com/kint-php/kint/issues",
  8239. "source": "https://github.com/kint-php/kint/tree/master"
  8240. },
  8241. "time": "2019-10-17T18:05:24+00:00"
  8242. },
  8243. {
  8244. "name": "league/container",
  8245. "version": "4.2.0",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/thephpleague/container.git",
  8249. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8254. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8255. "shasum": ""
  8256. },
  8257. "require": {
  8258. "php": "^7.2 || ^8.0",
  8259. "psr/container": "^1.1 || ^2.0"
  8260. },
  8261. "provide": {
  8262. "psr/container-implementation": "^1.0"
  8263. },
  8264. "replace": {
  8265. "orno/di": "~2.0"
  8266. },
  8267. "require-dev": {
  8268. "nette/php-generator": "^3.4",
  8269. "nikic/php-parser": "^4.10",
  8270. "phpstan/phpstan": "^0.12.47",
  8271. "phpunit/phpunit": "^8.5.17",
  8272. "roave/security-advisories": "dev-latest",
  8273. "scrutinizer/ocular": "^1.8",
  8274. "squizlabs/php_codesniffer": "^3.6"
  8275. },
  8276. "type": "library",
  8277. "extra": {
  8278. "branch-alias": {
  8279. "dev-master": "4.x-dev",
  8280. "dev-4.x": "4.x-dev",
  8281. "dev-3.x": "3.x-dev",
  8282. "dev-2.x": "2.x-dev",
  8283. "dev-1.x": "1.x-dev"
  8284. }
  8285. },
  8286. "autoload": {
  8287. "psr-4": {
  8288. "League\\Container\\": "src"
  8289. }
  8290. },
  8291. "notification-url": "https://packagist.org/downloads/",
  8292. "license": [
  8293. "MIT"
  8294. ],
  8295. "authors": [
  8296. {
  8297. "name": "Phil Bennett",
  8298. "email": "mail@philbennett.co.uk",
  8299. "role": "Developer"
  8300. }
  8301. ],
  8302. "description": "A fast and intuitive dependency injection container.",
  8303. "homepage": "https://github.com/thephpleague/container",
  8304. "keywords": [
  8305. "container",
  8306. "dependency",
  8307. "di",
  8308. "injection",
  8309. "league",
  8310. "provider",
  8311. "service"
  8312. ],
  8313. "support": {
  8314. "issues": "https://github.com/thephpleague/container/issues",
  8315. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  8316. },
  8317. "funding": [
  8318. {
  8319. "url": "https://github.com/philipobenito",
  8320. "type": "github"
  8321. }
  8322. ],
  8323. "time": "2021-11-16T10:29:06+00:00"
  8324. },
  8325. {
  8326. "name": "masterminds/html5",
  8327. "version": "2.8.1",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/Masterminds/html5-php.git",
  8331. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8336. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "ext-dom": "*",
  8341. "php": ">=5.3.0"
  8342. },
  8343. "require-dev": {
  8344. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  8345. },
  8346. "type": "library",
  8347. "extra": {
  8348. "branch-alias": {
  8349. "dev-master": "2.7-dev"
  8350. }
  8351. },
  8352. "autoload": {
  8353. "psr-4": {
  8354. "Masterminds\\": "src"
  8355. }
  8356. },
  8357. "notification-url": "https://packagist.org/downloads/",
  8358. "license": [
  8359. "MIT"
  8360. ],
  8361. "authors": [
  8362. {
  8363. "name": "Matt Butcher",
  8364. "email": "technosophos@gmail.com"
  8365. },
  8366. {
  8367. "name": "Matt Farina",
  8368. "email": "matt@mattfarina.com"
  8369. },
  8370. {
  8371. "name": "Asmir Mustafic",
  8372. "email": "goetas@gmail.com"
  8373. }
  8374. ],
  8375. "description": "An HTML5 parser and serializer.",
  8376. "homepage": "http://masterminds.github.io/html5-php",
  8377. "keywords": [
  8378. "HTML5",
  8379. "dom",
  8380. "html",
  8381. "parser",
  8382. "querypath",
  8383. "serializer",
  8384. "xml"
  8385. ],
  8386. "support": {
  8387. "issues": "https://github.com/Masterminds/html5-php/issues",
  8388. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  8389. },
  8390. "time": "2023-05-10T11:58:31+00:00"
  8391. },
  8392. {
  8393. "name": "mck89/peast",
  8394. "version": "v1.15.4",
  8395. "source": {
  8396. "type": "git",
  8397. "url": "https://github.com/mck89/peast.git",
  8398. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  8399. },
  8400. "dist": {
  8401. "type": "zip",
  8402. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8403. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8404. "shasum": ""
  8405. },
  8406. "require": {
  8407. "ext-mbstring": "*",
  8408. "php": ">=5.4.0"
  8409. },
  8410. "require-dev": {
  8411. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  8412. },
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-master": "1.15.4-dev"
  8417. }
  8418. },
  8419. "autoload": {
  8420. "psr-4": {
  8421. "Peast\\": "lib/Peast/"
  8422. }
  8423. },
  8424. "notification-url": "https://packagist.org/downloads/",
  8425. "license": [
  8426. "BSD-3-Clause"
  8427. ],
  8428. "authors": [
  8429. {
  8430. "name": "Marco Marchiò",
  8431. "email": "marco.mm89@gmail.com"
  8432. }
  8433. ],
  8434. "description": "Peast is PHP library that generates AST for JavaScript code",
  8435. "support": {
  8436. "issues": "https://github.com/mck89/peast/issues",
  8437. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  8438. },
  8439. "time": "2023-08-12T08:29:29+00:00"
  8440. },
  8441. {
  8442. "name": "nikic/php-parser",
  8443. "version": "v4.17.1",
  8444. "source": {
  8445. "type": "git",
  8446. "url": "https://github.com/nikic/PHP-Parser.git",
  8447. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  8448. },
  8449. "dist": {
  8450. "type": "zip",
  8451. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8452. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8453. "shasum": ""
  8454. },
  8455. "require": {
  8456. "ext-tokenizer": "*",
  8457. "php": ">=7.0"
  8458. },
  8459. "require-dev": {
  8460. "ircmaxell/php-yacc": "^0.0.7",
  8461. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8462. },
  8463. "bin": [
  8464. "bin/php-parse"
  8465. ],
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-master": "4.9-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "psr-4": {
  8474. "PhpParser\\": "lib/PhpParser"
  8475. }
  8476. },
  8477. "notification-url": "https://packagist.org/downloads/",
  8478. "license": [
  8479. "BSD-3-Clause"
  8480. ],
  8481. "authors": [
  8482. {
  8483. "name": "Nikita Popov"
  8484. }
  8485. ],
  8486. "description": "A PHP parser written in PHP",
  8487. "keywords": [
  8488. "parser",
  8489. "php"
  8490. ],
  8491. "support": {
  8492. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8493. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  8494. },
  8495. "time": "2023-08-13T19:53:39+00:00"
  8496. },
  8497. {
  8498. "name": "pear/archive_tar",
  8499. "version": "1.4.14",
  8500. "source": {
  8501. "type": "git",
  8502. "url": "https://github.com/pear/Archive_Tar.git",
  8503. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  8504. },
  8505. "dist": {
  8506. "type": "zip",
  8507. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  8508. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  8509. "shasum": ""
  8510. },
  8511. "require": {
  8512. "pear/pear-core-minimal": "^1.10.0alpha2",
  8513. "php": ">=5.2.0"
  8514. },
  8515. "require-dev": {
  8516. "phpunit/phpunit": "*"
  8517. },
  8518. "suggest": {
  8519. "ext-bz2": "Bz2 compression support.",
  8520. "ext-xz": "Lzma2 compression support.",
  8521. "ext-zlib": "Gzip compression support."
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-master": "1.4.x-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "psr-0": {
  8531. "Archive_Tar": ""
  8532. }
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "include-path": [
  8536. "./"
  8537. ],
  8538. "license": [
  8539. "BSD-3-Clause"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Vincent Blavet",
  8544. "email": "vincent@phpconcept.net"
  8545. },
  8546. {
  8547. "name": "Greg Beaver",
  8548. "email": "greg@chiaraquartet.net"
  8549. },
  8550. {
  8551. "name": "Michiel Rook",
  8552. "email": "mrook@php.net"
  8553. }
  8554. ],
  8555. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8556. "homepage": "https://github.com/pear/Archive_Tar",
  8557. "keywords": [
  8558. "archive",
  8559. "tar"
  8560. ],
  8561. "support": {
  8562. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  8563. "source": "https://github.com/pear/Archive_Tar"
  8564. },
  8565. "funding": [
  8566. {
  8567. "url": "https://github.com/mrook",
  8568. "type": "github"
  8569. },
  8570. {
  8571. "url": "https://www.patreon.com/michielrook",
  8572. "type": "patreon"
  8573. }
  8574. ],
  8575. "time": "2021-07-20T13:53:39+00:00"
  8576. },
  8577. {
  8578. "name": "pear/console_getopt",
  8579. "version": "v1.4.3",
  8580. "source": {
  8581. "type": "git",
  8582. "url": "https://github.com/pear/Console_Getopt.git",
  8583. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8584. },
  8585. "dist": {
  8586. "type": "zip",
  8587. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8588. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8589. "shasum": ""
  8590. },
  8591. "type": "library",
  8592. "autoload": {
  8593. "psr-0": {
  8594. "Console": "./"
  8595. }
  8596. },
  8597. "notification-url": "https://packagist.org/downloads/",
  8598. "include-path": [
  8599. "./"
  8600. ],
  8601. "license": [
  8602. "BSD-2-Clause"
  8603. ],
  8604. "authors": [
  8605. {
  8606. "name": "Andrei Zmievski",
  8607. "email": "andrei@php.net",
  8608. "role": "Lead"
  8609. },
  8610. {
  8611. "name": "Stig Bakken",
  8612. "email": "stig@php.net",
  8613. "role": "Developer"
  8614. },
  8615. {
  8616. "name": "Greg Beaver",
  8617. "email": "cellog@php.net",
  8618. "role": "Helper"
  8619. }
  8620. ],
  8621. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8622. "support": {
  8623. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  8624. "source": "https://github.com/pear/Console_Getopt"
  8625. },
  8626. "time": "2019-11-20T18:27:48+00:00"
  8627. },
  8628. {
  8629. "name": "pear/pear-core-minimal",
  8630. "version": "v1.10.13",
  8631. "source": {
  8632. "type": "git",
  8633. "url": "https://github.com/pear/pear-core-minimal.git",
  8634. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  8635. },
  8636. "dist": {
  8637. "type": "zip",
  8638. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8639. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8640. "shasum": ""
  8641. },
  8642. "require": {
  8643. "pear/console_getopt": "~1.4",
  8644. "pear/pear_exception": "~1.0"
  8645. },
  8646. "replace": {
  8647. "rsky/pear-core-min": "self.version"
  8648. },
  8649. "type": "library",
  8650. "autoload": {
  8651. "psr-0": {
  8652. "": "src/"
  8653. }
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "include-path": [
  8657. "src/"
  8658. ],
  8659. "license": [
  8660. "BSD-3-Clause"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Christian Weiske",
  8665. "email": "cweiske@php.net",
  8666. "role": "Lead"
  8667. }
  8668. ],
  8669. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8670. "support": {
  8671. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  8672. "source": "https://github.com/pear/pear-core-minimal"
  8673. },
  8674. "time": "2023-04-19T19:15:47+00:00"
  8675. },
  8676. {
  8677. "name": "pear/pear_exception",
  8678. "version": "v1.0.2",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/pear/PEAR_Exception.git",
  8682. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8687. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "php": ">=5.2.0"
  8692. },
  8693. "require-dev": {
  8694. "phpunit/phpunit": "<9"
  8695. },
  8696. "type": "class",
  8697. "extra": {
  8698. "branch-alias": {
  8699. "dev-master": "1.0.x-dev"
  8700. }
  8701. },
  8702. "autoload": {
  8703. "classmap": [
  8704. "PEAR/"
  8705. ]
  8706. },
  8707. "notification-url": "https://packagist.org/downloads/",
  8708. "include-path": [
  8709. "."
  8710. ],
  8711. "license": [
  8712. "BSD-2-Clause"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Helgi Thormar",
  8717. "email": "dufuz@php.net"
  8718. },
  8719. {
  8720. "name": "Greg Beaver",
  8721. "email": "cellog@php.net"
  8722. }
  8723. ],
  8724. "description": "The PEAR Exception base class.",
  8725. "homepage": "https://github.com/pear/PEAR_Exception",
  8726. "keywords": [
  8727. "exception"
  8728. ],
  8729. "support": {
  8730. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  8731. "source": "https://github.com/pear/PEAR_Exception"
  8732. },
  8733. "time": "2021-03-21T15:43:46+00:00"
  8734. },
  8735. {
  8736. "name": "phenx/php-font-lib",
  8737. "version": "0.5.4",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/dompdf/php-font-lib.git",
  8741. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  8746. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "ext-mbstring": "*"
  8751. },
  8752. "require-dev": {
  8753. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  8754. },
  8755. "type": "library",
  8756. "autoload": {
  8757. "psr-4": {
  8758. "FontLib\\": "src/FontLib"
  8759. }
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "LGPL-3.0"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Fabien Ménager",
  8768. "email": "fabien.menager@gmail.com"
  8769. }
  8770. ],
  8771. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8772. "homepage": "https://github.com/PhenX/php-font-lib",
  8773. "support": {
  8774. "issues": "https://github.com/dompdf/php-font-lib/issues",
  8775. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  8776. },
  8777. "time": "2021-12-17T19:44:54+00:00"
  8778. },
  8779. {
  8780. "name": "phootwork/collection",
  8781. "version": "v3.2.2",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/phootwork/collection.git",
  8785. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  8790. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  8791. "shasum": ""
  8792. },
  8793. "require": {
  8794. "phootwork/lang": "^3.0",
  8795. "php": ">=8.0"
  8796. },
  8797. "type": "library",
  8798. "autoload": {
  8799. "psr-4": {
  8800. "phootwork\\collection\\": ""
  8801. }
  8802. },
  8803. "notification-url": "https://packagist.org/downloads/",
  8804. "license": [
  8805. "MIT"
  8806. ],
  8807. "authors": [
  8808. {
  8809. "name": "Thomas Gossmann",
  8810. "homepage": "http://gos.si"
  8811. }
  8812. ],
  8813. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  8814. "homepage": "https://phootwork.github.io/collection/",
  8815. "keywords": [
  8816. "Array object",
  8817. "Text object",
  8818. "collection",
  8819. "collections",
  8820. "json",
  8821. "list",
  8822. "map",
  8823. "queue",
  8824. "set",
  8825. "stack",
  8826. "xml"
  8827. ],
  8828. "support": {
  8829. "issues": "https://github.com/phootwork/phootwork/issues",
  8830. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  8831. },
  8832. "time": "2022-08-27T12:51:24+00:00"
  8833. },
  8834. {
  8835. "name": "phootwork/lang",
  8836. "version": "v3.2.2",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/phootwork/lang.git",
  8840. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  8845. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  8846. "shasum": ""
  8847. },
  8848. "require": {
  8849. "php": ">=8.0",
  8850. "symfony/polyfill-mbstring": "^1.12",
  8851. "symfony/polyfill-php81": "^1.22"
  8852. },
  8853. "type": "library",
  8854. "autoload": {
  8855. "psr-4": {
  8856. "phootwork\\lang\\": ""
  8857. }
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "license": [
  8861. "MIT"
  8862. ],
  8863. "authors": [
  8864. {
  8865. "name": "Thomas Gossmann",
  8866. "homepage": "http://gos.si"
  8867. }
  8868. ],
  8869. "description": "Missing PHP language constructs",
  8870. "homepage": "https://phootwork.github.io/lang/",
  8871. "keywords": [
  8872. "array",
  8873. "comparator",
  8874. "comparison",
  8875. "string"
  8876. ],
  8877. "support": {
  8878. "issues": "https://github.com/phootwork/phootwork/issues",
  8879. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  8880. },
  8881. "time": "2023-05-26T05:37:59+00:00"
  8882. },
  8883. {
  8884. "name": "phpmailer/phpmailer",
  8885. "version": "v6.8.1",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/PHPMailer/PHPMailer.git",
  8889. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  8894. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "ext-ctype": "*",
  8899. "ext-filter": "*",
  8900. "ext-hash": "*",
  8901. "php": ">=5.5.0"
  8902. },
  8903. "require-dev": {
  8904. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  8905. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  8906. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  8907. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  8908. "phpcompatibility/php-compatibility": "^9.3.5",
  8909. "roave/security-advisories": "dev-latest",
  8910. "squizlabs/php_codesniffer": "^3.7.2",
  8911. "yoast/phpunit-polyfills": "^1.0.4"
  8912. },
  8913. "suggest": {
  8914. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  8915. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  8916. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  8917. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  8918. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  8919. "psr/log": "For optional PSR-3 debug logging",
  8920. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  8921. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  8922. },
  8923. "type": "library",
  8924. "autoload": {
  8925. "psr-4": {
  8926. "PHPMailer\\PHPMailer\\": "src/"
  8927. }
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "LGPL-2.1-only"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Marcus Bointon",
  8936. "email": "phpmailer@synchromedia.co.uk"
  8937. },
  8938. {
  8939. "name": "Jim Jagielski",
  8940. "email": "jimjag@gmail.com"
  8941. },
  8942. {
  8943. "name": "Andy Prevost",
  8944. "email": "codeworxtech@users.sourceforge.net"
  8945. },
  8946. {
  8947. "name": "Brent R. Matzelle"
  8948. }
  8949. ],
  8950. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  8951. "support": {
  8952. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  8953. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  8954. },
  8955. "funding": [
  8956. {
  8957. "url": "https://github.com/Synchro",
  8958. "type": "github"
  8959. }
  8960. ],
  8961. "time": "2023-08-29T08:26:30+00:00"
  8962. },
  8963. {
  8964. "name": "phpowermove/docblock",
  8965. "version": "v4.0",
  8966. "source": {
  8967. "type": "git",
  8968. "url": "https://github.com/phpowermove/docblock.git",
  8969. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  8970. },
  8971. "dist": {
  8972. "type": "zip",
  8973. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8974. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8975. "shasum": ""
  8976. },
  8977. "require": {
  8978. "phootwork/collection": "^3.0",
  8979. "phootwork/lang": "^3.0",
  8980. "php": ">=8.0"
  8981. },
  8982. "require-dev": {
  8983. "phootwork/php-cs-fixer-config": "^0.4",
  8984. "phpunit/phpunit": "^9.0",
  8985. "psalm/phar": "^4.3"
  8986. },
  8987. "type": "library",
  8988. "autoload": {
  8989. "psr-4": {
  8990. "phpowermove\\docblock\\": "src/"
  8991. }
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "MIT"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Thomas Gossmann",
  9000. "homepage": "http://gos.si"
  9001. }
  9002. ],
  9003. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  9004. "keywords": [
  9005. "docblock",
  9006. "generator",
  9007. "parser"
  9008. ],
  9009. "support": {
  9010. "issues": "https://github.com/phpowermove/docblock/issues",
  9011. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  9012. },
  9013. "time": "2021-09-22T16:57:06+00:00"
  9014. },
  9015. {
  9016. "name": "politsin/jquery-ui-touch-punch",
  9017. "version": "1.0",
  9018. "source": {
  9019. "type": "git",
  9020. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  9021. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  9022. },
  9023. "dist": {
  9024. "type": "zip",
  9025. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  9026. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  9027. "shasum": ""
  9028. },
  9029. "type": "drupal-library",
  9030. "notification-url": "https://packagist.org/downloads/",
  9031. "license": [
  9032. "MIT"
  9033. ],
  9034. "authors": [
  9035. {
  9036. "name": "Dave Furfero",
  9037. "email": "furf@furf.com"
  9038. }
  9039. ],
  9040. "description": "Extension to jQuery UI for mobile touch event support.",
  9041. "homepage": "http://touchpunch.furf.com/",
  9042. "keywords": [
  9043. "gestures",
  9044. "mobile",
  9045. "touch"
  9046. ],
  9047. "support": {
  9048. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  9049. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  9050. },
  9051. "time": "2020-12-15T10:26:18+00:00"
  9052. },
  9053. {
  9054. "name": "psr/cache",
  9055. "version": "3.0.0",
  9056. "source": {
  9057. "type": "git",
  9058. "url": "https://github.com/php-fig/cache.git",
  9059. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9060. },
  9061. "dist": {
  9062. "type": "zip",
  9063. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9064. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9065. "shasum": ""
  9066. },
  9067. "require": {
  9068. "php": ">=8.0.0"
  9069. },
  9070. "type": "library",
  9071. "extra": {
  9072. "branch-alias": {
  9073. "dev-master": "1.0.x-dev"
  9074. }
  9075. },
  9076. "autoload": {
  9077. "psr-4": {
  9078. "Psr\\Cache\\": "src/"
  9079. }
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "MIT"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "PHP-FIG",
  9088. "homepage": "https://www.php-fig.org/"
  9089. }
  9090. ],
  9091. "description": "Common interface for caching libraries",
  9092. "keywords": [
  9093. "cache",
  9094. "psr",
  9095. "psr-6"
  9096. ],
  9097. "support": {
  9098. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9099. },
  9100. "time": "2021-02-03T23:26:27+00:00"
  9101. },
  9102. {
  9103. "name": "psr/container",
  9104. "version": "2.0.2",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/php-fig/container.git",
  9108. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9113. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9114. "shasum": ""
  9115. },
  9116. "require": {
  9117. "php": ">=7.4.0"
  9118. },
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-master": "2.0.x-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "psr-4": {
  9127. "Psr\\Container\\": "src/"
  9128. }
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "MIT"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "PHP-FIG",
  9137. "homepage": "https://www.php-fig.org/"
  9138. }
  9139. ],
  9140. "description": "Common Container Interface (PHP FIG PSR-11)",
  9141. "homepage": "https://github.com/php-fig/container",
  9142. "keywords": [
  9143. "PSR-11",
  9144. "container",
  9145. "container-interface",
  9146. "container-interop",
  9147. "psr"
  9148. ],
  9149. "support": {
  9150. "issues": "https://github.com/php-fig/container/issues",
  9151. "source": "https://github.com/php-fig/container/tree/2.0.2"
  9152. },
  9153. "time": "2021-11-05T16:47:00+00:00"
  9154. },
  9155. {
  9156. "name": "psr/event-dispatcher",
  9157. "version": "1.0.0",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/php-fig/event-dispatcher.git",
  9161. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9166. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": ">=7.2.0"
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "branch-alias": {
  9175. "dev-master": "1.0.x-dev"
  9176. }
  9177. },
  9178. "autoload": {
  9179. "psr-4": {
  9180. "Psr\\EventDispatcher\\": "src/"
  9181. }
  9182. },
  9183. "notification-url": "https://packagist.org/downloads/",
  9184. "license": [
  9185. "MIT"
  9186. ],
  9187. "authors": [
  9188. {
  9189. "name": "PHP-FIG",
  9190. "homepage": "http://www.php-fig.org/"
  9191. }
  9192. ],
  9193. "description": "Standard interfaces for event handling.",
  9194. "keywords": [
  9195. "events",
  9196. "psr",
  9197. "psr-14"
  9198. ],
  9199. "support": {
  9200. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  9201. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  9202. },
  9203. "time": "2019-01-08T18:20:26+00:00"
  9204. },
  9205. {
  9206. "name": "psr/http-client",
  9207. "version": "1.0.3",
  9208. "source": {
  9209. "type": "git",
  9210. "url": "https://github.com/php-fig/http-client.git",
  9211. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  9212. },
  9213. "dist": {
  9214. "type": "zip",
  9215. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9216. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9217. "shasum": ""
  9218. },
  9219. "require": {
  9220. "php": "^7.0 || ^8.0",
  9221. "psr/http-message": "^1.0 || ^2.0"
  9222. },
  9223. "type": "library",
  9224. "extra": {
  9225. "branch-alias": {
  9226. "dev-master": "1.0.x-dev"
  9227. }
  9228. },
  9229. "autoload": {
  9230. "psr-4": {
  9231. "Psr\\Http\\Client\\": "src/"
  9232. }
  9233. },
  9234. "notification-url": "https://packagist.org/downloads/",
  9235. "license": [
  9236. "MIT"
  9237. ],
  9238. "authors": [
  9239. {
  9240. "name": "PHP-FIG",
  9241. "homepage": "https://www.php-fig.org/"
  9242. }
  9243. ],
  9244. "description": "Common interface for HTTP clients",
  9245. "homepage": "https://github.com/php-fig/http-client",
  9246. "keywords": [
  9247. "http",
  9248. "http-client",
  9249. "psr",
  9250. "psr-18"
  9251. ],
  9252. "support": {
  9253. "source": "https://github.com/php-fig/http-client"
  9254. },
  9255. "time": "2023-09-23T14:17:50+00:00"
  9256. },
  9257. {
  9258. "name": "psr/http-factory",
  9259. "version": "1.0.2",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/php-fig/http-factory.git",
  9263. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  9268. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "php": ">=7.0.0",
  9273. "psr/http-message": "^1.0 || ^2.0"
  9274. },
  9275. "type": "library",
  9276. "extra": {
  9277. "branch-alias": {
  9278. "dev-master": "1.0.x-dev"
  9279. }
  9280. },
  9281. "autoload": {
  9282. "psr-4": {
  9283. "Psr\\Http\\Message\\": "src/"
  9284. }
  9285. },
  9286. "notification-url": "https://packagist.org/downloads/",
  9287. "license": [
  9288. "MIT"
  9289. ],
  9290. "authors": [
  9291. {
  9292. "name": "PHP-FIG",
  9293. "homepage": "https://www.php-fig.org/"
  9294. }
  9295. ],
  9296. "description": "Common interfaces for PSR-7 HTTP message factories",
  9297. "keywords": [
  9298. "factory",
  9299. "http",
  9300. "message",
  9301. "psr",
  9302. "psr-17",
  9303. "psr-7",
  9304. "request",
  9305. "response"
  9306. ],
  9307. "support": {
  9308. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  9309. },
  9310. "time": "2023-04-10T20:10:41+00:00"
  9311. },
  9312. {
  9313. "name": "psr/http-message",
  9314. "version": "2.0",
  9315. "source": {
  9316. "type": "git",
  9317. "url": "https://github.com/php-fig/http-message.git",
  9318. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  9319. },
  9320. "dist": {
  9321. "type": "zip",
  9322. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9323. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9324. "shasum": ""
  9325. },
  9326. "require": {
  9327. "php": "^7.2 || ^8.0"
  9328. },
  9329. "type": "library",
  9330. "extra": {
  9331. "branch-alias": {
  9332. "dev-master": "2.0.x-dev"
  9333. }
  9334. },
  9335. "autoload": {
  9336. "psr-4": {
  9337. "Psr\\Http\\Message\\": "src/"
  9338. }
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "MIT"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "PHP-FIG",
  9347. "homepage": "https://www.php-fig.org/"
  9348. }
  9349. ],
  9350. "description": "Common interface for HTTP messages",
  9351. "homepage": "https://github.com/php-fig/http-message",
  9352. "keywords": [
  9353. "http",
  9354. "http-message",
  9355. "psr",
  9356. "psr-7",
  9357. "request",
  9358. "response"
  9359. ],
  9360. "support": {
  9361. "source": "https://github.com/php-fig/http-message/tree/2.0"
  9362. },
  9363. "time": "2023-04-04T09:54:51+00:00"
  9364. },
  9365. {
  9366. "name": "psr/log",
  9367. "version": "3.0.0",
  9368. "source": {
  9369. "type": "git",
  9370. "url": "https://github.com/php-fig/log.git",
  9371. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  9372. },
  9373. "dist": {
  9374. "type": "zip",
  9375. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9376. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9377. "shasum": ""
  9378. },
  9379. "require": {
  9380. "php": ">=8.0.0"
  9381. },
  9382. "type": "library",
  9383. "extra": {
  9384. "branch-alias": {
  9385. "dev-master": "3.x-dev"
  9386. }
  9387. },
  9388. "autoload": {
  9389. "psr-4": {
  9390. "Psr\\Log\\": "src"
  9391. }
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "MIT"
  9396. ],
  9397. "authors": [
  9398. {
  9399. "name": "PHP-FIG",
  9400. "homepage": "https://www.php-fig.org/"
  9401. }
  9402. ],
  9403. "description": "Common interface for logging libraries",
  9404. "homepage": "https://github.com/php-fig/log",
  9405. "keywords": [
  9406. "log",
  9407. "psr",
  9408. "psr-3"
  9409. ],
  9410. "support": {
  9411. "source": "https://github.com/php-fig/log/tree/3.0.0"
  9412. },
  9413. "time": "2021-07-14T16:46:02+00:00"
  9414. },
  9415. {
  9416. "name": "psy/psysh",
  9417. "version": "v0.11.22",
  9418. "source": {
  9419. "type": "git",
  9420. "url": "https://github.com/bobthecow/psysh.git",
  9421. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  9422. },
  9423. "dist": {
  9424. "type": "zip",
  9425. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  9426. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  9427. "shasum": ""
  9428. },
  9429. "require": {
  9430. "ext-json": "*",
  9431. "ext-tokenizer": "*",
  9432. "nikic/php-parser": "^4.0 || ^3.1",
  9433. "php": "^8.0 || ^7.0.8",
  9434. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  9435. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  9436. },
  9437. "conflict": {
  9438. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  9439. },
  9440. "require-dev": {
  9441. "bamarni/composer-bin-plugin": "^1.2"
  9442. },
  9443. "suggest": {
  9444. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9445. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9446. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9447. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  9448. },
  9449. "bin": [
  9450. "bin/psysh"
  9451. ],
  9452. "type": "library",
  9453. "extra": {
  9454. "branch-alias": {
  9455. "dev-0.11": "0.11.x-dev"
  9456. },
  9457. "bamarni-bin": {
  9458. "bin-links": false,
  9459. "forward-command": false
  9460. }
  9461. },
  9462. "autoload": {
  9463. "files": [
  9464. "src/functions.php"
  9465. ],
  9466. "psr-4": {
  9467. "Psy\\": "src/"
  9468. }
  9469. },
  9470. "notification-url": "https://packagist.org/downloads/",
  9471. "license": [
  9472. "MIT"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Justin Hileman",
  9477. "email": "justin@justinhileman.info",
  9478. "homepage": "http://justinhileman.com"
  9479. }
  9480. ],
  9481. "description": "An interactive shell for modern PHP.",
  9482. "homepage": "http://psysh.org",
  9483. "keywords": [
  9484. "REPL",
  9485. "console",
  9486. "interactive",
  9487. "shell"
  9488. ],
  9489. "support": {
  9490. "issues": "https://github.com/bobthecow/psysh/issues",
  9491. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  9492. },
  9493. "time": "2023-10-14T21:56:36+00:00"
  9494. },
  9495. {
  9496. "name": "ralouphie/getallheaders",
  9497. "version": "3.0.3",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/ralouphie/getallheaders.git",
  9501. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9506. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9507. "shasum": ""
  9508. },
  9509. "require": {
  9510. "php": ">=5.6"
  9511. },
  9512. "require-dev": {
  9513. "php-coveralls/php-coveralls": "^2.1",
  9514. "phpunit/phpunit": "^5 || ^6.5"
  9515. },
  9516. "type": "library",
  9517. "autoload": {
  9518. "files": [
  9519. "src/getallheaders.php"
  9520. ]
  9521. },
  9522. "notification-url": "https://packagist.org/downloads/",
  9523. "license": [
  9524. "MIT"
  9525. ],
  9526. "authors": [
  9527. {
  9528. "name": "Ralph Khattar",
  9529. "email": "ralph.khattar@gmail.com"
  9530. }
  9531. ],
  9532. "description": "A polyfill for getallheaders.",
  9533. "support": {
  9534. "issues": "https://github.com/ralouphie/getallheaders/issues",
  9535. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  9536. },
  9537. "time": "2019-03-08T08:55:37+00:00"
  9538. },
  9539. {
  9540. "name": "sebastian/diff",
  9541. "version": "4.0.5",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/sebastianbergmann/diff.git",
  9545. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9550. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "php": ">=7.3"
  9555. },
  9556. "require-dev": {
  9557. "phpunit/phpunit": "^9.3",
  9558. "symfony/process": "^4.2 || ^5"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-master": "4.0-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "classmap": [
  9568. "src/"
  9569. ]
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "BSD-3-Clause"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Sebastian Bergmann",
  9578. "email": "sebastian@phpunit.de"
  9579. },
  9580. {
  9581. "name": "Kore Nordmann",
  9582. "email": "mail@kore-nordmann.de"
  9583. }
  9584. ],
  9585. "description": "Diff implementation",
  9586. "homepage": "https://github.com/sebastianbergmann/diff",
  9587. "keywords": [
  9588. "diff",
  9589. "udiff",
  9590. "unidiff",
  9591. "unified diff"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9595. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9596. },
  9597. "funding": [
  9598. {
  9599. "url": "https://github.com/sebastianbergmann",
  9600. "type": "github"
  9601. }
  9602. ],
  9603. "time": "2023-05-07T05:35:17+00:00"
  9604. },
  9605. {
  9606. "name": "stymiee/email-validator",
  9607. "version": "1.1.3",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/stymiee/email-validator.git",
  9611. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  9616. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  9617. "shasum": ""
  9618. },
  9619. "require": {
  9620. "ext-json": "*",
  9621. "php": ">=7.2.0"
  9622. },
  9623. "require-dev": {
  9624. "nunomaduro/phpinsights": "@stable",
  9625. "phpmd/phpmd": "@stable",
  9626. "phpunit/phpunit": "^8",
  9627. "squizlabs/php_codesniffer": "3.*"
  9628. },
  9629. "type": "library",
  9630. "autoload": {
  9631. "psr-4": {
  9632. "EmailValidator\\": [
  9633. "src/EmailValidator/"
  9634. ]
  9635. }
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "Apache-2.0"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "John Conde",
  9644. "email": "stymiee@gmail.com",
  9645. "homepage": "https://stymiee.dev",
  9646. "role": "Developer"
  9647. }
  9648. ],
  9649. "description": "The Email Validator library builds upon PHP's built in filter_var($emailAddress, FILTER_VALIDATE_EMAIL); by adding a default MX record check. It also offers additional validation against disposable email addresses, free email address providers, and a custom banned domain list.",
  9650. "homepage": "https://github.com/stymiee/php-simple-encryption",
  9651. "keywords": [
  9652. "email",
  9653. "php",
  9654. "validation"
  9655. ],
  9656. "support": {
  9657. "issues": "https://github.com/stymiee/email-validator/issues",
  9658. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  9659. },
  9660. "time": "2022-10-11T19:23:13+00:00"
  9661. },
  9662. {
  9663. "name": "symfony/console",
  9664. "version": "v6.3.8",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/symfony/console.git",
  9668. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9673. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9674. "shasum": ""
  9675. },
  9676. "require": {
  9677. "php": ">=8.1",
  9678. "symfony/deprecation-contracts": "^2.5|^3",
  9679. "symfony/polyfill-mbstring": "~1.0",
  9680. "symfony/service-contracts": "^2.5|^3",
  9681. "symfony/string": "^5.4|^6.0"
  9682. },
  9683. "conflict": {
  9684. "symfony/dependency-injection": "<5.4",
  9685. "symfony/dotenv": "<5.4",
  9686. "symfony/event-dispatcher": "<5.4",
  9687. "symfony/lock": "<5.4",
  9688. "symfony/process": "<5.4"
  9689. },
  9690. "provide": {
  9691. "psr/log-implementation": "1.0|2.0|3.0"
  9692. },
  9693. "require-dev": {
  9694. "psr/log": "^1|^2|^3",
  9695. "symfony/config": "^5.4|^6.0",
  9696. "symfony/dependency-injection": "^5.4|^6.0",
  9697. "symfony/event-dispatcher": "^5.4|^6.0",
  9698. "symfony/lock": "^5.4|^6.0",
  9699. "symfony/process": "^5.4|^6.0",
  9700. "symfony/var-dumper": "^5.4|^6.0"
  9701. },
  9702. "type": "library",
  9703. "autoload": {
  9704. "psr-4": {
  9705. "Symfony\\Component\\Console\\": ""
  9706. },
  9707. "exclude-from-classmap": [
  9708. "/Tests/"
  9709. ]
  9710. },
  9711. "notification-url": "https://packagist.org/downloads/",
  9712. "license": [
  9713. "MIT"
  9714. ],
  9715. "authors": [
  9716. {
  9717. "name": "Fabien Potencier",
  9718. "email": "fabien@symfony.com"
  9719. },
  9720. {
  9721. "name": "Symfony Community",
  9722. "homepage": "https://symfony.com/contributors"
  9723. }
  9724. ],
  9725. "description": "Eases the creation of beautiful and testable command line interfaces",
  9726. "homepage": "https://symfony.com",
  9727. "keywords": [
  9728. "cli",
  9729. "command-line",
  9730. "console",
  9731. "terminal"
  9732. ],
  9733. "support": {
  9734. "source": "https://github.com/symfony/console/tree/v6.3.8"
  9735. },
  9736. "funding": [
  9737. {
  9738. "url": "https://symfony.com/sponsor",
  9739. "type": "custom"
  9740. },
  9741. {
  9742. "url": "https://github.com/fabpot",
  9743. "type": "github"
  9744. },
  9745. {
  9746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9747. "type": "tidelift"
  9748. }
  9749. ],
  9750. "time": "2023-10-31T08:09:35+00:00"
  9751. },
  9752. {
  9753. "name": "symfony/dependency-injection",
  9754. "version": "v6.3.8",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/symfony/dependency-injection.git",
  9758. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9763. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "php": ">=8.1",
  9768. "psr/container": "^1.1|^2.0",
  9769. "symfony/deprecation-contracts": "^2.5|^3",
  9770. "symfony/service-contracts": "^2.5|^3.0",
  9771. "symfony/var-exporter": "^6.2.10"
  9772. },
  9773. "conflict": {
  9774. "ext-psr": "<1.1|>=2",
  9775. "symfony/config": "<6.1",
  9776. "symfony/finder": "<5.4",
  9777. "symfony/proxy-manager-bridge": "<6.3",
  9778. "symfony/yaml": "<5.4"
  9779. },
  9780. "provide": {
  9781. "psr/container-implementation": "1.1|2.0",
  9782. "symfony/service-implementation": "1.1|2.0|3.0"
  9783. },
  9784. "require-dev": {
  9785. "symfony/config": "^6.1",
  9786. "symfony/expression-language": "^5.4|^6.0",
  9787. "symfony/yaml": "^5.4|^6.0"
  9788. },
  9789. "type": "library",
  9790. "autoload": {
  9791. "psr-4": {
  9792. "Symfony\\Component\\DependencyInjection\\": ""
  9793. },
  9794. "exclude-from-classmap": [
  9795. "/Tests/"
  9796. ]
  9797. },
  9798. "notification-url": "https://packagist.org/downloads/",
  9799. "license": [
  9800. "MIT"
  9801. ],
  9802. "authors": [
  9803. {
  9804. "name": "Fabien Potencier",
  9805. "email": "fabien@symfony.com"
  9806. },
  9807. {
  9808. "name": "Symfony Community",
  9809. "homepage": "https://symfony.com/contributors"
  9810. }
  9811. ],
  9812. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  9813. "homepage": "https://symfony.com",
  9814. "support": {
  9815. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  9816. },
  9817. "funding": [
  9818. {
  9819. "url": "https://symfony.com/sponsor",
  9820. "type": "custom"
  9821. },
  9822. {
  9823. "url": "https://github.com/fabpot",
  9824. "type": "github"
  9825. },
  9826. {
  9827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9828. "type": "tidelift"
  9829. }
  9830. ],
  9831. "time": "2023-10-31T08:07:48+00:00"
  9832. },
  9833. {
  9834. "name": "symfony/deprecation-contracts",
  9835. "version": "v3.3.0",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/symfony/deprecation-contracts.git",
  9839. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  9844. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  9845. "shasum": ""
  9846. },
  9847. "require": {
  9848. "php": ">=8.1"
  9849. },
  9850. "type": "library",
  9851. "extra": {
  9852. "branch-alias": {
  9853. "dev-main": "3.4-dev"
  9854. },
  9855. "thanks": {
  9856. "name": "symfony/contracts",
  9857. "url": "https://github.com/symfony/contracts"
  9858. }
  9859. },
  9860. "autoload": {
  9861. "files": [
  9862. "function.php"
  9863. ]
  9864. },
  9865. "notification-url": "https://packagist.org/downloads/",
  9866. "license": [
  9867. "MIT"
  9868. ],
  9869. "authors": [
  9870. {
  9871. "name": "Nicolas Grekas",
  9872. "email": "p@tchwork.com"
  9873. },
  9874. {
  9875. "name": "Symfony Community",
  9876. "homepage": "https://symfony.com/contributors"
  9877. }
  9878. ],
  9879. "description": "A generic function and convention to trigger deprecation notices",
  9880. "homepage": "https://symfony.com",
  9881. "support": {
  9882. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  9883. },
  9884. "funding": [
  9885. {
  9886. "url": "https://symfony.com/sponsor",
  9887. "type": "custom"
  9888. },
  9889. {
  9890. "url": "https://github.com/fabpot",
  9891. "type": "github"
  9892. },
  9893. {
  9894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9895. "type": "tidelift"
  9896. }
  9897. ],
  9898. "time": "2023-05-23T14:45:45+00:00"
  9899. },
  9900. {
  9901. "name": "symfony/error-handler",
  9902. "version": "v6.3.5",
  9903. "source": {
  9904. "type": "git",
  9905. "url": "https://github.com/symfony/error-handler.git",
  9906. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  9907. },
  9908. "dist": {
  9909. "type": "zip",
  9910. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  9911. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  9912. "shasum": ""
  9913. },
  9914. "require": {
  9915. "php": ">=8.1",
  9916. "psr/log": "^1|^2|^3",
  9917. "symfony/var-dumper": "^5.4|^6.0"
  9918. },
  9919. "conflict": {
  9920. "symfony/deprecation-contracts": "<2.5"
  9921. },
  9922. "require-dev": {
  9923. "symfony/deprecation-contracts": "^2.5|^3",
  9924. "symfony/http-kernel": "^5.4|^6.0",
  9925. "symfony/serializer": "^5.4|^6.0"
  9926. },
  9927. "bin": [
  9928. "Resources/bin/patch-type-declarations"
  9929. ],
  9930. "type": "library",
  9931. "autoload": {
  9932. "psr-4": {
  9933. "Symfony\\Component\\ErrorHandler\\": ""
  9934. },
  9935. "exclude-from-classmap": [
  9936. "/Tests/"
  9937. ]
  9938. },
  9939. "notification-url": "https://packagist.org/downloads/",
  9940. "license": [
  9941. "MIT"
  9942. ],
  9943. "authors": [
  9944. {
  9945. "name": "Fabien Potencier",
  9946. "email": "fabien@symfony.com"
  9947. },
  9948. {
  9949. "name": "Symfony Community",
  9950. "homepage": "https://symfony.com/contributors"
  9951. }
  9952. ],
  9953. "description": "Provides tools to manage errors and ease debugging PHP code",
  9954. "homepage": "https://symfony.com",
  9955. "support": {
  9956. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  9957. },
  9958. "funding": [
  9959. {
  9960. "url": "https://symfony.com/sponsor",
  9961. "type": "custom"
  9962. },
  9963. {
  9964. "url": "https://github.com/fabpot",
  9965. "type": "github"
  9966. },
  9967. {
  9968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9969. "type": "tidelift"
  9970. }
  9971. ],
  9972. "time": "2023-09-12T06:57:20+00:00"
  9973. },
  9974. {
  9975. "name": "symfony/event-dispatcher",
  9976. "version": "v6.3.2",
  9977. "source": {
  9978. "type": "git",
  9979. "url": "https://github.com/symfony/event-dispatcher.git",
  9980. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  9981. },
  9982. "dist": {
  9983. "type": "zip",
  9984. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9985. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9986. "shasum": ""
  9987. },
  9988. "require": {
  9989. "php": ">=8.1",
  9990. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9991. },
  9992. "conflict": {
  9993. "symfony/dependency-injection": "<5.4",
  9994. "symfony/service-contracts": "<2.5"
  9995. },
  9996. "provide": {
  9997. "psr/event-dispatcher-implementation": "1.0",
  9998. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9999. },
  10000. "require-dev": {
  10001. "psr/log": "^1|^2|^3",
  10002. "symfony/config": "^5.4|^6.0",
  10003. "symfony/dependency-injection": "^5.4|^6.0",
  10004. "symfony/error-handler": "^5.4|^6.0",
  10005. "symfony/expression-language": "^5.4|^6.0",
  10006. "symfony/http-foundation": "^5.4|^6.0",
  10007. "symfony/service-contracts": "^2.5|^3",
  10008. "symfony/stopwatch": "^5.4|^6.0"
  10009. },
  10010. "type": "library",
  10011. "autoload": {
  10012. "psr-4": {
  10013. "Symfony\\Component\\EventDispatcher\\": ""
  10014. },
  10015. "exclude-from-classmap": [
  10016. "/Tests/"
  10017. ]
  10018. },
  10019. "notification-url": "https://packagist.org/downloads/",
  10020. "license": [
  10021. "MIT"
  10022. ],
  10023. "authors": [
  10024. {
  10025. "name": "Fabien Potencier",
  10026. "email": "fabien@symfony.com"
  10027. },
  10028. {
  10029. "name": "Symfony Community",
  10030. "homepage": "https://symfony.com/contributors"
  10031. }
  10032. ],
  10033. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10034. "homepage": "https://symfony.com",
  10035. "support": {
  10036. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  10037. },
  10038. "funding": [
  10039. {
  10040. "url": "https://symfony.com/sponsor",
  10041. "type": "custom"
  10042. },
  10043. {
  10044. "url": "https://github.com/fabpot",
  10045. "type": "github"
  10046. },
  10047. {
  10048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10049. "type": "tidelift"
  10050. }
  10051. ],
  10052. "time": "2023-07-06T06:56:43+00:00"
  10053. },
  10054. {
  10055. "name": "symfony/event-dispatcher-contracts",
  10056. "version": "v3.3.0",
  10057. "source": {
  10058. "type": "git",
  10059. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10060. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  10061. },
  10062. "dist": {
  10063. "type": "zip",
  10064. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  10065. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  10066. "shasum": ""
  10067. },
  10068. "require": {
  10069. "php": ">=8.1",
  10070. "psr/event-dispatcher": "^1"
  10071. },
  10072. "type": "library",
  10073. "extra": {
  10074. "branch-alias": {
  10075. "dev-main": "3.4-dev"
  10076. },
  10077. "thanks": {
  10078. "name": "symfony/contracts",
  10079. "url": "https://github.com/symfony/contracts"
  10080. }
  10081. },
  10082. "autoload": {
  10083. "psr-4": {
  10084. "Symfony\\Contracts\\EventDispatcher\\": ""
  10085. }
  10086. },
  10087. "notification-url": "https://packagist.org/downloads/",
  10088. "license": [
  10089. "MIT"
  10090. ],
  10091. "authors": [
  10092. {
  10093. "name": "Nicolas Grekas",
  10094. "email": "p@tchwork.com"
  10095. },
  10096. {
  10097. "name": "Symfony Community",
  10098. "homepage": "https://symfony.com/contributors"
  10099. }
  10100. ],
  10101. "description": "Generic abstractions related to dispatching event",
  10102. "homepage": "https://symfony.com",
  10103. "keywords": [
  10104. "abstractions",
  10105. "contracts",
  10106. "decoupling",
  10107. "interfaces",
  10108. "interoperability",
  10109. "standards"
  10110. ],
  10111. "support": {
  10112. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  10113. },
  10114. "funding": [
  10115. {
  10116. "url": "https://symfony.com/sponsor",
  10117. "type": "custom"
  10118. },
  10119. {
  10120. "url": "https://github.com/fabpot",
  10121. "type": "github"
  10122. },
  10123. {
  10124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10125. "type": "tidelift"
  10126. }
  10127. ],
  10128. "time": "2023-05-23T14:45:45+00:00"
  10129. },
  10130. {
  10131. "name": "symfony/filesystem",
  10132. "version": "v6.3.1",
  10133. "source": {
  10134. "type": "git",
  10135. "url": "https://github.com/symfony/filesystem.git",
  10136. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  10137. },
  10138. "dist": {
  10139. "type": "zip",
  10140. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10141. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10142. "shasum": ""
  10143. },
  10144. "require": {
  10145. "php": ">=8.1",
  10146. "symfony/polyfill-ctype": "~1.8",
  10147. "symfony/polyfill-mbstring": "~1.8"
  10148. },
  10149. "type": "library",
  10150. "autoload": {
  10151. "psr-4": {
  10152. "Symfony\\Component\\Filesystem\\": ""
  10153. },
  10154. "exclude-from-classmap": [
  10155. "/Tests/"
  10156. ]
  10157. },
  10158. "notification-url": "https://packagist.org/downloads/",
  10159. "license": [
  10160. "MIT"
  10161. ],
  10162. "authors": [
  10163. {
  10164. "name": "Fabien Potencier",
  10165. "email": "fabien@symfony.com"
  10166. },
  10167. {
  10168. "name": "Symfony Community",
  10169. "homepage": "https://symfony.com/contributors"
  10170. }
  10171. ],
  10172. "description": "Provides basic utilities for the filesystem",
  10173. "homepage": "https://symfony.com",
  10174. "support": {
  10175. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  10176. },
  10177. "funding": [
  10178. {
  10179. "url": "https://symfony.com/sponsor",
  10180. "type": "custom"
  10181. },
  10182. {
  10183. "url": "https://github.com/fabpot",
  10184. "type": "github"
  10185. },
  10186. {
  10187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10188. "type": "tidelift"
  10189. }
  10190. ],
  10191. "time": "2023-06-01T08:30:39+00:00"
  10192. },
  10193. {
  10194. "name": "symfony/finder",
  10195. "version": "v6.3.5",
  10196. "source": {
  10197. "type": "git",
  10198. "url": "https://github.com/symfony/finder.git",
  10199. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  10200. },
  10201. "dist": {
  10202. "type": "zip",
  10203. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  10204. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  10205. "shasum": ""
  10206. },
  10207. "require": {
  10208. "php": ">=8.1"
  10209. },
  10210. "require-dev": {
  10211. "symfony/filesystem": "^6.0"
  10212. },
  10213. "type": "library",
  10214. "autoload": {
  10215. "psr-4": {
  10216. "Symfony\\Component\\Finder\\": ""
  10217. },
  10218. "exclude-from-classmap": [
  10219. "/Tests/"
  10220. ]
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Fabien Potencier",
  10229. "email": "fabien@symfony.com"
  10230. },
  10231. {
  10232. "name": "Symfony Community",
  10233. "homepage": "https://symfony.com/contributors"
  10234. }
  10235. ],
  10236. "description": "Finds files and directories via an intuitive fluent interface",
  10237. "homepage": "https://symfony.com",
  10238. "support": {
  10239. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  10240. },
  10241. "funding": [
  10242. {
  10243. "url": "https://symfony.com/sponsor",
  10244. "type": "custom"
  10245. },
  10246. {
  10247. "url": "https://github.com/fabpot",
  10248. "type": "github"
  10249. },
  10250. {
  10251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10252. "type": "tidelift"
  10253. }
  10254. ],
  10255. "time": "2023-09-26T12:56:25+00:00"
  10256. },
  10257. {
  10258. "name": "symfony/http-foundation",
  10259. "version": "v6.3.8",
  10260. "source": {
  10261. "type": "git",
  10262. "url": "https://github.com/symfony/http-foundation.git",
  10263. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  10264. },
  10265. "dist": {
  10266. "type": "zip",
  10267. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  10268. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  10269. "shasum": ""
  10270. },
  10271. "require": {
  10272. "php": ">=8.1",
  10273. "symfony/deprecation-contracts": "^2.5|^3",
  10274. "symfony/polyfill-mbstring": "~1.1",
  10275. "symfony/polyfill-php83": "^1.27"
  10276. },
  10277. "conflict": {
  10278. "symfony/cache": "<6.3"
  10279. },
  10280. "require-dev": {
  10281. "doctrine/dbal": "^2.13.1|^3|^4",
  10282. "predis/predis": "^1.1|^2.0",
  10283. "symfony/cache": "^6.3",
  10284. "symfony/dependency-injection": "^5.4|^6.0",
  10285. "symfony/expression-language": "^5.4|^6.0",
  10286. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  10287. "symfony/mime": "^5.4|^6.0",
  10288. "symfony/rate-limiter": "^5.2|^6.0"
  10289. },
  10290. "type": "library",
  10291. "autoload": {
  10292. "psr-4": {
  10293. "Symfony\\Component\\HttpFoundation\\": ""
  10294. },
  10295. "exclude-from-classmap": [
  10296. "/Tests/"
  10297. ]
  10298. },
  10299. "notification-url": "https://packagist.org/downloads/",
  10300. "license": [
  10301. "MIT"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Fabien Potencier",
  10306. "email": "fabien@symfony.com"
  10307. },
  10308. {
  10309. "name": "Symfony Community",
  10310. "homepage": "https://symfony.com/contributors"
  10311. }
  10312. ],
  10313. "description": "Defines an object-oriented layer for the HTTP specification",
  10314. "homepage": "https://symfony.com",
  10315. "support": {
  10316. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  10317. },
  10318. "funding": [
  10319. {
  10320. "url": "https://symfony.com/sponsor",
  10321. "type": "custom"
  10322. },
  10323. {
  10324. "url": "https://github.com/fabpot",
  10325. "type": "github"
  10326. },
  10327. {
  10328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10329. "type": "tidelift"
  10330. }
  10331. ],
  10332. "time": "2023-11-07T10:17:15+00:00"
  10333. },
  10334. {
  10335. "name": "symfony/http-kernel",
  10336. "version": "v6.3.8",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/symfony/http-kernel.git",
  10340. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  10345. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  10346. "shasum": ""
  10347. },
  10348. "require": {
  10349. "php": ">=8.1",
  10350. "psr/log": "^1|^2|^3",
  10351. "symfony/deprecation-contracts": "^2.5|^3",
  10352. "symfony/error-handler": "^6.3",
  10353. "symfony/event-dispatcher": "^5.4|^6.0",
  10354. "symfony/http-foundation": "^6.3.4",
  10355. "symfony/polyfill-ctype": "^1.8"
  10356. },
  10357. "conflict": {
  10358. "symfony/browser-kit": "<5.4",
  10359. "symfony/cache": "<5.4",
  10360. "symfony/config": "<6.1",
  10361. "symfony/console": "<5.4",
  10362. "symfony/dependency-injection": "<6.3.4",
  10363. "symfony/doctrine-bridge": "<5.4",
  10364. "symfony/form": "<5.4",
  10365. "symfony/http-client": "<5.4",
  10366. "symfony/http-client-contracts": "<2.5",
  10367. "symfony/mailer": "<5.4",
  10368. "symfony/messenger": "<5.4",
  10369. "symfony/translation": "<5.4",
  10370. "symfony/translation-contracts": "<2.5",
  10371. "symfony/twig-bridge": "<5.4",
  10372. "symfony/validator": "<5.4",
  10373. "symfony/var-dumper": "<6.3",
  10374. "twig/twig": "<2.13"
  10375. },
  10376. "provide": {
  10377. "psr/log-implementation": "1.0|2.0|3.0"
  10378. },
  10379. "require-dev": {
  10380. "psr/cache": "^1.0|^2.0|^3.0",
  10381. "symfony/browser-kit": "^5.4|^6.0",
  10382. "symfony/clock": "^6.2",
  10383. "symfony/config": "^6.1",
  10384. "symfony/console": "^5.4|^6.0",
  10385. "symfony/css-selector": "^5.4|^6.0",
  10386. "symfony/dependency-injection": "^6.3.4",
  10387. "symfony/dom-crawler": "^5.4|^6.0",
  10388. "symfony/expression-language": "^5.4|^6.0",
  10389. "symfony/finder": "^5.4|^6.0",
  10390. "symfony/http-client-contracts": "^2.5|^3",
  10391. "symfony/process": "^5.4|^6.0",
  10392. "symfony/property-access": "^5.4.5|^6.0.5",
  10393. "symfony/routing": "^5.4|^6.0",
  10394. "symfony/serializer": "^6.3",
  10395. "symfony/stopwatch": "^5.4|^6.0",
  10396. "symfony/translation": "^5.4|^6.0",
  10397. "symfony/translation-contracts": "^2.5|^3",
  10398. "symfony/uid": "^5.4|^6.0",
  10399. "symfony/validator": "^6.3",
  10400. "symfony/var-exporter": "^6.2",
  10401. "twig/twig": "^2.13|^3.0.4"
  10402. },
  10403. "type": "library",
  10404. "autoload": {
  10405. "psr-4": {
  10406. "Symfony\\Component\\HttpKernel\\": ""
  10407. },
  10408. "exclude-from-classmap": [
  10409. "/Tests/"
  10410. ]
  10411. },
  10412. "notification-url": "https://packagist.org/downloads/",
  10413. "license": [
  10414. "MIT"
  10415. ],
  10416. "authors": [
  10417. {
  10418. "name": "Fabien Potencier",
  10419. "email": "fabien@symfony.com"
  10420. },
  10421. {
  10422. "name": "Symfony Community",
  10423. "homepage": "https://symfony.com/contributors"
  10424. }
  10425. ],
  10426. "description": "Provides a structured process for converting a Request into a Response",
  10427. "homepage": "https://symfony.com",
  10428. "support": {
  10429. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  10430. },
  10431. "funding": [
  10432. {
  10433. "url": "https://symfony.com/sponsor",
  10434. "type": "custom"
  10435. },
  10436. {
  10437. "url": "https://github.com/fabpot",
  10438. "type": "github"
  10439. },
  10440. {
  10441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10442. "type": "tidelift"
  10443. }
  10444. ],
  10445. "time": "2023-11-10T13:47:32+00:00"
  10446. },
  10447. {
  10448. "name": "symfony/mime",
  10449. "version": "v6.3.5",
  10450. "source": {
  10451. "type": "git",
  10452. "url": "https://github.com/symfony/mime.git",
  10453. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  10454. },
  10455. "dist": {
  10456. "type": "zip",
  10457. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10458. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10459. "shasum": ""
  10460. },
  10461. "require": {
  10462. "php": ">=8.1",
  10463. "symfony/deprecation-contracts": "^2.5|^3",
  10464. "symfony/polyfill-intl-idn": "^1.10",
  10465. "symfony/polyfill-mbstring": "^1.0"
  10466. },
  10467. "conflict": {
  10468. "egulias/email-validator": "~3.0.0",
  10469. "phpdocumentor/reflection-docblock": "<3.2.2",
  10470. "phpdocumentor/type-resolver": "<1.4.0",
  10471. "symfony/mailer": "<5.4",
  10472. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  10473. },
  10474. "require-dev": {
  10475. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10476. "league/html-to-markdown": "^5.0",
  10477. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10478. "symfony/dependency-injection": "^5.4|^6.0",
  10479. "symfony/property-access": "^5.4|^6.0",
  10480. "symfony/property-info": "^5.4|^6.0",
  10481. "symfony/serializer": "~6.2.13|^6.3.2"
  10482. },
  10483. "type": "library",
  10484. "autoload": {
  10485. "psr-4": {
  10486. "Symfony\\Component\\Mime\\": ""
  10487. },
  10488. "exclude-from-classmap": [
  10489. "/Tests/"
  10490. ]
  10491. },
  10492. "notification-url": "https://packagist.org/downloads/",
  10493. "license": [
  10494. "MIT"
  10495. ],
  10496. "authors": [
  10497. {
  10498. "name": "Fabien Potencier",
  10499. "email": "fabien@symfony.com"
  10500. },
  10501. {
  10502. "name": "Symfony Community",
  10503. "homepage": "https://symfony.com/contributors"
  10504. }
  10505. ],
  10506. "description": "Allows manipulating MIME messages",
  10507. "homepage": "https://symfony.com",
  10508. "keywords": [
  10509. "mime",
  10510. "mime-type"
  10511. ],
  10512. "support": {
  10513. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  10514. },
  10515. "funding": [
  10516. {
  10517. "url": "https://symfony.com/sponsor",
  10518. "type": "custom"
  10519. },
  10520. {
  10521. "url": "https://github.com/fabpot",
  10522. "type": "github"
  10523. },
  10524. {
  10525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10526. "type": "tidelift"
  10527. }
  10528. ],
  10529. "time": "2023-09-29T06:59:36+00:00"
  10530. },
  10531. {
  10532. "name": "symfony/polyfill-ctype",
  10533. "version": "v1.27.0",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/symfony/polyfill-ctype.git",
  10537. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  10542. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  10543. "shasum": ""
  10544. },
  10545. "require": {
  10546. "php": ">=7.1"
  10547. },
  10548. "provide": {
  10549. "ext-ctype": "*"
  10550. },
  10551. "suggest": {
  10552. "ext-ctype": "For best performance"
  10553. },
  10554. "type": "library",
  10555. "extra": {
  10556. "branch-alias": {
  10557. "dev-main": "1.27-dev"
  10558. },
  10559. "thanks": {
  10560. "name": "symfony/polyfill",
  10561. "url": "https://github.com/symfony/polyfill"
  10562. }
  10563. },
  10564. "autoload": {
  10565. "files": [
  10566. "bootstrap.php"
  10567. ],
  10568. "psr-4": {
  10569. "Symfony\\Polyfill\\Ctype\\": ""
  10570. }
  10571. },
  10572. "notification-url": "https://packagist.org/downloads/",
  10573. "license": [
  10574. "MIT"
  10575. ],
  10576. "authors": [
  10577. {
  10578. "name": "Gert de Pagter",
  10579. "email": "BackEndTea@gmail.com"
  10580. },
  10581. {
  10582. "name": "Symfony Community",
  10583. "homepage": "https://symfony.com/contributors"
  10584. }
  10585. ],
  10586. "description": "Symfony polyfill for ctype functions",
  10587. "homepage": "https://symfony.com",
  10588. "keywords": [
  10589. "compatibility",
  10590. "ctype",
  10591. "polyfill",
  10592. "portable"
  10593. ],
  10594. "support": {
  10595. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  10596. },
  10597. "funding": [
  10598. {
  10599. "url": "https://symfony.com/sponsor",
  10600. "type": "custom"
  10601. },
  10602. {
  10603. "url": "https://github.com/fabpot",
  10604. "type": "github"
  10605. },
  10606. {
  10607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10608. "type": "tidelift"
  10609. }
  10610. ],
  10611. "time": "2022-11-03T14:55:06+00:00"
  10612. },
  10613. {
  10614. "name": "symfony/polyfill-iconv",
  10615. "version": "v1.27.0",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/symfony/polyfill-iconv.git",
  10619. "reference": "927013f3aac555983a5059aada98e1907d842695"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  10624. "reference": "927013f3aac555983a5059aada98e1907d842695",
  10625. "shasum": ""
  10626. },
  10627. "require": {
  10628. "php": ">=7.1"
  10629. },
  10630. "provide": {
  10631. "ext-iconv": "*"
  10632. },
  10633. "suggest": {
  10634. "ext-iconv": "For best performance"
  10635. },
  10636. "type": "library",
  10637. "extra": {
  10638. "branch-alias": {
  10639. "dev-main": "1.27-dev"
  10640. },
  10641. "thanks": {
  10642. "name": "symfony/polyfill",
  10643. "url": "https://github.com/symfony/polyfill"
  10644. }
  10645. },
  10646. "autoload": {
  10647. "files": [
  10648. "bootstrap.php"
  10649. ],
  10650. "psr-4": {
  10651. "Symfony\\Polyfill\\Iconv\\": ""
  10652. }
  10653. },
  10654. "notification-url": "https://packagist.org/downloads/",
  10655. "license": [
  10656. "MIT"
  10657. ],
  10658. "authors": [
  10659. {
  10660. "name": "Nicolas Grekas",
  10661. "email": "p@tchwork.com"
  10662. },
  10663. {
  10664. "name": "Symfony Community",
  10665. "homepage": "https://symfony.com/contributors"
  10666. }
  10667. ],
  10668. "description": "Symfony polyfill for the Iconv extension",
  10669. "homepage": "https://symfony.com",
  10670. "keywords": [
  10671. "compatibility",
  10672. "iconv",
  10673. "polyfill",
  10674. "portable",
  10675. "shim"
  10676. ],
  10677. "support": {
  10678. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  10679. },
  10680. "funding": [
  10681. {
  10682. "url": "https://symfony.com/sponsor",
  10683. "type": "custom"
  10684. },
  10685. {
  10686. "url": "https://github.com/fabpot",
  10687. "type": "github"
  10688. },
  10689. {
  10690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10691. "type": "tidelift"
  10692. }
  10693. ],
  10694. "time": "2022-11-03T14:55:06+00:00"
  10695. },
  10696. {
  10697. "name": "symfony/polyfill-intl-grapheme",
  10698. "version": "v1.27.0",
  10699. "source": {
  10700. "type": "git",
  10701. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10702. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  10703. },
  10704. "dist": {
  10705. "type": "zip",
  10706. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  10707. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  10708. "shasum": ""
  10709. },
  10710. "require": {
  10711. "php": ">=7.1"
  10712. },
  10713. "suggest": {
  10714. "ext-intl": "For best performance"
  10715. },
  10716. "type": "library",
  10717. "extra": {
  10718. "branch-alias": {
  10719. "dev-main": "1.27-dev"
  10720. },
  10721. "thanks": {
  10722. "name": "symfony/polyfill",
  10723. "url": "https://github.com/symfony/polyfill"
  10724. }
  10725. },
  10726. "autoload": {
  10727. "files": [
  10728. "bootstrap.php"
  10729. ],
  10730. "psr-4": {
  10731. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10732. }
  10733. },
  10734. "notification-url": "https://packagist.org/downloads/",
  10735. "license": [
  10736. "MIT"
  10737. ],
  10738. "authors": [
  10739. {
  10740. "name": "Nicolas Grekas",
  10741. "email": "p@tchwork.com"
  10742. },
  10743. {
  10744. "name": "Symfony Community",
  10745. "homepage": "https://symfony.com/contributors"
  10746. }
  10747. ],
  10748. "description": "Symfony polyfill for intl's grapheme_* functions",
  10749. "homepage": "https://symfony.com",
  10750. "keywords": [
  10751. "compatibility",
  10752. "grapheme",
  10753. "intl",
  10754. "polyfill",
  10755. "portable",
  10756. "shim"
  10757. ],
  10758. "support": {
  10759. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  10760. },
  10761. "funding": [
  10762. {
  10763. "url": "https://symfony.com/sponsor",
  10764. "type": "custom"
  10765. },
  10766. {
  10767. "url": "https://github.com/fabpot",
  10768. "type": "github"
  10769. },
  10770. {
  10771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10772. "type": "tidelift"
  10773. }
  10774. ],
  10775. "time": "2022-11-03T14:55:06+00:00"
  10776. },
  10777. {
  10778. "name": "symfony/polyfill-intl-idn",
  10779. "version": "v1.27.0",
  10780. "source": {
  10781. "type": "git",
  10782. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10783. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  10784. },
  10785. "dist": {
  10786. "type": "zip",
  10787. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  10788. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  10789. "shasum": ""
  10790. },
  10791. "require": {
  10792. "php": ">=7.1",
  10793. "symfony/polyfill-intl-normalizer": "^1.10",
  10794. "symfony/polyfill-php72": "^1.10"
  10795. },
  10796. "suggest": {
  10797. "ext-intl": "For best performance"
  10798. },
  10799. "type": "library",
  10800. "extra": {
  10801. "branch-alias": {
  10802. "dev-main": "1.27-dev"
  10803. },
  10804. "thanks": {
  10805. "name": "symfony/polyfill",
  10806. "url": "https://github.com/symfony/polyfill"
  10807. }
  10808. },
  10809. "autoload": {
  10810. "files": [
  10811. "bootstrap.php"
  10812. ],
  10813. "psr-4": {
  10814. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10815. }
  10816. },
  10817. "notification-url": "https://packagist.org/downloads/",
  10818. "license": [
  10819. "MIT"
  10820. ],
  10821. "authors": [
  10822. {
  10823. "name": "Laurent Bassin",
  10824. "email": "laurent@bassin.info"
  10825. },
  10826. {
  10827. "name": "Trevor Rowbotham",
  10828. "email": "trevor.rowbotham@pm.me"
  10829. },
  10830. {
  10831. "name": "Symfony Community",
  10832. "homepage": "https://symfony.com/contributors"
  10833. }
  10834. ],
  10835. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10836. "homepage": "https://symfony.com",
  10837. "keywords": [
  10838. "compatibility",
  10839. "idn",
  10840. "intl",
  10841. "polyfill",
  10842. "portable",
  10843. "shim"
  10844. ],
  10845. "support": {
  10846. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  10847. },
  10848. "funding": [
  10849. {
  10850. "url": "https://symfony.com/sponsor",
  10851. "type": "custom"
  10852. },
  10853. {
  10854. "url": "https://github.com/fabpot",
  10855. "type": "github"
  10856. },
  10857. {
  10858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10859. "type": "tidelift"
  10860. }
  10861. ],
  10862. "time": "2022-11-03T14:55:06+00:00"
  10863. },
  10864. {
  10865. "name": "symfony/polyfill-intl-normalizer",
  10866. "version": "v1.27.0",
  10867. "source": {
  10868. "type": "git",
  10869. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10870. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  10871. },
  10872. "dist": {
  10873. "type": "zip",
  10874. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  10875. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  10876. "shasum": ""
  10877. },
  10878. "require": {
  10879. "php": ">=7.1"
  10880. },
  10881. "suggest": {
  10882. "ext-intl": "For best performance"
  10883. },
  10884. "type": "library",
  10885. "extra": {
  10886. "branch-alias": {
  10887. "dev-main": "1.27-dev"
  10888. },
  10889. "thanks": {
  10890. "name": "symfony/polyfill",
  10891. "url": "https://github.com/symfony/polyfill"
  10892. }
  10893. },
  10894. "autoload": {
  10895. "files": [
  10896. "bootstrap.php"
  10897. ],
  10898. "psr-4": {
  10899. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10900. },
  10901. "classmap": [
  10902. "Resources/stubs"
  10903. ]
  10904. },
  10905. "notification-url": "https://packagist.org/downloads/",
  10906. "license": [
  10907. "MIT"
  10908. ],
  10909. "authors": [
  10910. {
  10911. "name": "Nicolas Grekas",
  10912. "email": "p@tchwork.com"
  10913. },
  10914. {
  10915. "name": "Symfony Community",
  10916. "homepage": "https://symfony.com/contributors"
  10917. }
  10918. ],
  10919. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10920. "homepage": "https://symfony.com",
  10921. "keywords": [
  10922. "compatibility",
  10923. "intl",
  10924. "normalizer",
  10925. "polyfill",
  10926. "portable",
  10927. "shim"
  10928. ],
  10929. "support": {
  10930. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  10931. },
  10932. "funding": [
  10933. {
  10934. "url": "https://symfony.com/sponsor",
  10935. "type": "custom"
  10936. },
  10937. {
  10938. "url": "https://github.com/fabpot",
  10939. "type": "github"
  10940. },
  10941. {
  10942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10943. "type": "tidelift"
  10944. }
  10945. ],
  10946. "time": "2022-11-03T14:55:06+00:00"
  10947. },
  10948. {
  10949. "name": "symfony/polyfill-mbstring",
  10950. "version": "v1.27.0",
  10951. "source": {
  10952. "type": "git",
  10953. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10954. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  10955. },
  10956. "dist": {
  10957. "type": "zip",
  10958. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  10959. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  10960. "shasum": ""
  10961. },
  10962. "require": {
  10963. "php": ">=7.1"
  10964. },
  10965. "provide": {
  10966. "ext-mbstring": "*"
  10967. },
  10968. "suggest": {
  10969. "ext-mbstring": "For best performance"
  10970. },
  10971. "type": "library",
  10972. "extra": {
  10973. "branch-alias": {
  10974. "dev-main": "1.27-dev"
  10975. },
  10976. "thanks": {
  10977. "name": "symfony/polyfill",
  10978. "url": "https://github.com/symfony/polyfill"
  10979. }
  10980. },
  10981. "autoload": {
  10982. "files": [
  10983. "bootstrap.php"
  10984. ],
  10985. "psr-4": {
  10986. "Symfony\\Polyfill\\Mbstring\\": ""
  10987. }
  10988. },
  10989. "notification-url": "https://packagist.org/downloads/",
  10990. "license": [
  10991. "MIT"
  10992. ],
  10993. "authors": [
  10994. {
  10995. "name": "Nicolas Grekas",
  10996. "email": "p@tchwork.com"
  10997. },
  10998. {
  10999. "name": "Symfony Community",
  11000. "homepage": "https://symfony.com/contributors"
  11001. }
  11002. ],
  11003. "description": "Symfony polyfill for the Mbstring extension",
  11004. "homepage": "https://symfony.com",
  11005. "keywords": [
  11006. "compatibility",
  11007. "mbstring",
  11008. "polyfill",
  11009. "portable",
  11010. "shim"
  11011. ],
  11012. "support": {
  11013. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  11014. },
  11015. "funding": [
  11016. {
  11017. "url": "https://symfony.com/sponsor",
  11018. "type": "custom"
  11019. },
  11020. {
  11021. "url": "https://github.com/fabpot",
  11022. "type": "github"
  11023. },
  11024. {
  11025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11026. "type": "tidelift"
  11027. }
  11028. ],
  11029. "time": "2022-11-03T14:55:06+00:00"
  11030. },
  11031. {
  11032. "name": "symfony/polyfill-php72",
  11033. "version": "v1.28.0",
  11034. "source": {
  11035. "type": "git",
  11036. "url": "https://github.com/symfony/polyfill-php72.git",
  11037. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  11038. },
  11039. "dist": {
  11040. "type": "zip",
  11041. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  11042. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  11043. "shasum": ""
  11044. },
  11045. "require": {
  11046. "php": ">=7.1"
  11047. },
  11048. "type": "library",
  11049. "extra": {
  11050. "branch-alias": {
  11051. "dev-main": "1.28-dev"
  11052. },
  11053. "thanks": {
  11054. "name": "symfony/polyfill",
  11055. "url": "https://github.com/symfony/polyfill"
  11056. }
  11057. },
  11058. "autoload": {
  11059. "files": [
  11060. "bootstrap.php"
  11061. ],
  11062. "psr-4": {
  11063. "Symfony\\Polyfill\\Php72\\": ""
  11064. }
  11065. },
  11066. "notification-url": "https://packagist.org/downloads/",
  11067. "license": [
  11068. "MIT"
  11069. ],
  11070. "authors": [
  11071. {
  11072. "name": "Nicolas Grekas",
  11073. "email": "p@tchwork.com"
  11074. },
  11075. {
  11076. "name": "Symfony Community",
  11077. "homepage": "https://symfony.com/contributors"
  11078. }
  11079. ],
  11080. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11081. "homepage": "https://symfony.com",
  11082. "keywords": [
  11083. "compatibility",
  11084. "polyfill",
  11085. "portable",
  11086. "shim"
  11087. ],
  11088. "support": {
  11089. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  11090. },
  11091. "funding": [
  11092. {
  11093. "url": "https://symfony.com/sponsor",
  11094. "type": "custom"
  11095. },
  11096. {
  11097. "url": "https://github.com/fabpot",
  11098. "type": "github"
  11099. },
  11100. {
  11101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11102. "type": "tidelift"
  11103. }
  11104. ],
  11105. "time": "2023-01-26T09:26:14+00:00"
  11106. },
  11107. {
  11108. "name": "symfony/polyfill-php80",
  11109. "version": "v1.28.0",
  11110. "source": {
  11111. "type": "git",
  11112. "url": "https://github.com/symfony/polyfill-php80.git",
  11113. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  11114. },
  11115. "dist": {
  11116. "type": "zip",
  11117. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11118. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11119. "shasum": ""
  11120. },
  11121. "require": {
  11122. "php": ">=7.1"
  11123. },
  11124. "type": "library",
  11125. "extra": {
  11126. "branch-alias": {
  11127. "dev-main": "1.28-dev"
  11128. },
  11129. "thanks": {
  11130. "name": "symfony/polyfill",
  11131. "url": "https://github.com/symfony/polyfill"
  11132. }
  11133. },
  11134. "autoload": {
  11135. "files": [
  11136. "bootstrap.php"
  11137. ],
  11138. "psr-4": {
  11139. "Symfony\\Polyfill\\Php80\\": ""
  11140. },
  11141. "classmap": [
  11142. "Resources/stubs"
  11143. ]
  11144. },
  11145. "notification-url": "https://packagist.org/downloads/",
  11146. "license": [
  11147. "MIT"
  11148. ],
  11149. "authors": [
  11150. {
  11151. "name": "Ion Bazan",
  11152. "email": "ion.bazan@gmail.com"
  11153. },
  11154. {
  11155. "name": "Nicolas Grekas",
  11156. "email": "p@tchwork.com"
  11157. },
  11158. {
  11159. "name": "Symfony Community",
  11160. "homepage": "https://symfony.com/contributors"
  11161. }
  11162. ],
  11163. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11164. "homepage": "https://symfony.com",
  11165. "keywords": [
  11166. "compatibility",
  11167. "polyfill",
  11168. "portable",
  11169. "shim"
  11170. ],
  11171. "support": {
  11172. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  11173. },
  11174. "funding": [
  11175. {
  11176. "url": "https://symfony.com/sponsor",
  11177. "type": "custom"
  11178. },
  11179. {
  11180. "url": "https://github.com/fabpot",
  11181. "type": "github"
  11182. },
  11183. {
  11184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11185. "type": "tidelift"
  11186. }
  11187. ],
  11188. "time": "2023-01-26T09:26:14+00:00"
  11189. },
  11190. {
  11191. "name": "symfony/polyfill-php81",
  11192. "version": "v1.28.0",
  11193. "source": {
  11194. "type": "git",
  11195. "url": "https://github.com/symfony/polyfill-php81.git",
  11196. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  11197. },
  11198. "dist": {
  11199. "type": "zip",
  11200. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  11201. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  11202. "shasum": ""
  11203. },
  11204. "require": {
  11205. "php": ">=7.1"
  11206. },
  11207. "type": "library",
  11208. "extra": {
  11209. "branch-alias": {
  11210. "dev-main": "1.28-dev"
  11211. },
  11212. "thanks": {
  11213. "name": "symfony/polyfill",
  11214. "url": "https://github.com/symfony/polyfill"
  11215. }
  11216. },
  11217. "autoload": {
  11218. "files": [
  11219. "bootstrap.php"
  11220. ],
  11221. "psr-4": {
  11222. "Symfony\\Polyfill\\Php81\\": ""
  11223. },
  11224. "classmap": [
  11225. "Resources/stubs"
  11226. ]
  11227. },
  11228. "notification-url": "https://packagist.org/downloads/",
  11229. "license": [
  11230. "MIT"
  11231. ],
  11232. "authors": [
  11233. {
  11234. "name": "Nicolas Grekas",
  11235. "email": "p@tchwork.com"
  11236. },
  11237. {
  11238. "name": "Symfony Community",
  11239. "homepage": "https://symfony.com/contributors"
  11240. }
  11241. ],
  11242. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11243. "homepage": "https://symfony.com",
  11244. "keywords": [
  11245. "compatibility",
  11246. "polyfill",
  11247. "portable",
  11248. "shim"
  11249. ],
  11250. "support": {
  11251. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  11252. },
  11253. "funding": [
  11254. {
  11255. "url": "https://symfony.com/sponsor",
  11256. "type": "custom"
  11257. },
  11258. {
  11259. "url": "https://github.com/fabpot",
  11260. "type": "github"
  11261. },
  11262. {
  11263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11264. "type": "tidelift"
  11265. }
  11266. ],
  11267. "time": "2023-01-26T09:26:14+00:00"
  11268. },
  11269. {
  11270. "name": "symfony/polyfill-php83",
  11271. "version": "v1.27.0",
  11272. "source": {
  11273. "type": "git",
  11274. "url": "https://github.com/symfony/polyfill-php83.git",
  11275. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  11276. },
  11277. "dist": {
  11278. "type": "zip",
  11279. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  11280. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  11281. "shasum": ""
  11282. },
  11283. "require": {
  11284. "php": ">=7.1",
  11285. "symfony/polyfill-php80": "^1.14"
  11286. },
  11287. "type": "library",
  11288. "extra": {
  11289. "branch-alias": {
  11290. "dev-main": "1.27-dev"
  11291. },
  11292. "thanks": {
  11293. "name": "symfony/polyfill",
  11294. "url": "https://github.com/symfony/polyfill"
  11295. }
  11296. },
  11297. "autoload": {
  11298. "files": [
  11299. "bootstrap.php"
  11300. ],
  11301. "psr-4": {
  11302. "Symfony\\Polyfill\\Php83\\": ""
  11303. }
  11304. },
  11305. "notification-url": "https://packagist.org/downloads/",
  11306. "license": [
  11307. "MIT"
  11308. ],
  11309. "authors": [
  11310. {
  11311. "name": "Nicolas Grekas",
  11312. "email": "p@tchwork.com"
  11313. },
  11314. {
  11315. "name": "Symfony Community",
  11316. "homepage": "https://symfony.com/contributors"
  11317. }
  11318. ],
  11319. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11320. "homepage": "https://symfony.com",
  11321. "keywords": [
  11322. "compatibility",
  11323. "polyfill",
  11324. "portable",
  11325. "shim"
  11326. ],
  11327. "support": {
  11328. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  11329. },
  11330. "funding": [
  11331. {
  11332. "url": "https://symfony.com/sponsor",
  11333. "type": "custom"
  11334. },
  11335. {
  11336. "url": "https://github.com/fabpot",
  11337. "type": "github"
  11338. },
  11339. {
  11340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11341. "type": "tidelift"
  11342. }
  11343. ],
  11344. "time": "2022-11-03T14:55:06+00:00"
  11345. },
  11346. {
  11347. "name": "symfony/process",
  11348. "version": "v6.3.4",
  11349. "source": {
  11350. "type": "git",
  11351. "url": "https://github.com/symfony/process.git",
  11352. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  11353. },
  11354. "dist": {
  11355. "type": "zip",
  11356. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  11357. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  11358. "shasum": ""
  11359. },
  11360. "require": {
  11361. "php": ">=8.1"
  11362. },
  11363. "type": "library",
  11364. "autoload": {
  11365. "psr-4": {
  11366. "Symfony\\Component\\Process\\": ""
  11367. },
  11368. "exclude-from-classmap": [
  11369. "/Tests/"
  11370. ]
  11371. },
  11372. "notification-url": "https://packagist.org/downloads/",
  11373. "license": [
  11374. "MIT"
  11375. ],
  11376. "authors": [
  11377. {
  11378. "name": "Fabien Potencier",
  11379. "email": "fabien@symfony.com"
  11380. },
  11381. {
  11382. "name": "Symfony Community",
  11383. "homepage": "https://symfony.com/contributors"
  11384. }
  11385. ],
  11386. "description": "Executes commands in sub-processes",
  11387. "homepage": "https://symfony.com",
  11388. "support": {
  11389. "source": "https://github.com/symfony/process/tree/v6.3.4"
  11390. },
  11391. "funding": [
  11392. {
  11393. "url": "https://symfony.com/sponsor",
  11394. "type": "custom"
  11395. },
  11396. {
  11397. "url": "https://github.com/fabpot",
  11398. "type": "github"
  11399. },
  11400. {
  11401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11402. "type": "tidelift"
  11403. }
  11404. ],
  11405. "time": "2023-08-07T10:39:22+00:00"
  11406. },
  11407. {
  11408. "name": "symfony/psr-http-message-bridge",
  11409. "version": "v2.2.0",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11413. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  11418. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "php": ">=7.2.5",
  11423. "psr/http-message": "^1.0 || ^2.0",
  11424. "symfony/http-foundation": "^5.4 || ^6.0"
  11425. },
  11426. "require-dev": {
  11427. "nyholm/psr7": "^1.1",
  11428. "psr/log": "^1.1 || ^2 || ^3",
  11429. "symfony/browser-kit": "^5.4 || ^6.0",
  11430. "symfony/config": "^5.4 || ^6.0",
  11431. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11432. "symfony/framework-bundle": "^5.4 || ^6.0",
  11433. "symfony/http-kernel": "^5.4 || ^6.0",
  11434. "symfony/phpunit-bridge": "^6.2"
  11435. },
  11436. "suggest": {
  11437. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11438. },
  11439. "type": "symfony-bridge",
  11440. "extra": {
  11441. "branch-alias": {
  11442. "dev-main": "2.2-dev"
  11443. }
  11444. },
  11445. "autoload": {
  11446. "psr-4": {
  11447. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11448. },
  11449. "exclude-from-classmap": [
  11450. "/Tests/"
  11451. ]
  11452. },
  11453. "notification-url": "https://packagist.org/downloads/",
  11454. "license": [
  11455. "MIT"
  11456. ],
  11457. "authors": [
  11458. {
  11459. "name": "Fabien Potencier",
  11460. "email": "fabien@symfony.com"
  11461. },
  11462. {
  11463. "name": "Symfony Community",
  11464. "homepage": "http://symfony.com/contributors"
  11465. }
  11466. ],
  11467. "description": "PSR HTTP message bridge",
  11468. "homepage": "http://symfony.com",
  11469. "keywords": [
  11470. "http",
  11471. "http-message",
  11472. "psr-17",
  11473. "psr-7"
  11474. ],
  11475. "support": {
  11476. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  11477. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  11478. },
  11479. "funding": [
  11480. {
  11481. "url": "https://symfony.com/sponsor",
  11482. "type": "custom"
  11483. },
  11484. {
  11485. "url": "https://github.com/fabpot",
  11486. "type": "github"
  11487. },
  11488. {
  11489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11490. "type": "tidelift"
  11491. }
  11492. ],
  11493. "time": "2023-04-21T08:40:19+00:00"
  11494. },
  11495. {
  11496. "name": "symfony/routing",
  11497. "version": "v6.3.5",
  11498. "source": {
  11499. "type": "git",
  11500. "url": "https://github.com/symfony/routing.git",
  11501. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  11502. },
  11503. "dist": {
  11504. "type": "zip",
  11505. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  11506. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  11507. "shasum": ""
  11508. },
  11509. "require": {
  11510. "php": ">=8.1",
  11511. "symfony/deprecation-contracts": "^2.5|^3"
  11512. },
  11513. "conflict": {
  11514. "doctrine/annotations": "<1.12",
  11515. "symfony/config": "<6.2",
  11516. "symfony/dependency-injection": "<5.4",
  11517. "symfony/yaml": "<5.4"
  11518. },
  11519. "require-dev": {
  11520. "doctrine/annotations": "^1.12|^2",
  11521. "psr/log": "^1|^2|^3",
  11522. "symfony/config": "^6.2",
  11523. "symfony/dependency-injection": "^5.4|^6.0",
  11524. "symfony/expression-language": "^5.4|^6.0",
  11525. "symfony/http-foundation": "^5.4|^6.0",
  11526. "symfony/yaml": "^5.4|^6.0"
  11527. },
  11528. "type": "library",
  11529. "autoload": {
  11530. "psr-4": {
  11531. "Symfony\\Component\\Routing\\": ""
  11532. },
  11533. "exclude-from-classmap": [
  11534. "/Tests/"
  11535. ]
  11536. },
  11537. "notification-url": "https://packagist.org/downloads/",
  11538. "license": [
  11539. "MIT"
  11540. ],
  11541. "authors": [
  11542. {
  11543. "name": "Fabien Potencier",
  11544. "email": "fabien@symfony.com"
  11545. },
  11546. {
  11547. "name": "Symfony Community",
  11548. "homepage": "https://symfony.com/contributors"
  11549. }
  11550. ],
  11551. "description": "Maps an HTTP request to a set of configuration variables",
  11552. "homepage": "https://symfony.com",
  11553. "keywords": [
  11554. "router",
  11555. "routing",
  11556. "uri",
  11557. "url"
  11558. ],
  11559. "support": {
  11560. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  11561. },
  11562. "funding": [
  11563. {
  11564. "url": "https://symfony.com/sponsor",
  11565. "type": "custom"
  11566. },
  11567. {
  11568. "url": "https://github.com/fabpot",
  11569. "type": "github"
  11570. },
  11571. {
  11572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11573. "type": "tidelift"
  11574. }
  11575. ],
  11576. "time": "2023-09-20T16:05:51+00:00"
  11577. },
  11578. {
  11579. "name": "symfony/serializer",
  11580. "version": "v6.3.8",
  11581. "source": {
  11582. "type": "git",
  11583. "url": "https://github.com/symfony/serializer.git",
  11584. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  11585. },
  11586. "dist": {
  11587. "type": "zip",
  11588. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  11589. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  11590. "shasum": ""
  11591. },
  11592. "require": {
  11593. "php": ">=8.1",
  11594. "symfony/deprecation-contracts": "^2.5|^3",
  11595. "symfony/polyfill-ctype": "~1.8"
  11596. },
  11597. "conflict": {
  11598. "doctrine/annotations": "<1.12",
  11599. "phpdocumentor/reflection-docblock": "<3.2.2",
  11600. "phpdocumentor/type-resolver": "<1.4.0",
  11601. "symfony/dependency-injection": "<5.4",
  11602. "symfony/property-access": "<5.4",
  11603. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  11604. "symfony/uid": "<5.4",
  11605. "symfony/yaml": "<5.4"
  11606. },
  11607. "require-dev": {
  11608. "doctrine/annotations": "^1.12|^2",
  11609. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  11610. "symfony/cache": "^5.4|^6.0",
  11611. "symfony/config": "^5.4|^6.0",
  11612. "symfony/console": "^5.4|^6.0",
  11613. "symfony/dependency-injection": "^5.4|^6.0",
  11614. "symfony/error-handler": "^5.4|^6.0",
  11615. "symfony/filesystem": "^5.4|^6.0",
  11616. "symfony/form": "^5.4|^6.0",
  11617. "symfony/http-foundation": "^5.4|^6.0",
  11618. "symfony/http-kernel": "^5.4|^6.0",
  11619. "symfony/mime": "^5.4|^6.0",
  11620. "symfony/property-access": "^5.4|^6.0",
  11621. "symfony/property-info": "^5.4.24|^6.2.11",
  11622. "symfony/uid": "^5.4|^6.0",
  11623. "symfony/validator": "^5.4|^6.0",
  11624. "symfony/var-dumper": "^5.4|^6.0",
  11625. "symfony/var-exporter": "^5.4|^6.0",
  11626. "symfony/yaml": "^5.4|^6.0"
  11627. },
  11628. "type": "library",
  11629. "autoload": {
  11630. "psr-4": {
  11631. "Symfony\\Component\\Serializer\\": ""
  11632. },
  11633. "exclude-from-classmap": [
  11634. "/Tests/"
  11635. ]
  11636. },
  11637. "notification-url": "https://packagist.org/downloads/",
  11638. "license": [
  11639. "MIT"
  11640. ],
  11641. "authors": [
  11642. {
  11643. "name": "Fabien Potencier",
  11644. "email": "fabien@symfony.com"
  11645. },
  11646. {
  11647. "name": "Symfony Community",
  11648. "homepage": "https://symfony.com/contributors"
  11649. }
  11650. ],
  11651. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11652. "homepage": "https://symfony.com",
  11653. "support": {
  11654. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  11655. },
  11656. "funding": [
  11657. {
  11658. "url": "https://symfony.com/sponsor",
  11659. "type": "custom"
  11660. },
  11661. {
  11662. "url": "https://github.com/fabpot",
  11663. "type": "github"
  11664. },
  11665. {
  11666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11667. "type": "tidelift"
  11668. }
  11669. ],
  11670. "time": "2023-11-07T10:11:25+00:00"
  11671. },
  11672. {
  11673. "name": "symfony/service-contracts",
  11674. "version": "v3.3.0",
  11675. "source": {
  11676. "type": "git",
  11677. "url": "https://github.com/symfony/service-contracts.git",
  11678. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  11679. },
  11680. "dist": {
  11681. "type": "zip",
  11682. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11683. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11684. "shasum": ""
  11685. },
  11686. "require": {
  11687. "php": ">=8.1",
  11688. "psr/container": "^2.0"
  11689. },
  11690. "conflict": {
  11691. "ext-psr": "<1.1|>=2"
  11692. },
  11693. "type": "library",
  11694. "extra": {
  11695. "branch-alias": {
  11696. "dev-main": "3.4-dev"
  11697. },
  11698. "thanks": {
  11699. "name": "symfony/contracts",
  11700. "url": "https://github.com/symfony/contracts"
  11701. }
  11702. },
  11703. "autoload": {
  11704. "psr-4": {
  11705. "Symfony\\Contracts\\Service\\": ""
  11706. },
  11707. "exclude-from-classmap": [
  11708. "/Test/"
  11709. ]
  11710. },
  11711. "notification-url": "https://packagist.org/downloads/",
  11712. "license": [
  11713. "MIT"
  11714. ],
  11715. "authors": [
  11716. {
  11717. "name": "Nicolas Grekas",
  11718. "email": "p@tchwork.com"
  11719. },
  11720. {
  11721. "name": "Symfony Community",
  11722. "homepage": "https://symfony.com/contributors"
  11723. }
  11724. ],
  11725. "description": "Generic abstractions related to writing services",
  11726. "homepage": "https://symfony.com",
  11727. "keywords": [
  11728. "abstractions",
  11729. "contracts",
  11730. "decoupling",
  11731. "interfaces",
  11732. "interoperability",
  11733. "standards"
  11734. ],
  11735. "support": {
  11736. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  11737. },
  11738. "funding": [
  11739. {
  11740. "url": "https://symfony.com/sponsor",
  11741. "type": "custom"
  11742. },
  11743. {
  11744. "url": "https://github.com/fabpot",
  11745. "type": "github"
  11746. },
  11747. {
  11748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11749. "type": "tidelift"
  11750. }
  11751. ],
  11752. "time": "2023-05-23T14:45:45+00:00"
  11753. },
  11754. {
  11755. "name": "symfony/string",
  11756. "version": "v6.3.8",
  11757. "source": {
  11758. "type": "git",
  11759. "url": "https://github.com/symfony/string.git",
  11760. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  11761. },
  11762. "dist": {
  11763. "type": "zip",
  11764. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  11765. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  11766. "shasum": ""
  11767. },
  11768. "require": {
  11769. "php": ">=8.1",
  11770. "symfony/polyfill-ctype": "~1.8",
  11771. "symfony/polyfill-intl-grapheme": "~1.0",
  11772. "symfony/polyfill-intl-normalizer": "~1.0",
  11773. "symfony/polyfill-mbstring": "~1.0"
  11774. },
  11775. "conflict": {
  11776. "symfony/translation-contracts": "<2.5"
  11777. },
  11778. "require-dev": {
  11779. "symfony/error-handler": "^5.4|^6.0",
  11780. "symfony/http-client": "^5.4|^6.0",
  11781. "symfony/intl": "^6.2",
  11782. "symfony/translation-contracts": "^2.5|^3.0",
  11783. "symfony/var-exporter": "^5.4|^6.0"
  11784. },
  11785. "type": "library",
  11786. "autoload": {
  11787. "files": [
  11788. "Resources/functions.php"
  11789. ],
  11790. "psr-4": {
  11791. "Symfony\\Component\\String\\": ""
  11792. },
  11793. "exclude-from-classmap": [
  11794. "/Tests/"
  11795. ]
  11796. },
  11797. "notification-url": "https://packagist.org/downloads/",
  11798. "license": [
  11799. "MIT"
  11800. ],
  11801. "authors": [
  11802. {
  11803. "name": "Nicolas Grekas",
  11804. "email": "p@tchwork.com"
  11805. },
  11806. {
  11807. "name": "Symfony Community",
  11808. "homepage": "https://symfony.com/contributors"
  11809. }
  11810. ],
  11811. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11812. "homepage": "https://symfony.com",
  11813. "keywords": [
  11814. "grapheme",
  11815. "i18n",
  11816. "string",
  11817. "unicode",
  11818. "utf-8",
  11819. "utf8"
  11820. ],
  11821. "support": {
  11822. "source": "https://github.com/symfony/string/tree/v6.3.8"
  11823. },
  11824. "funding": [
  11825. {
  11826. "url": "https://symfony.com/sponsor",
  11827. "type": "custom"
  11828. },
  11829. {
  11830. "url": "https://github.com/fabpot",
  11831. "type": "github"
  11832. },
  11833. {
  11834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11835. "type": "tidelift"
  11836. }
  11837. ],
  11838. "time": "2023-11-09T08:28:21+00:00"
  11839. },
  11840. {
  11841. "name": "symfony/translation-contracts",
  11842. "version": "v3.3.0",
  11843. "source": {
  11844. "type": "git",
  11845. "url": "https://github.com/symfony/translation-contracts.git",
  11846. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  11847. },
  11848. "dist": {
  11849. "type": "zip",
  11850. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  11851. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  11852. "shasum": ""
  11853. },
  11854. "require": {
  11855. "php": ">=8.1"
  11856. },
  11857. "type": "library",
  11858. "extra": {
  11859. "branch-alias": {
  11860. "dev-main": "3.4-dev"
  11861. },
  11862. "thanks": {
  11863. "name": "symfony/contracts",
  11864. "url": "https://github.com/symfony/contracts"
  11865. }
  11866. },
  11867. "autoload": {
  11868. "psr-4": {
  11869. "Symfony\\Contracts\\Translation\\": ""
  11870. },
  11871. "exclude-from-classmap": [
  11872. "/Test/"
  11873. ]
  11874. },
  11875. "notification-url": "https://packagist.org/downloads/",
  11876. "license": [
  11877. "MIT"
  11878. ],
  11879. "authors": [
  11880. {
  11881. "name": "Nicolas Grekas",
  11882. "email": "p@tchwork.com"
  11883. },
  11884. {
  11885. "name": "Symfony Community",
  11886. "homepage": "https://symfony.com/contributors"
  11887. }
  11888. ],
  11889. "description": "Generic abstractions related to translation",
  11890. "homepage": "https://symfony.com",
  11891. "keywords": [
  11892. "abstractions",
  11893. "contracts",
  11894. "decoupling",
  11895. "interfaces",
  11896. "interoperability",
  11897. "standards"
  11898. ],
  11899. "support": {
  11900. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  11901. },
  11902. "funding": [
  11903. {
  11904. "url": "https://symfony.com/sponsor",
  11905. "type": "custom"
  11906. },
  11907. {
  11908. "url": "https://github.com/fabpot",
  11909. "type": "github"
  11910. },
  11911. {
  11912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11913. "type": "tidelift"
  11914. }
  11915. ],
  11916. "time": "2023-05-30T17:17:10+00:00"
  11917. },
  11918. {
  11919. "name": "symfony/validator",
  11920. "version": "v6.3.8",
  11921. "source": {
  11922. "type": "git",
  11923. "url": "https://github.com/symfony/validator.git",
  11924. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  11925. },
  11926. "dist": {
  11927. "type": "zip",
  11928. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  11929. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  11930. "shasum": ""
  11931. },
  11932. "require": {
  11933. "php": ">=8.1",
  11934. "symfony/deprecation-contracts": "^2.5|^3",
  11935. "symfony/polyfill-ctype": "~1.8",
  11936. "symfony/polyfill-mbstring": "~1.0",
  11937. "symfony/polyfill-php83": "^1.27",
  11938. "symfony/translation-contracts": "^2.5|^3"
  11939. },
  11940. "conflict": {
  11941. "doctrine/annotations": "<1.13",
  11942. "doctrine/lexer": "<1.1",
  11943. "symfony/dependency-injection": "<5.4",
  11944. "symfony/expression-language": "<5.4",
  11945. "symfony/http-kernel": "<5.4",
  11946. "symfony/intl": "<5.4",
  11947. "symfony/property-info": "<5.4",
  11948. "symfony/translation": "<5.4",
  11949. "symfony/yaml": "<5.4"
  11950. },
  11951. "require-dev": {
  11952. "doctrine/annotations": "^1.13|^2",
  11953. "egulias/email-validator": "^2.1.10|^3|^4",
  11954. "symfony/cache": "^5.4|^6.0",
  11955. "symfony/config": "^5.4|^6.0",
  11956. "symfony/console": "^5.4|^6.0",
  11957. "symfony/dependency-injection": "^5.4|^6.0",
  11958. "symfony/expression-language": "^5.4|^6.0",
  11959. "symfony/finder": "^5.4|^6.0",
  11960. "symfony/http-client": "^5.4|^6.0",
  11961. "symfony/http-foundation": "^5.4|^6.0",
  11962. "symfony/http-kernel": "^5.4|^6.0",
  11963. "symfony/intl": "^5.4|^6.0",
  11964. "symfony/mime": "^5.4|^6.0",
  11965. "symfony/property-access": "^5.4|^6.0",
  11966. "symfony/property-info": "^5.4|^6.0",
  11967. "symfony/translation": "^5.4|^6.0",
  11968. "symfony/yaml": "^5.4|^6.0"
  11969. },
  11970. "type": "library",
  11971. "autoload": {
  11972. "psr-4": {
  11973. "Symfony\\Component\\Validator\\": ""
  11974. },
  11975. "exclude-from-classmap": [
  11976. "/Tests/"
  11977. ]
  11978. },
  11979. "notification-url": "https://packagist.org/downloads/",
  11980. "license": [
  11981. "MIT"
  11982. ],
  11983. "authors": [
  11984. {
  11985. "name": "Fabien Potencier",
  11986. "email": "fabien@symfony.com"
  11987. },
  11988. {
  11989. "name": "Symfony Community",
  11990. "homepage": "https://symfony.com/contributors"
  11991. }
  11992. ],
  11993. "description": "Provides tools to validate values",
  11994. "homepage": "https://symfony.com",
  11995. "support": {
  11996. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  11997. },
  11998. "funding": [
  11999. {
  12000. "url": "https://symfony.com/sponsor",
  12001. "type": "custom"
  12002. },
  12003. {
  12004. "url": "https://github.com/fabpot",
  12005. "type": "github"
  12006. },
  12007. {
  12008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12009. "type": "tidelift"
  12010. }
  12011. ],
  12012. "time": "2023-11-07T10:17:15+00:00"
  12013. },
  12014. {
  12015. "name": "symfony/var-dumper",
  12016. "version": "v6.3.8",
  12017. "source": {
  12018. "type": "git",
  12019. "url": "https://github.com/symfony/var-dumper.git",
  12020. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  12021. },
  12022. "dist": {
  12023. "type": "zip",
  12024. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  12025. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  12026. "shasum": ""
  12027. },
  12028. "require": {
  12029. "php": ">=8.1",
  12030. "symfony/deprecation-contracts": "^2.5|^3",
  12031. "symfony/polyfill-mbstring": "~1.0"
  12032. },
  12033. "conflict": {
  12034. "symfony/console": "<5.4"
  12035. },
  12036. "require-dev": {
  12037. "ext-iconv": "*",
  12038. "symfony/console": "^5.4|^6.0",
  12039. "symfony/http-kernel": "^5.4|^6.0",
  12040. "symfony/process": "^5.4|^6.0",
  12041. "symfony/uid": "^5.4|^6.0",
  12042. "twig/twig": "^2.13|^3.0.4"
  12043. },
  12044. "bin": [
  12045. "Resources/bin/var-dump-server"
  12046. ],
  12047. "type": "library",
  12048. "autoload": {
  12049. "files": [
  12050. "Resources/functions/dump.php"
  12051. ],
  12052. "psr-4": {
  12053. "Symfony\\Component\\VarDumper\\": ""
  12054. },
  12055. "exclude-from-classmap": [
  12056. "/Tests/"
  12057. ]
  12058. },
  12059. "notification-url": "https://packagist.org/downloads/",
  12060. "license": [
  12061. "MIT"
  12062. ],
  12063. "authors": [
  12064. {
  12065. "name": "Nicolas Grekas",
  12066. "email": "p@tchwork.com"
  12067. },
  12068. {
  12069. "name": "Symfony Community",
  12070. "homepage": "https://symfony.com/contributors"
  12071. }
  12072. ],
  12073. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12074. "homepage": "https://symfony.com",
  12075. "keywords": [
  12076. "debug",
  12077. "dump"
  12078. ],
  12079. "support": {
  12080. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  12081. },
  12082. "funding": [
  12083. {
  12084. "url": "https://symfony.com/sponsor",
  12085. "type": "custom"
  12086. },
  12087. {
  12088. "url": "https://github.com/fabpot",
  12089. "type": "github"
  12090. },
  12091. {
  12092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12093. "type": "tidelift"
  12094. }
  12095. ],
  12096. "time": "2023-11-08T10:42:36+00:00"
  12097. },
  12098. {
  12099. "name": "symfony/var-exporter",
  12100. "version": "v6.3.6",
  12101. "source": {
  12102. "type": "git",
  12103. "url": "https://github.com/symfony/var-exporter.git",
  12104. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  12105. },
  12106. "dist": {
  12107. "type": "zip",
  12108. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  12109. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  12110. "shasum": ""
  12111. },
  12112. "require": {
  12113. "php": ">=8.1"
  12114. },
  12115. "require-dev": {
  12116. "symfony/var-dumper": "^5.4|^6.0"
  12117. },
  12118. "type": "library",
  12119. "autoload": {
  12120. "psr-4": {
  12121. "Symfony\\Component\\VarExporter\\": ""
  12122. },
  12123. "exclude-from-classmap": [
  12124. "/Tests/"
  12125. ]
  12126. },
  12127. "notification-url": "https://packagist.org/downloads/",
  12128. "license": [
  12129. "MIT"
  12130. ],
  12131. "authors": [
  12132. {
  12133. "name": "Nicolas Grekas",
  12134. "email": "p@tchwork.com"
  12135. },
  12136. {
  12137. "name": "Symfony Community",
  12138. "homepage": "https://symfony.com/contributors"
  12139. }
  12140. ],
  12141. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  12142. "homepage": "https://symfony.com",
  12143. "keywords": [
  12144. "clone",
  12145. "construct",
  12146. "export",
  12147. "hydrate",
  12148. "instantiate",
  12149. "lazy-loading",
  12150. "proxy",
  12151. "serialize"
  12152. ],
  12153. "support": {
  12154. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  12155. },
  12156. "funding": [
  12157. {
  12158. "url": "https://symfony.com/sponsor",
  12159. "type": "custom"
  12160. },
  12161. {
  12162. "url": "https://github.com/fabpot",
  12163. "type": "github"
  12164. },
  12165. {
  12166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12167. "type": "tidelift"
  12168. }
  12169. ],
  12170. "time": "2023-10-13T09:16:49+00:00"
  12171. },
  12172. {
  12173. "name": "symfony/yaml",
  12174. "version": "v6.3.8",
  12175. "source": {
  12176. "type": "git",
  12177. "url": "https://github.com/symfony/yaml.git",
  12178. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  12179. },
  12180. "dist": {
  12181. "type": "zip",
  12182. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12183. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12184. "shasum": ""
  12185. },
  12186. "require": {
  12187. "php": ">=8.1",
  12188. "symfony/deprecation-contracts": "^2.5|^3",
  12189. "symfony/polyfill-ctype": "^1.8"
  12190. },
  12191. "conflict": {
  12192. "symfony/console": "<5.4"
  12193. },
  12194. "require-dev": {
  12195. "symfony/console": "^5.4|^6.0"
  12196. },
  12197. "bin": [
  12198. "Resources/bin/yaml-lint"
  12199. ],
  12200. "type": "library",
  12201. "autoload": {
  12202. "psr-4": {
  12203. "Symfony\\Component\\Yaml\\": ""
  12204. },
  12205. "exclude-from-classmap": [
  12206. "/Tests/"
  12207. ]
  12208. },
  12209. "notification-url": "https://packagist.org/downloads/",
  12210. "license": [
  12211. "MIT"
  12212. ],
  12213. "authors": [
  12214. {
  12215. "name": "Fabien Potencier",
  12216. "email": "fabien@symfony.com"
  12217. },
  12218. {
  12219. "name": "Symfony Community",
  12220. "homepage": "https://symfony.com/contributors"
  12221. }
  12222. ],
  12223. "description": "Loads and dumps YAML files",
  12224. "homepage": "https://symfony.com",
  12225. "support": {
  12226. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  12227. },
  12228. "funding": [
  12229. {
  12230. "url": "https://symfony.com/sponsor",
  12231. "type": "custom"
  12232. },
  12233. {
  12234. "url": "https://github.com/fabpot",
  12235. "type": "github"
  12236. },
  12237. {
  12238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12239. "type": "tidelift"
  12240. }
  12241. ],
  12242. "time": "2023-11-06T10:58:05+00:00"
  12243. },
  12244. {
  12245. "name": "twig/twig",
  12246. "version": "v3.6.1",
  12247. "source": {
  12248. "type": "git",
  12249. "url": "https://github.com/twigphp/Twig.git",
  12250. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  12251. },
  12252. "dist": {
  12253. "type": "zip",
  12254. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12255. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12256. "shasum": ""
  12257. },
  12258. "require": {
  12259. "php": ">=7.2.5",
  12260. "symfony/polyfill-ctype": "^1.8",
  12261. "symfony/polyfill-mbstring": "^1.3"
  12262. },
  12263. "require-dev": {
  12264. "psr/container": "^1.0|^2.0",
  12265. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  12266. },
  12267. "type": "library",
  12268. "autoload": {
  12269. "psr-4": {
  12270. "Twig\\": "src/"
  12271. }
  12272. },
  12273. "notification-url": "https://packagist.org/downloads/",
  12274. "license": [
  12275. "BSD-3-Clause"
  12276. ],
  12277. "authors": [
  12278. {
  12279. "name": "Fabien Potencier",
  12280. "email": "fabien@symfony.com",
  12281. "homepage": "http://fabien.potencier.org",
  12282. "role": "Lead Developer"
  12283. },
  12284. {
  12285. "name": "Twig Team",
  12286. "role": "Contributors"
  12287. },
  12288. {
  12289. "name": "Armin Ronacher",
  12290. "email": "armin.ronacher@active-4.com",
  12291. "role": "Project Founder"
  12292. }
  12293. ],
  12294. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12295. "homepage": "https://twig.symfony.com",
  12296. "keywords": [
  12297. "templating"
  12298. ],
  12299. "support": {
  12300. "issues": "https://github.com/twigphp/Twig/issues",
  12301. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  12302. },
  12303. "funding": [
  12304. {
  12305. "url": "https://github.com/fabpot",
  12306. "type": "github"
  12307. },
  12308. {
  12309. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12310. "type": "tidelift"
  12311. }
  12312. ],
  12313. "time": "2023-06-08T12:52:13+00:00"
  12314. },
  12315. {
  12316. "name": "webflo/drupal-finder",
  12317. "version": "1.2.2",
  12318. "source": {
  12319. "type": "git",
  12320. "url": "https://github.com/webflo/drupal-finder.git",
  12321. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12322. },
  12323. "dist": {
  12324. "type": "zip",
  12325. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12326. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12327. "shasum": ""
  12328. },
  12329. "require": {
  12330. "ext-json": "*"
  12331. },
  12332. "require-dev": {
  12333. "mikey179/vfsstream": "^1.6",
  12334. "phpunit/phpunit": "^4.8"
  12335. },
  12336. "type": "library",
  12337. "autoload": {
  12338. "classmap": [
  12339. "src/DrupalFinder.php"
  12340. ]
  12341. },
  12342. "notification-url": "https://packagist.org/downloads/",
  12343. "license": [
  12344. "GPL-2.0-or-later"
  12345. ],
  12346. "authors": [
  12347. {
  12348. "name": "Florian Weber",
  12349. "email": "florian@webflo.org"
  12350. }
  12351. ],
  12352. "description": "Helper class to locate a Drupal installation from a given path.",
  12353. "support": {
  12354. "issues": "https://github.com/webflo/drupal-finder/issues",
  12355. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  12356. },
  12357. "time": "2020-10-27T09:42:17+00:00"
  12358. },
  12359. {
  12360. "name": "wikimedia/composer-merge-plugin",
  12361. "version": "v2.1.0",
  12362. "source": {
  12363. "type": "git",
  12364. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12365. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  12366. },
  12367. "dist": {
  12368. "type": "zip",
  12369. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12370. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12371. "shasum": ""
  12372. },
  12373. "require": {
  12374. "composer-plugin-api": "^1.1||^2.0",
  12375. "php": ">=7.2.0"
  12376. },
  12377. "require-dev": {
  12378. "composer/composer": "^1.1||^2.0",
  12379. "ext-json": "*",
  12380. "mediawiki/mediawiki-phan-config": "0.11.1",
  12381. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  12382. "phpspec/prophecy": "~1.15.0",
  12383. "phpunit/phpunit": "^8.5||^9.0",
  12384. "squizlabs/php_codesniffer": "~3.7.1"
  12385. },
  12386. "type": "composer-plugin",
  12387. "extra": {
  12388. "branch-alias": {
  12389. "dev-master": "2.x-dev"
  12390. },
  12391. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12392. },
  12393. "autoload": {
  12394. "psr-4": {
  12395. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12396. }
  12397. },
  12398. "notification-url": "https://packagist.org/downloads/",
  12399. "license": [
  12400. "MIT"
  12401. ],
  12402. "authors": [
  12403. {
  12404. "name": "Bryan Davis",
  12405. "email": "bd808@wikimedia.org"
  12406. }
  12407. ],
  12408. "description": "Composer plugin to merge multiple composer.json files",
  12409. "support": {
  12410. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  12411. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  12412. },
  12413. "time": "2023-04-15T19:07:00+00:00"
  12414. }
  12415. ],
  12416. "packages-dev": [],
  12417. "aliases": [],
  12418. "minimum-stability": "stable",
  12419. "stability-flags": {
  12420. "drupal/login_destination": 20,
  12421. "drupal/page_manager": 5,
  12422. "drupal/phone_number": 15,
  12423. "drupal/advanced_text_formatter": 5,
  12424. "drupal/bulkdelete": 20,
  12425. "drupal/config_ignore": 5,
  12426. "drupal/config_devel": 20,
  12427. "drupal/config_update": 15,
  12428. "drupal/context": 5,
  12429. "drupal/date_range_formatter": 20,
  12430. "drupal/email_registration": 5,
  12431. "drupal/entity_clone": 20,
  12432. "drupal/field_group": 20,
  12433. "drupal/filter_perms": 20,
  12434. "drupal/inline_entity_form": 5,
  12435. "drupal/linkit": 10,
  12436. "drupal/maillog": 20,
  12437. "drupal/maxlength": 10,
  12438. "drupal/menu_block": 20,
  12439. "drupal/menu_position": 20,
  12440. "drupal/path_alias_xt": 20,
  12441. "drupal/pathologic": 15,
  12442. "drupal/profile": 5,
  12443. "drupal/smtp": 10,
  12444. "drupal/synonyms": 10,
  12445. "drupal/translation_views": 15,
  12446. "drupal/ultimate_cron": 15
  12447. },
  12448. "prefer-stable": true,
  12449. "prefer-lowest": false,
  12450. "platform": [],
  12451. "platform-dev": [],
  12452. "plugin-api-version": "2.6.0"
  12453. }