composer.lock 452 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405
  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": "0920f04ce89d5ca6fffe99a0aa488e7e",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.33.1",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  136. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  144. "twig/twig": "^1.41 || ^2.12"
  145. },
  146. "conflict": {
  147. "drush/drush": "< 10.3.2"
  148. },
  149. "bin": [
  150. "bin/dcg"
  151. ],
  152. "type": "library",
  153. "extra": {
  154. "branch-alias": {
  155. "dev-master": "1.x-dev"
  156. }
  157. },
  158. "autoload": {
  159. "files": [
  160. "src/bootstrap.php"
  161. ],
  162. "psr-4": {
  163. "DrupalCodeGenerator\\": "src"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "GPL-2.0-or-later"
  169. ],
  170. "description": "Drupal code generator",
  171. "time": "2020-12-05T05:59:11+00:00"
  172. },
  173. {
  174. "name": "commerceguys/addressing",
  175. "version": "v1.1.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/commerceguys/addressing.git",
  179. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2450ca97631042faf786855db206a2e48fb7dbb7",
  184. "reference": "2450ca97631042faf786855db206a2e48fb7dbb7",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "doctrine/collections": "~1.0",
  189. "php": ">=7.0.8"
  190. },
  191. "require-dev": {
  192. "mikey179/vfsstream": "1.*",
  193. "phpunit/phpunit": "^6.0",
  194. "squizlabs/php_codesniffer": "2.*",
  195. "symfony/validator": "^3.4"
  196. },
  197. "suggest": {
  198. "symfony/validator": "to validate addresses"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "CommerceGuys\\Addressing\\": "src"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Bojan Zivanovic"
  218. },
  219. {
  220. "name": "Damien Tournoud"
  221. }
  222. ],
  223. "description": "Addressing library powered by CLDR and Google's address data.",
  224. "keywords": [
  225. "address",
  226. "internationalization",
  227. "localization",
  228. "postal"
  229. ],
  230. "time": "2020-11-29T18:48:07+00:00"
  231. },
  232. {
  233. "name": "components/highlightjs",
  234. "version": "9.7.0",
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  238. },
  239. "type": "drupal-library"
  240. },
  241. {
  242. "name": "composer/installers",
  243. "version": "v1.9.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/composer/installers.git",
  247. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  252. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "composer-plugin-api": "^1.0 || ^2.0"
  257. },
  258. "replace": {
  259. "roundcube/plugin-installer": "*",
  260. "shama/baton": "*"
  261. },
  262. "require-dev": {
  263. "composer/composer": "1.6.* || 2.0.*@dev",
  264. "composer/semver": "1.0.* || 2.0.*@dev",
  265. "phpunit/phpunit": "^4.8.36",
  266. "sebastian/comparator": "^1.2.4",
  267. "symfony/process": "^2.3"
  268. },
  269. "type": "composer-plugin",
  270. "extra": {
  271. "class": "Composer\\Installers\\Plugin",
  272. "branch-alias": {
  273. "dev-master": "1.0-dev"
  274. }
  275. },
  276. "autoload": {
  277. "psr-4": {
  278. "Composer\\Installers\\": "src/Composer/Installers"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Kyle Robinson Young",
  288. "email": "kyle@dontkry.com",
  289. "homepage": "https://github.com/shama"
  290. }
  291. ],
  292. "description": "A multi-framework Composer library installer",
  293. "homepage": "https://composer.github.io/installers/",
  294. "keywords": [
  295. "Craft",
  296. "Dolibarr",
  297. "Eliasis",
  298. "Hurad",
  299. "ImageCMS",
  300. "Kanboard",
  301. "Lan Management System",
  302. "MODX Evo",
  303. "MantisBT",
  304. "Mautic",
  305. "Maya",
  306. "OXID",
  307. "Plentymarkets",
  308. "Porto",
  309. "RadPHP",
  310. "SMF",
  311. "Thelia",
  312. "Whmcs",
  313. "WolfCMS",
  314. "agl",
  315. "aimeos",
  316. "annotatecms",
  317. "attogram",
  318. "bitrix",
  319. "cakephp",
  320. "chef",
  321. "cockpit",
  322. "codeigniter",
  323. "concrete5",
  324. "croogo",
  325. "dokuwiki",
  326. "drupal",
  327. "eZ Platform",
  328. "elgg",
  329. "expressionengine",
  330. "fuelphp",
  331. "grav",
  332. "installer",
  333. "itop",
  334. "joomla",
  335. "known",
  336. "kohana",
  337. "laravel",
  338. "lavalite",
  339. "lithium",
  340. "magento",
  341. "majima",
  342. "mako",
  343. "mediawiki",
  344. "modulework",
  345. "modx",
  346. "moodle",
  347. "osclass",
  348. "phpbb",
  349. "piwik",
  350. "ppi",
  351. "puppet",
  352. "pxcms",
  353. "reindex",
  354. "roundcube",
  355. "shopware",
  356. "silverstripe",
  357. "sydes",
  358. "sylius",
  359. "symfony",
  360. "typo3",
  361. "wordpress",
  362. "yawik",
  363. "zend",
  364. "zikula"
  365. ],
  366. "funding": [
  367. {
  368. "url": "https://packagist.com",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  373. "type": "tidelift"
  374. }
  375. ],
  376. "time": "2020-04-07T06:57:05+00:00"
  377. },
  378. {
  379. "name": "composer/semver",
  380. "version": "3.2.2",
  381. "source": {
  382. "type": "git",
  383. "url": "https://github.com/composer/semver.git",
  384. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  385. },
  386. "dist": {
  387. "type": "zip",
  388. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  389. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  390. "shasum": ""
  391. },
  392. "require": {
  393. "php": "^5.3.2 || ^7.0 || ^8.0"
  394. },
  395. "require-dev": {
  396. "phpstan/phpstan": "^0.12.19",
  397. "symfony/phpunit-bridge": "^4.2 || ^5"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "branch-alias": {
  402. "dev-main": "3.x-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Composer\\Semver\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Nils Adermann",
  417. "email": "naderman@naderman.de",
  418. "homepage": "http://www.naderman.de"
  419. },
  420. {
  421. "name": "Jordi Boggiano",
  422. "email": "j.boggiano@seld.be",
  423. "homepage": "http://seld.be"
  424. },
  425. {
  426. "name": "Rob Bast",
  427. "email": "rob.bast@gmail.com",
  428. "homepage": "http://robbast.nl"
  429. }
  430. ],
  431. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  432. "keywords": [
  433. "semantic",
  434. "semver",
  435. "validation",
  436. "versioning"
  437. ],
  438. "funding": [
  439. {
  440. "url": "https://packagist.com",
  441. "type": "custom"
  442. },
  443. {
  444. "url": "https://github.com/composer",
  445. "type": "github"
  446. },
  447. {
  448. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  449. "type": "tidelift"
  450. }
  451. ],
  452. "time": "2020-10-14T08:51:15+00:00"
  453. },
  454. {
  455. "name": "consolidation/annotated-command",
  456. "version": "4.2.4",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/consolidation/annotated-command.git",
  460. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  465. "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "consolidation/output-formatters": "^4.1.1",
  470. "php": ">=7.1.3",
  471. "psr/log": "^1|^2",
  472. "symfony/console": "^4.4.8|~5.1.0",
  473. "symfony/event-dispatcher": "^4.4.8|^5",
  474. "symfony/finder": "^4.4.8|^5"
  475. },
  476. "require-dev": {
  477. "phpunit/phpunit": ">=7.5.20",
  478. "squizlabs/php_codesniffer": "^3",
  479. "yoast/phpunit-polyfills": "^0.2.0"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-main": "4.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Consolidation\\AnnotatedCommand\\": "src"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Greg Anderson",
  499. "email": "greg.1.anderson@greenknowe.org"
  500. }
  501. ],
  502. "description": "Initialize Symfony Console commands from annotated command class methods.",
  503. "time": "2020-12-10T16:56:39+00:00"
  504. },
  505. {
  506. "name": "consolidation/config",
  507. "version": "1.2.1",
  508. "source": {
  509. "type": "git",
  510. "url": "https://github.com/consolidation/config.git",
  511. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  512. },
  513. "dist": {
  514. "type": "zip",
  515. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  516. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  517. "shasum": ""
  518. },
  519. "require": {
  520. "dflydev/dot-access-data": "^1.1.0",
  521. "grasmash/expander": "^1",
  522. "php": ">=5.4.0"
  523. },
  524. "require-dev": {
  525. "g1a/composer-test-scenarios": "^3",
  526. "php-coveralls/php-coveralls": "^1",
  527. "phpunit/phpunit": "^5",
  528. "squizlabs/php_codesniffer": "2.*",
  529. "symfony/console": "^2.5|^3|^4",
  530. "symfony/yaml": "^2.8.11|^3|^4"
  531. },
  532. "suggest": {
  533. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  534. },
  535. "type": "library",
  536. "extra": {
  537. "scenarios": {
  538. "symfony4": {
  539. "require-dev": {
  540. "symfony/console": "^4.0"
  541. },
  542. "config": {
  543. "platform": {
  544. "php": "7.1.3"
  545. }
  546. }
  547. },
  548. "symfony2": {
  549. "require-dev": {
  550. "symfony/console": "^2.8",
  551. "symfony/event-dispatcher": "^2.8",
  552. "phpunit/phpunit": "^4.8.36"
  553. },
  554. "remove": [
  555. "php-coveralls/php-coveralls"
  556. ],
  557. "config": {
  558. "platform": {
  559. "php": "5.4.8"
  560. }
  561. }
  562. }
  563. },
  564. "branch-alias": {
  565. "dev-master": "1.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Consolidation\\Config\\": "src"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Greg Anderson",
  580. "email": "greg.1.anderson@greenknowe.org"
  581. }
  582. ],
  583. "description": "Provide configuration services for a commandline tool.",
  584. "time": "2019-03-03T19:37:04+00:00"
  585. },
  586. {
  587. "name": "consolidation/filter-via-dot-access-data",
  588. "version": "1.0.0",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  592. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  597. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "dflydev/dot-access-data": "^1.1.0",
  602. "php": ">=5.5.0"
  603. },
  604. "require-dev": {
  605. "consolidation/robo": "^1.2.3",
  606. "g1a/composer-test-scenarios": "^3",
  607. "knplabs/github-api": "^2.7",
  608. "php-coveralls/php-coveralls": "^1",
  609. "php-http/guzzle6-adapter": "^1.1",
  610. "phpunit/phpunit": "^5",
  611. "squizlabs/php_codesniffer": "^2.8",
  612. "symfony/console": "^2.8|^3|^4"
  613. },
  614. "type": "library",
  615. "extra": {
  616. "scenarios": {
  617. "phpunit5": {
  618. "require-dev": {
  619. "phpunit/phpunit": "^5.7.27"
  620. },
  621. "remove": [
  622. "php-coveralls/php-coveralls"
  623. ],
  624. "config": {
  625. "platform": {
  626. "php": "5.6.33"
  627. }
  628. }
  629. }
  630. },
  631. "branch-alias": {
  632. "dev-master": "1.x-dev"
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Consolidation\\Filter\\": "src"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Greg Anderson",
  647. "email": "greg.1.anderson@greenknowe.org"
  648. }
  649. ],
  650. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  651. "time": "2019-01-18T06:05:07+00:00"
  652. },
  653. {
  654. "name": "consolidation/log",
  655. "version": "2.0.2",
  656. "source": {
  657. "type": "git",
  658. "url": "https://github.com/consolidation/log.git",
  659. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
  660. },
  661. "dist": {
  662. "type": "zip",
  663. "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  664. "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
  665. "shasum": ""
  666. },
  667. "require": {
  668. "php": ">=7.1.3",
  669. "psr/log": "^1.0",
  670. "symfony/console": "^4|^5"
  671. },
  672. "require-dev": {
  673. "phpunit/phpunit": ">=7.5.20",
  674. "squizlabs/php_codesniffer": "^3",
  675. "yoast/phpunit-polyfills": "^0.2.0"
  676. },
  677. "type": "library",
  678. "extra": {
  679. "branch-alias": {
  680. "dev-main": "2.x-dev"
  681. }
  682. },
  683. "autoload": {
  684. "psr-4": {
  685. "Consolidation\\Log\\": "src"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Greg Anderson",
  695. "email": "greg.1.anderson@greenknowe.org"
  696. }
  697. ],
  698. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  699. "time": "2020-12-10T16:26:23+00:00"
  700. },
  701. {
  702. "name": "consolidation/output-formatters",
  703. "version": "4.1.2",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/consolidation/output-formatters.git",
  707. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
  712. "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "dflydev/dot-access-data": "^1.1.0",
  717. "php": ">=7.1.3",
  718. "symfony/console": "^4|^5",
  719. "symfony/finder": "^4|^5"
  720. },
  721. "require-dev": {
  722. "php-coveralls/php-coveralls": "^2.4.2",
  723. "phpunit/phpunit": ">=7",
  724. "squizlabs/php_codesniffer": "^3",
  725. "symfony/var-dumper": "^4",
  726. "symfony/yaml": "^4",
  727. "yoast/phpunit-polyfills": "^0.2.0"
  728. },
  729. "suggest": {
  730. "symfony/var-dumper": "For using the var_dump formatter"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-main": "4.x-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Consolidation\\OutputFormatters\\": "src"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Greg Anderson",
  750. "email": "greg.1.anderson@greenknowe.org"
  751. }
  752. ],
  753. "description": "Format text by applying transformations provided by plug-in formatters.",
  754. "time": "2020-12-12T19:04:59+00:00"
  755. },
  756. {
  757. "name": "consolidation/robo",
  758. "version": "2.2.1",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/consolidation/Robo.git",
  762. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/consolidation/Robo/zipball/1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  767. "reference": "1a7c652371615fd72ff05380ffe6ce263eb31eb3",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "consolidation/annotated-command": "^4.2.1",
  772. "consolidation/config": "^1.2.1|^2",
  773. "consolidation/log": "^1.1.1|^2.0.1",
  774. "consolidation/output-formatters": "^4.1.1",
  775. "consolidation/self-update": "^1.2",
  776. "league/container": "^2.4.1",
  777. "php": ">=7.1.3",
  778. "symfony/console": "^4.4.11|^5",
  779. "symfony/event-dispatcher": "^4.4.11|^5",
  780. "symfony/filesystem": "^4.4.11|^5",
  781. "symfony/finder": "^4.4.11|^5",
  782. "symfony/process": "^4.4.11|^5"
  783. },
  784. "conflict": {
  785. "codegyre/robo": "*"
  786. },
  787. "require-dev": {
  788. "g1a/composer-test-scenarios": "^3",
  789. "natxet/cssmin": "3.0.4",
  790. "patchwork/jsqueeze": "^2",
  791. "pear/archive_tar": "^1.4.4",
  792. "php-coveralls/php-coveralls": "^2.2",
  793. "phpdocumentor/reflection-docblock": "^4.3.2",
  794. "phpunit/phpunit": "^6.5.14",
  795. "squizlabs/php_codesniffer": "^3"
  796. },
  797. "suggest": {
  798. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  799. "natxet/cssmin": "For minifying CSS files in taskMinify",
  800. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  801. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  802. },
  803. "bin": [
  804. "robo"
  805. ],
  806. "type": "library",
  807. "extra": {
  808. "scenarios": {
  809. "symfony4": {
  810. "require": {
  811. "symfony/console": "^4.4.11",
  812. "symfony/event-dispatcher": "^4.4.11",
  813. "symfony/filesystem": "^4.4.11",
  814. "symfony/finder": "^4.4.11",
  815. "symfony/process": "^4.4.11",
  816. "phpunit/phpunit": "^6",
  817. "nikic/php-parser": "^2"
  818. },
  819. "remove": [
  820. "codeception/phpunit-wrapper"
  821. ],
  822. "config": {
  823. "platform": {
  824. "php": "7.1.3"
  825. }
  826. }
  827. }
  828. },
  829. "branch-alias": {
  830. "dev-master": "2.x-dev",
  831. "dev-main": "2.x-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Robo\\": "src"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Davert",
  846. "email": "davert.php@resend.cc"
  847. }
  848. ],
  849. "description": "Modern task runner",
  850. "time": "2020-09-08T16:23:18+00:00"
  851. },
  852. {
  853. "name": "consolidation/self-update",
  854. "version": "1.2.0",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/consolidation/self-update.git",
  858. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  863. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "php": ">=5.5.0",
  868. "symfony/console": "^2.8|^3|^4|^5",
  869. "symfony/filesystem": "^2.5|^3|^4|^5"
  870. },
  871. "bin": [
  872. "scripts/release"
  873. ],
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "1.x-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "SelfUpdate\\": "src"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Alexander Menk",
  892. "email": "menk@mestrona.net"
  893. },
  894. {
  895. "name": "Greg Anderson",
  896. "email": "greg.1.anderson@greenknowe.org"
  897. }
  898. ],
  899. "description": "Provides a self:update command for Symfony Console applications.",
  900. "time": "2020-04-13T02:49:20+00:00"
  901. },
  902. {
  903. "name": "consolidation/site-alias",
  904. "version": "3.0.1",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/consolidation/site-alias.git",
  908. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  913. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "consolidation/config": "^1.2.1|^2",
  918. "php": ">=5.5.0"
  919. },
  920. "require-dev": {
  921. "consolidation/robo": "^1.2.3|^2",
  922. "g1a/composer-test-scenarios": "^3",
  923. "knplabs/github-api": "^2.7",
  924. "php-coveralls/php-coveralls": "^2.2",
  925. "php-http/guzzle6-adapter": "^1.1",
  926. "phpunit/phpunit": "^6",
  927. "squizlabs/php_codesniffer": "^2.8",
  928. "symfony/yaml": "~2.3|^3|^4.4|^5"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "scenarios": {
  933. "phpunit5": {
  934. "require-dev": {
  935. "phpunit/phpunit": "^5.7.27"
  936. },
  937. "remove": [
  938. "php-coveralls/php-coveralls"
  939. ],
  940. "config": {
  941. "platform": {
  942. "php": "5.6.33"
  943. }
  944. }
  945. }
  946. },
  947. "branch-alias": {
  948. "dev-master": "3.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Consolidation\\SiteAlias\\": "src"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Greg Anderson",
  963. "email": "greg.1.anderson@greenknowe.org"
  964. },
  965. {
  966. "name": "Moshe Weitzman",
  967. "email": "weitzman@tejasa.com"
  968. }
  969. ],
  970. "description": "Manage alias records for local and remote sites.",
  971. "time": "2020-05-28T00:33:41+00:00"
  972. },
  973. {
  974. "name": "consolidation/site-process",
  975. "version": "4.0.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/consolidation/site-process.git",
  979. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  984. "reference": "ad86475eb3fe73490eb1b6ff2e74ee0f09952e9d",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "consolidation/config": "^1.2.1|^2",
  989. "consolidation/site-alias": "^3",
  990. "php": ">=7.1.3",
  991. "symfony/process": "^4.3.4"
  992. },
  993. "require-dev": {
  994. "consolidation/robo": "^1.4.10|^2",
  995. "g1a/composer-test-scenarios": "^3.0.4",
  996. "knplabs/github-api": "^2.7",
  997. "php-coveralls/php-coveralls": "^2.2",
  998. "php-http/guzzle6-adapter": "^1.1",
  999. "phpunit/phpunit": "^6.5.14",
  1000. "squizlabs/php_codesniffer": "^2.9.2"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "scenarios": {
  1005. "symfony4": {
  1006. "require": {
  1007. "symfony/console": "^4.4.8",
  1008. "symfony/event-dispatcher": "^4.4.8",
  1009. "symfony/filesystem": "^4.4.8",
  1010. "symfony/finder": "^4.4.8"
  1011. },
  1012. "config": {
  1013. "platform": {
  1014. "php": "7.1.3"
  1015. }
  1016. }
  1017. }
  1018. },
  1019. "branch-alias": {
  1020. "dev-master": "4.x-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Consolidation\\SiteProcess\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Greg Anderson",
  1035. "email": "greg.1.anderson@greenknowe.org"
  1036. },
  1037. {
  1038. "name": "Moshe Weitzman",
  1039. "email": "weitzman@tejasa.com"
  1040. }
  1041. ],
  1042. "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.",
  1043. "time": "2020-05-28T00:05:34+00:00"
  1044. },
  1045. {
  1046. "name": "container-interop/container-interop",
  1047. "version": "1.2.0",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/container-interop/container-interop.git",
  1051. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1056. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "psr/container": "^1.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Interop\\Container\\": "src/Interop/Container/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1073. "homepage": "https://github.com/container-interop/container-interop",
  1074. "abandoned": "psr/container",
  1075. "time": "2017-02-14T19:40:03+00:00"
  1076. },
  1077. {
  1078. "name": "cweagans/composer-patches",
  1079. "version": "1.7.0",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/cweagans/composer-patches.git",
  1083. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1088. "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "composer-plugin-api": "^1.0 || ^2.0",
  1093. "php": ">=5.3.0"
  1094. },
  1095. "require-dev": {
  1096. "composer/composer": "~1.0 || ~2.0",
  1097. "phpunit/phpunit": "~4.6"
  1098. },
  1099. "type": "composer-plugin",
  1100. "extra": {
  1101. "class": "cweagans\\Composer\\Patches"
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "cweagans\\Composer\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "BSD-3-Clause"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Cameron Eagans",
  1115. "email": "me@cweagans.net"
  1116. }
  1117. ],
  1118. "description": "Provides a way to patch Composer packages.",
  1119. "time": "2020-09-30T17:56:20+00:00"
  1120. },
  1121. {
  1122. "name": "d3/d3",
  1123. "version": "v3.5.17",
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1127. },
  1128. "type": "drupal-library"
  1129. },
  1130. {
  1131. "name": "dflydev/dot-access-configuration",
  1132. "version": "v1.0.3",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1136. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1141. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "dflydev/dot-access-data": "1.*",
  1146. "dflydev/placeholder-resolver": "1.*",
  1147. "php": ">=5.3.2"
  1148. },
  1149. "require-dev": {
  1150. "symfony/yaml": "~2.1"
  1151. },
  1152. "suggest": {
  1153. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "1.0-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-0": {
  1163. "Dflydev\\DotAccessConfiguration": "src"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Dragonfly Development Inc.",
  1173. "email": "info@dflydev.com",
  1174. "homepage": "http://dflydev.com"
  1175. },
  1176. {
  1177. "name": "Beau Simensen",
  1178. "email": "beau@dflydev.com",
  1179. "homepage": "http://beausimensen.com"
  1180. }
  1181. ],
  1182. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1183. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1184. "keywords": [
  1185. "config",
  1186. "configuration"
  1187. ],
  1188. "time": "2018-09-08T23:00:17+00:00"
  1189. },
  1190. {
  1191. "name": "dflydev/dot-access-data",
  1192. "version": "v1.1.0",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1196. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1201. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1202. "shasum": ""
  1203. },
  1204. "require": {
  1205. "php": ">=5.3.2"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "1.0-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-0": {
  1215. "Dflydev\\DotAccessData": "src"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Dragonfly Development Inc.",
  1225. "email": "info@dflydev.com",
  1226. "homepage": "http://dflydev.com"
  1227. },
  1228. {
  1229. "name": "Beau Simensen",
  1230. "email": "beau@dflydev.com",
  1231. "homepage": "http://beausimensen.com"
  1232. },
  1233. {
  1234. "name": "Carlos Frutos",
  1235. "email": "carlos@kiwing.it",
  1236. "homepage": "https://github.com/cfrutos"
  1237. }
  1238. ],
  1239. "description": "Given a deep data structure, access data by dot notation.",
  1240. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1241. "keywords": [
  1242. "access",
  1243. "data",
  1244. "dot",
  1245. "notation"
  1246. ],
  1247. "time": "2017-01-20T21:14:22+00:00"
  1248. },
  1249. {
  1250. "name": "dflydev/placeholder-resolver",
  1251. "version": "v1.0.2",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1255. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1260. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1261. "shasum": ""
  1262. },
  1263. "require": {
  1264. "php": ">=5.3.2"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "branch-alias": {
  1269. "dev-master": "1.0-dev"
  1270. }
  1271. },
  1272. "autoload": {
  1273. "psr-0": {
  1274. "Dflydev\\PlaceholderResolver": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Dragonfly Development Inc.",
  1284. "email": "info@dflydev.com",
  1285. "homepage": "http://dflydev.com"
  1286. },
  1287. {
  1288. "name": "Beau Simensen",
  1289. "email": "beau@dflydev.com",
  1290. "homepage": "http://beausimensen.com"
  1291. }
  1292. ],
  1293. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1294. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1295. "keywords": [
  1296. "placeholder",
  1297. "resolver"
  1298. ],
  1299. "time": "2012-10-28T21:08:28+00:00"
  1300. },
  1301. {
  1302. "name": "dnoegel/php-xdg-base-dir",
  1303. "version": "v0.1.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1307. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1312. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1313. "shasum": ""
  1314. },
  1315. "require": {
  1316. "php": ">=5.3.2"
  1317. },
  1318. "require-dev": {
  1319. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1320. },
  1321. "type": "library",
  1322. "autoload": {
  1323. "psr-4": {
  1324. "XdgBaseDir\\": "src/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "description": "implementation of xdg base directory specification for php",
  1332. "time": "2019-12-04T15:06:13+00:00"
  1333. },
  1334. {
  1335. "name": "doctrine/annotations",
  1336. "version": "1.11.1",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/doctrine/annotations.git",
  1340. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1345. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "doctrine/lexer": "1.*",
  1350. "ext-tokenizer": "*",
  1351. "php": "^7.1 || ^8.0"
  1352. },
  1353. "require-dev": {
  1354. "doctrine/cache": "1.*",
  1355. "doctrine/coding-standard": "^6.0 || ^8.1",
  1356. "phpstan/phpstan": "^0.12.20",
  1357. "phpunit/phpunit": "^7.5 || ^9.1.5"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.11.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-4": {
  1367. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Guilherme Blanco",
  1377. "email": "guilhermeblanco@gmail.com"
  1378. },
  1379. {
  1380. "name": "Roman Borschel",
  1381. "email": "roman@code-factory.org"
  1382. },
  1383. {
  1384. "name": "Benjamin Eberlei",
  1385. "email": "kontakt@beberlei.de"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Docblock Annotations Parser",
  1397. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1398. "keywords": [
  1399. "annotations",
  1400. "docblock",
  1401. "parser"
  1402. ],
  1403. "time": "2020-10-26T10:28:16+00:00"
  1404. },
  1405. {
  1406. "name": "doctrine/cache",
  1407. "version": "1.10.2",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/doctrine/cache.git",
  1411. "reference": "13e3381b25847283a91948d04640543941309727"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  1416. "reference": "13e3381b25847283a91948d04640543941309727",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": "~7.1 || ^8.0"
  1421. },
  1422. "conflict": {
  1423. "doctrine/common": ">2.2,<2.4"
  1424. },
  1425. "require-dev": {
  1426. "alcaeus/mongo-php-adapter": "^1.1",
  1427. "doctrine/coding-standard": "^6.0",
  1428. "mongodb/mongodb": "^1.1",
  1429. "phpunit/phpunit": "^7.0",
  1430. "predis/predis": "~1.0"
  1431. },
  1432. "suggest": {
  1433. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-master": "1.9.x-dev"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Guilherme Blanco",
  1453. "email": "guilhermeblanco@gmail.com"
  1454. },
  1455. {
  1456. "name": "Roman Borschel",
  1457. "email": "roman@code-factory.org"
  1458. },
  1459. {
  1460. "name": "Benjamin Eberlei",
  1461. "email": "kontakt@beberlei.de"
  1462. },
  1463. {
  1464. "name": "Jonathan Wage",
  1465. "email": "jonwage@gmail.com"
  1466. },
  1467. {
  1468. "name": "Johannes Schmitt",
  1469. "email": "schmittjoh@gmail.com"
  1470. }
  1471. ],
  1472. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1473. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1474. "keywords": [
  1475. "abstraction",
  1476. "apcu",
  1477. "cache",
  1478. "caching",
  1479. "couchdb",
  1480. "memcached",
  1481. "php",
  1482. "redis",
  1483. "xcache"
  1484. ],
  1485. "funding": [
  1486. {
  1487. "url": "https://www.doctrine-project.org/sponsorship.html",
  1488. "type": "custom"
  1489. },
  1490. {
  1491. "url": "https://www.patreon.com/phpdoctrine",
  1492. "type": "patreon"
  1493. },
  1494. {
  1495. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1496. "type": "tidelift"
  1497. }
  1498. ],
  1499. "time": "2020-07-07T18:54:01+00:00"
  1500. },
  1501. {
  1502. "name": "doctrine/collections",
  1503. "version": "1.6.7",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/doctrine/collections.git",
  1507. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1512. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  1513. "shasum": ""
  1514. },
  1515. "require": {
  1516. "php": "^7.1.3 || ^8.0"
  1517. },
  1518. "require-dev": {
  1519. "doctrine/coding-standard": "^6.0",
  1520. "phpstan/phpstan-shim": "^0.9.2",
  1521. "phpunit/phpunit": "^7.0",
  1522. "vimeo/psalm": "^3.8.1"
  1523. },
  1524. "type": "library",
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Guilherme Blanco",
  1537. "email": "guilhermeblanco@gmail.com"
  1538. },
  1539. {
  1540. "name": "Roman Borschel",
  1541. "email": "roman@code-factory.org"
  1542. },
  1543. {
  1544. "name": "Benjamin Eberlei",
  1545. "email": "kontakt@beberlei.de"
  1546. },
  1547. {
  1548. "name": "Jonathan Wage",
  1549. "email": "jonwage@gmail.com"
  1550. },
  1551. {
  1552. "name": "Johannes Schmitt",
  1553. "email": "schmittjoh@gmail.com"
  1554. }
  1555. ],
  1556. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1557. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1558. "keywords": [
  1559. "array",
  1560. "collections",
  1561. "iterators",
  1562. "php"
  1563. ],
  1564. "time": "2020-07-27T17:53:49+00:00"
  1565. },
  1566. {
  1567. "name": "doctrine/common",
  1568. "version": "2.13.3",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/doctrine/common.git",
  1572. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1577. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "doctrine/annotations": "^1.0",
  1582. "doctrine/cache": "^1.0",
  1583. "doctrine/collections": "^1.0",
  1584. "doctrine/event-manager": "^1.0",
  1585. "doctrine/inflector": "^1.0",
  1586. "doctrine/lexer": "^1.0",
  1587. "doctrine/persistence": "^1.3.3",
  1588. "doctrine/reflection": "^1.0",
  1589. "php": "^7.1 || ^8.0"
  1590. },
  1591. "require-dev": {
  1592. "doctrine/coding-standard": "^1.0",
  1593. "phpstan/phpstan": "^0.11",
  1594. "phpstan/phpstan-phpunit": "^0.11",
  1595. "phpunit/phpunit": "^7.0",
  1596. "squizlabs/php_codesniffer": "^3.0",
  1597. "symfony/phpunit-bridge": "^4.0.5"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-master": "2.11.x-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "Guilherme Blanco",
  1617. "email": "guilhermeblanco@gmail.com"
  1618. },
  1619. {
  1620. "name": "Roman Borschel",
  1621. "email": "roman@code-factory.org"
  1622. },
  1623. {
  1624. "name": "Benjamin Eberlei",
  1625. "email": "kontakt@beberlei.de"
  1626. },
  1627. {
  1628. "name": "Jonathan Wage",
  1629. "email": "jonwage@gmail.com"
  1630. },
  1631. {
  1632. "name": "Johannes Schmitt",
  1633. "email": "schmittjoh@gmail.com"
  1634. },
  1635. {
  1636. "name": "Marco Pivetta",
  1637. "email": "ocramius@gmail.com"
  1638. }
  1639. ],
  1640. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1641. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1642. "keywords": [
  1643. "common",
  1644. "doctrine",
  1645. "php"
  1646. ],
  1647. "funding": [
  1648. {
  1649. "url": "https://www.doctrine-project.org/sponsorship.html",
  1650. "type": "custom"
  1651. },
  1652. {
  1653. "url": "https://www.patreon.com/phpdoctrine",
  1654. "type": "patreon"
  1655. },
  1656. {
  1657. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1658. "type": "tidelift"
  1659. }
  1660. ],
  1661. "time": "2020-06-05T16:46:05+00:00"
  1662. },
  1663. {
  1664. "name": "doctrine/event-manager",
  1665. "version": "1.1.1",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/doctrine/event-manager.git",
  1669. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1674. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": "^7.1 || ^8.0"
  1679. },
  1680. "conflict": {
  1681. "doctrine/common": "<2.9@dev"
  1682. },
  1683. "require-dev": {
  1684. "doctrine/coding-standard": "^6.0",
  1685. "phpunit/phpunit": "^7.0"
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "1.0.x-dev"
  1691. }
  1692. },
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Guilherme Blanco",
  1705. "email": "guilhermeblanco@gmail.com"
  1706. },
  1707. {
  1708. "name": "Roman Borschel",
  1709. "email": "roman@code-factory.org"
  1710. },
  1711. {
  1712. "name": "Benjamin Eberlei",
  1713. "email": "kontakt@beberlei.de"
  1714. },
  1715. {
  1716. "name": "Jonathan Wage",
  1717. "email": "jonwage@gmail.com"
  1718. },
  1719. {
  1720. "name": "Johannes Schmitt",
  1721. "email": "schmittjoh@gmail.com"
  1722. },
  1723. {
  1724. "name": "Marco Pivetta",
  1725. "email": "ocramius@gmail.com"
  1726. }
  1727. ],
  1728. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1729. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1730. "keywords": [
  1731. "event",
  1732. "event dispatcher",
  1733. "event manager",
  1734. "event system",
  1735. "events"
  1736. ],
  1737. "funding": [
  1738. {
  1739. "url": "https://www.doctrine-project.org/sponsorship.html",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://www.patreon.com/phpdoctrine",
  1744. "type": "patreon"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2020-05-29T18:28:51+00:00"
  1752. },
  1753. {
  1754. "name": "doctrine/inflector",
  1755. "version": "1.4.3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/doctrine/inflector.git",
  1759. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1764. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": "^7.2 || ^8.0"
  1769. },
  1770. "require-dev": {
  1771. "doctrine/coding-standard": "^7.0",
  1772. "phpstan/phpstan": "^0.11",
  1773. "phpstan/phpstan-phpunit": "^0.11",
  1774. "phpstan/phpstan-strict-rules": "^0.11",
  1775. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "2.0.x-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1786. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1787. }
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "MIT"
  1792. ],
  1793. "authors": [
  1794. {
  1795. "name": "Guilherme Blanco",
  1796. "email": "guilhermeblanco@gmail.com"
  1797. },
  1798. {
  1799. "name": "Roman Borschel",
  1800. "email": "roman@code-factory.org"
  1801. },
  1802. {
  1803. "name": "Benjamin Eberlei",
  1804. "email": "kontakt@beberlei.de"
  1805. },
  1806. {
  1807. "name": "Jonathan Wage",
  1808. "email": "jonwage@gmail.com"
  1809. },
  1810. {
  1811. "name": "Johannes Schmitt",
  1812. "email": "schmittjoh@gmail.com"
  1813. }
  1814. ],
  1815. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1816. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1817. "keywords": [
  1818. "inflection",
  1819. "inflector",
  1820. "lowercase",
  1821. "manipulation",
  1822. "php",
  1823. "plural",
  1824. "singular",
  1825. "strings",
  1826. "uppercase",
  1827. "words"
  1828. ],
  1829. "funding": [
  1830. {
  1831. "url": "https://www.doctrine-project.org/sponsorship.html",
  1832. "type": "custom"
  1833. },
  1834. {
  1835. "url": "https://www.patreon.com/phpdoctrine",
  1836. "type": "patreon"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2020-05-29T07:19:59+00:00"
  1844. },
  1845. {
  1846. "name": "doctrine/lexer",
  1847. "version": "1.2.1",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/doctrine/lexer.git",
  1851. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1856. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "^7.2 || ^8.0"
  1861. },
  1862. "require-dev": {
  1863. "doctrine/coding-standard": "^6.0",
  1864. "phpstan/phpstan": "^0.11.8",
  1865. "phpunit/phpunit": "^8.2"
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "1.2.x-dev"
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Guilherme Blanco",
  1885. "email": "guilhermeblanco@gmail.com"
  1886. },
  1887. {
  1888. "name": "Roman Borschel",
  1889. "email": "roman@code-factory.org"
  1890. },
  1891. {
  1892. "name": "Johannes Schmitt",
  1893. "email": "schmittjoh@gmail.com"
  1894. }
  1895. ],
  1896. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1897. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1898. "keywords": [
  1899. "annotations",
  1900. "docblock",
  1901. "lexer",
  1902. "parser",
  1903. "php"
  1904. ],
  1905. "funding": [
  1906. {
  1907. "url": "https://www.doctrine-project.org/sponsorship.html",
  1908. "type": "custom"
  1909. },
  1910. {
  1911. "url": "https://www.patreon.com/phpdoctrine",
  1912. "type": "patreon"
  1913. },
  1914. {
  1915. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1916. "type": "tidelift"
  1917. }
  1918. ],
  1919. "time": "2020-05-25T17:44:05+00:00"
  1920. },
  1921. {
  1922. "name": "doctrine/persistence",
  1923. "version": "1.3.8",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/doctrine/persistence.git",
  1927. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1932. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "doctrine/annotations": "^1.0",
  1937. "doctrine/cache": "^1.0",
  1938. "doctrine/collections": "^1.0",
  1939. "doctrine/event-manager": "^1.0",
  1940. "doctrine/reflection": "^1.2",
  1941. "php": "^7.1 || ^8.0"
  1942. },
  1943. "conflict": {
  1944. "doctrine/common": "<2.10@dev"
  1945. },
  1946. "require-dev": {
  1947. "doctrine/coding-standard": "^6.0",
  1948. "phpstan/phpstan": "^0.11",
  1949. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1950. "vimeo/psalm": "^3.11"
  1951. },
  1952. "type": "library",
  1953. "extra": {
  1954. "branch-alias": {
  1955. "dev-master": "1.3.x-dev"
  1956. }
  1957. },
  1958. "autoload": {
  1959. "psr-4": {
  1960. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1961. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1962. }
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Guilherme Blanco",
  1971. "email": "guilhermeblanco@gmail.com"
  1972. },
  1973. {
  1974. "name": "Roman Borschel",
  1975. "email": "roman@code-factory.org"
  1976. },
  1977. {
  1978. "name": "Benjamin Eberlei",
  1979. "email": "kontakt@beberlei.de"
  1980. },
  1981. {
  1982. "name": "Jonathan Wage",
  1983. "email": "jonwage@gmail.com"
  1984. },
  1985. {
  1986. "name": "Johannes Schmitt",
  1987. "email": "schmittjoh@gmail.com"
  1988. },
  1989. {
  1990. "name": "Marco Pivetta",
  1991. "email": "ocramius@gmail.com"
  1992. }
  1993. ],
  1994. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1995. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1996. "keywords": [
  1997. "mapper",
  1998. "object",
  1999. "odm",
  2000. "orm",
  2001. "persistence"
  2002. ],
  2003. "funding": [
  2004. {
  2005. "url": "https://www.doctrine-project.org/sponsorship.html",
  2006. "type": "custom"
  2007. },
  2008. {
  2009. "url": "https://www.patreon.com/phpdoctrine",
  2010. "type": "patreon"
  2011. },
  2012. {
  2013. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  2014. "type": "tidelift"
  2015. }
  2016. ],
  2017. "time": "2020-06-20T12:56:16+00:00"
  2018. },
  2019. {
  2020. "name": "doctrine/reflection",
  2021. "version": "1.2.2",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/doctrine/reflection.git",
  2025. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5",
  2030. "reference": "fa587178be682efe90d005e3a322590d6ebb59a5",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "doctrine/annotations": "^1.0",
  2035. "ext-tokenizer": "*",
  2036. "php": "^7.1 || ^8.0"
  2037. },
  2038. "conflict": {
  2039. "doctrine/common": "<2.9"
  2040. },
  2041. "require-dev": {
  2042. "doctrine/coding-standard": "^6.0 || ^8.2.0",
  2043. "doctrine/common": "^2.10",
  2044. "phpstan/phpstan": "^0.11.0 || ^0.12.20",
  2045. "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16",
  2046. "phpunit/phpunit": "^7.5 || ^9.1.5"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "1.2.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "psr-4": {
  2056. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2057. }
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Guilherme Blanco",
  2066. "email": "guilhermeblanco@gmail.com"
  2067. },
  2068. {
  2069. "name": "Roman Borschel",
  2070. "email": "roman@code-factory.org"
  2071. },
  2072. {
  2073. "name": "Benjamin Eberlei",
  2074. "email": "kontakt@beberlei.de"
  2075. },
  2076. {
  2077. "name": "Jonathan Wage",
  2078. "email": "jonwage@gmail.com"
  2079. },
  2080. {
  2081. "name": "Johannes Schmitt",
  2082. "email": "schmittjoh@gmail.com"
  2083. },
  2084. {
  2085. "name": "Marco Pivetta",
  2086. "email": "ocramius@gmail.com"
  2087. }
  2088. ],
  2089. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  2090. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2091. "keywords": [
  2092. "reflection",
  2093. "static"
  2094. ],
  2095. "abandoned": "roave/better-reflection",
  2096. "time": "2020-10-27T21:46:55+00:00"
  2097. },
  2098. {
  2099. "name": "drupal/address",
  2100. "version": "1.9.0",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://git.drupalcode.org/project/address.git",
  2104. "reference": "8.x-1.9"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip",
  2109. "reference": "8.x-1.9",
  2110. "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05"
  2111. },
  2112. "require": {
  2113. "commerceguys/addressing": "^1.0.7",
  2114. "drupal/core": "^8.8 || ^9"
  2115. },
  2116. "require-dev": {
  2117. "drupal/token": "^1.0"
  2118. },
  2119. "type": "drupal-module",
  2120. "extra": {
  2121. "drupal": {
  2122. "version": "8.x-1.9",
  2123. "datestamp": "1604422821",
  2124. "security-coverage": {
  2125. "status": "covered",
  2126. "message": "Covered by Drupal's security advisory policy"
  2127. }
  2128. }
  2129. },
  2130. "notification-url": "https://packages.drupal.org/8/downloads",
  2131. "license": [
  2132. "GPL-2.0-or-later"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "bojanz",
  2137. "homepage": "https://www.drupal.org/user/86106"
  2138. },
  2139. {
  2140. "name": "dww",
  2141. "homepage": "https://www.drupal.org/user/46549"
  2142. },
  2143. {
  2144. "name": "googletorp",
  2145. "homepage": "https://www.drupal.org/user/386230"
  2146. },
  2147. {
  2148. "name": "jsacksick",
  2149. "homepage": "https://www.drupal.org/user/972218"
  2150. },
  2151. {
  2152. "name": "mglaman",
  2153. "homepage": "https://www.drupal.org/user/2416470"
  2154. },
  2155. {
  2156. "name": "rszrama",
  2157. "homepage": "https://www.drupal.org/user/49344"
  2158. }
  2159. ],
  2160. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  2161. "homepage": "http://drupal.org/project/address",
  2162. "support": {
  2163. "source": "https://git.drupalcode.org/project/address"
  2164. }
  2165. },
  2166. {
  2167. "name": "drupal/admin_toolbar",
  2168. "version": "2.4.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2172. "reference": "8.x-2.4"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip",
  2177. "reference": "8.x-2.4",
  2178. "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38"
  2179. },
  2180. "require": {
  2181. "drupal/core": "^8.8.0 || ^9.0"
  2182. },
  2183. "type": "drupal-module",
  2184. "extra": {
  2185. "drupal": {
  2186. "version": "8.x-2.4",
  2187. "datestamp": "1601999178",
  2188. "security-coverage": {
  2189. "status": "covered",
  2190. "message": "Covered by Drupal's security advisory policy"
  2191. }
  2192. }
  2193. },
  2194. "notification-url": "https://packages.drupal.org/8/downloads",
  2195. "license": [
  2196. "GPL-2.0-or-later"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Wilfrid Roze (eme)",
  2201. "homepage": "https://www.drupal.org/u/eme",
  2202. "role": "Maintainer"
  2203. },
  2204. {
  2205. "name": "Romain Jarraud (romainj)",
  2206. "homepage": "https://www.drupal.org/u/romainj",
  2207. "role": "Maintainer"
  2208. },
  2209. {
  2210. "name": "Adrian Cid Almaguer (adriancid)",
  2211. "homepage": "https://www.drupal.org/u/adriancid",
  2212. "email": "adriancid@gmail.com",
  2213. "role": "Maintainer"
  2214. },
  2215. {
  2216. "name": "Mohamed Anis Taktak (matio89)",
  2217. "homepage": "https://www.drupal.org/u/matio89",
  2218. "role": "Maintainer"
  2219. },
  2220. {
  2221. "name": "fethi.krout",
  2222. "homepage": "https://www.drupal.org/user/3206765"
  2223. },
  2224. {
  2225. "name": "matio89",
  2226. "homepage": "https://www.drupal.org/user/2320090"
  2227. },
  2228. {
  2229. "name": "romainj",
  2230. "homepage": "https://www.drupal.org/user/370706"
  2231. }
  2232. ],
  2233. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2234. "homepage": "http://drupal.org/project/admin_toolbar",
  2235. "keywords": [
  2236. "Drupal",
  2237. "Toolbar"
  2238. ],
  2239. "support": {
  2240. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2241. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2242. }
  2243. },
  2244. {
  2245. "name": "drupal/adminimal_theme",
  2246. "version": "1.6.0",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2250. "reference": "8.x-1.6"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2255. "reference": "8.x-1.6",
  2256. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2257. },
  2258. "require": {
  2259. "drupal/core": "^8.8 || ^9"
  2260. },
  2261. "type": "drupal-theme",
  2262. "extra": {
  2263. "drupal": {
  2264. "version": "8.x-1.6",
  2265. "datestamp": "1602006937",
  2266. "security-coverage": {
  2267. "status": "covered",
  2268. "message": "Covered by Drupal's security advisory policy"
  2269. }
  2270. }
  2271. },
  2272. "notification-url": "https://packages.drupal.org/8/downloads",
  2273. "license": [
  2274. "GPL-2.0+"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "ANDiTKO",
  2279. "homepage": "https://www.drupal.org/user/1428124"
  2280. },
  2281. {
  2282. "name": "andrey.troeglazov",
  2283. "homepage": "https://www.drupal.org/user/3145389"
  2284. },
  2285. {
  2286. "name": "realityloop",
  2287. "homepage": "https://www.drupal.org/user/139189"
  2288. }
  2289. ],
  2290. "description": "Drupal administration theme with modern minimalist design.",
  2291. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2294. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2295. }
  2296. },
  2297. {
  2298. "name": "drupal/advanced_text_formatter",
  2299. "version": "2.0.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2303. "reference": "2.0.0"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-2.0.0.zip",
  2308. "reference": "2.0.0",
  2309. "shasum": "ecd1d0e46dfc137251f9b71e724c6edddd5c48df"
  2310. },
  2311. "require": {
  2312. "drupal/core": "^8 || ^9"
  2313. },
  2314. "type": "drupal-module",
  2315. "extra": {
  2316. "drupal": {
  2317. "version": "2.0.0",
  2318. "datestamp": "1591030704",
  2319. "security-coverage": {
  2320. "status": "covered",
  2321. "message": "Covered by Drupal's security advisory policy"
  2322. }
  2323. }
  2324. },
  2325. "notification-url": "https://packages.drupal.org/8/downloads",
  2326. "license": [
  2327. "GPL-2.0-or-later"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "azovsky",
  2332. "homepage": "https://www.drupal.org/user/330533"
  2333. },
  2334. {
  2335. "name": "thmnhat",
  2336. "homepage": "https://www.drupal.org/user/998946"
  2337. }
  2338. ],
  2339. "description": "Provides an additional formatter for text field, text area and text format.",
  2340. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2341. "support": {
  2342. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2343. }
  2344. },
  2345. {
  2346. "name": "drupal/audiofield",
  2347. "version": "1.10.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://git.drupalcode.org/project/audiofield.git",
  2351. "reference": "8.x-1.10"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.10.zip",
  2356. "reference": "8.x-1.10",
  2357. "shasum": "0b321f6c01b77c2ff28ef8cb646af8ec223dc4c1"
  2358. },
  2359. "require": {
  2360. "drupal/core": "^8 || ^9"
  2361. },
  2362. "type": "drupal-module",
  2363. "extra": {
  2364. "drupal": {
  2365. "version": "8.x-1.10",
  2366. "datestamp": "1607014410",
  2367. "security-coverage": {
  2368. "status": "covered",
  2369. "message": "Covered by Drupal's security advisory policy"
  2370. }
  2371. },
  2372. "drush": {
  2373. "services": {
  2374. "drush.services.yml": "^9"
  2375. }
  2376. }
  2377. },
  2378. "notification-url": "https://packages.drupal.org/8/downloads",
  2379. "license": [
  2380. "GPL-2.0-or-later"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Daniel Moberly",
  2385. "homepage": "https://www.drupal.org/u/danielmoberly",
  2386. "role": "Maintainer"
  2387. },
  2388. {
  2389. "name": "josipsaric",
  2390. "homepage": "https://www.drupal.org/user/3063287"
  2391. },
  2392. {
  2393. "name": "tamerzg",
  2394. "homepage": "https://www.drupal.org/user/464564"
  2395. }
  2396. ],
  2397. "description": "AudioField Module",
  2398. "homepage": "https://www.drupal.org/project/audiofield",
  2399. "support": {
  2400. "source": "https://git.drupalcode.org/project/audiofield",
  2401. "issues": "https://www.drupal.org/project/issues/audiofield"
  2402. }
  2403. },
  2404. {
  2405. "name": "drupal/autocomplete_deluxe",
  2406. "version": "2.0.0-rc1",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2410. "reference": "2.0.0-rc1"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2415. "reference": "2.0.0-rc1",
  2416. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2417. },
  2418. "require": {
  2419. "drupal/core": "^8 || ^9"
  2420. },
  2421. "type": "drupal-module",
  2422. "extra": {
  2423. "drupal": {
  2424. "version": "2.0.0-rc1",
  2425. "datestamp": "1592389562",
  2426. "security-coverage": {
  2427. "status": "not-covered",
  2428. "message": "RC releases are not covered by Drupal security advisories."
  2429. }
  2430. }
  2431. },
  2432. "notification-url": "https://packages.drupal.org/8/downloads",
  2433. "license": [
  2434. "GPL-2.0-or-later"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Vardot",
  2439. "homepage": "https://www.drupal.org/vardot",
  2440. "role": "Maintenance for D8 and D9 versions"
  2441. },
  2442. {
  2443. "name": "Mediacurrent",
  2444. "homepage": "https://www.drupal.org/mediacurrent",
  2445. "role": "Supporting organization"
  2446. },
  2447. {
  2448. "name": "RajabNatshah",
  2449. "homepage": "https://www.drupal.org/user/1414312"
  2450. },
  2451. {
  2452. "name": "edwardchiapet",
  2453. "homepage": "https://www.drupal.org/user/2354784"
  2454. },
  2455. {
  2456. "name": "mpriscella",
  2457. "homepage": "https://www.drupal.org/user/2354820"
  2458. },
  2459. {
  2460. "name": "sepgil",
  2461. "homepage": "https://www.drupal.org/user/512828"
  2462. }
  2463. ],
  2464. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2465. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2466. "support": {
  2467. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2468. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2469. }
  2470. },
  2471. {
  2472. "name": "drupal/autologout",
  2473. "version": "1.3.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://git.drupalcode.org/project/autologout.git",
  2477. "reference": "8.x-1.3"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2482. "reference": "8.x-1.3",
  2483. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2484. },
  2485. "require": {
  2486. "drupal/core": "^8 || ^9"
  2487. },
  2488. "type": "drupal-module",
  2489. "extra": {
  2490. "drupal": {
  2491. "version": "8.x-1.3",
  2492. "datestamp": "1587193798",
  2493. "security-coverage": {
  2494. "status": "covered",
  2495. "message": "Covered by Drupal's security advisory policy"
  2496. }
  2497. }
  2498. },
  2499. "notification-url": "https://packages.drupal.org/8/downloads",
  2500. "license": [
  2501. "GPL-2.0+"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "AjK",
  2506. "homepage": "https://www.drupal.org/user/39030"
  2507. },
  2508. {
  2509. "name": "AjitS",
  2510. "homepage": "https://www.drupal.org/user/981944"
  2511. },
  2512. {
  2513. "name": "boshtian",
  2514. "homepage": "https://www.drupal.org/user/1773456"
  2515. },
  2516. {
  2517. "name": "dandrews",
  2518. "homepage": "https://www.drupal.org/user/2014490"
  2519. },
  2520. {
  2521. "name": "darksnow",
  2522. "homepage": "https://www.drupal.org/user/391915"
  2523. },
  2524. {
  2525. "name": "johnennew",
  2526. "homepage": "https://www.drupal.org/user/1150042"
  2527. },
  2528. {
  2529. "name": "jrglasgow",
  2530. "homepage": "https://www.drupal.org/user/36590"
  2531. },
  2532. {
  2533. "name": "kmasood",
  2534. "homepage": "https://www.drupal.org/user/1262860"
  2535. },
  2536. {
  2537. "name": "levelos",
  2538. "homepage": "https://www.drupal.org/user/54135"
  2539. },
  2540. {
  2541. "name": "prabeen.giri",
  2542. "homepage": "https://www.drupal.org/user/913078"
  2543. },
  2544. {
  2545. "name": "str8",
  2546. "homepage": "https://www.drupal.org/user/2865063"
  2547. }
  2548. ],
  2549. "description": "Adds automated timed logout.",
  2550. "homepage": "http://drupal.org/project/autologout",
  2551. "support": {
  2552. "source": "https://git.drupalcode.org/project/autologout"
  2553. }
  2554. },
  2555. {
  2556. "name": "drupal/better_exposed_filters",
  2557. "version": "5.0.0-beta1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2561. "reference": "8.x-5.0-beta1"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2566. "reference": "8.x-5.0-beta1",
  2567. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2568. },
  2569. "require": {
  2570. "drupal/core": "^8.8 || ^9",
  2571. "drupal/jquery_ui": "^1.4",
  2572. "drupal/jquery_ui_datepicker": "^1.0",
  2573. "drupal/jquery_ui_slider": "^1.1",
  2574. "drupal/jquery_ui_touch_punch": "^1.0"
  2575. },
  2576. "type": "drupal-module",
  2577. "extra": {
  2578. "drupal": {
  2579. "version": "8.x-5.0-beta1",
  2580. "datestamp": "1594141892",
  2581. "security-coverage": {
  2582. "status": "not-covered",
  2583. "message": "Beta releases are not covered by Drupal security advisories."
  2584. }
  2585. }
  2586. },
  2587. "notification-url": "https://packages.drupal.org/8/downloads",
  2588. "license": [
  2589. "GPL-2.0+"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Mike Keran",
  2594. "homepage": "https://www.drupal.org/u/mikeker"
  2595. },
  2596. {
  2597. "name": "Martin Keereman",
  2598. "homepage": "https://www.drupal.org/u/etroid"
  2599. },
  2600. {
  2601. "name": "chr.fritsch",
  2602. "homepage": "https://www.drupal.org/user/2103716"
  2603. },
  2604. {
  2605. "name": "jkopel",
  2606. "homepage": "https://www.drupal.org/user/66207"
  2607. },
  2608. {
  2609. "name": "mikeker",
  2610. "homepage": "https://www.drupal.org/user/192273"
  2611. },
  2612. {
  2613. "name": "rlhawk",
  2614. "homepage": "https://www.drupal.org/user/352283"
  2615. }
  2616. ],
  2617. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2618. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2619. "support": {
  2620. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2621. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2622. }
  2623. },
  2624. {
  2625. "name": "drupal/betterlogin",
  2626. "version": "1.5.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2630. "reference": "8.x-1.5"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2635. "reference": "8.x-1.5",
  2636. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2637. },
  2638. "require": {
  2639. "drupal/core": "^8 || ^9"
  2640. },
  2641. "type": "drupal-module",
  2642. "extra": {
  2643. "drupal": {
  2644. "version": "8.x-1.5",
  2645. "datestamp": "1588242718",
  2646. "security-coverage": {
  2647. "status": "covered",
  2648. "message": "Covered by Drupal's security advisory policy"
  2649. }
  2650. }
  2651. },
  2652. "notification-url": "https://packages.drupal.org/8/downloads",
  2653. "license": [
  2654. "GPL-2.0-or-later"
  2655. ],
  2656. "authors": [
  2657. {
  2658. "name": "theamoeba",
  2659. "homepage": "https://www.drupal.org/user/251700"
  2660. },
  2661. {
  2662. "name": "yogeshmpawar",
  2663. "homepage": "https://www.drupal.org/user/2922907"
  2664. }
  2665. ],
  2666. "description": "Make the login screens better :)",
  2667. "homepage": "https://www.drupal.org/project/betterlogin",
  2668. "support": {
  2669. "source": "https://git.drupalcode.org/project/betterlogin"
  2670. }
  2671. },
  2672. {
  2673. "name": "drupal/block_class",
  2674. "version": "1.3.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://git.drupalcode.org/project/block_class.git",
  2678. "reference": "8.x-1.3"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2683. "reference": "8.x-1.3",
  2684. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2685. },
  2686. "require": {
  2687. "drupal/core": "^8 || ^9"
  2688. },
  2689. "type": "drupal-module",
  2690. "extra": {
  2691. "drupal": {
  2692. "version": "8.x-1.3",
  2693. "datestamp": "1604426178",
  2694. "security-coverage": {
  2695. "status": "covered",
  2696. "message": "Covered by Drupal's security advisory policy"
  2697. }
  2698. }
  2699. },
  2700. "notification-url": "https://packages.drupal.org/8/downloads",
  2701. "license": [
  2702. "GPL-2.0-or-later"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Todd Nienkerk",
  2707. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2708. "role": "Maintainer"
  2709. },
  2710. {
  2711. "name": "Renato Gonçalves (RenatoG)",
  2712. "homepage": "https://www.drupal.org/u/RenatoG",
  2713. "email": "renatog@ciandt.com",
  2714. "role": "Maintainer"
  2715. },
  2716. {
  2717. "name": "Neslee Canil Pinto",
  2718. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2719. "role": "Maintainer"
  2720. },
  2721. {
  2722. "name": "Aaron Stanush",
  2723. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2724. "role": "Maintainer"
  2725. },
  2726. {
  2727. "name": "David Suissa (DYdave)",
  2728. "homepage": "https://www.drupal.org/u/DYdave",
  2729. "role": "Maintainer"
  2730. },
  2731. {
  2732. "name": "Four Kitchens",
  2733. "homepage": "https://www.drupal.org/user/358502",
  2734. "role": "Maintainer"
  2735. },
  2736. {
  2737. "name": "berenddeboer",
  2738. "homepage": "https://www.drupal.org/u/berenddeboer",
  2739. "role": "Maintainer"
  2740. },
  2741. {
  2742. "name": "elliotttf",
  2743. "homepage": "https://www.drupal.org/u/elliotttf",
  2744. "role": "Maintainer"
  2745. },
  2746. {
  2747. "name": "Michal Minecki (mirzu)",
  2748. "homepage": "https://www.drupal.org/u/mirzu",
  2749. "role": "Maintainer"
  2750. },
  2751. {
  2752. "name": "Patrick Coffey (pcoffey)",
  2753. "homepage": "https://www.drupal.org/u/pcoffey",
  2754. "role": "Maintainer"
  2755. },
  2756. {
  2757. "name": "Taylor Smith (tsmith512)",
  2758. "homepage": "https://www.drupal.org/u/tsmith512",
  2759. "role": "Maintainer"
  2760. }
  2761. ],
  2762. "description": "Allows assigning classes to Blocks.",
  2763. "homepage": "https://www.drupal.org/project/block_class",
  2764. "keywords": [
  2765. "Drupal"
  2766. ],
  2767. "support": {
  2768. "source": "https://git.drupalcode.org/project/block_class",
  2769. "issues": "https://www.drupal.org/project/issues/block_class",
  2770. "irc": "irc://irc.freenode.org/drupal-contribute"
  2771. }
  2772. },
  2773. {
  2774. "name": "drupal/bulkdelete",
  2775. "version": "dev-1.x",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2779. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2780. },
  2781. "require": {
  2782. "drupal/core": "^8.7.7 || ^9"
  2783. },
  2784. "type": "drupal-module",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-1.x": "1.x-dev"
  2788. },
  2789. "drupal": {
  2790. "version": "8.x-1.x-dev",
  2791. "datestamp": "1590300128",
  2792. "security-coverage": {
  2793. "status": "not-covered",
  2794. "message": "Dev releases are not covered by Drupal security advisories."
  2795. }
  2796. }
  2797. },
  2798. "notification-url": "https://packages.drupal.org/8/downloads",
  2799. "license": [
  2800. "GPL-2.0-or-later"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Kars-T",
  2805. "homepage": "https://www.drupal.org/user/224499"
  2806. },
  2807. {
  2808. "name": "Rahul Seth",
  2809. "homepage": "https://www.drupal.org/user/2694359"
  2810. },
  2811. {
  2812. "name": "adriancid",
  2813. "homepage": "https://www.drupal.org/user/1962106"
  2814. },
  2815. {
  2816. "name": "robertDouglass",
  2817. "homepage": "https://www.drupal.org/user/5449"
  2818. }
  2819. ],
  2820. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2821. "homepage": "https://www.drupal.org/project/bulkdelete",
  2822. "support": {
  2823. "source": "https://git.drupalcode.org/project/bulkdelete"
  2824. },
  2825. "time": "2020-05-24T06:01:38+00:00"
  2826. },
  2827. {
  2828. "name": "drupal/config_devel",
  2829. "version": "dev-1.x",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://git.drupalcode.org/project/config_devel.git",
  2833. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2834. },
  2835. "require": {
  2836. "drupal/core": "^8 || ^9"
  2837. },
  2838. "type": "drupal-module",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-1.x": "1.x-dev"
  2842. },
  2843. "drupal": {
  2844. "version": "8.x-1.7+3-dev",
  2845. "datestamp": "1607535421",
  2846. "security-coverage": {
  2847. "status": "not-covered",
  2848. "message": "Dev releases are not covered by Drupal security advisories."
  2849. }
  2850. }
  2851. },
  2852. "notification-url": "https://packages.drupal.org/8/downloads",
  2853. "license": [
  2854. "GPL-2.0+"
  2855. ],
  2856. "authors": [
  2857. {
  2858. "name": "alexpott",
  2859. "homepage": "https://www.drupal.org/user/157725"
  2860. },
  2861. {
  2862. "name": "benjy",
  2863. "homepage": "https://www.drupal.org/user/1852732"
  2864. },
  2865. {
  2866. "name": "chx",
  2867. "homepage": "https://www.drupal.org/user/9446"
  2868. },
  2869. {
  2870. "name": "joachim",
  2871. "homepage": "https://www.drupal.org/user/107701"
  2872. },
  2873. {
  2874. "name": "nedjo",
  2875. "homepage": "https://www.drupal.org/user/4481"
  2876. },
  2877. {
  2878. "name": "tim.plunkett",
  2879. "homepage": "https://www.drupal.org/user/241634"
  2880. },
  2881. {
  2882. "name": "vijaycs85",
  2883. "homepage": "https://www.drupal.org/user/93488"
  2884. }
  2885. ],
  2886. "description": "Helps developers work with configuration.",
  2887. "homepage": "https://www.drupal.org/project/config_devel",
  2888. "support": {
  2889. "source": "https://git.drupalcode.org/project/config_devel"
  2890. },
  2891. "time": "2020-12-11T15:36:08+00:00"
  2892. },
  2893. {
  2894. "name": "drupal/config_filter",
  2895. "version": "1.8.0",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://git.drupalcode.org/project/config_filter.git",
  2899. "reference": "8.x-1.8"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  2904. "reference": "8.x-1.8",
  2905. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  2906. },
  2907. "require": {
  2908. "drupal/core": "^8 || ^9"
  2909. },
  2910. "suggest": {
  2911. "drupal/config_split": "Split site configuration for different environments."
  2912. },
  2913. "type": "drupal-module",
  2914. "extra": {
  2915. "drupal": {
  2916. "version": "8.x-1.8",
  2917. "datestamp": "1603870062",
  2918. "security-coverage": {
  2919. "status": "covered",
  2920. "message": "Covered by Drupal's security advisory policy"
  2921. }
  2922. }
  2923. },
  2924. "notification-url": "https://packages.drupal.org/8/downloads",
  2925. "license": [
  2926. "GPL-2.0-or-later"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Fabian Bircher",
  2931. "homepage": "https://www.drupal.org/u/bircher",
  2932. "email": "opensource@fabianbircher.com",
  2933. "role": "Maintainer"
  2934. },
  2935. {
  2936. "name": "Nuvole Web",
  2937. "homepage": "http://nuvole.org",
  2938. "email": "info@nuvole.org",
  2939. "role": "Maintainer"
  2940. },
  2941. {
  2942. "name": "pescetti",
  2943. "homepage": "https://www.drupal.org/user/436244"
  2944. }
  2945. ],
  2946. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2947. "homepage": "https://www.drupal.org/project/config_filter",
  2948. "keywords": [
  2949. "Drupal",
  2950. "configuration",
  2951. "configuration management"
  2952. ],
  2953. "support": {
  2954. "source": "https://git.drupalcode.org/project/config_filter",
  2955. "issues": "https://www.drupal.org/project/issues/config_filter",
  2956. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2957. }
  2958. },
  2959. {
  2960. "name": "drupal/config_ignore",
  2961. "version": "2.3.0-rc1",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2965. "reference": "8.x-2.3-rc1"
  2966. },
  2967. "dist": {
  2968. "type": "zip",
  2969. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3-rc1.zip",
  2970. "reference": "8.x-2.3-rc1",
  2971. "shasum": "5debe27690960ca24ac9dca29a1314b9be89dafa"
  2972. },
  2973. "require": {
  2974. "drupal/config_filter": "^1 || ^2",
  2975. "drupal/core": "^8 || ^9"
  2976. },
  2977. "type": "drupal-module",
  2978. "extra": {
  2979. "drupal": {
  2980. "version": "8.x-2.3-rc1",
  2981. "datestamp": "1607033836",
  2982. "security-coverage": {
  2983. "status": "not-covered",
  2984. "message": "RC releases are not covered by Drupal security advisories."
  2985. }
  2986. }
  2987. },
  2988. "notification-url": "https://packages.drupal.org/8/downloads",
  2989. "license": [
  2990. "GPL-2.0-or-later"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Tommy Lynge Jørgensen",
  2995. "homepage": "https://www.drupal.org/u/tlyngej",
  2996. "email": "tlyngej@gmail.com",
  2997. "role": "Maintainer"
  2998. },
  2999. {
  3000. "name": "Fabian Bircher",
  3001. "homepage": "https://www.drupal.org/u/bircher",
  3002. "role": "Maintainer"
  3003. },
  3004. {
  3005. "name": "tlyngej",
  3006. "homepage": "https://www.drupal.org/user/413139"
  3007. }
  3008. ],
  3009. "description": "Ignore certain configuration during import.",
  3010. "homepage": "http://drupal.org/project/config_ignore",
  3011. "support": {
  3012. "source": "https://git.drupalcode.org/project/config_ignore",
  3013. "issues": "http://drupal.org/project/config_ignore",
  3014. "irc": "irc://irc.freenode.org/drupal-contribute"
  3015. }
  3016. },
  3017. {
  3018. "name": "drupal/config_update",
  3019. "version": "1.7.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://git.drupalcode.org/project/config_update.git",
  3023. "reference": "8.x-1.7"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3028. "reference": "8.x-1.7",
  3029. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3030. },
  3031. "require": {
  3032. "drupal/core": "^8 || ^9"
  3033. },
  3034. "type": "drupal-module",
  3035. "extra": {
  3036. "drupal": {
  3037. "version": "8.x-1.7",
  3038. "datestamp": "1586355587",
  3039. "security-coverage": {
  3040. "status": "covered",
  3041. "message": "Covered by Drupal's security advisory policy"
  3042. }
  3043. }
  3044. },
  3045. "notification-url": "https://packages.drupal.org/8/downloads",
  3046. "license": [
  3047. "GPL-2.0-or-later"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "jhodgdon",
  3052. "homepage": "https://www.drupal.org/user/155601"
  3053. },
  3054. {
  3055. "name": "nedjo",
  3056. "homepage": "https://www.drupal.org/user/4481"
  3057. }
  3058. ],
  3059. "description": "Provides basic revert and update functionality for other modules",
  3060. "homepage": "https://www.drupal.org/project/config_update",
  3061. "support": {
  3062. "source": "https://git.drupalcode.org/project/config_update"
  3063. }
  3064. },
  3065. {
  3066. "name": "drupal/console",
  3067. "version": "1.9.7",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3071. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3076. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "alchemy/zippy": "~0.4",
  3081. "composer/installers": "~1.0",
  3082. "doctrine/annotations": "^1.2",
  3083. "doctrine/collections": "^1.3",
  3084. "drupal/console-core": "1.9.7",
  3085. "drupal/console-extend-plugin": "~0.9.5",
  3086. "php": ">=7.0.8",
  3087. "psy/psysh": "0.6.* || ~0.8",
  3088. "symfony/css-selector": "~3.0|~4.0",
  3089. "symfony/dom-crawler": "~3.0|~4.0",
  3090. "symfony/http-foundation": "~3.0|~4.0"
  3091. },
  3092. "suggest": {
  3093. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3094. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3095. },
  3096. "bin": [
  3097. "bin/drupal"
  3098. ],
  3099. "type": "library",
  3100. "autoload": {
  3101. "psr-4": {
  3102. "Drupal\\Console\\": "src"
  3103. }
  3104. },
  3105. "notification-url": "https://packagist.org/downloads/",
  3106. "license": [
  3107. "GPL-2.0-or-later"
  3108. ],
  3109. "authors": [
  3110. {
  3111. "name": "David Flores",
  3112. "email": "dmousex@gmail.com",
  3113. "homepage": "http://dmouse.net"
  3114. },
  3115. {
  3116. "name": "Jesus Manuel Olivas",
  3117. "email": "jesus.olivas@gmail.com",
  3118. "homepage": "http://jmolivas.com"
  3119. },
  3120. {
  3121. "name": "Eduardo Garcia",
  3122. "email": "enzo@enzolutions.com",
  3123. "homepage": "http://enzolutions.com/"
  3124. },
  3125. {
  3126. "name": "Omar Aguirre",
  3127. "email": "omersguchigu@gmail.com"
  3128. },
  3129. {
  3130. "name": "Drupal Console Contributors",
  3131. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3132. }
  3133. ],
  3134. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3135. "homepage": "http://drupalconsole.com/",
  3136. "keywords": [
  3137. "console",
  3138. "development",
  3139. "drupal",
  3140. "symfony"
  3141. ],
  3142. "funding": [
  3143. {
  3144. "url": "https://opencollective.com/drupalconsole",
  3145. "type": "open_collective"
  3146. }
  3147. ],
  3148. "time": "2020-11-30T02:09:53+00:00"
  3149. },
  3150. {
  3151. "name": "drupal/console-core",
  3152. "version": "1.9.7",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3156. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3161. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3162. "shasum": ""
  3163. },
  3164. "require": {
  3165. "dflydev/dot-access-configuration": "^1.0",
  3166. "drupal/console-en": "1.9.7",
  3167. "guzzlehttp/guzzle": "~6.1",
  3168. "php": ">=7.0.8",
  3169. "stecman/symfony-console-completion": "~0.7",
  3170. "symfony/config": "~3.0|^4.4",
  3171. "symfony/console": "~3.0|^4.4",
  3172. "symfony/debug": "~3.0|^4.4",
  3173. "symfony/dependency-injection": "~3.0|^4.4",
  3174. "symfony/event-dispatcher": "~3.0|^4.4",
  3175. "symfony/filesystem": "~3.0|^4.4",
  3176. "symfony/finder": "~3.0|^4.4",
  3177. "symfony/process": "~3.0|^4.4",
  3178. "symfony/translation": "~3.0|^4.4",
  3179. "symfony/yaml": "~3.0|^4.4",
  3180. "twig/twig": "^1.38.2|^2.12.0",
  3181. "webflo/drupal-finder": "^1.0",
  3182. "webmozart/path-util": "^2.3"
  3183. },
  3184. "type": "library",
  3185. "autoload": {
  3186. "files": [
  3187. "src/functions.php"
  3188. ],
  3189. "psr-4": {
  3190. "Drupal\\Console\\Core\\": "src"
  3191. }
  3192. },
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "GPL-2.0-or-later"
  3196. ],
  3197. "authors": [
  3198. {
  3199. "name": "David Flores",
  3200. "email": "dmousex@gmail.com",
  3201. "homepage": "http://dmouse.net"
  3202. },
  3203. {
  3204. "name": "Jesus Manuel Olivas",
  3205. "email": "jesus.olivas@gmail.com",
  3206. "homepage": "http://jmolivas.com"
  3207. },
  3208. {
  3209. "name": "Eduardo Garcia",
  3210. "email": "enzo@enzolutions.com",
  3211. "homepage": "http://enzolutions.com/"
  3212. },
  3213. {
  3214. "name": "Omar Aguirre",
  3215. "email": "omersguchigu@gmail.com"
  3216. },
  3217. {
  3218. "name": "Drupal Console Contributors",
  3219. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3220. }
  3221. ],
  3222. "description": "Drupal Console Core",
  3223. "homepage": "http://drupalconsole.com/",
  3224. "keywords": [
  3225. "console",
  3226. "development",
  3227. "drupal",
  3228. "symfony"
  3229. ],
  3230. "time": "2020-11-30T01:45:57+00:00"
  3231. },
  3232. {
  3233. "name": "drupal/console-en",
  3234. "version": "v1.9.7",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3238. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3243. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3244. "shasum": ""
  3245. },
  3246. "type": "library",
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "GPL-2.0-or-later"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "David Flores",
  3254. "email": "dmousex@gmail.com",
  3255. "homepage": "http://dmouse.net"
  3256. },
  3257. {
  3258. "name": "Jesus Manuel Olivas",
  3259. "email": "jesus.olivas@gmail.com",
  3260. "homepage": "http://jmolivas.com"
  3261. },
  3262. {
  3263. "name": "Eduardo Garcia",
  3264. "email": "enzo@enzolutions.com",
  3265. "homepage": "http://enzolutions.com/"
  3266. },
  3267. {
  3268. "name": "Omar Aguirre",
  3269. "email": "omersguchigu@gmail.com"
  3270. },
  3271. {
  3272. "name": "Drupal Console Contributors",
  3273. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3274. }
  3275. ],
  3276. "description": "Drupal Console English Language",
  3277. "homepage": "http://drupalconsole.com/",
  3278. "keywords": [
  3279. "console",
  3280. "development",
  3281. "drupal",
  3282. "symfony"
  3283. ],
  3284. "time": "2020-08-15T03:34:54+00:00"
  3285. },
  3286. {
  3287. "name": "drupal/console-extend-plugin",
  3288. "version": "0.9.5",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3292. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3297. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "composer-plugin-api": "^1.0 || ^2.0",
  3302. "composer/installers": "^1.2",
  3303. "symfony/finder": "~3.0|^4.4",
  3304. "symfony/yaml": "~3.0|^4.4"
  3305. },
  3306. "type": "composer-plugin",
  3307. "extra": {
  3308. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3309. },
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "GPL-2.0+"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "Jesus Manuel Olivas",
  3322. "email": "jesus.olivas@gmail.com"
  3323. }
  3324. ],
  3325. "description": "Drupal Console Extend Plugin",
  3326. "time": "2020-11-18T00:15:28+00:00"
  3327. },
  3328. {
  3329. "name": "drupal/content_lock",
  3330. "version": "2.2.0",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://git.drupalcode.org/project/content_lock.git",
  3334. "reference": "8.x-2.2"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3339. "reference": "8.x-2.2",
  3340. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3341. },
  3342. "require": {
  3343. "drupal/core": "^8.8|^9.0"
  3344. },
  3345. "require-dev": {
  3346. "drupal/conflict": "^2.0@ALPHA",
  3347. "drupal/prefetch_cache": "dev-1.x"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "drupal": {
  3352. "version": "8.x-2.2",
  3353. "datestamp": "1607936866",
  3354. "security-coverage": {
  3355. "status": "covered",
  3356. "message": "Covered by Drupal's security advisory policy"
  3357. }
  3358. }
  3359. },
  3360. "notification-url": "https://packages.drupal.org/8/downloads",
  3361. "license": [
  3362. "GPL-2.0-or-later"
  3363. ],
  3364. "authors": [
  3365. {
  3366. "name": "chr.fritsch",
  3367. "homepage": "https://www.drupal.org/user/2103716"
  3368. },
  3369. {
  3370. "name": "ergonlogic",
  3371. "homepage": "https://www.drupal.org/user/368613"
  3372. },
  3373. {
  3374. "name": "mfb",
  3375. "homepage": "https://www.drupal.org/user/12302"
  3376. },
  3377. {
  3378. "name": "pandaski",
  3379. "homepage": "https://www.drupal.org/user/1987218"
  3380. }
  3381. ],
  3382. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3383. "homepage": "https://www.drupal.org/project/content_lock",
  3384. "support": {
  3385. "source": "https://git.drupalcode.org/project/content_lock"
  3386. }
  3387. },
  3388. {
  3389. "name": "drupal/context",
  3390. "version": "4.0.0-beta5",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://git.drupalcode.org/project/context.git",
  3394. "reference": "8.x-4.0-beta5"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3399. "reference": "8.x-4.0-beta5",
  3400. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3401. },
  3402. "require": {
  3403. "drupal/core": "^8.8 || ^9"
  3404. },
  3405. "type": "drupal-module",
  3406. "extra": {
  3407. "drupal": {
  3408. "version": "8.x-4.0-beta5",
  3409. "datestamp": "1600783508",
  3410. "security-coverage": {
  3411. "status": "not-covered",
  3412. "message": "Beta releases are not covered by Drupal security advisories."
  3413. }
  3414. }
  3415. },
  3416. "notification-url": "https://packages.drupal.org/8/downloads",
  3417. "license": [
  3418. "MIT"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "Christoffer Palm",
  3423. "homepage": "http://www.oddhill.se/",
  3424. "email": "christoffer.palm@oddhill.se",
  3425. "role": "Developer"
  3426. },
  3427. {
  3428. "name": "Steven Jones",
  3429. "homepage": "https://www.drupal.org/user/99644"
  3430. },
  3431. {
  3432. "name": "alex_b",
  3433. "homepage": "https://www.drupal.org/user/53995"
  3434. },
  3435. {
  3436. "name": "boshtian",
  3437. "homepage": "https://www.drupal.org/user/1773456"
  3438. },
  3439. {
  3440. "name": "colan",
  3441. "homepage": "https://www.drupal.org/user/58704"
  3442. },
  3443. {
  3444. "name": "emanaton",
  3445. "homepage": "https://www.drupal.org/user/120853"
  3446. },
  3447. {
  3448. "name": "febbraro",
  3449. "homepage": "https://www.drupal.org/user/43670"
  3450. },
  3451. {
  3452. "name": "fizk",
  3453. "homepage": "https://www.drupal.org/user/473174"
  3454. },
  3455. {
  3456. "name": "hass",
  3457. "homepage": "https://www.drupal.org/user/85918"
  3458. },
  3459. {
  3460. "name": "hefox",
  3461. "homepage": "https://www.drupal.org/user/426416"
  3462. },
  3463. {
  3464. "name": "jmiccolis",
  3465. "homepage": "https://www.drupal.org/user/31731"
  3466. },
  3467. {
  3468. "name": "nedjo",
  3469. "homepage": "https://www.drupal.org/user/4481"
  3470. },
  3471. {
  3472. "name": "patricksettle",
  3473. "homepage": "https://www.drupal.org/user/26618"
  3474. },
  3475. {
  3476. "name": "paulocs",
  3477. "homepage": "https://www.drupal.org/user/3640109"
  3478. },
  3479. {
  3480. "name": "tekante",
  3481. "homepage": "https://www.drupal.org/user/640024"
  3482. },
  3483. {
  3484. "name": "yhahn",
  3485. "homepage": "https://www.drupal.org/user/264833"
  3486. }
  3487. ],
  3488. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3489. "homepage": "https://github.com/oddhill/context",
  3490. "keywords": [
  3491. "Drupal",
  3492. "block",
  3493. "conditions",
  3494. "context",
  3495. "visibility"
  3496. ],
  3497. "support": {
  3498. "source": "https://github.com/oddhill/context",
  3499. "issues": "https://github.com/oddhill/context/issues",
  3500. "docs": "https://github.com/oddhill/context"
  3501. }
  3502. },
  3503. {
  3504. "name": "drupal/core",
  3505. "version": "9.1.0",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/drupal/core.git",
  3509. "reference": "de8c1769ea3d8b640e1a35c9228880d0b74ca4cc"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/drupal/core/zipball/de8c1769ea3d8b640e1a35c9228880d0b74ca4cc",
  3514. "reference": "de8c1769ea3d8b640e1a35c9228880d0b74ca4cc",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "asm89/stack-cors": "^1.1",
  3519. "composer/semver": "^3.0",
  3520. "doctrine/annotations": "^1.4",
  3521. "doctrine/reflection": "^1.1",
  3522. "egulias/email-validator": "^2.0",
  3523. "ext-date": "*",
  3524. "ext-dom": "*",
  3525. "ext-filter": "*",
  3526. "ext-gd": "*",
  3527. "ext-hash": "*",
  3528. "ext-json": "*",
  3529. "ext-pcre": "*",
  3530. "ext-pdo": "*",
  3531. "ext-session": "*",
  3532. "ext-simplexml": "*",
  3533. "ext-spl": "*",
  3534. "ext-tokenizer": "*",
  3535. "ext-xml": "*",
  3536. "guzzlehttp/guzzle": "^6.5.2",
  3537. "laminas/laminas-diactoros": "^2.1",
  3538. "laminas/laminas-feed": "^2.12",
  3539. "masterminds/html5": "^2.1",
  3540. "pear/archive_tar": "^1.4.11",
  3541. "php": ">=7.3.0",
  3542. "psr/log": "^1.0",
  3543. "stack/builder": "^1.0",
  3544. "symfony-cmf/routing": "^2.1",
  3545. "symfony/console": "^4.4",
  3546. "symfony/dependency-injection": "^4.4",
  3547. "symfony/event-dispatcher": "^4.4",
  3548. "symfony/http-foundation": "^4.4.7",
  3549. "symfony/http-kernel": "^4.4",
  3550. "symfony/polyfill-iconv": "^1.0",
  3551. "symfony/process": "^4.4",
  3552. "symfony/psr-http-message-bridge": "^2.0",
  3553. "symfony/routing": "^4.4",
  3554. "symfony/serializer": "^4.4",
  3555. "symfony/translation": "^4.4",
  3556. "symfony/validator": "^4.4",
  3557. "symfony/yaml": "^4.4",
  3558. "twig/twig": "^2.12.0",
  3559. "typo3/phar-stream-wrapper": "^3.1.3"
  3560. },
  3561. "conflict": {
  3562. "drush/drush": "<8.1.10"
  3563. },
  3564. "replace": {
  3565. "drupal/action": "self.version",
  3566. "drupal/aggregator": "self.version",
  3567. "drupal/automated_cron": "self.version",
  3568. "drupal/ban": "self.version",
  3569. "drupal/bartik": "self.version",
  3570. "drupal/basic_auth": "self.version",
  3571. "drupal/big_pipe": "self.version",
  3572. "drupal/block": "self.version",
  3573. "drupal/block_content": "self.version",
  3574. "drupal/book": "self.version",
  3575. "drupal/breakpoint": "self.version",
  3576. "drupal/ckeditor": "self.version",
  3577. "drupal/claro": "self.version",
  3578. "drupal/classy": "self.version",
  3579. "drupal/color": "self.version",
  3580. "drupal/comment": "self.version",
  3581. "drupal/config": "self.version",
  3582. "drupal/config_translation": "self.version",
  3583. "drupal/contact": "self.version",
  3584. "drupal/content_moderation": "self.version",
  3585. "drupal/content_translation": "self.version",
  3586. "drupal/contextual": "self.version",
  3587. "drupal/core-annotation": "self.version",
  3588. "drupal/core-assertion": "self.version",
  3589. "drupal/core-bridge": "self.version",
  3590. "drupal/core-class-finder": "self.version",
  3591. "drupal/core-datetime": "self.version",
  3592. "drupal/core-dependency-injection": "self.version",
  3593. "drupal/core-diff": "self.version",
  3594. "drupal/core-discovery": "self.version",
  3595. "drupal/core-event-dispatcher": "self.version",
  3596. "drupal/core-file-cache": "self.version",
  3597. "drupal/core-file-security": "self.version",
  3598. "drupal/core-filesystem": "self.version",
  3599. "drupal/core-front-matter": "self.version",
  3600. "drupal/core-gettext": "self.version",
  3601. "drupal/core-graph": "self.version",
  3602. "drupal/core-http-foundation": "self.version",
  3603. "drupal/core-php-storage": "self.version",
  3604. "drupal/core-plugin": "self.version",
  3605. "drupal/core-proxy-builder": "self.version",
  3606. "drupal/core-render": "self.version",
  3607. "drupal/core-serialization": "self.version",
  3608. "drupal/core-transliteration": "self.version",
  3609. "drupal/core-utility": "self.version",
  3610. "drupal/core-uuid": "self.version",
  3611. "drupal/core-version": "self.version",
  3612. "drupal/datetime": "self.version",
  3613. "drupal/datetime_range": "self.version",
  3614. "drupal/dblog": "self.version",
  3615. "drupal/dynamic_page_cache": "self.version",
  3616. "drupal/editor": "self.version",
  3617. "drupal/entity_reference": "self.version",
  3618. "drupal/field": "self.version",
  3619. "drupal/field_layout": "self.version",
  3620. "drupal/field_ui": "self.version",
  3621. "drupal/file": "self.version",
  3622. "drupal/filter": "self.version",
  3623. "drupal/forum": "self.version",
  3624. "drupal/hal": "self.version",
  3625. "drupal/help": "self.version",
  3626. "drupal/help_topics": "self.version",
  3627. "drupal/history": "self.version",
  3628. "drupal/image": "self.version",
  3629. "drupal/inline_form_errors": "self.version",
  3630. "drupal/jsonapi": "self.version",
  3631. "drupal/language": "self.version",
  3632. "drupal/layout_builder": "self.version",
  3633. "drupal/layout_discovery": "self.version",
  3634. "drupal/link": "self.version",
  3635. "drupal/locale": "self.version",
  3636. "drupal/media": "self.version",
  3637. "drupal/media_library": "self.version",
  3638. "drupal/menu_link_content": "self.version",
  3639. "drupal/menu_ui": "self.version",
  3640. "drupal/migrate": "self.version",
  3641. "drupal/migrate_drupal": "self.version",
  3642. "drupal/migrate_drupal_multilingual": "self.version",
  3643. "drupal/migrate_drupal_ui": "self.version",
  3644. "drupal/minimal": "self.version",
  3645. "drupal/node": "self.version",
  3646. "drupal/olivero": "self.version",
  3647. "drupal/options": "self.version",
  3648. "drupal/page_cache": "self.version",
  3649. "drupal/path": "self.version",
  3650. "drupal/path_alias": "self.version",
  3651. "drupal/quickedit": "self.version",
  3652. "drupal/rdf": "self.version",
  3653. "drupal/responsive_image": "self.version",
  3654. "drupal/rest": "self.version",
  3655. "drupal/search": "self.version",
  3656. "drupal/serialization": "self.version",
  3657. "drupal/settings_tray": "self.version",
  3658. "drupal/seven": "self.version",
  3659. "drupal/shortcut": "self.version",
  3660. "drupal/standard": "self.version",
  3661. "drupal/stark": "self.version",
  3662. "drupal/statistics": "self.version",
  3663. "drupal/syslog": "self.version",
  3664. "drupal/system": "self.version",
  3665. "drupal/taxonomy": "self.version",
  3666. "drupal/telephone": "self.version",
  3667. "drupal/text": "self.version",
  3668. "drupal/toolbar": "self.version",
  3669. "drupal/tour": "self.version",
  3670. "drupal/tracker": "self.version",
  3671. "drupal/update": "self.version",
  3672. "drupal/user": "self.version",
  3673. "drupal/views": "self.version",
  3674. "drupal/views_ui": "self.version",
  3675. "drupal/workflows": "self.version",
  3676. "drupal/workspaces": "self.version"
  3677. },
  3678. "type": "drupal-core",
  3679. "extra": {
  3680. "drupal-scaffold": {
  3681. "file-mapping": {
  3682. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3683. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3684. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3685. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3686. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3687. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3688. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3689. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3690. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3691. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3692. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3693. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3694. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3695. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3696. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3697. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3698. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3699. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3700. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3701. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3702. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3703. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3704. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3705. }
  3706. },
  3707. "patches_applied": {
  3708. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "psr-4": {
  3713. "Drupal\\Core\\": "lib/Drupal/Core",
  3714. "Drupal\\Component\\": "lib/Drupal/Component",
  3715. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3716. },
  3717. "classmap": [
  3718. "lib/Drupal.php",
  3719. "lib/Drupal/Component/DependencyInjection/Container.php",
  3720. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3721. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3722. "lib/Drupal/Component/Utility/Timer.php",
  3723. "lib/Drupal/Component/Utility/Unicode.php",
  3724. "lib/Drupal/Core/Cache/Cache.php",
  3725. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3726. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3727. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3728. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3729. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3730. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3731. "lib/Drupal/Core/Database/Connection.php",
  3732. "lib/Drupal/Core/Database/Database.php",
  3733. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3734. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3735. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3736. "lib/Drupal/Core/Database/Statement.php",
  3737. "lib/Drupal/Core/Database/StatementInterface.php",
  3738. "lib/Drupal/Core/DependencyInjection/Container.php",
  3739. "lib/Drupal/Core/DrupalKernel.php",
  3740. "lib/Drupal/Core/DrupalKernelInterface.php",
  3741. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3742. "lib/Drupal/Core/Site/Settings.php"
  3743. ],
  3744. "files": [
  3745. "includes/bootstrap.inc"
  3746. ]
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "GPL-2.0-or-later"
  3751. ],
  3752. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3753. "time": "2020-12-02T18:11:58+00:00"
  3754. },
  3755. {
  3756. "name": "drupal/core-composer-scaffold",
  3757. "version": "9.1.0",
  3758. "source": {
  3759. "type": "git",
  3760. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3761. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3762. },
  3763. "dist": {
  3764. "type": "zip",
  3765. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3766. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3767. "shasum": ""
  3768. },
  3769. "require": {
  3770. "composer-plugin-api": "^1 || ^2",
  3771. "php": ">=7.3.0"
  3772. },
  3773. "conflict": {
  3774. "drupal-composer/drupal-scaffold": "*"
  3775. },
  3776. "require-dev": {
  3777. "composer/composer": "^1.8@stable"
  3778. },
  3779. "type": "composer-plugin",
  3780. "extra": {
  3781. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3782. "branch-alias": {
  3783. "dev-master": "1.0.x-dev"
  3784. }
  3785. },
  3786. "autoload": {
  3787. "psr-4": {
  3788. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3789. }
  3790. },
  3791. "license": [
  3792. "GPL-2.0-or-later"
  3793. ],
  3794. "description": "A flexible Composer project scaffold builder.",
  3795. "homepage": "https://www.drupal.org/project/drupal",
  3796. "keywords": [
  3797. "drupal"
  3798. ]
  3799. },
  3800. {
  3801. "name": "drupal/core-project-message",
  3802. "version": "9.1.0",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/drupal/core-project-message.git",
  3806. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3811. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "composer-plugin-api": "^1.1 || ^2",
  3816. "php": ">=7.3.0"
  3817. },
  3818. "type": "composer-plugin",
  3819. "extra": {
  3820. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3821. },
  3822. "autoload": {
  3823. "psr-4": {
  3824. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3825. }
  3826. },
  3827. "license": [
  3828. "GPL-2.0-or-later"
  3829. ],
  3830. "description": "Adds a message after Composer installation.",
  3831. "homepage": "https://www.drupal.org/project/drupal",
  3832. "keywords": [
  3833. "drupal"
  3834. ]
  3835. },
  3836. {
  3837. "name": "drupal/core-recommended",
  3838. "version": "9.1.0",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/drupal/core-recommended.git",
  3842. "reference": "0e9d5f06c35fc4365864a6395812e6422ecdd62d"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/0e9d5f06c35fc4365864a6395812e6422ecdd62d",
  3847. "reference": "0e9d5f06c35fc4365864a6395812e6422ecdd62d",
  3848. "shasum": ""
  3849. },
  3850. "require": {
  3851. "asm89/stack-cors": "1.3.0",
  3852. "composer/semver": "3.2.2",
  3853. "doctrine/annotations": "1.11.1",
  3854. "doctrine/lexer": "1.2.1",
  3855. "doctrine/reflection": "1.2.2",
  3856. "drupal/core": "9.1.0",
  3857. "egulias/email-validator": "2.1.22",
  3858. "guzzlehttp/guzzle": "6.5.5",
  3859. "guzzlehttp/promises": "1.4.0",
  3860. "guzzlehttp/psr7": "1.7.0",
  3861. "laminas/laminas-diactoros": "2.5.0",
  3862. "laminas/laminas-escaper": "2.7.0",
  3863. "laminas/laminas-feed": "2.13.0",
  3864. "laminas/laminas-stdlib": "3.3.0",
  3865. "laminas/laminas-zendframework-bridge": "1.1.1",
  3866. "masterminds/html5": "2.7.4",
  3867. "pear/archive_tar": "1.4.11",
  3868. "pear/console_getopt": "v1.4.3",
  3869. "pear/pear-core-minimal": "v1.10.10",
  3870. "pear/pear_exception": "v1.0.1",
  3871. "psr/container": "1.0.0",
  3872. "psr/http-factory": "1.0.1",
  3873. "psr/http-message": "1.0.1",
  3874. "psr/log": "1.1.3",
  3875. "ralouphie/getallheaders": "3.0.3",
  3876. "stack/builder": "v1.0.6",
  3877. "symfony-cmf/routing": "2.3.3",
  3878. "symfony/console": "v4.4.16",
  3879. "symfony/debug": "v4.4.16",
  3880. "symfony/dependency-injection": "v4.4.16",
  3881. "symfony/error-handler": "v4.4.16",
  3882. "symfony/event-dispatcher": "v4.4.16",
  3883. "symfony/event-dispatcher-contracts": "v1.1.9",
  3884. "symfony/http-client-contracts": "v2.3.1",
  3885. "symfony/http-foundation": "v4.4.16",
  3886. "symfony/http-kernel": "v4.4.16",
  3887. "symfony/mime": "v5.1.8",
  3888. "symfony/polyfill-ctype": "v1.20.0",
  3889. "symfony/polyfill-iconv": "v1.20.0",
  3890. "symfony/polyfill-intl-idn": "v1.20.0",
  3891. "symfony/polyfill-intl-normalizer": "v1.20.0",
  3892. "symfony/polyfill-mbstring": "v1.20.0",
  3893. "symfony/polyfill-php80": "v1.20.0",
  3894. "symfony/process": "v4.4.16",
  3895. "symfony/psr-http-message-bridge": "v2.0.2",
  3896. "symfony/routing": "v4.4.16",
  3897. "symfony/serializer": "v4.4.16",
  3898. "symfony/service-contracts": "v2.2.0",
  3899. "symfony/translation": "v4.4.16",
  3900. "symfony/translation-contracts": "v2.3.0",
  3901. "symfony/validator": "v4.4.16",
  3902. "symfony/var-dumper": "v5.1.8",
  3903. "symfony/yaml": "v4.4.16",
  3904. "twig/twig": "v2.14.1",
  3905. "typo3/phar-stream-wrapper": "v3.1.6"
  3906. },
  3907. "conflict": {
  3908. "webflo/drupal-core-strict": "*"
  3909. },
  3910. "type": "metapackage",
  3911. "license": [
  3912. "GPL-2.0-or-later"
  3913. ],
  3914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core."
  3915. },
  3916. {
  3917. "name": "drupal/cshs",
  3918. "version": "dev-1.x",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://git.drupalcode.org/project/cshs.git",
  3922. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  3923. },
  3924. "require": {
  3925. "drupal/core": "^8 || ^9"
  3926. },
  3927. "type": "drupal-module",
  3928. "extra": {
  3929. "branch-alias": {
  3930. "dev-1.x": "1.x-dev"
  3931. },
  3932. "drupal": {
  3933. "version": "8.x-1.2+4-dev",
  3934. "datestamp": "1607678639",
  3935. "security-coverage": {
  3936. "status": "not-covered",
  3937. "message": "Dev releases are not covered by Drupal security advisories."
  3938. }
  3939. }
  3940. },
  3941. "notification-url": "https://packages.drupal.org/8/downloads",
  3942. "license": [
  3943. "GPL-2.0-or-later"
  3944. ],
  3945. "authors": [
  3946. {
  3947. "name": "Walter Jenner",
  3948. "homepage": "https://drupal.org/u/valderama"
  3949. },
  3950. {
  3951. "name": "Sergii Bondarenko",
  3952. "homepage": "https://drupal.org/u/BR0kEN",
  3953. "email": "sb@firstvector.org"
  3954. },
  3955. {
  3956. "name": "Daneel Cruz",
  3957. "homepage": "https://drupal.org/u/daneelcm"
  3958. },
  3959. {
  3960. "name": "Purushotam Rai",
  3961. "homepage": "https://drupal.org/u/purushotam.rai"
  3962. }
  3963. ],
  3964. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3965. "homepage": "https://www.drupal.org/project/cshs",
  3966. "keywords": [
  3967. "client-side-select",
  3968. "hierarchical-select",
  3969. "module",
  3970. "select",
  3971. "taxonomy"
  3972. ],
  3973. "support": {
  3974. "source": "https://git.drupalcode.org/project/cshs",
  3975. "issues": "https://www.drupal.org/project/issues/cshs"
  3976. },
  3977. "time": "2020-12-11T09:23:35+00:00"
  3978. },
  3979. {
  3980. "name": "drupal/ctools",
  3981. "version": "3.4.0",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://git.drupalcode.org/project/ctools.git",
  3985. "reference": "8.x-3.4"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3990. "reference": "8.x-3.4",
  3991. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3992. },
  3993. "require": {
  3994. "drupal/core": "^8.7.7 || ^9"
  3995. },
  3996. "type": "drupal-module",
  3997. "extra": {
  3998. "drupal": {
  3999. "version": "8.x-3.4",
  4000. "datestamp": "1585763383",
  4001. "security-coverage": {
  4002. "status": "covered",
  4003. "message": "Covered by Drupal's security advisory policy"
  4004. }
  4005. }
  4006. },
  4007. "notification-url": "https://packages.drupal.org/8/downloads",
  4008. "license": [
  4009. "GPL-2.0+"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Kris Vanderwater (EclipseGc)",
  4014. "homepage": "https://www.drupal.org/u/eclipsegc",
  4015. "role": "Maintainer"
  4016. },
  4017. {
  4018. "name": "Jakob Perry (japerry)",
  4019. "homepage": "https://www.drupal.org/u/japerry",
  4020. "role": "Maintainer"
  4021. },
  4022. {
  4023. "name": "Tim Plunkett (tim.plunkett)",
  4024. "homepage": "https://www.drupal.org/u/timplunkett",
  4025. "role": "Maintainer"
  4026. },
  4027. {
  4028. "name": "James Gilliland (neclimdul)",
  4029. "homepage": "https://www.drupal.org/u/neclimdul",
  4030. "role": "Maintainer"
  4031. },
  4032. {
  4033. "name": "Daniel Wehner (dawehner)",
  4034. "homepage": "https://www.drupal.org/u/dawehner",
  4035. "role": "Maintainer"
  4036. },
  4037. {
  4038. "name": "joelpittet",
  4039. "homepage": "https://www.drupal.org/user/160302"
  4040. },
  4041. {
  4042. "name": "merlinofchaos",
  4043. "homepage": "https://www.drupal.org/user/26979"
  4044. },
  4045. {
  4046. "name": "neclimdul",
  4047. "homepage": "https://www.drupal.org/user/48673"
  4048. },
  4049. {
  4050. "name": "sdboyer",
  4051. "homepage": "https://www.drupal.org/user/146719"
  4052. },
  4053. {
  4054. "name": "sun",
  4055. "homepage": "https://www.drupal.org/user/54136"
  4056. },
  4057. {
  4058. "name": "tim.plunkett",
  4059. "homepage": "https://www.drupal.org/user/241634"
  4060. }
  4061. ],
  4062. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4063. "homepage": "https://www.drupal.org/project/ctools",
  4064. "support": {
  4065. "source": "https://git.drupalcode.org/project/ctools",
  4066. "issues": "https://www.drupal.org/project/issues/ctools"
  4067. }
  4068. },
  4069. {
  4070. "name": "drupal/date_range_formatter",
  4071. "version": "dev-9.0.x",
  4072. "source": {
  4073. "type": "git",
  4074. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4075. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4076. },
  4077. "require": {
  4078. "drupal/core": "^8 || ^9"
  4079. },
  4080. "type": "drupal-module",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-9.0.x": "9.0.x-dev"
  4084. },
  4085. "drupal": {
  4086. "version": "9.0.x-dev",
  4087. "datestamp": "1589956448",
  4088. "security-coverage": {
  4089. "status": "not-covered",
  4090. "message": "Dev releases are not covered by Drupal security advisories."
  4091. }
  4092. }
  4093. },
  4094. "notification-url": "https://packages.drupal.org/8/downloads",
  4095. "license": [
  4096. "GPL-2.0-or-later"
  4097. ],
  4098. "authors": [
  4099. {
  4100. "name": "maximpodorov",
  4101. "homepage": "https://www.drupal.org/user/515310"
  4102. },
  4103. {
  4104. "name": "sudishth",
  4105. "homepage": "https://www.drupal.org/user/1440562"
  4106. }
  4107. ],
  4108. "description": "Formats date ranges.",
  4109. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4110. "support": {
  4111. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4112. },
  4113. "time": "2020-05-20T06:32:37+00:00"
  4114. },
  4115. {
  4116. "name": "drupal/devel",
  4117. "version": "4.0.1",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/devel.git",
  4121. "reference": "4.0.1"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://ftp.drupal.org/files/projects/devel-4.0.1.zip",
  4126. "reference": "4.0.1",
  4127. "shasum": "cf2458de1cbac00a88ed26ae3da2cf331e1bc047"
  4128. },
  4129. "require": {
  4130. "doctrine/common": "^2.7",
  4131. "drupal/core": "^8.8 || ^9",
  4132. "symfony/var-dumper": "^4 || ^5"
  4133. },
  4134. "conflict": {
  4135. "kint-php/kint": "<3"
  4136. },
  4137. "require-dev": {
  4138. "composer/installers": "^1",
  4139. "cweagans/composer-patches": "~1.0",
  4140. "drupal/core-composer-scaffold": "^8.0",
  4141. "drupal/core-dev": "^8.0",
  4142. "drupal/core-recommended": "^8.0",
  4143. "drush/drush": "^10",
  4144. "mglaman/phpstan-drupal": "^0.12",
  4145. "php-parallel-lint/php-parallel-lint": "^1.2",
  4146. "phpstan/phpstan-deprecation-rules": "^0.12",
  4147. "zaporylie/composer-drupal-optimizations": "^1.0"
  4148. },
  4149. "suggest": {
  4150. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4151. },
  4152. "type": "drupal-module",
  4153. "extra": {
  4154. "drupal": {
  4155. "version": "4.0.1",
  4156. "datestamp": "1600300079",
  4157. "security-coverage": {
  4158. "status": "covered",
  4159. "message": "Covered by Drupal's security advisory policy"
  4160. }
  4161. },
  4162. "installer-paths": {
  4163. "web/core": [
  4164. "type:drupal-core"
  4165. ],
  4166. "web/libraries/{$name}": [
  4167. "type:drupal-library"
  4168. ],
  4169. "web/modules/contrib/{$name}": [
  4170. "type:drupal-module"
  4171. ],
  4172. "web/profiles/{$name}": [
  4173. "type:drupal-profile"
  4174. ],
  4175. "web/themes/{$name}": [
  4176. "type:drupal-theme"
  4177. ],
  4178. "drush/{$name}": [
  4179. "type:drupal-drush"
  4180. ]
  4181. },
  4182. "drupal-scaffold": {
  4183. "locations": {
  4184. "web-root": "web/"
  4185. }
  4186. },
  4187. "drush": {
  4188. "services": {
  4189. "drush.services.yml": "^9 || ^10"
  4190. }
  4191. }
  4192. },
  4193. "autoload": {
  4194. "classmap": [
  4195. ".spoons/ScriptHandler.php"
  4196. ]
  4197. },
  4198. "notification-url": "https://packages.drupal.org/8/downloads",
  4199. "scripts": {
  4200. "si": [
  4201. "drush si -v --db-url=${SIMPLETEST_DB:-mysql://root:password@mariadb/db}"
  4202. ],
  4203. "phpcs": [
  4204. "phpcs --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 web/modules/custom"
  4205. ],
  4206. "lint": [
  4207. "parallel-lint --exclude web --exclude vendor ."
  4208. ],
  4209. "webserver": [
  4210. "cd web && php -S 0.0.0.0:8888 .ht.router.php"
  4211. ],
  4212. "chromedriver": [
  4213. "chromedriver --port=9515 --verbose --whitelisted-ips --log-path=/tmp/chromedriver.log --no-sandbox"
  4214. ],
  4215. "unit": [
  4216. "phpunit --verbose web/modules/custom"
  4217. ],
  4218. "phpstan": [
  4219. "phpstan analyse web/modules/custom"
  4220. ],
  4221. "stylelint": [
  4222. "yarn --silent --cwd web/core stylelint --formatter verbose --config ./.stylelintrc.json ../modules/custom/**/*.css"
  4223. ],
  4224. "eslint": [
  4225. "yarn --silent --cwd web/core eslint -c ./.eslintrc.json ../modules/custom"
  4226. ],
  4227. "post-update-cmd": [
  4228. "Spoons\\ScriptHandler::createSymlinks"
  4229. ]
  4230. },
  4231. "license": [
  4232. "GPL-2.0-or-later"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "drupalspoons",
  4237. "homepage": "https://www.drupal.org/user/3647684"
  4238. },
  4239. {
  4240. "name": "moshe weitzman",
  4241. "homepage": "https://www.drupal.org/user/23"
  4242. }
  4243. ],
  4244. "description": "Various blocks, pages, and functions for developers.",
  4245. "homepage": "https://www.drupal.org/project/devel",
  4246. "support": {
  4247. "source": "https://gitlab.com/drupalspoons/devel",
  4248. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4249. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4250. }
  4251. },
  4252. {
  4253. "name": "drupal/domain",
  4254. "version": "dev-1.x",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://git.drupalcode.org/project/domain.git",
  4258. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4259. },
  4260. "require": {
  4261. "drupal/core": "^8 || ^9"
  4262. },
  4263. "require-dev": {
  4264. "drupal/domain_access": "*",
  4265. "drupal/domain_config": "*"
  4266. },
  4267. "type": "drupal-module",
  4268. "extra": {
  4269. "branch-alias": {
  4270. "dev-1.x": "1.x-dev"
  4271. },
  4272. "drupal": {
  4273. "version": "8.x-1.x-dev",
  4274. "datestamp": "1603119924",
  4275. "security-coverage": {
  4276. "status": "not-covered",
  4277. "message": "Dev releases are not covered by Drupal security advisories."
  4278. }
  4279. }
  4280. },
  4281. "notification-url": "https://packages.drupal.org/8/downloads",
  4282. "license": [
  4283. "GPL-2.0-or-later"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "agentrickard",
  4288. "homepage": "https://www.drupal.org/user/20975"
  4289. },
  4290. {
  4291. "name": "nonsie",
  4292. "homepage": "https://www.drupal.org/user/29899"
  4293. }
  4294. ],
  4295. "description": "Creates domain records within a Drupal installation.",
  4296. "homepage": "https://www.drupal.org/project/domain",
  4297. "support": {
  4298. "source": "https://git.drupalcode.org/project/domain"
  4299. },
  4300. "time": "2020-11-18T18:57:19+00:00"
  4301. },
  4302. {
  4303. "name": "drupal/domain_alias",
  4304. "version": "dev-1.x",
  4305. "require": {
  4306. "drupal/core": "^8 || ^9",
  4307. "drupal/domain": "*"
  4308. },
  4309. "type": "metapackage",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-1.x": "1.x-dev"
  4313. },
  4314. "drupal": {
  4315. "version": "8.x-1.x-dev",
  4316. "datestamp": "1603119924",
  4317. "security-coverage": {
  4318. "status": "not-covered",
  4319. "message": "Dev releases are not covered by Drupal security advisories."
  4320. }
  4321. }
  4322. },
  4323. "notification-url": "https://packages.drupal.org/8/downloads",
  4324. "license": [
  4325. "GPL-2.0-or-later"
  4326. ],
  4327. "authors": [
  4328. {
  4329. "name": "agentrickard",
  4330. "homepage": "https://www.drupal.org/user/20975"
  4331. },
  4332. {
  4333. "name": "nonsie",
  4334. "homepage": "https://www.drupal.org/user/29899"
  4335. }
  4336. ],
  4337. "description": "Maps multiple host requests to a single domain record.",
  4338. "homepage": "https://www.drupal.org/project/domain",
  4339. "support": {
  4340. "source": "https://git.drupalcode.org/project/domain"
  4341. }
  4342. },
  4343. {
  4344. "name": "drupal/domain_config",
  4345. "version": "dev-1.x",
  4346. "require": {
  4347. "drupal/core": "^8 || ^9",
  4348. "drupal/domain": "*"
  4349. },
  4350. "type": "metapackage",
  4351. "extra": {
  4352. "branch-alias": {
  4353. "dev-1.x": "1.x-dev"
  4354. },
  4355. "drupal": {
  4356. "version": "8.x-1.x-dev",
  4357. "datestamp": "1603119924",
  4358. "security-coverage": {
  4359. "status": "not-covered",
  4360. "message": "Dev releases are not covered by Drupal security advisories."
  4361. }
  4362. }
  4363. },
  4364. "notification-url": "https://packages.drupal.org/8/downloads",
  4365. "license": [
  4366. "GPL-2.0-or-later"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "agentrickard",
  4371. "homepage": "https://www.drupal.org/user/20975"
  4372. },
  4373. {
  4374. "name": "nonsie",
  4375. "homepage": "https://www.drupal.org/user/29899"
  4376. }
  4377. ],
  4378. "description": "Allows domain specific configuration.",
  4379. "homepage": "https://www.drupal.org/project/domain",
  4380. "support": {
  4381. "source": "https://git.drupalcode.org/project/domain"
  4382. }
  4383. },
  4384. {
  4385. "name": "drupal/domain_site_settings",
  4386. "version": "dev-1.x",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4390. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4391. },
  4392. "require": {
  4393. "drupal/core": "^8 || ^9",
  4394. "drupal/domain": "*",
  4395. "drupal/domain_config": "*"
  4396. },
  4397. "type": "drupal-module",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-1.x": "1.x-dev"
  4401. },
  4402. "drupal": {
  4403. "version": "8.x-1.3+7-dev",
  4404. "datestamp": "1584297727",
  4405. "security-coverage": {
  4406. "status": "not-covered",
  4407. "message": "Dev releases are not covered by Drupal security advisories."
  4408. }
  4409. }
  4410. },
  4411. "notification-url": "https://packages.drupal.org/8/downloads",
  4412. "license": [
  4413. "GPL-2.0+"
  4414. ],
  4415. "authors": [
  4416. {
  4417. "name": "aloknarwaria",
  4418. "homepage": "https://www.drupal.org/user/906640"
  4419. },
  4420. {
  4421. "name": "malaynayak",
  4422. "homepage": "https://www.drupal.org/user/3529755"
  4423. }
  4424. ],
  4425. "description": "Basic Site Setting for Domains.",
  4426. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4427. "keywords": [
  4428. "Drupal"
  4429. ],
  4430. "support": {
  4431. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4432. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4433. },
  4434. "time": "2020-03-15T18:41:41+00:00"
  4435. },
  4436. {
  4437. "name": "drupal/email_registration",
  4438. "version": "1.1.0",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://git.drupalcode.org/project/email_registration.git",
  4442. "reference": "8.x-1.1"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4447. "reference": "8.x-1.1",
  4448. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4449. },
  4450. "require": {
  4451. "drupal/core": "^8.7.7 || ^9"
  4452. },
  4453. "conflict": {
  4454. "drupal/commerce": "<2.12"
  4455. },
  4456. "require-dev": {
  4457. "drupal/commerce": "^2.0"
  4458. },
  4459. "type": "drupal-module",
  4460. "extra": {
  4461. "drupal": {
  4462. "version": "8.x-1.1",
  4463. "datestamp": "1592317072",
  4464. "security-coverage": {
  4465. "status": "covered",
  4466. "message": "Covered by Drupal's security advisory policy"
  4467. }
  4468. }
  4469. },
  4470. "notification-url": "https://packages.drupal.org/8/downloads",
  4471. "license": [
  4472. "GPL-2.0-or-later"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Greg Knaddison (greggles)",
  4477. "homepage": "https://www.drupal.org/u/greggles",
  4478. "role": "Maintainer"
  4479. },
  4480. {
  4481. "name": "Andrey Postnikov (andypost)",
  4482. "homepage": "https://www.drupal.org/u/andypost",
  4483. "role": "Maintainer"
  4484. },
  4485. {
  4486. "name": "Chris Herberte",
  4487. "homepage": "https://www.drupal.org/u/chris-herberte",
  4488. "role": "Maintainer"
  4489. },
  4490. {
  4491. "name": "Moshe Weitzman (moshe weitzman)",
  4492. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4493. "role": "Maintainer"
  4494. }
  4495. ],
  4496. "description": "Allows users to register with an email address as their username.",
  4497. "homepage": "https://www.drupal.org/project/email_registration",
  4498. "support": {
  4499. "source": "https://git.drupalcode.org/project/email_registration",
  4500. "issues": "http://drupal.org/project/issues/email_registration"
  4501. }
  4502. },
  4503. {
  4504. "name": "drupal/embed",
  4505. "version": "1.4.0",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://git.drupalcode.org/project/embed.git",
  4509. "reference": "8.x-1.4"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4514. "reference": "8.x-1.4",
  4515. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4516. },
  4517. "require": {
  4518. "drupal/core": "^8.7.7 || ^9"
  4519. },
  4520. "type": "drupal-module",
  4521. "extra": {
  4522. "drupal": {
  4523. "version": "8.x-1.4",
  4524. "datestamp": "1590176831",
  4525. "security-coverage": {
  4526. "status": "covered",
  4527. "message": "Covered by Drupal's security advisory policy"
  4528. }
  4529. }
  4530. },
  4531. "notification-url": "https://packages.drupal.org/8/downloads",
  4532. "license": [
  4533. "GPL-2.0-or-later"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Dave Reid",
  4538. "homepage": "https://www.drupal.org/user/53892"
  4539. },
  4540. {
  4541. "name": "Devin Carlson",
  4542. "homepage": "https://www.drupal.org/user/290182"
  4543. },
  4544. {
  4545. "name": "Drupal Media Team",
  4546. "homepage": "https://www.drupal.org/user/3260690"
  4547. },
  4548. {
  4549. "name": "cs_shadow",
  4550. "homepage": "https://www.drupal.org/user/2828287"
  4551. },
  4552. {
  4553. "name": "phenaproxima",
  4554. "homepage": "https://www.drupal.org/user/205645"
  4555. },
  4556. {
  4557. "name": "slashrsm",
  4558. "homepage": "https://www.drupal.org/user/744628"
  4559. }
  4560. ],
  4561. "description": "Provides a framework for different types of embeds in text editors.",
  4562. "homepage": "https://www.drupal.org/project/embed",
  4563. "support": {
  4564. "source": "https://git.drupalcode.org/project/embed"
  4565. }
  4566. },
  4567. {
  4568. "name": "drupal/entity",
  4569. "version": "1.2.0",
  4570. "source": {
  4571. "type": "git",
  4572. "url": "https://git.drupalcode.org/project/entity.git",
  4573. "reference": "8.x-1.2"
  4574. },
  4575. "dist": {
  4576. "type": "zip",
  4577. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4578. "reference": "8.x-1.2",
  4579. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4580. },
  4581. "require": {
  4582. "drupal/core": "^8.8 || ^9"
  4583. },
  4584. "type": "drupal-module",
  4585. "extra": {
  4586. "drupal": {
  4587. "version": "8.x-1.2",
  4588. "datestamp": "1606399149",
  4589. "security-coverage": {
  4590. "status": "covered",
  4591. "message": "Covered by Drupal's security advisory policy"
  4592. }
  4593. }
  4594. },
  4595. "notification-url": "https://packages.drupal.org/8/downloads",
  4596. "license": [
  4597. "GPL-2.0-or-later"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Berdir",
  4602. "homepage": "https://www.drupal.org/user/214652"
  4603. },
  4604. {
  4605. "name": "bojanz",
  4606. "homepage": "https://www.drupal.org/user/86106"
  4607. },
  4608. {
  4609. "name": "dawehner",
  4610. "homepage": "https://www.drupal.org/user/99340"
  4611. },
  4612. {
  4613. "name": "dixon_",
  4614. "homepage": "https://www.drupal.org/user/239911"
  4615. },
  4616. {
  4617. "name": "fago",
  4618. "homepage": "https://www.drupal.org/user/16747"
  4619. },
  4620. {
  4621. "name": "mglaman",
  4622. "homepage": "https://www.drupal.org/user/2416470"
  4623. }
  4624. ],
  4625. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4626. "homepage": "http://drupal.org/project/entity",
  4627. "support": {
  4628. "source": "https://git.drupalcode.org/project/entity"
  4629. }
  4630. },
  4631. {
  4632. "name": "drupal/entity_browser",
  4633. "version": "2.5.0",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4637. "reference": "8.x-2.5"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4642. "reference": "8.x-2.5",
  4643. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4644. },
  4645. "require": {
  4646. "drupal/core": "^8.8 || ^9"
  4647. },
  4648. "require-dev": {
  4649. "drupal/embed": "~1.0",
  4650. "drupal/entity_embed": "1.x-dev",
  4651. "drupal/entity_reference_revisions": "1.x-dev",
  4652. "drupal/entityqueue": "1.x-dev",
  4653. "drupal/inline_entity_form": "1.x-dev",
  4654. "drupal/paragraphs": "1.x-dev",
  4655. "drupal/token": "~1.0"
  4656. },
  4657. "type": "drupal-module",
  4658. "extra": {
  4659. "drupal": {
  4660. "version": "8.x-2.5",
  4661. "datestamp": "1588015429",
  4662. "security-coverage": {
  4663. "status": "covered",
  4664. "message": "Covered by Drupal's security advisory policy"
  4665. }
  4666. }
  4667. },
  4668. "notification-url": "https://packages.drupal.org/8/downloads",
  4669. "license": [
  4670. "GPL-2.0+"
  4671. ],
  4672. "authors": [
  4673. {
  4674. "name": "Janez Urevc",
  4675. "homepage": "https://github.com/slashrsm",
  4676. "role": "Maintainer"
  4677. },
  4678. {
  4679. "name": "Primoz Hmeljak",
  4680. "homepage": "https://github.com/primsi",
  4681. "role": "Maintainer"
  4682. },
  4683. {
  4684. "name": "See other contributors",
  4685. "homepage": "https://www.drupal.org/node/1943336/committers",
  4686. "role": "contributor"
  4687. },
  4688. {
  4689. "name": "Drupal Media Team",
  4690. "homepage": "https://www.drupal.org/user/3260690"
  4691. },
  4692. {
  4693. "name": "Primsi",
  4694. "homepage": "https://www.drupal.org/user/282629"
  4695. },
  4696. {
  4697. "name": "marcingy",
  4698. "homepage": "https://www.drupal.org/user/77320"
  4699. },
  4700. {
  4701. "name": "oknate",
  4702. "homepage": "https://www.drupal.org/user/471638"
  4703. },
  4704. {
  4705. "name": "samuel.mortenson",
  4706. "homepage": "https://www.drupal.org/user/2582268"
  4707. },
  4708. {
  4709. "name": "slashrsm",
  4710. "homepage": "https://www.drupal.org/user/744628"
  4711. }
  4712. ],
  4713. "description": "Entity browsing and selecting component.",
  4714. "homepage": "http://drupal.org/project/entity_browser",
  4715. "support": {
  4716. "source": "https://git.drupalcode.org/project/entity_browser",
  4717. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4718. "irc": "irc://irc.freenode.org/drupal-contribute"
  4719. }
  4720. },
  4721. {
  4722. "name": "drupal/entity_browser_enhanced",
  4723. "version": "1.0.0",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4727. "reference": "8.x-1.0"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4732. "reference": "8.x-1.0",
  4733. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4734. },
  4735. "require": {
  4736. "drupal/core": "^8 || ^9",
  4737. "drupal/entity_browser": "~2.0"
  4738. },
  4739. "type": "drupal-module",
  4740. "extra": {
  4741. "drupal": {
  4742. "version": "8.x-1.0",
  4743. "datestamp": "1581940931",
  4744. "security-coverage": {
  4745. "status": "covered",
  4746. "message": "Covered by Drupal's security advisory policy"
  4747. }
  4748. },
  4749. "branch-alias": {
  4750. "dev-8.x-1.x": "8.1.x-dev"
  4751. }
  4752. },
  4753. "notification-url": "https://packages.drupal.org/8/downloads",
  4754. "license": [
  4755. "GPL-2.0-or-later"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Vardot",
  4760. "homepage": "https://www.drupal.org/vardot",
  4761. "role": "Maintainer"
  4762. },
  4763. {
  4764. "name": "RajabNatshah",
  4765. "homepage": "https://www.drupal.org/user/1414312"
  4766. }
  4767. ],
  4768. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4769. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4770. "support": {
  4771. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4772. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4773. }
  4774. },
  4775. {
  4776. "name": "drupal/entity_clone",
  4777. "version": "1.0.0-beta4",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4781. "reference": "8.x-1.0-beta4"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4786. "reference": "8.x-1.0-beta4",
  4787. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4788. },
  4789. "require": {
  4790. "drupal/core": "^8 || ^9"
  4791. },
  4792. "type": "drupal-module",
  4793. "extra": {
  4794. "drupal": {
  4795. "version": "8.x-1.0-beta4",
  4796. "datestamp": "1588605099",
  4797. "security-coverage": {
  4798. "status": "not-covered",
  4799. "message": "Beta releases are not covered by Drupal security advisories."
  4800. }
  4801. }
  4802. },
  4803. "notification-url": "https://packages.drupal.org/8/downloads",
  4804. "license": [
  4805. "GPL-2.0-or-later"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "vpeltot",
  4810. "homepage": "https://www.drupal.org/user/1361586"
  4811. }
  4812. ],
  4813. "description": "Add a clone action for all entities",
  4814. "homepage": "https://www.drupal.org/project/entity_clone",
  4815. "support": {
  4816. "source": "https://git.drupalcode.org/project/entity_clone"
  4817. }
  4818. },
  4819. {
  4820. "name": "drupal/extlink",
  4821. "version": "1.5.0",
  4822. "source": {
  4823. "type": "git",
  4824. "url": "https://git.drupalcode.org/project/extlink.git",
  4825. "reference": "8.x-1.5"
  4826. },
  4827. "dist": {
  4828. "type": "zip",
  4829. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.5.zip",
  4830. "reference": "8.x-1.5",
  4831. "shasum": "5a2b74d12ff9e9257a0566cca8dac3872da64970"
  4832. },
  4833. "require": {
  4834. "drupal/core": "^8 || ^9"
  4835. },
  4836. "type": "drupal-module",
  4837. "extra": {
  4838. "drupal": {
  4839. "version": "8.x-1.5",
  4840. "datestamp": "1601382250",
  4841. "security-coverage": {
  4842. "status": "covered",
  4843. "message": "Covered by Drupal's security advisory policy"
  4844. }
  4845. }
  4846. },
  4847. "notification-url": "https://packages.drupal.org/8/downloads",
  4848. "license": [
  4849. "GPL-2.0-or-later"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Nate Lampton",
  4854. "homepage": "https://www.drupal.org/u/quicksketch",
  4855. "role": "Maintainer"
  4856. },
  4857. {
  4858. "name": "Lachlan Ennis",
  4859. "homepage": "https://www.drupal.org/u/elachlan",
  4860. "role": "Maintainer"
  4861. },
  4862. {
  4863. "name": "Neslee Canil Pinto",
  4864. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4865. "role": "Maintainer"
  4866. }
  4867. ],
  4868. "description": "Modify behavior and appearance of external links.",
  4869. "homepage": "https://www.drupal.org/project/extlink",
  4870. "keywords": [
  4871. "Drupal",
  4872. "External Links"
  4873. ],
  4874. "support": {
  4875. "source": "https://git.drupalcode.org/project/extlink",
  4876. "issues": "https://www.drupal.org/project/issues/extlink"
  4877. }
  4878. },
  4879. {
  4880. "name": "drupal/field_group",
  4881. "version": "3.1.0",
  4882. "source": {
  4883. "type": "git",
  4884. "url": "https://git.drupalcode.org/project/field_group.git",
  4885. "reference": "8.x-3.1"
  4886. },
  4887. "dist": {
  4888. "type": "zip",
  4889. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4890. "reference": "8.x-3.1",
  4891. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4892. },
  4893. "require": {
  4894. "drupal/core": "^8.8 || ^9"
  4895. },
  4896. "require-dev": {
  4897. "drupal/jquery_ui_accordion": "^1.0"
  4898. },
  4899. "type": "drupal-module",
  4900. "extra": {
  4901. "drupal": {
  4902. "version": "8.x-3.1",
  4903. "datestamp": "1591772567",
  4904. "security-coverage": {
  4905. "status": "covered",
  4906. "message": "Covered by Drupal's security advisory policy"
  4907. }
  4908. }
  4909. },
  4910. "notification-url": "https://packages.drupal.org/8/downloads",
  4911. "license": [
  4912. "GPL-2.0-or-later"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Hydra",
  4917. "homepage": "https://www.drupal.org/user/647364"
  4918. },
  4919. {
  4920. "name": "Stalski",
  4921. "homepage": "https://www.drupal.org/user/322618"
  4922. },
  4923. {
  4924. "name": "jyve",
  4925. "homepage": "https://www.drupal.org/user/591438"
  4926. },
  4927. {
  4928. "name": "nils.destoop",
  4929. "homepage": "https://www.drupal.org/user/361625"
  4930. },
  4931. {
  4932. "name": "swentel",
  4933. "homepage": "https://www.drupal.org/user/107403"
  4934. }
  4935. ],
  4936. "description": "Provides the field_group module.",
  4937. "homepage": "https://www.drupal.org/project/field_group",
  4938. "support": {
  4939. "source": "https://git.drupalcode.org/project/field_group",
  4940. "issues": "https://www.drupal.org/project/issues/field_group"
  4941. }
  4942. },
  4943. {
  4944. "name": "drupal/file_mdm",
  4945. "version": "2.1.0",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4949. "reference": "8.x-2.1"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  4954. "reference": "8.x-2.1",
  4955. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  4956. },
  4957. "require": {
  4958. "drupal/core": "^8.8 || ^9",
  4959. "lsolesen/pel": "^0.9.8",
  4960. "phenx/php-font-lib": "^0.5.2",
  4961. "php": ">=7"
  4962. },
  4963. "require-dev": {
  4964. "drupal/image_effects": "*"
  4965. },
  4966. "type": "drupal-module",
  4967. "extra": {
  4968. "drupal": {
  4969. "version": "8.x-2.1",
  4970. "datestamp": "1586801064",
  4971. "security-coverage": {
  4972. "status": "covered",
  4973. "message": "Covered by Drupal's security advisory policy"
  4974. }
  4975. }
  4976. },
  4977. "notification-url": "https://packages.drupal.org/8/downloads",
  4978. "license": [
  4979. "GPL-2.0-or-later"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "mondrake",
  4984. "homepage": "https://www.drupal.org/user/1307444"
  4985. }
  4986. ],
  4987. "description": "Provides a service to manage file metadata.",
  4988. "homepage": "https://www.drupal.org/project/file_mdm",
  4989. "support": {
  4990. "source": "https://git.drupalcode.org/project/file_mdm"
  4991. }
  4992. },
  4993. {
  4994. "name": "drupal/filefield_sources",
  4995. "version": "dev-1.x",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4999. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5000. },
  5001. "require": {
  5002. "drupal/core": "^8 || ^9"
  5003. },
  5004. "require-dev": {
  5005. "drupal/imce": "*"
  5006. },
  5007. "type": "drupal-module",
  5008. "extra": {
  5009. "branch-alias": {
  5010. "dev-1.x": "1.x-dev"
  5011. },
  5012. "drupal": {
  5013. "version": "8.x-1.0-alpha3+3-dev",
  5014. "datestamp": "1604712687",
  5015. "security-coverage": {
  5016. "status": "not-covered",
  5017. "message": "Dev releases are not covered by Drupal security advisories."
  5018. }
  5019. }
  5020. },
  5021. "notification-url": "https://packages.drupal.org/8/downloads",
  5022. "license": [
  5023. "GPL-2.0-or-later"
  5024. ],
  5025. "authors": [
  5026. {
  5027. "name": "Nate Lampton (quicksketch)",
  5028. "homepage": "https://www.drupal.org/u/quicksketch",
  5029. "role": "Maintainer"
  5030. },
  5031. {
  5032. "name": "Andrey Khromyshev (profak)",
  5033. "homepage": "https://www.drupal.org/u/profak",
  5034. "role": "Maintainer"
  5035. },
  5036. {
  5037. "name": "David Valdez (gnuget)",
  5038. "homepage": "https://www.drupal.org/u/gnuget",
  5039. "role": "Maintainer"
  5040. }
  5041. ],
  5042. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5043. "homepage": "https://www.drupal.org/project/filefield_sources",
  5044. "support": {
  5045. "source": "https://git.drupalcode.org/project/filefield_sources",
  5046. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5047. "irc": "irc://irc.freenode.org/drupal-contribute"
  5048. },
  5049. "time": "2020-11-07T01:30:52+00:00"
  5050. },
  5051. {
  5052. "name": "drupal/filter_perms",
  5053. "version": "dev-1.x",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5057. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5058. },
  5059. "require": {
  5060. "drupal/core": "^8 || ^9"
  5061. },
  5062. "type": "drupal-module",
  5063. "extra": {
  5064. "branch-alias": {
  5065. "dev-1.x": "1.x-dev"
  5066. },
  5067. "drupal": {
  5068. "version": "8.x-1.0-alpha1+2-dev",
  5069. "datestamp": "1599239698",
  5070. "security-coverage": {
  5071. "status": "not-covered",
  5072. "message": "Dev releases are not covered by Drupal security advisories."
  5073. }
  5074. }
  5075. },
  5076. "notification-url": "https://packages.drupal.org/8/downloads",
  5077. "license": [
  5078. "GPL-2.0-or-later"
  5079. ],
  5080. "authors": [
  5081. {
  5082. "name": "cYu",
  5083. "homepage": "https://www.drupal.org/user/202205"
  5084. },
  5085. {
  5086. "name": "deekayen",
  5087. "homepage": "https://www.drupal.org/user/972"
  5088. },
  5089. {
  5090. "name": "ivagold",
  5091. "homepage": "https://www.drupal.org/user/3061533"
  5092. },
  5093. {
  5094. "name": "mgbellaire",
  5095. "homepage": "https://www.drupal.org/user/1831932"
  5096. },
  5097. {
  5098. "name": "willzyx",
  5099. "homepage": "https://www.drupal.org/user/1043862"
  5100. }
  5101. ],
  5102. "description": "Provides role and module filters to simplify the user permissions page.",
  5103. "homepage": "https://www.drupal.org/project/filter_perms",
  5104. "support": {
  5105. "source": "https://git.drupalcode.org/project/filter_perms"
  5106. },
  5107. "time": "2020-11-17T18:20:11+00:00"
  5108. },
  5109. {
  5110. "name": "drupal/honeypot",
  5111. "version": "2.0.1",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://git.drupalcode.org/project/honeypot.git",
  5115. "reference": "2.0.1"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5120. "reference": "2.0.1",
  5121. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5122. },
  5123. "require": {
  5124. "drupal/core": "^8.0 || ^9.0"
  5125. },
  5126. "type": "drupal-module",
  5127. "extra": {
  5128. "drupal": {
  5129. "version": "2.0.1",
  5130. "datestamp": "1597855128",
  5131. "security-coverage": {
  5132. "status": "covered",
  5133. "message": "Covered by Drupal's security advisory policy"
  5134. }
  5135. }
  5136. },
  5137. "notification-url": "https://packages.drupal.org/8/downloads",
  5138. "license": [
  5139. "GPL-2.0-or-later"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Jeff Geerling",
  5144. "homepage": "https://www.drupal.org/user/213194",
  5145. "email": "geerlingguy@mac.com"
  5146. },
  5147. {
  5148. "name": "geerlingguy",
  5149. "homepage": "https://www.drupal.org/user/389011"
  5150. },
  5151. {
  5152. "name": "vijaycs85",
  5153. "homepage": "https://www.drupal.org/user/93488"
  5154. }
  5155. ],
  5156. "description": "Mitigates spam form submissions using the honeypot method.",
  5157. "homepage": "https://www.drupal.org/project/honeypot",
  5158. "keywords": [
  5159. "deterrent",
  5160. "form",
  5161. "honeypot",
  5162. "honeytrap",
  5163. "php",
  5164. "spam"
  5165. ],
  5166. "support": {
  5167. "source": "https://git.drupalcode.org/project/honeypot",
  5168. "issues": "https://www.drupal.org/project/issues/honeypot"
  5169. }
  5170. },
  5171. {
  5172. "name": "drupal/imagemagick",
  5173. "version": "3.1.0",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5177. "reference": "8.x-3.1"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5182. "reference": "8.x-3.1",
  5183. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5184. },
  5185. "require": {
  5186. "drupal/core": "^8.8 || ^9",
  5187. "drupal/file_mdm": "^2",
  5188. "drupal/sophron": "^1",
  5189. "php": ">=7"
  5190. },
  5191. "type": "drupal-module",
  5192. "extra": {
  5193. "drupal": {
  5194. "version": "8.x-3.1",
  5195. "datestamp": "1581420882",
  5196. "security-coverage": {
  5197. "status": "covered",
  5198. "message": "Covered by Drupal's security advisory policy"
  5199. }
  5200. }
  5201. },
  5202. "notification-url": "https://packages.drupal.org/8/downloads",
  5203. "license": [
  5204. "GPL-2.0-or-later"
  5205. ],
  5206. "authors": [
  5207. {
  5208. "name": "Chris Charlton",
  5209. "homepage": "https://www.drupal.org/user/17089"
  5210. },
  5211. {
  5212. "name": "chx",
  5213. "homepage": "https://www.drupal.org/user/9446"
  5214. },
  5215. {
  5216. "name": "claudiu.cristea",
  5217. "homepage": "https://www.drupal.org/user/56348"
  5218. },
  5219. {
  5220. "name": "dman",
  5221. "homepage": "https://www.drupal.org/user/33240"
  5222. },
  5223. {
  5224. "name": "dopry",
  5225. "homepage": "https://www.drupal.org/user/22202"
  5226. },
  5227. {
  5228. "name": "drewish",
  5229. "homepage": "https://www.drupal.org/user/34869"
  5230. },
  5231. {
  5232. "name": "gdl",
  5233. "homepage": "https://www.drupal.org/user/507326"
  5234. },
  5235. {
  5236. "name": "mondrake",
  5237. "homepage": "https://www.drupal.org/user/1307444"
  5238. },
  5239. {
  5240. "name": "quicksketch",
  5241. "homepage": "https://www.drupal.org/user/35821"
  5242. },
  5243. {
  5244. "name": "sun",
  5245. "homepage": "https://www.drupal.org/user/54136"
  5246. },
  5247. {
  5248. "name": "walkah",
  5249. "homepage": "https://www.drupal.org/user/1531"
  5250. }
  5251. ],
  5252. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5253. "homepage": "https://www.drupal.org/project/imagemagick",
  5254. "support": {
  5255. "source": "https://git.drupalcode.org/project/imagemagick"
  5256. }
  5257. },
  5258. {
  5259. "name": "drupal/inline_entity_form",
  5260. "version": "1.0.0-rc8",
  5261. "source": {
  5262. "type": "git",
  5263. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5264. "reference": "8.x-1.0-rc8"
  5265. },
  5266. "dist": {
  5267. "type": "zip",
  5268. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5269. "reference": "8.x-1.0-rc8",
  5270. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5271. },
  5272. "require": {
  5273. "drupal/core": "^8.7.7 || ^9"
  5274. },
  5275. "require-dev": {
  5276. "drupal/entity_reference_revisions": "^1.0"
  5277. },
  5278. "type": "drupal-module",
  5279. "extra": {
  5280. "drupal": {
  5281. "version": "8.x-1.0-rc8",
  5282. "datestamp": "1602172716",
  5283. "security-coverage": {
  5284. "status": "not-covered",
  5285. "message": "RC releases are not covered by Drupal security advisories."
  5286. }
  5287. }
  5288. },
  5289. "notification-url": "https://packages.drupal.org/8/downloads",
  5290. "license": [
  5291. "GPL-2.0-or-later"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "bojanz",
  5296. "homepage": "https://www.drupal.org/user/86106"
  5297. },
  5298. {
  5299. "name": "dawehner",
  5300. "homepage": "https://www.drupal.org/user/99340"
  5301. },
  5302. {
  5303. "name": "geek-merlin",
  5304. "homepage": "https://www.drupal.org/user/229048"
  5305. },
  5306. {
  5307. "name": "joachim",
  5308. "homepage": "https://www.drupal.org/user/107701"
  5309. },
  5310. {
  5311. "name": "jsacksick",
  5312. "homepage": "https://www.drupal.org/user/972218"
  5313. },
  5314. {
  5315. "name": "kaythay",
  5316. "homepage": "https://www.drupal.org/user/2182186"
  5317. },
  5318. {
  5319. "name": "oknate",
  5320. "homepage": "https://www.drupal.org/user/471638"
  5321. },
  5322. {
  5323. "name": "rszrama",
  5324. "homepage": "https://www.drupal.org/user/49344"
  5325. },
  5326. {
  5327. "name": "slashrsm",
  5328. "homepage": "https://www.drupal.org/user/744628"
  5329. },
  5330. {
  5331. "name": "webflo",
  5332. "homepage": "https://www.drupal.org/user/254778"
  5333. }
  5334. ],
  5335. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5336. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5337. "support": {
  5338. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5339. }
  5340. },
  5341. {
  5342. "name": "drupal/jquery_ui",
  5343. "version": "1.4.0",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5347. "reference": "8.x-1.4"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5352. "reference": "8.x-1.4",
  5353. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5354. },
  5355. "require": {
  5356. "drupal/core": "^8 || ^9"
  5357. },
  5358. "type": "drupal-module",
  5359. "extra": {
  5360. "drupal": {
  5361. "version": "8.x-1.4",
  5362. "datestamp": "1582149957",
  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": "RobLoach",
  5376. "homepage": "https://www.drupal.org/user/61114"
  5377. },
  5378. {
  5379. "name": "jjeff",
  5380. "homepage": "https://www.drupal.org/user/17190"
  5381. },
  5382. {
  5383. "name": "lauriii",
  5384. "homepage": "https://www.drupal.org/user/1078742"
  5385. },
  5386. {
  5387. "name": "litwol",
  5388. "homepage": "https://www.drupal.org/user/78134"
  5389. },
  5390. {
  5391. "name": "mfb",
  5392. "homepage": "https://www.drupal.org/user/12302"
  5393. },
  5394. {
  5395. "name": "mfer",
  5396. "homepage": "https://www.drupal.org/user/25701"
  5397. },
  5398. {
  5399. "name": "mikelutz",
  5400. "homepage": "https://www.drupal.org/user/2972409"
  5401. },
  5402. {
  5403. "name": "sun",
  5404. "homepage": "https://www.drupal.org/user/54136"
  5405. },
  5406. {
  5407. "name": "webchick",
  5408. "homepage": "https://www.drupal.org/user/24967"
  5409. },
  5410. {
  5411. "name": "zrpnr",
  5412. "homepage": "https://www.drupal.org/user/1448368"
  5413. }
  5414. ],
  5415. "description": "Provides jQuery UI library.",
  5416. "homepage": "https://www.drupal.org/project/jquery_ui",
  5417. "support": {
  5418. "source": "https://git.drupalcode.org/project/jquery_ui"
  5419. }
  5420. },
  5421. {
  5422. "name": "drupal/jquery_ui_button",
  5423. "version": "1.1.0",
  5424. "source": {
  5425. "type": "git",
  5426. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5427. "reference": "8.x-1.1"
  5428. },
  5429. "dist": {
  5430. "type": "zip",
  5431. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5432. "reference": "8.x-1.1",
  5433. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5434. },
  5435. "require": {
  5436. "drupal/core": "^8 || ^9",
  5437. "drupal/jquery_ui": "*",
  5438. "drupal/jquery_ui_checkboxradio": "*",
  5439. "drupal/jquery_ui_controlgroup": "*"
  5440. },
  5441. "type": "drupal-module",
  5442. "extra": {
  5443. "drupal": {
  5444. "version": "8.x-1.1",
  5445. "datestamp": "1584106807",
  5446. "security-coverage": {
  5447. "status": "covered",
  5448. "message": "Covered by Drupal's security advisory policy"
  5449. }
  5450. }
  5451. },
  5452. "notification-url": "https://packages.drupal.org/8/downloads",
  5453. "license": [
  5454. "GPL-2.0-or-later"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "bnjmnm",
  5459. "homepage": "https://www.drupal.org/user/2369194"
  5460. },
  5461. {
  5462. "name": "lauriii",
  5463. "homepage": "https://www.drupal.org/user/1078742"
  5464. },
  5465. {
  5466. "name": "zrpnr",
  5467. "homepage": "https://www.drupal.org/user/1448368"
  5468. }
  5469. ],
  5470. "description": "Provides jQuery UI Button library.",
  5471. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5472. "support": {
  5473. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5474. }
  5475. },
  5476. {
  5477. "name": "drupal/jquery_ui_checkboxradio",
  5478. "version": "1.2.0",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5482. "reference": "8.x-1.2"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5487. "reference": "8.x-1.2",
  5488. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5489. },
  5490. "require": {
  5491. "drupal/core": "^8 || ^9",
  5492. "drupal/jquery_ui": "*"
  5493. },
  5494. "type": "drupal-module",
  5495. "extra": {
  5496. "drupal": {
  5497. "version": "8.x-1.2",
  5498. "datestamp": "1584106406",
  5499. "security-coverage": {
  5500. "status": "covered",
  5501. "message": "Covered by Drupal's security advisory policy"
  5502. }
  5503. }
  5504. },
  5505. "notification-url": "https://packages.drupal.org/8/downloads",
  5506. "license": [
  5507. "GPL-2.0-or-later"
  5508. ],
  5509. "authors": [
  5510. {
  5511. "name": "bnjmnm",
  5512. "homepage": "https://www.drupal.org/user/2369194"
  5513. },
  5514. {
  5515. "name": "lauriii",
  5516. "homepage": "https://www.drupal.org/user/1078742"
  5517. },
  5518. {
  5519. "name": "zrpnr",
  5520. "homepage": "https://www.drupal.org/user/1448368"
  5521. }
  5522. ],
  5523. "description": "Provides jQuery UI Checkboxradio library.",
  5524. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5525. "support": {
  5526. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5527. }
  5528. },
  5529. {
  5530. "name": "drupal/jquery_ui_controlgroup",
  5531. "version": "1.1.0",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5535. "reference": "8.x-1.1"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5540. "reference": "8.x-1.1",
  5541. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5542. },
  5543. "require": {
  5544. "drupal/core": "^8 || ^9",
  5545. "drupal/jquery_ui": "*"
  5546. },
  5547. "type": "drupal-module",
  5548. "extra": {
  5549. "drupal": {
  5550. "version": "8.x-1.1",
  5551. "datestamp": "1584106616",
  5552. "security-coverage": {
  5553. "status": "covered",
  5554. "message": "Covered by Drupal's security advisory policy"
  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": "bnjmnm",
  5565. "homepage": "https://www.drupal.org/user/2369194"
  5566. },
  5567. {
  5568. "name": "lauriii",
  5569. "homepage": "https://www.drupal.org/user/1078742"
  5570. },
  5571. {
  5572. "name": "zrpnr",
  5573. "homepage": "https://www.drupal.org/user/1448368"
  5574. }
  5575. ],
  5576. "description": "Provides jQuery UI Controlgroup library.",
  5577. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5578. "support": {
  5579. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5580. }
  5581. },
  5582. {
  5583. "name": "drupal/jquery_ui_datepicker",
  5584. "version": "1.0.0",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5588. "reference": "8.x-1.0"
  5589. },
  5590. "dist": {
  5591. "type": "zip",
  5592. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5593. "reference": "8.x-1.0",
  5594. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5595. },
  5596. "require": {
  5597. "drupal/core": "^8 || ^9",
  5598. "drupal/jquery_ui": "*"
  5599. },
  5600. "type": "drupal-module",
  5601. "extra": {
  5602. "drupal": {
  5603. "version": "8.x-1.0",
  5604. "datestamp": "1589684301",
  5605. "security-coverage": {
  5606. "status": "covered",
  5607. "message": "Covered by Drupal's security advisory policy"
  5608. }
  5609. }
  5610. },
  5611. "notification-url": "https://packages.drupal.org/8/downloads",
  5612. "license": [
  5613. "GPL-2.0-or-later"
  5614. ],
  5615. "authors": [
  5616. {
  5617. "name": "jrockowitz",
  5618. "homepage": "https://www.drupal.org/user/371407"
  5619. },
  5620. {
  5621. "name": "zrpnr",
  5622. "homepage": "https://www.drupal.org/user/1448368"
  5623. }
  5624. ],
  5625. "description": "Provides jQuery UI Datepicker library.",
  5626. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5627. "support": {
  5628. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5629. }
  5630. },
  5631. {
  5632. "name": "drupal/jquery_ui_slider",
  5633. "version": "1.1.0",
  5634. "source": {
  5635. "type": "git",
  5636. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5637. "reference": "8.x-1.1"
  5638. },
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5642. "reference": "8.x-1.1",
  5643. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5644. },
  5645. "require": {
  5646. "drupal/core": "^8 || ^9",
  5647. "drupal/jquery_ui": "*"
  5648. },
  5649. "type": "drupal-module",
  5650. "extra": {
  5651. "drupal": {
  5652. "version": "8.x-1.1",
  5653. "datestamp": "1584107817",
  5654. "security-coverage": {
  5655. "status": "covered",
  5656. "message": "Covered by Drupal's security advisory policy"
  5657. }
  5658. }
  5659. },
  5660. "notification-url": "https://packages.drupal.org/8/downloads",
  5661. "license": [
  5662. "GPL-2.0-or-later"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "bnjmnm",
  5667. "homepage": "https://www.drupal.org/user/2369194"
  5668. },
  5669. {
  5670. "name": "lauriii",
  5671. "homepage": "https://www.drupal.org/user/1078742"
  5672. },
  5673. {
  5674. "name": "zrpnr",
  5675. "homepage": "https://www.drupal.org/user/1448368"
  5676. }
  5677. ],
  5678. "description": "Provides jQuery UI Slider library.",
  5679. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5680. "support": {
  5681. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5682. }
  5683. },
  5684. {
  5685. "name": "drupal/jquery_ui_touch_punch",
  5686. "version": "1.0.0",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5690. "reference": "1.0.0"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5695. "reference": "1.0.0",
  5696. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5697. },
  5698. "require": {
  5699. "drupal/core": "^8 || ^9",
  5700. "drupal/jquery_ui": "^1.0"
  5701. },
  5702. "suggest": {
  5703. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5704. },
  5705. "type": "drupal-module",
  5706. "extra": {
  5707. "drupal": {
  5708. "version": "1.0.0",
  5709. "datestamp": "1591893292",
  5710. "security-coverage": {
  5711. "status": "not-covered",
  5712. "message": "Project has not opted into security advisory coverage!"
  5713. }
  5714. }
  5715. },
  5716. "notification-url": "https://packages.drupal.org/8/downloads",
  5717. "license": [
  5718. "GPL-2.0+"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Naveen Valecha",
  5723. "homepage": "https://drupal.org/u/naveenvalecha",
  5724. "role": "Maintainer"
  5725. }
  5726. ],
  5727. "description": "Provides jQuery UI Touch Punch library.",
  5728. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5729. "keywords": [
  5730. "Drupal",
  5731. "jquery_ui_touch_punch"
  5732. ],
  5733. "support": {
  5734. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5735. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5736. "irc": "irc://irc.freenode.org/drupal-contribute"
  5737. }
  5738. },
  5739. {
  5740. "name": "drupal/link_attributes",
  5741. "version": "1.11.0",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5745. "reference": "8.x-1.11"
  5746. },
  5747. "dist": {
  5748. "type": "zip",
  5749. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5750. "reference": "8.x-1.11",
  5751. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5752. },
  5753. "require": {
  5754. "drupal/core": "^8 || ^9"
  5755. },
  5756. "type": "drupal-module",
  5757. "extra": {
  5758. "drupal": {
  5759. "version": "8.x-1.11",
  5760. "datestamp": "1598323550",
  5761. "security-coverage": {
  5762. "status": "covered",
  5763. "message": "Covered by Drupal's security advisory policy"
  5764. }
  5765. }
  5766. },
  5767. "notification-url": "https://packages.drupal.org/8/downloads",
  5768. "license": [
  5769. "GPL-2.0-or-later"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "larowlan",
  5774. "homepage": "https://www.drupal.org/user/395439"
  5775. }
  5776. ],
  5777. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5778. "homepage": "https://www.drupal.org/project/link_attributes",
  5779. "support": {
  5780. "source": "https://git.drupalcode.org/project/link_attributes"
  5781. }
  5782. },
  5783. {
  5784. "name": "drupal/linkit",
  5785. "version": "5.0.0-beta11",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://git.drupalcode.org/project/linkit.git",
  5789. "reference": "8.x-5.0-beta11"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  5794. "reference": "8.x-5.0-beta11",
  5795. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  5796. },
  5797. "require": {
  5798. "drupal/core": "^8.7.7 || ^9"
  5799. },
  5800. "require-dev": {
  5801. "drupal/imce": "*"
  5802. },
  5803. "type": "drupal-module",
  5804. "extra": {
  5805. "drupal": {
  5806. "version": "8.x-5.0-beta11",
  5807. "datestamp": "1591971693",
  5808. "security-coverage": {
  5809. "status": "not-covered",
  5810. "message": "Beta releases are not covered by Drupal security advisories."
  5811. }
  5812. }
  5813. },
  5814. "notification-url": "https://packages.drupal.org/8/downloads",
  5815. "license": [
  5816. "GPL-2.0+"
  5817. ],
  5818. "authors": [
  5819. {
  5820. "name": "Emil Stjerneman",
  5821. "homepage": "https://stjerneman.com",
  5822. "email": "emil@stjerneman.com",
  5823. "role": "Maintainer"
  5824. }
  5825. ],
  5826. "description": "Linkit - Enriched linking experience",
  5827. "homepage": "http://drupal.org/project/linkit",
  5828. "support": {
  5829. "source": "http://cgit.drupalcode.org/linkit",
  5830. "issues": "http://drupal.org/project/linkit"
  5831. }
  5832. },
  5833. {
  5834. "name": "drupal/login_destination",
  5835. "version": "dev-2.x",
  5836. "source": {
  5837. "type": "git",
  5838. "url": "https://git.drupalcode.org/project/login_destination.git",
  5839. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  5840. },
  5841. "require": {
  5842. "drupal/core": "^8.7.10 || ^9"
  5843. },
  5844. "require-dev": {
  5845. "drupal/admin_toolbar": "^1.23",
  5846. "drupal/admin_toolbar_tools": "*"
  5847. },
  5848. "type": "drupal-module",
  5849. "extra": {
  5850. "branch-alias": {
  5851. "dev-2.x": "2.x-dev"
  5852. },
  5853. "drupal": {
  5854. "version": "8.x-2.0-alpha3+8-dev",
  5855. "datestamp": "1603450565",
  5856. "security-coverage": {
  5857. "status": "not-covered",
  5858. "message": "Dev releases are not covered by Drupal security advisories."
  5859. }
  5860. }
  5861. },
  5862. "notification-url": "https://packages.drupal.org/8/downloads",
  5863. "license": [
  5864. "GPL-2.0-or-later"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "3CWebDev",
  5869. "homepage": "https://www.drupal.org/user/61221"
  5870. },
  5871. {
  5872. "name": "Oliver Huynh",
  5873. "homepage": "https://www.drupal.org/user/243730"
  5874. },
  5875. {
  5876. "name": "beautifulmind",
  5877. "homepage": "https://www.drupal.org/user/219482"
  5878. },
  5879. {
  5880. "name": "ddrozdik",
  5881. "homepage": "https://www.drupal.org/user/574124"
  5882. },
  5883. {
  5884. "name": "jng12",
  5885. "homepage": "https://www.drupal.org/user/204316"
  5886. },
  5887. {
  5888. "name": "marcp",
  5889. "homepage": "https://www.drupal.org/user/20885"
  5890. },
  5891. {
  5892. "name": "mithy",
  5893. "homepage": "https://www.drupal.org/user/258911"
  5894. },
  5895. {
  5896. "name": "moshe weitzman",
  5897. "homepage": "https://www.drupal.org/user/23"
  5898. },
  5899. {
  5900. "name": "perennial.sky",
  5901. "homepage": "https://www.drupal.org/user/2622667"
  5902. },
  5903. {
  5904. "name": "rsvelko",
  5905. "homepage": "https://www.drupal.org/user/337401"
  5906. }
  5907. ],
  5908. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5909. "homepage": "https://www.drupal.org/project/login_destination",
  5910. "support": {
  5911. "source": "https://git.drupalcode.org/project/login_destination"
  5912. },
  5913. "time": "2020-10-23T10:55:36+00:00"
  5914. },
  5915. {
  5916. "name": "drupal/maillog",
  5917. "version": "dev-1.x",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://git.drupalcode.org/project/maillog.git",
  5921. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  5922. },
  5923. "require": {
  5924. "drupal/core": "^8 || ^9"
  5925. },
  5926. "type": "drupal-module",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-1.x": "1.x-dev"
  5930. },
  5931. "drupal": {
  5932. "version": "8.x-1.0-beta1+0-dev",
  5933. "datestamp": "1600799873",
  5934. "security-coverage": {
  5935. "status": "not-covered",
  5936. "message": "Dev releases are not covered by Drupal security advisories."
  5937. }
  5938. }
  5939. },
  5940. "notification-url": "https://packages.drupal.org/8/downloads",
  5941. "license": [
  5942. "GPL-2.0-or-later"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Berdir",
  5947. "homepage": "https://www.drupal.org/user/214652"
  5948. },
  5949. {
  5950. "name": "DamienMcKenna",
  5951. "homepage": "https://www.drupal.org/user/108450"
  5952. },
  5953. {
  5954. "name": "miro_dietiker",
  5955. "homepage": "https://www.drupal.org/user/227761"
  5956. },
  5957. {
  5958. "name": "pluess",
  5959. "homepage": "https://www.drupal.org/user/84659"
  5960. }
  5961. ],
  5962. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5963. "homepage": "https://www.drupal.org/project/maillog",
  5964. "support": {
  5965. "source": "https://git.drupalcode.org/project/maillog"
  5966. },
  5967. "time": "2020-09-22T18:37:31+00:00"
  5968. },
  5969. {
  5970. "name": "drupal/mailsystem",
  5971. "version": "4.3.0",
  5972. "source": {
  5973. "type": "git",
  5974. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5975. "reference": "8.x-4.3"
  5976. },
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  5980. "reference": "8.x-4.3",
  5981. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  5982. },
  5983. "require": {
  5984. "drupal/core": "^8.7.7 || ^9"
  5985. },
  5986. "type": "drupal-module",
  5987. "extra": {
  5988. "drupal": {
  5989. "version": "8.x-4.3",
  5990. "datestamp": "1586203024",
  5991. "security-coverage": {
  5992. "status": "covered",
  5993. "message": "Covered by Drupal's security advisory policy"
  5994. }
  5995. }
  5996. },
  5997. "notification-url": "https://packages.drupal.org/8/downloads",
  5998. "license": [
  5999. "GPL-2.0+"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Berdir",
  6004. "homepage": "https://www.drupal.org/user/214652"
  6005. },
  6006. {
  6007. "name": "Les Lim",
  6008. "homepage": "https://www.drupal.org/user/84263"
  6009. },
  6010. {
  6011. "name": "Manuel Garcia",
  6012. "homepage": "https://www.drupal.org/user/213194"
  6013. },
  6014. {
  6015. "name": "Nafes",
  6016. "homepage": "https://www.drupal.org/user/2489926"
  6017. },
  6018. {
  6019. "name": "miro_dietiker",
  6020. "homepage": "https://www.drupal.org/user/227761"
  6021. },
  6022. {
  6023. "name": "pillarsdotnet",
  6024. "homepage": "https://www.drupal.org/user/36148"
  6025. }
  6026. ],
  6027. "description": "Mail System",
  6028. "homepage": "https://www.drupal.org/project/mailsystem",
  6029. "support": {
  6030. "source": "https://git.drupalcode.org/project/mailsystem"
  6031. }
  6032. },
  6033. {
  6034. "name": "drupal/matomo",
  6035. "version": "1.11.0",
  6036. "source": {
  6037. "type": "git",
  6038. "url": "https://git.drupalcode.org/project/matomo.git",
  6039. "reference": "8.x-1.11"
  6040. },
  6041. "dist": {
  6042. "type": "zip",
  6043. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6044. "reference": "8.x-1.11",
  6045. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6046. },
  6047. "require": {
  6048. "drupal/core": "^8 || ^9"
  6049. },
  6050. "require-dev": {
  6051. "drupal/php": "*",
  6052. "drupal/token": "*"
  6053. },
  6054. "type": "drupal-module",
  6055. "extra": {
  6056. "drupal": {
  6057. "version": "8.x-1.11",
  6058. "datestamp": "1601651459",
  6059. "security-coverage": {
  6060. "status": "covered",
  6061. "message": "Covered by Drupal's security advisory policy"
  6062. }
  6063. }
  6064. },
  6065. "notification-url": "https://packages.drupal.org/8/downloads",
  6066. "license": [
  6067. "GPL-2.0-or-later"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Carsten Logemann",
  6072. "homepage": "https://www.drupal.org/u/C_Logemann"
  6073. },
  6074. {
  6075. "name": "Shelane French",
  6076. "homepage": "https://www.drupal.org/u/shelane"
  6077. },
  6078. {
  6079. "name": "See other contributors",
  6080. "homepage": "https://www.drupal.org/node/247808/committers"
  6081. }
  6082. ],
  6083. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6084. "homepage": "https://www.drupal.org/project/matomo",
  6085. "support": {
  6086. "source": "https://git.drupal.org/project/matomo.git",
  6087. "issues": "https://www.drupal.org/project/issues/matomo"
  6088. }
  6089. },
  6090. {
  6091. "name": "drupal/maxlength",
  6092. "version": "1.0.0-rc1",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://git.drupalcode.org/project/maxlength.git",
  6096. "reference": "8.x-1.0-rc1"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6101. "reference": "8.x-1.0-rc1",
  6102. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6103. },
  6104. "require": {
  6105. "drupal/core": "^8.8 || ^9"
  6106. },
  6107. "type": "drupal-module",
  6108. "extra": {
  6109. "drupal": {
  6110. "version": "8.x-1.0-rc1",
  6111. "datestamp": "1593198218",
  6112. "security-coverage": {
  6113. "status": "not-covered",
  6114. "message": "RC releases are not covered by Drupal security advisories."
  6115. }
  6116. }
  6117. },
  6118. "notification-url": "https://packages.drupal.org/8/downloads",
  6119. "license": [
  6120. "GPL-2.0-or-later"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "Aron Novak",
  6125. "homepage": "https://www.drupal.org/user/61864"
  6126. },
  6127. {
  6128. "name": "Schnitzel",
  6129. "homepage": "https://www.drupal.org/user/643820"
  6130. },
  6131. {
  6132. "name": "a_c_m",
  6133. "homepage": "https://www.drupal.org/user/195063"
  6134. },
  6135. {
  6136. "name": "barneytech",
  6137. "homepage": "https://www.drupal.org/user/669922"
  6138. },
  6139. {
  6140. "name": "claudiu_cristea",
  6141. "homepage": "https://www.drupal.org/user/2623935"
  6142. },
  6143. {
  6144. "name": "dawehner",
  6145. "homepage": "https://www.drupal.org/user/99340"
  6146. },
  6147. {
  6148. "name": "derhasi",
  6149. "homepage": "https://www.drupal.org/user/83474"
  6150. },
  6151. {
  6152. "name": "frjo",
  6153. "homepage": "https://www.drupal.org/user/5546"
  6154. },
  6155. {
  6156. "name": "hefox",
  6157. "homepage": "https://www.drupal.org/user/426416"
  6158. },
  6159. {
  6160. "name": "jm.federico",
  6161. "homepage": "https://www.drupal.org/user/509892"
  6162. },
  6163. {
  6164. "name": "k4v",
  6165. "homepage": "https://www.drupal.org/user/744246"
  6166. },
  6167. {
  6168. "name": "mariano73",
  6169. "homepage": "https://www.drupal.org/user/1324866"
  6170. },
  6171. {
  6172. "name": "mariuss",
  6173. "homepage": "https://www.drupal.org/user/28539"
  6174. },
  6175. {
  6176. "name": "sanduhrs",
  6177. "homepage": "https://www.drupal.org/user/28074"
  6178. },
  6179. {
  6180. "name": "vasi1186",
  6181. "homepage": "https://www.drupal.org/user/342104"
  6182. },
  6183. {
  6184. "name": "webiator GmbH",
  6185. "homepage": "https://www.drupal.org/user/2390554"
  6186. }
  6187. ],
  6188. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6189. "homepage": "https://www.drupal.org/project/maxlength",
  6190. "support": {
  6191. "source": "https://git.drupalcode.org/project/maxlength"
  6192. }
  6193. },
  6194. {
  6195. "name": "drupal/menu_admin_per_menu",
  6196. "version": "1.3.0",
  6197. "source": {
  6198. "type": "git",
  6199. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6200. "reference": "8.x-1.3"
  6201. },
  6202. "dist": {
  6203. "type": "zip",
  6204. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6205. "reference": "8.x-1.3",
  6206. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6207. },
  6208. "require": {
  6209. "drupal/core": "^8 || ^9"
  6210. },
  6211. "type": "drupal-module",
  6212. "extra": {
  6213. "drupal": {
  6214. "version": "8.x-1.3",
  6215. "datestamp": "1593436060",
  6216. "security-coverage": {
  6217. "status": "covered",
  6218. "message": "Covered by Drupal's security advisory policy"
  6219. }
  6220. }
  6221. },
  6222. "notification-url": "https://packages.drupal.org/8/downloads",
  6223. "license": [
  6224. "GPL-2.0-or-later"
  6225. ],
  6226. "authors": [
  6227. {
  6228. "name": "JeroenT",
  6229. "homepage": "https://www.drupal.org/user/2228934"
  6230. },
  6231. {
  6232. "name": "anrikun",
  6233. "homepage": "https://www.drupal.org/user/410199"
  6234. },
  6235. {
  6236. "name": "jonas139",
  6237. "homepage": "https://www.drupal.org/user/2873401"
  6238. },
  6239. {
  6240. "name": "mkdok",
  6241. "homepage": "https://www.drupal.org/user/3308753"
  6242. }
  6243. ],
  6244. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6245. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6246. "support": {
  6247. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6248. }
  6249. },
  6250. {
  6251. "name": "drupal/menu_block",
  6252. "version": "dev-1.x",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://git.drupalcode.org/project/menu_block.git",
  6256. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6257. },
  6258. "require": {
  6259. "drupal/core": "^8 || ^9"
  6260. },
  6261. "type": "drupal-module",
  6262. "extra": {
  6263. "branch-alias": {
  6264. "dev-1.x": "1.x-dev"
  6265. },
  6266. "drupal": {
  6267. "version": "8.x-1.6+5-dev",
  6268. "datestamp": "1591593747",
  6269. "security-coverage": {
  6270. "status": "not-covered",
  6271. "message": "Dev releases are not covered by Drupal security advisories."
  6272. }
  6273. }
  6274. },
  6275. "notification-url": "https://packages.drupal.org/8/downloads",
  6276. "license": [
  6277. "GPL-2.0-or-later"
  6278. ],
  6279. "authors": [
  6280. {
  6281. "name": "Dave Reid",
  6282. "homepage": "https://www.drupal.org/user/53892"
  6283. },
  6284. {
  6285. "name": "JohnAlbin",
  6286. "homepage": "https://www.drupal.org/user/32095"
  6287. },
  6288. {
  6289. "name": "joelpittet",
  6290. "homepage": "https://www.drupal.org/user/160302"
  6291. },
  6292. {
  6293. "name": "kim.pepper",
  6294. "homepage": "https://www.drupal.org/user/370574"
  6295. },
  6296. {
  6297. "name": "rrrob",
  6298. "homepage": "https://www.drupal.org/user/273533"
  6299. }
  6300. ],
  6301. "description": "Provides configurable blocks of menu links.",
  6302. "homepage": "https://www.drupal.org/project/menu_block",
  6303. "support": {
  6304. "source": "https://git.drupalcode.org/project/menu_block"
  6305. },
  6306. "time": "2020-11-18T00:42:05+00:00"
  6307. },
  6308. {
  6309. "name": "drupal/menu_position",
  6310. "version": "dev-1.x",
  6311. "source": {
  6312. "type": "git",
  6313. "url": "https://git.drupalcode.org/project/menu_position.git",
  6314. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6315. },
  6316. "require": {
  6317. "drupal/core": "^8 || ^9"
  6318. },
  6319. "type": "drupal-module",
  6320. "extra": {
  6321. "branch-alias": {
  6322. "dev-1.x": "1.x-dev"
  6323. },
  6324. "drupal": {
  6325. "version": "8.x-1.0-alpha4+4-dev",
  6326. "datestamp": "1587797468",
  6327. "security-coverage": {
  6328. "status": "not-covered",
  6329. "message": "Dev releases are not covered by Drupal security advisories."
  6330. }
  6331. }
  6332. },
  6333. "notification-url": "https://packages.drupal.org/8/downloads",
  6334. "license": [
  6335. "GPL-2.0+"
  6336. ],
  6337. "authors": [
  6338. {
  6339. "name": "BarisW",
  6340. "homepage": "https://www.drupal.org/user/107229"
  6341. },
  6342. {
  6343. "name": "JohnAlbin",
  6344. "homepage": "https://www.drupal.org/user/32095"
  6345. },
  6346. {
  6347. "name": "Sutharsan",
  6348. "homepage": "https://www.drupal.org/user/73854"
  6349. },
  6350. {
  6351. "name": "joelpittet",
  6352. "homepage": "https://www.drupal.org/user/160302"
  6353. },
  6354. {
  6355. "name": "lbainbridge",
  6356. "homepage": "https://www.drupal.org/user/2406996"
  6357. }
  6358. ],
  6359. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6360. "homepage": "https://www.drupal.org/project/menu_position",
  6361. "support": {
  6362. "source": "https://git.drupalcode.org/project/menu_position",
  6363. "issues": "https://www.drupal.org/project/issues/menu_position"
  6364. },
  6365. "time": "2020-04-25T06:50:43+00:00"
  6366. },
  6367. {
  6368. "name": "drupal/pagerer",
  6369. "version": "2.0.0",
  6370. "source": {
  6371. "type": "git",
  6372. "url": "https://git.drupalcode.org/project/pagerer.git",
  6373. "reference": "8.x-2.0"
  6374. },
  6375. "dist": {
  6376. "type": "zip",
  6377. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6378. "reference": "8.x-2.0",
  6379. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6380. },
  6381. "require": {
  6382. "drupal/core": "^8.8 || ^9",
  6383. "drupal/jquery_ui_button": "*",
  6384. "drupal/jquery_ui_slider": "*",
  6385. "php": ">=7.1"
  6386. },
  6387. "type": "drupal-module",
  6388. "extra": {
  6389. "drupal": {
  6390. "version": "8.x-2.0",
  6391. "datestamp": "1589289359",
  6392. "security-coverage": {
  6393. "status": "covered",
  6394. "message": "Covered by Drupal's security advisory policy"
  6395. }
  6396. }
  6397. },
  6398. "notification-url": "https://packages.drupal.org/8/downloads",
  6399. "license": [
  6400. "GPL-2.0-or-later"
  6401. ],
  6402. "authors": [
  6403. {
  6404. "name": "mondrake",
  6405. "homepage": "https://www.drupal.org/user/1307444"
  6406. }
  6407. ],
  6408. "description": "Configurable pager styles.",
  6409. "homepage": "https://www.drupal.org/project/pagerer",
  6410. "support": {
  6411. "source": "https://git.drupalcode.org/project/pagerer"
  6412. }
  6413. },
  6414. {
  6415. "name": "drupal/path_alias_xt",
  6416. "version": "dev-1.x",
  6417. "source": {
  6418. "type": "git",
  6419. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6420. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6421. },
  6422. "require": {
  6423. "drupal/core": "^8.7.7 || ^9"
  6424. },
  6425. "type": "drupal-module",
  6426. "extra": {
  6427. "branch-alias": {
  6428. "dev-1.x": "1.x-dev"
  6429. },
  6430. "drupal": {
  6431. "version": "8.x-1.x-dev",
  6432. "datestamp": "1590299862",
  6433. "security-coverage": {
  6434. "status": "not-covered",
  6435. "message": "Dev releases are not covered by Drupal security advisories."
  6436. }
  6437. }
  6438. },
  6439. "notification-url": "https://packages.drupal.org/8/downloads",
  6440. "license": [
  6441. "GPL-2.0-or-later"
  6442. ],
  6443. "authors": [
  6444. {
  6445. "name": "RdeBoer",
  6446. "homepage": "https://www.drupal.org/user/404007"
  6447. },
  6448. {
  6449. "name": "adriancid",
  6450. "homepage": "https://www.drupal.org/user/1962106"
  6451. },
  6452. {
  6453. "name": "sdstyles",
  6454. "homepage": "https://www.drupal.org/user/1420228"
  6455. }
  6456. ],
  6457. "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.",
  6458. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6459. "support": {
  6460. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6461. },
  6462. "time": "2020-05-24T05:57:09+00:00"
  6463. },
  6464. {
  6465. "name": "drupal/pathauto",
  6466. "version": "1.8.0",
  6467. "source": {
  6468. "type": "git",
  6469. "url": "https://git.drupalcode.org/project/pathauto.git",
  6470. "reference": "8.x-1.8"
  6471. },
  6472. "dist": {
  6473. "type": "zip",
  6474. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6475. "reference": "8.x-1.8",
  6476. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6477. },
  6478. "require": {
  6479. "drupal/core": "^8.8 || ^9",
  6480. "drupal/ctools": "*",
  6481. "drupal/token": "*"
  6482. },
  6483. "suggest": {
  6484. "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."
  6485. },
  6486. "type": "drupal-module",
  6487. "extra": {
  6488. "drupal": {
  6489. "version": "8.x-1.8",
  6490. "datestamp": "1588103046",
  6491. "security-coverage": {
  6492. "status": "covered",
  6493. "message": "Covered by Drupal's security advisory policy"
  6494. }
  6495. },
  6496. "drush": {
  6497. "services": {
  6498. "drush.services.yml": "^9 || ^10"
  6499. }
  6500. }
  6501. },
  6502. "notification-url": "https://packages.drupal.org/8/downloads",
  6503. "license": [
  6504. "GPL-2.0-or-later"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Berdir",
  6509. "homepage": "https://www.drupal.org/user/214652"
  6510. },
  6511. {
  6512. "name": "Dave Reid",
  6513. "homepage": "https://www.drupal.org/user/53892"
  6514. },
  6515. {
  6516. "name": "Freso",
  6517. "homepage": "https://www.drupal.org/user/27504"
  6518. },
  6519. {
  6520. "name": "greggles",
  6521. "homepage": "https://www.drupal.org/user/36762"
  6522. }
  6523. ],
  6524. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6525. "homepage": "https://www.drupal.org/project/pathauto",
  6526. "support": {
  6527. "source": "https://cgit.drupalcode.org/pathauto",
  6528. "issues": "https://www.drupal.org/project/issues/pathauto",
  6529. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6530. }
  6531. },
  6532. {
  6533. "name": "drupal/pathologic",
  6534. "version": "1.0.0-alpha2",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://git.drupalcode.org/project/pathologic.git",
  6538. "reference": "8.x-1.0-alpha2"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6543. "reference": "8.x-1.0-alpha2",
  6544. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6545. },
  6546. "require": {
  6547. "drupal/core": "^8 || ^9"
  6548. },
  6549. "type": "drupal-module",
  6550. "extra": {
  6551. "drupal": {
  6552. "version": "8.x-1.0-alpha2",
  6553. "datestamp": "1593911470",
  6554. "security-coverage": {
  6555. "status": "not-covered",
  6556. "message": "Alpha releases are not covered by Drupal security advisories."
  6557. }
  6558. }
  6559. },
  6560. "notification-url": "https://packages.drupal.org/8/downloads",
  6561. "license": [
  6562. "GPL-2.0-or-later"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "Berdir",
  6567. "homepage": "https://www.drupal.org/user/214652"
  6568. },
  6569. {
  6570. "name": "Garrett Albright",
  6571. "homepage": "https://www.drupal.org/user/191212"
  6572. },
  6573. {
  6574. "name": "dww",
  6575. "homepage": "https://www.drupal.org/user/46549"
  6576. }
  6577. ],
  6578. "description": "Helps avoid broken links and incorrect paths in content.",
  6579. "homepage": "https://www.drupal.org/project/pathologic",
  6580. "support": {
  6581. "source": "https://git.drupalcode.org/project/pathologic"
  6582. }
  6583. },
  6584. {
  6585. "name": "drupal/persistent_login",
  6586. "version": "1.3.0",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6590. "reference": "8.x-1.3"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6595. "reference": "8.x-1.3",
  6596. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6597. },
  6598. "require": {
  6599. "drupal/core": "^8.3 || ^9.0"
  6600. },
  6601. "type": "drupal-module",
  6602. "extra": {
  6603. "drupal": {
  6604. "version": "8.x-1.3",
  6605. "datestamp": "1591597823",
  6606. "security-coverage": {
  6607. "status": "covered",
  6608. "message": "Covered by Drupal's security advisory policy"
  6609. }
  6610. }
  6611. },
  6612. "notification-url": "https://packages.drupal.org/8/downloads",
  6613. "license": [
  6614. "GPL-2.0-or-later"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "gapple",
  6619. "homepage": "https://www.drupal.org/user/490940"
  6620. }
  6621. ],
  6622. "description": "Provides a \"Remember Me\" feature on the login form.",
  6623. "homepage": "https://www.drupal.org/project/persistent_login",
  6624. "keywords": [
  6625. "Drupal"
  6626. ],
  6627. "support": {
  6628. "source": "https://git.drupalcode.org/project/persistent_login",
  6629. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6630. }
  6631. },
  6632. {
  6633. "name": "drupal/profile",
  6634. "version": "1.2.0",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://git.drupalcode.org/project/profile.git",
  6638. "reference": "8.x-1.2"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6643. "reference": "8.x-1.2",
  6644. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6645. },
  6646. "require": {
  6647. "drupal/core": "^8.8 || ^9",
  6648. "drupal/entity": "^1.0-rc2"
  6649. },
  6650. "require-dev": {
  6651. "drupal/token": "^1.7"
  6652. },
  6653. "type": "drupal-module",
  6654. "extra": {
  6655. "drupal": {
  6656. "version": "8.x-1.2",
  6657. "datestamp": "1604422701",
  6658. "security-coverage": {
  6659. "status": "covered",
  6660. "message": "Covered by Drupal's security advisory policy"
  6661. }
  6662. }
  6663. },
  6664. "notification-url": "https://packages.drupal.org/8/downloads",
  6665. "license": [
  6666. "GPL-2.0-or-later"
  6667. ],
  6668. "authors": [
  6669. {
  6670. "name": "bojanz",
  6671. "homepage": "https://www.drupal.org/user/86106"
  6672. },
  6673. {
  6674. "name": "daggerhart",
  6675. "homepage": "https://www.drupal.org/user/167806"
  6676. },
  6677. {
  6678. "name": "fago",
  6679. "homepage": "https://www.drupal.org/user/16747"
  6680. },
  6681. {
  6682. "name": "jsacksick",
  6683. "homepage": "https://www.drupal.org/user/972218"
  6684. },
  6685. {
  6686. "name": "mglaman",
  6687. "homepage": "https://www.drupal.org/user/2416470"
  6688. },
  6689. {
  6690. "name": "pcambra",
  6691. "homepage": "https://www.drupal.org/user/122101"
  6692. }
  6693. ],
  6694. "description": "Provides configurable user profiles.",
  6695. "homepage": "http://drupal.org/project/profile",
  6696. "support": {
  6697. "source": "https://git.drupalcode.org/project/profile"
  6698. }
  6699. },
  6700. {
  6701. "name": "drupal/redirect",
  6702. "version": "1.6.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://git.drupalcode.org/project/redirect.git",
  6706. "reference": "8.x-1.6"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  6711. "reference": "8.x-1.6",
  6712. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  6713. },
  6714. "require": {
  6715. "drupal/core": "^8.8 || ^9"
  6716. },
  6717. "type": "drupal-module",
  6718. "extra": {
  6719. "drupal": {
  6720. "version": "8.x-1.6",
  6721. "datestamp": "1589312204",
  6722. "security-coverage": {
  6723. "status": "covered",
  6724. "message": "Covered by Drupal's security advisory policy"
  6725. }
  6726. }
  6727. },
  6728. "notification-url": "https://packages.drupal.org/8/downloads",
  6729. "license": [
  6730. "GPL-2.0-or-later"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Berdir",
  6735. "homepage": "https://www.drupal.org/user/214652"
  6736. },
  6737. {
  6738. "name": "Dave Reid",
  6739. "homepage": "https://www.drupal.org/user/53892"
  6740. },
  6741. {
  6742. "name": "pifagor",
  6743. "homepage": "https://www.drupal.org/user/2375692"
  6744. }
  6745. ],
  6746. "description": "Allows users to redirect from old URLs to new URLs.",
  6747. "homepage": "https://www.drupal.org/project/redirect",
  6748. "support": {
  6749. "source": "https://git.drupalcode.org/project/redirect"
  6750. }
  6751. },
  6752. {
  6753. "name": "drupal/redis",
  6754. "version": "1.4.0",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://git.drupalcode.org/project/redis.git",
  6758. "reference": "8.x-1.4"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  6763. "reference": "8.x-1.4",
  6764. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  6765. },
  6766. "require": {
  6767. "drupal/core": "^8.8 || ^9"
  6768. },
  6769. "suggest": {
  6770. "predis/predis": "^1.1.1"
  6771. },
  6772. "type": "drupal-module",
  6773. "extra": {
  6774. "drupal": {
  6775. "version": "8.x-1.4",
  6776. "datestamp": "1581504947",
  6777. "security-coverage": {
  6778. "status": "covered",
  6779. "message": "Covered by Drupal's security advisory policy"
  6780. }
  6781. }
  6782. },
  6783. "autoload": {
  6784. "psr-4": {
  6785. "Drupal\\redis\\": "src"
  6786. }
  6787. },
  6788. "notification-url": "https://packages.drupal.org/8/downloads",
  6789. "license": [
  6790. "GPL-2.0"
  6791. ],
  6792. "authors": [
  6793. {
  6794. "name": "Berdir",
  6795. "homepage": "https://www.drupal.org/user/214652"
  6796. },
  6797. {
  6798. "name": "pounard",
  6799. "homepage": "https://www.drupal.org/user/240164"
  6800. }
  6801. ],
  6802. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  6803. "homepage": "https://www.drupal.org/project/redis",
  6804. "support": {
  6805. "source": "https://git.drupalcode.org/project/redis"
  6806. }
  6807. },
  6808. {
  6809. "name": "drupal/search_api",
  6810. "version": "1.18.0",
  6811. "source": {
  6812. "type": "git",
  6813. "url": "https://git.drupalcode.org/project/search_api.git",
  6814. "reference": "8.x-1.18"
  6815. },
  6816. "dist": {
  6817. "type": "zip",
  6818. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.18.zip",
  6819. "reference": "8.x-1.18",
  6820. "shasum": "6cf1d6820ba55891e204bac40b6031ed15db482a"
  6821. },
  6822. "require": {
  6823. "drupal/core": "^8.8 || ^9"
  6824. },
  6825. "conflict": {
  6826. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6827. },
  6828. "require-dev": {
  6829. "drupal/language_fallback_fix": "@dev",
  6830. "drupal/search_api_autocomplete": "@dev",
  6831. "drupal/search_api_db": "*"
  6832. },
  6833. "suggest": {
  6834. "drupal/facets": "Adds the ability to create faceted searches.",
  6835. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6836. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6837. },
  6838. "type": "drupal-module",
  6839. "extra": {
  6840. "drupal": {
  6841. "version": "8.x-1.18",
  6842. "datestamp": "1605204423",
  6843. "security-coverage": {
  6844. "status": "covered",
  6845. "message": "Covered by Drupal's security advisory policy"
  6846. }
  6847. },
  6848. "drush": {
  6849. "services": {
  6850. "drush.services.yml": "^9"
  6851. }
  6852. }
  6853. },
  6854. "notification-url": "https://packages.drupal.org/8/downloads",
  6855. "license": [
  6856. "GPL-2.0-or-later"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Thomas Seidl",
  6861. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6862. },
  6863. {
  6864. "name": "Nick Veenhof",
  6865. "homepage": "https://www.drupal.org/u/nick_vh"
  6866. },
  6867. {
  6868. "name": "See other contributors",
  6869. "homepage": "https://www.drupal.org/node/790418/committers"
  6870. }
  6871. ],
  6872. "description": "Provides a generic framework for modules offering search capabilities.",
  6873. "homepage": "https://www.drupal.org/project/search_api",
  6874. "support": {
  6875. "source": "https://git.drupalcode.org/project/search_api",
  6876. "issues": "https://www.drupal.org/project/issues/search_api",
  6877. "irc": "irc://irc.freenode.org/drupal-search-api"
  6878. }
  6879. },
  6880. {
  6881. "name": "drupal/search_api_db",
  6882. "version": "1.18.0",
  6883. "require": {
  6884. "drupal/core": "^8.8 || ^9",
  6885. "drupal/search_api": "*"
  6886. },
  6887. "type": "metapackage",
  6888. "extra": {
  6889. "drupal": {
  6890. "version": "8.x-1.18",
  6891. "datestamp": "1605204423",
  6892. "security-coverage": {
  6893. "status": "covered",
  6894. "message": "Covered by Drupal's security advisory policy"
  6895. }
  6896. }
  6897. },
  6898. "notification-url": "https://packages.drupal.org/8/downloads",
  6899. "license": [
  6900. "GPL-2.0-or-later"
  6901. ],
  6902. "authors": [
  6903. {
  6904. "name": "Nick_vh",
  6905. "homepage": "https://www.drupal.org/user/122682"
  6906. },
  6907. {
  6908. "name": "borisson_",
  6909. "homepage": "https://www.drupal.org/user/2393360"
  6910. },
  6911. {
  6912. "name": "drunken monkey",
  6913. "homepage": "https://www.drupal.org/user/205582"
  6914. }
  6915. ],
  6916. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6917. "homepage": "https://www.drupal.org/project/search_api",
  6918. "support": {
  6919. "source": "https://git.drupalcode.org/project/search_api"
  6920. }
  6921. },
  6922. {
  6923. "name": "drupal/smart_trim",
  6924. "version": "1.3.0",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6928. "reference": "8.x-1.3"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  6933. "reference": "8.x-1.3",
  6934. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  6935. },
  6936. "require": {
  6937. "drupal/core": "^8 || ^9"
  6938. },
  6939. "type": "drupal-module",
  6940. "extra": {
  6941. "drupal": {
  6942. "version": "8.x-1.3",
  6943. "datestamp": "1589766531",
  6944. "security-coverage": {
  6945. "status": "covered",
  6946. "message": "Covered by Drupal's security advisory policy"
  6947. }
  6948. }
  6949. },
  6950. "notification-url": "https://packages.drupal.org/8/downloads",
  6951. "license": [
  6952. "GPL-2.0-or-later"
  6953. ],
  6954. "authors": [
  6955. {
  6956. "name": "Mark Casias (markie)",
  6957. "homepage": "https://www.drupal.org/u/markie",
  6958. "role": "Maintainer"
  6959. },
  6960. {
  6961. "name": "chrisjlee",
  6962. "homepage": "https://www.drupal.org/user/760600"
  6963. },
  6964. {
  6965. "name": "drywall",
  6966. "homepage": "https://www.drupal.org/user/192591"
  6967. },
  6968. {
  6969. "name": "jsenich",
  6970. "homepage": "https://www.drupal.org/user/58871"
  6971. },
  6972. {
  6973. "name": "markie",
  6974. "homepage": "https://www.drupal.org/user/206687"
  6975. },
  6976. {
  6977. "name": "newsignature",
  6978. "homepage": "https://www.drupal.org/user/765518"
  6979. }
  6980. ],
  6981. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6982. "homepage": "https://drupal.org/project/smart_trim",
  6983. "support": {
  6984. "source": "https://cgit.drupalcode.org/smart_trim",
  6985. "issues": "https://drupal.org/project/issues/smart_trim"
  6986. }
  6987. },
  6988. {
  6989. "name": "drupal/smtp",
  6990. "version": "1.0.0",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://git.drupalcode.org/project/smtp.git",
  6994. "reference": "8.x-1.0"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  6999. "reference": "8.x-1.0",
  7000. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7001. },
  7002. "require": {
  7003. "drupal/core": "^8.8 || ^9",
  7004. "phpmailer/phpmailer": "^6.1.7"
  7005. },
  7006. "suggest": {
  7007. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7008. },
  7009. "type": "drupal-module",
  7010. "extra": {
  7011. "drupal": {
  7012. "version": "8.x-1.0",
  7013. "datestamp": "1601070985",
  7014. "security-coverage": {
  7015. "status": "covered",
  7016. "message": "Covered by Drupal's security advisory policy"
  7017. }
  7018. },
  7019. "branch-alias": {
  7020. "dev-8.x-1.x": "1.x-dev"
  7021. }
  7022. },
  7023. "notification-url": "https://packages.drupal.org/8/downloads",
  7024. "license": [
  7025. "GPL-2.0-or-later"
  7026. ],
  7027. "authors": [
  7028. {
  7029. "name": "LukeLast",
  7030. "homepage": "https://www.drupal.org/user/30151"
  7031. },
  7032. {
  7033. "name": "japerry",
  7034. "homepage": "https://www.drupal.org/user/45640"
  7035. },
  7036. {
  7037. "name": "josesanmartin",
  7038. "homepage": "https://www.drupal.org/user/72012"
  7039. },
  7040. {
  7041. "name": "oadaeh",
  7042. "homepage": "https://www.drupal.org/user/4649"
  7043. },
  7044. {
  7045. "name": "sadashiv",
  7046. "homepage": "https://www.drupal.org/user/1773304"
  7047. },
  7048. {
  7049. "name": "wundo",
  7050. "homepage": "https://www.drupal.org/user/25523"
  7051. },
  7052. {
  7053. "name": "yettyn",
  7054. "homepage": "https://www.drupal.org/user/93281"
  7055. }
  7056. ],
  7057. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7058. "homepage": "https://www.drupal.org/project/smtp",
  7059. "support": {
  7060. "source": "https://git.drupalcode.org/project/smtp",
  7061. "issues": "https://www.drupal.org/project/issues/smtp"
  7062. }
  7063. },
  7064. {
  7065. "name": "drupal/sophron",
  7066. "version": "1.1.0",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://git.drupalcode.org/project/sophron.git",
  7070. "reference": "8.x-1.1"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7075. "reference": "8.x-1.1",
  7076. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7077. },
  7078. "require": {
  7079. "drupal/core": "^8.9 || ^9",
  7080. "fileeye/mimemap": "^1.1.4",
  7081. "php": ">=7.1"
  7082. },
  7083. "type": "drupal-module",
  7084. "extra": {
  7085. "drupal": {
  7086. "version": "8.x-1.1",
  7087. "datestamp": "1606047077",
  7088. "security-coverage": {
  7089. "status": "covered",
  7090. "message": "Covered by Drupal's security advisory policy"
  7091. }
  7092. }
  7093. },
  7094. "autoload": {
  7095. "psr-4": {
  7096. "Drupal\\sophron\\": "src/"
  7097. }
  7098. },
  7099. "notification-url": "https://packages.drupal.org/8/downloads",
  7100. "license": [
  7101. "GPL-2.0-or-later"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "mondrake",
  7106. "homepage": "https://www.drupal.org/user/1307444"
  7107. }
  7108. ],
  7109. "description": "Provides an extensive MIME types management API",
  7110. "homepage": "https://www.drupal.org/project/sophron",
  7111. "support": {
  7112. "source": "https://git.drupalcode.org/project/sophron"
  7113. }
  7114. },
  7115. {
  7116. "name": "drupal/synonyms",
  7117. "version": "dev-1.x",
  7118. "source": {
  7119. "type": "git",
  7120. "url": "https://git.drupalcode.org/project/synonyms.git",
  7121. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7122. },
  7123. "require": {
  7124. "drupal/core": "^8 || ^9"
  7125. },
  7126. "type": "drupal-module",
  7127. "extra": {
  7128. "branch-alias": {
  7129. "dev-1.x": "1.x-dev"
  7130. },
  7131. "drupal": {
  7132. "version": "8.x-1.0-alpha1+23-dev",
  7133. "datestamp": "1607727823",
  7134. "security-coverage": {
  7135. "status": "not-covered",
  7136. "message": "Dev releases are not covered by Drupal security advisories."
  7137. }
  7138. }
  7139. },
  7140. "notification-url": "https://packages.drupal.org/8/downloads",
  7141. "license": [
  7142. "GPL-2.0-or-later"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Zen",
  7147. "homepage": "https://www.drupal.org/user/21209"
  7148. },
  7149. {
  7150. "name": "bojanz",
  7151. "homepage": "https://www.drupal.org/user/86106"
  7152. },
  7153. {
  7154. "name": "bucefal91",
  7155. "homepage": "https://www.drupal.org/user/504128"
  7156. },
  7157. {
  7158. "name": "devad",
  7159. "homepage": "https://www.drupal.org/user/2268520"
  7160. }
  7161. ],
  7162. "description": "Provides synonyms feature for content entities.",
  7163. "homepage": "https://www.drupal.org/project/synonyms",
  7164. "support": {
  7165. "source": "https://git.drupalcode.org/project/synonyms"
  7166. },
  7167. "time": "2020-12-11T23:17:33+00:00"
  7168. },
  7169. {
  7170. "name": "drupal/token",
  7171. "version": "1.8.0",
  7172. "source": {
  7173. "type": "git",
  7174. "url": "https://git.drupalcode.org/project/token.git",
  7175. "reference": "8.x-1.8"
  7176. },
  7177. "dist": {
  7178. "type": "zip",
  7179. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.8.zip",
  7180. "reference": "8.x-1.8",
  7181. "shasum": "f8e3b8f897817969324d88019438066b533bfe42"
  7182. },
  7183. "require": {
  7184. "drupal/core": "^8.8 || ^9"
  7185. },
  7186. "type": "drupal-module",
  7187. "extra": {
  7188. "drupal": {
  7189. "version": "8.x-1.8",
  7190. "datestamp": "1607552423",
  7191. "security-coverage": {
  7192. "status": "covered",
  7193. "message": "Covered by Drupal's security advisory policy"
  7194. }
  7195. },
  7196. "drush": {
  7197. "services": {
  7198. "drush.services.yml": "^9 || ^10"
  7199. }
  7200. }
  7201. },
  7202. "notification-url": "https://packages.drupal.org/8/downloads",
  7203. "license": [
  7204. "GPL-2.0-or-later"
  7205. ],
  7206. "authors": [
  7207. {
  7208. "name": "Berdir",
  7209. "homepage": "https://www.drupal.org/user/214652"
  7210. },
  7211. {
  7212. "name": "Dave Reid",
  7213. "homepage": "https://www.drupal.org/user/53892"
  7214. },
  7215. {
  7216. "name": "eaton",
  7217. "homepage": "https://www.drupal.org/user/16496"
  7218. },
  7219. {
  7220. "name": "fago",
  7221. "homepage": "https://www.drupal.org/user/16747"
  7222. },
  7223. {
  7224. "name": "greggles",
  7225. "homepage": "https://www.drupal.org/user/36762"
  7226. },
  7227. {
  7228. "name": "mikeryan",
  7229. "homepage": "https://www.drupal.org/user/4420"
  7230. }
  7231. ],
  7232. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7233. "homepage": "https://www.drupal.org/project/token",
  7234. "support": {
  7235. "source": "https://git.drupalcode.org/project/token"
  7236. }
  7237. },
  7238. {
  7239. "name": "drupal/translation_views",
  7240. "version": "1.0.0-alpha10",
  7241. "source": {
  7242. "type": "git",
  7243. "url": "https://git.drupalcode.org/project/translation_views.git",
  7244. "reference": "8.x-1.0-alpha10"
  7245. },
  7246. "dist": {
  7247. "type": "zip",
  7248. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7249. "reference": "8.x-1.0-alpha10",
  7250. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7251. },
  7252. "require": {
  7253. "drupal/core": "^8.8 || ^9"
  7254. },
  7255. "require-dev": {
  7256. "drupal/translators": "*",
  7257. "drupal/translators_content": "*"
  7258. },
  7259. "type": "drupal-module",
  7260. "extra": {
  7261. "drupal": {
  7262. "version": "8.x-1.0-alpha10",
  7263. "datestamp": "1584303687",
  7264. "security-coverage": {
  7265. "status": "not-covered",
  7266. "message": "Project has not opted into security advisory coverage!"
  7267. }
  7268. }
  7269. },
  7270. "notification-url": "https://packages.drupal.org/8/downloads",
  7271. "license": [
  7272. "GPL-2.0-or-later"
  7273. ],
  7274. "authors": [
  7275. {
  7276. "name": "matsbla",
  7277. "homepage": "https://www.drupal.org/user/2325394"
  7278. },
  7279. {
  7280. "name": "vlad.dancer",
  7281. "homepage": "https://www.drupal.org/user/903844"
  7282. }
  7283. ],
  7284. "description": "Create customized lists and queries of translations from your database.",
  7285. "homepage": "https://www.drupal.org/project/translation_views",
  7286. "support": {
  7287. "source": "https://git.drupalcode.org/project/translation_views"
  7288. }
  7289. },
  7290. {
  7291. "name": "drupal/ultimate_cron",
  7292. "version": "2.0.0-alpha5",
  7293. "source": {
  7294. "type": "git",
  7295. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7296. "reference": "8.x-2.0-alpha5"
  7297. },
  7298. "dist": {
  7299. "type": "zip",
  7300. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7301. "reference": "8.x-2.0-alpha5",
  7302. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7303. },
  7304. "require": {
  7305. "drupal/core": "^8.7.7 || ^9"
  7306. },
  7307. "type": "drupal-module",
  7308. "extra": {
  7309. "drupal": {
  7310. "version": "8.x-2.0-alpha5",
  7311. "datestamp": "1600928948",
  7312. "security-coverage": {
  7313. "status": "not-covered",
  7314. "message": "Alpha releases are not covered by Drupal security advisories."
  7315. }
  7316. },
  7317. "drush": {
  7318. "services": {
  7319. "drush.services.yml": "^9 || ^10"
  7320. }
  7321. }
  7322. },
  7323. "notification-url": "https://packages.drupal.org/8/downloads",
  7324. "license": [
  7325. "GPL-2.0+"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "Berdir",
  7330. "homepage": "https://www.drupal.org/user/214652"
  7331. },
  7332. {
  7333. "name": "Dane Powell",
  7334. "homepage": "https://www.drupal.org/user/339326"
  7335. },
  7336. {
  7337. "name": "Primsi",
  7338. "homepage": "https://www.drupal.org/user/282629"
  7339. },
  7340. {
  7341. "name": "arnested",
  7342. "homepage": "https://www.drupal.org/user/245635"
  7343. },
  7344. {
  7345. "name": "gielfeldt",
  7346. "homepage": "https://www.drupal.org/user/366993"
  7347. },
  7348. {
  7349. "name": "miro_dietiker",
  7350. "homepage": "https://www.drupal.org/user/227761"
  7351. }
  7352. ],
  7353. "description": "Ultimate cron",
  7354. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7355. "support": {
  7356. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7357. }
  7358. },
  7359. {
  7360. "name": "drupal/url_to_video_filter",
  7361. "version": "2.0.0",
  7362. "source": {
  7363. "type": "git",
  7364. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7365. "reference": "2.0.0"
  7366. },
  7367. "dist": {
  7368. "type": "zip",
  7369. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7370. "reference": "2.0.0",
  7371. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7372. },
  7373. "require": {
  7374. "drupal/core": "^8 || ^9"
  7375. },
  7376. "type": "drupal-module",
  7377. "extra": {
  7378. "drupal": {
  7379. "version": "2.0.0",
  7380. "datestamp": "1607298389",
  7381. "security-coverage": {
  7382. "status": "covered",
  7383. "message": "Covered by Drupal's security advisory policy"
  7384. }
  7385. }
  7386. },
  7387. "notification-url": "https://packages.drupal.org/8/downloads",
  7388. "license": [
  7389. "GPL-2.0-or-later"
  7390. ],
  7391. "authors": [
  7392. {
  7393. "name": "Jaypan",
  7394. "homepage": "https://www.drupal.org/user/324696"
  7395. }
  7396. ],
  7397. "description": "Text filter to convert URLs to embedded videos",
  7398. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7399. "support": {
  7400. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7401. }
  7402. },
  7403. {
  7404. "name": "drupal/video_embed_field",
  7405. "version": "2.4.0",
  7406. "source": {
  7407. "type": "git",
  7408. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7409. "reference": "8.x-2.4"
  7410. },
  7411. "dist": {
  7412. "type": "zip",
  7413. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7414. "reference": "8.x-2.4",
  7415. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7416. },
  7417. "require": {
  7418. "drupal/core": "^8.8 || ^9"
  7419. },
  7420. "require-dev": {
  7421. "drupal/colorbox": "^1.0",
  7422. "drupal/video_embed_media": "*"
  7423. },
  7424. "type": "drupal-module",
  7425. "extra": {
  7426. "drupal": {
  7427. "version": "8.x-2.4",
  7428. "datestamp": "1587686337",
  7429. "security-coverage": {
  7430. "status": "covered",
  7431. "message": "Covered by Drupal's security advisory policy"
  7432. }
  7433. }
  7434. },
  7435. "notification-url": "https://packages.drupal.org/8/downloads",
  7436. "license": [
  7437. "GPL-2.0+"
  7438. ],
  7439. "authors": [
  7440. {
  7441. "name": "Sam152",
  7442. "homepage": "https://www.drupal.org/user/1485048"
  7443. },
  7444. {
  7445. "name": "jec006",
  7446. "homepage": "https://www.drupal.org/user/855980"
  7447. },
  7448. {
  7449. "name": "plopesc",
  7450. "homepage": "https://www.drupal.org/user/282415"
  7451. }
  7452. ],
  7453. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7454. "homepage": "https://www.drupal.org/project/video_embed_field",
  7455. "support": {
  7456. "source": "https://git.drupalcode.org/project/video_embed_field"
  7457. }
  7458. },
  7459. {
  7460. "name": "drupal/views_bulk_edit",
  7461. "version": "2.5.0",
  7462. "source": {
  7463. "type": "git",
  7464. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7465. "reference": "8.x-2.5"
  7466. },
  7467. "dist": {
  7468. "type": "zip",
  7469. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  7470. "reference": "8.x-2.5",
  7471. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  7472. },
  7473. "require": {
  7474. "drupal/core": "^8 || ^9"
  7475. },
  7476. "require-dev": {
  7477. "drupal/views_bulk_operations": "~3.0"
  7478. },
  7479. "suggest": {
  7480. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7481. },
  7482. "type": "drupal-module",
  7483. "extra": {
  7484. "drupal": {
  7485. "version": "8.x-2.5",
  7486. "datestamp": "1606726163",
  7487. "security-coverage": {
  7488. "status": "covered",
  7489. "message": "Covered by Drupal's security advisory policy"
  7490. }
  7491. }
  7492. },
  7493. "notification-url": "https://packages.drupal.org/8/downloads",
  7494. "license": [
  7495. "GPL-2.0+"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "Marcin Grabias",
  7500. "homepage": "https://www.drupal.org/u/graber"
  7501. },
  7502. {
  7503. "name": "benjy",
  7504. "homepage": "https://www.drupal.org/user/1852732"
  7505. }
  7506. ],
  7507. "description": "Allows bulk edition of entity field values.",
  7508. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7509. "support": {
  7510. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7511. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7512. }
  7513. },
  7514. {
  7515. "name": "drupal/views_bulk_operations",
  7516. "version": "3.9.0",
  7517. "source": {
  7518. "type": "git",
  7519. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7520. "reference": "8.x-3.9"
  7521. },
  7522. "dist": {
  7523. "type": "zip",
  7524. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  7525. "reference": "8.x-3.9",
  7526. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  7527. },
  7528. "require": {
  7529. "drupal/core": "^8.8 || ^9"
  7530. },
  7531. "require-dev": {
  7532. "drush/drush": "^10"
  7533. },
  7534. "suggest": {
  7535. "drush/drush": "^9 || ^10"
  7536. },
  7537. "type": "drupal-module",
  7538. "extra": {
  7539. "drupal": {
  7540. "version": "8.x-3.9",
  7541. "datestamp": "1597319021",
  7542. "security-coverage": {
  7543. "status": "covered",
  7544. "message": "Covered by Drupal's security advisory policy"
  7545. }
  7546. },
  7547. "drush": {
  7548. "services": {
  7549. "drush.services.yml": "^9 || ^10"
  7550. }
  7551. }
  7552. },
  7553. "notification-url": "https://packages.drupal.org/8/downloads",
  7554. "license": [
  7555. "GPL-2.0-or-later"
  7556. ],
  7557. "authors": [
  7558. {
  7559. "name": "Marcin Grabias",
  7560. "homepage": "https://www.drupal.org/u/graber"
  7561. },
  7562. {
  7563. "name": "Jon Pugh",
  7564. "homepage": "https://www.drupal.org/user/17028"
  7565. },
  7566. {
  7567. "name": "bojanz",
  7568. "homepage": "https://www.drupal.org/user/86106"
  7569. },
  7570. {
  7571. "name": "infojunkie",
  7572. "homepage": "https://www.drupal.org/user/48424"
  7573. },
  7574. {
  7575. "name": "joelpittet",
  7576. "homepage": "https://www.drupal.org/user/160302"
  7577. }
  7578. ],
  7579. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7580. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7581. "support": {
  7582. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7583. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7584. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7585. }
  7586. },
  7587. {
  7588. "name": "drupal/views_ef_fieldset",
  7589. "version": "1.5.0",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7593. "reference": "8.x-1.5"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  7598. "reference": "8.x-1.5",
  7599. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  7600. },
  7601. "require": {
  7602. "drupal/core": "^8 || ^9",
  7603. "php": ">=7"
  7604. },
  7605. "type": "drupal-module",
  7606. "extra": {
  7607. "drupal": {
  7608. "version": "8.x-1.5",
  7609. "datestamp": "1604567512",
  7610. "security-coverage": {
  7611. "status": "covered",
  7612. "message": "Covered by Drupal's security advisory policy"
  7613. }
  7614. },
  7615. "composer-exit-on-patch-failure": true,
  7616. "enable-patching": true,
  7617. "patches": {
  7618. "drupal/core": {
  7619. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7620. }
  7621. }
  7622. },
  7623. "autoload-dev": {
  7624. "psr-4": {
  7625. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7626. }
  7627. },
  7628. "notification-url": "https://packages.drupal.org/8/downloads",
  7629. "scripts": {
  7630. "grumphp": [
  7631. "./vendor/bin/grumphp run"
  7632. ]
  7633. },
  7634. "license": [
  7635. "GPL-2.0+"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Pol Dellaiera",
  7640. "homepage": "https://www.drupal.org/user/47194",
  7641. "email": "pol.dellaiera@protonmail.com"
  7642. },
  7643. {
  7644. "name": "ciss",
  7645. "homepage": "https://www.drupal.org/user/1632364"
  7646. }
  7647. ],
  7648. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7649. "homepage": "https://drupal.org/project/views_field_formatter",
  7650. "support": {
  7651. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  7652. }
  7653. },
  7654. {
  7655. "name": "drush/drush",
  7656. "version": "10.3.6",
  7657. "source": {
  7658. "type": "git",
  7659. "url": "https://github.com/drush-ops/drush.git",
  7660. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  7661. },
  7662. "dist": {
  7663. "type": "zip",
  7664. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  7665. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  7666. "shasum": ""
  7667. },
  7668. "require": {
  7669. "chi-teck/drupal-code-generator": "^1.32.1",
  7670. "composer/semver": "^1.4 || ^3",
  7671. "consolidation/config": "^1.2",
  7672. "consolidation/filter-via-dot-access-data": "^1",
  7673. "consolidation/robo": "^1.4.11 || ^2",
  7674. "consolidation/site-alias": "^3.0.0@stable",
  7675. "consolidation/site-process": "^2.1 || ^4",
  7676. "ext-dom": "*",
  7677. "grasmash/yaml-expander": "^1.1.1",
  7678. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7679. "league/container": "~2",
  7680. "php": ">=7.1.3",
  7681. "psr/log": "~1.0",
  7682. "psy/psysh": "~0.6",
  7683. "symfony/event-dispatcher": "^3.4 || ^4.0",
  7684. "symfony/finder": "^3.4 || ^4.0 || ^5",
  7685. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  7686. "symfony/yaml": "^3.4 || ^4.0",
  7687. "webflo/drupal-finder": "^1.2",
  7688. "webmozart/path-util": "^2.1.0"
  7689. },
  7690. "require-dev": {
  7691. "composer/installers": "^1.7",
  7692. "cweagans/composer-patches": "~1.0",
  7693. "david-garcia/phpwhois": "4.3.0",
  7694. "drupal/alinks": "1.0.0",
  7695. "drupal/core-recommended": "^8.8",
  7696. "lox/xhprof": "dev-master",
  7697. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7698. "squizlabs/php_codesniffer": "^2.7 || ^3",
  7699. "vlucas/phpdotenv": "^2.4"
  7700. },
  7701. "bin": [
  7702. "drush"
  7703. ],
  7704. "type": "library",
  7705. "extra": {
  7706. "installer-paths": {
  7707. "sut/core": [
  7708. "type:drupal-core"
  7709. ],
  7710. "sut/libraries/{$name}": [
  7711. "type:drupal-library"
  7712. ],
  7713. "sut/modules/unish/{$name}": [
  7714. "drupal/devel"
  7715. ],
  7716. "sut/themes/unish/{$name}": [
  7717. "drupal/empty_theme"
  7718. ],
  7719. "sut/modules/contrib/{$name}": [
  7720. "type:drupal-module"
  7721. ],
  7722. "sut/profiles/contrib/{$name}": [
  7723. "type:drupal-profile"
  7724. ],
  7725. "sut/themes/contrib/{$name}": [
  7726. "type:drupal-theme"
  7727. ],
  7728. "sut/drush/contrib/{$name}": [
  7729. "type:drupal-drush"
  7730. ]
  7731. }
  7732. },
  7733. "autoload": {
  7734. "psr-4": {
  7735. "Drush\\": "src/",
  7736. "Drush\\Internal\\": "src/internal-forks"
  7737. }
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "GPL-2.0-or-later"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Moshe Weitzman",
  7746. "email": "weitzman@tejasa.com"
  7747. },
  7748. {
  7749. "name": "Owen Barton",
  7750. "email": "drupal@owenbarton.com"
  7751. },
  7752. {
  7753. "name": "Greg Anderson",
  7754. "email": "greg.1.anderson@greenknowe.org"
  7755. },
  7756. {
  7757. "name": "Jonathan Araña Cruz",
  7758. "email": "jonhattan@faita.net"
  7759. },
  7760. {
  7761. "name": "Jonathan Hedstrom",
  7762. "email": "jhedstrom@gmail.com"
  7763. },
  7764. {
  7765. "name": "Christopher Gervais",
  7766. "email": "chris@ergonlogic.com"
  7767. },
  7768. {
  7769. "name": "Dave Reid",
  7770. "email": "dave@davereid.net"
  7771. },
  7772. {
  7773. "name": "Damian Lee",
  7774. "email": "damiankloip@googlemail.com"
  7775. }
  7776. ],
  7777. "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.",
  7778. "homepage": "http://www.drush.org",
  7779. "funding": [
  7780. {
  7781. "url": "https://github.com/weitzman",
  7782. "type": "github"
  7783. }
  7784. ],
  7785. "time": "2020-11-11T04:36:51+00:00"
  7786. },
  7787. {
  7788. "name": "egulias/email-validator",
  7789. "version": "2.1.22",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://github.com/egulias/EmailValidator.git",
  7793. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7798. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  7799. "shasum": ""
  7800. },
  7801. "require": {
  7802. "doctrine/lexer": "^1.0.1",
  7803. "php": ">=5.5",
  7804. "symfony/polyfill-intl-idn": "^1.10"
  7805. },
  7806. "require-dev": {
  7807. "dominicsayers/isemail": "^3.0.7",
  7808. "phpunit/phpunit": "^4.8.36|^7.5.15",
  7809. "satooshi/php-coveralls": "^1.0.1"
  7810. },
  7811. "suggest": {
  7812. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7813. },
  7814. "type": "library",
  7815. "extra": {
  7816. "branch-alias": {
  7817. "dev-master": "2.1.x-dev"
  7818. }
  7819. },
  7820. "autoload": {
  7821. "psr-4": {
  7822. "Egulias\\EmailValidator\\": "src"
  7823. }
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "MIT"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Eduardo Gulias Davis"
  7832. }
  7833. ],
  7834. "description": "A library for validating emails against several RFCs",
  7835. "homepage": "https://github.com/egulias/EmailValidator",
  7836. "keywords": [
  7837. "email",
  7838. "emailvalidation",
  7839. "emailvalidator",
  7840. "validation",
  7841. "validator"
  7842. ],
  7843. "time": "2020-09-26T15:48:38+00:00"
  7844. },
  7845. {
  7846. "name": "fileeye/mimemap",
  7847. "version": "1.1.4",
  7848. "source": {
  7849. "type": "git",
  7850. "url": "https://github.com/FileEye/MimeMap.git",
  7851. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  7852. },
  7853. "dist": {
  7854. "type": "zip",
  7855. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7856. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  7857. "shasum": ""
  7858. },
  7859. "require": {
  7860. "php": ">=5.4"
  7861. },
  7862. "require-dev": {
  7863. "phpunit/phpunit": "<10",
  7864. "sebastian/comparator": "*",
  7865. "sebastian/diff": "*",
  7866. "squizlabs/php_codesniffer": "*",
  7867. "symfony/console": "*",
  7868. "symfony/filesystem": "*",
  7869. "symfony/var-dumper": "*",
  7870. "symfony/yaml": "*"
  7871. },
  7872. "bin": [
  7873. "bin/fileeye-mimemap"
  7874. ],
  7875. "type": "library",
  7876. "extra": {
  7877. "branch-alias": {
  7878. "dev-master": "1.x-dev"
  7879. }
  7880. },
  7881. "autoload": {
  7882. "psr-4": {
  7883. "FileEye\\MimeMap\\": "src/"
  7884. }
  7885. },
  7886. "notification-url": "https://packagist.org/downloads/",
  7887. "license": [
  7888. "LGPL-3.0-or-later"
  7889. ],
  7890. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7891. "homepage": "https://github.com/FileEye/MimeMap",
  7892. "keywords": [
  7893. "mime",
  7894. "mime-database",
  7895. "mime-parser",
  7896. "mime-type"
  7897. ],
  7898. "time": "2020-05-16T10:19:16+00:00"
  7899. },
  7900. {
  7901. "name": "grasmash/expander",
  7902. "version": "1.0.0",
  7903. "source": {
  7904. "type": "git",
  7905. "url": "https://github.com/grasmash/expander.git",
  7906. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7907. },
  7908. "dist": {
  7909. "type": "zip",
  7910. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7911. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7912. "shasum": ""
  7913. },
  7914. "require": {
  7915. "dflydev/dot-access-data": "^1.1.0",
  7916. "php": ">=5.4"
  7917. },
  7918. "require-dev": {
  7919. "greg-1-anderson/composer-test-scenarios": "^1",
  7920. "phpunit/phpunit": "^4|^5.5.4",
  7921. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7922. "squizlabs/php_codesniffer": "^2.7"
  7923. },
  7924. "type": "library",
  7925. "extra": {
  7926. "branch-alias": {
  7927. "dev-master": "1.x-dev"
  7928. }
  7929. },
  7930. "autoload": {
  7931. "psr-4": {
  7932. "Grasmash\\Expander\\": "src/"
  7933. }
  7934. },
  7935. "notification-url": "https://packagist.org/downloads/",
  7936. "license": [
  7937. "MIT"
  7938. ],
  7939. "authors": [
  7940. {
  7941. "name": "Matthew Grasmick"
  7942. }
  7943. ],
  7944. "description": "Expands internal property references in PHP arrays file.",
  7945. "time": "2017-12-21T22:14:55+00:00"
  7946. },
  7947. {
  7948. "name": "grasmash/yaml-expander",
  7949. "version": "1.4.0",
  7950. "source": {
  7951. "type": "git",
  7952. "url": "https://github.com/grasmash/yaml-expander.git",
  7953. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7954. },
  7955. "dist": {
  7956. "type": "zip",
  7957. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7958. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7959. "shasum": ""
  7960. },
  7961. "require": {
  7962. "dflydev/dot-access-data": "^1.1.0",
  7963. "php": ">=5.4",
  7964. "symfony/yaml": "^2.8.11|^3|^4"
  7965. },
  7966. "require-dev": {
  7967. "greg-1-anderson/composer-test-scenarios": "^1",
  7968. "phpunit/phpunit": "^4.8|^5.5.4",
  7969. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7970. "squizlabs/php_codesniffer": "^2.7"
  7971. },
  7972. "type": "library",
  7973. "extra": {
  7974. "branch-alias": {
  7975. "dev-master": "1.x-dev"
  7976. }
  7977. },
  7978. "autoload": {
  7979. "psr-4": {
  7980. "Grasmash\\YamlExpander\\": "src/"
  7981. }
  7982. },
  7983. "notification-url": "https://packagist.org/downloads/",
  7984. "license": [
  7985. "MIT"
  7986. ],
  7987. "authors": [
  7988. {
  7989. "name": "Matthew Grasmick"
  7990. }
  7991. ],
  7992. "description": "Expands internal property references in a yaml file.",
  7993. "time": "2017-12-16T16:06:03+00:00"
  7994. },
  7995. {
  7996. "name": "guzzlehttp/guzzle",
  7997. "version": "6.5.5",
  7998. "source": {
  7999. "type": "git",
  8000. "url": "https://github.com/guzzle/guzzle.git",
  8001. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8002. },
  8003. "dist": {
  8004. "type": "zip",
  8005. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8006. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8007. "shasum": ""
  8008. },
  8009. "require": {
  8010. "ext-json": "*",
  8011. "guzzlehttp/promises": "^1.0",
  8012. "guzzlehttp/psr7": "^1.6.1",
  8013. "php": ">=5.5",
  8014. "symfony/polyfill-intl-idn": "^1.17.0"
  8015. },
  8016. "require-dev": {
  8017. "ext-curl": "*",
  8018. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8019. "psr/log": "^1.1"
  8020. },
  8021. "suggest": {
  8022. "psr/log": "Required for using the Log middleware"
  8023. },
  8024. "type": "library",
  8025. "extra": {
  8026. "branch-alias": {
  8027. "dev-master": "6.5-dev"
  8028. }
  8029. },
  8030. "autoload": {
  8031. "psr-4": {
  8032. "GuzzleHttp\\": "src/"
  8033. },
  8034. "files": [
  8035. "src/functions_include.php"
  8036. ]
  8037. },
  8038. "notification-url": "https://packagist.org/downloads/",
  8039. "license": [
  8040. "MIT"
  8041. ],
  8042. "authors": [
  8043. {
  8044. "name": "Michael Dowling",
  8045. "email": "mtdowling@gmail.com",
  8046. "homepage": "https://github.com/mtdowling"
  8047. }
  8048. ],
  8049. "description": "Guzzle is a PHP HTTP client library",
  8050. "homepage": "http://guzzlephp.org/",
  8051. "keywords": [
  8052. "client",
  8053. "curl",
  8054. "framework",
  8055. "http",
  8056. "http client",
  8057. "rest",
  8058. "web service"
  8059. ],
  8060. "time": "2020-06-16T21:01:06+00:00"
  8061. },
  8062. {
  8063. "name": "guzzlehttp/promises",
  8064. "version": "1.4.0",
  8065. "source": {
  8066. "type": "git",
  8067. "url": "https://github.com/guzzle/promises.git",
  8068. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8069. },
  8070. "dist": {
  8071. "type": "zip",
  8072. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8073. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8074. "shasum": ""
  8075. },
  8076. "require": {
  8077. "php": ">=5.5"
  8078. },
  8079. "require-dev": {
  8080. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8081. },
  8082. "type": "library",
  8083. "extra": {
  8084. "branch-alias": {
  8085. "dev-master": "1.4-dev"
  8086. }
  8087. },
  8088. "autoload": {
  8089. "psr-4": {
  8090. "GuzzleHttp\\Promise\\": "src/"
  8091. },
  8092. "files": [
  8093. "src/functions_include.php"
  8094. ]
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "MIT"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "Michael Dowling",
  8103. "email": "mtdowling@gmail.com",
  8104. "homepage": "https://github.com/mtdowling"
  8105. }
  8106. ],
  8107. "description": "Guzzle promises library",
  8108. "keywords": [
  8109. "promise"
  8110. ],
  8111. "time": "2020-09-30T07:37:28+00:00"
  8112. },
  8113. {
  8114. "name": "guzzlehttp/psr7",
  8115. "version": "1.7.0",
  8116. "source": {
  8117. "type": "git",
  8118. "url": "https://github.com/guzzle/psr7.git",
  8119. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8120. },
  8121. "dist": {
  8122. "type": "zip",
  8123. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8124. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8125. "shasum": ""
  8126. },
  8127. "require": {
  8128. "php": ">=5.4.0",
  8129. "psr/http-message": "~1.0",
  8130. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8131. },
  8132. "provide": {
  8133. "psr/http-message-implementation": "1.0"
  8134. },
  8135. "require-dev": {
  8136. "ext-zlib": "*",
  8137. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8138. },
  8139. "suggest": {
  8140. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8141. },
  8142. "type": "library",
  8143. "extra": {
  8144. "branch-alias": {
  8145. "dev-master": "1.7-dev"
  8146. }
  8147. },
  8148. "autoload": {
  8149. "psr-4": {
  8150. "GuzzleHttp\\Psr7\\": "src/"
  8151. },
  8152. "files": [
  8153. "src/functions_include.php"
  8154. ]
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "MIT"
  8159. ],
  8160. "authors": [
  8161. {
  8162. "name": "Michael Dowling",
  8163. "email": "mtdowling@gmail.com",
  8164. "homepage": "https://github.com/mtdowling"
  8165. },
  8166. {
  8167. "name": "Tobias Schultze",
  8168. "homepage": "https://github.com/Tobion"
  8169. }
  8170. ],
  8171. "description": "PSR-7 message implementation that also provides common utility methods",
  8172. "keywords": [
  8173. "http",
  8174. "message",
  8175. "psr-7",
  8176. "request",
  8177. "response",
  8178. "stream",
  8179. "uri",
  8180. "url"
  8181. ],
  8182. "time": "2020-09-30T07:37:11+00:00"
  8183. },
  8184. {
  8185. "name": "laminas/laminas-diactoros",
  8186. "version": "2.5.0",
  8187. "source": {
  8188. "type": "git",
  8189. "url": "https://github.com/laminas/laminas-diactoros.git",
  8190. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8191. },
  8192. "dist": {
  8193. "type": "zip",
  8194. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8195. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8196. "shasum": ""
  8197. },
  8198. "require": {
  8199. "laminas/laminas-zendframework-bridge": "^1.0",
  8200. "php": "^7.3 || ~8.0.0",
  8201. "psr/http-factory": "^1.0",
  8202. "psr/http-message": "^1.0"
  8203. },
  8204. "conflict": {
  8205. "phpspec/prophecy": "<1.9.0"
  8206. },
  8207. "provide": {
  8208. "psr/http-factory-implementation": "1.0",
  8209. "psr/http-message-implementation": "1.0"
  8210. },
  8211. "replace": {
  8212. "zendframework/zend-diactoros": "^2.2.1"
  8213. },
  8214. "require-dev": {
  8215. "ext-curl": "*",
  8216. "ext-dom": "*",
  8217. "ext-gd": "*",
  8218. "ext-libxml": "*",
  8219. "http-interop/http-factory-tests": "^0.8.0",
  8220. "laminas/laminas-coding-standard": "~1.0.0",
  8221. "php-http/psr7-integration-tests": "^1.1",
  8222. "phpspec/prophecy-phpunit": "^2.0",
  8223. "phpunit/phpunit": "^9.1"
  8224. },
  8225. "type": "library",
  8226. "extra": {
  8227. "laminas": {
  8228. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8229. "module": "Laminas\\Diactoros"
  8230. }
  8231. },
  8232. "autoload": {
  8233. "files": [
  8234. "src/functions/create_uploaded_file.php",
  8235. "src/functions/marshal_headers_from_sapi.php",
  8236. "src/functions/marshal_method_from_sapi.php",
  8237. "src/functions/marshal_protocol_version_from_sapi.php",
  8238. "src/functions/marshal_uri_from_sapi.php",
  8239. "src/functions/normalize_server.php",
  8240. "src/functions/normalize_uploaded_files.php",
  8241. "src/functions/parse_cookie_header.php",
  8242. "src/functions/create_uploaded_file.legacy.php",
  8243. "src/functions/marshal_headers_from_sapi.legacy.php",
  8244. "src/functions/marshal_method_from_sapi.legacy.php",
  8245. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8246. "src/functions/marshal_uri_from_sapi.legacy.php",
  8247. "src/functions/normalize_server.legacy.php",
  8248. "src/functions/normalize_uploaded_files.legacy.php",
  8249. "src/functions/parse_cookie_header.legacy.php"
  8250. ],
  8251. "psr-4": {
  8252. "Laminas\\Diactoros\\": "src/"
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "BSD-3-Clause"
  8258. ],
  8259. "description": "PSR HTTP Message implementations",
  8260. "homepage": "https://laminas.dev",
  8261. "keywords": [
  8262. "http",
  8263. "laminas",
  8264. "psr",
  8265. "psr-17",
  8266. "psr-7"
  8267. ],
  8268. "funding": [
  8269. {
  8270. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8271. "type": "community_bridge"
  8272. }
  8273. ],
  8274. "time": "2020-11-18T18:39:28+00:00"
  8275. },
  8276. {
  8277. "name": "laminas/laminas-escaper",
  8278. "version": "2.7.0",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/laminas/laminas-escaper.git",
  8282. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8287. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "laminas/laminas-zendframework-bridge": "^1.0",
  8292. "php": "^7.3 || ~8.0.0"
  8293. },
  8294. "replace": {
  8295. "zendframework/zend-escaper": "^2.6.1"
  8296. },
  8297. "require-dev": {
  8298. "laminas/laminas-coding-standard": "~1.0.0",
  8299. "phpunit/phpunit": "^9.3",
  8300. "psalm/plugin-phpunit": "^0.12.2",
  8301. "vimeo/psalm": "^3.16"
  8302. },
  8303. "suggest": {
  8304. "ext-iconv": "*",
  8305. "ext-mbstring": "*"
  8306. },
  8307. "type": "library",
  8308. "autoload": {
  8309. "psr-4": {
  8310. "Laminas\\Escaper\\": "src/"
  8311. }
  8312. },
  8313. "notification-url": "https://packagist.org/downloads/",
  8314. "license": [
  8315. "BSD-3-Clause"
  8316. ],
  8317. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8318. "homepage": "https://laminas.dev",
  8319. "keywords": [
  8320. "escaper",
  8321. "laminas"
  8322. ],
  8323. "funding": [
  8324. {
  8325. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8326. "type": "community_bridge"
  8327. }
  8328. ],
  8329. "time": "2020-11-17T21:26:43+00:00"
  8330. },
  8331. {
  8332. "name": "laminas/laminas-feed",
  8333. "version": "2.13.0",
  8334. "source": {
  8335. "type": "git",
  8336. "url": "https://github.com/laminas/laminas-feed.git",
  8337. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8338. },
  8339. "dist": {
  8340. "type": "zip",
  8341. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8342. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8343. "shasum": ""
  8344. },
  8345. "require": {
  8346. "ext-dom": "*",
  8347. "ext-libxml": "*",
  8348. "laminas/laminas-escaper": "^2.5.2",
  8349. "laminas/laminas-stdlib": "^3.2.1",
  8350. "laminas/laminas-zendframework-bridge": "^1.0",
  8351. "php": "^7.3 || ~8.0.0"
  8352. },
  8353. "conflict": {
  8354. "laminas/laminas-servicemanager": "<3.3"
  8355. },
  8356. "replace": {
  8357. "zendframework/zend-feed": "^2.12.0"
  8358. },
  8359. "require-dev": {
  8360. "laminas/laminas-cache": "^2.7.2",
  8361. "laminas/laminas-coding-standard": "~1.0.0",
  8362. "laminas/laminas-db": "^2.8.2",
  8363. "laminas/laminas-http": "^2.7",
  8364. "laminas/laminas-servicemanager": "^3.3",
  8365. "laminas/laminas-validator": "^2.10.1",
  8366. "phpunit/phpunit": "^9.3",
  8367. "psalm/plugin-phpunit": "^0.13.0",
  8368. "psr/http-message": "^1.0.1",
  8369. "vimeo/psalm": "^4.1"
  8370. },
  8371. "suggest": {
  8372. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  8373. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  8374. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  8375. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  8376. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  8377. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  8378. },
  8379. "type": "library",
  8380. "autoload": {
  8381. "psr-4": {
  8382. "Laminas\\Feed\\": "src/"
  8383. }
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "BSD-3-Clause"
  8388. ],
  8389. "description": "provides functionality for consuming RSS and Atom feeds",
  8390. "homepage": "https://laminas.dev",
  8391. "keywords": [
  8392. "feed",
  8393. "laminas"
  8394. ],
  8395. "funding": [
  8396. {
  8397. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8398. "type": "community_bridge"
  8399. }
  8400. ],
  8401. "time": "2020-11-18T21:02:52+00:00"
  8402. },
  8403. {
  8404. "name": "laminas/laminas-stdlib",
  8405. "version": "3.3.0",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/laminas/laminas-stdlib.git",
  8409. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  8414. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  8415. "shasum": ""
  8416. },
  8417. "require": {
  8418. "laminas/laminas-zendframework-bridge": "^1.0",
  8419. "php": "^7.3 || ^8.0"
  8420. },
  8421. "replace": {
  8422. "zendframework/zend-stdlib": "^3.2.1"
  8423. },
  8424. "require-dev": {
  8425. "laminas/laminas-coding-standard": "~1.0.0",
  8426. "phpbench/phpbench": "^0.17.1",
  8427. "phpunit/phpunit": "^9.3.7"
  8428. },
  8429. "type": "library",
  8430. "extra": {
  8431. "branch-alias": {
  8432. "dev-master": "3.3.x-dev",
  8433. "dev-develop": "3.4.x-dev"
  8434. }
  8435. },
  8436. "autoload": {
  8437. "psr-4": {
  8438. "Laminas\\Stdlib\\": "src/"
  8439. }
  8440. },
  8441. "notification-url": "https://packagist.org/downloads/",
  8442. "license": [
  8443. "BSD-3-Clause"
  8444. ],
  8445. "description": "SPL extensions, array utilities, error handlers, and more",
  8446. "homepage": "https://laminas.dev",
  8447. "keywords": [
  8448. "laminas",
  8449. "stdlib"
  8450. ],
  8451. "funding": [
  8452. {
  8453. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8454. "type": "community_bridge"
  8455. }
  8456. ],
  8457. "time": "2020-08-25T09:08:16+00:00"
  8458. },
  8459. {
  8460. "name": "laminas/laminas-zendframework-bridge",
  8461. "version": "1.1.1",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  8465. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  8470. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": "^5.6 || ^7.0 || ^8.0"
  8475. },
  8476. "require-dev": {
  8477. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  8478. "squizlabs/php_codesniffer": "^3.5"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "laminas": {
  8483. "module": "Laminas\\ZendFrameworkBridge"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "files": [
  8488. "src/autoload.php"
  8489. ],
  8490. "psr-4": {
  8491. "Laminas\\ZendFrameworkBridge\\": "src//"
  8492. }
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "BSD-3-Clause"
  8497. ],
  8498. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  8499. "keywords": [
  8500. "ZendFramework",
  8501. "autoloading",
  8502. "laminas",
  8503. "zf"
  8504. ],
  8505. "funding": [
  8506. {
  8507. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8508. "type": "community_bridge"
  8509. }
  8510. ],
  8511. "time": "2020-09-14T14:23:00+00:00"
  8512. },
  8513. {
  8514. "name": "league/container",
  8515. "version": "2.4.1",
  8516. "source": {
  8517. "type": "git",
  8518. "url": "https://github.com/thephpleague/container.git",
  8519. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  8520. },
  8521. "dist": {
  8522. "type": "zip",
  8523. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  8524. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  8525. "shasum": ""
  8526. },
  8527. "require": {
  8528. "container-interop/container-interop": "^1.2",
  8529. "php": "^5.4.0 || ^7.0"
  8530. },
  8531. "provide": {
  8532. "container-interop/container-interop-implementation": "^1.2",
  8533. "psr/container-implementation": "^1.0"
  8534. },
  8535. "replace": {
  8536. "orno/di": "~2.0"
  8537. },
  8538. "require-dev": {
  8539. "phpunit/phpunit": "4.*"
  8540. },
  8541. "type": "library",
  8542. "extra": {
  8543. "branch-alias": {
  8544. "dev-2.x": "2.x-dev",
  8545. "dev-1.x": "1.x-dev"
  8546. }
  8547. },
  8548. "autoload": {
  8549. "psr-4": {
  8550. "League\\Container\\": "src"
  8551. }
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "MIT"
  8556. ],
  8557. "authors": [
  8558. {
  8559. "name": "Phil Bennett",
  8560. "email": "philipobenito@gmail.com",
  8561. "homepage": "http://www.philipobenito.com",
  8562. "role": "Developer"
  8563. }
  8564. ],
  8565. "description": "A fast and intuitive dependency injection container.",
  8566. "homepage": "https://github.com/thephpleague/container",
  8567. "keywords": [
  8568. "container",
  8569. "dependency",
  8570. "di",
  8571. "injection",
  8572. "league",
  8573. "provider",
  8574. "service"
  8575. ],
  8576. "time": "2017-05-10T09:20:27+00:00"
  8577. },
  8578. {
  8579. "name": "lsolesen/pel",
  8580. "version": "0.9.9",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/pel/pel.git",
  8584. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  8589. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "php": ">=5.4.0"
  8594. },
  8595. "require-dev": {
  8596. "ext-gd": "*",
  8597. "phpunit/phpunit": ">=4.8.36 <8",
  8598. "satooshi/php-coveralls": "1.0.*",
  8599. "squizlabs/php_codesniffer": "^3.0.0"
  8600. },
  8601. "type": "library",
  8602. "autoload": {
  8603. "psr-4": {
  8604. "lsolesen\\pel\\": "src/"
  8605. }
  8606. },
  8607. "notification-url": "https://packagist.org/downloads/",
  8608. "license": [
  8609. "GPL-2.0"
  8610. ],
  8611. "authors": [
  8612. {
  8613. "name": "Lars Olesen",
  8614. "email": "lars@intraface.dk",
  8615. "homepage": "http://intraface.dk",
  8616. "role": "Developer"
  8617. },
  8618. {
  8619. "name": "Martin Geisler",
  8620. "email": "martin@geisler.net",
  8621. "homepage": "http://geisler.net",
  8622. "role": "Developer"
  8623. }
  8624. ],
  8625. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8626. "homepage": "http://pel.github.com/pel/",
  8627. "keywords": [
  8628. "exif",
  8629. "image"
  8630. ],
  8631. "time": "2020-11-07T06:04:18+00:00"
  8632. },
  8633. {
  8634. "name": "masterminds/html5",
  8635. "version": "2.7.4",
  8636. "source": {
  8637. "type": "git",
  8638. "url": "https://github.com/Masterminds/html5-php.git",
  8639. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  8640. },
  8641. "dist": {
  8642. "type": "zip",
  8643. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  8644. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  8645. "shasum": ""
  8646. },
  8647. "require": {
  8648. "ext-ctype": "*",
  8649. "ext-dom": "*",
  8650. "ext-libxml": "*",
  8651. "php": ">=5.3.0"
  8652. },
  8653. "require-dev": {
  8654. "phpunit/phpunit": "^4.8.35"
  8655. },
  8656. "type": "library",
  8657. "extra": {
  8658. "branch-alias": {
  8659. "dev-master": "2.7-dev"
  8660. }
  8661. },
  8662. "autoload": {
  8663. "psr-4": {
  8664. "Masterminds\\": "src"
  8665. }
  8666. },
  8667. "notification-url": "https://packagist.org/downloads/",
  8668. "license": [
  8669. "MIT"
  8670. ],
  8671. "authors": [
  8672. {
  8673. "name": "Matt Butcher",
  8674. "email": "technosophos@gmail.com"
  8675. },
  8676. {
  8677. "name": "Matt Farina",
  8678. "email": "matt@mattfarina.com"
  8679. },
  8680. {
  8681. "name": "Asmir Mustafic",
  8682. "email": "goetas@gmail.com"
  8683. }
  8684. ],
  8685. "description": "An HTML5 parser and serializer.",
  8686. "homepage": "http://masterminds.github.io/html5-php",
  8687. "keywords": [
  8688. "HTML5",
  8689. "dom",
  8690. "html",
  8691. "parser",
  8692. "querypath",
  8693. "serializer",
  8694. "xml"
  8695. ],
  8696. "time": "2020-10-01T13:52:52+00:00"
  8697. },
  8698. {
  8699. "name": "nikic/php-parser",
  8700. "version": "v4.10.3",
  8701. "source": {
  8702. "type": "git",
  8703. "url": "https://github.com/nikic/PHP-Parser.git",
  8704. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  8705. },
  8706. "dist": {
  8707. "type": "zip",
  8708. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  8709. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  8710. "shasum": ""
  8711. },
  8712. "require": {
  8713. "ext-tokenizer": "*",
  8714. "php": ">=7.0"
  8715. },
  8716. "require-dev": {
  8717. "ircmaxell/php-yacc": "^0.0.7",
  8718. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8719. },
  8720. "bin": [
  8721. "bin/php-parse"
  8722. ],
  8723. "type": "library",
  8724. "extra": {
  8725. "branch-alias": {
  8726. "dev-master": "4.9-dev"
  8727. }
  8728. },
  8729. "autoload": {
  8730. "psr-4": {
  8731. "PhpParser\\": "lib/PhpParser"
  8732. }
  8733. },
  8734. "notification-url": "https://packagist.org/downloads/",
  8735. "license": [
  8736. "BSD-3-Clause"
  8737. ],
  8738. "authors": [
  8739. {
  8740. "name": "Nikita Popov"
  8741. }
  8742. ],
  8743. "description": "A PHP parser written in PHP",
  8744. "keywords": [
  8745. "parser",
  8746. "php"
  8747. ],
  8748. "time": "2020-12-03T17:45:45+00:00"
  8749. },
  8750. {
  8751. "name": "pear/archive_tar",
  8752. "version": "1.4.11",
  8753. "source": {
  8754. "type": "git",
  8755. "url": "https://github.com/pear/Archive_Tar.git",
  8756. "reference": "17d355cb7d3c4ff08e5729f29cd7660145208d9d"
  8757. },
  8758. "dist": {
  8759. "type": "zip",
  8760. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/17d355cb7d3c4ff08e5729f29cd7660145208d9d",
  8761. "reference": "17d355cb7d3c4ff08e5729f29cd7660145208d9d",
  8762. "shasum": ""
  8763. },
  8764. "require": {
  8765. "pear/pear-core-minimal": "^1.10.0alpha2",
  8766. "php": ">=5.2.0"
  8767. },
  8768. "require-dev": {
  8769. "phpunit/phpunit": "*"
  8770. },
  8771. "suggest": {
  8772. "ext-bz2": "Bz2 compression support.",
  8773. "ext-xz": "Lzma2 compression support.",
  8774. "ext-zlib": "Gzip compression support."
  8775. },
  8776. "type": "library",
  8777. "extra": {
  8778. "branch-alias": {
  8779. "dev-master": "1.4.x-dev"
  8780. }
  8781. },
  8782. "autoload": {
  8783. "psr-0": {
  8784. "Archive_Tar": ""
  8785. }
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "include-path": [
  8789. "./"
  8790. ],
  8791. "license": [
  8792. "BSD-3-Clause"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Vincent Blavet",
  8797. "email": "vincent@phpconcept.net"
  8798. },
  8799. {
  8800. "name": "Greg Beaver",
  8801. "email": "greg@chiaraquartet.net"
  8802. },
  8803. {
  8804. "name": "Michiel Rook",
  8805. "email": "mrook@php.net"
  8806. }
  8807. ],
  8808. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8809. "homepage": "https://github.com/pear/Archive_Tar",
  8810. "keywords": [
  8811. "archive",
  8812. "tar"
  8813. ],
  8814. "time": "2020-11-19T22:10:24+00:00"
  8815. },
  8816. {
  8817. "name": "pear/console_getopt",
  8818. "version": "v1.4.3",
  8819. "source": {
  8820. "type": "git",
  8821. "url": "https://github.com/pear/Console_Getopt.git",
  8822. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8823. },
  8824. "dist": {
  8825. "type": "zip",
  8826. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8827. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8828. "shasum": ""
  8829. },
  8830. "type": "library",
  8831. "autoload": {
  8832. "psr-0": {
  8833. "Console": "./"
  8834. }
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "include-path": [
  8838. "./"
  8839. ],
  8840. "license": [
  8841. "BSD-2-Clause"
  8842. ],
  8843. "authors": [
  8844. {
  8845. "name": "Andrei Zmievski",
  8846. "email": "andrei@php.net",
  8847. "role": "Lead"
  8848. },
  8849. {
  8850. "name": "Stig Bakken",
  8851. "email": "stig@php.net",
  8852. "role": "Developer"
  8853. },
  8854. {
  8855. "name": "Greg Beaver",
  8856. "email": "cellog@php.net",
  8857. "role": "Helper"
  8858. }
  8859. ],
  8860. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8861. "time": "2019-11-20T18:27:48+00:00"
  8862. },
  8863. {
  8864. "name": "pear/pear-core-minimal",
  8865. "version": "v1.10.10",
  8866. "source": {
  8867. "type": "git",
  8868. "url": "https://github.com/pear/pear-core-minimal.git",
  8869. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  8870. },
  8871. "dist": {
  8872. "type": "zip",
  8873. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  8874. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  8875. "shasum": ""
  8876. },
  8877. "require": {
  8878. "pear/console_getopt": "~1.4",
  8879. "pear/pear_exception": "~1.0"
  8880. },
  8881. "replace": {
  8882. "rsky/pear-core-min": "self.version"
  8883. },
  8884. "type": "library",
  8885. "autoload": {
  8886. "psr-0": {
  8887. "": "src/"
  8888. }
  8889. },
  8890. "notification-url": "https://packagist.org/downloads/",
  8891. "include-path": [
  8892. "src/"
  8893. ],
  8894. "license": [
  8895. "BSD-3-Clause"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Christian Weiske",
  8900. "email": "cweiske@php.net",
  8901. "role": "Lead"
  8902. }
  8903. ],
  8904. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8905. "time": "2019-11-19T19:00:24+00:00"
  8906. },
  8907. {
  8908. "name": "pear/pear_exception",
  8909. "version": "v1.0.1",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/pear/PEAR_Exception.git",
  8913. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  8918. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  8919. "shasum": ""
  8920. },
  8921. "require": {
  8922. "php": ">=4.4.0"
  8923. },
  8924. "require-dev": {
  8925. "phpunit/phpunit": "*"
  8926. },
  8927. "type": "class",
  8928. "extra": {
  8929. "branch-alias": {
  8930. "dev-master": "1.0.x-dev"
  8931. }
  8932. },
  8933. "autoload": {
  8934. "classmap": [
  8935. "PEAR/"
  8936. ]
  8937. },
  8938. "notification-url": "https://packagist.org/downloads/",
  8939. "include-path": [
  8940. "."
  8941. ],
  8942. "license": [
  8943. "BSD-2-Clause"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Helgi Thormar",
  8948. "email": "dufuz@php.net"
  8949. },
  8950. {
  8951. "name": "Greg Beaver",
  8952. "email": "cellog@php.net"
  8953. }
  8954. ],
  8955. "description": "The PEAR Exception base class.",
  8956. "homepage": "https://github.com/pear/PEAR_Exception",
  8957. "keywords": [
  8958. "exception"
  8959. ],
  8960. "time": "2019-12-10T10:24:42+00:00"
  8961. },
  8962. {
  8963. "name": "phenx/php-font-lib",
  8964. "version": "0.5.2",
  8965. "source": {
  8966. "type": "git",
  8967. "url": "https://github.com/PhenX/php-font-lib.git",
  8968. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  8969. },
  8970. "dist": {
  8971. "type": "zip",
  8972. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  8973. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  8974. "shasum": ""
  8975. },
  8976. "require-dev": {
  8977. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  8978. },
  8979. "type": "library",
  8980. "autoload": {
  8981. "psr-4": {
  8982. "FontLib\\": "src/FontLib"
  8983. }
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "LGPL-3.0"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Fabien Ménager",
  8992. "email": "fabien.menager@gmail.com"
  8993. }
  8994. ],
  8995. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8996. "homepage": "https://github.com/PhenX/php-font-lib",
  8997. "time": "2020-03-08T15:31:32+00:00"
  8998. },
  8999. {
  9000. "name": "phpmailer/phpmailer",
  9001. "version": "v6.2.0",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9005. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9010. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "ext-ctype": "*",
  9015. "ext-filter": "*",
  9016. "ext-hash": "*",
  9017. "php": ">=5.5.0"
  9018. },
  9019. "require-dev": {
  9020. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9021. "doctrine/annotations": "^1.2",
  9022. "phpcompatibility/php-compatibility": "^9.3.5",
  9023. "roave/security-advisories": "dev-latest",
  9024. "squizlabs/php_codesniffer": "^3.5.6",
  9025. "yoast/phpunit-polyfills": "^0.2.0"
  9026. },
  9027. "suggest": {
  9028. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9029. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9030. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9031. "psr/log": "For optional PSR-3 debug logging",
  9032. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9033. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9034. },
  9035. "type": "library",
  9036. "autoload": {
  9037. "psr-4": {
  9038. "PHPMailer\\PHPMailer\\": "src/"
  9039. }
  9040. },
  9041. "notification-url": "https://packagist.org/downloads/",
  9042. "license": [
  9043. "LGPL-2.1-only"
  9044. ],
  9045. "authors": [
  9046. {
  9047. "name": "Marcus Bointon",
  9048. "email": "phpmailer@synchromedia.co.uk"
  9049. },
  9050. {
  9051. "name": "Jim Jagielski",
  9052. "email": "jimjag@gmail.com"
  9053. },
  9054. {
  9055. "name": "Andy Prevost",
  9056. "email": "codeworxtech@users.sourceforge.net"
  9057. },
  9058. {
  9059. "name": "Brent R. Matzelle"
  9060. }
  9061. ],
  9062. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9063. "funding": [
  9064. {
  9065. "url": "https://github.com/Synchro",
  9066. "type": "github"
  9067. }
  9068. ],
  9069. "time": "2020-11-25T15:24:57+00:00"
  9070. },
  9071. {
  9072. "name": "psr/container",
  9073. "version": "1.0.0",
  9074. "source": {
  9075. "type": "git",
  9076. "url": "https://github.com/php-fig/container.git",
  9077. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9078. },
  9079. "dist": {
  9080. "type": "zip",
  9081. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9082. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9083. "shasum": ""
  9084. },
  9085. "require": {
  9086. "php": ">=5.3.0"
  9087. },
  9088. "type": "library",
  9089. "extra": {
  9090. "branch-alias": {
  9091. "dev-master": "1.0.x-dev"
  9092. }
  9093. },
  9094. "autoload": {
  9095. "psr-4": {
  9096. "Psr\\Container\\": "src/"
  9097. }
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "MIT"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "PHP-FIG",
  9106. "homepage": "http://www.php-fig.org/"
  9107. }
  9108. ],
  9109. "description": "Common Container Interface (PHP FIG PSR-11)",
  9110. "homepage": "https://github.com/php-fig/container",
  9111. "keywords": [
  9112. "PSR-11",
  9113. "container",
  9114. "container-interface",
  9115. "container-interop",
  9116. "psr"
  9117. ],
  9118. "time": "2017-02-14T16:28:37+00:00"
  9119. },
  9120. {
  9121. "name": "psr/http-factory",
  9122. "version": "1.0.1",
  9123. "source": {
  9124. "type": "git",
  9125. "url": "https://github.com/php-fig/http-factory.git",
  9126. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9127. },
  9128. "dist": {
  9129. "type": "zip",
  9130. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9131. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9132. "shasum": ""
  9133. },
  9134. "require": {
  9135. "php": ">=7.0.0",
  9136. "psr/http-message": "^1.0"
  9137. },
  9138. "type": "library",
  9139. "extra": {
  9140. "branch-alias": {
  9141. "dev-master": "1.0.x-dev"
  9142. }
  9143. },
  9144. "autoload": {
  9145. "psr-4": {
  9146. "Psr\\Http\\Message\\": "src/"
  9147. }
  9148. },
  9149. "notification-url": "https://packagist.org/downloads/",
  9150. "license": [
  9151. "MIT"
  9152. ],
  9153. "authors": [
  9154. {
  9155. "name": "PHP-FIG",
  9156. "homepage": "http://www.php-fig.org/"
  9157. }
  9158. ],
  9159. "description": "Common interfaces for PSR-7 HTTP message factories",
  9160. "keywords": [
  9161. "factory",
  9162. "http",
  9163. "message",
  9164. "psr",
  9165. "psr-17",
  9166. "psr-7",
  9167. "request",
  9168. "response"
  9169. ],
  9170. "time": "2019-04-30T12:38:16+00:00"
  9171. },
  9172. {
  9173. "name": "psr/http-message",
  9174. "version": "1.0.1",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/php-fig/http-message.git",
  9178. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9183. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "php": ">=5.3.0"
  9188. },
  9189. "type": "library",
  9190. "extra": {
  9191. "branch-alias": {
  9192. "dev-master": "1.0.x-dev"
  9193. }
  9194. },
  9195. "autoload": {
  9196. "psr-4": {
  9197. "Psr\\Http\\Message\\": "src/"
  9198. }
  9199. },
  9200. "notification-url": "https://packagist.org/downloads/",
  9201. "license": [
  9202. "MIT"
  9203. ],
  9204. "authors": [
  9205. {
  9206. "name": "PHP-FIG",
  9207. "homepage": "http://www.php-fig.org/"
  9208. }
  9209. ],
  9210. "description": "Common interface for HTTP messages",
  9211. "homepage": "https://github.com/php-fig/http-message",
  9212. "keywords": [
  9213. "http",
  9214. "http-message",
  9215. "psr",
  9216. "psr-7",
  9217. "request",
  9218. "response"
  9219. ],
  9220. "time": "2016-08-06T14:39:51+00:00"
  9221. },
  9222. {
  9223. "name": "psr/log",
  9224. "version": "1.1.3",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/php-fig/log.git",
  9228. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9233. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": ">=5.3.0"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-master": "1.1.x-dev"
  9243. }
  9244. },
  9245. "autoload": {
  9246. "psr-4": {
  9247. "Psr\\Log\\": "Psr/Log/"
  9248. }
  9249. },
  9250. "notification-url": "https://packagist.org/downloads/",
  9251. "license": [
  9252. "MIT"
  9253. ],
  9254. "authors": [
  9255. {
  9256. "name": "PHP-FIG",
  9257. "homepage": "http://www.php-fig.org/"
  9258. }
  9259. ],
  9260. "description": "Common interface for logging libraries",
  9261. "homepage": "https://github.com/php-fig/log",
  9262. "keywords": [
  9263. "log",
  9264. "psr",
  9265. "psr-3"
  9266. ],
  9267. "time": "2020-03-23T09:12:05+00:00"
  9268. },
  9269. {
  9270. "name": "psy/psysh",
  9271. "version": "v0.10.5",
  9272. "source": {
  9273. "type": "git",
  9274. "url": "https://github.com/bobthecow/psysh.git",
  9275. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  9276. },
  9277. "dist": {
  9278. "type": "zip",
  9279. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  9280. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  9281. "shasum": ""
  9282. },
  9283. "require": {
  9284. "dnoegel/php-xdg-base-dir": "0.1.*",
  9285. "ext-json": "*",
  9286. "ext-tokenizer": "*",
  9287. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9288. "php": "^8.0 || ^7.0 || ^5.5.9",
  9289. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9290. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9291. },
  9292. "require-dev": {
  9293. "bamarni/composer-bin-plugin": "^1.2",
  9294. "hoa/console": "3.17.*"
  9295. },
  9296. "suggest": {
  9297. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9298. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9299. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9300. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9301. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9302. },
  9303. "bin": [
  9304. "bin/psysh"
  9305. ],
  9306. "type": "library",
  9307. "extra": {
  9308. "branch-alias": {
  9309. "dev-master": "0.10.x-dev"
  9310. }
  9311. },
  9312. "autoload": {
  9313. "files": [
  9314. "src/functions.php"
  9315. ],
  9316. "psr-4": {
  9317. "Psy\\": "src/"
  9318. }
  9319. },
  9320. "notification-url": "https://packagist.org/downloads/",
  9321. "license": [
  9322. "MIT"
  9323. ],
  9324. "authors": [
  9325. {
  9326. "name": "Justin Hileman",
  9327. "email": "justin@justinhileman.info",
  9328. "homepage": "http://justinhileman.com"
  9329. }
  9330. ],
  9331. "description": "An interactive shell for modern PHP.",
  9332. "homepage": "http://psysh.org",
  9333. "keywords": [
  9334. "REPL",
  9335. "console",
  9336. "interactive",
  9337. "shell"
  9338. ],
  9339. "time": "2020-12-04T02:51:30+00:00"
  9340. },
  9341. {
  9342. "name": "ralouphie/getallheaders",
  9343. "version": "3.0.3",
  9344. "source": {
  9345. "type": "git",
  9346. "url": "https://github.com/ralouphie/getallheaders.git",
  9347. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9348. },
  9349. "dist": {
  9350. "type": "zip",
  9351. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9352. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9353. "shasum": ""
  9354. },
  9355. "require": {
  9356. "php": ">=5.6"
  9357. },
  9358. "require-dev": {
  9359. "php-coveralls/php-coveralls": "^2.1",
  9360. "phpunit/phpunit": "^5 || ^6.5"
  9361. },
  9362. "type": "library",
  9363. "autoload": {
  9364. "files": [
  9365. "src/getallheaders.php"
  9366. ]
  9367. },
  9368. "notification-url": "https://packagist.org/downloads/",
  9369. "license": [
  9370. "MIT"
  9371. ],
  9372. "authors": [
  9373. {
  9374. "name": "Ralph Khattar",
  9375. "email": "ralph.khattar@gmail.com"
  9376. }
  9377. ],
  9378. "description": "A polyfill for getallheaders.",
  9379. "time": "2019-03-08T08:55:37+00:00"
  9380. },
  9381. {
  9382. "name": "stack/builder",
  9383. "version": "v1.0.6",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/stackphp/builder.git",
  9387. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9392. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9393. "shasum": ""
  9394. },
  9395. "require": {
  9396. "php": ">=7.2.0",
  9397. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  9398. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  9399. },
  9400. "require-dev": {
  9401. "phpunit/phpunit": "~8.0",
  9402. "symfony/routing": "^5.0"
  9403. },
  9404. "type": "library",
  9405. "extra": {
  9406. "branch-alias": {
  9407. "dev-master": "1.0-dev"
  9408. }
  9409. },
  9410. "autoload": {
  9411. "psr-0": {
  9412. "Stack": "src"
  9413. }
  9414. },
  9415. "notification-url": "https://packagist.org/downloads/",
  9416. "license": [
  9417. "MIT"
  9418. ],
  9419. "authors": [
  9420. {
  9421. "name": "Igor Wiedler",
  9422. "email": "igor@wiedler.ch"
  9423. }
  9424. ],
  9425. "description": "Builder for stack middleware based on HttpKernelInterface.",
  9426. "keywords": [
  9427. "stack"
  9428. ],
  9429. "time": "2020-01-30T12:17:27+00:00"
  9430. },
  9431. {
  9432. "name": "stecman/symfony-console-completion",
  9433. "version": "0.11.0",
  9434. "source": {
  9435. "type": "git",
  9436. "url": "https://github.com/stecman/symfony-console-completion.git",
  9437. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  9438. },
  9439. "dist": {
  9440. "type": "zip",
  9441. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  9442. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  9443. "shasum": ""
  9444. },
  9445. "require": {
  9446. "php": ">=5.3.2",
  9447. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  9448. },
  9449. "require-dev": {
  9450. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9451. },
  9452. "type": "library",
  9453. "extra": {
  9454. "branch-alias": {
  9455. "dev-master": "0.10.x-dev"
  9456. }
  9457. },
  9458. "autoload": {
  9459. "psr-4": {
  9460. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9461. }
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "MIT"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Stephen Holdaway",
  9470. "email": "stephen@stecman.co.nz"
  9471. }
  9472. ],
  9473. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9474. "time": "2019-11-24T17:03:06+00:00"
  9475. },
  9476. {
  9477. "name": "symfony-cmf/routing",
  9478. "version": "2.3.3",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/symfony-cmf/Routing.git",
  9482. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9487. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "php": "^7.2 || ^8.0",
  9492. "psr/log": "^1.0",
  9493. "symfony/http-kernel": "^4.4 || ^5.0",
  9494. "symfony/routing": "^4.4 || ^5.0"
  9495. },
  9496. "require-dev": {
  9497. "symfony-cmf/testing": "^3@dev",
  9498. "symfony/config": "^4.4 || ^5.0",
  9499. "symfony/dependency-injection": "^4.4 || ^5.0",
  9500. "symfony/event-dispatcher": "^4.4 || ^5.0",
  9501. "symfony/phpunit-bridge": "^5.0"
  9502. },
  9503. "suggest": {
  9504. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  9505. },
  9506. "type": "library",
  9507. "extra": {
  9508. "branch-alias": {
  9509. "dev-master": "2.x-dev"
  9510. }
  9511. },
  9512. "autoload": {
  9513. "psr-4": {
  9514. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  9515. }
  9516. },
  9517. "notification-url": "https://packagist.org/downloads/",
  9518. "license": [
  9519. "MIT"
  9520. ],
  9521. "authors": [
  9522. {
  9523. "name": "Symfony CMF Community",
  9524. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9525. }
  9526. ],
  9527. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  9528. "homepage": "http://cmf.symfony.com",
  9529. "keywords": [
  9530. "database",
  9531. "routing"
  9532. ],
  9533. "time": "2020-10-06T10:15:37+00:00"
  9534. },
  9535. {
  9536. "name": "symfony/config",
  9537. "version": "v4.4.17",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/symfony/config.git",
  9541. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  9546. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "php": ">=7.1.3",
  9551. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9552. "symfony/polyfill-ctype": "~1.8"
  9553. },
  9554. "conflict": {
  9555. "symfony/finder": "<3.4"
  9556. },
  9557. "require-dev": {
  9558. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  9559. "symfony/finder": "^3.4|^4.0|^5.0",
  9560. "symfony/messenger": "^4.1|^5.0",
  9561. "symfony/service-contracts": "^1.1|^2",
  9562. "symfony/yaml": "^3.4|^4.0|^5.0"
  9563. },
  9564. "suggest": {
  9565. "symfony/yaml": "To use the yaml reference dumper"
  9566. },
  9567. "type": "library",
  9568. "autoload": {
  9569. "psr-4": {
  9570. "Symfony\\Component\\Config\\": ""
  9571. },
  9572. "exclude-from-classmap": [
  9573. "/Tests/"
  9574. ]
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "MIT"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Fabien Potencier",
  9583. "email": "fabien@symfony.com"
  9584. },
  9585. {
  9586. "name": "Symfony Community",
  9587. "homepage": "https://symfony.com/contributors"
  9588. }
  9589. ],
  9590. "description": "Symfony Config Component",
  9591. "homepage": "https://symfony.com",
  9592. "funding": [
  9593. {
  9594. "url": "https://symfony.com/sponsor",
  9595. "type": "custom"
  9596. },
  9597. {
  9598. "url": "https://github.com/fabpot",
  9599. "type": "github"
  9600. },
  9601. {
  9602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9603. "type": "tidelift"
  9604. }
  9605. ],
  9606. "time": "2020-11-16T11:15:53+00:00"
  9607. },
  9608. {
  9609. "name": "symfony/console",
  9610. "version": "v4.4.16",
  9611. "source": {
  9612. "type": "git",
  9613. "url": "https://github.com/symfony/console.git",
  9614. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  9615. },
  9616. "dist": {
  9617. "type": "zip",
  9618. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9619. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  9620. "shasum": ""
  9621. },
  9622. "require": {
  9623. "php": ">=7.1.3",
  9624. "symfony/polyfill-mbstring": "~1.0",
  9625. "symfony/polyfill-php73": "^1.8",
  9626. "symfony/polyfill-php80": "^1.15",
  9627. "symfony/service-contracts": "^1.1|^2"
  9628. },
  9629. "conflict": {
  9630. "symfony/dependency-injection": "<3.4",
  9631. "symfony/event-dispatcher": "<4.3|>=5",
  9632. "symfony/lock": "<4.4",
  9633. "symfony/process": "<3.3"
  9634. },
  9635. "provide": {
  9636. "psr/log-implementation": "1.0"
  9637. },
  9638. "require-dev": {
  9639. "psr/log": "~1.0",
  9640. "symfony/config": "^3.4|^4.0|^5.0",
  9641. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9642. "symfony/event-dispatcher": "^4.3",
  9643. "symfony/lock": "^4.4|^5.0",
  9644. "symfony/process": "^3.4|^4.0|^5.0",
  9645. "symfony/var-dumper": "^4.3|^5.0"
  9646. },
  9647. "suggest": {
  9648. "psr/log": "For using the console logger",
  9649. "symfony/event-dispatcher": "",
  9650. "symfony/lock": "",
  9651. "symfony/process": ""
  9652. },
  9653. "type": "library",
  9654. "autoload": {
  9655. "psr-4": {
  9656. "Symfony\\Component\\Console\\": ""
  9657. },
  9658. "exclude-from-classmap": [
  9659. "/Tests/"
  9660. ]
  9661. },
  9662. "notification-url": "https://packagist.org/downloads/",
  9663. "license": [
  9664. "MIT"
  9665. ],
  9666. "authors": [
  9667. {
  9668. "name": "Fabien Potencier",
  9669. "email": "fabien@symfony.com"
  9670. },
  9671. {
  9672. "name": "Symfony Community",
  9673. "homepage": "https://symfony.com/contributors"
  9674. }
  9675. ],
  9676. "description": "Symfony Console Component",
  9677. "homepage": "https://symfony.com",
  9678. "funding": [
  9679. {
  9680. "url": "https://symfony.com/sponsor",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/fabpot",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9689. "type": "tidelift"
  9690. }
  9691. ],
  9692. "time": "2020-10-24T11:50:19+00:00"
  9693. },
  9694. {
  9695. "name": "symfony/css-selector",
  9696. "version": "v4.4.17",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/symfony/css-selector.git",
  9700. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  9705. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "php": ">=7.1.3"
  9710. },
  9711. "type": "library",
  9712. "autoload": {
  9713. "psr-4": {
  9714. "Symfony\\Component\\CssSelector\\": ""
  9715. },
  9716. "exclude-from-classmap": [
  9717. "/Tests/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "MIT"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Fabien Potencier",
  9727. "email": "fabien@symfony.com"
  9728. },
  9729. {
  9730. "name": "Jean-François Simon",
  9731. "email": "jeanfrancois.simon@sensiolabs.com"
  9732. },
  9733. {
  9734. "name": "Symfony Community",
  9735. "homepage": "https://symfony.com/contributors"
  9736. }
  9737. ],
  9738. "description": "Symfony CssSelector Component",
  9739. "homepage": "https://symfony.com",
  9740. "funding": [
  9741. {
  9742. "url": "https://symfony.com/sponsor",
  9743. "type": "custom"
  9744. },
  9745. {
  9746. "url": "https://github.com/fabpot",
  9747. "type": "github"
  9748. },
  9749. {
  9750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9751. "type": "tidelift"
  9752. }
  9753. ],
  9754. "time": "2020-10-28T20:42:29+00:00"
  9755. },
  9756. {
  9757. "name": "symfony/debug",
  9758. "version": "v4.4.16",
  9759. "source": {
  9760. "type": "git",
  9761. "url": "https://github.com/symfony/debug.git",
  9762. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  9763. },
  9764. "dist": {
  9765. "type": "zip",
  9766. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9767. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  9768. "shasum": ""
  9769. },
  9770. "require": {
  9771. "php": ">=7.1.3",
  9772. "psr/log": "~1.0",
  9773. "symfony/polyfill-php80": "^1.15"
  9774. },
  9775. "conflict": {
  9776. "symfony/http-kernel": "<3.4"
  9777. },
  9778. "require-dev": {
  9779. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9780. },
  9781. "type": "library",
  9782. "autoload": {
  9783. "psr-4": {
  9784. "Symfony\\Component\\Debug\\": ""
  9785. },
  9786. "exclude-from-classmap": [
  9787. "/Tests/"
  9788. ]
  9789. },
  9790. "notification-url": "https://packagist.org/downloads/",
  9791. "license": [
  9792. "MIT"
  9793. ],
  9794. "authors": [
  9795. {
  9796. "name": "Fabien Potencier",
  9797. "email": "fabien@symfony.com"
  9798. },
  9799. {
  9800. "name": "Symfony Community",
  9801. "homepage": "https://symfony.com/contributors"
  9802. }
  9803. ],
  9804. "description": "Symfony Debug Component",
  9805. "homepage": "https://symfony.com",
  9806. "funding": [
  9807. {
  9808. "url": "https://symfony.com/sponsor",
  9809. "type": "custom"
  9810. },
  9811. {
  9812. "url": "https://github.com/fabpot",
  9813. "type": "github"
  9814. },
  9815. {
  9816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9817. "type": "tidelift"
  9818. }
  9819. ],
  9820. "time": "2020-10-24T11:50:19+00:00"
  9821. },
  9822. {
  9823. "name": "symfony/dependency-injection",
  9824. "version": "v4.4.16",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/symfony/dependency-injection.git",
  9828. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9833. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  9834. "shasum": ""
  9835. },
  9836. "require": {
  9837. "php": ">=7.1.3",
  9838. "psr/container": "^1.0",
  9839. "symfony/service-contracts": "^1.1.6|^2"
  9840. },
  9841. "conflict": {
  9842. "symfony/config": "<4.3|>=5.0",
  9843. "symfony/finder": "<3.4",
  9844. "symfony/proxy-manager-bridge": "<3.4",
  9845. "symfony/yaml": "<3.4"
  9846. },
  9847. "provide": {
  9848. "psr/container-implementation": "1.0",
  9849. "symfony/service-implementation": "1.0"
  9850. },
  9851. "require-dev": {
  9852. "symfony/config": "^4.3",
  9853. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9854. "symfony/yaml": "^3.4|^4.0|^5.0"
  9855. },
  9856. "suggest": {
  9857. "symfony/config": "",
  9858. "symfony/expression-language": "For using expressions in service container configuration",
  9859. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9860. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9861. "symfony/yaml": ""
  9862. },
  9863. "type": "library",
  9864. "autoload": {
  9865. "psr-4": {
  9866. "Symfony\\Component\\DependencyInjection\\": ""
  9867. },
  9868. "exclude-from-classmap": [
  9869. "/Tests/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "MIT"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Fabien Potencier",
  9879. "email": "fabien@symfony.com"
  9880. },
  9881. {
  9882. "name": "Symfony Community",
  9883. "homepage": "https://symfony.com/contributors"
  9884. }
  9885. ],
  9886. "description": "Symfony DependencyInjection Component",
  9887. "homepage": "https://symfony.com",
  9888. "funding": [
  9889. {
  9890. "url": "https://symfony.com/sponsor",
  9891. "type": "custom"
  9892. },
  9893. {
  9894. "url": "https://github.com/fabpot",
  9895. "type": "github"
  9896. },
  9897. {
  9898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9899. "type": "tidelift"
  9900. }
  9901. ],
  9902. "time": "2020-10-27T10:05:40+00:00"
  9903. },
  9904. {
  9905. "name": "symfony/dom-crawler",
  9906. "version": "v4.4.17",
  9907. "source": {
  9908. "type": "git",
  9909. "url": "https://github.com/symfony/dom-crawler.git",
  9910. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  9911. },
  9912. "dist": {
  9913. "type": "zip",
  9914. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  9915. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  9916. "shasum": ""
  9917. },
  9918. "require": {
  9919. "php": ">=7.1.3",
  9920. "symfony/polyfill-ctype": "~1.8",
  9921. "symfony/polyfill-mbstring": "~1.0"
  9922. },
  9923. "conflict": {
  9924. "masterminds/html5": "<2.6"
  9925. },
  9926. "require-dev": {
  9927. "masterminds/html5": "^2.6",
  9928. "symfony/css-selector": "^3.4|^4.0|^5.0"
  9929. },
  9930. "suggest": {
  9931. "symfony/css-selector": ""
  9932. },
  9933. "type": "library",
  9934. "autoload": {
  9935. "psr-4": {
  9936. "Symfony\\Component\\DomCrawler\\": ""
  9937. },
  9938. "exclude-from-classmap": [
  9939. "/Tests/"
  9940. ]
  9941. },
  9942. "notification-url": "https://packagist.org/downloads/",
  9943. "license": [
  9944. "MIT"
  9945. ],
  9946. "authors": [
  9947. {
  9948. "name": "Fabien Potencier",
  9949. "email": "fabien@symfony.com"
  9950. },
  9951. {
  9952. "name": "Symfony Community",
  9953. "homepage": "https://symfony.com/contributors"
  9954. }
  9955. ],
  9956. "description": "Symfony DomCrawler Component",
  9957. "homepage": "https://symfony.com",
  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": "2020-10-24T11:50:19+00:00"
  9973. },
  9974. {
  9975. "name": "symfony/error-handler",
  9976. "version": "v4.4.16",
  9977. "source": {
  9978. "type": "git",
  9979. "url": "https://github.com/symfony/error-handler.git",
  9980. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  9981. },
  9982. "dist": {
  9983. "type": "zip",
  9984. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  9985. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  9986. "shasum": ""
  9987. },
  9988. "require": {
  9989. "php": ">=7.1.3",
  9990. "psr/log": "~1.0",
  9991. "symfony/debug": "^4.4.5",
  9992. "symfony/polyfill-php80": "^1.15",
  9993. "symfony/var-dumper": "^4.4|^5.0"
  9994. },
  9995. "require-dev": {
  9996. "symfony/http-kernel": "^4.4|^5.0",
  9997. "symfony/serializer": "^4.4|^5.0"
  9998. },
  9999. "type": "library",
  10000. "autoload": {
  10001. "psr-4": {
  10002. "Symfony\\Component\\ErrorHandler\\": ""
  10003. },
  10004. "exclude-from-classmap": [
  10005. "/Tests/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "MIT"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Fabien Potencier",
  10015. "email": "fabien@symfony.com"
  10016. },
  10017. {
  10018. "name": "Symfony Community",
  10019. "homepage": "https://symfony.com/contributors"
  10020. }
  10021. ],
  10022. "description": "Symfony ErrorHandler Component",
  10023. "homepage": "https://symfony.com",
  10024. "funding": [
  10025. {
  10026. "url": "https://symfony.com/sponsor",
  10027. "type": "custom"
  10028. },
  10029. {
  10030. "url": "https://github.com/fabpot",
  10031. "type": "github"
  10032. },
  10033. {
  10034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10035. "type": "tidelift"
  10036. }
  10037. ],
  10038. "time": "2020-10-24T11:50:19+00:00"
  10039. },
  10040. {
  10041. "name": "symfony/event-dispatcher",
  10042. "version": "v4.4.16",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/symfony/event-dispatcher.git",
  10046. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10051. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10052. "shasum": ""
  10053. },
  10054. "require": {
  10055. "php": ">=7.1.3",
  10056. "symfony/event-dispatcher-contracts": "^1.1"
  10057. },
  10058. "conflict": {
  10059. "symfony/dependency-injection": "<3.4"
  10060. },
  10061. "provide": {
  10062. "psr/event-dispatcher-implementation": "1.0",
  10063. "symfony/event-dispatcher-implementation": "1.1"
  10064. },
  10065. "require-dev": {
  10066. "psr/log": "~1.0",
  10067. "symfony/config": "^3.4|^4.0|^5.0",
  10068. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10069. "symfony/error-handler": "~3.4|~4.4",
  10070. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10071. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10072. "symfony/service-contracts": "^1.1|^2",
  10073. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10074. },
  10075. "suggest": {
  10076. "symfony/dependency-injection": "",
  10077. "symfony/http-kernel": ""
  10078. },
  10079. "type": "library",
  10080. "autoload": {
  10081. "psr-4": {
  10082. "Symfony\\Component\\EventDispatcher\\": ""
  10083. },
  10084. "exclude-from-classmap": [
  10085. "/Tests/"
  10086. ]
  10087. },
  10088. "notification-url": "https://packagist.org/downloads/",
  10089. "license": [
  10090. "MIT"
  10091. ],
  10092. "authors": [
  10093. {
  10094. "name": "Fabien Potencier",
  10095. "email": "fabien@symfony.com"
  10096. },
  10097. {
  10098. "name": "Symfony Community",
  10099. "homepage": "https://symfony.com/contributors"
  10100. }
  10101. ],
  10102. "description": "Symfony EventDispatcher Component",
  10103. "homepage": "https://symfony.com",
  10104. "funding": [
  10105. {
  10106. "url": "https://symfony.com/sponsor",
  10107. "type": "custom"
  10108. },
  10109. {
  10110. "url": "https://github.com/fabpot",
  10111. "type": "github"
  10112. },
  10113. {
  10114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10115. "type": "tidelift"
  10116. }
  10117. ],
  10118. "time": "2020-10-24T11:50:19+00:00"
  10119. },
  10120. {
  10121. "name": "symfony/event-dispatcher-contracts",
  10122. "version": "v1.1.9",
  10123. "source": {
  10124. "type": "git",
  10125. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10126. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10127. },
  10128. "dist": {
  10129. "type": "zip",
  10130. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10131. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10132. "shasum": ""
  10133. },
  10134. "require": {
  10135. "php": ">=7.1.3"
  10136. },
  10137. "suggest": {
  10138. "psr/event-dispatcher": "",
  10139. "symfony/event-dispatcher-implementation": ""
  10140. },
  10141. "type": "library",
  10142. "extra": {
  10143. "branch-alias": {
  10144. "dev-master": "1.1-dev"
  10145. },
  10146. "thanks": {
  10147. "name": "symfony/contracts",
  10148. "url": "https://github.com/symfony/contracts"
  10149. }
  10150. },
  10151. "autoload": {
  10152. "psr-4": {
  10153. "Symfony\\Contracts\\EventDispatcher\\": ""
  10154. }
  10155. },
  10156. "notification-url": "https://packagist.org/downloads/",
  10157. "license": [
  10158. "MIT"
  10159. ],
  10160. "authors": [
  10161. {
  10162. "name": "Nicolas Grekas",
  10163. "email": "p@tchwork.com"
  10164. },
  10165. {
  10166. "name": "Symfony Community",
  10167. "homepage": "https://symfony.com/contributors"
  10168. }
  10169. ],
  10170. "description": "Generic abstractions related to dispatching event",
  10171. "homepage": "https://symfony.com",
  10172. "keywords": [
  10173. "abstractions",
  10174. "contracts",
  10175. "decoupling",
  10176. "interfaces",
  10177. "interoperability",
  10178. "standards"
  10179. ],
  10180. "funding": [
  10181. {
  10182. "url": "https://symfony.com/sponsor",
  10183. "type": "custom"
  10184. },
  10185. {
  10186. "url": "https://github.com/fabpot",
  10187. "type": "github"
  10188. },
  10189. {
  10190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10191. "type": "tidelift"
  10192. }
  10193. ],
  10194. "time": "2020-07-06T13:19:58+00:00"
  10195. },
  10196. {
  10197. "name": "symfony/filesystem",
  10198. "version": "v4.4.17",
  10199. "source": {
  10200. "type": "git",
  10201. "url": "https://github.com/symfony/filesystem.git",
  10202. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  10203. },
  10204. "dist": {
  10205. "type": "zip",
  10206. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10207. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10208. "shasum": ""
  10209. },
  10210. "require": {
  10211. "php": ">=7.1.3",
  10212. "symfony/polyfill-ctype": "~1.8"
  10213. },
  10214. "type": "library",
  10215. "autoload": {
  10216. "psr-4": {
  10217. "Symfony\\Component\\Filesystem\\": ""
  10218. },
  10219. "exclude-from-classmap": [
  10220. "/Tests/"
  10221. ]
  10222. },
  10223. "notification-url": "https://packagist.org/downloads/",
  10224. "license": [
  10225. "MIT"
  10226. ],
  10227. "authors": [
  10228. {
  10229. "name": "Fabien Potencier",
  10230. "email": "fabien@symfony.com"
  10231. },
  10232. {
  10233. "name": "Symfony Community",
  10234. "homepage": "https://symfony.com/contributors"
  10235. }
  10236. ],
  10237. "description": "Symfony Filesystem Component",
  10238. "homepage": "https://symfony.com",
  10239. "funding": [
  10240. {
  10241. "url": "https://symfony.com/sponsor",
  10242. "type": "custom"
  10243. },
  10244. {
  10245. "url": "https://github.com/fabpot",
  10246. "type": "github"
  10247. },
  10248. {
  10249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10250. "type": "tidelift"
  10251. }
  10252. ],
  10253. "time": "2020-11-11T22:20:15+00:00"
  10254. },
  10255. {
  10256. "name": "symfony/finder",
  10257. "version": "v4.4.17",
  10258. "source": {
  10259. "type": "git",
  10260. "url": "https://github.com/symfony/finder.git",
  10261. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  10262. },
  10263. "dist": {
  10264. "type": "zip",
  10265. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10266. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10267. "shasum": ""
  10268. },
  10269. "require": {
  10270. "php": ">=7.1.3"
  10271. },
  10272. "type": "library",
  10273. "autoload": {
  10274. "psr-4": {
  10275. "Symfony\\Component\\Finder\\": ""
  10276. },
  10277. "exclude-from-classmap": [
  10278. "/Tests/"
  10279. ]
  10280. },
  10281. "notification-url": "https://packagist.org/downloads/",
  10282. "license": [
  10283. "MIT"
  10284. ],
  10285. "authors": [
  10286. {
  10287. "name": "Fabien Potencier",
  10288. "email": "fabien@symfony.com"
  10289. },
  10290. {
  10291. "name": "Symfony Community",
  10292. "homepage": "https://symfony.com/contributors"
  10293. }
  10294. ],
  10295. "description": "Symfony Finder Component",
  10296. "homepage": "https://symfony.com",
  10297. "funding": [
  10298. {
  10299. "url": "https://symfony.com/sponsor",
  10300. "type": "custom"
  10301. },
  10302. {
  10303. "url": "https://github.com/fabpot",
  10304. "type": "github"
  10305. },
  10306. {
  10307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10308. "type": "tidelift"
  10309. }
  10310. ],
  10311. "time": "2020-11-17T19:45:34+00:00"
  10312. },
  10313. {
  10314. "name": "symfony/http-client-contracts",
  10315. "version": "v2.3.1",
  10316. "source": {
  10317. "type": "git",
  10318. "url": "https://github.com/symfony/http-client-contracts.git",
  10319. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10320. },
  10321. "dist": {
  10322. "type": "zip",
  10323. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10324. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10325. "shasum": ""
  10326. },
  10327. "require": {
  10328. "php": ">=7.2.5"
  10329. },
  10330. "suggest": {
  10331. "symfony/http-client-implementation": ""
  10332. },
  10333. "type": "library",
  10334. "extra": {
  10335. "branch-version": "2.3",
  10336. "branch-alias": {
  10337. "dev-main": "2.3-dev"
  10338. },
  10339. "thanks": {
  10340. "name": "symfony/contracts",
  10341. "url": "https://github.com/symfony/contracts"
  10342. }
  10343. },
  10344. "autoload": {
  10345. "psr-4": {
  10346. "Symfony\\Contracts\\HttpClient\\": ""
  10347. }
  10348. },
  10349. "notification-url": "https://packagist.org/downloads/",
  10350. "license": [
  10351. "MIT"
  10352. ],
  10353. "authors": [
  10354. {
  10355. "name": "Nicolas Grekas",
  10356. "email": "p@tchwork.com"
  10357. },
  10358. {
  10359. "name": "Symfony Community",
  10360. "homepage": "https://symfony.com/contributors"
  10361. }
  10362. ],
  10363. "description": "Generic abstractions related to HTTP clients",
  10364. "homepage": "https://symfony.com",
  10365. "keywords": [
  10366. "abstractions",
  10367. "contracts",
  10368. "decoupling",
  10369. "interfaces",
  10370. "interoperability",
  10371. "standards"
  10372. ],
  10373. "funding": [
  10374. {
  10375. "url": "https://symfony.com/sponsor",
  10376. "type": "custom"
  10377. },
  10378. {
  10379. "url": "https://github.com/fabpot",
  10380. "type": "github"
  10381. },
  10382. {
  10383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10384. "type": "tidelift"
  10385. }
  10386. ],
  10387. "time": "2020-10-14T17:08:19+00:00"
  10388. },
  10389. {
  10390. "name": "symfony/http-foundation",
  10391. "version": "v4.4.16",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/symfony/http-foundation.git",
  10395. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  10400. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "php": ">=7.1.3",
  10405. "symfony/mime": "^4.3|^5.0",
  10406. "symfony/polyfill-mbstring": "~1.1"
  10407. },
  10408. "require-dev": {
  10409. "predis/predis": "~1.0",
  10410. "symfony/expression-language": "^3.4|^4.0|^5.0"
  10411. },
  10412. "type": "library",
  10413. "autoload": {
  10414. "psr-4": {
  10415. "Symfony\\Component\\HttpFoundation\\": ""
  10416. },
  10417. "exclude-from-classmap": [
  10418. "/Tests/"
  10419. ]
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "MIT"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Fabien Potencier",
  10428. "email": "fabien@symfony.com"
  10429. },
  10430. {
  10431. "name": "Symfony Community",
  10432. "homepage": "https://symfony.com/contributors"
  10433. }
  10434. ],
  10435. "description": "Symfony HttpFoundation Component",
  10436. "homepage": "https://symfony.com",
  10437. "funding": [
  10438. {
  10439. "url": "https://symfony.com/sponsor",
  10440. "type": "custom"
  10441. },
  10442. {
  10443. "url": "https://github.com/fabpot",
  10444. "type": "github"
  10445. },
  10446. {
  10447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10448. "type": "tidelift"
  10449. }
  10450. ],
  10451. "time": "2020-10-24T11:50:19+00:00"
  10452. },
  10453. {
  10454. "name": "symfony/http-kernel",
  10455. "version": "v4.4.16",
  10456. "source": {
  10457. "type": "git",
  10458. "url": "https://github.com/symfony/http-kernel.git",
  10459. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  10460. },
  10461. "dist": {
  10462. "type": "zip",
  10463. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10464. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  10465. "shasum": ""
  10466. },
  10467. "require": {
  10468. "php": ">=7.1.3",
  10469. "psr/log": "~1.0",
  10470. "symfony/error-handler": "^4.4",
  10471. "symfony/event-dispatcher": "^4.4",
  10472. "symfony/http-client-contracts": "^1.1|^2",
  10473. "symfony/http-foundation": "^4.4|^5.0",
  10474. "symfony/polyfill-ctype": "^1.8",
  10475. "symfony/polyfill-php73": "^1.9",
  10476. "symfony/polyfill-php80": "^1.15"
  10477. },
  10478. "conflict": {
  10479. "symfony/browser-kit": "<4.3",
  10480. "symfony/config": "<3.4",
  10481. "symfony/console": ">=5",
  10482. "symfony/dependency-injection": "<4.3",
  10483. "symfony/translation": "<4.2",
  10484. "twig/twig": "<1.34|<2.4,>=2"
  10485. },
  10486. "provide": {
  10487. "psr/log-implementation": "1.0"
  10488. },
  10489. "require-dev": {
  10490. "psr/cache": "~1.0",
  10491. "symfony/browser-kit": "^4.3|^5.0",
  10492. "symfony/config": "^3.4|^4.0|^5.0",
  10493. "symfony/console": "^3.4|^4.0",
  10494. "symfony/css-selector": "^3.4|^4.0|^5.0",
  10495. "symfony/dependency-injection": "^4.3|^5.0",
  10496. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  10497. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10498. "symfony/finder": "^3.4|^4.0|^5.0",
  10499. "symfony/process": "^3.4|^4.0|^5.0",
  10500. "symfony/routing": "^3.4|^4.0|^5.0",
  10501. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  10502. "symfony/templating": "^3.4|^4.0|^5.0",
  10503. "symfony/translation": "^4.2|^5.0",
  10504. "symfony/translation-contracts": "^1.1|^2",
  10505. "twig/twig": "^1.34|^2.4|^3.0"
  10506. },
  10507. "suggest": {
  10508. "symfony/browser-kit": "",
  10509. "symfony/config": "",
  10510. "symfony/console": "",
  10511. "symfony/dependency-injection": ""
  10512. },
  10513. "type": "library",
  10514. "autoload": {
  10515. "psr-4": {
  10516. "Symfony\\Component\\HttpKernel\\": ""
  10517. },
  10518. "exclude-from-classmap": [
  10519. "/Tests/"
  10520. ]
  10521. },
  10522. "notification-url": "https://packagist.org/downloads/",
  10523. "license": [
  10524. "MIT"
  10525. ],
  10526. "authors": [
  10527. {
  10528. "name": "Fabien Potencier",
  10529. "email": "fabien@symfony.com"
  10530. },
  10531. {
  10532. "name": "Symfony Community",
  10533. "homepage": "https://symfony.com/contributors"
  10534. }
  10535. ],
  10536. "description": "Symfony HttpKernel Component",
  10537. "homepage": "https://symfony.com",
  10538. "funding": [
  10539. {
  10540. "url": "https://symfony.com/sponsor",
  10541. "type": "custom"
  10542. },
  10543. {
  10544. "url": "https://github.com/fabpot",
  10545. "type": "github"
  10546. },
  10547. {
  10548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10549. "type": "tidelift"
  10550. }
  10551. ],
  10552. "time": "2020-10-28T05:50:56+00:00"
  10553. },
  10554. {
  10555. "name": "symfony/mime",
  10556. "version": "v5.1.8",
  10557. "source": {
  10558. "type": "git",
  10559. "url": "https://github.com/symfony/mime.git",
  10560. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  10561. },
  10562. "dist": {
  10563. "type": "zip",
  10564. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10565. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  10566. "shasum": ""
  10567. },
  10568. "require": {
  10569. "php": ">=7.2.5",
  10570. "symfony/polyfill-intl-idn": "^1.10",
  10571. "symfony/polyfill-mbstring": "^1.0",
  10572. "symfony/polyfill-php80": "^1.15"
  10573. },
  10574. "conflict": {
  10575. "symfony/mailer": "<4.4"
  10576. },
  10577. "require-dev": {
  10578. "egulias/email-validator": "^2.1.10",
  10579. "symfony/dependency-injection": "^4.4|^5.0"
  10580. },
  10581. "type": "library",
  10582. "autoload": {
  10583. "psr-4": {
  10584. "Symfony\\Component\\Mime\\": ""
  10585. },
  10586. "exclude-from-classmap": [
  10587. "/Tests/"
  10588. ]
  10589. },
  10590. "notification-url": "https://packagist.org/downloads/",
  10591. "license": [
  10592. "MIT"
  10593. ],
  10594. "authors": [
  10595. {
  10596. "name": "Fabien Potencier",
  10597. "email": "fabien@symfony.com"
  10598. },
  10599. {
  10600. "name": "Symfony Community",
  10601. "homepage": "https://symfony.com/contributors"
  10602. }
  10603. ],
  10604. "description": "A library to manipulate MIME messages",
  10605. "homepage": "https://symfony.com",
  10606. "keywords": [
  10607. "mime",
  10608. "mime-type"
  10609. ],
  10610. "funding": [
  10611. {
  10612. "url": "https://symfony.com/sponsor",
  10613. "type": "custom"
  10614. },
  10615. {
  10616. "url": "https://github.com/fabpot",
  10617. "type": "github"
  10618. },
  10619. {
  10620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10621. "type": "tidelift"
  10622. }
  10623. ],
  10624. "time": "2020-10-24T12:01:57+00:00"
  10625. },
  10626. {
  10627. "name": "symfony/polyfill-ctype",
  10628. "version": "v1.20.0",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/symfony/polyfill-ctype.git",
  10632. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10637. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "php": ">=7.1"
  10642. },
  10643. "suggest": {
  10644. "ext-ctype": "For best performance"
  10645. },
  10646. "type": "library",
  10647. "extra": {
  10648. "branch-alias": {
  10649. "dev-main": "1.20-dev"
  10650. },
  10651. "thanks": {
  10652. "name": "symfony/polyfill",
  10653. "url": "https://github.com/symfony/polyfill"
  10654. }
  10655. },
  10656. "autoload": {
  10657. "psr-4": {
  10658. "Symfony\\Polyfill\\Ctype\\": ""
  10659. },
  10660. "files": [
  10661. "bootstrap.php"
  10662. ]
  10663. },
  10664. "notification-url": "https://packagist.org/downloads/",
  10665. "license": [
  10666. "MIT"
  10667. ],
  10668. "authors": [
  10669. {
  10670. "name": "Gert de Pagter",
  10671. "email": "BackEndTea@gmail.com"
  10672. },
  10673. {
  10674. "name": "Symfony Community",
  10675. "homepage": "https://symfony.com/contributors"
  10676. }
  10677. ],
  10678. "description": "Symfony polyfill for ctype functions",
  10679. "homepage": "https://symfony.com",
  10680. "keywords": [
  10681. "compatibility",
  10682. "ctype",
  10683. "polyfill",
  10684. "portable"
  10685. ],
  10686. "funding": [
  10687. {
  10688. "url": "https://symfony.com/sponsor",
  10689. "type": "custom"
  10690. },
  10691. {
  10692. "url": "https://github.com/fabpot",
  10693. "type": "github"
  10694. },
  10695. {
  10696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10697. "type": "tidelift"
  10698. }
  10699. ],
  10700. "time": "2020-10-23T14:02:19+00:00"
  10701. },
  10702. {
  10703. "name": "symfony/polyfill-iconv",
  10704. "version": "v1.20.0",
  10705. "source": {
  10706. "type": "git",
  10707. "url": "https://github.com/symfony/polyfill-iconv.git",
  10708. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  10709. },
  10710. "dist": {
  10711. "type": "zip",
  10712. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10713. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  10714. "shasum": ""
  10715. },
  10716. "require": {
  10717. "php": ">=7.1"
  10718. },
  10719. "suggest": {
  10720. "ext-iconv": "For best performance"
  10721. },
  10722. "type": "library",
  10723. "extra": {
  10724. "branch-alias": {
  10725. "dev-main": "1.20-dev"
  10726. },
  10727. "thanks": {
  10728. "name": "symfony/polyfill",
  10729. "url": "https://github.com/symfony/polyfill"
  10730. }
  10731. },
  10732. "autoload": {
  10733. "psr-4": {
  10734. "Symfony\\Polyfill\\Iconv\\": ""
  10735. },
  10736. "files": [
  10737. "bootstrap.php"
  10738. ]
  10739. },
  10740. "notification-url": "https://packagist.org/downloads/",
  10741. "license": [
  10742. "MIT"
  10743. ],
  10744. "authors": [
  10745. {
  10746. "name": "Nicolas Grekas",
  10747. "email": "p@tchwork.com"
  10748. },
  10749. {
  10750. "name": "Symfony Community",
  10751. "homepage": "https://symfony.com/contributors"
  10752. }
  10753. ],
  10754. "description": "Symfony polyfill for the Iconv extension",
  10755. "homepage": "https://symfony.com",
  10756. "keywords": [
  10757. "compatibility",
  10758. "iconv",
  10759. "polyfill",
  10760. "portable",
  10761. "shim"
  10762. ],
  10763. "funding": [
  10764. {
  10765. "url": "https://symfony.com/sponsor",
  10766. "type": "custom"
  10767. },
  10768. {
  10769. "url": "https://github.com/fabpot",
  10770. "type": "github"
  10771. },
  10772. {
  10773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10774. "type": "tidelift"
  10775. }
  10776. ],
  10777. "time": "2020-10-23T14:02:19+00:00"
  10778. },
  10779. {
  10780. "name": "symfony/polyfill-intl-idn",
  10781. "version": "v1.20.0",
  10782. "source": {
  10783. "type": "git",
  10784. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10785. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  10786. },
  10787. "dist": {
  10788. "type": "zip",
  10789. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10790. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  10791. "shasum": ""
  10792. },
  10793. "require": {
  10794. "php": ">=7.1",
  10795. "symfony/polyfill-intl-normalizer": "^1.10",
  10796. "symfony/polyfill-php72": "^1.10"
  10797. },
  10798. "suggest": {
  10799. "ext-intl": "For best performance"
  10800. },
  10801. "type": "library",
  10802. "extra": {
  10803. "branch-alias": {
  10804. "dev-main": "1.20-dev"
  10805. },
  10806. "thanks": {
  10807. "name": "symfony/polyfill",
  10808. "url": "https://github.com/symfony/polyfill"
  10809. }
  10810. },
  10811. "autoload": {
  10812. "psr-4": {
  10813. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10814. },
  10815. "files": [
  10816. "bootstrap.php"
  10817. ]
  10818. },
  10819. "notification-url": "https://packagist.org/downloads/",
  10820. "license": [
  10821. "MIT"
  10822. ],
  10823. "authors": [
  10824. {
  10825. "name": "Laurent Bassin",
  10826. "email": "laurent@bassin.info"
  10827. },
  10828. {
  10829. "name": "Trevor Rowbotham",
  10830. "email": "trevor.rowbotham@pm.me"
  10831. },
  10832. {
  10833. "name": "Symfony Community",
  10834. "homepage": "https://symfony.com/contributors"
  10835. }
  10836. ],
  10837. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10838. "homepage": "https://symfony.com",
  10839. "keywords": [
  10840. "compatibility",
  10841. "idn",
  10842. "intl",
  10843. "polyfill",
  10844. "portable",
  10845. "shim"
  10846. ],
  10847. "funding": [
  10848. {
  10849. "url": "https://symfony.com/sponsor",
  10850. "type": "custom"
  10851. },
  10852. {
  10853. "url": "https://github.com/fabpot",
  10854. "type": "github"
  10855. },
  10856. {
  10857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10858. "type": "tidelift"
  10859. }
  10860. ],
  10861. "time": "2020-10-23T14:02:19+00:00"
  10862. },
  10863. {
  10864. "name": "symfony/polyfill-intl-normalizer",
  10865. "version": "v1.20.0",
  10866. "source": {
  10867. "type": "git",
  10868. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10869. "reference": "727d1096295d807c309fb01a851577302394c897"
  10870. },
  10871. "dist": {
  10872. "type": "zip",
  10873. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  10874. "reference": "727d1096295d807c309fb01a851577302394c897",
  10875. "shasum": ""
  10876. },
  10877. "require": {
  10878. "php": ">=7.1"
  10879. },
  10880. "suggest": {
  10881. "ext-intl": "For best performance"
  10882. },
  10883. "type": "library",
  10884. "extra": {
  10885. "branch-alias": {
  10886. "dev-main": "1.20-dev"
  10887. },
  10888. "thanks": {
  10889. "name": "symfony/polyfill",
  10890. "url": "https://github.com/symfony/polyfill"
  10891. }
  10892. },
  10893. "autoload": {
  10894. "psr-4": {
  10895. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10896. },
  10897. "files": [
  10898. "bootstrap.php"
  10899. ],
  10900. "classmap": [
  10901. "Resources/stubs"
  10902. ]
  10903. },
  10904. "notification-url": "https://packagist.org/downloads/",
  10905. "license": [
  10906. "MIT"
  10907. ],
  10908. "authors": [
  10909. {
  10910. "name": "Nicolas Grekas",
  10911. "email": "p@tchwork.com"
  10912. },
  10913. {
  10914. "name": "Symfony Community",
  10915. "homepage": "https://symfony.com/contributors"
  10916. }
  10917. ],
  10918. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10919. "homepage": "https://symfony.com",
  10920. "keywords": [
  10921. "compatibility",
  10922. "intl",
  10923. "normalizer",
  10924. "polyfill",
  10925. "portable",
  10926. "shim"
  10927. ],
  10928. "funding": [
  10929. {
  10930. "url": "https://symfony.com/sponsor",
  10931. "type": "custom"
  10932. },
  10933. {
  10934. "url": "https://github.com/fabpot",
  10935. "type": "github"
  10936. },
  10937. {
  10938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10939. "type": "tidelift"
  10940. }
  10941. ],
  10942. "time": "2020-10-23T14:02:19+00:00"
  10943. },
  10944. {
  10945. "name": "symfony/polyfill-mbstring",
  10946. "version": "v1.20.0",
  10947. "source": {
  10948. "type": "git",
  10949. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10950. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  10951. },
  10952. "dist": {
  10953. "type": "zip",
  10954. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  10955. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  10956. "shasum": ""
  10957. },
  10958. "require": {
  10959. "php": ">=7.1"
  10960. },
  10961. "suggest": {
  10962. "ext-mbstring": "For best performance"
  10963. },
  10964. "type": "library",
  10965. "extra": {
  10966. "branch-alias": {
  10967. "dev-main": "1.20-dev"
  10968. },
  10969. "thanks": {
  10970. "name": "symfony/polyfill",
  10971. "url": "https://github.com/symfony/polyfill"
  10972. }
  10973. },
  10974. "autoload": {
  10975. "psr-4": {
  10976. "Symfony\\Polyfill\\Mbstring\\": ""
  10977. },
  10978. "files": [
  10979. "bootstrap.php"
  10980. ]
  10981. },
  10982. "notification-url": "https://packagist.org/downloads/",
  10983. "license": [
  10984. "MIT"
  10985. ],
  10986. "authors": [
  10987. {
  10988. "name": "Nicolas Grekas",
  10989. "email": "p@tchwork.com"
  10990. },
  10991. {
  10992. "name": "Symfony Community",
  10993. "homepage": "https://symfony.com/contributors"
  10994. }
  10995. ],
  10996. "description": "Symfony polyfill for the Mbstring extension",
  10997. "homepage": "https://symfony.com",
  10998. "keywords": [
  10999. "compatibility",
  11000. "mbstring",
  11001. "polyfill",
  11002. "portable",
  11003. "shim"
  11004. ],
  11005. "funding": [
  11006. {
  11007. "url": "https://symfony.com/sponsor",
  11008. "type": "custom"
  11009. },
  11010. {
  11011. "url": "https://github.com/fabpot",
  11012. "type": "github"
  11013. },
  11014. {
  11015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11016. "type": "tidelift"
  11017. }
  11018. ],
  11019. "time": "2020-10-23T14:02:19+00:00"
  11020. },
  11021. {
  11022. "name": "symfony/polyfill-php72",
  11023. "version": "v1.20.0",
  11024. "source": {
  11025. "type": "git",
  11026. "url": "https://github.com/symfony/polyfill-php72.git",
  11027. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  11028. },
  11029. "dist": {
  11030. "type": "zip",
  11031. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  11032. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  11033. "shasum": ""
  11034. },
  11035. "require": {
  11036. "php": ">=7.1"
  11037. },
  11038. "type": "library",
  11039. "extra": {
  11040. "branch-alias": {
  11041. "dev-main": "1.20-dev"
  11042. },
  11043. "thanks": {
  11044. "name": "symfony/polyfill",
  11045. "url": "https://github.com/symfony/polyfill"
  11046. }
  11047. },
  11048. "autoload": {
  11049. "psr-4": {
  11050. "Symfony\\Polyfill\\Php72\\": ""
  11051. },
  11052. "files": [
  11053. "bootstrap.php"
  11054. ]
  11055. },
  11056. "notification-url": "https://packagist.org/downloads/",
  11057. "license": [
  11058. "MIT"
  11059. ],
  11060. "authors": [
  11061. {
  11062. "name": "Nicolas Grekas",
  11063. "email": "p@tchwork.com"
  11064. },
  11065. {
  11066. "name": "Symfony Community",
  11067. "homepage": "https://symfony.com/contributors"
  11068. }
  11069. ],
  11070. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11071. "homepage": "https://symfony.com",
  11072. "keywords": [
  11073. "compatibility",
  11074. "polyfill",
  11075. "portable",
  11076. "shim"
  11077. ],
  11078. "funding": [
  11079. {
  11080. "url": "https://symfony.com/sponsor",
  11081. "type": "custom"
  11082. },
  11083. {
  11084. "url": "https://github.com/fabpot",
  11085. "type": "github"
  11086. },
  11087. {
  11088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11089. "type": "tidelift"
  11090. }
  11091. ],
  11092. "time": "2020-10-23T14:02:19+00:00"
  11093. },
  11094. {
  11095. "name": "symfony/polyfill-php73",
  11096. "version": "v1.20.0",
  11097. "source": {
  11098. "type": "git",
  11099. "url": "https://github.com/symfony/polyfill-php73.git",
  11100. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  11101. },
  11102. "dist": {
  11103. "type": "zip",
  11104. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  11105. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  11106. "shasum": ""
  11107. },
  11108. "require": {
  11109. "php": ">=7.1"
  11110. },
  11111. "type": "library",
  11112. "extra": {
  11113. "branch-alias": {
  11114. "dev-main": "1.20-dev"
  11115. },
  11116. "thanks": {
  11117. "name": "symfony/polyfill",
  11118. "url": "https://github.com/symfony/polyfill"
  11119. }
  11120. },
  11121. "autoload": {
  11122. "psr-4": {
  11123. "Symfony\\Polyfill\\Php73\\": ""
  11124. },
  11125. "files": [
  11126. "bootstrap.php"
  11127. ],
  11128. "classmap": [
  11129. "Resources/stubs"
  11130. ]
  11131. },
  11132. "notification-url": "https://packagist.org/downloads/",
  11133. "license": [
  11134. "MIT"
  11135. ],
  11136. "authors": [
  11137. {
  11138. "name": "Nicolas Grekas",
  11139. "email": "p@tchwork.com"
  11140. },
  11141. {
  11142. "name": "Symfony Community",
  11143. "homepage": "https://symfony.com/contributors"
  11144. }
  11145. ],
  11146. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11147. "homepage": "https://symfony.com",
  11148. "keywords": [
  11149. "compatibility",
  11150. "polyfill",
  11151. "portable",
  11152. "shim"
  11153. ],
  11154. "funding": [
  11155. {
  11156. "url": "https://symfony.com/sponsor",
  11157. "type": "custom"
  11158. },
  11159. {
  11160. "url": "https://github.com/fabpot",
  11161. "type": "github"
  11162. },
  11163. {
  11164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11165. "type": "tidelift"
  11166. }
  11167. ],
  11168. "time": "2020-10-23T14:02:19+00:00"
  11169. },
  11170. {
  11171. "name": "symfony/polyfill-php80",
  11172. "version": "v1.20.0",
  11173. "source": {
  11174. "type": "git",
  11175. "url": "https://github.com/symfony/polyfill-php80.git",
  11176. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11177. },
  11178. "dist": {
  11179. "type": "zip",
  11180. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11181. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11182. "shasum": ""
  11183. },
  11184. "require": {
  11185. "php": ">=7.1"
  11186. },
  11187. "type": "library",
  11188. "extra": {
  11189. "branch-alias": {
  11190. "dev-main": "1.20-dev"
  11191. },
  11192. "thanks": {
  11193. "name": "symfony/polyfill",
  11194. "url": "https://github.com/symfony/polyfill"
  11195. }
  11196. },
  11197. "autoload": {
  11198. "psr-4": {
  11199. "Symfony\\Polyfill\\Php80\\": ""
  11200. },
  11201. "files": [
  11202. "bootstrap.php"
  11203. ],
  11204. "classmap": [
  11205. "Resources/stubs"
  11206. ]
  11207. },
  11208. "notification-url": "https://packagist.org/downloads/",
  11209. "license": [
  11210. "MIT"
  11211. ],
  11212. "authors": [
  11213. {
  11214. "name": "Ion Bazan",
  11215. "email": "ion.bazan@gmail.com"
  11216. },
  11217. {
  11218. "name": "Nicolas Grekas",
  11219. "email": "p@tchwork.com"
  11220. },
  11221. {
  11222. "name": "Symfony Community",
  11223. "homepage": "https://symfony.com/contributors"
  11224. }
  11225. ],
  11226. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11227. "homepage": "https://symfony.com",
  11228. "keywords": [
  11229. "compatibility",
  11230. "polyfill",
  11231. "portable",
  11232. "shim"
  11233. ],
  11234. "funding": [
  11235. {
  11236. "url": "https://symfony.com/sponsor",
  11237. "type": "custom"
  11238. },
  11239. {
  11240. "url": "https://github.com/fabpot",
  11241. "type": "github"
  11242. },
  11243. {
  11244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11245. "type": "tidelift"
  11246. }
  11247. ],
  11248. "time": "2020-10-23T14:02:19+00:00"
  11249. },
  11250. {
  11251. "name": "symfony/process",
  11252. "version": "v4.4.16",
  11253. "source": {
  11254. "type": "git",
  11255. "url": "https://github.com/symfony/process.git",
  11256. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11257. },
  11258. "dist": {
  11259. "type": "zip",
  11260. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11261. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11262. "shasum": ""
  11263. },
  11264. "require": {
  11265. "php": ">=7.1.3"
  11266. },
  11267. "type": "library",
  11268. "autoload": {
  11269. "psr-4": {
  11270. "Symfony\\Component\\Process\\": ""
  11271. },
  11272. "exclude-from-classmap": [
  11273. "/Tests/"
  11274. ]
  11275. },
  11276. "notification-url": "https://packagist.org/downloads/",
  11277. "license": [
  11278. "MIT"
  11279. ],
  11280. "authors": [
  11281. {
  11282. "name": "Fabien Potencier",
  11283. "email": "fabien@symfony.com"
  11284. },
  11285. {
  11286. "name": "Symfony Community",
  11287. "homepage": "https://symfony.com/contributors"
  11288. }
  11289. ],
  11290. "description": "Symfony Process Component",
  11291. "homepage": "https://symfony.com",
  11292. "funding": [
  11293. {
  11294. "url": "https://symfony.com/sponsor",
  11295. "type": "custom"
  11296. },
  11297. {
  11298. "url": "https://github.com/fabpot",
  11299. "type": "github"
  11300. },
  11301. {
  11302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11303. "type": "tidelift"
  11304. }
  11305. ],
  11306. "time": "2020-10-24T11:50:19+00:00"
  11307. },
  11308. {
  11309. "name": "symfony/psr-http-message-bridge",
  11310. "version": "v2.0.2",
  11311. "source": {
  11312. "type": "git",
  11313. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11314. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11315. },
  11316. "dist": {
  11317. "type": "zip",
  11318. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11319. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11320. "shasum": ""
  11321. },
  11322. "require": {
  11323. "php": ">=7.1",
  11324. "psr/http-message": "^1.0",
  11325. "symfony/http-foundation": "^4.4 || ^5.0"
  11326. },
  11327. "require-dev": {
  11328. "nyholm/psr7": "^1.1",
  11329. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11330. },
  11331. "suggest": {
  11332. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11333. },
  11334. "type": "symfony-bridge",
  11335. "extra": {
  11336. "branch-alias": {
  11337. "dev-master": "2.0-dev"
  11338. }
  11339. },
  11340. "autoload": {
  11341. "psr-4": {
  11342. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11343. },
  11344. "exclude-from-classmap": [
  11345. "/Tests/"
  11346. ]
  11347. },
  11348. "notification-url": "https://packagist.org/downloads/",
  11349. "license": [
  11350. "MIT"
  11351. ],
  11352. "authors": [
  11353. {
  11354. "name": "Fabien Potencier",
  11355. "email": "fabien@symfony.com"
  11356. },
  11357. {
  11358. "name": "Symfony Community",
  11359. "homepage": "http://symfony.com/contributors"
  11360. }
  11361. ],
  11362. "description": "PSR HTTP message bridge",
  11363. "homepage": "http://symfony.com",
  11364. "keywords": [
  11365. "http",
  11366. "http-message",
  11367. "psr-17",
  11368. "psr-7"
  11369. ],
  11370. "funding": [
  11371. {
  11372. "url": "https://symfony.com/sponsor",
  11373. "type": "custom"
  11374. },
  11375. {
  11376. "url": "https://github.com/fabpot",
  11377. "type": "github"
  11378. },
  11379. {
  11380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11381. "type": "tidelift"
  11382. }
  11383. ],
  11384. "time": "2020-09-29T08:17:46+00:00"
  11385. },
  11386. {
  11387. "name": "symfony/routing",
  11388. "version": "v4.4.16",
  11389. "source": {
  11390. "type": "git",
  11391. "url": "https://github.com/symfony/routing.git",
  11392. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  11393. },
  11394. "dist": {
  11395. "type": "zip",
  11396. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  11397. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  11398. "shasum": ""
  11399. },
  11400. "require": {
  11401. "php": ">=7.1.3"
  11402. },
  11403. "conflict": {
  11404. "symfony/config": "<4.2",
  11405. "symfony/dependency-injection": "<3.4",
  11406. "symfony/yaml": "<3.4"
  11407. },
  11408. "require-dev": {
  11409. "doctrine/annotations": "~1.2",
  11410. "psr/log": "~1.0",
  11411. "symfony/config": "^4.2|^5.0",
  11412. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11413. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11414. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11415. "symfony/yaml": "^3.4|^4.0|^5.0"
  11416. },
  11417. "suggest": {
  11418. "doctrine/annotations": "For using the annotation loader",
  11419. "symfony/config": "For using the all-in-one router or any loader",
  11420. "symfony/expression-language": "For using expression matching",
  11421. "symfony/http-foundation": "For using a Symfony Request object",
  11422. "symfony/yaml": "For using the YAML loader"
  11423. },
  11424. "type": "library",
  11425. "autoload": {
  11426. "psr-4": {
  11427. "Symfony\\Component\\Routing\\": ""
  11428. },
  11429. "exclude-from-classmap": [
  11430. "/Tests/"
  11431. ]
  11432. },
  11433. "notification-url": "https://packagist.org/downloads/",
  11434. "license": [
  11435. "MIT"
  11436. ],
  11437. "authors": [
  11438. {
  11439. "name": "Fabien Potencier",
  11440. "email": "fabien@symfony.com"
  11441. },
  11442. {
  11443. "name": "Symfony Community",
  11444. "homepage": "https://symfony.com/contributors"
  11445. }
  11446. ],
  11447. "description": "Symfony Routing Component",
  11448. "homepage": "https://symfony.com",
  11449. "keywords": [
  11450. "router",
  11451. "routing",
  11452. "uri",
  11453. "url"
  11454. ],
  11455. "funding": [
  11456. {
  11457. "url": "https://symfony.com/sponsor",
  11458. "type": "custom"
  11459. },
  11460. {
  11461. "url": "https://github.com/fabpot",
  11462. "type": "github"
  11463. },
  11464. {
  11465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11466. "type": "tidelift"
  11467. }
  11468. ],
  11469. "time": "2020-10-24T11:50:19+00:00"
  11470. },
  11471. {
  11472. "name": "symfony/serializer",
  11473. "version": "v4.4.16",
  11474. "source": {
  11475. "type": "git",
  11476. "url": "https://github.com/symfony/serializer.git",
  11477. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  11478. },
  11479. "dist": {
  11480. "type": "zip",
  11481. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11482. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  11483. "shasum": ""
  11484. },
  11485. "require": {
  11486. "php": ">=7.1.3",
  11487. "symfony/polyfill-ctype": "~1.8"
  11488. },
  11489. "conflict": {
  11490. "phpdocumentor/type-resolver": "<0.2.1",
  11491. "symfony/dependency-injection": "<3.4",
  11492. "symfony/property-access": "<3.4",
  11493. "symfony/property-info": "<3.4",
  11494. "symfony/yaml": "<3.4"
  11495. },
  11496. "require-dev": {
  11497. "doctrine/annotations": "~1.0",
  11498. "doctrine/cache": "~1.0",
  11499. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  11500. "symfony/cache": "^3.4|^4.0|^5.0",
  11501. "symfony/config": "^3.4|^4.0|^5.0",
  11502. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11503. "symfony/error-handler": "^4.4|^5.0",
  11504. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11505. "symfony/mime": "^4.4|^5.0",
  11506. "symfony/property-access": "^3.4|^4.0|^5.0",
  11507. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  11508. "symfony/validator": "^3.4|^4.0|^5.0",
  11509. "symfony/yaml": "^3.4|^4.0|^5.0"
  11510. },
  11511. "suggest": {
  11512. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11513. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  11514. "psr/cache-implementation": "For using the metadata cache.",
  11515. "symfony/config": "For using the XML mapping loader.",
  11516. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  11517. "symfony/property-access": "For using the ObjectNormalizer.",
  11518. "symfony/property-info": "To deserialize relations.",
  11519. "symfony/yaml": "For using the default YAML mapping loader."
  11520. },
  11521. "type": "library",
  11522. "autoload": {
  11523. "psr-4": {
  11524. "Symfony\\Component\\Serializer\\": ""
  11525. },
  11526. "exclude-from-classmap": [
  11527. "/Tests/"
  11528. ]
  11529. },
  11530. "notification-url": "https://packagist.org/downloads/",
  11531. "license": [
  11532. "MIT"
  11533. ],
  11534. "authors": [
  11535. {
  11536. "name": "Fabien Potencier",
  11537. "email": "fabien@symfony.com"
  11538. },
  11539. {
  11540. "name": "Symfony Community",
  11541. "homepage": "https://symfony.com/contributors"
  11542. }
  11543. ],
  11544. "description": "Symfony Serializer Component",
  11545. "homepage": "https://symfony.com",
  11546. "funding": [
  11547. {
  11548. "url": "https://symfony.com/sponsor",
  11549. "type": "custom"
  11550. },
  11551. {
  11552. "url": "https://github.com/fabpot",
  11553. "type": "github"
  11554. },
  11555. {
  11556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11557. "type": "tidelift"
  11558. }
  11559. ],
  11560. "time": "2020-10-24T11:50:19+00:00"
  11561. },
  11562. {
  11563. "name": "symfony/service-contracts",
  11564. "version": "v2.2.0",
  11565. "source": {
  11566. "type": "git",
  11567. "url": "https://github.com/symfony/service-contracts.git",
  11568. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  11569. },
  11570. "dist": {
  11571. "type": "zip",
  11572. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11573. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  11574. "shasum": ""
  11575. },
  11576. "require": {
  11577. "php": ">=7.2.5",
  11578. "psr/container": "^1.0"
  11579. },
  11580. "suggest": {
  11581. "symfony/service-implementation": ""
  11582. },
  11583. "type": "library",
  11584. "extra": {
  11585. "branch-alias": {
  11586. "dev-master": "2.2-dev"
  11587. },
  11588. "thanks": {
  11589. "name": "symfony/contracts",
  11590. "url": "https://github.com/symfony/contracts"
  11591. }
  11592. },
  11593. "autoload": {
  11594. "psr-4": {
  11595. "Symfony\\Contracts\\Service\\": ""
  11596. }
  11597. },
  11598. "notification-url": "https://packagist.org/downloads/",
  11599. "license": [
  11600. "MIT"
  11601. ],
  11602. "authors": [
  11603. {
  11604. "name": "Nicolas Grekas",
  11605. "email": "p@tchwork.com"
  11606. },
  11607. {
  11608. "name": "Symfony Community",
  11609. "homepage": "https://symfony.com/contributors"
  11610. }
  11611. ],
  11612. "description": "Generic abstractions related to writing services",
  11613. "homepage": "https://symfony.com",
  11614. "keywords": [
  11615. "abstractions",
  11616. "contracts",
  11617. "decoupling",
  11618. "interfaces",
  11619. "interoperability",
  11620. "standards"
  11621. ],
  11622. "funding": [
  11623. {
  11624. "url": "https://symfony.com/sponsor",
  11625. "type": "custom"
  11626. },
  11627. {
  11628. "url": "https://github.com/fabpot",
  11629. "type": "github"
  11630. },
  11631. {
  11632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11633. "type": "tidelift"
  11634. }
  11635. ],
  11636. "time": "2020-09-07T11:33:47+00:00"
  11637. },
  11638. {
  11639. "name": "symfony/translation",
  11640. "version": "v4.4.16",
  11641. "source": {
  11642. "type": "git",
  11643. "url": "https://github.com/symfony/translation.git",
  11644. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  11645. },
  11646. "dist": {
  11647. "type": "zip",
  11648. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  11649. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  11650. "shasum": ""
  11651. },
  11652. "require": {
  11653. "php": ">=7.1.3",
  11654. "symfony/polyfill-mbstring": "~1.0",
  11655. "symfony/translation-contracts": "^1.1.6|^2"
  11656. },
  11657. "conflict": {
  11658. "symfony/config": "<3.4",
  11659. "symfony/dependency-injection": "<3.4",
  11660. "symfony/http-kernel": "<4.4",
  11661. "symfony/yaml": "<3.4"
  11662. },
  11663. "provide": {
  11664. "symfony/translation-implementation": "1.0"
  11665. },
  11666. "require-dev": {
  11667. "psr/log": "~1.0",
  11668. "symfony/config": "^3.4|^4.0|^5.0",
  11669. "symfony/console": "^3.4|^4.0|^5.0",
  11670. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11671. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  11672. "symfony/http-kernel": "^4.4",
  11673. "symfony/intl": "^3.4|^4.0|^5.0",
  11674. "symfony/service-contracts": "^1.1.2|^2",
  11675. "symfony/yaml": "^3.4|^4.0|^5.0"
  11676. },
  11677. "suggest": {
  11678. "psr/log-implementation": "To use logging capability in translator",
  11679. "symfony/config": "",
  11680. "symfony/yaml": ""
  11681. },
  11682. "type": "library",
  11683. "autoload": {
  11684. "psr-4": {
  11685. "Symfony\\Component\\Translation\\": ""
  11686. },
  11687. "exclude-from-classmap": [
  11688. "/Tests/"
  11689. ]
  11690. },
  11691. "notification-url": "https://packagist.org/downloads/",
  11692. "license": [
  11693. "MIT"
  11694. ],
  11695. "authors": [
  11696. {
  11697. "name": "Fabien Potencier",
  11698. "email": "fabien@symfony.com"
  11699. },
  11700. {
  11701. "name": "Symfony Community",
  11702. "homepage": "https://symfony.com/contributors"
  11703. }
  11704. ],
  11705. "description": "Symfony Translation Component",
  11706. "homepage": "https://symfony.com",
  11707. "funding": [
  11708. {
  11709. "url": "https://symfony.com/sponsor",
  11710. "type": "custom"
  11711. },
  11712. {
  11713. "url": "https://github.com/fabpot",
  11714. "type": "github"
  11715. },
  11716. {
  11717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11718. "type": "tidelift"
  11719. }
  11720. ],
  11721. "time": "2020-10-24T11:50:19+00:00"
  11722. },
  11723. {
  11724. "name": "symfony/translation-contracts",
  11725. "version": "v2.3.0",
  11726. "source": {
  11727. "type": "git",
  11728. "url": "https://github.com/symfony/translation-contracts.git",
  11729. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  11730. },
  11731. "dist": {
  11732. "type": "zip",
  11733. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11734. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  11735. "shasum": ""
  11736. },
  11737. "require": {
  11738. "php": ">=7.2.5"
  11739. },
  11740. "suggest": {
  11741. "symfony/translation-implementation": ""
  11742. },
  11743. "type": "library",
  11744. "extra": {
  11745. "branch-alias": {
  11746. "dev-master": "2.3-dev"
  11747. },
  11748. "thanks": {
  11749. "name": "symfony/contracts",
  11750. "url": "https://github.com/symfony/contracts"
  11751. }
  11752. },
  11753. "autoload": {
  11754. "psr-4": {
  11755. "Symfony\\Contracts\\Translation\\": ""
  11756. }
  11757. },
  11758. "notification-url": "https://packagist.org/downloads/",
  11759. "license": [
  11760. "MIT"
  11761. ],
  11762. "authors": [
  11763. {
  11764. "name": "Nicolas Grekas",
  11765. "email": "p@tchwork.com"
  11766. },
  11767. {
  11768. "name": "Symfony Community",
  11769. "homepage": "https://symfony.com/contributors"
  11770. }
  11771. ],
  11772. "description": "Generic abstractions related to translation",
  11773. "homepage": "https://symfony.com",
  11774. "keywords": [
  11775. "abstractions",
  11776. "contracts",
  11777. "decoupling",
  11778. "interfaces",
  11779. "interoperability",
  11780. "standards"
  11781. ],
  11782. "funding": [
  11783. {
  11784. "url": "https://symfony.com/sponsor",
  11785. "type": "custom"
  11786. },
  11787. {
  11788. "url": "https://github.com/fabpot",
  11789. "type": "github"
  11790. },
  11791. {
  11792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11793. "type": "tidelift"
  11794. }
  11795. ],
  11796. "time": "2020-09-28T13:05:58+00:00"
  11797. },
  11798. {
  11799. "name": "symfony/validator",
  11800. "version": "v4.4.16",
  11801. "source": {
  11802. "type": "git",
  11803. "url": "https://github.com/symfony/validator.git",
  11804. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  11805. },
  11806. "dist": {
  11807. "type": "zip",
  11808. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11809. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  11810. "shasum": ""
  11811. },
  11812. "require": {
  11813. "php": ">=7.1.3",
  11814. "symfony/polyfill-ctype": "~1.8",
  11815. "symfony/polyfill-mbstring": "~1.0",
  11816. "symfony/translation-contracts": "^1.1|^2"
  11817. },
  11818. "conflict": {
  11819. "doctrine/lexer": "<1.0.2",
  11820. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  11821. "symfony/dependency-injection": "<3.4",
  11822. "symfony/http-kernel": "<4.4",
  11823. "symfony/intl": "<4.3",
  11824. "symfony/translation": ">=5.0",
  11825. "symfony/yaml": "<3.4"
  11826. },
  11827. "require-dev": {
  11828. "doctrine/annotations": "~1.7",
  11829. "doctrine/cache": "~1.0",
  11830. "egulias/email-validator": "^2.1.10",
  11831. "symfony/cache": "^3.4|^4.0|^5.0",
  11832. "symfony/config": "^3.4|^4.0|^5.0",
  11833. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11834. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11835. "symfony/http-client": "^4.3|^5.0",
  11836. "symfony/http-foundation": "^4.1|^5.0",
  11837. "symfony/http-kernel": "^4.4",
  11838. "symfony/intl": "^4.3|^5.0",
  11839. "symfony/mime": "^4.4|^5.0",
  11840. "symfony/property-access": "^3.4|^4.0|^5.0",
  11841. "symfony/property-info": "^3.4|^4.0|^5.0",
  11842. "symfony/translation": "^4.2",
  11843. "symfony/yaml": "^3.4|^4.0|^5.0"
  11844. },
  11845. "suggest": {
  11846. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  11847. "doctrine/cache": "For using the default cached annotation reader.",
  11848. "egulias/email-validator": "Strict (RFC compliant) email validation",
  11849. "psr/cache-implementation": "For using the mapping cache.",
  11850. "symfony/config": "",
  11851. "symfony/expression-language": "For using the Expression validator",
  11852. "symfony/http-foundation": "",
  11853. "symfony/intl": "",
  11854. "symfony/property-access": "For accessing properties within comparison constraints",
  11855. "symfony/property-info": "To automatically add NotNull and Type constraints",
  11856. "symfony/translation": "For translating validation errors.",
  11857. "symfony/yaml": ""
  11858. },
  11859. "type": "library",
  11860. "autoload": {
  11861. "psr-4": {
  11862. "Symfony\\Component\\Validator\\": ""
  11863. },
  11864. "exclude-from-classmap": [
  11865. "/Tests/"
  11866. ]
  11867. },
  11868. "notification-url": "https://packagist.org/downloads/",
  11869. "license": [
  11870. "MIT"
  11871. ],
  11872. "authors": [
  11873. {
  11874. "name": "Fabien Potencier",
  11875. "email": "fabien@symfony.com"
  11876. },
  11877. {
  11878. "name": "Symfony Community",
  11879. "homepage": "https://symfony.com/contributors"
  11880. }
  11881. ],
  11882. "description": "Symfony Validator Component",
  11883. "homepage": "https://symfony.com",
  11884. "funding": [
  11885. {
  11886. "url": "https://symfony.com/sponsor",
  11887. "type": "custom"
  11888. },
  11889. {
  11890. "url": "https://github.com/fabpot",
  11891. "type": "github"
  11892. },
  11893. {
  11894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11895. "type": "tidelift"
  11896. }
  11897. ],
  11898. "time": "2020-10-28T05:25:24+00:00"
  11899. },
  11900. {
  11901. "name": "symfony/var-dumper",
  11902. "version": "v5.1.8",
  11903. "source": {
  11904. "type": "git",
  11905. "url": "https://github.com/symfony/var-dumper.git",
  11906. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  11907. },
  11908. "dist": {
  11909. "type": "zip",
  11910. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11911. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  11912. "shasum": ""
  11913. },
  11914. "require": {
  11915. "php": ">=7.2.5",
  11916. "symfony/polyfill-mbstring": "~1.0",
  11917. "symfony/polyfill-php80": "^1.15"
  11918. },
  11919. "conflict": {
  11920. "phpunit/phpunit": "<5.4.3",
  11921. "symfony/console": "<4.4"
  11922. },
  11923. "require-dev": {
  11924. "ext-iconv": "*",
  11925. "symfony/console": "^4.4|^5.0",
  11926. "symfony/process": "^4.4|^5.0",
  11927. "twig/twig": "^2.4|^3.0"
  11928. },
  11929. "suggest": {
  11930. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  11931. "ext-intl": "To show region name in time zone dump",
  11932. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  11933. },
  11934. "bin": [
  11935. "Resources/bin/var-dump-server"
  11936. ],
  11937. "type": "library",
  11938. "autoload": {
  11939. "files": [
  11940. "Resources/functions/dump.php"
  11941. ],
  11942. "psr-4": {
  11943. "Symfony\\Component\\VarDumper\\": ""
  11944. },
  11945. "exclude-from-classmap": [
  11946. "/Tests/"
  11947. ]
  11948. },
  11949. "notification-url": "https://packagist.org/downloads/",
  11950. "license": [
  11951. "MIT"
  11952. ],
  11953. "authors": [
  11954. {
  11955. "name": "Nicolas Grekas",
  11956. "email": "p@tchwork.com"
  11957. },
  11958. {
  11959. "name": "Symfony Community",
  11960. "homepage": "https://symfony.com/contributors"
  11961. }
  11962. ],
  11963. "description": "Symfony mechanism for exploring and dumping PHP variables",
  11964. "homepage": "https://symfony.com",
  11965. "keywords": [
  11966. "debug",
  11967. "dump"
  11968. ],
  11969. "funding": [
  11970. {
  11971. "url": "https://symfony.com/sponsor",
  11972. "type": "custom"
  11973. },
  11974. {
  11975. "url": "https://github.com/fabpot",
  11976. "type": "github"
  11977. },
  11978. {
  11979. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11980. "type": "tidelift"
  11981. }
  11982. ],
  11983. "time": "2020-10-27T10:11:13+00:00"
  11984. },
  11985. {
  11986. "name": "symfony/yaml",
  11987. "version": "v4.4.16",
  11988. "source": {
  11989. "type": "git",
  11990. "url": "https://github.com/symfony/yaml.git",
  11991. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  11992. },
  11993. "dist": {
  11994. "type": "zip",
  11995. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  11996. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  11997. "shasum": ""
  11998. },
  11999. "require": {
  12000. "php": ">=7.1.3",
  12001. "symfony/polyfill-ctype": "~1.8"
  12002. },
  12003. "conflict": {
  12004. "symfony/console": "<3.4"
  12005. },
  12006. "require-dev": {
  12007. "symfony/console": "^3.4|^4.0|^5.0"
  12008. },
  12009. "suggest": {
  12010. "symfony/console": "For validating YAML files using the lint command"
  12011. },
  12012. "type": "library",
  12013. "autoload": {
  12014. "psr-4": {
  12015. "Symfony\\Component\\Yaml\\": ""
  12016. },
  12017. "exclude-from-classmap": [
  12018. "/Tests/"
  12019. ]
  12020. },
  12021. "notification-url": "https://packagist.org/downloads/",
  12022. "license": [
  12023. "MIT"
  12024. ],
  12025. "authors": [
  12026. {
  12027. "name": "Fabien Potencier",
  12028. "email": "fabien@symfony.com"
  12029. },
  12030. {
  12031. "name": "Symfony Community",
  12032. "homepage": "https://symfony.com/contributors"
  12033. }
  12034. ],
  12035. "description": "Symfony Yaml Component",
  12036. "homepage": "https://symfony.com",
  12037. "funding": [
  12038. {
  12039. "url": "https://symfony.com/sponsor",
  12040. "type": "custom"
  12041. },
  12042. {
  12043. "url": "https://github.com/fabpot",
  12044. "type": "github"
  12045. },
  12046. {
  12047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12048. "type": "tidelift"
  12049. }
  12050. ],
  12051. "time": "2020-10-24T11:50:19+00:00"
  12052. },
  12053. {
  12054. "name": "twig/twig",
  12055. "version": "v2.14.1",
  12056. "source": {
  12057. "type": "git",
  12058. "url": "https://github.com/twigphp/Twig.git",
  12059. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12060. },
  12061. "dist": {
  12062. "type": "zip",
  12063. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12064. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12065. "shasum": ""
  12066. },
  12067. "require": {
  12068. "php": ">=7.2.5",
  12069. "symfony/polyfill-ctype": "^1.8",
  12070. "symfony/polyfill-mbstring": "^1.3"
  12071. },
  12072. "require-dev": {
  12073. "psr/container": "^1.0",
  12074. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12075. },
  12076. "type": "library",
  12077. "extra": {
  12078. "branch-alias": {
  12079. "dev-master": "2.14-dev"
  12080. }
  12081. },
  12082. "autoload": {
  12083. "psr-0": {
  12084. "Twig_": "lib/"
  12085. },
  12086. "psr-4": {
  12087. "Twig\\": "src/"
  12088. }
  12089. },
  12090. "notification-url": "https://packagist.org/downloads/",
  12091. "license": [
  12092. "BSD-3-Clause"
  12093. ],
  12094. "authors": [
  12095. {
  12096. "name": "Fabien Potencier",
  12097. "email": "fabien@symfony.com",
  12098. "homepage": "http://fabien.potencier.org",
  12099. "role": "Lead Developer"
  12100. },
  12101. {
  12102. "name": "Twig Team",
  12103. "role": "Contributors"
  12104. },
  12105. {
  12106. "name": "Armin Ronacher",
  12107. "email": "armin.ronacher@active-4.com",
  12108. "role": "Project Founder"
  12109. }
  12110. ],
  12111. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12112. "homepage": "https://twig.symfony.com",
  12113. "keywords": [
  12114. "templating"
  12115. ],
  12116. "funding": [
  12117. {
  12118. "url": "https://github.com/fabpot",
  12119. "type": "github"
  12120. },
  12121. {
  12122. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12123. "type": "tidelift"
  12124. }
  12125. ],
  12126. "time": "2020-10-27T19:25:29+00:00"
  12127. },
  12128. {
  12129. "name": "typo3/phar-stream-wrapper",
  12130. "version": "v3.1.6",
  12131. "source": {
  12132. "type": "git",
  12133. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12134. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12135. },
  12136. "dist": {
  12137. "type": "zip",
  12138. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12139. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12140. "shasum": ""
  12141. },
  12142. "require": {
  12143. "ext-json": "*",
  12144. "php": "^7.0 || ^8.0"
  12145. },
  12146. "require-dev": {
  12147. "ext-xdebug": "*",
  12148. "phpspec/prophecy": "^1.10",
  12149. "symfony/phpunit-bridge": "^5.1"
  12150. },
  12151. "suggest": {
  12152. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12153. },
  12154. "type": "library",
  12155. "extra": {
  12156. "branch-alias": {
  12157. "dev-master": "v3.x-dev"
  12158. }
  12159. },
  12160. "autoload": {
  12161. "psr-4": {
  12162. "TYPO3\\PharStreamWrapper\\": "src/"
  12163. }
  12164. },
  12165. "notification-url": "https://packagist.org/downloads/",
  12166. "license": [
  12167. "MIT"
  12168. ],
  12169. "description": "Interceptors for PHP's native phar:// stream handling",
  12170. "homepage": "https://typo3.org/",
  12171. "keywords": [
  12172. "phar",
  12173. "php",
  12174. "security",
  12175. "stream-wrapper"
  12176. ],
  12177. "time": "2020-11-07T09:06:16+00:00"
  12178. },
  12179. {
  12180. "name": "webflo/drupal-finder",
  12181. "version": "1.2.2",
  12182. "source": {
  12183. "type": "git",
  12184. "url": "https://github.com/webflo/drupal-finder.git",
  12185. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12186. },
  12187. "dist": {
  12188. "type": "zip",
  12189. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12190. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12191. "shasum": ""
  12192. },
  12193. "require": {
  12194. "ext-json": "*"
  12195. },
  12196. "require-dev": {
  12197. "mikey179/vfsstream": "^1.6",
  12198. "phpunit/phpunit": "^4.8"
  12199. },
  12200. "type": "library",
  12201. "autoload": {
  12202. "classmap": [
  12203. "src/DrupalFinder.php"
  12204. ]
  12205. },
  12206. "notification-url": "https://packagist.org/downloads/",
  12207. "license": [
  12208. "GPL-2.0-or-later"
  12209. ],
  12210. "authors": [
  12211. {
  12212. "name": "Florian Weber",
  12213. "email": "florian@webflo.org"
  12214. }
  12215. ],
  12216. "description": "Helper class to locate a Drupal installation from a given path.",
  12217. "time": "2020-10-27T09:42:17+00:00"
  12218. },
  12219. {
  12220. "name": "webmozart/assert",
  12221. "version": "1.9.1",
  12222. "source": {
  12223. "type": "git",
  12224. "url": "https://github.com/webmozart/assert.git",
  12225. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  12226. },
  12227. "dist": {
  12228. "type": "zip",
  12229. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12230. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12231. "shasum": ""
  12232. },
  12233. "require": {
  12234. "php": "^5.3.3 || ^7.0 || ^8.0",
  12235. "symfony/polyfill-ctype": "^1.8"
  12236. },
  12237. "conflict": {
  12238. "phpstan/phpstan": "<0.12.20",
  12239. "vimeo/psalm": "<3.9.1"
  12240. },
  12241. "require-dev": {
  12242. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  12243. },
  12244. "type": "library",
  12245. "autoload": {
  12246. "psr-4": {
  12247. "Webmozart\\Assert\\": "src/"
  12248. }
  12249. },
  12250. "notification-url": "https://packagist.org/downloads/",
  12251. "license": [
  12252. "MIT"
  12253. ],
  12254. "authors": [
  12255. {
  12256. "name": "Bernhard Schussek",
  12257. "email": "bschussek@gmail.com"
  12258. }
  12259. ],
  12260. "description": "Assertions to validate method input/output with nice error messages.",
  12261. "keywords": [
  12262. "assert",
  12263. "check",
  12264. "validate"
  12265. ],
  12266. "time": "2020-07-08T17:02:28+00:00"
  12267. },
  12268. {
  12269. "name": "webmozart/path-util",
  12270. "version": "2.3.0",
  12271. "source": {
  12272. "type": "git",
  12273. "url": "https://github.com/webmozart/path-util.git",
  12274. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12275. },
  12276. "dist": {
  12277. "type": "zip",
  12278. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12279. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12280. "shasum": ""
  12281. },
  12282. "require": {
  12283. "php": ">=5.3.3",
  12284. "webmozart/assert": "~1.0"
  12285. },
  12286. "require-dev": {
  12287. "phpunit/phpunit": "^4.6",
  12288. "sebastian/version": "^1.0.1"
  12289. },
  12290. "type": "library",
  12291. "extra": {
  12292. "branch-alias": {
  12293. "dev-master": "2.3-dev"
  12294. }
  12295. },
  12296. "autoload": {
  12297. "psr-4": {
  12298. "Webmozart\\PathUtil\\": "src/"
  12299. }
  12300. },
  12301. "notification-url": "https://packagist.org/downloads/",
  12302. "license": [
  12303. "MIT"
  12304. ],
  12305. "authors": [
  12306. {
  12307. "name": "Bernhard Schussek",
  12308. "email": "bschussek@gmail.com"
  12309. }
  12310. ],
  12311. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12312. "time": "2015-12-17T08:42:14+00:00"
  12313. },
  12314. {
  12315. "name": "wikimedia/composer-merge-plugin",
  12316. "version": "v1.4.1",
  12317. "source": {
  12318. "type": "git",
  12319. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12320. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  12321. },
  12322. "dist": {
  12323. "type": "zip",
  12324. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12325. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12326. "shasum": ""
  12327. },
  12328. "require": {
  12329. "composer-plugin-api": "^1.0",
  12330. "php": ">=5.3.2"
  12331. },
  12332. "require-dev": {
  12333. "composer/composer": "~1.0.0",
  12334. "jakub-onderka/php-parallel-lint": "~0.8",
  12335. "phpunit/phpunit": "~4.8|~5.0",
  12336. "squizlabs/php_codesniffer": "~2.1.0"
  12337. },
  12338. "type": "composer-plugin",
  12339. "extra": {
  12340. "branch-alias": {
  12341. "dev-master": "1.3.x-dev"
  12342. },
  12343. "class": "Wikimedia\\Composer\\MergePlugin"
  12344. },
  12345. "autoload": {
  12346. "psr-4": {
  12347. "Wikimedia\\Composer\\": "src/"
  12348. }
  12349. },
  12350. "notification-url": "https://packagist.org/downloads/",
  12351. "license": [
  12352. "MIT"
  12353. ],
  12354. "authors": [
  12355. {
  12356. "name": "Bryan Davis",
  12357. "email": "bd808@wikimedia.org"
  12358. }
  12359. ],
  12360. "description": "Composer plugin to merge multiple composer.json files",
  12361. "time": "2017-04-25T02:31:25+00:00"
  12362. }
  12363. ],
  12364. "packages-dev": [],
  12365. "aliases": [],
  12366. "minimum-stability": "stable",
  12367. "stability-flags": {
  12368. "drupal/autocomplete_deluxe": 5,
  12369. "drupal/better_exposed_filters": 10,
  12370. "drupal/bulkdelete": 20,
  12371. "drupal/cshs": 20,
  12372. "drupal/config_ignore": 5,
  12373. "drupal/config_devel": 20,
  12374. "drupal/context": 10,
  12375. "drupal/date_range_formatter": 20,
  12376. "drupal/domain": 20,
  12377. "drupal/domain_alias": 20,
  12378. "drupal/domain_config": 20,
  12379. "drupal/domain_site_settings": 20,
  12380. "drupal/email_registration": 5,
  12381. "drupal/entity_browser_enhanced": 5,
  12382. "drupal/entity_clone": 15,
  12383. "drupal/filefield_sources": 20,
  12384. "drupal/filter_perms": 20,
  12385. "drupal/inline_entity_form": 5,
  12386. "drupal/linkit": 10,
  12387. "drupal/login_destination": 20,
  12388. "drupal/maillog": 20,
  12389. "drupal/maxlength": 10,
  12390. "drupal/menu_block": 20,
  12391. "drupal/menu_position": 20,
  12392. "drupal/path_alias_xt": 20,
  12393. "drupal/pathologic": 15,
  12394. "drupal/profile": 5,
  12395. "drupal/smtp": 10,
  12396. "drupal/synonyms": 20,
  12397. "drupal/translation_views": 15,
  12398. "drupal/ultimate_cron": 15
  12399. },
  12400. "prefer-stable": true,
  12401. "prefer-lowest": false,
  12402. "platform": [],
  12403. "platform-dev": [],
  12404. "plugin-api-version": "1.1.0"
  12405. }