composer.lock 475 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047
  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": "ba8509570e549c6b9c926cbc9d83b5de",
  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/auto_entitylabel",
  2406. "version": "dev-3.x",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
  2410. "reference": "7d2063d5ee869d20e00409eca12bf6776fff7772"
  2411. },
  2412. "require": {
  2413. "drupal/core": "^8 || ^9"
  2414. },
  2415. "require-dev": {
  2416. "drupal/token": "^1.0"
  2417. },
  2418. "type": "drupal-module",
  2419. "extra": {
  2420. "branch-alias": {
  2421. "dev-3.x": "3.x-dev"
  2422. },
  2423. "drupal": {
  2424. "version": "8.x-3.0-beta3+6-dev",
  2425. "datestamp": "1609346741",
  2426. "security-coverage": {
  2427. "status": "not-covered",
  2428. "message": "Dev 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": "Pravin Ajaaz",
  2439. "homepage": "https://www.drupal.org/user/2910049"
  2440. },
  2441. {
  2442. "name": "RenatoG",
  2443. "homepage": "https://www.drupal.org/user/3326031"
  2444. },
  2445. {
  2446. "name": "VladimirAus",
  2447. "homepage": "https://www.drupal.org/user/673120"
  2448. },
  2449. {
  2450. "name": "bforchhammer",
  2451. "homepage": "https://www.drupal.org/user/216396"
  2452. },
  2453. {
  2454. "name": "colan",
  2455. "homepage": "https://www.drupal.org/user/58704"
  2456. },
  2457. {
  2458. "name": "diqidoq",
  2459. "homepage": "https://www.drupal.org/user/1001934"
  2460. },
  2461. {
  2462. "name": "purushotam.rai",
  2463. "homepage": "https://www.drupal.org/user/3193859"
  2464. }
  2465. ],
  2466. "description": "Allows hiding of entity label fields and automatic label creation.",
  2467. "homepage": "https://www.drupal.org/project/auto_entitylabel",
  2468. "support": {
  2469. "source": "https://git.drupalcode.org/project/auto_entitylabel",
  2470. "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
  2471. },
  2472. "time": "2021-03-01T17:14:07+00:00"
  2473. },
  2474. {
  2475. "name": "drupal/autocomplete_deluxe",
  2476. "version": "2.0.0-rc1",
  2477. "source": {
  2478. "type": "git",
  2479. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2480. "reference": "2.0.0-rc1"
  2481. },
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.0-rc1.zip",
  2485. "reference": "2.0.0-rc1",
  2486. "shasum": "9f3c63862652862322184bb892cc1fa80c9f47c1"
  2487. },
  2488. "require": {
  2489. "drupal/core": "^8 || ^9"
  2490. },
  2491. "type": "drupal-module",
  2492. "extra": {
  2493. "drupal": {
  2494. "version": "2.0.0-rc1",
  2495. "datestamp": "1592389562",
  2496. "security-coverage": {
  2497. "status": "not-covered",
  2498. "message": "RC releases are not covered by Drupal security advisories."
  2499. }
  2500. }
  2501. },
  2502. "notification-url": "https://packages.drupal.org/8/downloads",
  2503. "license": [
  2504. "GPL-2.0-or-later"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Vardot",
  2509. "homepage": "https://www.drupal.org/vardot",
  2510. "role": "Maintenance for D8 and D9 versions"
  2511. },
  2512. {
  2513. "name": "Mediacurrent",
  2514. "homepage": "https://www.drupal.org/mediacurrent",
  2515. "role": "Supporting organization"
  2516. },
  2517. {
  2518. "name": "RajabNatshah",
  2519. "homepage": "https://www.drupal.org/user/1414312"
  2520. },
  2521. {
  2522. "name": "edwardchiapet",
  2523. "homepage": "https://www.drupal.org/user/2354784"
  2524. },
  2525. {
  2526. "name": "mpriscella",
  2527. "homepage": "https://www.drupal.org/user/2354820"
  2528. },
  2529. {
  2530. "name": "sepgil",
  2531. "homepage": "https://www.drupal.org/user/512828"
  2532. }
  2533. ],
  2534. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2535. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2536. "support": {
  2537. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2538. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2539. }
  2540. },
  2541. {
  2542. "name": "drupal/autologout",
  2543. "version": "1.3.0",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://git.drupalcode.org/project/autologout.git",
  2547. "reference": "8.x-1.3"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2552. "reference": "8.x-1.3",
  2553. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2554. },
  2555. "require": {
  2556. "drupal/core": "^8 || ^9"
  2557. },
  2558. "type": "drupal-module",
  2559. "extra": {
  2560. "drupal": {
  2561. "version": "8.x-1.3",
  2562. "datestamp": "1587193798",
  2563. "security-coverage": {
  2564. "status": "covered",
  2565. "message": "Covered by Drupal's security advisory policy"
  2566. }
  2567. }
  2568. },
  2569. "notification-url": "https://packages.drupal.org/8/downloads",
  2570. "license": [
  2571. "GPL-2.0+"
  2572. ],
  2573. "authors": [
  2574. {
  2575. "name": "AjK",
  2576. "homepage": "https://www.drupal.org/user/39030"
  2577. },
  2578. {
  2579. "name": "AjitS",
  2580. "homepage": "https://www.drupal.org/user/981944"
  2581. },
  2582. {
  2583. "name": "boshtian",
  2584. "homepage": "https://www.drupal.org/user/1773456"
  2585. },
  2586. {
  2587. "name": "dandrews",
  2588. "homepage": "https://www.drupal.org/user/2014490"
  2589. },
  2590. {
  2591. "name": "darksnow",
  2592. "homepage": "https://www.drupal.org/user/391915"
  2593. },
  2594. {
  2595. "name": "johnennew",
  2596. "homepage": "https://www.drupal.org/user/1150042"
  2597. },
  2598. {
  2599. "name": "jrglasgow",
  2600. "homepage": "https://www.drupal.org/user/36590"
  2601. },
  2602. {
  2603. "name": "kmasood",
  2604. "homepage": "https://www.drupal.org/user/1262860"
  2605. },
  2606. {
  2607. "name": "levelos",
  2608. "homepage": "https://www.drupal.org/user/54135"
  2609. },
  2610. {
  2611. "name": "prabeen.giri",
  2612. "homepage": "https://www.drupal.org/user/913078"
  2613. },
  2614. {
  2615. "name": "str8",
  2616. "homepage": "https://www.drupal.org/user/2865063"
  2617. }
  2618. ],
  2619. "description": "Adds automated timed logout.",
  2620. "homepage": "http://drupal.org/project/autologout",
  2621. "support": {
  2622. "source": "https://git.drupalcode.org/project/autologout"
  2623. }
  2624. },
  2625. {
  2626. "name": "drupal/better_exposed_filters",
  2627. "version": "5.0.0-beta1",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2631. "reference": "8.x-5.0-beta1"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0-beta1.zip",
  2636. "reference": "8.x-5.0-beta1",
  2637. "shasum": "bc5ce873fa699ee584fdeb2fd28ad6c5cb456b03"
  2638. },
  2639. "require": {
  2640. "drupal/core": "^8.8 || ^9",
  2641. "drupal/jquery_ui": "^1.4",
  2642. "drupal/jquery_ui_datepicker": "^1.0",
  2643. "drupal/jquery_ui_slider": "^1.1",
  2644. "drupal/jquery_ui_touch_punch": "^1.0"
  2645. },
  2646. "type": "drupal-module",
  2647. "extra": {
  2648. "drupal": {
  2649. "version": "8.x-5.0-beta1",
  2650. "datestamp": "1594141892",
  2651. "security-coverage": {
  2652. "status": "not-covered",
  2653. "message": "Beta releases are not covered by Drupal security advisories."
  2654. }
  2655. }
  2656. },
  2657. "notification-url": "https://packages.drupal.org/8/downloads",
  2658. "license": [
  2659. "GPL-2.0+"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Mike Keran",
  2664. "homepage": "https://www.drupal.org/u/mikeker"
  2665. },
  2666. {
  2667. "name": "Martin Keereman",
  2668. "homepage": "https://www.drupal.org/u/etroid"
  2669. },
  2670. {
  2671. "name": "chr.fritsch",
  2672. "homepage": "https://www.drupal.org/user/2103716"
  2673. },
  2674. {
  2675. "name": "jkopel",
  2676. "homepage": "https://www.drupal.org/user/66207"
  2677. },
  2678. {
  2679. "name": "mikeker",
  2680. "homepage": "https://www.drupal.org/user/192273"
  2681. },
  2682. {
  2683. "name": "rlhawk",
  2684. "homepage": "https://www.drupal.org/user/352283"
  2685. }
  2686. ],
  2687. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2688. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2689. "support": {
  2690. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2691. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2692. }
  2693. },
  2694. {
  2695. "name": "drupal/betterlogin",
  2696. "version": "1.5.0",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2700. "reference": "8.x-1.5"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.5.zip",
  2705. "reference": "8.x-1.5",
  2706. "shasum": "2351972813754d0d4f15e49c9a933450dc1297f0"
  2707. },
  2708. "require": {
  2709. "drupal/core": "^8 || ^9"
  2710. },
  2711. "type": "drupal-module",
  2712. "extra": {
  2713. "drupal": {
  2714. "version": "8.x-1.5",
  2715. "datestamp": "1588242718",
  2716. "security-coverage": {
  2717. "status": "covered",
  2718. "message": "Covered by Drupal's security advisory policy"
  2719. }
  2720. }
  2721. },
  2722. "notification-url": "https://packages.drupal.org/8/downloads",
  2723. "license": [
  2724. "GPL-2.0-or-later"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "theamoeba",
  2729. "homepage": "https://www.drupal.org/user/251700"
  2730. },
  2731. {
  2732. "name": "yogeshmpawar",
  2733. "homepage": "https://www.drupal.org/user/2922907"
  2734. }
  2735. ],
  2736. "description": "Make the login screens better :)",
  2737. "homepage": "https://www.drupal.org/project/betterlogin",
  2738. "support": {
  2739. "source": "https://git.drupalcode.org/project/betterlogin"
  2740. }
  2741. },
  2742. {
  2743. "name": "drupal/block_class",
  2744. "version": "1.3.0",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://git.drupalcode.org/project/block_class.git",
  2748. "reference": "8.x-1.3"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip",
  2753. "reference": "8.x-1.3",
  2754. "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f"
  2755. },
  2756. "require": {
  2757. "drupal/core": "^8 || ^9"
  2758. },
  2759. "type": "drupal-module",
  2760. "extra": {
  2761. "drupal": {
  2762. "version": "8.x-1.3",
  2763. "datestamp": "1604426178",
  2764. "security-coverage": {
  2765. "status": "covered",
  2766. "message": "Covered by Drupal's security advisory policy"
  2767. }
  2768. }
  2769. },
  2770. "notification-url": "https://packages.drupal.org/8/downloads",
  2771. "license": [
  2772. "GPL-2.0-or-later"
  2773. ],
  2774. "authors": [
  2775. {
  2776. "name": "Todd Nienkerk",
  2777. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2778. "role": "Maintainer"
  2779. },
  2780. {
  2781. "name": "Renato Gonçalves (RenatoG)",
  2782. "homepage": "https://www.drupal.org/u/RenatoG",
  2783. "email": "renatog@ciandt.com",
  2784. "role": "Maintainer"
  2785. },
  2786. {
  2787. "name": "Neslee Canil Pinto",
  2788. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2789. "role": "Maintainer"
  2790. },
  2791. {
  2792. "name": "Aaron Stanush",
  2793. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2794. "role": "Maintainer"
  2795. },
  2796. {
  2797. "name": "David Suissa (DYdave)",
  2798. "homepage": "https://www.drupal.org/u/DYdave",
  2799. "role": "Maintainer"
  2800. },
  2801. {
  2802. "name": "Four Kitchens",
  2803. "homepage": "https://www.drupal.org/user/358502",
  2804. "role": "Maintainer"
  2805. },
  2806. {
  2807. "name": "berenddeboer",
  2808. "homepage": "https://www.drupal.org/u/berenddeboer",
  2809. "role": "Maintainer"
  2810. },
  2811. {
  2812. "name": "elliotttf",
  2813. "homepage": "https://www.drupal.org/u/elliotttf",
  2814. "role": "Maintainer"
  2815. },
  2816. {
  2817. "name": "Michal Minecki (mirzu)",
  2818. "homepage": "https://www.drupal.org/u/mirzu",
  2819. "role": "Maintainer"
  2820. },
  2821. {
  2822. "name": "Patrick Coffey (pcoffey)",
  2823. "homepage": "https://www.drupal.org/u/pcoffey",
  2824. "role": "Maintainer"
  2825. },
  2826. {
  2827. "name": "Taylor Smith (tsmith512)",
  2828. "homepage": "https://www.drupal.org/u/tsmith512",
  2829. "role": "Maintainer"
  2830. }
  2831. ],
  2832. "description": "Allows assigning classes to Blocks.",
  2833. "homepage": "https://www.drupal.org/project/block_class",
  2834. "keywords": [
  2835. "Drupal"
  2836. ],
  2837. "support": {
  2838. "source": "https://git.drupalcode.org/project/block_class",
  2839. "issues": "https://www.drupal.org/project/issues/block_class",
  2840. "irc": "irc://irc.freenode.org/drupal-contribute"
  2841. }
  2842. },
  2843. {
  2844. "name": "drupal/bulkdelete",
  2845. "version": "dev-1.x",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2849. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2850. },
  2851. "require": {
  2852. "drupal/core": "^8.7.7 || ^9"
  2853. },
  2854. "type": "drupal-module",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-1.x": "1.x-dev"
  2858. },
  2859. "drupal": {
  2860. "version": "8.x-1.x-dev",
  2861. "datestamp": "1590300128",
  2862. "security-coverage": {
  2863. "status": "not-covered",
  2864. "message": "Dev releases are not covered by Drupal security advisories."
  2865. }
  2866. }
  2867. },
  2868. "notification-url": "https://packages.drupal.org/8/downloads",
  2869. "license": [
  2870. "GPL-2.0-or-later"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Kars-T",
  2875. "homepage": "https://www.drupal.org/user/224499"
  2876. },
  2877. {
  2878. "name": "Rahul Seth",
  2879. "homepage": "https://www.drupal.org/user/2694359"
  2880. },
  2881. {
  2882. "name": "adriancid",
  2883. "homepage": "https://www.drupal.org/user/1962106"
  2884. },
  2885. {
  2886. "name": "robertDouglass",
  2887. "homepage": "https://www.drupal.org/user/5449"
  2888. }
  2889. ],
  2890. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2891. "homepage": "https://www.drupal.org/project/bulkdelete",
  2892. "support": {
  2893. "source": "https://git.drupalcode.org/project/bulkdelete"
  2894. },
  2895. "time": "2020-05-24T06:01:38+00:00"
  2896. },
  2897. {
  2898. "name": "drupal/config_devel",
  2899. "version": "dev-1.x",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://git.drupalcode.org/project/config_devel.git",
  2903. "reference": "e519faae46b88fc23a88f64c22b6146cfec863a9"
  2904. },
  2905. "require": {
  2906. "drupal/core": "^8 || ^9"
  2907. },
  2908. "type": "drupal-module",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-1.x": "1.x-dev"
  2912. },
  2913. "drupal": {
  2914. "version": "8.x-1.7+3-dev",
  2915. "datestamp": "1607535421",
  2916. "security-coverage": {
  2917. "status": "not-covered",
  2918. "message": "Dev releases are not covered by Drupal security advisories."
  2919. }
  2920. }
  2921. },
  2922. "notification-url": "https://packages.drupal.org/8/downloads",
  2923. "license": [
  2924. "GPL-2.0+"
  2925. ],
  2926. "authors": [
  2927. {
  2928. "name": "alexpott",
  2929. "homepage": "https://www.drupal.org/user/157725"
  2930. },
  2931. {
  2932. "name": "benjy",
  2933. "homepage": "https://www.drupal.org/user/1852732"
  2934. },
  2935. {
  2936. "name": "chx",
  2937. "homepage": "https://www.drupal.org/user/9446"
  2938. },
  2939. {
  2940. "name": "joachim",
  2941. "homepage": "https://www.drupal.org/user/107701"
  2942. },
  2943. {
  2944. "name": "nedjo",
  2945. "homepage": "https://www.drupal.org/user/4481"
  2946. },
  2947. {
  2948. "name": "tim.plunkett",
  2949. "homepage": "https://www.drupal.org/user/241634"
  2950. },
  2951. {
  2952. "name": "vijaycs85",
  2953. "homepage": "https://www.drupal.org/user/93488"
  2954. }
  2955. ],
  2956. "description": "Helps developers work with configuration.",
  2957. "homepage": "https://www.drupal.org/project/config_devel",
  2958. "support": {
  2959. "source": "https://git.drupalcode.org/project/config_devel"
  2960. },
  2961. "time": "2020-12-11T15:36:08+00:00"
  2962. },
  2963. {
  2964. "name": "drupal/config_filter",
  2965. "version": "1.8.0",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://git.drupalcode.org/project/config_filter.git",
  2969. "reference": "8.x-1.8"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip",
  2974. "reference": "8.x-1.8",
  2975. "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe"
  2976. },
  2977. "require": {
  2978. "drupal/core": "^8 || ^9"
  2979. },
  2980. "suggest": {
  2981. "drupal/config_split": "Split site configuration for different environments."
  2982. },
  2983. "type": "drupal-module",
  2984. "extra": {
  2985. "drupal": {
  2986. "version": "8.x-1.8",
  2987. "datestamp": "1603870062",
  2988. "security-coverage": {
  2989. "status": "covered",
  2990. "message": "Covered by Drupal's security advisory policy"
  2991. }
  2992. }
  2993. },
  2994. "notification-url": "https://packages.drupal.org/8/downloads",
  2995. "license": [
  2996. "GPL-2.0-or-later"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Fabian Bircher",
  3001. "homepage": "https://www.drupal.org/u/bircher",
  3002. "email": "opensource@fabianbircher.com",
  3003. "role": "Maintainer"
  3004. },
  3005. {
  3006. "name": "Nuvole Web",
  3007. "homepage": "http://nuvole.org",
  3008. "email": "info@nuvole.org",
  3009. "role": "Maintainer"
  3010. },
  3011. {
  3012. "name": "pescetti",
  3013. "homepage": "https://www.drupal.org/user/436244"
  3014. }
  3015. ],
  3016. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  3017. "homepage": "https://www.drupal.org/project/config_filter",
  3018. "keywords": [
  3019. "Drupal",
  3020. "configuration",
  3021. "configuration management"
  3022. ],
  3023. "support": {
  3024. "source": "https://git.drupalcode.org/project/config_filter",
  3025. "issues": "https://www.drupal.org/project/issues/config_filter",
  3026. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3027. }
  3028. },
  3029. {
  3030. "name": "drupal/config_ignore",
  3031. "version": "2.3.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3035. "reference": "8.x-2.3"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip",
  3040. "reference": "8.x-2.3",
  3041. "shasum": "2e1f07a455275fb6637909921a8915646601fc00"
  3042. },
  3043. "require": {
  3044. "drupal/config_filter": "^1 || ^2",
  3045. "drupal/core": "^8 || ^9"
  3046. },
  3047. "type": "drupal-module",
  3048. "extra": {
  3049. "drupal": {
  3050. "version": "8.x-2.3",
  3051. "datestamp": "1608306489",
  3052. "security-coverage": {
  3053. "status": "covered",
  3054. "message": "Covered by Drupal's security advisory policy"
  3055. }
  3056. }
  3057. },
  3058. "notification-url": "https://packages.drupal.org/8/downloads",
  3059. "license": [
  3060. "GPL-2.0-or-later"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "Tommy Lynge Jørgensen",
  3065. "homepage": "https://www.drupal.org/u/tlyngej",
  3066. "email": "tlyngej@gmail.com",
  3067. "role": "Maintainer"
  3068. },
  3069. {
  3070. "name": "Fabian Bircher",
  3071. "homepage": "https://www.drupal.org/u/bircher",
  3072. "role": "Maintainer"
  3073. },
  3074. {
  3075. "name": "tlyngej",
  3076. "homepage": "https://www.drupal.org/user/413139"
  3077. }
  3078. ],
  3079. "description": "Ignore certain configuration during import.",
  3080. "homepage": "http://drupal.org/project/config_ignore",
  3081. "support": {
  3082. "source": "https://git.drupalcode.org/project/config_ignore",
  3083. "issues": "http://drupal.org/project/config_ignore",
  3084. "irc": "irc://irc.freenode.org/drupal-contribute"
  3085. }
  3086. },
  3087. {
  3088. "name": "drupal/config_update",
  3089. "version": "1.7.0",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://git.drupalcode.org/project/config_update.git",
  3093. "reference": "8.x-1.7"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  3098. "reference": "8.x-1.7",
  3099. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  3100. },
  3101. "require": {
  3102. "drupal/core": "^8 || ^9"
  3103. },
  3104. "type": "drupal-module",
  3105. "extra": {
  3106. "drupal": {
  3107. "version": "8.x-1.7",
  3108. "datestamp": "1586355587",
  3109. "security-coverage": {
  3110. "status": "covered",
  3111. "message": "Covered by Drupal's security advisory policy"
  3112. }
  3113. }
  3114. },
  3115. "notification-url": "https://packages.drupal.org/8/downloads",
  3116. "license": [
  3117. "GPL-2.0-or-later"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "jhodgdon",
  3122. "homepage": "https://www.drupal.org/user/155601"
  3123. },
  3124. {
  3125. "name": "nedjo",
  3126. "homepage": "https://www.drupal.org/user/4481"
  3127. }
  3128. ],
  3129. "description": "Provides basic revert and update functionality for other modules",
  3130. "homepage": "https://www.drupal.org/project/config_update",
  3131. "support": {
  3132. "source": "https://git.drupalcode.org/project/config_update"
  3133. }
  3134. },
  3135. {
  3136. "name": "drupal/console",
  3137. "version": "1.9.7",
  3138. "source": {
  3139. "type": "git",
  3140. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3141. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e"
  3142. },
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3146. "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e",
  3147. "shasum": ""
  3148. },
  3149. "require": {
  3150. "alchemy/zippy": "~0.4",
  3151. "composer/installers": "~1.0",
  3152. "doctrine/annotations": "^1.2",
  3153. "doctrine/collections": "^1.3",
  3154. "drupal/console-core": "1.9.7",
  3155. "drupal/console-extend-plugin": "~0.9.5",
  3156. "php": ">=7.0.8",
  3157. "psy/psysh": "0.6.* || ~0.8",
  3158. "symfony/css-selector": "~3.0|~4.0",
  3159. "symfony/dom-crawler": "~3.0|~4.0",
  3160. "symfony/http-foundation": "~3.0|~4.0"
  3161. },
  3162. "suggest": {
  3163. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3164. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3165. },
  3166. "bin": [
  3167. "bin/drupal"
  3168. ],
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Drupal\\Console\\": "src"
  3173. }
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "GPL-2.0-or-later"
  3178. ],
  3179. "authors": [
  3180. {
  3181. "name": "David Flores",
  3182. "email": "dmousex@gmail.com",
  3183. "homepage": "http://dmouse.net"
  3184. },
  3185. {
  3186. "name": "Jesus Manuel Olivas",
  3187. "email": "jesus.olivas@gmail.com",
  3188. "homepage": "http://jmolivas.com"
  3189. },
  3190. {
  3191. "name": "Eduardo Garcia",
  3192. "email": "enzo@enzolutions.com",
  3193. "homepage": "http://enzolutions.com/"
  3194. },
  3195. {
  3196. "name": "Omar Aguirre",
  3197. "email": "omersguchigu@gmail.com"
  3198. },
  3199. {
  3200. "name": "Drupal Console Contributors",
  3201. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3202. }
  3203. ],
  3204. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3205. "homepage": "http://drupalconsole.com/",
  3206. "keywords": [
  3207. "console",
  3208. "development",
  3209. "drupal",
  3210. "symfony"
  3211. ],
  3212. "funding": [
  3213. {
  3214. "url": "https://opencollective.com/drupalconsole",
  3215. "type": "open_collective"
  3216. }
  3217. ],
  3218. "time": "2020-11-30T02:09:53+00:00"
  3219. },
  3220. {
  3221. "name": "drupal/console-core",
  3222. "version": "1.9.7",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3226. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3231. "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63",
  3232. "shasum": ""
  3233. },
  3234. "require": {
  3235. "dflydev/dot-access-configuration": "^1.0",
  3236. "drupal/console-en": "1.9.7",
  3237. "guzzlehttp/guzzle": "~6.1",
  3238. "php": ">=7.0.8",
  3239. "stecman/symfony-console-completion": "~0.7",
  3240. "symfony/config": "~3.0|^4.4",
  3241. "symfony/console": "~3.0|^4.4",
  3242. "symfony/debug": "~3.0|^4.4",
  3243. "symfony/dependency-injection": "~3.0|^4.4",
  3244. "symfony/event-dispatcher": "~3.0|^4.4",
  3245. "symfony/filesystem": "~3.0|^4.4",
  3246. "symfony/finder": "~3.0|^4.4",
  3247. "symfony/process": "~3.0|^4.4",
  3248. "symfony/translation": "~3.0|^4.4",
  3249. "symfony/yaml": "~3.0|^4.4",
  3250. "twig/twig": "^1.38.2|^2.12.0",
  3251. "webflo/drupal-finder": "^1.0",
  3252. "webmozart/path-util": "^2.3"
  3253. },
  3254. "type": "library",
  3255. "autoload": {
  3256. "files": [
  3257. "src/functions.php"
  3258. ],
  3259. "psr-4": {
  3260. "Drupal\\Console\\Core\\": "src"
  3261. }
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "GPL-2.0-or-later"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "David Flores",
  3270. "email": "dmousex@gmail.com",
  3271. "homepage": "http://dmouse.net"
  3272. },
  3273. {
  3274. "name": "Jesus Manuel Olivas",
  3275. "email": "jesus.olivas@gmail.com",
  3276. "homepage": "http://jmolivas.com"
  3277. },
  3278. {
  3279. "name": "Eduardo Garcia",
  3280. "email": "enzo@enzolutions.com",
  3281. "homepage": "http://enzolutions.com/"
  3282. },
  3283. {
  3284. "name": "Omar Aguirre",
  3285. "email": "omersguchigu@gmail.com"
  3286. },
  3287. {
  3288. "name": "Drupal Console Contributors",
  3289. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3290. }
  3291. ],
  3292. "description": "Drupal Console Core",
  3293. "homepage": "http://drupalconsole.com/",
  3294. "keywords": [
  3295. "console",
  3296. "development",
  3297. "drupal",
  3298. "symfony"
  3299. ],
  3300. "time": "2020-11-30T01:45:57+00:00"
  3301. },
  3302. {
  3303. "name": "drupal/console-en",
  3304. "version": "v1.9.7",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3308. "reference": "7594601fff153c2799a62bd678ff80749baeee0c"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c",
  3313. "reference": "7594601fff153c2799a62bd678ff80749baeee0c",
  3314. "shasum": ""
  3315. },
  3316. "type": "library",
  3317. "notification-url": "https://packagist.org/downloads/",
  3318. "license": [
  3319. "GPL-2.0-or-later"
  3320. ],
  3321. "authors": [
  3322. {
  3323. "name": "David Flores",
  3324. "email": "dmousex@gmail.com",
  3325. "homepage": "http://dmouse.net"
  3326. },
  3327. {
  3328. "name": "Jesus Manuel Olivas",
  3329. "email": "jesus.olivas@gmail.com",
  3330. "homepage": "http://jmolivas.com"
  3331. },
  3332. {
  3333. "name": "Eduardo Garcia",
  3334. "email": "enzo@enzolutions.com",
  3335. "homepage": "http://enzolutions.com/"
  3336. },
  3337. {
  3338. "name": "Omar Aguirre",
  3339. "email": "omersguchigu@gmail.com"
  3340. },
  3341. {
  3342. "name": "Drupal Console Contributors",
  3343. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3344. }
  3345. ],
  3346. "description": "Drupal Console English Language",
  3347. "homepage": "http://drupalconsole.com/",
  3348. "keywords": [
  3349. "console",
  3350. "development",
  3351. "drupal",
  3352. "symfony"
  3353. ],
  3354. "time": "2020-08-15T03:34:54+00:00"
  3355. },
  3356. {
  3357. "name": "drupal/console-extend-plugin",
  3358. "version": "0.9.5",
  3359. "source": {
  3360. "type": "git",
  3361. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3362. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585"
  3363. },
  3364. "dist": {
  3365. "type": "zip",
  3366. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3367. "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585",
  3368. "shasum": ""
  3369. },
  3370. "require": {
  3371. "composer-plugin-api": "^1.0 || ^2.0",
  3372. "composer/installers": "^1.2",
  3373. "symfony/finder": "~3.0|^4.4",
  3374. "symfony/yaml": "~3.0|^4.4"
  3375. },
  3376. "type": "composer-plugin",
  3377. "extra": {
  3378. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3379. },
  3380. "autoload": {
  3381. "psr-4": {
  3382. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3383. }
  3384. },
  3385. "notification-url": "https://packagist.org/downloads/",
  3386. "license": [
  3387. "GPL-2.0+"
  3388. ],
  3389. "authors": [
  3390. {
  3391. "name": "Jesus Manuel Olivas",
  3392. "email": "jesus.olivas@gmail.com"
  3393. }
  3394. ],
  3395. "description": "Drupal Console Extend Plugin",
  3396. "time": "2020-11-18T00:15:28+00:00"
  3397. },
  3398. {
  3399. "name": "drupal/content_lock",
  3400. "version": "2.2.0",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://git.drupalcode.org/project/content_lock.git",
  3404. "reference": "8.x-2.2"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip",
  3409. "reference": "8.x-2.2",
  3410. "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7"
  3411. },
  3412. "require": {
  3413. "drupal/core": "^8.8|^9.0"
  3414. },
  3415. "require-dev": {
  3416. "drupal/conflict": "^2.0@ALPHA",
  3417. "drupal/prefetch_cache": "dev-1.x"
  3418. },
  3419. "type": "drupal-module",
  3420. "extra": {
  3421. "drupal": {
  3422. "version": "8.x-2.2",
  3423. "datestamp": "1607936866",
  3424. "security-coverage": {
  3425. "status": "covered",
  3426. "message": "Covered by Drupal's security advisory policy"
  3427. }
  3428. }
  3429. },
  3430. "notification-url": "https://packages.drupal.org/8/downloads",
  3431. "license": [
  3432. "GPL-2.0-or-later"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "chr.fritsch",
  3437. "homepage": "https://www.drupal.org/user/2103716"
  3438. },
  3439. {
  3440. "name": "ergonlogic",
  3441. "homepage": "https://www.drupal.org/user/368613"
  3442. },
  3443. {
  3444. "name": "mfb",
  3445. "homepage": "https://www.drupal.org/user/12302"
  3446. },
  3447. {
  3448. "name": "pandaski",
  3449. "homepage": "https://www.drupal.org/user/1987218"
  3450. }
  3451. ],
  3452. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3453. "homepage": "https://www.drupal.org/project/content_lock",
  3454. "support": {
  3455. "source": "https://git.drupalcode.org/project/content_lock"
  3456. }
  3457. },
  3458. {
  3459. "name": "drupal/context",
  3460. "version": "4.0.0-beta5",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://git.drupalcode.org/project/context.git",
  3464. "reference": "8.x-4.0-beta5"
  3465. },
  3466. "dist": {
  3467. "type": "zip",
  3468. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta5.zip",
  3469. "reference": "8.x-4.0-beta5",
  3470. "shasum": "893d7e6ce07b23764baa6fd609da811ec80c5a04"
  3471. },
  3472. "require": {
  3473. "drupal/core": "^8.8 || ^9"
  3474. },
  3475. "type": "drupal-module",
  3476. "extra": {
  3477. "drupal": {
  3478. "version": "8.x-4.0-beta5",
  3479. "datestamp": "1600783508",
  3480. "security-coverage": {
  3481. "status": "not-covered",
  3482. "message": "Beta releases are not covered by Drupal security advisories."
  3483. }
  3484. }
  3485. },
  3486. "notification-url": "https://packages.drupal.org/8/downloads",
  3487. "license": [
  3488. "MIT"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Christoffer Palm",
  3493. "homepage": "http://www.oddhill.se/",
  3494. "email": "christoffer.palm@oddhill.se",
  3495. "role": "Developer"
  3496. },
  3497. {
  3498. "name": "Steven Jones",
  3499. "homepage": "https://www.drupal.org/user/99644"
  3500. },
  3501. {
  3502. "name": "alex_b",
  3503. "homepage": "https://www.drupal.org/user/53995"
  3504. },
  3505. {
  3506. "name": "boshtian",
  3507. "homepage": "https://www.drupal.org/user/1773456"
  3508. },
  3509. {
  3510. "name": "colan",
  3511. "homepage": "https://www.drupal.org/user/58704"
  3512. },
  3513. {
  3514. "name": "emanaton",
  3515. "homepage": "https://www.drupal.org/user/120853"
  3516. },
  3517. {
  3518. "name": "febbraro",
  3519. "homepage": "https://www.drupal.org/user/43670"
  3520. },
  3521. {
  3522. "name": "fizk",
  3523. "homepage": "https://www.drupal.org/user/473174"
  3524. },
  3525. {
  3526. "name": "hass",
  3527. "homepage": "https://www.drupal.org/user/85918"
  3528. },
  3529. {
  3530. "name": "hefox",
  3531. "homepage": "https://www.drupal.org/user/426416"
  3532. },
  3533. {
  3534. "name": "jmiccolis",
  3535. "homepage": "https://www.drupal.org/user/31731"
  3536. },
  3537. {
  3538. "name": "nedjo",
  3539. "homepage": "https://www.drupal.org/user/4481"
  3540. },
  3541. {
  3542. "name": "patricksettle",
  3543. "homepage": "https://www.drupal.org/user/26618"
  3544. },
  3545. {
  3546. "name": "paulocs",
  3547. "homepage": "https://www.drupal.org/user/3640109"
  3548. },
  3549. {
  3550. "name": "tekante",
  3551. "homepage": "https://www.drupal.org/user/640024"
  3552. },
  3553. {
  3554. "name": "yhahn",
  3555. "homepage": "https://www.drupal.org/user/264833"
  3556. }
  3557. ],
  3558. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3559. "homepage": "https://github.com/oddhill/context",
  3560. "keywords": [
  3561. "Drupal",
  3562. "block",
  3563. "conditions",
  3564. "context",
  3565. "visibility"
  3566. ],
  3567. "support": {
  3568. "source": "https://github.com/oddhill/context",
  3569. "issues": "https://github.com/oddhill/context/issues",
  3570. "docs": "https://github.com/oddhill/context"
  3571. }
  3572. },
  3573. {
  3574. "name": "drupal/core",
  3575. "version": "9.1.4",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/drupal/core.git",
  3579. "reference": "d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/drupal/core/zipball/d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4",
  3584. "reference": "d16a7cb33b7a01e3b2e66d36e2011f27ba9786f4",
  3585. "shasum": ""
  3586. },
  3587. "require": {
  3588. "asm89/stack-cors": "^1.1",
  3589. "composer/semver": "^3.0",
  3590. "doctrine/annotations": "^1.4",
  3591. "doctrine/reflection": "^1.1",
  3592. "egulias/email-validator": "^2.0",
  3593. "ext-date": "*",
  3594. "ext-dom": "*",
  3595. "ext-filter": "*",
  3596. "ext-gd": "*",
  3597. "ext-hash": "*",
  3598. "ext-json": "*",
  3599. "ext-pcre": "*",
  3600. "ext-pdo": "*",
  3601. "ext-session": "*",
  3602. "ext-simplexml": "*",
  3603. "ext-spl": "*",
  3604. "ext-tokenizer": "*",
  3605. "ext-xml": "*",
  3606. "guzzlehttp/guzzle": "^6.5.2",
  3607. "laminas/laminas-diactoros": "^2.1",
  3608. "laminas/laminas-feed": "^2.12",
  3609. "masterminds/html5": "^2.1",
  3610. "pear/archive_tar": "^1.4.12",
  3611. "php": ">=7.3.0",
  3612. "psr/log": "^1.0",
  3613. "stack/builder": "^1.0",
  3614. "symfony-cmf/routing": "^2.1",
  3615. "symfony/console": "^4.4",
  3616. "symfony/dependency-injection": "^4.4",
  3617. "symfony/event-dispatcher": "^4.4",
  3618. "symfony/http-foundation": "^4.4.7",
  3619. "symfony/http-kernel": "^4.4",
  3620. "symfony/polyfill-iconv": "^1.0",
  3621. "symfony/process": "^4.4",
  3622. "symfony/psr-http-message-bridge": "^2.0",
  3623. "symfony/routing": "^4.4",
  3624. "symfony/serializer": "^4.4",
  3625. "symfony/translation": "^4.4",
  3626. "symfony/validator": "^4.4",
  3627. "symfony/yaml": "^4.4",
  3628. "twig/twig": "^2.12.0",
  3629. "typo3/phar-stream-wrapper": "^3.1.3"
  3630. },
  3631. "conflict": {
  3632. "drush/drush": "<8.1.10"
  3633. },
  3634. "replace": {
  3635. "drupal/action": "self.version",
  3636. "drupal/aggregator": "self.version",
  3637. "drupal/automated_cron": "self.version",
  3638. "drupal/ban": "self.version",
  3639. "drupal/bartik": "self.version",
  3640. "drupal/basic_auth": "self.version",
  3641. "drupal/big_pipe": "self.version",
  3642. "drupal/block": "self.version",
  3643. "drupal/block_content": "self.version",
  3644. "drupal/book": "self.version",
  3645. "drupal/breakpoint": "self.version",
  3646. "drupal/ckeditor": "self.version",
  3647. "drupal/claro": "self.version",
  3648. "drupal/classy": "self.version",
  3649. "drupal/color": "self.version",
  3650. "drupal/comment": "self.version",
  3651. "drupal/config": "self.version",
  3652. "drupal/config_translation": "self.version",
  3653. "drupal/contact": "self.version",
  3654. "drupal/content_moderation": "self.version",
  3655. "drupal/content_translation": "self.version",
  3656. "drupal/contextual": "self.version",
  3657. "drupal/core-annotation": "self.version",
  3658. "drupal/core-assertion": "self.version",
  3659. "drupal/core-bridge": "self.version",
  3660. "drupal/core-class-finder": "self.version",
  3661. "drupal/core-datetime": "self.version",
  3662. "drupal/core-dependency-injection": "self.version",
  3663. "drupal/core-diff": "self.version",
  3664. "drupal/core-discovery": "self.version",
  3665. "drupal/core-event-dispatcher": "self.version",
  3666. "drupal/core-file-cache": "self.version",
  3667. "drupal/core-file-security": "self.version",
  3668. "drupal/core-filesystem": "self.version",
  3669. "drupal/core-front-matter": "self.version",
  3670. "drupal/core-gettext": "self.version",
  3671. "drupal/core-graph": "self.version",
  3672. "drupal/core-http-foundation": "self.version",
  3673. "drupal/core-php-storage": "self.version",
  3674. "drupal/core-plugin": "self.version",
  3675. "drupal/core-proxy-builder": "self.version",
  3676. "drupal/core-render": "self.version",
  3677. "drupal/core-serialization": "self.version",
  3678. "drupal/core-transliteration": "self.version",
  3679. "drupal/core-utility": "self.version",
  3680. "drupal/core-uuid": "self.version",
  3681. "drupal/core-version": "self.version",
  3682. "drupal/datetime": "self.version",
  3683. "drupal/datetime_range": "self.version",
  3684. "drupal/dblog": "self.version",
  3685. "drupal/dynamic_page_cache": "self.version",
  3686. "drupal/editor": "self.version",
  3687. "drupal/entity_reference": "self.version",
  3688. "drupal/field": "self.version",
  3689. "drupal/field_layout": "self.version",
  3690. "drupal/field_ui": "self.version",
  3691. "drupal/file": "self.version",
  3692. "drupal/filter": "self.version",
  3693. "drupal/forum": "self.version",
  3694. "drupal/hal": "self.version",
  3695. "drupal/help": "self.version",
  3696. "drupal/help_topics": "self.version",
  3697. "drupal/history": "self.version",
  3698. "drupal/image": "self.version",
  3699. "drupal/inline_form_errors": "self.version",
  3700. "drupal/jsonapi": "self.version",
  3701. "drupal/language": "self.version",
  3702. "drupal/layout_builder": "self.version",
  3703. "drupal/layout_discovery": "self.version",
  3704. "drupal/link": "self.version",
  3705. "drupal/locale": "self.version",
  3706. "drupal/media": "self.version",
  3707. "drupal/media_library": "self.version",
  3708. "drupal/menu_link_content": "self.version",
  3709. "drupal/menu_ui": "self.version",
  3710. "drupal/migrate": "self.version",
  3711. "drupal/migrate_drupal": "self.version",
  3712. "drupal/migrate_drupal_multilingual": "self.version",
  3713. "drupal/migrate_drupal_ui": "self.version",
  3714. "drupal/minimal": "self.version",
  3715. "drupal/node": "self.version",
  3716. "drupal/olivero": "self.version",
  3717. "drupal/options": "self.version",
  3718. "drupal/page_cache": "self.version",
  3719. "drupal/path": "self.version",
  3720. "drupal/path_alias": "self.version",
  3721. "drupal/quickedit": "self.version",
  3722. "drupal/rdf": "self.version",
  3723. "drupal/responsive_image": "self.version",
  3724. "drupal/rest": "self.version",
  3725. "drupal/search": "self.version",
  3726. "drupal/serialization": "self.version",
  3727. "drupal/settings_tray": "self.version",
  3728. "drupal/seven": "self.version",
  3729. "drupal/shortcut": "self.version",
  3730. "drupal/standard": "self.version",
  3731. "drupal/stark": "self.version",
  3732. "drupal/statistics": "self.version",
  3733. "drupal/syslog": "self.version",
  3734. "drupal/system": "self.version",
  3735. "drupal/taxonomy": "self.version",
  3736. "drupal/telephone": "self.version",
  3737. "drupal/text": "self.version",
  3738. "drupal/toolbar": "self.version",
  3739. "drupal/tour": "self.version",
  3740. "drupal/tracker": "self.version",
  3741. "drupal/update": "self.version",
  3742. "drupal/user": "self.version",
  3743. "drupal/views": "self.version",
  3744. "drupal/views_ui": "self.version",
  3745. "drupal/workflows": "self.version",
  3746. "drupal/workspaces": "self.version"
  3747. },
  3748. "type": "drupal-core",
  3749. "extra": {
  3750. "drupal-scaffold": {
  3751. "file-mapping": {
  3752. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3753. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3754. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3755. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3756. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3757. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3758. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3759. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3760. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3761. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3762. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3763. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3764. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3765. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3766. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3767. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3768. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3769. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3770. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3771. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3772. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3773. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3774. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3775. }
  3776. }
  3777. },
  3778. "autoload": {
  3779. "psr-4": {
  3780. "Drupal\\Core\\": "lib/Drupal/Core",
  3781. "Drupal\\Component\\": "lib/Drupal/Component",
  3782. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3783. },
  3784. "classmap": [
  3785. "lib/Drupal.php",
  3786. "lib/Drupal/Component/DependencyInjection/Container.php",
  3787. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3788. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3789. "lib/Drupal/Component/Utility/Timer.php",
  3790. "lib/Drupal/Component/Utility/Unicode.php",
  3791. "lib/Drupal/Core/Cache/Cache.php",
  3792. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3793. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3794. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3795. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3796. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3797. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3798. "lib/Drupal/Core/Database/Connection.php",
  3799. "lib/Drupal/Core/Database/Database.php",
  3800. "lib/Drupal/Core/Database/Driver/mysql/Connection.php",
  3801. "lib/Drupal/Core/Database/Driver/pgsql/Connection.php",
  3802. "lib/Drupal/Core/Database/Driver/sqlite/Connection.php",
  3803. "lib/Drupal/Core/Database/Statement.php",
  3804. "lib/Drupal/Core/Database/StatementInterface.php",
  3805. "lib/Drupal/Core/DependencyInjection/Container.php",
  3806. "lib/Drupal/Core/DrupalKernel.php",
  3807. "lib/Drupal/Core/DrupalKernelInterface.php",
  3808. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3809. "lib/Drupal/Core/Site/Settings.php"
  3810. ],
  3811. "files": [
  3812. "includes/bootstrap.inc"
  3813. ]
  3814. },
  3815. "notification-url": "https://packagist.org/downloads/",
  3816. "license": [
  3817. "GPL-2.0-or-later"
  3818. ],
  3819. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3820. "time": "2021-02-03T19:21:05+00:00"
  3821. },
  3822. {
  3823. "name": "drupal/core-composer-scaffold",
  3824. "version": "9.1.4",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3828. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/7b125516d6568b888945ee03ac2636dcced76e8d",
  3833. "reference": "7b125516d6568b888945ee03ac2636dcced76e8d",
  3834. "shasum": ""
  3835. },
  3836. "require": {
  3837. "composer-plugin-api": "^1 || ^2",
  3838. "php": ">=7.3.0"
  3839. },
  3840. "conflict": {
  3841. "drupal-composer/drupal-scaffold": "*"
  3842. },
  3843. "require-dev": {
  3844. "composer/composer": "^1.8@stable"
  3845. },
  3846. "type": "composer-plugin",
  3847. "extra": {
  3848. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3849. "branch-alias": {
  3850. "dev-master": "1.0.x-dev"
  3851. }
  3852. },
  3853. "autoload": {
  3854. "psr-4": {
  3855. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3856. }
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "GPL-2.0-or-later"
  3861. ],
  3862. "description": "A flexible Composer project scaffold builder.",
  3863. "homepage": "https://www.drupal.org/project/drupal",
  3864. "keywords": [
  3865. "drupal"
  3866. ],
  3867. "time": "2020-08-07T22:30:13+00:00"
  3868. },
  3869. {
  3870. "name": "drupal/core-project-message",
  3871. "version": "9.1.4",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/drupal/core-project-message.git",
  3875. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/812d6da43dd49cc210af62e80fa92189e68e565a",
  3880. "reference": "812d6da43dd49cc210af62e80fa92189e68e565a",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "composer-plugin-api": "^1.1 || ^2",
  3885. "php": ">=7.3.0"
  3886. },
  3887. "type": "composer-plugin",
  3888. "extra": {
  3889. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3890. },
  3891. "autoload": {
  3892. "psr-4": {
  3893. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3894. }
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "GPL-2.0-or-later"
  3899. ],
  3900. "description": "Adds a message after Composer installation.",
  3901. "homepage": "https://www.drupal.org/project/drupal",
  3902. "keywords": [
  3903. "drupal"
  3904. ],
  3905. "time": "2020-09-14T13:40:36+00:00"
  3906. },
  3907. {
  3908. "name": "drupal/core-recommended",
  3909. "version": "9.1.4",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/drupal/core-recommended.git",
  3913. "reference": "e48e05b546b0ebef74af26a6d3104dd3bd499202"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/e48e05b546b0ebef74af26a6d3104dd3bd499202",
  3918. "reference": "e48e05b546b0ebef74af26a6d3104dd3bd499202",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "asm89/stack-cors": "1.3.0",
  3923. "composer/semver": "3.2.2",
  3924. "doctrine/annotations": "1.11.1",
  3925. "doctrine/lexer": "1.2.1",
  3926. "doctrine/reflection": "1.2.2",
  3927. "drupal/core": "9.1.4",
  3928. "egulias/email-validator": "2.1.22",
  3929. "guzzlehttp/guzzle": "6.5.5",
  3930. "guzzlehttp/promises": "1.4.0",
  3931. "guzzlehttp/psr7": "1.7.0",
  3932. "laminas/laminas-diactoros": "2.5.0",
  3933. "laminas/laminas-escaper": "2.7.0",
  3934. "laminas/laminas-feed": "2.13.0",
  3935. "laminas/laminas-stdlib": "3.3.0",
  3936. "laminas/laminas-zendframework-bridge": "1.1.1",
  3937. "masterminds/html5": "2.7.4",
  3938. "pear/archive_tar": "1.4.12",
  3939. "pear/console_getopt": "v1.4.3",
  3940. "pear/pear-core-minimal": "v1.10.10",
  3941. "pear/pear_exception": "v1.0.1",
  3942. "psr/container": "1.0.0",
  3943. "psr/http-factory": "1.0.1",
  3944. "psr/http-message": "1.0.1",
  3945. "psr/log": "1.1.3",
  3946. "ralouphie/getallheaders": "3.0.3",
  3947. "stack/builder": "v1.0.6",
  3948. "symfony-cmf/routing": "2.3.3",
  3949. "symfony/console": "v4.4.16",
  3950. "symfony/debug": "v4.4.16",
  3951. "symfony/dependency-injection": "v4.4.16",
  3952. "symfony/error-handler": "v4.4.16",
  3953. "symfony/event-dispatcher": "v4.4.16",
  3954. "symfony/event-dispatcher-contracts": "v1.1.9",
  3955. "symfony/http-client-contracts": "v2.3.1",
  3956. "symfony/http-foundation": "v4.4.16",
  3957. "symfony/http-kernel": "v4.4.16",
  3958. "symfony/mime": "v5.1.8",
  3959. "symfony/polyfill-ctype": "v1.20.0",
  3960. "symfony/polyfill-iconv": "v1.20.0",
  3961. "symfony/polyfill-intl-idn": "v1.20.0",
  3962. "symfony/polyfill-intl-normalizer": "v1.20.0",
  3963. "symfony/polyfill-mbstring": "v1.20.0",
  3964. "symfony/polyfill-php80": "v1.20.0",
  3965. "symfony/process": "v4.4.16",
  3966. "symfony/psr-http-message-bridge": "v2.0.2",
  3967. "symfony/routing": "v4.4.16",
  3968. "symfony/serializer": "v4.4.16",
  3969. "symfony/service-contracts": "v2.2.0",
  3970. "symfony/translation": "v4.4.16",
  3971. "symfony/translation-contracts": "v2.3.0",
  3972. "symfony/validator": "v4.4.16",
  3973. "symfony/var-dumper": "v5.1.8",
  3974. "symfony/yaml": "v4.4.16",
  3975. "twig/twig": "v2.14.1",
  3976. "typo3/phar-stream-wrapper": "v3.1.6"
  3977. },
  3978. "conflict": {
  3979. "webflo/drupal-core-strict": "*"
  3980. },
  3981. "type": "metapackage",
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "GPL-2.0-or-later"
  3985. ],
  3986. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3987. "time": "2021-02-03T19:21:05+00:00"
  3988. },
  3989. {
  3990. "name": "drupal/cshs",
  3991. "version": "dev-1.x",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://git.drupalcode.org/project/cshs.git",
  3995. "reference": "537e7fef494c71cfa59d8d90849cbf1beee80e49"
  3996. },
  3997. "require": {
  3998. "drupal/core": "^8 || ^9"
  3999. },
  4000. "type": "drupal-module",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-1.x": "1.x-dev"
  4004. },
  4005. "drupal": {
  4006. "version": "8.x-1.2+4-dev",
  4007. "datestamp": "1607678639",
  4008. "security-coverage": {
  4009. "status": "not-covered",
  4010. "message": "Dev releases are not covered by Drupal security advisories."
  4011. }
  4012. }
  4013. },
  4014. "notification-url": "https://packages.drupal.org/8/downloads",
  4015. "license": [
  4016. "GPL-2.0-or-later"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Walter Jenner",
  4021. "homepage": "https://drupal.org/u/valderama"
  4022. },
  4023. {
  4024. "name": "Sergii Bondarenko",
  4025. "homepage": "https://drupal.org/u/BR0kEN",
  4026. "email": "sb@firstvector.org"
  4027. },
  4028. {
  4029. "name": "Daneel Cruz",
  4030. "homepage": "https://drupal.org/u/daneelcm"
  4031. },
  4032. {
  4033. "name": "Purushotam Rai",
  4034. "homepage": "https://drupal.org/u/purushotam.rai"
  4035. }
  4036. ],
  4037. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  4038. "homepage": "https://www.drupal.org/project/cshs",
  4039. "keywords": [
  4040. "client-side-select",
  4041. "hierarchical-select",
  4042. "module",
  4043. "select",
  4044. "taxonomy"
  4045. ],
  4046. "support": {
  4047. "source": "https://git.drupalcode.org/project/cshs",
  4048. "issues": "https://www.drupal.org/project/issues/cshs"
  4049. },
  4050. "time": "2020-12-11T09:23:35+00:00"
  4051. },
  4052. {
  4053. "name": "drupal/ctools",
  4054. "version": "3.4.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://git.drupalcode.org/project/ctools.git",
  4058. "reference": "8.x-3.4"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  4063. "reference": "8.x-3.4",
  4064. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  4065. },
  4066. "require": {
  4067. "drupal/core": "^8.7.7 || ^9"
  4068. },
  4069. "type": "drupal-module",
  4070. "extra": {
  4071. "drupal": {
  4072. "version": "8.x-3.4",
  4073. "datestamp": "1585763383",
  4074. "security-coverage": {
  4075. "status": "covered",
  4076. "message": "Covered by Drupal's security advisory policy"
  4077. }
  4078. }
  4079. },
  4080. "notification-url": "https://packages.drupal.org/8/downloads",
  4081. "license": [
  4082. "GPL-2.0+"
  4083. ],
  4084. "authors": [
  4085. {
  4086. "name": "Kris Vanderwater (EclipseGc)",
  4087. "homepage": "https://www.drupal.org/u/eclipsegc",
  4088. "role": "Maintainer"
  4089. },
  4090. {
  4091. "name": "Jakob Perry (japerry)",
  4092. "homepage": "https://www.drupal.org/u/japerry",
  4093. "role": "Maintainer"
  4094. },
  4095. {
  4096. "name": "Tim Plunkett (tim.plunkett)",
  4097. "homepage": "https://www.drupal.org/u/timplunkett",
  4098. "role": "Maintainer"
  4099. },
  4100. {
  4101. "name": "James Gilliland (neclimdul)",
  4102. "homepage": "https://www.drupal.org/u/neclimdul",
  4103. "role": "Maintainer"
  4104. },
  4105. {
  4106. "name": "Daniel Wehner (dawehner)",
  4107. "homepage": "https://www.drupal.org/u/dawehner",
  4108. "role": "Maintainer"
  4109. },
  4110. {
  4111. "name": "joelpittet",
  4112. "homepage": "https://www.drupal.org/user/160302"
  4113. },
  4114. {
  4115. "name": "merlinofchaos",
  4116. "homepage": "https://www.drupal.org/user/26979"
  4117. },
  4118. {
  4119. "name": "neclimdul",
  4120. "homepage": "https://www.drupal.org/user/48673"
  4121. },
  4122. {
  4123. "name": "sdboyer",
  4124. "homepage": "https://www.drupal.org/user/146719"
  4125. },
  4126. {
  4127. "name": "sun",
  4128. "homepage": "https://www.drupal.org/user/54136"
  4129. },
  4130. {
  4131. "name": "tim.plunkett",
  4132. "homepage": "https://www.drupal.org/user/241634"
  4133. }
  4134. ],
  4135. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  4136. "homepage": "https://www.drupal.org/project/ctools",
  4137. "support": {
  4138. "source": "https://git.drupalcode.org/project/ctools",
  4139. "issues": "https://www.drupal.org/project/issues/ctools"
  4140. }
  4141. },
  4142. {
  4143. "name": "drupal/date_range_formatter",
  4144. "version": "dev-9.0.x",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  4148. "reference": "c34acb20c37e6210099bf3080352a6da7227b867"
  4149. },
  4150. "require": {
  4151. "drupal/core": "^8 || ^9"
  4152. },
  4153. "type": "drupal-module",
  4154. "extra": {
  4155. "branch-alias": {
  4156. "dev-9.0.x": "9.0.x-dev"
  4157. },
  4158. "drupal": {
  4159. "version": "9.0.x-dev",
  4160. "datestamp": "1589956448",
  4161. "security-coverage": {
  4162. "status": "not-covered",
  4163. "message": "Dev releases are not covered by Drupal security advisories."
  4164. }
  4165. }
  4166. },
  4167. "notification-url": "https://packages.drupal.org/8/downloads",
  4168. "license": [
  4169. "GPL-2.0-or-later"
  4170. ],
  4171. "authors": [
  4172. {
  4173. "name": "maximpodorov",
  4174. "homepage": "https://www.drupal.org/user/515310"
  4175. },
  4176. {
  4177. "name": "sudishth",
  4178. "homepage": "https://www.drupal.org/user/1440562"
  4179. }
  4180. ],
  4181. "description": "Formats date ranges.",
  4182. "homepage": "https://www.drupal.org/project/date_range_formatter",
  4183. "support": {
  4184. "source": "https://git.drupalcode.org/project/date_range_formatter"
  4185. },
  4186. "time": "2020-05-20T06:32:37+00:00"
  4187. },
  4188. {
  4189. "name": "drupal/devel",
  4190. "version": "4.1.1",
  4191. "source": {
  4192. "type": "git",
  4193. "url": "https://git.drupalcode.org/project/devel.git",
  4194. "reference": "4.1.1"
  4195. },
  4196. "dist": {
  4197. "type": "zip",
  4198. "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip",
  4199. "reference": "4.1.1",
  4200. "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198"
  4201. },
  4202. "require": {
  4203. "doctrine/common": "^2.7",
  4204. "drupal/core": "^8.8 || ^9",
  4205. "symfony/var-dumper": "^4 || ^5"
  4206. },
  4207. "conflict": {
  4208. "kint-php/kint": "<3"
  4209. },
  4210. "require-dev": {
  4211. "drush/drush": "^10"
  4212. },
  4213. "suggest": {
  4214. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  4215. },
  4216. "type": "drupal-module",
  4217. "extra": {
  4218. "drupal": {
  4219. "version": "4.1.1",
  4220. "datestamp": "1609419527",
  4221. "security-coverage": {
  4222. "status": "covered",
  4223. "message": "Covered by Drupal's security advisory policy"
  4224. }
  4225. },
  4226. "drush": {
  4227. "services": {
  4228. "drush.services.yml": "^9 || ^10"
  4229. }
  4230. }
  4231. },
  4232. "notification-url": "https://packages.drupal.org/8/downloads",
  4233. "license": [
  4234. "GPL-2.0-or-later"
  4235. ],
  4236. "authors": [
  4237. {
  4238. "name": "drupalspoons",
  4239. "homepage": "https://www.drupal.org/user/3647684"
  4240. },
  4241. {
  4242. "name": "moshe weitzman",
  4243. "homepage": "https://www.drupal.org/user/23"
  4244. }
  4245. ],
  4246. "description": "Various blocks, pages, and functions for developers.",
  4247. "homepage": "https://www.drupal.org/project/devel",
  4248. "support": {
  4249. "source": "https://gitlab.com/drupalspoons/devel",
  4250. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  4251. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  4252. }
  4253. },
  4254. {
  4255. "name": "drupal/domain",
  4256. "version": "dev-1.x",
  4257. "source": {
  4258. "type": "git",
  4259. "url": "https://git.drupalcode.org/project/domain.git",
  4260. "reference": "bb4973dd3d7ecee279dcf521c05eb6a5589cf05b"
  4261. },
  4262. "require": {
  4263. "drupal/core": "^8 || ^9"
  4264. },
  4265. "require-dev": {
  4266. "drupal/domain_access": "*",
  4267. "drupal/domain_config": "*"
  4268. },
  4269. "type": "drupal-module",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-1.x": "1.x-dev"
  4273. },
  4274. "drupal": {
  4275. "version": "8.x-1.x-dev",
  4276. "datestamp": "1603119924",
  4277. "security-coverage": {
  4278. "status": "not-covered",
  4279. "message": "Dev releases are not covered by Drupal security advisories."
  4280. }
  4281. }
  4282. },
  4283. "notification-url": "https://packages.drupal.org/8/downloads",
  4284. "license": [
  4285. "GPL-2.0-or-later"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "agentrickard",
  4290. "homepage": "https://www.drupal.org/user/20975"
  4291. },
  4292. {
  4293. "name": "nonsie",
  4294. "homepage": "https://www.drupal.org/user/29899"
  4295. }
  4296. ],
  4297. "description": "Creates domain records within a Drupal installation.",
  4298. "homepage": "https://www.drupal.org/project/domain",
  4299. "support": {
  4300. "source": "https://git.drupalcode.org/project/domain"
  4301. },
  4302. "time": "2020-11-18T18:57:19+00:00"
  4303. },
  4304. {
  4305. "name": "drupal/domain_alias",
  4306. "version": "dev-1.x",
  4307. "require": {
  4308. "drupal/core": "^8 || ^9",
  4309. "drupal/domain": "*"
  4310. },
  4311. "type": "metapackage",
  4312. "extra": {
  4313. "branch-alias": {
  4314. "dev-1.x": "1.x-dev"
  4315. },
  4316. "drupal": {
  4317. "version": "8.x-1.x-dev",
  4318. "datestamp": "1603119924",
  4319. "security-coverage": {
  4320. "status": "not-covered",
  4321. "message": "Dev releases are not covered by Drupal security advisories."
  4322. }
  4323. }
  4324. },
  4325. "notification-url": "https://packages.drupal.org/8/downloads",
  4326. "license": [
  4327. "GPL-2.0-or-later"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "agentrickard",
  4332. "homepage": "https://www.drupal.org/user/20975"
  4333. },
  4334. {
  4335. "name": "nonsie",
  4336. "homepage": "https://www.drupal.org/user/29899"
  4337. }
  4338. ],
  4339. "description": "Maps multiple host requests to a single domain record.",
  4340. "homepage": "https://www.drupal.org/project/domain",
  4341. "support": {
  4342. "source": "https://git.drupalcode.org/project/domain"
  4343. }
  4344. },
  4345. {
  4346. "name": "drupal/domain_config",
  4347. "version": "dev-1.x",
  4348. "require": {
  4349. "drupal/core": "^8 || ^9",
  4350. "drupal/domain": "*"
  4351. },
  4352. "type": "metapackage",
  4353. "extra": {
  4354. "branch-alias": {
  4355. "dev-1.x": "1.x-dev"
  4356. },
  4357. "drupal": {
  4358. "version": "8.x-1.x-dev",
  4359. "datestamp": "1603119924",
  4360. "security-coverage": {
  4361. "status": "not-covered",
  4362. "message": "Dev releases are not covered by Drupal security advisories."
  4363. }
  4364. }
  4365. },
  4366. "notification-url": "https://packages.drupal.org/8/downloads",
  4367. "license": [
  4368. "GPL-2.0-or-later"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "agentrickard",
  4373. "homepage": "https://www.drupal.org/user/20975"
  4374. },
  4375. {
  4376. "name": "nonsie",
  4377. "homepage": "https://www.drupal.org/user/29899"
  4378. }
  4379. ],
  4380. "description": "Allows domain specific configuration.",
  4381. "homepage": "https://www.drupal.org/project/domain",
  4382. "support": {
  4383. "source": "https://git.drupalcode.org/project/domain"
  4384. }
  4385. },
  4386. {
  4387. "name": "drupal/domain_site_settings",
  4388. "version": "dev-1.x",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4392. "reference": "b3177fc7257cae13fe9c6ff6f65d86257a194d84"
  4393. },
  4394. "require": {
  4395. "drupal/core": "^8 || ^9",
  4396. "drupal/domain": "*",
  4397. "drupal/domain_config": "*"
  4398. },
  4399. "type": "drupal-module",
  4400. "extra": {
  4401. "branch-alias": {
  4402. "dev-1.x": "1.x-dev"
  4403. },
  4404. "drupal": {
  4405. "version": "8.x-1.3+7-dev",
  4406. "datestamp": "1584297727",
  4407. "security-coverage": {
  4408. "status": "not-covered",
  4409. "message": "Dev releases are not covered by Drupal security advisories."
  4410. }
  4411. }
  4412. },
  4413. "notification-url": "https://packages.drupal.org/8/downloads",
  4414. "license": [
  4415. "GPL-2.0+"
  4416. ],
  4417. "authors": [
  4418. {
  4419. "name": "aloknarwaria",
  4420. "homepage": "https://www.drupal.org/user/906640"
  4421. },
  4422. {
  4423. "name": "malaynayak",
  4424. "homepage": "https://www.drupal.org/user/3529755"
  4425. }
  4426. ],
  4427. "description": "Basic Site Setting for Domains.",
  4428. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4429. "keywords": [
  4430. "Drupal"
  4431. ],
  4432. "support": {
  4433. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4434. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4435. },
  4436. "time": "2020-03-15T18:41:41+00:00"
  4437. },
  4438. {
  4439. "name": "drupal/email_registration",
  4440. "version": "1.1.0",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://git.drupalcode.org/project/email_registration.git",
  4444. "reference": "8.x-1.1"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  4449. "reference": "8.x-1.1",
  4450. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  4451. },
  4452. "require": {
  4453. "drupal/core": "^8.7.7 || ^9"
  4454. },
  4455. "conflict": {
  4456. "drupal/commerce": "<2.12"
  4457. },
  4458. "require-dev": {
  4459. "drupal/commerce": "^2.0"
  4460. },
  4461. "type": "drupal-module",
  4462. "extra": {
  4463. "drupal": {
  4464. "version": "8.x-1.1",
  4465. "datestamp": "1592317072",
  4466. "security-coverage": {
  4467. "status": "covered",
  4468. "message": "Covered by Drupal's security advisory policy"
  4469. }
  4470. }
  4471. },
  4472. "notification-url": "https://packages.drupal.org/8/downloads",
  4473. "license": [
  4474. "GPL-2.0-or-later"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Greg Knaddison (greggles)",
  4479. "homepage": "https://www.drupal.org/u/greggles",
  4480. "role": "Maintainer"
  4481. },
  4482. {
  4483. "name": "Andrey Postnikov (andypost)",
  4484. "homepage": "https://www.drupal.org/u/andypost",
  4485. "role": "Maintainer"
  4486. },
  4487. {
  4488. "name": "Chris Herberte",
  4489. "homepage": "https://www.drupal.org/u/chris-herberte",
  4490. "role": "Maintainer"
  4491. },
  4492. {
  4493. "name": "Moshe Weitzman (moshe weitzman)",
  4494. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4495. "role": "Maintainer"
  4496. }
  4497. ],
  4498. "description": "Allows users to register with an email address as their username.",
  4499. "homepage": "https://www.drupal.org/project/email_registration",
  4500. "support": {
  4501. "source": "https://git.drupalcode.org/project/email_registration",
  4502. "issues": "http://drupal.org/project/issues/email_registration"
  4503. }
  4504. },
  4505. {
  4506. "name": "drupal/embed",
  4507. "version": "1.4.0",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://git.drupalcode.org/project/embed.git",
  4511. "reference": "8.x-1.4"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip",
  4516. "reference": "8.x-1.4",
  4517. "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5"
  4518. },
  4519. "require": {
  4520. "drupal/core": "^8.7.7 || ^9"
  4521. },
  4522. "type": "drupal-module",
  4523. "extra": {
  4524. "drupal": {
  4525. "version": "8.x-1.4",
  4526. "datestamp": "1590176831",
  4527. "security-coverage": {
  4528. "status": "covered",
  4529. "message": "Covered by Drupal's security advisory policy"
  4530. }
  4531. }
  4532. },
  4533. "notification-url": "https://packages.drupal.org/8/downloads",
  4534. "license": [
  4535. "GPL-2.0-or-later"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Dave Reid",
  4540. "homepage": "https://www.drupal.org/user/53892"
  4541. },
  4542. {
  4543. "name": "Devin Carlson",
  4544. "homepage": "https://www.drupal.org/user/290182"
  4545. },
  4546. {
  4547. "name": "Drupal Media Team",
  4548. "homepage": "https://www.drupal.org/user/3260690"
  4549. },
  4550. {
  4551. "name": "cs_shadow",
  4552. "homepage": "https://www.drupal.org/user/2828287"
  4553. },
  4554. {
  4555. "name": "phenaproxima",
  4556. "homepage": "https://www.drupal.org/user/205645"
  4557. },
  4558. {
  4559. "name": "slashrsm",
  4560. "homepage": "https://www.drupal.org/user/744628"
  4561. }
  4562. ],
  4563. "description": "Provides a framework for different types of embeds in text editors.",
  4564. "homepage": "https://www.drupal.org/project/embed",
  4565. "support": {
  4566. "source": "https://git.drupalcode.org/project/embed"
  4567. }
  4568. },
  4569. {
  4570. "name": "drupal/entity",
  4571. "version": "1.2.0",
  4572. "source": {
  4573. "type": "git",
  4574. "url": "https://git.drupalcode.org/project/entity.git",
  4575. "reference": "8.x-1.2"
  4576. },
  4577. "dist": {
  4578. "type": "zip",
  4579. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip",
  4580. "reference": "8.x-1.2",
  4581. "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079"
  4582. },
  4583. "require": {
  4584. "drupal/core": "^8.8 || ^9"
  4585. },
  4586. "type": "drupal-module",
  4587. "extra": {
  4588. "drupal": {
  4589. "version": "8.x-1.2",
  4590. "datestamp": "1606399149",
  4591. "security-coverage": {
  4592. "status": "covered",
  4593. "message": "Covered by Drupal's security advisory policy"
  4594. }
  4595. }
  4596. },
  4597. "notification-url": "https://packages.drupal.org/8/downloads",
  4598. "license": [
  4599. "GPL-2.0-or-later"
  4600. ],
  4601. "authors": [
  4602. {
  4603. "name": "Berdir",
  4604. "homepage": "https://www.drupal.org/user/214652"
  4605. },
  4606. {
  4607. "name": "bojanz",
  4608. "homepage": "https://www.drupal.org/user/86106"
  4609. },
  4610. {
  4611. "name": "dawehner",
  4612. "homepage": "https://www.drupal.org/user/99340"
  4613. },
  4614. {
  4615. "name": "dixon_",
  4616. "homepage": "https://www.drupal.org/user/239911"
  4617. },
  4618. {
  4619. "name": "fago",
  4620. "homepage": "https://www.drupal.org/user/16747"
  4621. },
  4622. {
  4623. "name": "mglaman",
  4624. "homepage": "https://www.drupal.org/user/2416470"
  4625. }
  4626. ],
  4627. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4628. "homepage": "http://drupal.org/project/entity",
  4629. "support": {
  4630. "source": "https://git.drupalcode.org/project/entity"
  4631. }
  4632. },
  4633. {
  4634. "name": "drupal/entity_browser",
  4635. "version": "2.5.0",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4639. "reference": "8.x-2.5"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  4644. "reference": "8.x-2.5",
  4645. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  4646. },
  4647. "require": {
  4648. "drupal/core": "^8.8 || ^9"
  4649. },
  4650. "require-dev": {
  4651. "drupal/embed": "~1.0",
  4652. "drupal/entity_embed": "1.x-dev",
  4653. "drupal/entity_reference_revisions": "1.x-dev",
  4654. "drupal/entityqueue": "1.x-dev",
  4655. "drupal/inline_entity_form": "1.x-dev",
  4656. "drupal/paragraphs": "1.x-dev",
  4657. "drupal/token": "~1.0"
  4658. },
  4659. "type": "drupal-module",
  4660. "extra": {
  4661. "drupal": {
  4662. "version": "8.x-2.5",
  4663. "datestamp": "1588015429",
  4664. "security-coverage": {
  4665. "status": "covered",
  4666. "message": "Covered by Drupal's security advisory policy"
  4667. }
  4668. }
  4669. },
  4670. "notification-url": "https://packages.drupal.org/8/downloads",
  4671. "license": [
  4672. "GPL-2.0+"
  4673. ],
  4674. "authors": [
  4675. {
  4676. "name": "Janez Urevc",
  4677. "homepage": "https://github.com/slashrsm",
  4678. "role": "Maintainer"
  4679. },
  4680. {
  4681. "name": "Primoz Hmeljak",
  4682. "homepage": "https://github.com/primsi",
  4683. "role": "Maintainer"
  4684. },
  4685. {
  4686. "name": "See other contributors",
  4687. "homepage": "https://www.drupal.org/node/1943336/committers",
  4688. "role": "contributor"
  4689. },
  4690. {
  4691. "name": "Drupal Media Team",
  4692. "homepage": "https://www.drupal.org/user/3260690"
  4693. },
  4694. {
  4695. "name": "Primsi",
  4696. "homepage": "https://www.drupal.org/user/282629"
  4697. },
  4698. {
  4699. "name": "marcingy",
  4700. "homepage": "https://www.drupal.org/user/77320"
  4701. },
  4702. {
  4703. "name": "oknate",
  4704. "homepage": "https://www.drupal.org/user/471638"
  4705. },
  4706. {
  4707. "name": "samuel.mortenson",
  4708. "homepage": "https://www.drupal.org/user/2582268"
  4709. },
  4710. {
  4711. "name": "slashrsm",
  4712. "homepage": "https://www.drupal.org/user/744628"
  4713. }
  4714. ],
  4715. "description": "Entity browsing and selecting component.",
  4716. "homepage": "http://drupal.org/project/entity_browser",
  4717. "support": {
  4718. "source": "https://git.drupalcode.org/project/entity_browser",
  4719. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4720. "irc": "irc://irc.freenode.org/drupal-contribute"
  4721. }
  4722. },
  4723. {
  4724. "name": "drupal/entity_browser_enhanced",
  4725. "version": "1.0.0",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4729. "reference": "8.x-1.0"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  4734. "reference": "8.x-1.0",
  4735. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  4736. },
  4737. "require": {
  4738. "drupal/core": "^8 || ^9",
  4739. "drupal/entity_browser": "~2.0"
  4740. },
  4741. "type": "drupal-module",
  4742. "extra": {
  4743. "drupal": {
  4744. "version": "8.x-1.0",
  4745. "datestamp": "1581940931",
  4746. "security-coverage": {
  4747. "status": "covered",
  4748. "message": "Covered by Drupal's security advisory policy"
  4749. }
  4750. },
  4751. "branch-alias": {
  4752. "dev-8.x-1.x": "8.1.x-dev"
  4753. }
  4754. },
  4755. "notification-url": "https://packages.drupal.org/8/downloads",
  4756. "license": [
  4757. "GPL-2.0-or-later"
  4758. ],
  4759. "authors": [
  4760. {
  4761. "name": "Vardot",
  4762. "homepage": "https://www.drupal.org/vardot",
  4763. "role": "Maintainer"
  4764. },
  4765. {
  4766. "name": "RajabNatshah",
  4767. "homepage": "https://www.drupal.org/user/1414312"
  4768. }
  4769. ],
  4770. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4771. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4772. "support": {
  4773. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4774. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4775. }
  4776. },
  4777. {
  4778. "name": "drupal/entity_clone",
  4779. "version": "1.0.0-beta4",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4783. "reference": "8.x-1.0-beta4"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta4.zip",
  4788. "reference": "8.x-1.0-beta4",
  4789. "shasum": "4568ca25634d4ce4f142f56156259ba1f0d9f3c1"
  4790. },
  4791. "require": {
  4792. "drupal/core": "^8 || ^9"
  4793. },
  4794. "type": "drupal-module",
  4795. "extra": {
  4796. "drupal": {
  4797. "version": "8.x-1.0-beta4",
  4798. "datestamp": "1588605099",
  4799. "security-coverage": {
  4800. "status": "not-covered",
  4801. "message": "Beta releases are not covered by Drupal security advisories."
  4802. }
  4803. }
  4804. },
  4805. "notification-url": "https://packages.drupal.org/8/downloads",
  4806. "license": [
  4807. "GPL-2.0-or-later"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "vpeltot",
  4812. "homepage": "https://www.drupal.org/user/1361586"
  4813. }
  4814. ],
  4815. "description": "Add a clone action for all entities",
  4816. "homepage": "https://www.drupal.org/project/entity_clone",
  4817. "support": {
  4818. "source": "https://git.drupalcode.org/project/entity_clone"
  4819. }
  4820. },
  4821. {
  4822. "name": "drupal/entity_reference_revisions",
  4823. "version": "1.8.0",
  4824. "source": {
  4825. "type": "git",
  4826. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4827. "reference": "8.x-1.8"
  4828. },
  4829. "dist": {
  4830. "type": "zip",
  4831. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip",
  4832. "reference": "8.x-1.8",
  4833. "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6"
  4834. },
  4835. "require": {
  4836. "drupal/core": "^8.7.7 || ^9"
  4837. },
  4838. "require-dev": {
  4839. "drupal/diff": "1.x-dev"
  4840. },
  4841. "type": "drupal-module",
  4842. "extra": {
  4843. "drupal": {
  4844. "version": "8.x-1.8",
  4845. "datestamp": "1583961846",
  4846. "security-coverage": {
  4847. "status": "covered",
  4848. "message": "Covered by Drupal's security advisory policy"
  4849. }
  4850. }
  4851. },
  4852. "notification-url": "https://packages.drupal.org/8/downloads",
  4853. "license": [
  4854. "GPL-2.0"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Berdir",
  4859. "homepage": "https://www.drupal.org/user/214652"
  4860. },
  4861. {
  4862. "name": "Frans",
  4863. "homepage": "https://www.drupal.org/user/514222"
  4864. },
  4865. {
  4866. "name": "jeroen.b",
  4867. "homepage": "https://www.drupal.org/user/1853532"
  4868. },
  4869. {
  4870. "name": "miro_dietiker",
  4871. "homepage": "https://www.drupal.org/user/227761"
  4872. }
  4873. ],
  4874. "description": "Entity Reference Revisions",
  4875. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4876. "support": {
  4877. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4878. }
  4879. },
  4880. {
  4881. "name": "drupal/extlink",
  4882. "version": "1.5.0",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://git.drupalcode.org/project/extlink.git",
  4886. "reference": "8.x-1.5"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.5.zip",
  4891. "reference": "8.x-1.5",
  4892. "shasum": "5a2b74d12ff9e9257a0566cca8dac3872da64970"
  4893. },
  4894. "require": {
  4895. "drupal/core": "^8 || ^9"
  4896. },
  4897. "type": "drupal-module",
  4898. "extra": {
  4899. "drupal": {
  4900. "version": "8.x-1.5",
  4901. "datestamp": "1601382250",
  4902. "security-coverage": {
  4903. "status": "covered",
  4904. "message": "Covered by Drupal's security advisory policy"
  4905. }
  4906. }
  4907. },
  4908. "notification-url": "https://packages.drupal.org/8/downloads",
  4909. "license": [
  4910. "GPL-2.0-or-later"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Nate Lampton",
  4915. "homepage": "https://www.drupal.org/u/quicksketch",
  4916. "role": "Maintainer"
  4917. },
  4918. {
  4919. "name": "Lachlan Ennis",
  4920. "homepage": "https://www.drupal.org/u/elachlan",
  4921. "role": "Maintainer"
  4922. },
  4923. {
  4924. "name": "Neslee Canil Pinto",
  4925. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4926. "role": "Maintainer"
  4927. }
  4928. ],
  4929. "description": "Modify behavior and appearance of external links.",
  4930. "homepage": "https://www.drupal.org/project/extlink",
  4931. "keywords": [
  4932. "Drupal",
  4933. "External Links"
  4934. ],
  4935. "support": {
  4936. "source": "https://git.drupalcode.org/project/extlink",
  4937. "issues": "https://www.drupal.org/project/issues/extlink"
  4938. }
  4939. },
  4940. {
  4941. "name": "drupal/field_group",
  4942. "version": "3.1.0",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://git.drupalcode.org/project/field_group.git",
  4946. "reference": "8.x-3.1"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4951. "reference": "8.x-3.1",
  4952. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4953. },
  4954. "require": {
  4955. "drupal/core": "^8.8 || ^9"
  4956. },
  4957. "require-dev": {
  4958. "drupal/jquery_ui_accordion": "^1.0"
  4959. },
  4960. "type": "drupal-module",
  4961. "extra": {
  4962. "drupal": {
  4963. "version": "8.x-3.1",
  4964. "datestamp": "1591772567",
  4965. "security-coverage": {
  4966. "status": "covered",
  4967. "message": "Covered by Drupal's security advisory policy"
  4968. }
  4969. }
  4970. },
  4971. "notification-url": "https://packages.drupal.org/8/downloads",
  4972. "license": [
  4973. "GPL-2.0-or-later"
  4974. ],
  4975. "authors": [
  4976. {
  4977. "name": "Hydra",
  4978. "homepage": "https://www.drupal.org/user/647364"
  4979. },
  4980. {
  4981. "name": "Stalski",
  4982. "homepage": "https://www.drupal.org/user/322618"
  4983. },
  4984. {
  4985. "name": "jyve",
  4986. "homepage": "https://www.drupal.org/user/591438"
  4987. },
  4988. {
  4989. "name": "nils.destoop",
  4990. "homepage": "https://www.drupal.org/user/361625"
  4991. },
  4992. {
  4993. "name": "swentel",
  4994. "homepage": "https://www.drupal.org/user/107403"
  4995. }
  4996. ],
  4997. "description": "Provides the field_group module.",
  4998. "homepage": "https://www.drupal.org/project/field_group",
  4999. "support": {
  5000. "source": "https://git.drupalcode.org/project/field_group",
  5001. "issues": "https://www.drupal.org/project/issues/field_group"
  5002. }
  5003. },
  5004. {
  5005. "name": "drupal/file_mdm",
  5006. "version": "2.1.0",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://git.drupalcode.org/project/file_mdm.git",
  5010. "reference": "8.x-2.1"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip",
  5015. "reference": "8.x-2.1",
  5016. "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd"
  5017. },
  5018. "require": {
  5019. "drupal/core": "^8.8 || ^9",
  5020. "lsolesen/pel": "^0.9.8",
  5021. "phenx/php-font-lib": "^0.5.2",
  5022. "php": ">=7"
  5023. },
  5024. "require-dev": {
  5025. "drupal/image_effects": "*"
  5026. },
  5027. "type": "drupal-module",
  5028. "extra": {
  5029. "drupal": {
  5030. "version": "8.x-2.1",
  5031. "datestamp": "1586801064",
  5032. "security-coverage": {
  5033. "status": "covered",
  5034. "message": "Covered by Drupal's security advisory policy"
  5035. }
  5036. }
  5037. },
  5038. "notification-url": "https://packages.drupal.org/8/downloads",
  5039. "license": [
  5040. "GPL-2.0-or-later"
  5041. ],
  5042. "authors": [
  5043. {
  5044. "name": "mondrake",
  5045. "homepage": "https://www.drupal.org/user/1307444"
  5046. }
  5047. ],
  5048. "description": "Provides a service to manage file metadata.",
  5049. "homepage": "https://www.drupal.org/project/file_mdm",
  5050. "support": {
  5051. "source": "https://git.drupalcode.org/project/file_mdm"
  5052. }
  5053. },
  5054. {
  5055. "name": "drupal/filefield_sources",
  5056. "version": "dev-1.x",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  5060. "reference": "2477ff91863c9c19569de4ebb3d379d0e5e24312"
  5061. },
  5062. "require": {
  5063. "drupal/core": "^8 || ^9"
  5064. },
  5065. "require-dev": {
  5066. "drupal/imce": "*"
  5067. },
  5068. "type": "drupal-module",
  5069. "extra": {
  5070. "branch-alias": {
  5071. "dev-1.x": "1.x-dev"
  5072. },
  5073. "drupal": {
  5074. "version": "8.x-1.0-alpha3+3-dev",
  5075. "datestamp": "1604712687",
  5076. "security-coverage": {
  5077. "status": "not-covered",
  5078. "message": "Dev releases are not covered by Drupal security advisories."
  5079. }
  5080. }
  5081. },
  5082. "notification-url": "https://packages.drupal.org/8/downloads",
  5083. "license": [
  5084. "GPL-2.0-or-later"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "Nate Lampton (quicksketch)",
  5089. "homepage": "https://www.drupal.org/u/quicksketch",
  5090. "role": "Maintainer"
  5091. },
  5092. {
  5093. "name": "Andrey Khromyshev (profak)",
  5094. "homepage": "https://www.drupal.org/u/profak",
  5095. "role": "Maintainer"
  5096. },
  5097. {
  5098. "name": "David Valdez (gnuget)",
  5099. "homepage": "https://www.drupal.org/u/gnuget",
  5100. "role": "Maintainer"
  5101. }
  5102. ],
  5103. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  5104. "homepage": "https://www.drupal.org/project/filefield_sources",
  5105. "support": {
  5106. "source": "https://git.drupalcode.org/project/filefield_sources",
  5107. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  5108. "irc": "irc://irc.freenode.org/drupal-contribute"
  5109. },
  5110. "time": "2020-11-07T01:30:52+00:00"
  5111. },
  5112. {
  5113. "name": "drupal/filter_perms",
  5114. "version": "dev-1.x",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://git.drupalcode.org/project/filter_perms.git",
  5118. "reference": "f9abe65da2236de801902256f8388291bc3d2c83"
  5119. },
  5120. "require": {
  5121. "drupal/core": "^8 || ^9"
  5122. },
  5123. "type": "drupal-module",
  5124. "extra": {
  5125. "branch-alias": {
  5126. "dev-1.x": "1.x-dev"
  5127. },
  5128. "drupal": {
  5129. "version": "8.x-1.0-alpha1+2-dev",
  5130. "datestamp": "1599239698",
  5131. "security-coverage": {
  5132. "status": "not-covered",
  5133. "message": "Dev releases are not covered by Drupal security advisories."
  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": "cYu",
  5144. "homepage": "https://www.drupal.org/user/202205"
  5145. },
  5146. {
  5147. "name": "deekayen",
  5148. "homepage": "https://www.drupal.org/user/972"
  5149. },
  5150. {
  5151. "name": "ivagold",
  5152. "homepage": "https://www.drupal.org/user/3061533"
  5153. },
  5154. {
  5155. "name": "mgbellaire",
  5156. "homepage": "https://www.drupal.org/user/1831932"
  5157. },
  5158. {
  5159. "name": "willzyx",
  5160. "homepage": "https://www.drupal.org/user/1043862"
  5161. }
  5162. ],
  5163. "description": "Provides role and module filters to simplify the user permissions page.",
  5164. "homepage": "https://www.drupal.org/project/filter_perms",
  5165. "support": {
  5166. "source": "https://git.drupalcode.org/project/filter_perms"
  5167. },
  5168. "time": "2020-11-17T18:20:11+00:00"
  5169. },
  5170. {
  5171. "name": "drupal/graphql",
  5172. "version": "4.0.0",
  5173. "source": {
  5174. "type": "git",
  5175. "url": "https://git.drupalcode.org/project/graphql.git",
  5176. "reference": "8.x-4.0"
  5177. },
  5178. "dist": {
  5179. "type": "zip",
  5180. "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.0.zip",
  5181. "reference": "8.x-4.0",
  5182. "shasum": "639dd29fb6005ba2b15a389f03a6596308c9f14e"
  5183. },
  5184. "require": {
  5185. "drupal/core": "^8 || ^9",
  5186. "drupal/typed_data": "*",
  5187. "php": ">=7.2",
  5188. "webonyx/graphql-php": "^14.3.0"
  5189. },
  5190. "require-dev": {
  5191. "drupal/node-node": "*"
  5192. },
  5193. "type": "drupal-module",
  5194. "extra": {
  5195. "drupal": {
  5196. "version": "8.x-4.0",
  5197. "datestamp": "1607692423",
  5198. "security-coverage": {
  5199. "status": "covered",
  5200. "message": "Covered by Drupal's security advisory policy"
  5201. }
  5202. }
  5203. },
  5204. "notification-url": "https://packages.drupal.org/8/downloads",
  5205. "license": [
  5206. "GPL-2.0+"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "fubhy",
  5211. "homepage": "https://www.drupal.org/user/761344"
  5212. },
  5213. {
  5214. "name": "hideaway",
  5215. "homepage": "https://www.drupal.org/user/741876"
  5216. },
  5217. {
  5218. "name": "joaogarin",
  5219. "homepage": "https://www.drupal.org/user/612814"
  5220. },
  5221. {
  5222. "name": "klausi",
  5223. "homepage": "https://www.drupal.org/user/262198"
  5224. },
  5225. {
  5226. "name": "pmelab",
  5227. "homepage": "https://www.drupal.org/user/555322"
  5228. }
  5229. ],
  5230. "description": "Exposes your Drupal data model through a GraphQL schema.",
  5231. "homepage": "http://drupal.org/project/graphql",
  5232. "support": {
  5233. "source": "https://git.drupalcode.org/project/graphql"
  5234. }
  5235. },
  5236. {
  5237. "name": "drupal/honeypot",
  5238. "version": "2.0.1",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://git.drupalcode.org/project/honeypot.git",
  5242. "reference": "2.0.1"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip",
  5247. "reference": "2.0.1",
  5248. "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632"
  5249. },
  5250. "require": {
  5251. "drupal/core": "^8.0 || ^9.0"
  5252. },
  5253. "type": "drupal-module",
  5254. "extra": {
  5255. "drupal": {
  5256. "version": "2.0.1",
  5257. "datestamp": "1597855128",
  5258. "security-coverage": {
  5259. "status": "covered",
  5260. "message": "Covered by Drupal's security advisory policy"
  5261. }
  5262. }
  5263. },
  5264. "notification-url": "https://packages.drupal.org/8/downloads",
  5265. "license": [
  5266. "GPL-2.0-or-later"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Jeff Geerling",
  5271. "homepage": "https://www.drupal.org/user/213194",
  5272. "email": "geerlingguy@mac.com"
  5273. },
  5274. {
  5275. "name": "geerlingguy",
  5276. "homepage": "https://www.drupal.org/user/389011"
  5277. },
  5278. {
  5279. "name": "vijaycs85",
  5280. "homepage": "https://www.drupal.org/user/93488"
  5281. }
  5282. ],
  5283. "description": "Mitigates spam form submissions using the honeypot method.",
  5284. "homepage": "https://www.drupal.org/project/honeypot",
  5285. "keywords": [
  5286. "deterrent",
  5287. "form",
  5288. "honeypot",
  5289. "honeytrap",
  5290. "php",
  5291. "spam"
  5292. ],
  5293. "support": {
  5294. "source": "https://git.drupalcode.org/project/honeypot",
  5295. "issues": "https://www.drupal.org/project/issues/honeypot"
  5296. }
  5297. },
  5298. {
  5299. "name": "drupal/imagemagick",
  5300. "version": "3.1.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://git.drupalcode.org/project/imagemagick.git",
  5304. "reference": "8.x-3.1"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.1.zip",
  5309. "reference": "8.x-3.1",
  5310. "shasum": "f427b06312325aa667c549fed261f73f29e231e7"
  5311. },
  5312. "require": {
  5313. "drupal/core": "^8.8 || ^9",
  5314. "drupal/file_mdm": "^2",
  5315. "drupal/sophron": "^1",
  5316. "php": ">=7"
  5317. },
  5318. "type": "drupal-module",
  5319. "extra": {
  5320. "drupal": {
  5321. "version": "8.x-3.1",
  5322. "datestamp": "1581420882",
  5323. "security-coverage": {
  5324. "status": "covered",
  5325. "message": "Covered by Drupal's security advisory policy"
  5326. }
  5327. }
  5328. },
  5329. "notification-url": "https://packages.drupal.org/8/downloads",
  5330. "license": [
  5331. "GPL-2.0-or-later"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Chris Charlton",
  5336. "homepage": "https://www.drupal.org/user/17089"
  5337. },
  5338. {
  5339. "name": "chx",
  5340. "homepage": "https://www.drupal.org/user/9446"
  5341. },
  5342. {
  5343. "name": "claudiu.cristea",
  5344. "homepage": "https://www.drupal.org/user/56348"
  5345. },
  5346. {
  5347. "name": "dman",
  5348. "homepage": "https://www.drupal.org/user/33240"
  5349. },
  5350. {
  5351. "name": "dopry",
  5352. "homepage": "https://www.drupal.org/user/22202"
  5353. },
  5354. {
  5355. "name": "drewish",
  5356. "homepage": "https://www.drupal.org/user/34869"
  5357. },
  5358. {
  5359. "name": "gdl",
  5360. "homepage": "https://www.drupal.org/user/507326"
  5361. },
  5362. {
  5363. "name": "mondrake",
  5364. "homepage": "https://www.drupal.org/user/1307444"
  5365. },
  5366. {
  5367. "name": "quicksketch",
  5368. "homepage": "https://www.drupal.org/user/35821"
  5369. },
  5370. {
  5371. "name": "sun",
  5372. "homepage": "https://www.drupal.org/user/54136"
  5373. },
  5374. {
  5375. "name": "walkah",
  5376. "homepage": "https://www.drupal.org/user/1531"
  5377. }
  5378. ],
  5379. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5380. "homepage": "https://www.drupal.org/project/imagemagick",
  5381. "support": {
  5382. "source": "https://git.drupalcode.org/project/imagemagick"
  5383. }
  5384. },
  5385. {
  5386. "name": "drupal/inline_entity_form",
  5387. "version": "1.0.0-rc8",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5391. "reference": "8.x-1.0-rc8"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc8.zip",
  5396. "reference": "8.x-1.0-rc8",
  5397. "shasum": "103de382dd07b4acdd6bacd5ad76628fdf0eefda"
  5398. },
  5399. "require": {
  5400. "drupal/core": "^8.7.7 || ^9"
  5401. },
  5402. "require-dev": {
  5403. "drupal/entity_reference_revisions": "^1.0"
  5404. },
  5405. "type": "drupal-module",
  5406. "extra": {
  5407. "drupal": {
  5408. "version": "8.x-1.0-rc8",
  5409. "datestamp": "1602172716",
  5410. "security-coverage": {
  5411. "status": "not-covered",
  5412. "message": "RC releases are not covered by Drupal security advisories."
  5413. }
  5414. }
  5415. },
  5416. "notification-url": "https://packages.drupal.org/8/downloads",
  5417. "license": [
  5418. "GPL-2.0-or-later"
  5419. ],
  5420. "authors": [
  5421. {
  5422. "name": "bojanz",
  5423. "homepage": "https://www.drupal.org/user/86106"
  5424. },
  5425. {
  5426. "name": "dawehner",
  5427. "homepage": "https://www.drupal.org/user/99340"
  5428. },
  5429. {
  5430. "name": "geek-merlin",
  5431. "homepage": "https://www.drupal.org/user/229048"
  5432. },
  5433. {
  5434. "name": "joachim",
  5435. "homepage": "https://www.drupal.org/user/107701"
  5436. },
  5437. {
  5438. "name": "jsacksick",
  5439. "homepage": "https://www.drupal.org/user/972218"
  5440. },
  5441. {
  5442. "name": "kaythay",
  5443. "homepage": "https://www.drupal.org/user/2182186"
  5444. },
  5445. {
  5446. "name": "oknate",
  5447. "homepage": "https://www.drupal.org/user/471638"
  5448. },
  5449. {
  5450. "name": "rszrama",
  5451. "homepage": "https://www.drupal.org/user/49344"
  5452. },
  5453. {
  5454. "name": "slashrsm",
  5455. "homepage": "https://www.drupal.org/user/744628"
  5456. },
  5457. {
  5458. "name": "webflo",
  5459. "homepage": "https://www.drupal.org/user/254778"
  5460. }
  5461. ],
  5462. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5463. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5464. "support": {
  5465. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5466. }
  5467. },
  5468. {
  5469. "name": "drupal/insert",
  5470. "version": "dev-2.x",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://git.drupalcode.org/project/insert.git",
  5474. "reference": "892cb12f5c748f29106a04b4cdfd4fe77a503118"
  5475. },
  5476. "require": {
  5477. "drupal/core": "^8 || ^9"
  5478. },
  5479. "require-dev": {
  5480. "drupal/colorbox": "*"
  5481. },
  5482. "type": "drupal-module",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-2.x": "2.x-dev"
  5486. },
  5487. "drupal": {
  5488. "version": "8.x-2.0-beta1+6-dev",
  5489. "datestamp": "1597165610",
  5490. "security-coverage": {
  5491. "status": "not-covered",
  5492. "message": "Dev releases are not covered by Drupal security advisories."
  5493. }
  5494. }
  5495. },
  5496. "notification-url": "https://packages.drupal.org/8/downloads",
  5497. "license": [
  5498. "GPL-2.0-or-later"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Neslee Canil Pinto",
  5503. "homepage": "https://www.drupal.org/user/3580850"
  5504. },
  5505. {
  5506. "name": "Snater",
  5507. "homepage": "https://www.drupal.org/user/3513717"
  5508. },
  5509. {
  5510. "name": "quicksketch",
  5511. "homepage": "https://www.drupal.org/user/35821"
  5512. }
  5513. ],
  5514. "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.",
  5515. "homepage": "https://www.drupal.org/project/insert",
  5516. "support": {
  5517. "source": "https://git.drupalcode.org/project/insert"
  5518. },
  5519. "time": "2020-10-08T16:45:33+00:00"
  5520. },
  5521. {
  5522. "name": "drupal/jquery_ui",
  5523. "version": "1.4.0",
  5524. "source": {
  5525. "type": "git",
  5526. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5527. "reference": "8.x-1.4"
  5528. },
  5529. "dist": {
  5530. "type": "zip",
  5531. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  5532. "reference": "8.x-1.4",
  5533. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  5534. },
  5535. "require": {
  5536. "drupal/core": "^8 || ^9"
  5537. },
  5538. "type": "drupal-module",
  5539. "extra": {
  5540. "drupal": {
  5541. "version": "8.x-1.4",
  5542. "datestamp": "1582149957",
  5543. "security-coverage": {
  5544. "status": "covered",
  5545. "message": "Covered by Drupal's security advisory policy"
  5546. }
  5547. }
  5548. },
  5549. "notification-url": "https://packages.drupal.org/8/downloads",
  5550. "license": [
  5551. "GPL-2.0-or-later"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "RobLoach",
  5556. "homepage": "https://www.drupal.org/user/61114"
  5557. },
  5558. {
  5559. "name": "jjeff",
  5560. "homepage": "https://www.drupal.org/user/17190"
  5561. },
  5562. {
  5563. "name": "lauriii",
  5564. "homepage": "https://www.drupal.org/user/1078742"
  5565. },
  5566. {
  5567. "name": "litwol",
  5568. "homepage": "https://www.drupal.org/user/78134"
  5569. },
  5570. {
  5571. "name": "mfb",
  5572. "homepage": "https://www.drupal.org/user/12302"
  5573. },
  5574. {
  5575. "name": "mfer",
  5576. "homepage": "https://www.drupal.org/user/25701"
  5577. },
  5578. {
  5579. "name": "mikelutz",
  5580. "homepage": "https://www.drupal.org/user/2972409"
  5581. },
  5582. {
  5583. "name": "sun",
  5584. "homepage": "https://www.drupal.org/user/54136"
  5585. },
  5586. {
  5587. "name": "webchick",
  5588. "homepage": "https://www.drupal.org/user/24967"
  5589. },
  5590. {
  5591. "name": "zrpnr",
  5592. "homepage": "https://www.drupal.org/user/1448368"
  5593. }
  5594. ],
  5595. "description": "Provides jQuery UI library.",
  5596. "homepage": "https://www.drupal.org/project/jquery_ui",
  5597. "support": {
  5598. "source": "https://git.drupalcode.org/project/jquery_ui"
  5599. }
  5600. },
  5601. {
  5602. "name": "drupal/jquery_ui_button",
  5603. "version": "1.1.0",
  5604. "source": {
  5605. "type": "git",
  5606. "url": "https://git.drupalcode.org/project/jquery_ui_button.git",
  5607. "reference": "8.x-1.1"
  5608. },
  5609. "dist": {
  5610. "type": "zip",
  5611. "url": "https://ftp.drupal.org/files/projects/jquery_ui_button-8.x-1.1.zip",
  5612. "reference": "8.x-1.1",
  5613. "shasum": "70175a96c9034cc1cb2f28c415b2a9828355cc1a"
  5614. },
  5615. "require": {
  5616. "drupal/core": "^8 || ^9",
  5617. "drupal/jquery_ui": "*",
  5618. "drupal/jquery_ui_checkboxradio": "*",
  5619. "drupal/jquery_ui_controlgroup": "*"
  5620. },
  5621. "type": "drupal-module",
  5622. "extra": {
  5623. "drupal": {
  5624. "version": "8.x-1.1",
  5625. "datestamp": "1584106807",
  5626. "security-coverage": {
  5627. "status": "covered",
  5628. "message": "Covered by Drupal's security advisory policy"
  5629. }
  5630. }
  5631. },
  5632. "notification-url": "https://packages.drupal.org/8/downloads",
  5633. "license": [
  5634. "GPL-2.0-or-later"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "bnjmnm",
  5639. "homepage": "https://www.drupal.org/user/2369194"
  5640. },
  5641. {
  5642. "name": "lauriii",
  5643. "homepage": "https://www.drupal.org/user/1078742"
  5644. },
  5645. {
  5646. "name": "zrpnr",
  5647. "homepage": "https://www.drupal.org/user/1448368"
  5648. }
  5649. ],
  5650. "description": "Provides jQuery UI Button library.",
  5651. "homepage": "https://www.drupal.org/project/jquery_ui_button",
  5652. "support": {
  5653. "source": "https://git.drupalcode.org/project/jquery_ui_button"
  5654. }
  5655. },
  5656. {
  5657. "name": "drupal/jquery_ui_checkboxradio",
  5658. "version": "1.2.0",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://git.drupalcode.org/project/jquery_ui_checkboxradio.git",
  5662. "reference": "8.x-1.2"
  5663. },
  5664. "dist": {
  5665. "type": "zip",
  5666. "url": "https://ftp.drupal.org/files/projects/jquery_ui_checkboxradio-8.x-1.2.zip",
  5667. "reference": "8.x-1.2",
  5668. "shasum": "8edb088cb89f4a0f95aa9d43894bf506dc5f6fe1"
  5669. },
  5670. "require": {
  5671. "drupal/core": "^8 || ^9",
  5672. "drupal/jquery_ui": "*"
  5673. },
  5674. "type": "drupal-module",
  5675. "extra": {
  5676. "drupal": {
  5677. "version": "8.x-1.2",
  5678. "datestamp": "1584106406",
  5679. "security-coverage": {
  5680. "status": "covered",
  5681. "message": "Covered by Drupal's security advisory policy"
  5682. }
  5683. }
  5684. },
  5685. "notification-url": "https://packages.drupal.org/8/downloads",
  5686. "license": [
  5687. "GPL-2.0-or-later"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "bnjmnm",
  5692. "homepage": "https://www.drupal.org/user/2369194"
  5693. },
  5694. {
  5695. "name": "lauriii",
  5696. "homepage": "https://www.drupal.org/user/1078742"
  5697. },
  5698. {
  5699. "name": "zrpnr",
  5700. "homepage": "https://www.drupal.org/user/1448368"
  5701. }
  5702. ],
  5703. "description": "Provides jQuery UI Checkboxradio library.",
  5704. "homepage": "https://www.drupal.org/project/jquery_ui_checkboxradio",
  5705. "support": {
  5706. "source": "https://git.drupalcode.org/project/jquery_ui_checkboxradio"
  5707. }
  5708. },
  5709. {
  5710. "name": "drupal/jquery_ui_controlgroup",
  5711. "version": "1.1.0",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://git.drupalcode.org/project/jquery_ui_controlgroup.git",
  5715. "reference": "8.x-1.1"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://ftp.drupal.org/files/projects/jquery_ui_controlgroup-8.x-1.1.zip",
  5720. "reference": "8.x-1.1",
  5721. "shasum": "ddbd4f01df4e3c9566aa76ba256217a27f45f48a"
  5722. },
  5723. "require": {
  5724. "drupal/core": "^8 || ^9",
  5725. "drupal/jquery_ui": "*"
  5726. },
  5727. "type": "drupal-module",
  5728. "extra": {
  5729. "drupal": {
  5730. "version": "8.x-1.1",
  5731. "datestamp": "1584106616",
  5732. "security-coverage": {
  5733. "status": "covered",
  5734. "message": "Covered by Drupal's security advisory policy"
  5735. }
  5736. }
  5737. },
  5738. "notification-url": "https://packages.drupal.org/8/downloads",
  5739. "license": [
  5740. "GPL-2.0-or-later"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "bnjmnm",
  5745. "homepage": "https://www.drupal.org/user/2369194"
  5746. },
  5747. {
  5748. "name": "lauriii",
  5749. "homepage": "https://www.drupal.org/user/1078742"
  5750. },
  5751. {
  5752. "name": "zrpnr",
  5753. "homepage": "https://www.drupal.org/user/1448368"
  5754. }
  5755. ],
  5756. "description": "Provides jQuery UI Controlgroup library.",
  5757. "homepage": "https://www.drupal.org/project/jquery_ui_controlgroup",
  5758. "support": {
  5759. "source": "https://git.drupalcode.org/project/jquery_ui_controlgroup"
  5760. }
  5761. },
  5762. {
  5763. "name": "drupal/jquery_ui_datepicker",
  5764. "version": "1.0.0",
  5765. "source": {
  5766. "type": "git",
  5767. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5768. "reference": "8.x-1.0"
  5769. },
  5770. "dist": {
  5771. "type": "zip",
  5772. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip",
  5773. "reference": "8.x-1.0",
  5774. "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2"
  5775. },
  5776. "require": {
  5777. "drupal/core": "^8 || ^9",
  5778. "drupal/jquery_ui": "*"
  5779. },
  5780. "type": "drupal-module",
  5781. "extra": {
  5782. "drupal": {
  5783. "version": "8.x-1.0",
  5784. "datestamp": "1589684301",
  5785. "security-coverage": {
  5786. "status": "covered",
  5787. "message": "Covered by Drupal's security advisory policy"
  5788. }
  5789. }
  5790. },
  5791. "notification-url": "https://packages.drupal.org/8/downloads",
  5792. "license": [
  5793. "GPL-2.0-or-later"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "jrockowitz",
  5798. "homepage": "https://www.drupal.org/user/371407"
  5799. },
  5800. {
  5801. "name": "zrpnr",
  5802. "homepage": "https://www.drupal.org/user/1448368"
  5803. }
  5804. ],
  5805. "description": "Provides jQuery UI Datepicker library.",
  5806. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5807. "support": {
  5808. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5809. }
  5810. },
  5811. {
  5812. "name": "drupal/jquery_ui_slider",
  5813. "version": "1.1.0",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5817. "reference": "8.x-1.1"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip",
  5822. "reference": "8.x-1.1",
  5823. "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1"
  5824. },
  5825. "require": {
  5826. "drupal/core": "^8 || ^9",
  5827. "drupal/jquery_ui": "*"
  5828. },
  5829. "type": "drupal-module",
  5830. "extra": {
  5831. "drupal": {
  5832. "version": "8.x-1.1",
  5833. "datestamp": "1584107817",
  5834. "security-coverage": {
  5835. "status": "covered",
  5836. "message": "Covered by Drupal's security advisory policy"
  5837. }
  5838. }
  5839. },
  5840. "notification-url": "https://packages.drupal.org/8/downloads",
  5841. "license": [
  5842. "GPL-2.0-or-later"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "bnjmnm",
  5847. "homepage": "https://www.drupal.org/user/2369194"
  5848. },
  5849. {
  5850. "name": "lauriii",
  5851. "homepage": "https://www.drupal.org/user/1078742"
  5852. },
  5853. {
  5854. "name": "zrpnr",
  5855. "homepage": "https://www.drupal.org/user/1448368"
  5856. }
  5857. ],
  5858. "description": "Provides jQuery UI Slider library.",
  5859. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5860. "support": {
  5861. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5862. }
  5863. },
  5864. {
  5865. "name": "drupal/jquery_ui_touch_punch",
  5866. "version": "1.0.0",
  5867. "source": {
  5868. "type": "git",
  5869. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5870. "reference": "1.0.0"
  5871. },
  5872. "dist": {
  5873. "type": "zip",
  5874. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.0.zip",
  5875. "reference": "1.0.0",
  5876. "shasum": "8444a0ed897ba3d8e8876a9602ec8b3dca678cd1"
  5877. },
  5878. "require": {
  5879. "drupal/core": "^8 || ^9",
  5880. "drupal/jquery_ui": "^1.0"
  5881. },
  5882. "suggest": {
  5883. "furf/jquery-ui-touch-punch": "Required to use drupal/jquery_ui_touch_punch module."
  5884. },
  5885. "type": "drupal-module",
  5886. "extra": {
  5887. "drupal": {
  5888. "version": "1.0.0",
  5889. "datestamp": "1591893292",
  5890. "security-coverage": {
  5891. "status": "not-covered",
  5892. "message": "Project has not opted into security advisory coverage!"
  5893. }
  5894. }
  5895. },
  5896. "notification-url": "https://packages.drupal.org/8/downloads",
  5897. "license": [
  5898. "GPL-2.0+"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Naveen Valecha",
  5903. "homepage": "https://drupal.org/u/naveenvalecha",
  5904. "role": "Maintainer"
  5905. }
  5906. ],
  5907. "description": "Provides jQuery UI Touch Punch library.",
  5908. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5909. "keywords": [
  5910. "Drupal",
  5911. "jquery_ui_touch_punch"
  5912. ],
  5913. "support": {
  5914. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5915. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch",
  5916. "irc": "irc://irc.freenode.org/drupal-contribute"
  5917. }
  5918. },
  5919. {
  5920. "name": "drupal/link_attributes",
  5921. "version": "1.11.0",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5925. "reference": "8.x-1.11"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip",
  5930. "reference": "8.x-1.11",
  5931. "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818"
  5932. },
  5933. "require": {
  5934. "drupal/core": "^8 || ^9"
  5935. },
  5936. "type": "drupal-module",
  5937. "extra": {
  5938. "drupal": {
  5939. "version": "8.x-1.11",
  5940. "datestamp": "1598323550",
  5941. "security-coverage": {
  5942. "status": "covered",
  5943. "message": "Covered by Drupal's security advisory policy"
  5944. }
  5945. }
  5946. },
  5947. "notification-url": "https://packages.drupal.org/8/downloads",
  5948. "license": [
  5949. "GPL-2.0-or-later"
  5950. ],
  5951. "authors": [
  5952. {
  5953. "name": "larowlan",
  5954. "homepage": "https://www.drupal.org/user/395439"
  5955. }
  5956. ],
  5957. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5958. "homepage": "https://www.drupal.org/project/link_attributes",
  5959. "support": {
  5960. "source": "https://git.drupalcode.org/project/link_attributes"
  5961. }
  5962. },
  5963. {
  5964. "name": "drupal/linkit",
  5965. "version": "5.0.0-beta12",
  5966. "source": {
  5967. "type": "git",
  5968. "url": "https://git.drupalcode.org/project/linkit.git",
  5969. "reference": "8.x-5.0-beta12"
  5970. },
  5971. "dist": {
  5972. "type": "zip",
  5973. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta12.zip",
  5974. "reference": "8.x-5.0-beta12",
  5975. "shasum": "9e03975b476f893112d8b12d8b8610926a4e7f2c"
  5976. },
  5977. "require": {
  5978. "drupal/core": "^8.7.7 || ^9"
  5979. },
  5980. "require-dev": {
  5981. "drupal/imce": "*"
  5982. },
  5983. "type": "drupal-module",
  5984. "extra": {
  5985. "drupal": {
  5986. "version": "8.x-5.0-beta12",
  5987. "datestamp": "1608957625",
  5988. "security-coverage": {
  5989. "status": "not-covered",
  5990. "message": "Beta releases are not covered by Drupal security advisories."
  5991. }
  5992. }
  5993. },
  5994. "notification-url": "https://packages.drupal.org/8/downloads",
  5995. "license": [
  5996. "GPL-2.0-or-later"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Emil Stjerneman",
  6001. "homepage": "https://stjerneman.com",
  6002. "email": "emil@stjerneman.com",
  6003. "role": "Maintainer"
  6004. }
  6005. ],
  6006. "description": "Linkit - Enriched linking experience",
  6007. "homepage": "http://drupal.org/project/linkit",
  6008. "support": {
  6009. "source": "http://cgit.drupalcode.org/linkit",
  6010. "issues": "http://drupal.org/project/linkit"
  6011. }
  6012. },
  6013. {
  6014. "name": "drupal/login_destination",
  6015. "version": "dev-2.x",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://git.drupalcode.org/project/login_destination.git",
  6019. "reference": "0a2c46abd451b4c83e2f5a50cb791e68b141a8ab"
  6020. },
  6021. "require": {
  6022. "drupal/core": "^8.7.10 || ^9"
  6023. },
  6024. "require-dev": {
  6025. "drupal/admin_toolbar": "^1.23",
  6026. "drupal/admin_toolbar_tools": "*"
  6027. },
  6028. "type": "drupal-module",
  6029. "extra": {
  6030. "branch-alias": {
  6031. "dev-2.x": "2.x-dev"
  6032. },
  6033. "drupal": {
  6034. "version": "8.x-2.0-alpha3+8-dev",
  6035. "datestamp": "1603450565",
  6036. "security-coverage": {
  6037. "status": "not-covered",
  6038. "message": "Dev releases are not covered by Drupal security advisories."
  6039. }
  6040. }
  6041. },
  6042. "notification-url": "https://packages.drupal.org/8/downloads",
  6043. "license": [
  6044. "GPL-2.0-or-later"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "3CWebDev",
  6049. "homepage": "https://www.drupal.org/user/61221"
  6050. },
  6051. {
  6052. "name": "Oliver Huynh",
  6053. "homepage": "https://www.drupal.org/user/243730"
  6054. },
  6055. {
  6056. "name": "beautifulmind",
  6057. "homepage": "https://www.drupal.org/user/219482"
  6058. },
  6059. {
  6060. "name": "ddrozdik",
  6061. "homepage": "https://www.drupal.org/user/574124"
  6062. },
  6063. {
  6064. "name": "jng12",
  6065. "homepage": "https://www.drupal.org/user/204316"
  6066. },
  6067. {
  6068. "name": "marcp",
  6069. "homepage": "https://www.drupal.org/user/20885"
  6070. },
  6071. {
  6072. "name": "mithy",
  6073. "homepage": "https://www.drupal.org/user/258911"
  6074. },
  6075. {
  6076. "name": "moshe weitzman",
  6077. "homepage": "https://www.drupal.org/user/23"
  6078. },
  6079. {
  6080. "name": "perennial.sky",
  6081. "homepage": "https://www.drupal.org/user/2622667"
  6082. },
  6083. {
  6084. "name": "rsvelko",
  6085. "homepage": "https://www.drupal.org/user/337401"
  6086. }
  6087. ],
  6088. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  6089. "homepage": "https://www.drupal.org/project/login_destination",
  6090. "support": {
  6091. "source": "https://git.drupalcode.org/project/login_destination"
  6092. },
  6093. "time": "2020-10-23T10:55:36+00:00"
  6094. },
  6095. {
  6096. "name": "drupal/maillog",
  6097. "version": "dev-1.x",
  6098. "source": {
  6099. "type": "git",
  6100. "url": "https://git.drupalcode.org/project/maillog.git",
  6101. "reference": "053d0b4a53aea4f848be75b02fc8974bb7b053b3"
  6102. },
  6103. "require": {
  6104. "drupal/core": "^8 || ^9"
  6105. },
  6106. "type": "drupal-module",
  6107. "extra": {
  6108. "branch-alias": {
  6109. "dev-1.x": "1.x-dev"
  6110. },
  6111. "drupal": {
  6112. "version": "8.x-1.0-beta1+0-dev",
  6113. "datestamp": "1600799873",
  6114. "security-coverage": {
  6115. "status": "not-covered",
  6116. "message": "Dev releases are not covered by Drupal security advisories."
  6117. }
  6118. }
  6119. },
  6120. "notification-url": "https://packages.drupal.org/8/downloads",
  6121. "license": [
  6122. "GPL-2.0-or-later"
  6123. ],
  6124. "authors": [
  6125. {
  6126. "name": "Berdir",
  6127. "homepage": "https://www.drupal.org/user/214652"
  6128. },
  6129. {
  6130. "name": "DamienMcKenna",
  6131. "homepage": "https://www.drupal.org/user/108450"
  6132. },
  6133. {
  6134. "name": "miro_dietiker",
  6135. "homepage": "https://www.drupal.org/user/227761"
  6136. },
  6137. {
  6138. "name": "pluess",
  6139. "homepage": "https://www.drupal.org/user/84659"
  6140. }
  6141. ],
  6142. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  6143. "homepage": "https://www.drupal.org/project/maillog",
  6144. "support": {
  6145. "source": "https://git.drupalcode.org/project/maillog"
  6146. },
  6147. "time": "2020-09-22T18:37:31+00:00"
  6148. },
  6149. {
  6150. "name": "drupal/mailsystem",
  6151. "version": "4.3.0",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://git.drupalcode.org/project/mailsystem.git",
  6155. "reference": "8.x-4.3"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip",
  6160. "reference": "8.x-4.3",
  6161. "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050"
  6162. },
  6163. "require": {
  6164. "drupal/core": "^8.7.7 || ^9"
  6165. },
  6166. "type": "drupal-module",
  6167. "extra": {
  6168. "drupal": {
  6169. "version": "8.x-4.3",
  6170. "datestamp": "1586203024",
  6171. "security-coverage": {
  6172. "status": "covered",
  6173. "message": "Covered by Drupal's security advisory policy"
  6174. }
  6175. }
  6176. },
  6177. "notification-url": "https://packages.drupal.org/8/downloads",
  6178. "license": [
  6179. "GPL-2.0+"
  6180. ],
  6181. "authors": [
  6182. {
  6183. "name": "Berdir",
  6184. "homepage": "https://www.drupal.org/user/214652"
  6185. },
  6186. {
  6187. "name": "Les Lim",
  6188. "homepage": "https://www.drupal.org/user/84263"
  6189. },
  6190. {
  6191. "name": "Manuel Garcia",
  6192. "homepage": "https://www.drupal.org/user/213194"
  6193. },
  6194. {
  6195. "name": "Nafes",
  6196. "homepage": "https://www.drupal.org/user/2489926"
  6197. },
  6198. {
  6199. "name": "miro_dietiker",
  6200. "homepage": "https://www.drupal.org/user/227761"
  6201. },
  6202. {
  6203. "name": "pillarsdotnet",
  6204. "homepage": "https://www.drupal.org/user/36148"
  6205. }
  6206. ],
  6207. "description": "Mail System",
  6208. "homepage": "https://www.drupal.org/project/mailsystem",
  6209. "support": {
  6210. "source": "https://git.drupalcode.org/project/mailsystem"
  6211. }
  6212. },
  6213. {
  6214. "name": "drupal/matomo",
  6215. "version": "1.11.0",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://git.drupalcode.org/project/matomo.git",
  6219. "reference": "8.x-1.11"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.11.zip",
  6224. "reference": "8.x-1.11",
  6225. "shasum": "82be96c20ab15df03d199ab98d047cef6e67d40b"
  6226. },
  6227. "require": {
  6228. "drupal/core": "^8 || ^9"
  6229. },
  6230. "require-dev": {
  6231. "drupal/php": "*",
  6232. "drupal/token": "*"
  6233. },
  6234. "type": "drupal-module",
  6235. "extra": {
  6236. "drupal": {
  6237. "version": "8.x-1.11",
  6238. "datestamp": "1601651459",
  6239. "security-coverage": {
  6240. "status": "covered",
  6241. "message": "Covered by Drupal's security advisory policy"
  6242. }
  6243. }
  6244. },
  6245. "notification-url": "https://packages.drupal.org/8/downloads",
  6246. "license": [
  6247. "GPL-2.0-or-later"
  6248. ],
  6249. "authors": [
  6250. {
  6251. "name": "Carsten Logemann",
  6252. "homepage": "https://www.drupal.org/u/C_Logemann"
  6253. },
  6254. {
  6255. "name": "Shelane French",
  6256. "homepage": "https://www.drupal.org/u/shelane"
  6257. },
  6258. {
  6259. "name": "See other contributors",
  6260. "homepage": "https://www.drupal.org/node/247808/committers"
  6261. }
  6262. ],
  6263. "description": "Adds Matomo javascript tracking code to all your site's pages",
  6264. "homepage": "https://www.drupal.org/project/matomo",
  6265. "support": {
  6266. "source": "https://git.drupal.org/project/matomo.git",
  6267. "issues": "https://www.drupal.org/project/issues/matomo"
  6268. }
  6269. },
  6270. {
  6271. "name": "drupal/maxlength",
  6272. "version": "1.0.0-rc1",
  6273. "source": {
  6274. "type": "git",
  6275. "url": "https://git.drupalcode.org/project/maxlength.git",
  6276. "reference": "8.x-1.0-rc1"
  6277. },
  6278. "dist": {
  6279. "type": "zip",
  6280. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-rc1.zip",
  6281. "reference": "8.x-1.0-rc1",
  6282. "shasum": "44eb9d79d9814cd786c2c9874c28033759665a99"
  6283. },
  6284. "require": {
  6285. "drupal/core": "^8.8 || ^9"
  6286. },
  6287. "type": "drupal-module",
  6288. "extra": {
  6289. "drupal": {
  6290. "version": "8.x-1.0-rc1",
  6291. "datestamp": "1593198218",
  6292. "security-coverage": {
  6293. "status": "not-covered",
  6294. "message": "RC releases are not covered by Drupal security advisories."
  6295. }
  6296. }
  6297. },
  6298. "notification-url": "https://packages.drupal.org/8/downloads",
  6299. "license": [
  6300. "GPL-2.0-or-later"
  6301. ],
  6302. "authors": [
  6303. {
  6304. "name": "Aron Novak",
  6305. "homepage": "https://www.drupal.org/user/61864"
  6306. },
  6307. {
  6308. "name": "Schnitzel",
  6309. "homepage": "https://www.drupal.org/user/643820"
  6310. },
  6311. {
  6312. "name": "a_c_m",
  6313. "homepage": "https://www.drupal.org/user/195063"
  6314. },
  6315. {
  6316. "name": "barneytech",
  6317. "homepage": "https://www.drupal.org/user/669922"
  6318. },
  6319. {
  6320. "name": "claudiu_cristea",
  6321. "homepage": "https://www.drupal.org/user/2623935"
  6322. },
  6323. {
  6324. "name": "dawehner",
  6325. "homepage": "https://www.drupal.org/user/99340"
  6326. },
  6327. {
  6328. "name": "derhasi",
  6329. "homepage": "https://www.drupal.org/user/83474"
  6330. },
  6331. {
  6332. "name": "frjo",
  6333. "homepage": "https://www.drupal.org/user/5546"
  6334. },
  6335. {
  6336. "name": "hefox",
  6337. "homepage": "https://www.drupal.org/user/426416"
  6338. },
  6339. {
  6340. "name": "jm.federico",
  6341. "homepage": "https://www.drupal.org/user/509892"
  6342. },
  6343. {
  6344. "name": "k4v",
  6345. "homepage": "https://www.drupal.org/user/744246"
  6346. },
  6347. {
  6348. "name": "mariano73",
  6349. "homepage": "https://www.drupal.org/user/1324866"
  6350. },
  6351. {
  6352. "name": "mariuss",
  6353. "homepage": "https://www.drupal.org/user/28539"
  6354. },
  6355. {
  6356. "name": "sanduhrs",
  6357. "homepage": "https://www.drupal.org/user/28074"
  6358. },
  6359. {
  6360. "name": "vasi1186",
  6361. "homepage": "https://www.drupal.org/user/342104"
  6362. },
  6363. {
  6364. "name": "webiator GmbH",
  6365. "homepage": "https://www.drupal.org/user/2390554"
  6366. }
  6367. ],
  6368. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  6369. "homepage": "https://www.drupal.org/project/maxlength",
  6370. "support": {
  6371. "source": "https://git.drupalcode.org/project/maxlength"
  6372. }
  6373. },
  6374. {
  6375. "name": "drupal/menu_admin_per_menu",
  6376. "version": "1.3.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6380. "reference": "8.x-1.3"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip",
  6385. "reference": "8.x-1.3",
  6386. "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c"
  6387. },
  6388. "require": {
  6389. "drupal/core": "^8 || ^9"
  6390. },
  6391. "type": "drupal-module",
  6392. "extra": {
  6393. "drupal": {
  6394. "version": "8.x-1.3",
  6395. "datestamp": "1593436060",
  6396. "security-coverage": {
  6397. "status": "covered",
  6398. "message": "Covered by Drupal's security advisory policy"
  6399. }
  6400. }
  6401. },
  6402. "notification-url": "https://packages.drupal.org/8/downloads",
  6403. "license": [
  6404. "GPL-2.0-or-later"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "JeroenT",
  6409. "homepage": "https://www.drupal.org/user/2228934"
  6410. },
  6411. {
  6412. "name": "anrikun",
  6413. "homepage": "https://www.drupal.org/user/410199"
  6414. },
  6415. {
  6416. "name": "jonas139",
  6417. "homepage": "https://www.drupal.org/user/2873401"
  6418. },
  6419. {
  6420. "name": "mkdok",
  6421. "homepage": "https://www.drupal.org/user/3308753"
  6422. }
  6423. ],
  6424. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6425. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6426. "support": {
  6427. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  6428. }
  6429. },
  6430. {
  6431. "name": "drupal/menu_block",
  6432. "version": "dev-1.x",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://git.drupalcode.org/project/menu_block.git",
  6436. "reference": "567becffbb0589e824fb053f15fb38a5846e7276"
  6437. },
  6438. "require": {
  6439. "drupal/core": "^8 || ^9"
  6440. },
  6441. "type": "drupal-module",
  6442. "extra": {
  6443. "branch-alias": {
  6444. "dev-1.x": "1.x-dev"
  6445. },
  6446. "drupal": {
  6447. "version": "8.x-1.6+5-dev",
  6448. "datestamp": "1591593747",
  6449. "security-coverage": {
  6450. "status": "not-covered",
  6451. "message": "Dev releases are not covered by Drupal security advisories."
  6452. }
  6453. }
  6454. },
  6455. "notification-url": "https://packages.drupal.org/8/downloads",
  6456. "license": [
  6457. "GPL-2.0-or-later"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Dave Reid",
  6462. "homepage": "https://www.drupal.org/user/53892"
  6463. },
  6464. {
  6465. "name": "JohnAlbin",
  6466. "homepage": "https://www.drupal.org/user/32095"
  6467. },
  6468. {
  6469. "name": "joelpittet",
  6470. "homepage": "https://www.drupal.org/user/160302"
  6471. },
  6472. {
  6473. "name": "kim.pepper",
  6474. "homepage": "https://www.drupal.org/user/370574"
  6475. },
  6476. {
  6477. "name": "rrrob",
  6478. "homepage": "https://www.drupal.org/user/273533"
  6479. }
  6480. ],
  6481. "description": "Provides configurable blocks of menu links.",
  6482. "homepage": "https://www.drupal.org/project/menu_block",
  6483. "support": {
  6484. "source": "https://git.drupalcode.org/project/menu_block"
  6485. },
  6486. "time": "2020-11-18T00:42:05+00:00"
  6487. },
  6488. {
  6489. "name": "drupal/menu_position",
  6490. "version": "dev-1.x",
  6491. "source": {
  6492. "type": "git",
  6493. "url": "https://git.drupalcode.org/project/menu_position.git",
  6494. "reference": "bce075f4ea167a851d7401602394de557b76c85f"
  6495. },
  6496. "require": {
  6497. "drupal/core": "^8 || ^9"
  6498. },
  6499. "type": "drupal-module",
  6500. "extra": {
  6501. "branch-alias": {
  6502. "dev-1.x": "1.x-dev"
  6503. },
  6504. "drupal": {
  6505. "version": "8.x-1.0-alpha4+4-dev",
  6506. "datestamp": "1587797468",
  6507. "security-coverage": {
  6508. "status": "not-covered",
  6509. "message": "Dev releases are not covered by Drupal security advisories."
  6510. }
  6511. }
  6512. },
  6513. "notification-url": "https://packages.drupal.org/8/downloads",
  6514. "license": [
  6515. "GPL-2.0+"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "BarisW",
  6520. "homepage": "https://www.drupal.org/user/107229"
  6521. },
  6522. {
  6523. "name": "JohnAlbin",
  6524. "homepage": "https://www.drupal.org/user/32095"
  6525. },
  6526. {
  6527. "name": "Sutharsan",
  6528. "homepage": "https://www.drupal.org/user/73854"
  6529. },
  6530. {
  6531. "name": "joelpittet",
  6532. "homepage": "https://www.drupal.org/user/160302"
  6533. },
  6534. {
  6535. "name": "lbainbridge",
  6536. "homepage": "https://www.drupal.org/user/2406996"
  6537. }
  6538. ],
  6539. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6540. "homepage": "https://www.drupal.org/project/menu_position",
  6541. "support": {
  6542. "source": "https://git.drupalcode.org/project/menu_position",
  6543. "issues": "https://www.drupal.org/project/issues/menu_position"
  6544. },
  6545. "time": "2020-04-25T06:50:43+00:00"
  6546. },
  6547. {
  6548. "name": "drupal/pagerer",
  6549. "version": "2.0.0",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://git.drupalcode.org/project/pagerer.git",
  6553. "reference": "8.x-2.0"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-2.0.zip",
  6558. "reference": "8.x-2.0",
  6559. "shasum": "de54dee5aa1336c1d6e6c5aeccfbd602d5898c7f"
  6560. },
  6561. "require": {
  6562. "drupal/core": "^8.8 || ^9",
  6563. "drupal/jquery_ui_button": "*",
  6564. "drupal/jquery_ui_slider": "*",
  6565. "php": ">=7.1"
  6566. },
  6567. "type": "drupal-module",
  6568. "extra": {
  6569. "drupal": {
  6570. "version": "8.x-2.0",
  6571. "datestamp": "1589289359",
  6572. "security-coverage": {
  6573. "status": "covered",
  6574. "message": "Covered by Drupal's security advisory policy"
  6575. }
  6576. }
  6577. },
  6578. "notification-url": "https://packages.drupal.org/8/downloads",
  6579. "license": [
  6580. "GPL-2.0-or-later"
  6581. ],
  6582. "authors": [
  6583. {
  6584. "name": "mondrake",
  6585. "homepage": "https://www.drupal.org/user/1307444"
  6586. }
  6587. ],
  6588. "description": "Configurable pager styles.",
  6589. "homepage": "https://www.drupal.org/project/pagerer",
  6590. "support": {
  6591. "source": "https://git.drupalcode.org/project/pagerer"
  6592. }
  6593. },
  6594. {
  6595. "name": "drupal/paragraphs",
  6596. "version": "1.12.0",
  6597. "source": {
  6598. "type": "git",
  6599. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6600. "reference": "8.x-1.12"
  6601. },
  6602. "dist": {
  6603. "type": "zip",
  6604. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  6605. "reference": "8.x-1.12",
  6606. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  6607. },
  6608. "require": {
  6609. "drupal/core": "^8.8 || ^9",
  6610. "drupal/entity_reference_revisions": "~1.3"
  6611. },
  6612. "require-dev": {
  6613. "drupal/block_field": "~1.0",
  6614. "drupal/ctools": "3.x-dev",
  6615. "drupal/diff": "~1.0",
  6616. "drupal/entity_browser": "2.x-dev",
  6617. "drupal/entity_usage": "2.x-dev",
  6618. "drupal/field_group": "3.x-dev",
  6619. "drupal/inline_entity_form": "~1.0",
  6620. "drupal/paragraphs-paragraphs_library": "*",
  6621. "drupal/replicate": "~1.0",
  6622. "drupal/search_api": "~1.0",
  6623. "drupal/search_api_db": "*"
  6624. },
  6625. "suggest": {
  6626. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6627. },
  6628. "type": "drupal-module",
  6629. "extra": {
  6630. "drupal": {
  6631. "version": "8.x-1.12",
  6632. "datestamp": "1590140081",
  6633. "security-coverage": {
  6634. "status": "covered",
  6635. "message": "Covered by Drupal's security advisory policy"
  6636. }
  6637. }
  6638. },
  6639. "notification-url": "https://packages.drupal.org/8/downloads",
  6640. "license": [
  6641. "GPL-2.0-or-later"
  6642. ],
  6643. "authors": [
  6644. {
  6645. "name": "Berdir",
  6646. "homepage": "https://www.drupal.org/user/214652"
  6647. },
  6648. {
  6649. "name": "Frans",
  6650. "homepage": "https://www.drupal.org/user/514222"
  6651. },
  6652. {
  6653. "name": "Primsi",
  6654. "homepage": "https://www.drupal.org/user/282629"
  6655. },
  6656. {
  6657. "name": "jeroen.b",
  6658. "homepage": "https://www.drupal.org/user/1853532"
  6659. },
  6660. {
  6661. "name": "jstoller",
  6662. "homepage": "https://www.drupal.org/user/99012"
  6663. },
  6664. {
  6665. "name": "miro_dietiker",
  6666. "homepage": "https://www.drupal.org/user/227761"
  6667. }
  6668. ],
  6669. "description": "Enables the creation of Paragraphs entities.",
  6670. "homepage": "https://www.drupal.org/project/paragraphs",
  6671. "support": {
  6672. "source": "https://git.drupalcode.org/project/paragraphs"
  6673. }
  6674. },
  6675. {
  6676. "name": "drupal/path_alias_xt",
  6677. "version": "dev-1.x",
  6678. "source": {
  6679. "type": "git",
  6680. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6681. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  6682. },
  6683. "require": {
  6684. "drupal/core": "^8.7.7 || ^9"
  6685. },
  6686. "type": "drupal-module",
  6687. "extra": {
  6688. "branch-alias": {
  6689. "dev-1.x": "1.x-dev"
  6690. },
  6691. "drupal": {
  6692. "version": "8.x-1.x-dev",
  6693. "datestamp": "1590299862",
  6694. "security-coverage": {
  6695. "status": "not-covered",
  6696. "message": "Dev releases are not covered by Drupal security advisories."
  6697. }
  6698. }
  6699. },
  6700. "notification-url": "https://packages.drupal.org/8/downloads",
  6701. "license": [
  6702. "GPL-2.0-or-later"
  6703. ],
  6704. "authors": [
  6705. {
  6706. "name": "RdeBoer",
  6707. "homepage": "https://www.drupal.org/user/404007"
  6708. },
  6709. {
  6710. "name": "adriancid",
  6711. "homepage": "https://www.drupal.org/user/1962106"
  6712. },
  6713. {
  6714. "name": "sdstyles",
  6715. "homepage": "https://www.drupal.org/user/1420228"
  6716. }
  6717. ],
  6718. "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.",
  6719. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6720. "support": {
  6721. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6722. },
  6723. "time": "2020-05-24T05:57:09+00:00"
  6724. },
  6725. {
  6726. "name": "drupal/pathauto",
  6727. "version": "1.8.0",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://git.drupalcode.org/project/pathauto.git",
  6731. "reference": "8.x-1.8"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  6736. "reference": "8.x-1.8",
  6737. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  6738. },
  6739. "require": {
  6740. "drupal/core": "^8.8 || ^9",
  6741. "drupal/ctools": "*",
  6742. "drupal/token": "*"
  6743. },
  6744. "suggest": {
  6745. "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."
  6746. },
  6747. "type": "drupal-module",
  6748. "extra": {
  6749. "drupal": {
  6750. "version": "8.x-1.8",
  6751. "datestamp": "1588103046",
  6752. "security-coverage": {
  6753. "status": "covered",
  6754. "message": "Covered by Drupal's security advisory policy"
  6755. }
  6756. },
  6757. "drush": {
  6758. "services": {
  6759. "drush.services.yml": "^9 || ^10"
  6760. }
  6761. }
  6762. },
  6763. "notification-url": "https://packages.drupal.org/8/downloads",
  6764. "license": [
  6765. "GPL-2.0-or-later"
  6766. ],
  6767. "authors": [
  6768. {
  6769. "name": "Berdir",
  6770. "homepage": "https://www.drupal.org/user/214652"
  6771. },
  6772. {
  6773. "name": "Dave Reid",
  6774. "homepage": "https://www.drupal.org/user/53892"
  6775. },
  6776. {
  6777. "name": "Freso",
  6778. "homepage": "https://www.drupal.org/user/27504"
  6779. },
  6780. {
  6781. "name": "greggles",
  6782. "homepage": "https://www.drupal.org/user/36762"
  6783. }
  6784. ],
  6785. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6786. "homepage": "https://www.drupal.org/project/pathauto",
  6787. "support": {
  6788. "source": "https://cgit.drupalcode.org/pathauto",
  6789. "issues": "https://www.drupal.org/project/issues/pathauto",
  6790. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6791. }
  6792. },
  6793. {
  6794. "name": "drupal/pathologic",
  6795. "version": "1.0.0-alpha2",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://git.drupalcode.org/project/pathologic.git",
  6799. "reference": "8.x-1.0-alpha2"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha2.zip",
  6804. "reference": "8.x-1.0-alpha2",
  6805. "shasum": "5b1b6846ab72e24a90dcd4cafbe855fba069e56b"
  6806. },
  6807. "require": {
  6808. "drupal/core": "^8 || ^9"
  6809. },
  6810. "type": "drupal-module",
  6811. "extra": {
  6812. "drupal": {
  6813. "version": "8.x-1.0-alpha2",
  6814. "datestamp": "1593911470",
  6815. "security-coverage": {
  6816. "status": "not-covered",
  6817. "message": "Alpha releases are not covered by Drupal security advisories."
  6818. }
  6819. }
  6820. },
  6821. "notification-url": "https://packages.drupal.org/8/downloads",
  6822. "license": [
  6823. "GPL-2.0-or-later"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "Berdir",
  6828. "homepage": "https://www.drupal.org/user/214652"
  6829. },
  6830. {
  6831. "name": "Garrett Albright",
  6832. "homepage": "https://www.drupal.org/user/191212"
  6833. },
  6834. {
  6835. "name": "dww",
  6836. "homepage": "https://www.drupal.org/user/46549"
  6837. }
  6838. ],
  6839. "description": "Helps avoid broken links and incorrect paths in content.",
  6840. "homepage": "https://www.drupal.org/project/pathologic",
  6841. "support": {
  6842. "source": "https://git.drupalcode.org/project/pathologic"
  6843. }
  6844. },
  6845. {
  6846. "name": "drupal/persistent_login",
  6847. "version": "1.3.0",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6851. "reference": "8.x-1.3"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.3.zip",
  6856. "reference": "8.x-1.3",
  6857. "shasum": "dfff4cb76d6b3888073dd992bcf4d51b1bb47696"
  6858. },
  6859. "require": {
  6860. "drupal/core": "^8.3 || ^9.0"
  6861. },
  6862. "type": "drupal-module",
  6863. "extra": {
  6864. "drupal": {
  6865. "version": "8.x-1.3",
  6866. "datestamp": "1591597823",
  6867. "security-coverage": {
  6868. "status": "covered",
  6869. "message": "Covered by Drupal's security advisory policy"
  6870. }
  6871. }
  6872. },
  6873. "notification-url": "https://packages.drupal.org/8/downloads",
  6874. "license": [
  6875. "GPL-2.0-or-later"
  6876. ],
  6877. "authors": [
  6878. {
  6879. "name": "gapple",
  6880. "homepage": "https://www.drupal.org/user/490940"
  6881. }
  6882. ],
  6883. "description": "Provides a \"Remember Me\" feature on the login form.",
  6884. "homepage": "https://www.drupal.org/project/persistent_login",
  6885. "keywords": [
  6886. "Drupal"
  6887. ],
  6888. "support": {
  6889. "source": "https://git.drupalcode.org/project/persistent_login",
  6890. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6891. }
  6892. },
  6893. {
  6894. "name": "drupal/profile",
  6895. "version": "1.2.0",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://git.drupalcode.org/project/profile.git",
  6899. "reference": "8.x-1.2"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.2.zip",
  6904. "reference": "8.x-1.2",
  6905. "shasum": "5ea5167ed6cc5b47761ea497fe20bae0fbea1cf2"
  6906. },
  6907. "require": {
  6908. "drupal/core": "^8.8 || ^9",
  6909. "drupal/entity": "^1.0-rc2"
  6910. },
  6911. "require-dev": {
  6912. "drupal/token": "^1.7"
  6913. },
  6914. "type": "drupal-module",
  6915. "extra": {
  6916. "drupal": {
  6917. "version": "8.x-1.2",
  6918. "datestamp": "1604422701",
  6919. "security-coverage": {
  6920. "status": "covered",
  6921. "message": "Covered by Drupal's security advisory policy"
  6922. }
  6923. }
  6924. },
  6925. "notification-url": "https://packages.drupal.org/8/downloads",
  6926. "license": [
  6927. "GPL-2.0-or-later"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "bojanz",
  6932. "homepage": "https://www.drupal.org/user/86106"
  6933. },
  6934. {
  6935. "name": "daggerhart",
  6936. "homepage": "https://www.drupal.org/user/167806"
  6937. },
  6938. {
  6939. "name": "fago",
  6940. "homepage": "https://www.drupal.org/user/16747"
  6941. },
  6942. {
  6943. "name": "jsacksick",
  6944. "homepage": "https://www.drupal.org/user/972218"
  6945. },
  6946. {
  6947. "name": "mglaman",
  6948. "homepage": "https://www.drupal.org/user/2416470"
  6949. },
  6950. {
  6951. "name": "pcambra",
  6952. "homepage": "https://www.drupal.org/user/122101"
  6953. }
  6954. ],
  6955. "description": "Provides configurable user profiles.",
  6956. "homepage": "http://drupal.org/project/profile",
  6957. "support": {
  6958. "source": "https://git.drupalcode.org/project/profile"
  6959. }
  6960. },
  6961. {
  6962. "name": "drupal/redirect",
  6963. "version": "1.6.0",
  6964. "source": {
  6965. "type": "git",
  6966. "url": "https://git.drupalcode.org/project/redirect.git",
  6967. "reference": "8.x-1.6"
  6968. },
  6969. "dist": {
  6970. "type": "zip",
  6971. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  6972. "reference": "8.x-1.6",
  6973. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  6974. },
  6975. "require": {
  6976. "drupal/core": "^8.8 || ^9"
  6977. },
  6978. "type": "drupal-module",
  6979. "extra": {
  6980. "drupal": {
  6981. "version": "8.x-1.6",
  6982. "datestamp": "1589312204",
  6983. "security-coverage": {
  6984. "status": "covered",
  6985. "message": "Covered by Drupal's security advisory policy"
  6986. }
  6987. }
  6988. },
  6989. "notification-url": "https://packages.drupal.org/8/downloads",
  6990. "license": [
  6991. "GPL-2.0-or-later"
  6992. ],
  6993. "authors": [
  6994. {
  6995. "name": "Berdir",
  6996. "homepage": "https://www.drupal.org/user/214652"
  6997. },
  6998. {
  6999. "name": "Dave Reid",
  7000. "homepage": "https://www.drupal.org/user/53892"
  7001. },
  7002. {
  7003. "name": "pifagor",
  7004. "homepage": "https://www.drupal.org/user/2375692"
  7005. }
  7006. ],
  7007. "description": "Allows users to redirect from old URLs to new URLs.",
  7008. "homepage": "https://www.drupal.org/project/redirect",
  7009. "support": {
  7010. "source": "https://git.drupalcode.org/project/redirect"
  7011. }
  7012. },
  7013. {
  7014. "name": "drupal/redirect_after_login",
  7015. "version": "2.7.0",
  7016. "source": {
  7017. "type": "git",
  7018. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  7019. "reference": "8.x-2.7"
  7020. },
  7021. "dist": {
  7022. "type": "zip",
  7023. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.7.zip",
  7024. "reference": "8.x-2.7",
  7025. "shasum": "3ce87df792e918c2ec5a00e24818c893e558d111"
  7026. },
  7027. "require": {
  7028. "drupal/core": "^8 || ^9"
  7029. },
  7030. "type": "drupal-module",
  7031. "extra": {
  7032. "drupal": {
  7033. "version": "8.x-2.7",
  7034. "datestamp": "1611645039",
  7035. "security-coverage": {
  7036. "status": "covered",
  7037. "message": "Covered by Drupal's security advisory policy"
  7038. }
  7039. }
  7040. },
  7041. "notification-url": "https://packages.drupal.org/8/downloads",
  7042. "license": [
  7043. "GPL-2.0+"
  7044. ],
  7045. "authors": [
  7046. {
  7047. "name": "Shamsher Alam",
  7048. "homepage": "https://www.drupal.org/u/shamsher_alam",
  7049. "role": "Author"
  7050. },
  7051. {
  7052. "name": "pen",
  7053. "homepage": "https://www.drupal.org/user/2435634"
  7054. },
  7055. {
  7056. "name": "prempatel2447",
  7057. "homepage": "https://www.drupal.org/user/3250112"
  7058. },
  7059. {
  7060. "name": "rahul-kr-sh",
  7061. "homepage": "https://www.drupal.org/user/3561577"
  7062. }
  7063. ],
  7064. "description": "Redirect user after login to a configured url",
  7065. "homepage": "https://drupal.org/project/redirect_after_login",
  7066. "support": {
  7067. "source": "https://git.drupalcode.org/project/redirect_after_login"
  7068. }
  7069. },
  7070. {
  7071. "name": "drupal/redis",
  7072. "version": "1.5.0",
  7073. "source": {
  7074. "type": "git",
  7075. "url": "https://git.drupalcode.org/project/redis.git",
  7076. "reference": "8.x-1.5"
  7077. },
  7078. "dist": {
  7079. "type": "zip",
  7080. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  7081. "reference": "8.x-1.5",
  7082. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  7083. },
  7084. "require": {
  7085. "drupal/core": "^8.8 || ^9"
  7086. },
  7087. "suggest": {
  7088. "predis/predis": "^1.1.1"
  7089. },
  7090. "type": "drupal-module",
  7091. "extra": {
  7092. "drupal": {
  7093. "version": "8.x-1.5",
  7094. "datestamp": "1609972488",
  7095. "security-coverage": {
  7096. "status": "covered",
  7097. "message": "Covered by Drupal's security advisory policy"
  7098. }
  7099. }
  7100. },
  7101. "autoload": {
  7102. "psr-4": {
  7103. "Drupal\\redis\\": "src"
  7104. }
  7105. },
  7106. "notification-url": "https://packages.drupal.org/8/downloads",
  7107. "license": [
  7108. "GPL-2.0-or-later"
  7109. ],
  7110. "authors": [
  7111. {
  7112. "name": "Berdir",
  7113. "homepage": "https://www.drupal.org/user/214652"
  7114. },
  7115. {
  7116. "name": "pounard",
  7117. "homepage": "https://www.drupal.org/user/240164"
  7118. }
  7119. ],
  7120. "description": "Integration of Drupal with the Redis key-value store.",
  7121. "homepage": "https://www.drupal.org/project/redis",
  7122. "support": {
  7123. "source": "https://git.drupalcode.org/project/redis"
  7124. }
  7125. },
  7126. {
  7127. "name": "drupal/search_api",
  7128. "version": "1.19.0",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://git.drupalcode.org/project/search_api.git",
  7132. "reference": "8.x-1.19"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip",
  7137. "reference": "8.x-1.19",
  7138. "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019"
  7139. },
  7140. "require": {
  7141. "drupal/core": "^8.8 || ^9"
  7142. },
  7143. "conflict": {
  7144. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7145. },
  7146. "require-dev": {
  7147. "drupal/language_fallback_fix": "@dev",
  7148. "drupal/search_api_autocomplete": "@dev",
  7149. "drupal/search_api_db": "*"
  7150. },
  7151. "suggest": {
  7152. "drupal/facets": "Adds the ability to create faceted searches.",
  7153. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7154. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7155. },
  7156. "type": "drupal-module",
  7157. "extra": {
  7158. "drupal": {
  7159. "version": "8.x-1.19",
  7160. "datestamp": "1612192040",
  7161. "security-coverage": {
  7162. "status": "covered",
  7163. "message": "Covered by Drupal's security advisory policy"
  7164. }
  7165. },
  7166. "drush": {
  7167. "services": {
  7168. "drush.services.yml": "^9"
  7169. }
  7170. }
  7171. },
  7172. "notification-url": "https://packages.drupal.org/8/downloads",
  7173. "license": [
  7174. "GPL-2.0-or-later"
  7175. ],
  7176. "authors": [
  7177. {
  7178. "name": "Thomas Seidl",
  7179. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7180. },
  7181. {
  7182. "name": "Nick Veenhof",
  7183. "homepage": "https://www.drupal.org/u/nick_vh"
  7184. },
  7185. {
  7186. "name": "See other contributors",
  7187. "homepage": "https://www.drupal.org/node/790418/committers"
  7188. }
  7189. ],
  7190. "description": "Provides a generic framework for modules offering search capabilities.",
  7191. "homepage": "https://www.drupal.org/project/search_api",
  7192. "support": {
  7193. "source": "https://git.drupalcode.org/project/search_api",
  7194. "issues": "https://www.drupal.org/project/issues/search_api",
  7195. "irc": "irc://irc.freenode.org/drupal-search-api"
  7196. }
  7197. },
  7198. {
  7199. "name": "drupal/search_api_db",
  7200. "version": "1.18.0",
  7201. "require": {
  7202. "drupal/core": "^8.8 || ^9",
  7203. "drupal/search_api": "*"
  7204. },
  7205. "type": "metapackage",
  7206. "extra": {
  7207. "drupal": {
  7208. "version": "8.x-1.18",
  7209. "datestamp": "1605204423",
  7210. "security-coverage": {
  7211. "status": "covered",
  7212. "message": "Covered by Drupal's security advisory policy"
  7213. }
  7214. }
  7215. },
  7216. "notification-url": "https://packages.drupal.org/8/downloads",
  7217. "license": [
  7218. "GPL-2.0-or-later"
  7219. ],
  7220. "authors": [
  7221. {
  7222. "name": "Nick_vh",
  7223. "homepage": "https://www.drupal.org/user/122682"
  7224. },
  7225. {
  7226. "name": "borisson_",
  7227. "homepage": "https://www.drupal.org/user/2393360"
  7228. },
  7229. {
  7230. "name": "drunken monkey",
  7231. "homepage": "https://www.drupal.org/user/205582"
  7232. }
  7233. ],
  7234. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7235. "homepage": "https://www.drupal.org/project/search_api",
  7236. "support": {
  7237. "source": "https://git.drupalcode.org/project/search_api"
  7238. }
  7239. },
  7240. {
  7241. "name": "drupal/smart_trim",
  7242. "version": "1.3.0",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7246. "reference": "8.x-1.3"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.3.zip",
  7251. "reference": "8.x-1.3",
  7252. "shasum": "5894aa067fba19a3452ed8ce749f33bd9ae91907"
  7253. },
  7254. "require": {
  7255. "drupal/core": "^8 || ^9"
  7256. },
  7257. "type": "drupal-module",
  7258. "extra": {
  7259. "drupal": {
  7260. "version": "8.x-1.3",
  7261. "datestamp": "1589766531",
  7262. "security-coverage": {
  7263. "status": "covered",
  7264. "message": "Covered by Drupal's security advisory policy"
  7265. }
  7266. }
  7267. },
  7268. "notification-url": "https://packages.drupal.org/8/downloads",
  7269. "license": [
  7270. "GPL-2.0-or-later"
  7271. ],
  7272. "authors": [
  7273. {
  7274. "name": "Mark Casias (markie)",
  7275. "homepage": "https://www.drupal.org/u/markie",
  7276. "role": "Maintainer"
  7277. },
  7278. {
  7279. "name": "chrisjlee",
  7280. "homepage": "https://www.drupal.org/user/760600"
  7281. },
  7282. {
  7283. "name": "drywall",
  7284. "homepage": "https://www.drupal.org/user/192591"
  7285. },
  7286. {
  7287. "name": "jsenich",
  7288. "homepage": "https://www.drupal.org/user/58871"
  7289. },
  7290. {
  7291. "name": "markie",
  7292. "homepage": "https://www.drupal.org/user/206687"
  7293. },
  7294. {
  7295. "name": "newsignature",
  7296. "homepage": "https://www.drupal.org/user/765518"
  7297. }
  7298. ],
  7299. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7300. "homepage": "https://drupal.org/project/smart_trim",
  7301. "support": {
  7302. "source": "https://cgit.drupalcode.org/smart_trim",
  7303. "issues": "https://drupal.org/project/issues/smart_trim"
  7304. }
  7305. },
  7306. {
  7307. "name": "drupal/smtp",
  7308. "version": "1.0.0",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://git.drupalcode.org/project/smtp.git",
  7312. "reference": "8.x-1.0"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0.zip",
  7317. "reference": "8.x-1.0",
  7318. "shasum": "c40cc7a3c20d3f743e3a4e53f4cc296748da89fd"
  7319. },
  7320. "require": {
  7321. "drupal/core": "^8.8 || ^9",
  7322. "phpmailer/phpmailer": "^6.1.7"
  7323. },
  7324. "suggest": {
  7325. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7326. },
  7327. "type": "drupal-module",
  7328. "extra": {
  7329. "drupal": {
  7330. "version": "8.x-1.0",
  7331. "datestamp": "1601070985",
  7332. "security-coverage": {
  7333. "status": "covered",
  7334. "message": "Covered by Drupal's security advisory policy"
  7335. }
  7336. },
  7337. "branch-alias": {
  7338. "dev-8.x-1.x": "1.x-dev"
  7339. }
  7340. },
  7341. "notification-url": "https://packages.drupal.org/8/downloads",
  7342. "license": [
  7343. "GPL-2.0-or-later"
  7344. ],
  7345. "authors": [
  7346. {
  7347. "name": "LukeLast",
  7348. "homepage": "https://www.drupal.org/user/30151"
  7349. },
  7350. {
  7351. "name": "japerry",
  7352. "homepage": "https://www.drupal.org/user/45640"
  7353. },
  7354. {
  7355. "name": "josesanmartin",
  7356. "homepage": "https://www.drupal.org/user/72012"
  7357. },
  7358. {
  7359. "name": "oadaeh",
  7360. "homepage": "https://www.drupal.org/user/4649"
  7361. },
  7362. {
  7363. "name": "sadashiv",
  7364. "homepage": "https://www.drupal.org/user/1773304"
  7365. },
  7366. {
  7367. "name": "wundo",
  7368. "homepage": "https://www.drupal.org/user/25523"
  7369. },
  7370. {
  7371. "name": "yettyn",
  7372. "homepage": "https://www.drupal.org/user/93281"
  7373. }
  7374. ],
  7375. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7376. "homepage": "https://www.drupal.org/project/smtp",
  7377. "support": {
  7378. "source": "https://git.drupalcode.org/project/smtp",
  7379. "issues": "https://www.drupal.org/project/issues/smtp"
  7380. }
  7381. },
  7382. {
  7383. "name": "drupal/sophron",
  7384. "version": "1.1.0",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://git.drupalcode.org/project/sophron.git",
  7388. "reference": "8.x-1.1"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip",
  7393. "reference": "8.x-1.1",
  7394. "shasum": "afb3650458b15b87918471defa763f24880622ca"
  7395. },
  7396. "require": {
  7397. "drupal/core": "^8.9 || ^9",
  7398. "fileeye/mimemap": "^1.1.4",
  7399. "php": ">=7.1"
  7400. },
  7401. "type": "drupal-module",
  7402. "extra": {
  7403. "drupal": {
  7404. "version": "8.x-1.1",
  7405. "datestamp": "1606047077",
  7406. "security-coverage": {
  7407. "status": "covered",
  7408. "message": "Covered by Drupal's security advisory policy"
  7409. }
  7410. }
  7411. },
  7412. "autoload": {
  7413. "psr-4": {
  7414. "Drupal\\sophron\\": "src/"
  7415. }
  7416. },
  7417. "notification-url": "https://packages.drupal.org/8/downloads",
  7418. "license": [
  7419. "GPL-2.0-or-later"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "mondrake",
  7424. "homepage": "https://www.drupal.org/user/1307444"
  7425. }
  7426. ],
  7427. "description": "Provides an extensive MIME types management API",
  7428. "homepage": "https://www.drupal.org/project/sophron",
  7429. "support": {
  7430. "source": "https://git.drupalcode.org/project/sophron"
  7431. }
  7432. },
  7433. {
  7434. "name": "drupal/synonyms",
  7435. "version": "dev-1.x",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://git.drupalcode.org/project/synonyms.git",
  7439. "reference": "487a41e2b4d4c4a5f161852cbd46178edb954d5d"
  7440. },
  7441. "require": {
  7442. "drupal/core": "^8 || ^9"
  7443. },
  7444. "type": "drupal-module",
  7445. "extra": {
  7446. "branch-alias": {
  7447. "dev-1.x": "1.x-dev"
  7448. },
  7449. "drupal": {
  7450. "version": "8.x-1.0-alpha1+23-dev",
  7451. "datestamp": "1607727823",
  7452. "security-coverage": {
  7453. "status": "not-covered",
  7454. "message": "Dev releases are not covered by Drupal security advisories."
  7455. }
  7456. }
  7457. },
  7458. "notification-url": "https://packages.drupal.org/8/downloads",
  7459. "license": [
  7460. "GPL-2.0-or-later"
  7461. ],
  7462. "authors": [
  7463. {
  7464. "name": "Zen",
  7465. "homepage": "https://www.drupal.org/user/21209"
  7466. },
  7467. {
  7468. "name": "bojanz",
  7469. "homepage": "https://www.drupal.org/user/86106"
  7470. },
  7471. {
  7472. "name": "bucefal91",
  7473. "homepage": "https://www.drupal.org/user/504128"
  7474. },
  7475. {
  7476. "name": "devad",
  7477. "homepage": "https://www.drupal.org/user/2268520"
  7478. }
  7479. ],
  7480. "description": "Provides synonyms feature for content entities.",
  7481. "homepage": "https://www.drupal.org/project/synonyms",
  7482. "support": {
  7483. "source": "https://git.drupalcode.org/project/synonyms"
  7484. },
  7485. "time": "2020-12-11T23:17:33+00:00"
  7486. },
  7487. {
  7488. "name": "drupal/taxonomy_unique",
  7489. "version": "2.3.0",
  7490. "source": {
  7491. "type": "git",
  7492. "url": "https://git.drupalcode.org/project/taxonomy_unique.git",
  7493. "reference": "8.x-2.3"
  7494. },
  7495. "dist": {
  7496. "type": "zip",
  7497. "url": "https://ftp.drupal.org/files/projects/taxonomy_unique-8.x-2.3.zip",
  7498. "reference": "8.x-2.3",
  7499. "shasum": "550d06d5b9c670538b93e0aa31b43b4eb1a76f7e"
  7500. },
  7501. "require": {
  7502. "drupal/core": "^8 || ^9"
  7503. },
  7504. "require-dev": {
  7505. "drupal/coder": "^8.3.6",
  7506. "squizlabs/php_codesniffer": "^3.4.1"
  7507. },
  7508. "type": "drupal-module",
  7509. "extra": {
  7510. "drupal": {
  7511. "version": "8.x-2.3",
  7512. "datestamp": "1591087096",
  7513. "security-coverage": {
  7514. "status": "covered",
  7515. "message": "Covered by Drupal's security advisory policy"
  7516. }
  7517. }
  7518. },
  7519. "notification-url": "https://packages.drupal.org/8/downloads",
  7520. "scripts": {
  7521. "post-install-cmd": [
  7522. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7523. "./vendor/bin/phpcs --config-set show_progress 1"
  7524. ],
  7525. "post-update-cmd": [
  7526. "./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
  7527. "./vendor/bin/phpcs --config-set show_progress 1"
  7528. ],
  7529. "phpcs": [
  7530. "./vendor/bin/phpcs --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7531. ],
  7532. "phpcbf": [
  7533. "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice ./ --ignore=./vendor"
  7534. ]
  7535. },
  7536. "license": [
  7537. "GPL-2.0+"
  7538. ],
  7539. "authors": [
  7540. {
  7541. "name": "Rafael Schally",
  7542. "homepage": "https://www.drupal.org/user/856550",
  7543. "email": "rafael.schally@gmail.com"
  7544. }
  7545. ],
  7546. "description": "Checks for duplicate occurrences of term names.",
  7547. "homepage": "https://www.drupal.org/project/taxonomy_unique",
  7548. "keywords": [
  7549. "drupal",
  7550. "taxonomy",
  7551. "ui"
  7552. ],
  7553. "support": {
  7554. "source": "https://git.drupalcode.org/project/taxonomy_unique"
  7555. }
  7556. },
  7557. {
  7558. "name": "drupal/token",
  7559. "version": "1.9.0",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://git.drupalcode.org/project/token.git",
  7563. "reference": "8.x-1.9"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip",
  7568. "reference": "8.x-1.9",
  7569. "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4"
  7570. },
  7571. "require": {
  7572. "drupal/core": "^8.8 || ^9"
  7573. },
  7574. "type": "drupal-module",
  7575. "extra": {
  7576. "drupal": {
  7577. "version": "8.x-1.9",
  7578. "datestamp": "1608284866",
  7579. "security-coverage": {
  7580. "status": "covered",
  7581. "message": "Covered by Drupal's security advisory policy"
  7582. }
  7583. },
  7584. "drush": {
  7585. "services": {
  7586. "drush.services.yml": "^9 || ^10"
  7587. }
  7588. }
  7589. },
  7590. "notification-url": "https://packages.drupal.org/8/downloads",
  7591. "license": [
  7592. "GPL-2.0-or-later"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Berdir",
  7597. "homepage": "https://www.drupal.org/user/214652"
  7598. },
  7599. {
  7600. "name": "Dave Reid",
  7601. "homepage": "https://www.drupal.org/user/53892"
  7602. },
  7603. {
  7604. "name": "eaton",
  7605. "homepage": "https://www.drupal.org/user/16496"
  7606. },
  7607. {
  7608. "name": "fago",
  7609. "homepage": "https://www.drupal.org/user/16747"
  7610. },
  7611. {
  7612. "name": "greggles",
  7613. "homepage": "https://www.drupal.org/user/36762"
  7614. },
  7615. {
  7616. "name": "mikeryan",
  7617. "homepage": "https://www.drupal.org/user/4420"
  7618. }
  7619. ],
  7620. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7621. "homepage": "https://www.drupal.org/project/token",
  7622. "support": {
  7623. "source": "https://git.drupalcode.org/project/token"
  7624. }
  7625. },
  7626. {
  7627. "name": "drupal/translation_views",
  7628. "version": "1.0.0-alpha10",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://git.drupalcode.org/project/translation_views.git",
  7632. "reference": "8.x-1.0-alpha10"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  7637. "reference": "8.x-1.0-alpha10",
  7638. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  7639. },
  7640. "require": {
  7641. "drupal/core": "^8.8 || ^9"
  7642. },
  7643. "require-dev": {
  7644. "drupal/translators": "*",
  7645. "drupal/translators_content": "*"
  7646. },
  7647. "type": "drupal-module",
  7648. "extra": {
  7649. "drupal": {
  7650. "version": "8.x-1.0-alpha10",
  7651. "datestamp": "1584303687",
  7652. "security-coverage": {
  7653. "status": "not-covered",
  7654. "message": "Project has not opted into security advisory coverage!"
  7655. }
  7656. }
  7657. },
  7658. "notification-url": "https://packages.drupal.org/8/downloads",
  7659. "license": [
  7660. "GPL-2.0-or-later"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "matsbla",
  7665. "homepage": "https://www.drupal.org/user/2325394"
  7666. },
  7667. {
  7668. "name": "vlad.dancer",
  7669. "homepage": "https://www.drupal.org/user/903844"
  7670. }
  7671. ],
  7672. "description": "Create customized lists and queries of translations from your database.",
  7673. "homepage": "https://www.drupal.org/project/translation_views",
  7674. "support": {
  7675. "source": "https://git.drupalcode.org/project/translation_views"
  7676. }
  7677. },
  7678. {
  7679. "name": "drupal/typed_data",
  7680. "version": "dev-1.x",
  7681. "source": {
  7682. "type": "git",
  7683. "url": "https://git.drupalcode.org/project/typed_data.git",
  7684. "reference": "27555f47b522730d04f3b33c9a46c0acbcb3146e"
  7685. },
  7686. "require": {
  7687. "drupal/core": "^8.8.2 || ^9"
  7688. },
  7689. "type": "drupal-module",
  7690. "extra": {
  7691. "branch-alias": {
  7692. "dev-1.x": "1.x-dev"
  7693. },
  7694. "drupal": {
  7695. "version": "8.x-1.0-alpha5+21-dev",
  7696. "datestamp": "1600719315",
  7697. "security-coverage": {
  7698. "status": "not-covered",
  7699. "message": "Dev releases are not covered by Drupal security advisories."
  7700. }
  7701. },
  7702. "drush": {
  7703. "services": {
  7704. "drush.services.yml": "^9 || ^10"
  7705. }
  7706. }
  7707. },
  7708. "notification-url": "https://packages.drupal.org/8/downloads",
  7709. "license": [
  7710. "GPL-2.0-or-later"
  7711. ],
  7712. "authors": [
  7713. {
  7714. "name": "TR",
  7715. "homepage": "https://www.drupal.org/user/202830"
  7716. },
  7717. {
  7718. "name": "fago",
  7719. "homepage": "https://www.drupal.org/user/16747"
  7720. }
  7721. ],
  7722. "description": "Extends the core Typed Data API with new APIs and features.",
  7723. "homepage": "https://www.drupal.org/project/typed_data",
  7724. "support": {
  7725. "source": "https://git.drupalcode.org/project/typed_data",
  7726. "issues": "https://www.drupal.org/project/issues/typed_data"
  7727. },
  7728. "time": "2020-10-30T06:56:14+00:00"
  7729. },
  7730. {
  7731. "name": "drupal/ultimate_cron",
  7732. "version": "2.0.0-alpha5",
  7733. "source": {
  7734. "type": "git",
  7735. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7736. "reference": "8.x-2.0-alpha5"
  7737. },
  7738. "dist": {
  7739. "type": "zip",
  7740. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip",
  7741. "reference": "8.x-2.0-alpha5",
  7742. "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75"
  7743. },
  7744. "require": {
  7745. "drupal/core": "^8.7.7 || ^9"
  7746. },
  7747. "type": "drupal-module",
  7748. "extra": {
  7749. "drupal": {
  7750. "version": "8.x-2.0-alpha5",
  7751. "datestamp": "1600928948",
  7752. "security-coverage": {
  7753. "status": "not-covered",
  7754. "message": "Alpha releases are not covered by Drupal security advisories."
  7755. }
  7756. },
  7757. "drush": {
  7758. "services": {
  7759. "drush.services.yml": "^9 || ^10"
  7760. }
  7761. }
  7762. },
  7763. "notification-url": "https://packages.drupal.org/8/downloads",
  7764. "license": [
  7765. "GPL-2.0+"
  7766. ],
  7767. "authors": [
  7768. {
  7769. "name": "Berdir",
  7770. "homepage": "https://www.drupal.org/user/214652"
  7771. },
  7772. {
  7773. "name": "Dane Powell",
  7774. "homepage": "https://www.drupal.org/user/339326"
  7775. },
  7776. {
  7777. "name": "Primsi",
  7778. "homepage": "https://www.drupal.org/user/282629"
  7779. },
  7780. {
  7781. "name": "arnested",
  7782. "homepage": "https://www.drupal.org/user/245635"
  7783. },
  7784. {
  7785. "name": "gielfeldt",
  7786. "homepage": "https://www.drupal.org/user/366993"
  7787. },
  7788. {
  7789. "name": "miro_dietiker",
  7790. "homepage": "https://www.drupal.org/user/227761"
  7791. }
  7792. ],
  7793. "description": "Ultimate cron",
  7794. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7795. "support": {
  7796. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7797. }
  7798. },
  7799. {
  7800. "name": "drupal/url_to_video_filter",
  7801. "version": "2.0.0",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  7805. "reference": "2.0.0"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  7810. "reference": "2.0.0",
  7811. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  7812. },
  7813. "require": {
  7814. "drupal/core": "^8 || ^9"
  7815. },
  7816. "type": "drupal-module",
  7817. "extra": {
  7818. "drupal": {
  7819. "version": "2.0.0",
  7820. "datestamp": "1607298389",
  7821. "security-coverage": {
  7822. "status": "covered",
  7823. "message": "Covered by Drupal's security advisory policy"
  7824. }
  7825. }
  7826. },
  7827. "notification-url": "https://packages.drupal.org/8/downloads",
  7828. "license": [
  7829. "GPL-2.0-or-later"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Jaypan",
  7834. "homepage": "https://www.drupal.org/user/324696"
  7835. }
  7836. ],
  7837. "description": "Text filter to convert URLs to embedded videos",
  7838. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7839. "support": {
  7840. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  7841. }
  7842. },
  7843. {
  7844. "name": "drupal/video_embed_field",
  7845. "version": "2.4.0",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7849. "reference": "8.x-2.4"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  7854. "reference": "8.x-2.4",
  7855. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  7856. },
  7857. "require": {
  7858. "drupal/core": "^8.8 || ^9"
  7859. },
  7860. "require-dev": {
  7861. "drupal/colorbox": "^1.0",
  7862. "drupal/video_embed_media": "*"
  7863. },
  7864. "type": "drupal-module",
  7865. "extra": {
  7866. "drupal": {
  7867. "version": "8.x-2.4",
  7868. "datestamp": "1587686337",
  7869. "security-coverage": {
  7870. "status": "covered",
  7871. "message": "Covered by Drupal's security advisory policy"
  7872. }
  7873. }
  7874. },
  7875. "notification-url": "https://packages.drupal.org/8/downloads",
  7876. "license": [
  7877. "GPL-2.0+"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "Sam152",
  7882. "homepage": "https://www.drupal.org/user/1485048"
  7883. },
  7884. {
  7885. "name": "jec006",
  7886. "homepage": "https://www.drupal.org/user/855980"
  7887. },
  7888. {
  7889. "name": "plopesc",
  7890. "homepage": "https://www.drupal.org/user/282415"
  7891. }
  7892. ],
  7893. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7894. "homepage": "https://www.drupal.org/project/video_embed_field",
  7895. "support": {
  7896. "source": "https://git.drupalcode.org/project/video_embed_field"
  7897. }
  7898. },
  7899. {
  7900. "name": "drupal/views_autocomplete_filters",
  7901. "version": "1.3.0",
  7902. "source": {
  7903. "type": "git",
  7904. "url": "https://git.drupalcode.org/project/views_autocomplete_filters.git",
  7905. "reference": "8.x-1.3"
  7906. },
  7907. "dist": {
  7908. "type": "zip",
  7909. "url": "https://ftp.drupal.org/files/projects/views_autocomplete_filters-8.x-1.3.zip",
  7910. "reference": "8.x-1.3",
  7911. "shasum": "55762182e55c70f117d5edb8692049e0881ec4ce"
  7912. },
  7913. "require": {
  7914. "drupal/core": "^8 || ^9"
  7915. },
  7916. "type": "drupal-module",
  7917. "extra": {
  7918. "drupal": {
  7919. "version": "8.x-1.3",
  7920. "datestamp": "1587146330",
  7921. "security-coverage": {
  7922. "status": "covered",
  7923. "message": "Covered by Drupal's security advisory policy"
  7924. }
  7925. }
  7926. },
  7927. "notification-url": "https://packages.drupal.org/8/downloads",
  7928. "license": [
  7929. "GPL-2.0-or-later"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "RobLoach",
  7934. "homepage": "https://www.drupal.org/user/61114"
  7935. },
  7936. {
  7937. "name": "colan",
  7938. "homepage": "https://www.drupal.org/user/58704"
  7939. },
  7940. {
  7941. "name": "vasike",
  7942. "homepage": "https://www.drupal.org/user/156237"
  7943. }
  7944. ],
  7945. "description": "Add autocomplete functionality to the views filter text fields.",
  7946. "homepage": "https://www.drupal.org/project/views_autocomplete_filters",
  7947. "keywords": [
  7948. "Drupal",
  7949. "views_autocomplete_filters"
  7950. ],
  7951. "support": {
  7952. "source": "https://git.drupalcode.org/project/views_autocomplete_filters",
  7953. "issues": "https://www.drupal.org/project/issues/views_autocomplete_filters"
  7954. }
  7955. },
  7956. {
  7957. "name": "drupal/views_bulk_edit",
  7958. "version": "2.5.0",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7962. "reference": "8.x-2.5"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.5.zip",
  7967. "reference": "8.x-2.5",
  7968. "shasum": "5f268f532e070fd3d1bffcb135d90f395f303a37"
  7969. },
  7970. "require": {
  7971. "drupal/core": "^8 || ^9"
  7972. },
  7973. "require-dev": {
  7974. "drupal/views_bulk_operations": "~3.0"
  7975. },
  7976. "suggest": {
  7977. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7978. },
  7979. "type": "drupal-module",
  7980. "extra": {
  7981. "drupal": {
  7982. "version": "8.x-2.5",
  7983. "datestamp": "1606726163",
  7984. "security-coverage": {
  7985. "status": "covered",
  7986. "message": "Covered by Drupal's security advisory policy"
  7987. }
  7988. }
  7989. },
  7990. "notification-url": "https://packages.drupal.org/8/downloads",
  7991. "license": [
  7992. "GPL-2.0+"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Marcin Grabias",
  7997. "homepage": "https://www.drupal.org/u/graber"
  7998. },
  7999. {
  8000. "name": "benjy",
  8001. "homepage": "https://www.drupal.org/user/1852732"
  8002. }
  8003. ],
  8004. "description": "Allows bulk edition of entity field values.",
  8005. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  8006. "support": {
  8007. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  8008. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  8009. }
  8010. },
  8011. {
  8012. "name": "drupal/views_bulk_operations",
  8013. "version": "3.10.0",
  8014. "source": {
  8015. "type": "git",
  8016. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  8017. "reference": "8.x-3.10"
  8018. },
  8019. "dist": {
  8020. "type": "zip",
  8021. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.10.zip",
  8022. "reference": "8.x-3.10",
  8023. "shasum": "e346c2a72fc9a1ae8af418e6a02076f52c0fcc7b"
  8024. },
  8025. "require": {
  8026. "drupal/core": "^8.8 || ^9"
  8027. },
  8028. "require-dev": {
  8029. "drush/drush": "^10"
  8030. },
  8031. "suggest": {
  8032. "drush/drush": "^9 || ^10"
  8033. },
  8034. "type": "drupal-module",
  8035. "extra": {
  8036. "drupal": {
  8037. "version": "8.x-3.10",
  8038. "datestamp": "1608795018",
  8039. "security-coverage": {
  8040. "status": "covered",
  8041. "message": "Covered by Drupal's security advisory policy"
  8042. }
  8043. },
  8044. "drush": {
  8045. "services": {
  8046. "drush.services.yml": "^9 || ^10"
  8047. }
  8048. }
  8049. },
  8050. "notification-url": "https://packages.drupal.org/8/downloads",
  8051. "license": [
  8052. "GPL-2.0-or-later"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Marcin Grabias",
  8057. "homepage": "https://www.drupal.org/u/graber"
  8058. },
  8059. {
  8060. "name": "Jon Pugh",
  8061. "homepage": "https://www.drupal.org/user/17028"
  8062. },
  8063. {
  8064. "name": "bojanz",
  8065. "homepage": "https://www.drupal.org/user/86106"
  8066. },
  8067. {
  8068. "name": "infojunkie",
  8069. "homepage": "https://www.drupal.org/user/48424"
  8070. },
  8071. {
  8072. "name": "joelpittet",
  8073. "homepage": "https://www.drupal.org/user/160302"
  8074. }
  8075. ],
  8076. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  8077. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  8078. "support": {
  8079. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  8080. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  8081. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  8082. }
  8083. },
  8084. {
  8085. "name": "drupal/views_ef_fieldset",
  8086. "version": "1.5.0",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  8090. "reference": "8.x-1.5"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.5.zip",
  8095. "reference": "8.x-1.5",
  8096. "shasum": "72ca0b63028d0fe65e13c8472546a8803aa0d079"
  8097. },
  8098. "require": {
  8099. "drupal/core": "^8 || ^9",
  8100. "php": ">=7"
  8101. },
  8102. "type": "drupal-module",
  8103. "extra": {
  8104. "drupal": {
  8105. "version": "8.x-1.5",
  8106. "datestamp": "1604567512",
  8107. "security-coverage": {
  8108. "status": "covered",
  8109. "message": "Covered by Drupal's security advisory policy"
  8110. }
  8111. },
  8112. "composer-exit-on-patch-failure": true,
  8113. "enable-patching": true,
  8114. "patches": {
  8115. "drupal/core": {
  8116. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  8117. }
  8118. }
  8119. },
  8120. "autoload-dev": {
  8121. "psr-4": {
  8122. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  8123. }
  8124. },
  8125. "notification-url": "https://packages.drupal.org/8/downloads",
  8126. "scripts": {
  8127. "grumphp": [
  8128. "./vendor/bin/grumphp run"
  8129. ]
  8130. },
  8131. "license": [
  8132. "GPL-2.0+"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Pol Dellaiera",
  8137. "homepage": "https://www.drupal.org/user/47194",
  8138. "email": "pol.dellaiera@protonmail.com"
  8139. },
  8140. {
  8141. "name": "ciss",
  8142. "homepage": "https://www.drupal.org/user/1632364"
  8143. }
  8144. ],
  8145. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  8146. "homepage": "https://drupal.org/project/views_field_formatter",
  8147. "support": {
  8148. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8149. }
  8150. },
  8151. {
  8152. "name": "drush/drush",
  8153. "version": "10.3.6",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/drush-ops/drush.git",
  8157. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8162. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  8163. "shasum": ""
  8164. },
  8165. "require": {
  8166. "chi-teck/drupal-code-generator": "^1.32.1",
  8167. "composer/semver": "^1.4 || ^3",
  8168. "consolidation/config": "^1.2",
  8169. "consolidation/filter-via-dot-access-data": "^1",
  8170. "consolidation/robo": "^1.4.11 || ^2",
  8171. "consolidation/site-alias": "^3.0.0@stable",
  8172. "consolidation/site-process": "^2.1 || ^4",
  8173. "ext-dom": "*",
  8174. "grasmash/yaml-expander": "^1.1.1",
  8175. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  8176. "league/container": "~2",
  8177. "php": ">=7.1.3",
  8178. "psr/log": "~1.0",
  8179. "psy/psysh": "~0.6",
  8180. "symfony/event-dispatcher": "^3.4 || ^4.0",
  8181. "symfony/finder": "^3.4 || ^4.0 || ^5",
  8182. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  8183. "symfony/yaml": "^3.4 || ^4.0",
  8184. "webflo/drupal-finder": "^1.2",
  8185. "webmozart/path-util": "^2.1.0"
  8186. },
  8187. "require-dev": {
  8188. "composer/installers": "^1.7",
  8189. "cweagans/composer-patches": "~1.0",
  8190. "david-garcia/phpwhois": "4.3.0",
  8191. "drupal/alinks": "1.0.0",
  8192. "drupal/core-recommended": "^8.8",
  8193. "lox/xhprof": "dev-master",
  8194. "phpunit/phpunit": "^4.8.36 || ^6.1",
  8195. "squizlabs/php_codesniffer": "^2.7 || ^3",
  8196. "vlucas/phpdotenv": "^2.4"
  8197. },
  8198. "bin": [
  8199. "drush"
  8200. ],
  8201. "type": "library",
  8202. "extra": {
  8203. "installer-paths": {
  8204. "sut/core": [
  8205. "type:drupal-core"
  8206. ],
  8207. "sut/libraries/{$name}": [
  8208. "type:drupal-library"
  8209. ],
  8210. "sut/modules/unish/{$name}": [
  8211. "drupal/devel"
  8212. ],
  8213. "sut/themes/unish/{$name}": [
  8214. "drupal/empty_theme"
  8215. ],
  8216. "sut/modules/contrib/{$name}": [
  8217. "type:drupal-module"
  8218. ],
  8219. "sut/profiles/contrib/{$name}": [
  8220. "type:drupal-profile"
  8221. ],
  8222. "sut/themes/contrib/{$name}": [
  8223. "type:drupal-theme"
  8224. ],
  8225. "sut/drush/contrib/{$name}": [
  8226. "type:drupal-drush"
  8227. ]
  8228. }
  8229. },
  8230. "autoload": {
  8231. "psr-4": {
  8232. "Drush\\": "src/",
  8233. "Drush\\Internal\\": "src/internal-forks"
  8234. }
  8235. },
  8236. "notification-url": "https://packagist.org/downloads/",
  8237. "license": [
  8238. "GPL-2.0-or-later"
  8239. ],
  8240. "authors": [
  8241. {
  8242. "name": "Moshe Weitzman",
  8243. "email": "weitzman@tejasa.com"
  8244. },
  8245. {
  8246. "name": "Owen Barton",
  8247. "email": "drupal@owenbarton.com"
  8248. },
  8249. {
  8250. "name": "Greg Anderson",
  8251. "email": "greg.1.anderson@greenknowe.org"
  8252. },
  8253. {
  8254. "name": "Jonathan Araña Cruz",
  8255. "email": "jonhattan@faita.net"
  8256. },
  8257. {
  8258. "name": "Jonathan Hedstrom",
  8259. "email": "jhedstrom@gmail.com"
  8260. },
  8261. {
  8262. "name": "Christopher Gervais",
  8263. "email": "chris@ergonlogic.com"
  8264. },
  8265. {
  8266. "name": "Dave Reid",
  8267. "email": "dave@davereid.net"
  8268. },
  8269. {
  8270. "name": "Damian Lee",
  8271. "email": "damiankloip@googlemail.com"
  8272. }
  8273. ],
  8274. "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.",
  8275. "homepage": "http://www.drush.org",
  8276. "funding": [
  8277. {
  8278. "url": "https://github.com/weitzman",
  8279. "type": "github"
  8280. }
  8281. ],
  8282. "time": "2020-11-11T04:36:51+00:00"
  8283. },
  8284. {
  8285. "name": "egulias/email-validator",
  8286. "version": "2.1.22",
  8287. "source": {
  8288. "type": "git",
  8289. "url": "https://github.com/egulias/EmailValidator.git",
  8290. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  8291. },
  8292. "dist": {
  8293. "type": "zip",
  8294. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8295. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  8296. "shasum": ""
  8297. },
  8298. "require": {
  8299. "doctrine/lexer": "^1.0.1",
  8300. "php": ">=5.5",
  8301. "symfony/polyfill-intl-idn": "^1.10"
  8302. },
  8303. "require-dev": {
  8304. "dominicsayers/isemail": "^3.0.7",
  8305. "phpunit/phpunit": "^4.8.36|^7.5.15",
  8306. "satooshi/php-coveralls": "^1.0.1"
  8307. },
  8308. "suggest": {
  8309. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8310. },
  8311. "type": "library",
  8312. "extra": {
  8313. "branch-alias": {
  8314. "dev-master": "2.1.x-dev"
  8315. }
  8316. },
  8317. "autoload": {
  8318. "psr-4": {
  8319. "Egulias\\EmailValidator\\": "src"
  8320. }
  8321. },
  8322. "notification-url": "https://packagist.org/downloads/",
  8323. "license": [
  8324. "MIT"
  8325. ],
  8326. "authors": [
  8327. {
  8328. "name": "Eduardo Gulias Davis"
  8329. }
  8330. ],
  8331. "description": "A library for validating emails against several RFCs",
  8332. "homepage": "https://github.com/egulias/EmailValidator",
  8333. "keywords": [
  8334. "email",
  8335. "emailvalidation",
  8336. "emailvalidator",
  8337. "validation",
  8338. "validator"
  8339. ],
  8340. "time": "2020-09-26T15:48:38+00:00"
  8341. },
  8342. {
  8343. "name": "fileeye/mimemap",
  8344. "version": "1.1.4",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/FileEye/MimeMap.git",
  8348. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8353. "reference": "3a0ddb71f06d8fb3f84f0a3c45348af81803b16d",
  8354. "shasum": ""
  8355. },
  8356. "require": {
  8357. "php": ">=5.4"
  8358. },
  8359. "require-dev": {
  8360. "phpunit/phpunit": "<10",
  8361. "sebastian/comparator": "*",
  8362. "sebastian/diff": "*",
  8363. "squizlabs/php_codesniffer": "*",
  8364. "symfony/console": "*",
  8365. "symfony/filesystem": "*",
  8366. "symfony/var-dumper": "*",
  8367. "symfony/yaml": "*"
  8368. },
  8369. "bin": [
  8370. "bin/fileeye-mimemap"
  8371. ],
  8372. "type": "library",
  8373. "extra": {
  8374. "branch-alias": {
  8375. "dev-master": "1.x-dev"
  8376. }
  8377. },
  8378. "autoload": {
  8379. "psr-4": {
  8380. "FileEye\\MimeMap\\": "src/"
  8381. }
  8382. },
  8383. "notification-url": "https://packagist.org/downloads/",
  8384. "license": [
  8385. "LGPL-3.0-or-later"
  8386. ],
  8387. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8388. "homepage": "https://github.com/FileEye/MimeMap",
  8389. "keywords": [
  8390. "mime",
  8391. "mime-database",
  8392. "mime-parser",
  8393. "mime-type"
  8394. ],
  8395. "time": "2020-05-16T10:19:16+00:00"
  8396. },
  8397. {
  8398. "name": "grasmash/expander",
  8399. "version": "1.0.0",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/grasmash/expander.git",
  8403. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8408. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  8409. "shasum": ""
  8410. },
  8411. "require": {
  8412. "dflydev/dot-access-data": "^1.1.0",
  8413. "php": ">=5.4"
  8414. },
  8415. "require-dev": {
  8416. "greg-1-anderson/composer-test-scenarios": "^1",
  8417. "phpunit/phpunit": "^4|^5.5.4",
  8418. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8419. "squizlabs/php_codesniffer": "^2.7"
  8420. },
  8421. "type": "library",
  8422. "extra": {
  8423. "branch-alias": {
  8424. "dev-master": "1.x-dev"
  8425. }
  8426. },
  8427. "autoload": {
  8428. "psr-4": {
  8429. "Grasmash\\Expander\\": "src/"
  8430. }
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Matthew Grasmick"
  8439. }
  8440. ],
  8441. "description": "Expands internal property references in PHP arrays file.",
  8442. "time": "2017-12-21T22:14:55+00:00"
  8443. },
  8444. {
  8445. "name": "grasmash/yaml-expander",
  8446. "version": "1.4.0",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/grasmash/yaml-expander.git",
  8450. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8455. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  8456. "shasum": ""
  8457. },
  8458. "require": {
  8459. "dflydev/dot-access-data": "^1.1.0",
  8460. "php": ">=5.4",
  8461. "symfony/yaml": "^2.8.11|^3|^4"
  8462. },
  8463. "require-dev": {
  8464. "greg-1-anderson/composer-test-scenarios": "^1",
  8465. "phpunit/phpunit": "^4.8|^5.5.4",
  8466. "satooshi/php-coveralls": "^1.0.2|dev-master",
  8467. "squizlabs/php_codesniffer": "^2.7"
  8468. },
  8469. "type": "library",
  8470. "extra": {
  8471. "branch-alias": {
  8472. "dev-master": "1.x-dev"
  8473. }
  8474. },
  8475. "autoload": {
  8476. "psr-4": {
  8477. "Grasmash\\YamlExpander\\": "src/"
  8478. }
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "MIT"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Matthew Grasmick"
  8487. }
  8488. ],
  8489. "description": "Expands internal property references in a yaml file.",
  8490. "time": "2017-12-16T16:06:03+00:00"
  8491. },
  8492. {
  8493. "name": "guzzlehttp/guzzle",
  8494. "version": "6.5.5",
  8495. "source": {
  8496. "type": "git",
  8497. "url": "https://github.com/guzzle/guzzle.git",
  8498. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  8499. },
  8500. "dist": {
  8501. "type": "zip",
  8502. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8503. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  8504. "shasum": ""
  8505. },
  8506. "require": {
  8507. "ext-json": "*",
  8508. "guzzlehttp/promises": "^1.0",
  8509. "guzzlehttp/psr7": "^1.6.1",
  8510. "php": ">=5.5",
  8511. "symfony/polyfill-intl-idn": "^1.17.0"
  8512. },
  8513. "require-dev": {
  8514. "ext-curl": "*",
  8515. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  8516. "psr/log": "^1.1"
  8517. },
  8518. "suggest": {
  8519. "psr/log": "Required for using the Log middleware"
  8520. },
  8521. "type": "library",
  8522. "extra": {
  8523. "branch-alias": {
  8524. "dev-master": "6.5-dev"
  8525. }
  8526. },
  8527. "autoload": {
  8528. "psr-4": {
  8529. "GuzzleHttp\\": "src/"
  8530. },
  8531. "files": [
  8532. "src/functions_include.php"
  8533. ]
  8534. },
  8535. "notification-url": "https://packagist.org/downloads/",
  8536. "license": [
  8537. "MIT"
  8538. ],
  8539. "authors": [
  8540. {
  8541. "name": "Michael Dowling",
  8542. "email": "mtdowling@gmail.com",
  8543. "homepage": "https://github.com/mtdowling"
  8544. }
  8545. ],
  8546. "description": "Guzzle is a PHP HTTP client library",
  8547. "homepage": "http://guzzlephp.org/",
  8548. "keywords": [
  8549. "client",
  8550. "curl",
  8551. "framework",
  8552. "http",
  8553. "http client",
  8554. "rest",
  8555. "web service"
  8556. ],
  8557. "time": "2020-06-16T21:01:06+00:00"
  8558. },
  8559. {
  8560. "name": "guzzlehttp/promises",
  8561. "version": "1.4.0",
  8562. "source": {
  8563. "type": "git",
  8564. "url": "https://github.com/guzzle/promises.git",
  8565. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  8566. },
  8567. "dist": {
  8568. "type": "zip",
  8569. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  8570. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  8571. "shasum": ""
  8572. },
  8573. "require": {
  8574. "php": ">=5.5"
  8575. },
  8576. "require-dev": {
  8577. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  8578. },
  8579. "type": "library",
  8580. "extra": {
  8581. "branch-alias": {
  8582. "dev-master": "1.4-dev"
  8583. }
  8584. },
  8585. "autoload": {
  8586. "psr-4": {
  8587. "GuzzleHttp\\Promise\\": "src/"
  8588. },
  8589. "files": [
  8590. "src/functions_include.php"
  8591. ]
  8592. },
  8593. "notification-url": "https://packagist.org/downloads/",
  8594. "license": [
  8595. "MIT"
  8596. ],
  8597. "authors": [
  8598. {
  8599. "name": "Michael Dowling",
  8600. "email": "mtdowling@gmail.com",
  8601. "homepage": "https://github.com/mtdowling"
  8602. }
  8603. ],
  8604. "description": "Guzzle promises library",
  8605. "keywords": [
  8606. "promise"
  8607. ],
  8608. "time": "2020-09-30T07:37:28+00:00"
  8609. },
  8610. {
  8611. "name": "guzzlehttp/psr7",
  8612. "version": "1.7.0",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/guzzle/psr7.git",
  8616. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8621. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": ">=5.4.0",
  8626. "psr/http-message": "~1.0",
  8627. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  8628. },
  8629. "provide": {
  8630. "psr/http-message-implementation": "1.0"
  8631. },
  8632. "require-dev": {
  8633. "ext-zlib": "*",
  8634. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  8635. },
  8636. "suggest": {
  8637. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-master": "1.7-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "psr-4": {
  8647. "GuzzleHttp\\Psr7\\": "src/"
  8648. },
  8649. "files": [
  8650. "src/functions_include.php"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "MIT"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Michael Dowling",
  8660. "email": "mtdowling@gmail.com",
  8661. "homepage": "https://github.com/mtdowling"
  8662. },
  8663. {
  8664. "name": "Tobias Schultze",
  8665. "homepage": "https://github.com/Tobion"
  8666. }
  8667. ],
  8668. "description": "PSR-7 message implementation that also provides common utility methods",
  8669. "keywords": [
  8670. "http",
  8671. "message",
  8672. "psr-7",
  8673. "request",
  8674. "response",
  8675. "stream",
  8676. "uri",
  8677. "url"
  8678. ],
  8679. "time": "2020-09-30T07:37:11+00:00"
  8680. },
  8681. {
  8682. "name": "kint-php/kint",
  8683. "version": "3.3",
  8684. "source": {
  8685. "type": "git",
  8686. "url": "https://github.com/kint-php/kint.git",
  8687. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8688. },
  8689. "dist": {
  8690. "type": "zip",
  8691. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8692. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8693. "shasum": ""
  8694. },
  8695. "require": {
  8696. "php": ">=5.3.6"
  8697. },
  8698. "require-dev": {
  8699. "friendsofphp/php-cs-fixer": "^2.0",
  8700. "phpunit/phpunit": "^4.0",
  8701. "seld/phar-utils": "^1.0",
  8702. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8703. "vimeo/psalm": "^3.0"
  8704. },
  8705. "suggest": {
  8706. "ext-ctype": "Simple data type tests",
  8707. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8708. "ext-mbstring": "Provides string encoding detection",
  8709. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8710. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8711. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8712. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8713. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8714. },
  8715. "type": "library",
  8716. "autoload": {
  8717. "files": [
  8718. "init.php"
  8719. ],
  8720. "psr-4": {
  8721. "Kint\\": "src/"
  8722. }
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "MIT"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Jonathan Vollebregt",
  8731. "homepage": "https://github.com/jnvsor"
  8732. },
  8733. {
  8734. "name": "Rokas Šleinius",
  8735. "homepage": "https://github.com/raveren"
  8736. },
  8737. {
  8738. "name": "Contributors",
  8739. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8740. }
  8741. ],
  8742. "description": "Kint - debugging tool for PHP developers",
  8743. "homepage": "https://kint-php.github.io/kint/",
  8744. "keywords": [
  8745. "debug",
  8746. "kint",
  8747. "php"
  8748. ],
  8749. "time": "2019-10-17T18:05:24+00:00"
  8750. },
  8751. {
  8752. "name": "laminas/laminas-diactoros",
  8753. "version": "2.5.0",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/laminas/laminas-diactoros.git",
  8757. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8762. "reference": "4ff7400c1c12e404144992ef43c8b733fd9ad516",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "laminas/laminas-zendframework-bridge": "^1.0",
  8767. "php": "^7.3 || ~8.0.0",
  8768. "psr/http-factory": "^1.0",
  8769. "psr/http-message": "^1.0"
  8770. },
  8771. "conflict": {
  8772. "phpspec/prophecy": "<1.9.0"
  8773. },
  8774. "provide": {
  8775. "psr/http-factory-implementation": "1.0",
  8776. "psr/http-message-implementation": "1.0"
  8777. },
  8778. "replace": {
  8779. "zendframework/zend-diactoros": "^2.2.1"
  8780. },
  8781. "require-dev": {
  8782. "ext-curl": "*",
  8783. "ext-dom": "*",
  8784. "ext-gd": "*",
  8785. "ext-libxml": "*",
  8786. "http-interop/http-factory-tests": "^0.8.0",
  8787. "laminas/laminas-coding-standard": "~1.0.0",
  8788. "php-http/psr7-integration-tests": "^1.1",
  8789. "phpspec/prophecy-phpunit": "^2.0",
  8790. "phpunit/phpunit": "^9.1"
  8791. },
  8792. "type": "library",
  8793. "extra": {
  8794. "laminas": {
  8795. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  8796. "module": "Laminas\\Diactoros"
  8797. }
  8798. },
  8799. "autoload": {
  8800. "files": [
  8801. "src/functions/create_uploaded_file.php",
  8802. "src/functions/marshal_headers_from_sapi.php",
  8803. "src/functions/marshal_method_from_sapi.php",
  8804. "src/functions/marshal_protocol_version_from_sapi.php",
  8805. "src/functions/marshal_uri_from_sapi.php",
  8806. "src/functions/normalize_server.php",
  8807. "src/functions/normalize_uploaded_files.php",
  8808. "src/functions/parse_cookie_header.php",
  8809. "src/functions/create_uploaded_file.legacy.php",
  8810. "src/functions/marshal_headers_from_sapi.legacy.php",
  8811. "src/functions/marshal_method_from_sapi.legacy.php",
  8812. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  8813. "src/functions/marshal_uri_from_sapi.legacy.php",
  8814. "src/functions/normalize_server.legacy.php",
  8815. "src/functions/normalize_uploaded_files.legacy.php",
  8816. "src/functions/parse_cookie_header.legacy.php"
  8817. ],
  8818. "psr-4": {
  8819. "Laminas\\Diactoros\\": "src/"
  8820. }
  8821. },
  8822. "notification-url": "https://packagist.org/downloads/",
  8823. "license": [
  8824. "BSD-3-Clause"
  8825. ],
  8826. "description": "PSR HTTP Message implementations",
  8827. "homepage": "https://laminas.dev",
  8828. "keywords": [
  8829. "http",
  8830. "laminas",
  8831. "psr",
  8832. "psr-17",
  8833. "psr-7"
  8834. ],
  8835. "funding": [
  8836. {
  8837. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8838. "type": "community_bridge"
  8839. }
  8840. ],
  8841. "time": "2020-11-18T18:39:28+00:00"
  8842. },
  8843. {
  8844. "name": "laminas/laminas-escaper",
  8845. "version": "2.7.0",
  8846. "source": {
  8847. "type": "git",
  8848. "url": "https://github.com/laminas/laminas-escaper.git",
  8849. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5"
  8850. },
  8851. "dist": {
  8852. "type": "zip",
  8853. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8854. "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5",
  8855. "shasum": ""
  8856. },
  8857. "require": {
  8858. "laminas/laminas-zendframework-bridge": "^1.0",
  8859. "php": "^7.3 || ~8.0.0"
  8860. },
  8861. "replace": {
  8862. "zendframework/zend-escaper": "^2.6.1"
  8863. },
  8864. "require-dev": {
  8865. "laminas/laminas-coding-standard": "~1.0.0",
  8866. "phpunit/phpunit": "^9.3",
  8867. "psalm/plugin-phpunit": "^0.12.2",
  8868. "vimeo/psalm": "^3.16"
  8869. },
  8870. "suggest": {
  8871. "ext-iconv": "*",
  8872. "ext-mbstring": "*"
  8873. },
  8874. "type": "library",
  8875. "autoload": {
  8876. "psr-4": {
  8877. "Laminas\\Escaper\\": "src/"
  8878. }
  8879. },
  8880. "notification-url": "https://packagist.org/downloads/",
  8881. "license": [
  8882. "BSD-3-Clause"
  8883. ],
  8884. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8885. "homepage": "https://laminas.dev",
  8886. "keywords": [
  8887. "escaper",
  8888. "laminas"
  8889. ],
  8890. "funding": [
  8891. {
  8892. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8893. "type": "community_bridge"
  8894. }
  8895. ],
  8896. "time": "2020-11-17T21:26:43+00:00"
  8897. },
  8898. {
  8899. "name": "laminas/laminas-feed",
  8900. "version": "2.13.0",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/laminas/laminas-feed.git",
  8904. "reference": "fb89aac1984222227f37792dd193d34829a0762f"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/fb89aac1984222227f37792dd193d34829a0762f",
  8909. "reference": "fb89aac1984222227f37792dd193d34829a0762f",
  8910. "shasum": ""
  8911. },
  8912. "require": {
  8913. "ext-dom": "*",
  8914. "ext-libxml": "*",
  8915. "laminas/laminas-escaper": "^2.5.2",
  8916. "laminas/laminas-stdlib": "^3.2.1",
  8917. "laminas/laminas-zendframework-bridge": "^1.0",
  8918. "php": "^7.3 || ~8.0.0"
  8919. },
  8920. "conflict": {
  8921. "laminas/laminas-servicemanager": "<3.3"
  8922. },
  8923. "replace": {
  8924. "zendframework/zend-feed": "^2.12.0"
  8925. },
  8926. "require-dev": {
  8927. "laminas/laminas-cache": "^2.7.2",
  8928. "laminas/laminas-coding-standard": "~1.0.0",
  8929. "laminas/laminas-db": "^2.8.2",
  8930. "laminas/laminas-http": "^2.7",
  8931. "laminas/laminas-servicemanager": "^3.3",
  8932. "laminas/laminas-validator": "^2.10.1",
  8933. "phpunit/phpunit": "^9.3",
  8934. "psalm/plugin-phpunit": "^0.13.0",
  8935. "psr/http-message": "^1.0.1",
  8936. "vimeo/psalm": "^4.1"
  8937. },
  8938. "suggest": {
  8939. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  8940. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  8941. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  8942. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  8943. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  8944. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  8945. },
  8946. "type": "library",
  8947. "autoload": {
  8948. "psr-4": {
  8949. "Laminas\\Feed\\": "src/"
  8950. }
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "BSD-3-Clause"
  8955. ],
  8956. "description": "provides functionality for consuming RSS and Atom feeds",
  8957. "homepage": "https://laminas.dev",
  8958. "keywords": [
  8959. "feed",
  8960. "laminas"
  8961. ],
  8962. "funding": [
  8963. {
  8964. "url": "https://funding.communitybridge.org/projects/laminas-project",
  8965. "type": "community_bridge"
  8966. }
  8967. ],
  8968. "time": "2020-11-18T21:02:52+00:00"
  8969. },
  8970. {
  8971. "name": "laminas/laminas-stdlib",
  8972. "version": "3.3.0",
  8973. "source": {
  8974. "type": "git",
  8975. "url": "https://github.com/laminas/laminas-stdlib.git",
  8976. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  8977. },
  8978. "dist": {
  8979. "type": "zip",
  8980. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  8981. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  8982. "shasum": ""
  8983. },
  8984. "require": {
  8985. "laminas/laminas-zendframework-bridge": "^1.0",
  8986. "php": "^7.3 || ^8.0"
  8987. },
  8988. "replace": {
  8989. "zendframework/zend-stdlib": "^3.2.1"
  8990. },
  8991. "require-dev": {
  8992. "laminas/laminas-coding-standard": "~1.0.0",
  8993. "phpbench/phpbench": "^0.17.1",
  8994. "phpunit/phpunit": "^9.3.7"
  8995. },
  8996. "type": "library",
  8997. "extra": {
  8998. "branch-alias": {
  8999. "dev-master": "3.3.x-dev",
  9000. "dev-develop": "3.4.x-dev"
  9001. }
  9002. },
  9003. "autoload": {
  9004. "psr-4": {
  9005. "Laminas\\Stdlib\\": "src/"
  9006. }
  9007. },
  9008. "notification-url": "https://packagist.org/downloads/",
  9009. "license": [
  9010. "BSD-3-Clause"
  9011. ],
  9012. "description": "SPL extensions, array utilities, error handlers, and more",
  9013. "homepage": "https://laminas.dev",
  9014. "keywords": [
  9015. "laminas",
  9016. "stdlib"
  9017. ],
  9018. "funding": [
  9019. {
  9020. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9021. "type": "community_bridge"
  9022. }
  9023. ],
  9024. "time": "2020-08-25T09:08:16+00:00"
  9025. },
  9026. {
  9027. "name": "laminas/laminas-zendframework-bridge",
  9028. "version": "1.1.1",
  9029. "source": {
  9030. "type": "git",
  9031. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  9032. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  9033. },
  9034. "dist": {
  9035. "type": "zip",
  9036. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  9037. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  9038. "shasum": ""
  9039. },
  9040. "require": {
  9041. "php": "^5.6 || ^7.0 || ^8.0"
  9042. },
  9043. "require-dev": {
  9044. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  9045. "squizlabs/php_codesniffer": "^3.5"
  9046. },
  9047. "type": "library",
  9048. "extra": {
  9049. "laminas": {
  9050. "module": "Laminas\\ZendFrameworkBridge"
  9051. }
  9052. },
  9053. "autoload": {
  9054. "files": [
  9055. "src/autoload.php"
  9056. ],
  9057. "psr-4": {
  9058. "Laminas\\ZendFrameworkBridge\\": "src//"
  9059. }
  9060. },
  9061. "notification-url": "https://packagist.org/downloads/",
  9062. "license": [
  9063. "BSD-3-Clause"
  9064. ],
  9065. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  9066. "keywords": [
  9067. "ZendFramework",
  9068. "autoloading",
  9069. "laminas",
  9070. "zf"
  9071. ],
  9072. "funding": [
  9073. {
  9074. "url": "https://funding.communitybridge.org/projects/laminas-project",
  9075. "type": "community_bridge"
  9076. }
  9077. ],
  9078. "time": "2020-09-14T14:23:00+00:00"
  9079. },
  9080. {
  9081. "name": "league/container",
  9082. "version": "2.4.1",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/thephpleague/container.git",
  9086. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  9091. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  9092. "shasum": ""
  9093. },
  9094. "require": {
  9095. "container-interop/container-interop": "^1.2",
  9096. "php": "^5.4.0 || ^7.0"
  9097. },
  9098. "provide": {
  9099. "container-interop/container-interop-implementation": "^1.2",
  9100. "psr/container-implementation": "^1.0"
  9101. },
  9102. "replace": {
  9103. "orno/di": "~2.0"
  9104. },
  9105. "require-dev": {
  9106. "phpunit/phpunit": "4.*"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-2.x": "2.x-dev",
  9112. "dev-1.x": "1.x-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "psr-4": {
  9117. "League\\Container\\": "src"
  9118. }
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "MIT"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Phil Bennett",
  9127. "email": "philipobenito@gmail.com",
  9128. "homepage": "http://www.philipobenito.com",
  9129. "role": "Developer"
  9130. }
  9131. ],
  9132. "description": "A fast and intuitive dependency injection container.",
  9133. "homepage": "https://github.com/thephpleague/container",
  9134. "keywords": [
  9135. "container",
  9136. "dependency",
  9137. "di",
  9138. "injection",
  9139. "league",
  9140. "provider",
  9141. "service"
  9142. ],
  9143. "time": "2017-05-10T09:20:27+00:00"
  9144. },
  9145. {
  9146. "name": "lsolesen/pel",
  9147. "version": "0.9.9",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/pel/pel.git",
  9151. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/pel/pel/zipball/95dd3c16161c588f0ac66662c1870a073159e5ec",
  9156. "reference": "95dd3c16161c588f0ac66662c1870a073159e5ec",
  9157. "shasum": ""
  9158. },
  9159. "require": {
  9160. "php": ">=5.4.0"
  9161. },
  9162. "require-dev": {
  9163. "ext-gd": "*",
  9164. "phpunit/phpunit": ">=4.8.36 <8",
  9165. "satooshi/php-coveralls": "1.0.*",
  9166. "squizlabs/php_codesniffer": "^3.0.0"
  9167. },
  9168. "type": "library",
  9169. "autoload": {
  9170. "psr-4": {
  9171. "lsolesen\\pel\\": "src/"
  9172. }
  9173. },
  9174. "notification-url": "https://packagist.org/downloads/",
  9175. "license": [
  9176. "GPL-2.0"
  9177. ],
  9178. "authors": [
  9179. {
  9180. "name": "Lars Olesen",
  9181. "email": "lars@intraface.dk",
  9182. "homepage": "http://intraface.dk",
  9183. "role": "Developer"
  9184. },
  9185. {
  9186. "name": "Martin Geisler",
  9187. "email": "martin@geisler.net",
  9188. "homepage": "http://geisler.net",
  9189. "role": "Developer"
  9190. }
  9191. ],
  9192. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  9193. "homepage": "http://pel.github.com/pel/",
  9194. "keywords": [
  9195. "exif",
  9196. "image"
  9197. ],
  9198. "time": "2020-11-07T06:04:18+00:00"
  9199. },
  9200. {
  9201. "name": "masterminds/html5",
  9202. "version": "2.7.4",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/Masterminds/html5-php.git",
  9206. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  9211. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  9212. "shasum": ""
  9213. },
  9214. "require": {
  9215. "ext-ctype": "*",
  9216. "ext-dom": "*",
  9217. "ext-libxml": "*",
  9218. "php": ">=5.3.0"
  9219. },
  9220. "require-dev": {
  9221. "phpunit/phpunit": "^4.8.35"
  9222. },
  9223. "type": "library",
  9224. "extra": {
  9225. "branch-alias": {
  9226. "dev-master": "2.7-dev"
  9227. }
  9228. },
  9229. "autoload": {
  9230. "psr-4": {
  9231. "Masterminds\\": "src"
  9232. }
  9233. },
  9234. "notification-url": "https://packagist.org/downloads/",
  9235. "license": [
  9236. "MIT"
  9237. ],
  9238. "authors": [
  9239. {
  9240. "name": "Matt Butcher",
  9241. "email": "technosophos@gmail.com"
  9242. },
  9243. {
  9244. "name": "Matt Farina",
  9245. "email": "matt@mattfarina.com"
  9246. },
  9247. {
  9248. "name": "Asmir Mustafic",
  9249. "email": "goetas@gmail.com"
  9250. }
  9251. ],
  9252. "description": "An HTML5 parser and serializer.",
  9253. "homepage": "http://masterminds.github.io/html5-php",
  9254. "keywords": [
  9255. "HTML5",
  9256. "dom",
  9257. "html",
  9258. "parser",
  9259. "querypath",
  9260. "serializer",
  9261. "xml"
  9262. ],
  9263. "time": "2020-10-01T13:52:52+00:00"
  9264. },
  9265. {
  9266. "name": "nikic/php-parser",
  9267. "version": "v4.10.3",
  9268. "source": {
  9269. "type": "git",
  9270. "url": "https://github.com/nikic/PHP-Parser.git",
  9271. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  9272. },
  9273. "dist": {
  9274. "type": "zip",
  9275. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9276. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  9277. "shasum": ""
  9278. },
  9279. "require": {
  9280. "ext-tokenizer": "*",
  9281. "php": ">=7.0"
  9282. },
  9283. "require-dev": {
  9284. "ircmaxell/php-yacc": "^0.0.7",
  9285. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9286. },
  9287. "bin": [
  9288. "bin/php-parse"
  9289. ],
  9290. "type": "library",
  9291. "extra": {
  9292. "branch-alias": {
  9293. "dev-master": "4.9-dev"
  9294. }
  9295. },
  9296. "autoload": {
  9297. "psr-4": {
  9298. "PhpParser\\": "lib/PhpParser"
  9299. }
  9300. },
  9301. "notification-url": "https://packagist.org/downloads/",
  9302. "license": [
  9303. "BSD-3-Clause"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Nikita Popov"
  9308. }
  9309. ],
  9310. "description": "A PHP parser written in PHP",
  9311. "keywords": [
  9312. "parser",
  9313. "php"
  9314. ],
  9315. "time": "2020-12-03T17:45:45+00:00"
  9316. },
  9317. {
  9318. "name": "pear/archive_tar",
  9319. "version": "1.4.12",
  9320. "source": {
  9321. "type": "git",
  9322. "url": "https://github.com/pear/Archive_Tar.git",
  9323. "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495"
  9324. },
  9325. "dist": {
  9326. "type": "zip",
  9327. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/19bb8e95490d3e3ad92fcac95500ca80bdcc7495",
  9328. "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495",
  9329. "shasum": ""
  9330. },
  9331. "require": {
  9332. "pear/pear-core-minimal": "^1.10.0alpha2",
  9333. "php": ">=5.2.0"
  9334. },
  9335. "require-dev": {
  9336. "phpunit/phpunit": "*"
  9337. },
  9338. "suggest": {
  9339. "ext-bz2": "Bz2 compression support.",
  9340. "ext-xz": "Lzma2 compression support.",
  9341. "ext-zlib": "Gzip compression support."
  9342. },
  9343. "type": "library",
  9344. "extra": {
  9345. "branch-alias": {
  9346. "dev-master": "1.4.x-dev"
  9347. }
  9348. },
  9349. "autoload": {
  9350. "psr-0": {
  9351. "Archive_Tar": ""
  9352. }
  9353. },
  9354. "notification-url": "https://packagist.org/downloads/",
  9355. "include-path": [
  9356. "./"
  9357. ],
  9358. "license": [
  9359. "BSD-3-Clause"
  9360. ],
  9361. "authors": [
  9362. {
  9363. "name": "Vincent Blavet",
  9364. "email": "vincent@phpconcept.net"
  9365. },
  9366. {
  9367. "name": "Greg Beaver",
  9368. "email": "greg@chiaraquartet.net"
  9369. },
  9370. {
  9371. "name": "Michiel Rook",
  9372. "email": "mrook@php.net"
  9373. }
  9374. ],
  9375. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9376. "homepage": "https://github.com/pear/Archive_Tar",
  9377. "keywords": [
  9378. "archive",
  9379. "tar"
  9380. ],
  9381. "funding": [
  9382. {
  9383. "url": "https://github.com/mrook",
  9384. "type": "github"
  9385. },
  9386. {
  9387. "url": "https://www.patreon.com/michielrook",
  9388. "type": "patreon"
  9389. }
  9390. ],
  9391. "time": "2021-01-18T19:32:54+00:00"
  9392. },
  9393. {
  9394. "name": "pear/console_getopt",
  9395. "version": "v1.4.3",
  9396. "source": {
  9397. "type": "git",
  9398. "url": "https://github.com/pear/Console_Getopt.git",
  9399. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9400. },
  9401. "dist": {
  9402. "type": "zip",
  9403. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9404. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9405. "shasum": ""
  9406. },
  9407. "type": "library",
  9408. "autoload": {
  9409. "psr-0": {
  9410. "Console": "./"
  9411. }
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "include-path": [
  9415. "./"
  9416. ],
  9417. "license": [
  9418. "BSD-2-Clause"
  9419. ],
  9420. "authors": [
  9421. {
  9422. "name": "Andrei Zmievski",
  9423. "email": "andrei@php.net",
  9424. "role": "Lead"
  9425. },
  9426. {
  9427. "name": "Stig Bakken",
  9428. "email": "stig@php.net",
  9429. "role": "Developer"
  9430. },
  9431. {
  9432. "name": "Greg Beaver",
  9433. "email": "cellog@php.net",
  9434. "role": "Helper"
  9435. }
  9436. ],
  9437. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9438. "time": "2019-11-20T18:27:48+00:00"
  9439. },
  9440. {
  9441. "name": "pear/pear-core-minimal",
  9442. "version": "v1.10.10",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/pear/pear-core-minimal.git",
  9446. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  9451. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "pear/console_getopt": "~1.4",
  9456. "pear/pear_exception": "~1.0"
  9457. },
  9458. "replace": {
  9459. "rsky/pear-core-min": "self.version"
  9460. },
  9461. "type": "library",
  9462. "autoload": {
  9463. "psr-0": {
  9464. "": "src/"
  9465. }
  9466. },
  9467. "notification-url": "https://packagist.org/downloads/",
  9468. "include-path": [
  9469. "src/"
  9470. ],
  9471. "license": [
  9472. "BSD-3-Clause"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Christian Weiske",
  9477. "email": "cweiske@php.net",
  9478. "role": "Lead"
  9479. }
  9480. ],
  9481. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9482. "time": "2019-11-19T19:00:24+00:00"
  9483. },
  9484. {
  9485. "name": "pear/pear_exception",
  9486. "version": "v1.0.1",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/pear/PEAR_Exception.git",
  9490. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9495. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "php": ">=4.4.0"
  9500. },
  9501. "require-dev": {
  9502. "phpunit/phpunit": "*"
  9503. },
  9504. "type": "class",
  9505. "extra": {
  9506. "branch-alias": {
  9507. "dev-master": "1.0.x-dev"
  9508. }
  9509. },
  9510. "autoload": {
  9511. "classmap": [
  9512. "PEAR/"
  9513. ]
  9514. },
  9515. "notification-url": "https://packagist.org/downloads/",
  9516. "include-path": [
  9517. "."
  9518. ],
  9519. "license": [
  9520. "BSD-2-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Helgi Thormar",
  9525. "email": "dufuz@php.net"
  9526. },
  9527. {
  9528. "name": "Greg Beaver",
  9529. "email": "cellog@php.net"
  9530. }
  9531. ],
  9532. "description": "The PEAR Exception base class.",
  9533. "homepage": "https://github.com/pear/PEAR_Exception",
  9534. "keywords": [
  9535. "exception"
  9536. ],
  9537. "time": "2019-12-10T10:24:42+00:00"
  9538. },
  9539. {
  9540. "name": "phenx/php-font-lib",
  9541. "version": "0.5.2",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/PhenX/php-font-lib.git",
  9545. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9550. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  9551. "shasum": ""
  9552. },
  9553. "require-dev": {
  9554. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  9555. },
  9556. "type": "library",
  9557. "autoload": {
  9558. "psr-4": {
  9559. "FontLib\\": "src/FontLib"
  9560. }
  9561. },
  9562. "notification-url": "https://packagist.org/downloads/",
  9563. "license": [
  9564. "LGPL-3.0"
  9565. ],
  9566. "authors": [
  9567. {
  9568. "name": "Fabien Ménager",
  9569. "email": "fabien.menager@gmail.com"
  9570. }
  9571. ],
  9572. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9573. "homepage": "https://github.com/PhenX/php-font-lib",
  9574. "time": "2020-03-08T15:31:32+00:00"
  9575. },
  9576. {
  9577. "name": "phpmailer/phpmailer",
  9578. "version": "v6.2.0",
  9579. "source": {
  9580. "type": "git",
  9581. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9582. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  9583. },
  9584. "dist": {
  9585. "type": "zip",
  9586. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  9587. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  9588. "shasum": ""
  9589. },
  9590. "require": {
  9591. "ext-ctype": "*",
  9592. "ext-filter": "*",
  9593. "ext-hash": "*",
  9594. "php": ">=5.5.0"
  9595. },
  9596. "require-dev": {
  9597. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  9598. "doctrine/annotations": "^1.2",
  9599. "phpcompatibility/php-compatibility": "^9.3.5",
  9600. "roave/security-advisories": "dev-latest",
  9601. "squizlabs/php_codesniffer": "^3.5.6",
  9602. "yoast/phpunit-polyfills": "^0.2.0"
  9603. },
  9604. "suggest": {
  9605. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  9606. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9607. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9608. "psr/log": "For optional PSR-3 debug logging",
  9609. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  9610. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  9611. },
  9612. "type": "library",
  9613. "autoload": {
  9614. "psr-4": {
  9615. "PHPMailer\\PHPMailer\\": "src/"
  9616. }
  9617. },
  9618. "notification-url": "https://packagist.org/downloads/",
  9619. "license": [
  9620. "LGPL-2.1-only"
  9621. ],
  9622. "authors": [
  9623. {
  9624. "name": "Marcus Bointon",
  9625. "email": "phpmailer@synchromedia.co.uk"
  9626. },
  9627. {
  9628. "name": "Jim Jagielski",
  9629. "email": "jimjag@gmail.com"
  9630. },
  9631. {
  9632. "name": "Andy Prevost",
  9633. "email": "codeworxtech@users.sourceforge.net"
  9634. },
  9635. {
  9636. "name": "Brent R. Matzelle"
  9637. }
  9638. ],
  9639. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9640. "funding": [
  9641. {
  9642. "url": "https://github.com/Synchro",
  9643. "type": "github"
  9644. }
  9645. ],
  9646. "time": "2020-11-25T15:24:57+00:00"
  9647. },
  9648. {
  9649. "name": "psr/container",
  9650. "version": "1.0.0",
  9651. "source": {
  9652. "type": "git",
  9653. "url": "https://github.com/php-fig/container.git",
  9654. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  9655. },
  9656. "dist": {
  9657. "type": "zip",
  9658. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9659. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  9660. "shasum": ""
  9661. },
  9662. "require": {
  9663. "php": ">=5.3.0"
  9664. },
  9665. "type": "library",
  9666. "extra": {
  9667. "branch-alias": {
  9668. "dev-master": "1.0.x-dev"
  9669. }
  9670. },
  9671. "autoload": {
  9672. "psr-4": {
  9673. "Psr\\Container\\": "src/"
  9674. }
  9675. },
  9676. "notification-url": "https://packagist.org/downloads/",
  9677. "license": [
  9678. "MIT"
  9679. ],
  9680. "authors": [
  9681. {
  9682. "name": "PHP-FIG",
  9683. "homepage": "http://www.php-fig.org/"
  9684. }
  9685. ],
  9686. "description": "Common Container Interface (PHP FIG PSR-11)",
  9687. "homepage": "https://github.com/php-fig/container",
  9688. "keywords": [
  9689. "PSR-11",
  9690. "container",
  9691. "container-interface",
  9692. "container-interop",
  9693. "psr"
  9694. ],
  9695. "time": "2017-02-14T16:28:37+00:00"
  9696. },
  9697. {
  9698. "name": "psr/http-factory",
  9699. "version": "1.0.1",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/php-fig/http-factory.git",
  9703. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9708. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  9709. "shasum": ""
  9710. },
  9711. "require": {
  9712. "php": ">=7.0.0",
  9713. "psr/http-message": "^1.0"
  9714. },
  9715. "type": "library",
  9716. "extra": {
  9717. "branch-alias": {
  9718. "dev-master": "1.0.x-dev"
  9719. }
  9720. },
  9721. "autoload": {
  9722. "psr-4": {
  9723. "Psr\\Http\\Message\\": "src/"
  9724. }
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "MIT"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "PHP-FIG",
  9733. "homepage": "http://www.php-fig.org/"
  9734. }
  9735. ],
  9736. "description": "Common interfaces for PSR-7 HTTP message factories",
  9737. "keywords": [
  9738. "factory",
  9739. "http",
  9740. "message",
  9741. "psr",
  9742. "psr-17",
  9743. "psr-7",
  9744. "request",
  9745. "response"
  9746. ],
  9747. "time": "2019-04-30T12:38:16+00:00"
  9748. },
  9749. {
  9750. "name": "psr/http-message",
  9751. "version": "1.0.1",
  9752. "source": {
  9753. "type": "git",
  9754. "url": "https://github.com/php-fig/http-message.git",
  9755. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  9756. },
  9757. "dist": {
  9758. "type": "zip",
  9759. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  9760. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  9761. "shasum": ""
  9762. },
  9763. "require": {
  9764. "php": ">=5.3.0"
  9765. },
  9766. "type": "library",
  9767. "extra": {
  9768. "branch-alias": {
  9769. "dev-master": "1.0.x-dev"
  9770. }
  9771. },
  9772. "autoload": {
  9773. "psr-4": {
  9774. "Psr\\Http\\Message\\": "src/"
  9775. }
  9776. },
  9777. "notification-url": "https://packagist.org/downloads/",
  9778. "license": [
  9779. "MIT"
  9780. ],
  9781. "authors": [
  9782. {
  9783. "name": "PHP-FIG",
  9784. "homepage": "http://www.php-fig.org/"
  9785. }
  9786. ],
  9787. "description": "Common interface for HTTP messages",
  9788. "homepage": "https://github.com/php-fig/http-message",
  9789. "keywords": [
  9790. "http",
  9791. "http-message",
  9792. "psr",
  9793. "psr-7",
  9794. "request",
  9795. "response"
  9796. ],
  9797. "time": "2016-08-06T14:39:51+00:00"
  9798. },
  9799. {
  9800. "name": "psr/log",
  9801. "version": "1.1.3",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/php-fig/log.git",
  9805. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  9810. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  9811. "shasum": ""
  9812. },
  9813. "require": {
  9814. "php": ">=5.3.0"
  9815. },
  9816. "type": "library",
  9817. "extra": {
  9818. "branch-alias": {
  9819. "dev-master": "1.1.x-dev"
  9820. }
  9821. },
  9822. "autoload": {
  9823. "psr-4": {
  9824. "Psr\\Log\\": "Psr/Log/"
  9825. }
  9826. },
  9827. "notification-url": "https://packagist.org/downloads/",
  9828. "license": [
  9829. "MIT"
  9830. ],
  9831. "authors": [
  9832. {
  9833. "name": "PHP-FIG",
  9834. "homepage": "http://www.php-fig.org/"
  9835. }
  9836. ],
  9837. "description": "Common interface for logging libraries",
  9838. "homepage": "https://github.com/php-fig/log",
  9839. "keywords": [
  9840. "log",
  9841. "psr",
  9842. "psr-3"
  9843. ],
  9844. "time": "2020-03-23T09:12:05+00:00"
  9845. },
  9846. {
  9847. "name": "psy/psysh",
  9848. "version": "v0.10.5",
  9849. "source": {
  9850. "type": "git",
  9851. "url": "https://github.com/bobthecow/psysh.git",
  9852. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  9853. },
  9854. "dist": {
  9855. "type": "zip",
  9856. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  9857. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  9858. "shasum": ""
  9859. },
  9860. "require": {
  9861. "dnoegel/php-xdg-base-dir": "0.1.*",
  9862. "ext-json": "*",
  9863. "ext-tokenizer": "*",
  9864. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  9865. "php": "^8.0 || ^7.0 || ^5.5.9",
  9866. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  9867. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  9868. },
  9869. "require-dev": {
  9870. "bamarni/composer-bin-plugin": "^1.2",
  9871. "hoa/console": "3.17.*"
  9872. },
  9873. "suggest": {
  9874. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9875. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9876. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9877. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  9878. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  9879. },
  9880. "bin": [
  9881. "bin/psysh"
  9882. ],
  9883. "type": "library",
  9884. "extra": {
  9885. "branch-alias": {
  9886. "dev-master": "0.10.x-dev"
  9887. }
  9888. },
  9889. "autoload": {
  9890. "files": [
  9891. "src/functions.php"
  9892. ],
  9893. "psr-4": {
  9894. "Psy\\": "src/"
  9895. }
  9896. },
  9897. "notification-url": "https://packagist.org/downloads/",
  9898. "license": [
  9899. "MIT"
  9900. ],
  9901. "authors": [
  9902. {
  9903. "name": "Justin Hileman",
  9904. "email": "justin@justinhileman.info",
  9905. "homepage": "http://justinhileman.com"
  9906. }
  9907. ],
  9908. "description": "An interactive shell for modern PHP.",
  9909. "homepage": "http://psysh.org",
  9910. "keywords": [
  9911. "REPL",
  9912. "console",
  9913. "interactive",
  9914. "shell"
  9915. ],
  9916. "time": "2020-12-04T02:51:30+00:00"
  9917. },
  9918. {
  9919. "name": "ralouphie/getallheaders",
  9920. "version": "3.0.3",
  9921. "source": {
  9922. "type": "git",
  9923. "url": "https://github.com/ralouphie/getallheaders.git",
  9924. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9925. },
  9926. "dist": {
  9927. "type": "zip",
  9928. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9929. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9930. "shasum": ""
  9931. },
  9932. "require": {
  9933. "php": ">=5.6"
  9934. },
  9935. "require-dev": {
  9936. "php-coveralls/php-coveralls": "^2.1",
  9937. "phpunit/phpunit": "^5 || ^6.5"
  9938. },
  9939. "type": "library",
  9940. "autoload": {
  9941. "files": [
  9942. "src/getallheaders.php"
  9943. ]
  9944. },
  9945. "notification-url": "https://packagist.org/downloads/",
  9946. "license": [
  9947. "MIT"
  9948. ],
  9949. "authors": [
  9950. {
  9951. "name": "Ralph Khattar",
  9952. "email": "ralph.khattar@gmail.com"
  9953. }
  9954. ],
  9955. "description": "A polyfill for getallheaders.",
  9956. "time": "2019-03-08T08:55:37+00:00"
  9957. },
  9958. {
  9959. "name": "stack/builder",
  9960. "version": "v1.0.6",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/stackphp/builder.git",
  9964. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9969. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "php": ">=7.2.0",
  9974. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  9975. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  9976. },
  9977. "require-dev": {
  9978. "phpunit/phpunit": "~8.0",
  9979. "symfony/routing": "^5.0"
  9980. },
  9981. "type": "library",
  9982. "extra": {
  9983. "branch-alias": {
  9984. "dev-master": "1.0-dev"
  9985. }
  9986. },
  9987. "autoload": {
  9988. "psr-0": {
  9989. "Stack": "src"
  9990. }
  9991. },
  9992. "notification-url": "https://packagist.org/downloads/",
  9993. "license": [
  9994. "MIT"
  9995. ],
  9996. "authors": [
  9997. {
  9998. "name": "Igor Wiedler",
  9999. "email": "igor@wiedler.ch"
  10000. }
  10001. ],
  10002. "description": "Builder for stack middleware based on HttpKernelInterface.",
  10003. "keywords": [
  10004. "stack"
  10005. ],
  10006. "time": "2020-01-30T12:17:27+00:00"
  10007. },
  10008. {
  10009. "name": "stecman/symfony-console-completion",
  10010. "version": "0.11.0",
  10011. "source": {
  10012. "type": "git",
  10013. "url": "https://github.com/stecman/symfony-console-completion.git",
  10014. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  10015. },
  10016. "dist": {
  10017. "type": "zip",
  10018. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  10019. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  10020. "shasum": ""
  10021. },
  10022. "require": {
  10023. "php": ">=5.3.2",
  10024. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  10025. },
  10026. "require-dev": {
  10027. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-master": "0.10.x-dev"
  10033. }
  10034. },
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  10038. }
  10039. },
  10040. "notification-url": "https://packagist.org/downloads/",
  10041. "license": [
  10042. "MIT"
  10043. ],
  10044. "authors": [
  10045. {
  10046. "name": "Stephen Holdaway",
  10047. "email": "stephen@stecman.co.nz"
  10048. }
  10049. ],
  10050. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  10051. "time": "2019-11-24T17:03:06+00:00"
  10052. },
  10053. {
  10054. "name": "symfony-cmf/routing",
  10055. "version": "2.3.3",
  10056. "source": {
  10057. "type": "git",
  10058. "url": "https://github.com/symfony-cmf/Routing.git",
  10059. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5"
  10060. },
  10061. "dist": {
  10062. "type": "zip",
  10063. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10064. "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5",
  10065. "shasum": ""
  10066. },
  10067. "require": {
  10068. "php": "^7.2 || ^8.0",
  10069. "psr/log": "^1.0",
  10070. "symfony/http-kernel": "^4.4 || ^5.0",
  10071. "symfony/routing": "^4.4 || ^5.0"
  10072. },
  10073. "require-dev": {
  10074. "symfony-cmf/testing": "^3@dev",
  10075. "symfony/config": "^4.4 || ^5.0",
  10076. "symfony/dependency-injection": "^4.4 || ^5.0",
  10077. "symfony/event-dispatcher": "^4.4 || ^5.0",
  10078. "symfony/phpunit-bridge": "^5.0"
  10079. },
  10080. "suggest": {
  10081. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  10082. },
  10083. "type": "library",
  10084. "extra": {
  10085. "branch-alias": {
  10086. "dev-master": "2.x-dev"
  10087. }
  10088. },
  10089. "autoload": {
  10090. "psr-4": {
  10091. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  10092. }
  10093. },
  10094. "notification-url": "https://packagist.org/downloads/",
  10095. "license": [
  10096. "MIT"
  10097. ],
  10098. "authors": [
  10099. {
  10100. "name": "Symfony CMF Community",
  10101. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  10102. }
  10103. ],
  10104. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  10105. "homepage": "http://cmf.symfony.com",
  10106. "keywords": [
  10107. "database",
  10108. "routing"
  10109. ],
  10110. "time": "2020-10-06T10:15:37+00:00"
  10111. },
  10112. {
  10113. "name": "symfony/config",
  10114. "version": "v4.4.17",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/symfony/config.git",
  10118. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/symfony/config/zipball/4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10123. "reference": "4da4a6b07cc7d8d7d3e29842bc9c20401d555065",
  10124. "shasum": ""
  10125. },
  10126. "require": {
  10127. "php": ">=7.1.3",
  10128. "symfony/filesystem": "^3.4|^4.0|^5.0",
  10129. "symfony/polyfill-ctype": "~1.8"
  10130. },
  10131. "conflict": {
  10132. "symfony/finder": "<3.4"
  10133. },
  10134. "require-dev": {
  10135. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  10136. "symfony/finder": "^3.4|^4.0|^5.0",
  10137. "symfony/messenger": "^4.1|^5.0",
  10138. "symfony/service-contracts": "^1.1|^2",
  10139. "symfony/yaml": "^3.4|^4.0|^5.0"
  10140. },
  10141. "suggest": {
  10142. "symfony/yaml": "To use the yaml reference dumper"
  10143. },
  10144. "type": "library",
  10145. "autoload": {
  10146. "psr-4": {
  10147. "Symfony\\Component\\Config\\": ""
  10148. },
  10149. "exclude-from-classmap": [
  10150. "/Tests/"
  10151. ]
  10152. },
  10153. "notification-url": "https://packagist.org/downloads/",
  10154. "license": [
  10155. "MIT"
  10156. ],
  10157. "authors": [
  10158. {
  10159. "name": "Fabien Potencier",
  10160. "email": "fabien@symfony.com"
  10161. },
  10162. {
  10163. "name": "Symfony Community",
  10164. "homepage": "https://symfony.com/contributors"
  10165. }
  10166. ],
  10167. "description": "Symfony Config Component",
  10168. "homepage": "https://symfony.com",
  10169. "funding": [
  10170. {
  10171. "url": "https://symfony.com/sponsor",
  10172. "type": "custom"
  10173. },
  10174. {
  10175. "url": "https://github.com/fabpot",
  10176. "type": "github"
  10177. },
  10178. {
  10179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10180. "type": "tidelift"
  10181. }
  10182. ],
  10183. "time": "2020-11-16T11:15:53+00:00"
  10184. },
  10185. {
  10186. "name": "symfony/console",
  10187. "version": "v4.4.16",
  10188. "source": {
  10189. "type": "git",
  10190. "url": "https://github.com/symfony/console.git",
  10191. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  10192. },
  10193. "dist": {
  10194. "type": "zip",
  10195. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  10196. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  10197. "shasum": ""
  10198. },
  10199. "require": {
  10200. "php": ">=7.1.3",
  10201. "symfony/polyfill-mbstring": "~1.0",
  10202. "symfony/polyfill-php73": "^1.8",
  10203. "symfony/polyfill-php80": "^1.15",
  10204. "symfony/service-contracts": "^1.1|^2"
  10205. },
  10206. "conflict": {
  10207. "symfony/dependency-injection": "<3.4",
  10208. "symfony/event-dispatcher": "<4.3|>=5",
  10209. "symfony/lock": "<4.4",
  10210. "symfony/process": "<3.3"
  10211. },
  10212. "provide": {
  10213. "psr/log-implementation": "1.0"
  10214. },
  10215. "require-dev": {
  10216. "psr/log": "~1.0",
  10217. "symfony/config": "^3.4|^4.0|^5.0",
  10218. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10219. "symfony/event-dispatcher": "^4.3",
  10220. "symfony/lock": "^4.4|^5.0",
  10221. "symfony/process": "^3.4|^4.0|^5.0",
  10222. "symfony/var-dumper": "^4.3|^5.0"
  10223. },
  10224. "suggest": {
  10225. "psr/log": "For using the console logger",
  10226. "symfony/event-dispatcher": "",
  10227. "symfony/lock": "",
  10228. "symfony/process": ""
  10229. },
  10230. "type": "library",
  10231. "autoload": {
  10232. "psr-4": {
  10233. "Symfony\\Component\\Console\\": ""
  10234. },
  10235. "exclude-from-classmap": [
  10236. "/Tests/"
  10237. ]
  10238. },
  10239. "notification-url": "https://packagist.org/downloads/",
  10240. "license": [
  10241. "MIT"
  10242. ],
  10243. "authors": [
  10244. {
  10245. "name": "Fabien Potencier",
  10246. "email": "fabien@symfony.com"
  10247. },
  10248. {
  10249. "name": "Symfony Community",
  10250. "homepage": "https://symfony.com/contributors"
  10251. }
  10252. ],
  10253. "description": "Symfony Console Component",
  10254. "homepage": "https://symfony.com",
  10255. "funding": [
  10256. {
  10257. "url": "https://symfony.com/sponsor",
  10258. "type": "custom"
  10259. },
  10260. {
  10261. "url": "https://github.com/fabpot",
  10262. "type": "github"
  10263. },
  10264. {
  10265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10266. "type": "tidelift"
  10267. }
  10268. ],
  10269. "time": "2020-10-24T11:50:19+00:00"
  10270. },
  10271. {
  10272. "name": "symfony/css-selector",
  10273. "version": "v4.4.17",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/symfony/css-selector.git",
  10277. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5e6efcb6e5d120249da366417e2517c55b50c931",
  10282. "reference": "5e6efcb6e5d120249da366417e2517c55b50c931",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.1.3"
  10287. },
  10288. "type": "library",
  10289. "autoload": {
  10290. "psr-4": {
  10291. "Symfony\\Component\\CssSelector\\": ""
  10292. },
  10293. "exclude-from-classmap": [
  10294. "/Tests/"
  10295. ]
  10296. },
  10297. "notification-url": "https://packagist.org/downloads/",
  10298. "license": [
  10299. "MIT"
  10300. ],
  10301. "authors": [
  10302. {
  10303. "name": "Fabien Potencier",
  10304. "email": "fabien@symfony.com"
  10305. },
  10306. {
  10307. "name": "Jean-François Simon",
  10308. "email": "jeanfrancois.simon@sensiolabs.com"
  10309. },
  10310. {
  10311. "name": "Symfony Community",
  10312. "homepage": "https://symfony.com/contributors"
  10313. }
  10314. ],
  10315. "description": "Symfony CssSelector Component",
  10316. "homepage": "https://symfony.com",
  10317. "funding": [
  10318. {
  10319. "url": "https://symfony.com/sponsor",
  10320. "type": "custom"
  10321. },
  10322. {
  10323. "url": "https://github.com/fabpot",
  10324. "type": "github"
  10325. },
  10326. {
  10327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10328. "type": "tidelift"
  10329. }
  10330. ],
  10331. "time": "2020-10-28T20:42:29+00:00"
  10332. },
  10333. {
  10334. "name": "symfony/debug",
  10335. "version": "v4.4.16",
  10336. "source": {
  10337. "type": "git",
  10338. "url": "https://github.com/symfony/debug.git",
  10339. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  10340. },
  10341. "dist": {
  10342. "type": "zip",
  10343. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  10344. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  10345. "shasum": ""
  10346. },
  10347. "require": {
  10348. "php": ">=7.1.3",
  10349. "psr/log": "~1.0",
  10350. "symfony/polyfill-php80": "^1.15"
  10351. },
  10352. "conflict": {
  10353. "symfony/http-kernel": "<3.4"
  10354. },
  10355. "require-dev": {
  10356. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10357. },
  10358. "type": "library",
  10359. "autoload": {
  10360. "psr-4": {
  10361. "Symfony\\Component\\Debug\\": ""
  10362. },
  10363. "exclude-from-classmap": [
  10364. "/Tests/"
  10365. ]
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "MIT"
  10370. ],
  10371. "authors": [
  10372. {
  10373. "name": "Fabien Potencier",
  10374. "email": "fabien@symfony.com"
  10375. },
  10376. {
  10377. "name": "Symfony Community",
  10378. "homepage": "https://symfony.com/contributors"
  10379. }
  10380. ],
  10381. "description": "Symfony Debug Component",
  10382. "homepage": "https://symfony.com",
  10383. "funding": [
  10384. {
  10385. "url": "https://symfony.com/sponsor",
  10386. "type": "custom"
  10387. },
  10388. {
  10389. "url": "https://github.com/fabpot",
  10390. "type": "github"
  10391. },
  10392. {
  10393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10394. "type": "tidelift"
  10395. }
  10396. ],
  10397. "time": "2020-10-24T11:50:19+00:00"
  10398. },
  10399. {
  10400. "name": "symfony/dependency-injection",
  10401. "version": "v4.4.16",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/symfony/dependency-injection.git",
  10405. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  10410. "reference": "4c41ad68924fd8f9e55e1cd77fd6bc28daa3fe89",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "php": ">=7.1.3",
  10415. "psr/container": "^1.0",
  10416. "symfony/service-contracts": "^1.1.6|^2"
  10417. },
  10418. "conflict": {
  10419. "symfony/config": "<4.3|>=5.0",
  10420. "symfony/finder": "<3.4",
  10421. "symfony/proxy-manager-bridge": "<3.4",
  10422. "symfony/yaml": "<3.4"
  10423. },
  10424. "provide": {
  10425. "psr/container-implementation": "1.0",
  10426. "symfony/service-implementation": "1.0"
  10427. },
  10428. "require-dev": {
  10429. "symfony/config": "^4.3",
  10430. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10431. "symfony/yaml": "^3.4|^4.0|^5.0"
  10432. },
  10433. "suggest": {
  10434. "symfony/config": "",
  10435. "symfony/expression-language": "For using expressions in service container configuration",
  10436. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10437. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10438. "symfony/yaml": ""
  10439. },
  10440. "type": "library",
  10441. "autoload": {
  10442. "psr-4": {
  10443. "Symfony\\Component\\DependencyInjection\\": ""
  10444. },
  10445. "exclude-from-classmap": [
  10446. "/Tests/"
  10447. ]
  10448. },
  10449. "notification-url": "https://packagist.org/downloads/",
  10450. "license": [
  10451. "MIT"
  10452. ],
  10453. "authors": [
  10454. {
  10455. "name": "Fabien Potencier",
  10456. "email": "fabien@symfony.com"
  10457. },
  10458. {
  10459. "name": "Symfony Community",
  10460. "homepage": "https://symfony.com/contributors"
  10461. }
  10462. ],
  10463. "description": "Symfony DependencyInjection Component",
  10464. "homepage": "https://symfony.com",
  10465. "funding": [
  10466. {
  10467. "url": "https://symfony.com/sponsor",
  10468. "type": "custom"
  10469. },
  10470. {
  10471. "url": "https://github.com/fabpot",
  10472. "type": "github"
  10473. },
  10474. {
  10475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10476. "type": "tidelift"
  10477. }
  10478. ],
  10479. "time": "2020-10-27T10:05:40+00:00"
  10480. },
  10481. {
  10482. "name": "symfony/dom-crawler",
  10483. "version": "v4.4.17",
  10484. "source": {
  10485. "type": "git",
  10486. "url": "https://github.com/symfony/dom-crawler.git",
  10487. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  10488. },
  10489. "dist": {
  10490. "type": "zip",
  10491. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10492. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  10493. "shasum": ""
  10494. },
  10495. "require": {
  10496. "php": ">=7.1.3",
  10497. "symfony/polyfill-ctype": "~1.8",
  10498. "symfony/polyfill-mbstring": "~1.0"
  10499. },
  10500. "conflict": {
  10501. "masterminds/html5": "<2.6"
  10502. },
  10503. "require-dev": {
  10504. "masterminds/html5": "^2.6",
  10505. "symfony/css-selector": "^3.4|^4.0|^5.0"
  10506. },
  10507. "suggest": {
  10508. "symfony/css-selector": ""
  10509. },
  10510. "type": "library",
  10511. "autoload": {
  10512. "psr-4": {
  10513. "Symfony\\Component\\DomCrawler\\": ""
  10514. },
  10515. "exclude-from-classmap": [
  10516. "/Tests/"
  10517. ]
  10518. },
  10519. "notification-url": "https://packagist.org/downloads/",
  10520. "license": [
  10521. "MIT"
  10522. ],
  10523. "authors": [
  10524. {
  10525. "name": "Fabien Potencier",
  10526. "email": "fabien@symfony.com"
  10527. },
  10528. {
  10529. "name": "Symfony Community",
  10530. "homepage": "https://symfony.com/contributors"
  10531. }
  10532. ],
  10533. "description": "Symfony DomCrawler Component",
  10534. "homepage": "https://symfony.com",
  10535. "funding": [
  10536. {
  10537. "url": "https://symfony.com/sponsor",
  10538. "type": "custom"
  10539. },
  10540. {
  10541. "url": "https://github.com/fabpot",
  10542. "type": "github"
  10543. },
  10544. {
  10545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10546. "type": "tidelift"
  10547. }
  10548. ],
  10549. "time": "2020-10-24T11:50:19+00:00"
  10550. },
  10551. {
  10552. "name": "symfony/error-handler",
  10553. "version": "v4.4.16",
  10554. "source": {
  10555. "type": "git",
  10556. "url": "https://github.com/symfony/error-handler.git",
  10557. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613"
  10558. },
  10559. "dist": {
  10560. "type": "zip",
  10561. "url": "https://api.github.com/repos/symfony/error-handler/zipball/363cca01cabf98e4f1c447b14d0a68617f003613",
  10562. "reference": "363cca01cabf98e4f1c447b14d0a68617f003613",
  10563. "shasum": ""
  10564. },
  10565. "require": {
  10566. "php": ">=7.1.3",
  10567. "psr/log": "~1.0",
  10568. "symfony/debug": "^4.4.5",
  10569. "symfony/polyfill-php80": "^1.15",
  10570. "symfony/var-dumper": "^4.4|^5.0"
  10571. },
  10572. "require-dev": {
  10573. "symfony/http-kernel": "^4.4|^5.0",
  10574. "symfony/serializer": "^4.4|^5.0"
  10575. },
  10576. "type": "library",
  10577. "autoload": {
  10578. "psr-4": {
  10579. "Symfony\\Component\\ErrorHandler\\": ""
  10580. },
  10581. "exclude-from-classmap": [
  10582. "/Tests/"
  10583. ]
  10584. },
  10585. "notification-url": "https://packagist.org/downloads/",
  10586. "license": [
  10587. "MIT"
  10588. ],
  10589. "authors": [
  10590. {
  10591. "name": "Fabien Potencier",
  10592. "email": "fabien@symfony.com"
  10593. },
  10594. {
  10595. "name": "Symfony Community",
  10596. "homepage": "https://symfony.com/contributors"
  10597. }
  10598. ],
  10599. "description": "Symfony ErrorHandler Component",
  10600. "homepage": "https://symfony.com",
  10601. "funding": [
  10602. {
  10603. "url": "https://symfony.com/sponsor",
  10604. "type": "custom"
  10605. },
  10606. {
  10607. "url": "https://github.com/fabpot",
  10608. "type": "github"
  10609. },
  10610. {
  10611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10612. "type": "tidelift"
  10613. }
  10614. ],
  10615. "time": "2020-10-24T11:50:19+00:00"
  10616. },
  10617. {
  10618. "name": "symfony/event-dispatcher",
  10619. "version": "v4.4.16",
  10620. "source": {
  10621. "type": "git",
  10622. "url": "https://github.com/symfony/event-dispatcher.git",
  10623. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  10624. },
  10625. "dist": {
  10626. "type": "zip",
  10627. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10628. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  10629. "shasum": ""
  10630. },
  10631. "require": {
  10632. "php": ">=7.1.3",
  10633. "symfony/event-dispatcher-contracts": "^1.1"
  10634. },
  10635. "conflict": {
  10636. "symfony/dependency-injection": "<3.4"
  10637. },
  10638. "provide": {
  10639. "psr/event-dispatcher-implementation": "1.0",
  10640. "symfony/event-dispatcher-implementation": "1.1"
  10641. },
  10642. "require-dev": {
  10643. "psr/log": "~1.0",
  10644. "symfony/config": "^3.4|^4.0|^5.0",
  10645. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10646. "symfony/error-handler": "~3.4|~4.4",
  10647. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10648. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  10649. "symfony/service-contracts": "^1.1|^2",
  10650. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  10651. },
  10652. "suggest": {
  10653. "symfony/dependency-injection": "",
  10654. "symfony/http-kernel": ""
  10655. },
  10656. "type": "library",
  10657. "autoload": {
  10658. "psr-4": {
  10659. "Symfony\\Component\\EventDispatcher\\": ""
  10660. },
  10661. "exclude-from-classmap": [
  10662. "/Tests/"
  10663. ]
  10664. },
  10665. "notification-url": "https://packagist.org/downloads/",
  10666. "license": [
  10667. "MIT"
  10668. ],
  10669. "authors": [
  10670. {
  10671. "name": "Fabien Potencier",
  10672. "email": "fabien@symfony.com"
  10673. },
  10674. {
  10675. "name": "Symfony Community",
  10676. "homepage": "https://symfony.com/contributors"
  10677. }
  10678. ],
  10679. "description": "Symfony EventDispatcher Component",
  10680. "homepage": "https://symfony.com",
  10681. "funding": [
  10682. {
  10683. "url": "https://symfony.com/sponsor",
  10684. "type": "custom"
  10685. },
  10686. {
  10687. "url": "https://github.com/fabpot",
  10688. "type": "github"
  10689. },
  10690. {
  10691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10692. "type": "tidelift"
  10693. }
  10694. ],
  10695. "time": "2020-10-24T11:50:19+00:00"
  10696. },
  10697. {
  10698. "name": "symfony/event-dispatcher-contracts",
  10699. "version": "v1.1.9",
  10700. "source": {
  10701. "type": "git",
  10702. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10703. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  10704. },
  10705. "dist": {
  10706. "type": "zip",
  10707. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10708. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  10709. "shasum": ""
  10710. },
  10711. "require": {
  10712. "php": ">=7.1.3"
  10713. },
  10714. "suggest": {
  10715. "psr/event-dispatcher": "",
  10716. "symfony/event-dispatcher-implementation": ""
  10717. },
  10718. "type": "library",
  10719. "extra": {
  10720. "branch-alias": {
  10721. "dev-master": "1.1-dev"
  10722. },
  10723. "thanks": {
  10724. "name": "symfony/contracts",
  10725. "url": "https://github.com/symfony/contracts"
  10726. }
  10727. },
  10728. "autoload": {
  10729. "psr-4": {
  10730. "Symfony\\Contracts\\EventDispatcher\\": ""
  10731. }
  10732. },
  10733. "notification-url": "https://packagist.org/downloads/",
  10734. "license": [
  10735. "MIT"
  10736. ],
  10737. "authors": [
  10738. {
  10739. "name": "Nicolas Grekas",
  10740. "email": "p@tchwork.com"
  10741. },
  10742. {
  10743. "name": "Symfony Community",
  10744. "homepage": "https://symfony.com/contributors"
  10745. }
  10746. ],
  10747. "description": "Generic abstractions related to dispatching event",
  10748. "homepage": "https://symfony.com",
  10749. "keywords": [
  10750. "abstractions",
  10751. "contracts",
  10752. "decoupling",
  10753. "interfaces",
  10754. "interoperability",
  10755. "standards"
  10756. ],
  10757. "funding": [
  10758. {
  10759. "url": "https://symfony.com/sponsor",
  10760. "type": "custom"
  10761. },
  10762. {
  10763. "url": "https://github.com/fabpot",
  10764. "type": "github"
  10765. },
  10766. {
  10767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10768. "type": "tidelift"
  10769. }
  10770. ],
  10771. "time": "2020-07-06T13:19:58+00:00"
  10772. },
  10773. {
  10774. "name": "symfony/filesystem",
  10775. "version": "v4.4.17",
  10776. "source": {
  10777. "type": "git",
  10778. "url": "https://github.com/symfony/filesystem.git",
  10779. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2"
  10780. },
  10781. "dist": {
  10782. "type": "zip",
  10783. "url": "https://api.github.com/repos/symfony/filesystem/zipball/17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10784. "reference": "17b83e36a911aefa2cfe04bbf6328ec4c040c1b2",
  10785. "shasum": ""
  10786. },
  10787. "require": {
  10788. "php": ">=7.1.3",
  10789. "symfony/polyfill-ctype": "~1.8"
  10790. },
  10791. "type": "library",
  10792. "autoload": {
  10793. "psr-4": {
  10794. "Symfony\\Component\\Filesystem\\": ""
  10795. },
  10796. "exclude-from-classmap": [
  10797. "/Tests/"
  10798. ]
  10799. },
  10800. "notification-url": "https://packagist.org/downloads/",
  10801. "license": [
  10802. "MIT"
  10803. ],
  10804. "authors": [
  10805. {
  10806. "name": "Fabien Potencier",
  10807. "email": "fabien@symfony.com"
  10808. },
  10809. {
  10810. "name": "Symfony Community",
  10811. "homepage": "https://symfony.com/contributors"
  10812. }
  10813. ],
  10814. "description": "Symfony Filesystem Component",
  10815. "homepage": "https://symfony.com",
  10816. "funding": [
  10817. {
  10818. "url": "https://symfony.com/sponsor",
  10819. "type": "custom"
  10820. },
  10821. {
  10822. "url": "https://github.com/fabpot",
  10823. "type": "github"
  10824. },
  10825. {
  10826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10827. "type": "tidelift"
  10828. }
  10829. ],
  10830. "time": "2020-11-11T22:20:15+00:00"
  10831. },
  10832. {
  10833. "name": "symfony/finder",
  10834. "version": "v4.4.17",
  10835. "source": {
  10836. "type": "git",
  10837. "url": "https://github.com/symfony/finder.git",
  10838. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e"
  10839. },
  10840. "dist": {
  10841. "type": "zip",
  10842. "url": "https://api.github.com/repos/symfony/finder/zipball/9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10843. "reference": "9f1d1d883b79a91ef320c0c6e803494e042ef36e",
  10844. "shasum": ""
  10845. },
  10846. "require": {
  10847. "php": ">=7.1.3"
  10848. },
  10849. "type": "library",
  10850. "autoload": {
  10851. "psr-4": {
  10852. "Symfony\\Component\\Finder\\": ""
  10853. },
  10854. "exclude-from-classmap": [
  10855. "/Tests/"
  10856. ]
  10857. },
  10858. "notification-url": "https://packagist.org/downloads/",
  10859. "license": [
  10860. "MIT"
  10861. ],
  10862. "authors": [
  10863. {
  10864. "name": "Fabien Potencier",
  10865. "email": "fabien@symfony.com"
  10866. },
  10867. {
  10868. "name": "Symfony Community",
  10869. "homepage": "https://symfony.com/contributors"
  10870. }
  10871. ],
  10872. "description": "Symfony Finder Component",
  10873. "homepage": "https://symfony.com",
  10874. "funding": [
  10875. {
  10876. "url": "https://symfony.com/sponsor",
  10877. "type": "custom"
  10878. },
  10879. {
  10880. "url": "https://github.com/fabpot",
  10881. "type": "github"
  10882. },
  10883. {
  10884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10885. "type": "tidelift"
  10886. }
  10887. ],
  10888. "time": "2020-11-17T19:45:34+00:00"
  10889. },
  10890. {
  10891. "name": "symfony/http-client-contracts",
  10892. "version": "v2.3.1",
  10893. "source": {
  10894. "type": "git",
  10895. "url": "https://github.com/symfony/http-client-contracts.git",
  10896. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  10897. },
  10898. "dist": {
  10899. "type": "zip",
  10900. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  10901. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  10902. "shasum": ""
  10903. },
  10904. "require": {
  10905. "php": ">=7.2.5"
  10906. },
  10907. "suggest": {
  10908. "symfony/http-client-implementation": ""
  10909. },
  10910. "type": "library",
  10911. "extra": {
  10912. "branch-version": "2.3",
  10913. "branch-alias": {
  10914. "dev-main": "2.3-dev"
  10915. },
  10916. "thanks": {
  10917. "name": "symfony/contracts",
  10918. "url": "https://github.com/symfony/contracts"
  10919. }
  10920. },
  10921. "autoload": {
  10922. "psr-4": {
  10923. "Symfony\\Contracts\\HttpClient\\": ""
  10924. }
  10925. },
  10926. "notification-url": "https://packagist.org/downloads/",
  10927. "license": [
  10928. "MIT"
  10929. ],
  10930. "authors": [
  10931. {
  10932. "name": "Nicolas Grekas",
  10933. "email": "p@tchwork.com"
  10934. },
  10935. {
  10936. "name": "Symfony Community",
  10937. "homepage": "https://symfony.com/contributors"
  10938. }
  10939. ],
  10940. "description": "Generic abstractions related to HTTP clients",
  10941. "homepage": "https://symfony.com",
  10942. "keywords": [
  10943. "abstractions",
  10944. "contracts",
  10945. "decoupling",
  10946. "interfaces",
  10947. "interoperability",
  10948. "standards"
  10949. ],
  10950. "funding": [
  10951. {
  10952. "url": "https://symfony.com/sponsor",
  10953. "type": "custom"
  10954. },
  10955. {
  10956. "url": "https://github.com/fabpot",
  10957. "type": "github"
  10958. },
  10959. {
  10960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10961. "type": "tidelift"
  10962. }
  10963. ],
  10964. "time": "2020-10-14T17:08:19+00:00"
  10965. },
  10966. {
  10967. "name": "symfony/http-foundation",
  10968. "version": "v4.4.16",
  10969. "source": {
  10970. "type": "git",
  10971. "url": "https://github.com/symfony/http-foundation.git",
  10972. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a"
  10973. },
  10974. "dist": {
  10975. "type": "zip",
  10976. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/827a00811ef699e809a201ceafac0b2b246bf38a",
  10977. "reference": "827a00811ef699e809a201ceafac0b2b246bf38a",
  10978. "shasum": ""
  10979. },
  10980. "require": {
  10981. "php": ">=7.1.3",
  10982. "symfony/mime": "^4.3|^5.0",
  10983. "symfony/polyfill-mbstring": "~1.1"
  10984. },
  10985. "require-dev": {
  10986. "predis/predis": "~1.0",
  10987. "symfony/expression-language": "^3.4|^4.0|^5.0"
  10988. },
  10989. "type": "library",
  10990. "autoload": {
  10991. "psr-4": {
  10992. "Symfony\\Component\\HttpFoundation\\": ""
  10993. },
  10994. "exclude-from-classmap": [
  10995. "/Tests/"
  10996. ]
  10997. },
  10998. "notification-url": "https://packagist.org/downloads/",
  10999. "license": [
  11000. "MIT"
  11001. ],
  11002. "authors": [
  11003. {
  11004. "name": "Fabien Potencier",
  11005. "email": "fabien@symfony.com"
  11006. },
  11007. {
  11008. "name": "Symfony Community",
  11009. "homepage": "https://symfony.com/contributors"
  11010. }
  11011. ],
  11012. "description": "Symfony HttpFoundation Component",
  11013. "homepage": "https://symfony.com",
  11014. "funding": [
  11015. {
  11016. "url": "https://symfony.com/sponsor",
  11017. "type": "custom"
  11018. },
  11019. {
  11020. "url": "https://github.com/fabpot",
  11021. "type": "github"
  11022. },
  11023. {
  11024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11025. "type": "tidelift"
  11026. }
  11027. ],
  11028. "time": "2020-10-24T11:50:19+00:00"
  11029. },
  11030. {
  11031. "name": "symfony/http-kernel",
  11032. "version": "v4.4.16",
  11033. "source": {
  11034. "type": "git",
  11035. "url": "https://github.com/symfony/http-kernel.git",
  11036. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed"
  11037. },
  11038. "dist": {
  11039. "type": "zip",
  11040. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  11041. "reference": "109b2a46e470a487ec8b0ffea4b0bb993aaf42ed",
  11042. "shasum": ""
  11043. },
  11044. "require": {
  11045. "php": ">=7.1.3",
  11046. "psr/log": "~1.0",
  11047. "symfony/error-handler": "^4.4",
  11048. "symfony/event-dispatcher": "^4.4",
  11049. "symfony/http-client-contracts": "^1.1|^2",
  11050. "symfony/http-foundation": "^4.4|^5.0",
  11051. "symfony/polyfill-ctype": "^1.8",
  11052. "symfony/polyfill-php73": "^1.9",
  11053. "symfony/polyfill-php80": "^1.15"
  11054. },
  11055. "conflict": {
  11056. "symfony/browser-kit": "<4.3",
  11057. "symfony/config": "<3.4",
  11058. "symfony/console": ">=5",
  11059. "symfony/dependency-injection": "<4.3",
  11060. "symfony/translation": "<4.2",
  11061. "twig/twig": "<1.34|<2.4,>=2"
  11062. },
  11063. "provide": {
  11064. "psr/log-implementation": "1.0"
  11065. },
  11066. "require-dev": {
  11067. "psr/cache": "~1.0",
  11068. "symfony/browser-kit": "^4.3|^5.0",
  11069. "symfony/config": "^3.4|^4.0|^5.0",
  11070. "symfony/console": "^3.4|^4.0",
  11071. "symfony/css-selector": "^3.4|^4.0|^5.0",
  11072. "symfony/dependency-injection": "^4.3|^5.0",
  11073. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  11074. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11075. "symfony/finder": "^3.4|^4.0|^5.0",
  11076. "symfony/process": "^3.4|^4.0|^5.0",
  11077. "symfony/routing": "^3.4|^4.0|^5.0",
  11078. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  11079. "symfony/templating": "^3.4|^4.0|^5.0",
  11080. "symfony/translation": "^4.2|^5.0",
  11081. "symfony/translation-contracts": "^1.1|^2",
  11082. "twig/twig": "^1.34|^2.4|^3.0"
  11083. },
  11084. "suggest": {
  11085. "symfony/browser-kit": "",
  11086. "symfony/config": "",
  11087. "symfony/console": "",
  11088. "symfony/dependency-injection": ""
  11089. },
  11090. "type": "library",
  11091. "autoload": {
  11092. "psr-4": {
  11093. "Symfony\\Component\\HttpKernel\\": ""
  11094. },
  11095. "exclude-from-classmap": [
  11096. "/Tests/"
  11097. ]
  11098. },
  11099. "notification-url": "https://packagist.org/downloads/",
  11100. "license": [
  11101. "MIT"
  11102. ],
  11103. "authors": [
  11104. {
  11105. "name": "Fabien Potencier",
  11106. "email": "fabien@symfony.com"
  11107. },
  11108. {
  11109. "name": "Symfony Community",
  11110. "homepage": "https://symfony.com/contributors"
  11111. }
  11112. ],
  11113. "description": "Symfony HttpKernel Component",
  11114. "homepage": "https://symfony.com",
  11115. "funding": [
  11116. {
  11117. "url": "https://symfony.com/sponsor",
  11118. "type": "custom"
  11119. },
  11120. {
  11121. "url": "https://github.com/fabpot",
  11122. "type": "github"
  11123. },
  11124. {
  11125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11126. "type": "tidelift"
  11127. }
  11128. ],
  11129. "time": "2020-10-28T05:50:56+00:00"
  11130. },
  11131. {
  11132. "name": "symfony/mime",
  11133. "version": "v5.1.8",
  11134. "source": {
  11135. "type": "git",
  11136. "url": "https://github.com/symfony/mime.git",
  11137. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  11138. },
  11139. "dist": {
  11140. "type": "zip",
  11141. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  11142. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  11143. "shasum": ""
  11144. },
  11145. "require": {
  11146. "php": ">=7.2.5",
  11147. "symfony/polyfill-intl-idn": "^1.10",
  11148. "symfony/polyfill-mbstring": "^1.0",
  11149. "symfony/polyfill-php80": "^1.15"
  11150. },
  11151. "conflict": {
  11152. "symfony/mailer": "<4.4"
  11153. },
  11154. "require-dev": {
  11155. "egulias/email-validator": "^2.1.10",
  11156. "symfony/dependency-injection": "^4.4|^5.0"
  11157. },
  11158. "type": "library",
  11159. "autoload": {
  11160. "psr-4": {
  11161. "Symfony\\Component\\Mime\\": ""
  11162. },
  11163. "exclude-from-classmap": [
  11164. "/Tests/"
  11165. ]
  11166. },
  11167. "notification-url": "https://packagist.org/downloads/",
  11168. "license": [
  11169. "MIT"
  11170. ],
  11171. "authors": [
  11172. {
  11173. "name": "Fabien Potencier",
  11174. "email": "fabien@symfony.com"
  11175. },
  11176. {
  11177. "name": "Symfony Community",
  11178. "homepage": "https://symfony.com/contributors"
  11179. }
  11180. ],
  11181. "description": "A library to manipulate MIME messages",
  11182. "homepage": "https://symfony.com",
  11183. "keywords": [
  11184. "mime",
  11185. "mime-type"
  11186. ],
  11187. "funding": [
  11188. {
  11189. "url": "https://symfony.com/sponsor",
  11190. "type": "custom"
  11191. },
  11192. {
  11193. "url": "https://github.com/fabpot",
  11194. "type": "github"
  11195. },
  11196. {
  11197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11198. "type": "tidelift"
  11199. }
  11200. ],
  11201. "time": "2020-10-24T12:01:57+00:00"
  11202. },
  11203. {
  11204. "name": "symfony/polyfill-ctype",
  11205. "version": "v1.20.0",
  11206. "source": {
  11207. "type": "git",
  11208. "url": "https://github.com/symfony/polyfill-ctype.git",
  11209. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  11210. },
  11211. "dist": {
  11212. "type": "zip",
  11213. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11214. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  11215. "shasum": ""
  11216. },
  11217. "require": {
  11218. "php": ">=7.1"
  11219. },
  11220. "suggest": {
  11221. "ext-ctype": "For best performance"
  11222. },
  11223. "type": "library",
  11224. "extra": {
  11225. "branch-alias": {
  11226. "dev-main": "1.20-dev"
  11227. },
  11228. "thanks": {
  11229. "name": "symfony/polyfill",
  11230. "url": "https://github.com/symfony/polyfill"
  11231. }
  11232. },
  11233. "autoload": {
  11234. "psr-4": {
  11235. "Symfony\\Polyfill\\Ctype\\": ""
  11236. },
  11237. "files": [
  11238. "bootstrap.php"
  11239. ]
  11240. },
  11241. "notification-url": "https://packagist.org/downloads/",
  11242. "license": [
  11243. "MIT"
  11244. ],
  11245. "authors": [
  11246. {
  11247. "name": "Gert de Pagter",
  11248. "email": "BackEndTea@gmail.com"
  11249. },
  11250. {
  11251. "name": "Symfony Community",
  11252. "homepage": "https://symfony.com/contributors"
  11253. }
  11254. ],
  11255. "description": "Symfony polyfill for ctype functions",
  11256. "homepage": "https://symfony.com",
  11257. "keywords": [
  11258. "compatibility",
  11259. "ctype",
  11260. "polyfill",
  11261. "portable"
  11262. ],
  11263. "funding": [
  11264. {
  11265. "url": "https://symfony.com/sponsor",
  11266. "type": "custom"
  11267. },
  11268. {
  11269. "url": "https://github.com/fabpot",
  11270. "type": "github"
  11271. },
  11272. {
  11273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11274. "type": "tidelift"
  11275. }
  11276. ],
  11277. "time": "2020-10-23T14:02:19+00:00"
  11278. },
  11279. {
  11280. "name": "symfony/polyfill-iconv",
  11281. "version": "v1.20.0",
  11282. "source": {
  11283. "type": "git",
  11284. "url": "https://github.com/symfony/polyfill-iconv.git",
  11285. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  11286. },
  11287. "dist": {
  11288. "type": "zip",
  11289. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11290. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  11291. "shasum": ""
  11292. },
  11293. "require": {
  11294. "php": ">=7.1"
  11295. },
  11296. "suggest": {
  11297. "ext-iconv": "For best performance"
  11298. },
  11299. "type": "library",
  11300. "extra": {
  11301. "branch-alias": {
  11302. "dev-main": "1.20-dev"
  11303. },
  11304. "thanks": {
  11305. "name": "symfony/polyfill",
  11306. "url": "https://github.com/symfony/polyfill"
  11307. }
  11308. },
  11309. "autoload": {
  11310. "psr-4": {
  11311. "Symfony\\Polyfill\\Iconv\\": ""
  11312. },
  11313. "files": [
  11314. "bootstrap.php"
  11315. ]
  11316. },
  11317. "notification-url": "https://packagist.org/downloads/",
  11318. "license": [
  11319. "MIT"
  11320. ],
  11321. "authors": [
  11322. {
  11323. "name": "Nicolas Grekas",
  11324. "email": "p@tchwork.com"
  11325. },
  11326. {
  11327. "name": "Symfony Community",
  11328. "homepage": "https://symfony.com/contributors"
  11329. }
  11330. ],
  11331. "description": "Symfony polyfill for the Iconv extension",
  11332. "homepage": "https://symfony.com",
  11333. "keywords": [
  11334. "compatibility",
  11335. "iconv",
  11336. "polyfill",
  11337. "portable",
  11338. "shim"
  11339. ],
  11340. "funding": [
  11341. {
  11342. "url": "https://symfony.com/sponsor",
  11343. "type": "custom"
  11344. },
  11345. {
  11346. "url": "https://github.com/fabpot",
  11347. "type": "github"
  11348. },
  11349. {
  11350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11351. "type": "tidelift"
  11352. }
  11353. ],
  11354. "time": "2020-10-23T14:02:19+00:00"
  11355. },
  11356. {
  11357. "name": "symfony/polyfill-intl-idn",
  11358. "version": "v1.20.0",
  11359. "source": {
  11360. "type": "git",
  11361. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11362. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  11363. },
  11364. "dist": {
  11365. "type": "zip",
  11366. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11367. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  11368. "shasum": ""
  11369. },
  11370. "require": {
  11371. "php": ">=7.1",
  11372. "symfony/polyfill-intl-normalizer": "^1.10",
  11373. "symfony/polyfill-php72": "^1.10"
  11374. },
  11375. "suggest": {
  11376. "ext-intl": "For best performance"
  11377. },
  11378. "type": "library",
  11379. "extra": {
  11380. "branch-alias": {
  11381. "dev-main": "1.20-dev"
  11382. },
  11383. "thanks": {
  11384. "name": "symfony/polyfill",
  11385. "url": "https://github.com/symfony/polyfill"
  11386. }
  11387. },
  11388. "autoload": {
  11389. "psr-4": {
  11390. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11391. },
  11392. "files": [
  11393. "bootstrap.php"
  11394. ]
  11395. },
  11396. "notification-url": "https://packagist.org/downloads/",
  11397. "license": [
  11398. "MIT"
  11399. ],
  11400. "authors": [
  11401. {
  11402. "name": "Laurent Bassin",
  11403. "email": "laurent@bassin.info"
  11404. },
  11405. {
  11406. "name": "Trevor Rowbotham",
  11407. "email": "trevor.rowbotham@pm.me"
  11408. },
  11409. {
  11410. "name": "Symfony Community",
  11411. "homepage": "https://symfony.com/contributors"
  11412. }
  11413. ],
  11414. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11415. "homepage": "https://symfony.com",
  11416. "keywords": [
  11417. "compatibility",
  11418. "idn",
  11419. "intl",
  11420. "polyfill",
  11421. "portable",
  11422. "shim"
  11423. ],
  11424. "funding": [
  11425. {
  11426. "url": "https://symfony.com/sponsor",
  11427. "type": "custom"
  11428. },
  11429. {
  11430. "url": "https://github.com/fabpot",
  11431. "type": "github"
  11432. },
  11433. {
  11434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11435. "type": "tidelift"
  11436. }
  11437. ],
  11438. "time": "2020-10-23T14:02:19+00:00"
  11439. },
  11440. {
  11441. "name": "symfony/polyfill-intl-normalizer",
  11442. "version": "v1.20.0",
  11443. "source": {
  11444. "type": "git",
  11445. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11446. "reference": "727d1096295d807c309fb01a851577302394c897"
  11447. },
  11448. "dist": {
  11449. "type": "zip",
  11450. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  11451. "reference": "727d1096295d807c309fb01a851577302394c897",
  11452. "shasum": ""
  11453. },
  11454. "require": {
  11455. "php": ">=7.1"
  11456. },
  11457. "suggest": {
  11458. "ext-intl": "For best performance"
  11459. },
  11460. "type": "library",
  11461. "extra": {
  11462. "branch-alias": {
  11463. "dev-main": "1.20-dev"
  11464. },
  11465. "thanks": {
  11466. "name": "symfony/polyfill",
  11467. "url": "https://github.com/symfony/polyfill"
  11468. }
  11469. },
  11470. "autoload": {
  11471. "psr-4": {
  11472. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11473. },
  11474. "files": [
  11475. "bootstrap.php"
  11476. ],
  11477. "classmap": [
  11478. "Resources/stubs"
  11479. ]
  11480. },
  11481. "notification-url": "https://packagist.org/downloads/",
  11482. "license": [
  11483. "MIT"
  11484. ],
  11485. "authors": [
  11486. {
  11487. "name": "Nicolas Grekas",
  11488. "email": "p@tchwork.com"
  11489. },
  11490. {
  11491. "name": "Symfony Community",
  11492. "homepage": "https://symfony.com/contributors"
  11493. }
  11494. ],
  11495. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11496. "homepage": "https://symfony.com",
  11497. "keywords": [
  11498. "compatibility",
  11499. "intl",
  11500. "normalizer",
  11501. "polyfill",
  11502. "portable",
  11503. "shim"
  11504. ],
  11505. "funding": [
  11506. {
  11507. "url": "https://symfony.com/sponsor",
  11508. "type": "custom"
  11509. },
  11510. {
  11511. "url": "https://github.com/fabpot",
  11512. "type": "github"
  11513. },
  11514. {
  11515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11516. "type": "tidelift"
  11517. }
  11518. ],
  11519. "time": "2020-10-23T14:02:19+00:00"
  11520. },
  11521. {
  11522. "name": "symfony/polyfill-mbstring",
  11523. "version": "v1.20.0",
  11524. "source": {
  11525. "type": "git",
  11526. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11527. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  11528. },
  11529. "dist": {
  11530. "type": "zip",
  11531. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  11532. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  11533. "shasum": ""
  11534. },
  11535. "require": {
  11536. "php": ">=7.1"
  11537. },
  11538. "suggest": {
  11539. "ext-mbstring": "For best performance"
  11540. },
  11541. "type": "library",
  11542. "extra": {
  11543. "branch-alias": {
  11544. "dev-main": "1.20-dev"
  11545. },
  11546. "thanks": {
  11547. "name": "symfony/polyfill",
  11548. "url": "https://github.com/symfony/polyfill"
  11549. }
  11550. },
  11551. "autoload": {
  11552. "psr-4": {
  11553. "Symfony\\Polyfill\\Mbstring\\": ""
  11554. },
  11555. "files": [
  11556. "bootstrap.php"
  11557. ]
  11558. },
  11559. "notification-url": "https://packagist.org/downloads/",
  11560. "license": [
  11561. "MIT"
  11562. ],
  11563. "authors": [
  11564. {
  11565. "name": "Nicolas Grekas",
  11566. "email": "p@tchwork.com"
  11567. },
  11568. {
  11569. "name": "Symfony Community",
  11570. "homepage": "https://symfony.com/contributors"
  11571. }
  11572. ],
  11573. "description": "Symfony polyfill for the Mbstring extension",
  11574. "homepage": "https://symfony.com",
  11575. "keywords": [
  11576. "compatibility",
  11577. "mbstring",
  11578. "polyfill",
  11579. "portable",
  11580. "shim"
  11581. ],
  11582. "funding": [
  11583. {
  11584. "url": "https://symfony.com/sponsor",
  11585. "type": "custom"
  11586. },
  11587. {
  11588. "url": "https://github.com/fabpot",
  11589. "type": "github"
  11590. },
  11591. {
  11592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11593. "type": "tidelift"
  11594. }
  11595. ],
  11596. "time": "2020-10-23T14:02:19+00:00"
  11597. },
  11598. {
  11599. "name": "symfony/polyfill-php72",
  11600. "version": "v1.22.0",
  11601. "source": {
  11602. "type": "git",
  11603. "url": "https://github.com/symfony/polyfill-php72.git",
  11604. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  11605. },
  11606. "dist": {
  11607. "type": "zip",
  11608. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11609. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  11610. "shasum": ""
  11611. },
  11612. "require": {
  11613. "php": ">=7.1"
  11614. },
  11615. "type": "library",
  11616. "extra": {
  11617. "branch-alias": {
  11618. "dev-main": "1.22-dev"
  11619. },
  11620. "thanks": {
  11621. "name": "symfony/polyfill",
  11622. "url": "https://github.com/symfony/polyfill"
  11623. }
  11624. },
  11625. "autoload": {
  11626. "psr-4": {
  11627. "Symfony\\Polyfill\\Php72\\": ""
  11628. },
  11629. "files": [
  11630. "bootstrap.php"
  11631. ]
  11632. },
  11633. "notification-url": "https://packagist.org/downloads/",
  11634. "license": [
  11635. "MIT"
  11636. ],
  11637. "authors": [
  11638. {
  11639. "name": "Nicolas Grekas",
  11640. "email": "p@tchwork.com"
  11641. },
  11642. {
  11643. "name": "Symfony Community",
  11644. "homepage": "https://symfony.com/contributors"
  11645. }
  11646. ],
  11647. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11648. "homepage": "https://symfony.com",
  11649. "keywords": [
  11650. "compatibility",
  11651. "polyfill",
  11652. "portable",
  11653. "shim"
  11654. ],
  11655. "funding": [
  11656. {
  11657. "url": "https://symfony.com/sponsor",
  11658. "type": "custom"
  11659. },
  11660. {
  11661. "url": "https://github.com/fabpot",
  11662. "type": "github"
  11663. },
  11664. {
  11665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11666. "type": "tidelift"
  11667. }
  11668. ],
  11669. "time": "2021-01-07T16:49:33+00:00"
  11670. },
  11671. {
  11672. "name": "symfony/polyfill-php73",
  11673. "version": "v1.22.0",
  11674. "source": {
  11675. "type": "git",
  11676. "url": "https://github.com/symfony/polyfill-php73.git",
  11677. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  11678. },
  11679. "dist": {
  11680. "type": "zip",
  11681. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11682. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  11683. "shasum": ""
  11684. },
  11685. "require": {
  11686. "php": ">=7.1"
  11687. },
  11688. "type": "library",
  11689. "extra": {
  11690. "branch-alias": {
  11691. "dev-main": "1.22-dev"
  11692. },
  11693. "thanks": {
  11694. "name": "symfony/polyfill",
  11695. "url": "https://github.com/symfony/polyfill"
  11696. }
  11697. },
  11698. "autoload": {
  11699. "psr-4": {
  11700. "Symfony\\Polyfill\\Php73\\": ""
  11701. },
  11702. "files": [
  11703. "bootstrap.php"
  11704. ],
  11705. "classmap": [
  11706. "Resources/stubs"
  11707. ]
  11708. },
  11709. "notification-url": "https://packagist.org/downloads/",
  11710. "license": [
  11711. "MIT"
  11712. ],
  11713. "authors": [
  11714. {
  11715. "name": "Nicolas Grekas",
  11716. "email": "p@tchwork.com"
  11717. },
  11718. {
  11719. "name": "Symfony Community",
  11720. "homepage": "https://symfony.com/contributors"
  11721. }
  11722. ],
  11723. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  11724. "homepage": "https://symfony.com",
  11725. "keywords": [
  11726. "compatibility",
  11727. "polyfill",
  11728. "portable",
  11729. "shim"
  11730. ],
  11731. "funding": [
  11732. {
  11733. "url": "https://symfony.com/sponsor",
  11734. "type": "custom"
  11735. },
  11736. {
  11737. "url": "https://github.com/fabpot",
  11738. "type": "github"
  11739. },
  11740. {
  11741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11742. "type": "tidelift"
  11743. }
  11744. ],
  11745. "time": "2021-01-07T16:49:33+00:00"
  11746. },
  11747. {
  11748. "name": "symfony/polyfill-php80",
  11749. "version": "v1.20.0",
  11750. "source": {
  11751. "type": "git",
  11752. "url": "https://github.com/symfony/polyfill-php80.git",
  11753. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  11754. },
  11755. "dist": {
  11756. "type": "zip",
  11757. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11758. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  11759. "shasum": ""
  11760. },
  11761. "require": {
  11762. "php": ">=7.1"
  11763. },
  11764. "type": "library",
  11765. "extra": {
  11766. "branch-alias": {
  11767. "dev-main": "1.20-dev"
  11768. },
  11769. "thanks": {
  11770. "name": "symfony/polyfill",
  11771. "url": "https://github.com/symfony/polyfill"
  11772. }
  11773. },
  11774. "autoload": {
  11775. "psr-4": {
  11776. "Symfony\\Polyfill\\Php80\\": ""
  11777. },
  11778. "files": [
  11779. "bootstrap.php"
  11780. ],
  11781. "classmap": [
  11782. "Resources/stubs"
  11783. ]
  11784. },
  11785. "notification-url": "https://packagist.org/downloads/",
  11786. "license": [
  11787. "MIT"
  11788. ],
  11789. "authors": [
  11790. {
  11791. "name": "Ion Bazan",
  11792. "email": "ion.bazan@gmail.com"
  11793. },
  11794. {
  11795. "name": "Nicolas Grekas",
  11796. "email": "p@tchwork.com"
  11797. },
  11798. {
  11799. "name": "Symfony Community",
  11800. "homepage": "https://symfony.com/contributors"
  11801. }
  11802. ],
  11803. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11804. "homepage": "https://symfony.com",
  11805. "keywords": [
  11806. "compatibility",
  11807. "polyfill",
  11808. "portable",
  11809. "shim"
  11810. ],
  11811. "funding": [
  11812. {
  11813. "url": "https://symfony.com/sponsor",
  11814. "type": "custom"
  11815. },
  11816. {
  11817. "url": "https://github.com/fabpot",
  11818. "type": "github"
  11819. },
  11820. {
  11821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11822. "type": "tidelift"
  11823. }
  11824. ],
  11825. "time": "2020-10-23T14:02:19+00:00"
  11826. },
  11827. {
  11828. "name": "symfony/process",
  11829. "version": "v4.4.16",
  11830. "source": {
  11831. "type": "git",
  11832. "url": "https://github.com/symfony/process.git",
  11833. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  11834. },
  11835. "dist": {
  11836. "type": "zip",
  11837. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11838. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  11839. "shasum": ""
  11840. },
  11841. "require": {
  11842. "php": ">=7.1.3"
  11843. },
  11844. "type": "library",
  11845. "autoload": {
  11846. "psr-4": {
  11847. "Symfony\\Component\\Process\\": ""
  11848. },
  11849. "exclude-from-classmap": [
  11850. "/Tests/"
  11851. ]
  11852. },
  11853. "notification-url": "https://packagist.org/downloads/",
  11854. "license": [
  11855. "MIT"
  11856. ],
  11857. "authors": [
  11858. {
  11859. "name": "Fabien Potencier",
  11860. "email": "fabien@symfony.com"
  11861. },
  11862. {
  11863. "name": "Symfony Community",
  11864. "homepage": "https://symfony.com/contributors"
  11865. }
  11866. ],
  11867. "description": "Symfony Process Component",
  11868. "homepage": "https://symfony.com",
  11869. "funding": [
  11870. {
  11871. "url": "https://symfony.com/sponsor",
  11872. "type": "custom"
  11873. },
  11874. {
  11875. "url": "https://github.com/fabpot",
  11876. "type": "github"
  11877. },
  11878. {
  11879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11880. "type": "tidelift"
  11881. }
  11882. ],
  11883. "time": "2020-10-24T11:50:19+00:00"
  11884. },
  11885. {
  11886. "name": "symfony/psr-http-message-bridge",
  11887. "version": "v2.0.2",
  11888. "source": {
  11889. "type": "git",
  11890. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11891. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e"
  11892. },
  11893. "dist": {
  11894. "type": "zip",
  11895. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11896. "reference": "51a21cb3ba3927d4b4bf8f25cc55763351af5f2e",
  11897. "shasum": ""
  11898. },
  11899. "require": {
  11900. "php": ">=7.1",
  11901. "psr/http-message": "^1.0",
  11902. "symfony/http-foundation": "^4.4 || ^5.0"
  11903. },
  11904. "require-dev": {
  11905. "nyholm/psr7": "^1.1",
  11906. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  11907. },
  11908. "suggest": {
  11909. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11910. },
  11911. "type": "symfony-bridge",
  11912. "extra": {
  11913. "branch-alias": {
  11914. "dev-master": "2.0-dev"
  11915. }
  11916. },
  11917. "autoload": {
  11918. "psr-4": {
  11919. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11920. },
  11921. "exclude-from-classmap": [
  11922. "/Tests/"
  11923. ]
  11924. },
  11925. "notification-url": "https://packagist.org/downloads/",
  11926. "license": [
  11927. "MIT"
  11928. ],
  11929. "authors": [
  11930. {
  11931. "name": "Fabien Potencier",
  11932. "email": "fabien@symfony.com"
  11933. },
  11934. {
  11935. "name": "Symfony Community",
  11936. "homepage": "http://symfony.com/contributors"
  11937. }
  11938. ],
  11939. "description": "PSR HTTP message bridge",
  11940. "homepage": "http://symfony.com",
  11941. "keywords": [
  11942. "http",
  11943. "http-message",
  11944. "psr-17",
  11945. "psr-7"
  11946. ],
  11947. "funding": [
  11948. {
  11949. "url": "https://symfony.com/sponsor",
  11950. "type": "custom"
  11951. },
  11952. {
  11953. "url": "https://github.com/fabpot",
  11954. "type": "github"
  11955. },
  11956. {
  11957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11958. "type": "tidelift"
  11959. }
  11960. ],
  11961. "time": "2020-09-29T08:17:46+00:00"
  11962. },
  11963. {
  11964. "name": "symfony/routing",
  11965. "version": "v4.4.16",
  11966. "source": {
  11967. "type": "git",
  11968. "url": "https://github.com/symfony/routing.git",
  11969. "reference": "826794f2e9305fe73cba859c60d2a336851bd202"
  11970. },
  11971. "dist": {
  11972. "type": "zip",
  11973. "url": "https://api.github.com/repos/symfony/routing/zipball/826794f2e9305fe73cba859c60d2a336851bd202",
  11974. "reference": "826794f2e9305fe73cba859c60d2a336851bd202",
  11975. "shasum": ""
  11976. },
  11977. "require": {
  11978. "php": ">=7.1.3"
  11979. },
  11980. "conflict": {
  11981. "symfony/config": "<4.2",
  11982. "symfony/dependency-injection": "<3.4",
  11983. "symfony/yaml": "<3.4"
  11984. },
  11985. "require-dev": {
  11986. "doctrine/annotations": "~1.2",
  11987. "psr/log": "~1.0",
  11988. "symfony/config": "^4.2|^5.0",
  11989. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  11990. "symfony/expression-language": "^3.4|^4.0|^5.0",
  11991. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  11992. "symfony/yaml": "^3.4|^4.0|^5.0"
  11993. },
  11994. "suggest": {
  11995. "doctrine/annotations": "For using the annotation loader",
  11996. "symfony/config": "For using the all-in-one router or any loader",
  11997. "symfony/expression-language": "For using expression matching",
  11998. "symfony/http-foundation": "For using a Symfony Request object",
  11999. "symfony/yaml": "For using the YAML loader"
  12000. },
  12001. "type": "library",
  12002. "autoload": {
  12003. "psr-4": {
  12004. "Symfony\\Component\\Routing\\": ""
  12005. },
  12006. "exclude-from-classmap": [
  12007. "/Tests/"
  12008. ]
  12009. },
  12010. "notification-url": "https://packagist.org/downloads/",
  12011. "license": [
  12012. "MIT"
  12013. ],
  12014. "authors": [
  12015. {
  12016. "name": "Fabien Potencier",
  12017. "email": "fabien@symfony.com"
  12018. },
  12019. {
  12020. "name": "Symfony Community",
  12021. "homepage": "https://symfony.com/contributors"
  12022. }
  12023. ],
  12024. "description": "Symfony Routing Component",
  12025. "homepage": "https://symfony.com",
  12026. "keywords": [
  12027. "router",
  12028. "routing",
  12029. "uri",
  12030. "url"
  12031. ],
  12032. "funding": [
  12033. {
  12034. "url": "https://symfony.com/sponsor",
  12035. "type": "custom"
  12036. },
  12037. {
  12038. "url": "https://github.com/fabpot",
  12039. "type": "github"
  12040. },
  12041. {
  12042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12043. "type": "tidelift"
  12044. }
  12045. ],
  12046. "time": "2020-10-24T11:50:19+00:00"
  12047. },
  12048. {
  12049. "name": "symfony/serializer",
  12050. "version": "v4.4.16",
  12051. "source": {
  12052. "type": "git",
  12053. "url": "https://github.com/symfony/serializer.git",
  12054. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9"
  12055. },
  12056. "dist": {
  12057. "type": "zip",
  12058. "url": "https://api.github.com/repos/symfony/serializer/zipball/2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  12059. "reference": "2af7e86db04ee65fdf1991b17ee0b3e955c93de9",
  12060. "shasum": ""
  12061. },
  12062. "require": {
  12063. "php": ">=7.1.3",
  12064. "symfony/polyfill-ctype": "~1.8"
  12065. },
  12066. "conflict": {
  12067. "phpdocumentor/type-resolver": "<0.2.1",
  12068. "symfony/dependency-injection": "<3.4",
  12069. "symfony/property-access": "<3.4",
  12070. "symfony/property-info": "<3.4",
  12071. "symfony/yaml": "<3.4"
  12072. },
  12073. "require-dev": {
  12074. "doctrine/annotations": "~1.0",
  12075. "doctrine/cache": "~1.0",
  12076. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  12077. "symfony/cache": "^3.4|^4.0|^5.0",
  12078. "symfony/config": "^3.4|^4.0|^5.0",
  12079. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12080. "symfony/error-handler": "^4.4|^5.0",
  12081. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  12082. "symfony/mime": "^4.4|^5.0",
  12083. "symfony/property-access": "^3.4|^4.0|^5.0",
  12084. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  12085. "symfony/validator": "^3.4|^4.0|^5.0",
  12086. "symfony/yaml": "^3.4|^4.0|^5.0"
  12087. },
  12088. "suggest": {
  12089. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12090. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  12091. "psr/cache-implementation": "For using the metadata cache.",
  12092. "symfony/config": "For using the XML mapping loader.",
  12093. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  12094. "symfony/property-access": "For using the ObjectNormalizer.",
  12095. "symfony/property-info": "To deserialize relations.",
  12096. "symfony/yaml": "For using the default YAML mapping loader."
  12097. },
  12098. "type": "library",
  12099. "autoload": {
  12100. "psr-4": {
  12101. "Symfony\\Component\\Serializer\\": ""
  12102. },
  12103. "exclude-from-classmap": [
  12104. "/Tests/"
  12105. ]
  12106. },
  12107. "notification-url": "https://packagist.org/downloads/",
  12108. "license": [
  12109. "MIT"
  12110. ],
  12111. "authors": [
  12112. {
  12113. "name": "Fabien Potencier",
  12114. "email": "fabien@symfony.com"
  12115. },
  12116. {
  12117. "name": "Symfony Community",
  12118. "homepage": "https://symfony.com/contributors"
  12119. }
  12120. ],
  12121. "description": "Symfony Serializer Component",
  12122. "homepage": "https://symfony.com",
  12123. "funding": [
  12124. {
  12125. "url": "https://symfony.com/sponsor",
  12126. "type": "custom"
  12127. },
  12128. {
  12129. "url": "https://github.com/fabpot",
  12130. "type": "github"
  12131. },
  12132. {
  12133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12134. "type": "tidelift"
  12135. }
  12136. ],
  12137. "time": "2020-10-24T11:50:19+00:00"
  12138. },
  12139. {
  12140. "name": "symfony/service-contracts",
  12141. "version": "v2.2.0",
  12142. "source": {
  12143. "type": "git",
  12144. "url": "https://github.com/symfony/service-contracts.git",
  12145. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  12146. },
  12147. "dist": {
  12148. "type": "zip",
  12149. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12150. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  12151. "shasum": ""
  12152. },
  12153. "require": {
  12154. "php": ">=7.2.5",
  12155. "psr/container": "^1.0"
  12156. },
  12157. "suggest": {
  12158. "symfony/service-implementation": ""
  12159. },
  12160. "type": "library",
  12161. "extra": {
  12162. "branch-alias": {
  12163. "dev-master": "2.2-dev"
  12164. },
  12165. "thanks": {
  12166. "name": "symfony/contracts",
  12167. "url": "https://github.com/symfony/contracts"
  12168. }
  12169. },
  12170. "autoload": {
  12171. "psr-4": {
  12172. "Symfony\\Contracts\\Service\\": ""
  12173. }
  12174. },
  12175. "notification-url": "https://packagist.org/downloads/",
  12176. "license": [
  12177. "MIT"
  12178. ],
  12179. "authors": [
  12180. {
  12181. "name": "Nicolas Grekas",
  12182. "email": "p@tchwork.com"
  12183. },
  12184. {
  12185. "name": "Symfony Community",
  12186. "homepage": "https://symfony.com/contributors"
  12187. }
  12188. ],
  12189. "description": "Generic abstractions related to writing services",
  12190. "homepage": "https://symfony.com",
  12191. "keywords": [
  12192. "abstractions",
  12193. "contracts",
  12194. "decoupling",
  12195. "interfaces",
  12196. "interoperability",
  12197. "standards"
  12198. ],
  12199. "funding": [
  12200. {
  12201. "url": "https://symfony.com/sponsor",
  12202. "type": "custom"
  12203. },
  12204. {
  12205. "url": "https://github.com/fabpot",
  12206. "type": "github"
  12207. },
  12208. {
  12209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12210. "type": "tidelift"
  12211. }
  12212. ],
  12213. "time": "2020-09-07T11:33:47+00:00"
  12214. },
  12215. {
  12216. "name": "symfony/translation",
  12217. "version": "v4.4.16",
  12218. "source": {
  12219. "type": "git",
  12220. "url": "https://github.com/symfony/translation.git",
  12221. "reference": "73095716af79f610f3b6338b911357393fdd10ab"
  12222. },
  12223. "dist": {
  12224. "type": "zip",
  12225. "url": "https://api.github.com/repos/symfony/translation/zipball/73095716af79f610f3b6338b911357393fdd10ab",
  12226. "reference": "73095716af79f610f3b6338b911357393fdd10ab",
  12227. "shasum": ""
  12228. },
  12229. "require": {
  12230. "php": ">=7.1.3",
  12231. "symfony/polyfill-mbstring": "~1.0",
  12232. "symfony/translation-contracts": "^1.1.6|^2"
  12233. },
  12234. "conflict": {
  12235. "symfony/config": "<3.4",
  12236. "symfony/dependency-injection": "<3.4",
  12237. "symfony/http-kernel": "<4.4",
  12238. "symfony/yaml": "<3.4"
  12239. },
  12240. "provide": {
  12241. "symfony/translation-implementation": "1.0"
  12242. },
  12243. "require-dev": {
  12244. "psr/log": "~1.0",
  12245. "symfony/config": "^3.4|^4.0|^5.0",
  12246. "symfony/console": "^3.4|^4.0|^5.0",
  12247. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12248. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  12249. "symfony/http-kernel": "^4.4",
  12250. "symfony/intl": "^3.4|^4.0|^5.0",
  12251. "symfony/service-contracts": "^1.1.2|^2",
  12252. "symfony/yaml": "^3.4|^4.0|^5.0"
  12253. },
  12254. "suggest": {
  12255. "psr/log-implementation": "To use logging capability in translator",
  12256. "symfony/config": "",
  12257. "symfony/yaml": ""
  12258. },
  12259. "type": "library",
  12260. "autoload": {
  12261. "psr-4": {
  12262. "Symfony\\Component\\Translation\\": ""
  12263. },
  12264. "exclude-from-classmap": [
  12265. "/Tests/"
  12266. ]
  12267. },
  12268. "notification-url": "https://packagist.org/downloads/",
  12269. "license": [
  12270. "MIT"
  12271. ],
  12272. "authors": [
  12273. {
  12274. "name": "Fabien Potencier",
  12275. "email": "fabien@symfony.com"
  12276. },
  12277. {
  12278. "name": "Symfony Community",
  12279. "homepage": "https://symfony.com/contributors"
  12280. }
  12281. ],
  12282. "description": "Symfony Translation Component",
  12283. "homepage": "https://symfony.com",
  12284. "funding": [
  12285. {
  12286. "url": "https://symfony.com/sponsor",
  12287. "type": "custom"
  12288. },
  12289. {
  12290. "url": "https://github.com/fabpot",
  12291. "type": "github"
  12292. },
  12293. {
  12294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12295. "type": "tidelift"
  12296. }
  12297. ],
  12298. "time": "2020-10-24T11:50:19+00:00"
  12299. },
  12300. {
  12301. "name": "symfony/translation-contracts",
  12302. "version": "v2.3.0",
  12303. "source": {
  12304. "type": "git",
  12305. "url": "https://github.com/symfony/translation-contracts.git",
  12306. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  12307. },
  12308. "dist": {
  12309. "type": "zip",
  12310. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12311. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  12312. "shasum": ""
  12313. },
  12314. "require": {
  12315. "php": ">=7.2.5"
  12316. },
  12317. "suggest": {
  12318. "symfony/translation-implementation": ""
  12319. },
  12320. "type": "library",
  12321. "extra": {
  12322. "branch-alias": {
  12323. "dev-master": "2.3-dev"
  12324. },
  12325. "thanks": {
  12326. "name": "symfony/contracts",
  12327. "url": "https://github.com/symfony/contracts"
  12328. }
  12329. },
  12330. "autoload": {
  12331. "psr-4": {
  12332. "Symfony\\Contracts\\Translation\\": ""
  12333. }
  12334. },
  12335. "notification-url": "https://packagist.org/downloads/",
  12336. "license": [
  12337. "MIT"
  12338. ],
  12339. "authors": [
  12340. {
  12341. "name": "Nicolas Grekas",
  12342. "email": "p@tchwork.com"
  12343. },
  12344. {
  12345. "name": "Symfony Community",
  12346. "homepage": "https://symfony.com/contributors"
  12347. }
  12348. ],
  12349. "description": "Generic abstractions related to translation",
  12350. "homepage": "https://symfony.com",
  12351. "keywords": [
  12352. "abstractions",
  12353. "contracts",
  12354. "decoupling",
  12355. "interfaces",
  12356. "interoperability",
  12357. "standards"
  12358. ],
  12359. "funding": [
  12360. {
  12361. "url": "https://symfony.com/sponsor",
  12362. "type": "custom"
  12363. },
  12364. {
  12365. "url": "https://github.com/fabpot",
  12366. "type": "github"
  12367. },
  12368. {
  12369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12370. "type": "tidelift"
  12371. }
  12372. ],
  12373. "time": "2020-09-28T13:05:58+00:00"
  12374. },
  12375. {
  12376. "name": "symfony/validator",
  12377. "version": "v4.4.16",
  12378. "source": {
  12379. "type": "git",
  12380. "url": "https://github.com/symfony/validator.git",
  12381. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d"
  12382. },
  12383. "dist": {
  12384. "type": "zip",
  12385. "url": "https://api.github.com/repos/symfony/validator/zipball/1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  12386. "reference": "1d214a3aaa0753b19f94cf0479d8c315d957a10d",
  12387. "shasum": ""
  12388. },
  12389. "require": {
  12390. "php": ">=7.1.3",
  12391. "symfony/polyfill-ctype": "~1.8",
  12392. "symfony/polyfill-mbstring": "~1.0",
  12393. "symfony/translation-contracts": "^1.1|^2"
  12394. },
  12395. "conflict": {
  12396. "doctrine/lexer": "<1.0.2",
  12397. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  12398. "symfony/dependency-injection": "<3.4",
  12399. "symfony/http-kernel": "<4.4",
  12400. "symfony/intl": "<4.3",
  12401. "symfony/translation": ">=5.0",
  12402. "symfony/yaml": "<3.4"
  12403. },
  12404. "require-dev": {
  12405. "doctrine/annotations": "~1.7",
  12406. "doctrine/cache": "~1.0",
  12407. "egulias/email-validator": "^2.1.10",
  12408. "symfony/cache": "^3.4|^4.0|^5.0",
  12409. "symfony/config": "^3.4|^4.0|^5.0",
  12410. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  12411. "symfony/expression-language": "^3.4|^4.0|^5.0",
  12412. "symfony/http-client": "^4.3|^5.0",
  12413. "symfony/http-foundation": "^4.1|^5.0",
  12414. "symfony/http-kernel": "^4.4",
  12415. "symfony/intl": "^4.3|^5.0",
  12416. "symfony/mime": "^4.4|^5.0",
  12417. "symfony/property-access": "^3.4|^4.0|^5.0",
  12418. "symfony/property-info": "^3.4|^4.0|^5.0",
  12419. "symfony/translation": "^4.2",
  12420. "symfony/yaml": "^3.4|^4.0|^5.0"
  12421. },
  12422. "suggest": {
  12423. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  12424. "doctrine/cache": "For using the default cached annotation reader.",
  12425. "egulias/email-validator": "Strict (RFC compliant) email validation",
  12426. "psr/cache-implementation": "For using the mapping cache.",
  12427. "symfony/config": "",
  12428. "symfony/expression-language": "For using the Expression validator",
  12429. "symfony/http-foundation": "",
  12430. "symfony/intl": "",
  12431. "symfony/property-access": "For accessing properties within comparison constraints",
  12432. "symfony/property-info": "To automatically add NotNull and Type constraints",
  12433. "symfony/translation": "For translating validation errors.",
  12434. "symfony/yaml": ""
  12435. },
  12436. "type": "library",
  12437. "autoload": {
  12438. "psr-4": {
  12439. "Symfony\\Component\\Validator\\": ""
  12440. },
  12441. "exclude-from-classmap": [
  12442. "/Tests/"
  12443. ]
  12444. },
  12445. "notification-url": "https://packagist.org/downloads/",
  12446. "license": [
  12447. "MIT"
  12448. ],
  12449. "authors": [
  12450. {
  12451. "name": "Fabien Potencier",
  12452. "email": "fabien@symfony.com"
  12453. },
  12454. {
  12455. "name": "Symfony Community",
  12456. "homepage": "https://symfony.com/contributors"
  12457. }
  12458. ],
  12459. "description": "Symfony Validator Component",
  12460. "homepage": "https://symfony.com",
  12461. "funding": [
  12462. {
  12463. "url": "https://symfony.com/sponsor",
  12464. "type": "custom"
  12465. },
  12466. {
  12467. "url": "https://github.com/fabpot",
  12468. "type": "github"
  12469. },
  12470. {
  12471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12472. "type": "tidelift"
  12473. }
  12474. ],
  12475. "time": "2020-10-28T05:25:24+00:00"
  12476. },
  12477. {
  12478. "name": "symfony/var-dumper",
  12479. "version": "v5.1.8",
  12480. "source": {
  12481. "type": "git",
  12482. "url": "https://github.com/symfony/var-dumper.git",
  12483. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  12484. },
  12485. "dist": {
  12486. "type": "zip",
  12487. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  12488. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  12489. "shasum": ""
  12490. },
  12491. "require": {
  12492. "php": ">=7.2.5",
  12493. "symfony/polyfill-mbstring": "~1.0",
  12494. "symfony/polyfill-php80": "^1.15"
  12495. },
  12496. "conflict": {
  12497. "phpunit/phpunit": "<5.4.3",
  12498. "symfony/console": "<4.4"
  12499. },
  12500. "require-dev": {
  12501. "ext-iconv": "*",
  12502. "symfony/console": "^4.4|^5.0",
  12503. "symfony/process": "^4.4|^5.0",
  12504. "twig/twig": "^2.4|^3.0"
  12505. },
  12506. "suggest": {
  12507. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  12508. "ext-intl": "To show region name in time zone dump",
  12509. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  12510. },
  12511. "bin": [
  12512. "Resources/bin/var-dump-server"
  12513. ],
  12514. "type": "library",
  12515. "autoload": {
  12516. "files": [
  12517. "Resources/functions/dump.php"
  12518. ],
  12519. "psr-4": {
  12520. "Symfony\\Component\\VarDumper\\": ""
  12521. },
  12522. "exclude-from-classmap": [
  12523. "/Tests/"
  12524. ]
  12525. },
  12526. "notification-url": "https://packagist.org/downloads/",
  12527. "license": [
  12528. "MIT"
  12529. ],
  12530. "authors": [
  12531. {
  12532. "name": "Nicolas Grekas",
  12533. "email": "p@tchwork.com"
  12534. },
  12535. {
  12536. "name": "Symfony Community",
  12537. "homepage": "https://symfony.com/contributors"
  12538. }
  12539. ],
  12540. "description": "Symfony mechanism for exploring and dumping PHP variables",
  12541. "homepage": "https://symfony.com",
  12542. "keywords": [
  12543. "debug",
  12544. "dump"
  12545. ],
  12546. "funding": [
  12547. {
  12548. "url": "https://symfony.com/sponsor",
  12549. "type": "custom"
  12550. },
  12551. {
  12552. "url": "https://github.com/fabpot",
  12553. "type": "github"
  12554. },
  12555. {
  12556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12557. "type": "tidelift"
  12558. }
  12559. ],
  12560. "time": "2020-10-27T10:11:13+00:00"
  12561. },
  12562. {
  12563. "name": "symfony/yaml",
  12564. "version": "v4.4.16",
  12565. "source": {
  12566. "type": "git",
  12567. "url": "https://github.com/symfony/yaml.git",
  12568. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  12569. },
  12570. "dist": {
  12571. "type": "zip",
  12572. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12573. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  12574. "shasum": ""
  12575. },
  12576. "require": {
  12577. "php": ">=7.1.3",
  12578. "symfony/polyfill-ctype": "~1.8"
  12579. },
  12580. "conflict": {
  12581. "symfony/console": "<3.4"
  12582. },
  12583. "require-dev": {
  12584. "symfony/console": "^3.4|^4.0|^5.0"
  12585. },
  12586. "suggest": {
  12587. "symfony/console": "For validating YAML files using the lint command"
  12588. },
  12589. "type": "library",
  12590. "autoload": {
  12591. "psr-4": {
  12592. "Symfony\\Component\\Yaml\\": ""
  12593. },
  12594. "exclude-from-classmap": [
  12595. "/Tests/"
  12596. ]
  12597. },
  12598. "notification-url": "https://packagist.org/downloads/",
  12599. "license": [
  12600. "MIT"
  12601. ],
  12602. "authors": [
  12603. {
  12604. "name": "Fabien Potencier",
  12605. "email": "fabien@symfony.com"
  12606. },
  12607. {
  12608. "name": "Symfony Community",
  12609. "homepage": "https://symfony.com/contributors"
  12610. }
  12611. ],
  12612. "description": "Symfony Yaml Component",
  12613. "homepage": "https://symfony.com",
  12614. "funding": [
  12615. {
  12616. "url": "https://symfony.com/sponsor",
  12617. "type": "custom"
  12618. },
  12619. {
  12620. "url": "https://github.com/fabpot",
  12621. "type": "github"
  12622. },
  12623. {
  12624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12625. "type": "tidelift"
  12626. }
  12627. ],
  12628. "time": "2020-10-24T11:50:19+00:00"
  12629. },
  12630. {
  12631. "name": "twig/twig",
  12632. "version": "v2.14.1",
  12633. "source": {
  12634. "type": "git",
  12635. "url": "https://github.com/twigphp/Twig.git",
  12636. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312"
  12637. },
  12638. "dist": {
  12639. "type": "zip",
  12640. "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12641. "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312",
  12642. "shasum": ""
  12643. },
  12644. "require": {
  12645. "php": ">=7.2.5",
  12646. "symfony/polyfill-ctype": "^1.8",
  12647. "symfony/polyfill-mbstring": "^1.3"
  12648. },
  12649. "require-dev": {
  12650. "psr/container": "^1.0",
  12651. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  12652. },
  12653. "type": "library",
  12654. "extra": {
  12655. "branch-alias": {
  12656. "dev-master": "2.14-dev"
  12657. }
  12658. },
  12659. "autoload": {
  12660. "psr-0": {
  12661. "Twig_": "lib/"
  12662. },
  12663. "psr-4": {
  12664. "Twig\\": "src/"
  12665. }
  12666. },
  12667. "notification-url": "https://packagist.org/downloads/",
  12668. "license": [
  12669. "BSD-3-Clause"
  12670. ],
  12671. "authors": [
  12672. {
  12673. "name": "Fabien Potencier",
  12674. "email": "fabien@symfony.com",
  12675. "homepage": "http://fabien.potencier.org",
  12676. "role": "Lead Developer"
  12677. },
  12678. {
  12679. "name": "Twig Team",
  12680. "role": "Contributors"
  12681. },
  12682. {
  12683. "name": "Armin Ronacher",
  12684. "email": "armin.ronacher@active-4.com",
  12685. "role": "Project Founder"
  12686. }
  12687. ],
  12688. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12689. "homepage": "https://twig.symfony.com",
  12690. "keywords": [
  12691. "templating"
  12692. ],
  12693. "funding": [
  12694. {
  12695. "url": "https://github.com/fabpot",
  12696. "type": "github"
  12697. },
  12698. {
  12699. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12700. "type": "tidelift"
  12701. }
  12702. ],
  12703. "time": "2020-10-27T19:25:29+00:00"
  12704. },
  12705. {
  12706. "name": "typo3/phar-stream-wrapper",
  12707. "version": "v3.1.6",
  12708. "source": {
  12709. "type": "git",
  12710. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  12711. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75"
  12712. },
  12713. "dist": {
  12714. "type": "zip",
  12715. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12716. "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75",
  12717. "shasum": ""
  12718. },
  12719. "require": {
  12720. "ext-json": "*",
  12721. "php": "^7.0 || ^8.0"
  12722. },
  12723. "require-dev": {
  12724. "ext-xdebug": "*",
  12725. "phpspec/prophecy": "^1.10",
  12726. "symfony/phpunit-bridge": "^5.1"
  12727. },
  12728. "suggest": {
  12729. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  12730. },
  12731. "type": "library",
  12732. "extra": {
  12733. "branch-alias": {
  12734. "dev-master": "v3.x-dev"
  12735. }
  12736. },
  12737. "autoload": {
  12738. "psr-4": {
  12739. "TYPO3\\PharStreamWrapper\\": "src/"
  12740. }
  12741. },
  12742. "notification-url": "https://packagist.org/downloads/",
  12743. "license": [
  12744. "MIT"
  12745. ],
  12746. "description": "Interceptors for PHP's native phar:// stream handling",
  12747. "homepage": "https://typo3.org/",
  12748. "keywords": [
  12749. "phar",
  12750. "php",
  12751. "security",
  12752. "stream-wrapper"
  12753. ],
  12754. "time": "2020-11-07T09:06:16+00:00"
  12755. },
  12756. {
  12757. "name": "webflo/drupal-finder",
  12758. "version": "1.2.2",
  12759. "source": {
  12760. "type": "git",
  12761. "url": "https://github.com/webflo/drupal-finder.git",
  12762. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12763. },
  12764. "dist": {
  12765. "type": "zip",
  12766. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12767. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12768. "shasum": ""
  12769. },
  12770. "require": {
  12771. "ext-json": "*"
  12772. },
  12773. "require-dev": {
  12774. "mikey179/vfsstream": "^1.6",
  12775. "phpunit/phpunit": "^4.8"
  12776. },
  12777. "type": "library",
  12778. "autoload": {
  12779. "classmap": [
  12780. "src/DrupalFinder.php"
  12781. ]
  12782. },
  12783. "notification-url": "https://packagist.org/downloads/",
  12784. "license": [
  12785. "GPL-2.0-or-later"
  12786. ],
  12787. "authors": [
  12788. {
  12789. "name": "Florian Weber",
  12790. "email": "florian@webflo.org"
  12791. }
  12792. ],
  12793. "description": "Helper class to locate a Drupal installation from a given path.",
  12794. "time": "2020-10-27T09:42:17+00:00"
  12795. },
  12796. {
  12797. "name": "webmozart/assert",
  12798. "version": "1.9.1",
  12799. "source": {
  12800. "type": "git",
  12801. "url": "https://github.com/webmozarts/assert.git",
  12802. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  12803. },
  12804. "dist": {
  12805. "type": "zip",
  12806. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12807. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  12808. "shasum": ""
  12809. },
  12810. "require": {
  12811. "php": "^5.3.3 || ^7.0 || ^8.0",
  12812. "symfony/polyfill-ctype": "^1.8"
  12813. },
  12814. "conflict": {
  12815. "phpstan/phpstan": "<0.12.20",
  12816. "vimeo/psalm": "<3.9.1"
  12817. },
  12818. "require-dev": {
  12819. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  12820. },
  12821. "type": "library",
  12822. "autoload": {
  12823. "psr-4": {
  12824. "Webmozart\\Assert\\": "src/"
  12825. }
  12826. },
  12827. "notification-url": "https://packagist.org/downloads/",
  12828. "license": [
  12829. "MIT"
  12830. ],
  12831. "authors": [
  12832. {
  12833. "name": "Bernhard Schussek",
  12834. "email": "bschussek@gmail.com"
  12835. }
  12836. ],
  12837. "description": "Assertions to validate method input/output with nice error messages.",
  12838. "keywords": [
  12839. "assert",
  12840. "check",
  12841. "validate"
  12842. ],
  12843. "time": "2020-07-08T17:02:28+00:00"
  12844. },
  12845. {
  12846. "name": "webmozart/path-util",
  12847. "version": "2.3.0",
  12848. "source": {
  12849. "type": "git",
  12850. "url": "https://github.com/webmozart/path-util.git",
  12851. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  12852. },
  12853. "dist": {
  12854. "type": "zip",
  12855. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12856. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  12857. "shasum": ""
  12858. },
  12859. "require": {
  12860. "php": ">=5.3.3",
  12861. "webmozart/assert": "~1.0"
  12862. },
  12863. "require-dev": {
  12864. "phpunit/phpunit": "^4.6",
  12865. "sebastian/version": "^1.0.1"
  12866. },
  12867. "type": "library",
  12868. "extra": {
  12869. "branch-alias": {
  12870. "dev-master": "2.3-dev"
  12871. }
  12872. },
  12873. "autoload": {
  12874. "psr-4": {
  12875. "Webmozart\\PathUtil\\": "src/"
  12876. }
  12877. },
  12878. "notification-url": "https://packagist.org/downloads/",
  12879. "license": [
  12880. "MIT"
  12881. ],
  12882. "authors": [
  12883. {
  12884. "name": "Bernhard Schussek",
  12885. "email": "bschussek@gmail.com"
  12886. }
  12887. ],
  12888. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  12889. "time": "2015-12-17T08:42:14+00:00"
  12890. },
  12891. {
  12892. "name": "webonyx/graphql-php",
  12893. "version": "v14.5.1",
  12894. "source": {
  12895. "type": "git",
  12896. "url": "https://github.com/webonyx/graphql-php.git",
  12897. "reference": "3af8b92d07e0d7a9085c0b83daf86beaeb76f092"
  12898. },
  12899. "dist": {
  12900. "type": "zip",
  12901. "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/3af8b92d07e0d7a9085c0b83daf86beaeb76f092",
  12902. "reference": "3af8b92d07e0d7a9085c0b83daf86beaeb76f092",
  12903. "shasum": ""
  12904. },
  12905. "require": {
  12906. "ext-json": "*",
  12907. "ext-mbstring": "*",
  12908. "php": "^7.1||^8.0"
  12909. },
  12910. "require-dev": {
  12911. "amphp/amp": "^2.3",
  12912. "doctrine/coding-standard": "^6.0",
  12913. "nyholm/psr7": "^1.2",
  12914. "phpbench/phpbench": "^0.16.10",
  12915. "phpstan/extension-installer": "^1.0",
  12916. "phpstan/phpstan": "0.12.32",
  12917. "phpstan/phpstan-phpunit": "0.12.11",
  12918. "phpstan/phpstan-strict-rules": "0.12.2",
  12919. "phpunit/phpunit": "^7.2|^8.5",
  12920. "psr/http-message": "^1.0",
  12921. "react/promise": "2.*",
  12922. "simpod/php-coveralls-mirror": "^3.0",
  12923. "squizlabs/php_codesniffer": "3.5.4"
  12924. },
  12925. "suggest": {
  12926. "psr/http-message": "To use standard GraphQL server",
  12927. "react/promise": "To leverage async resolving on React PHP platform"
  12928. },
  12929. "type": "library",
  12930. "autoload": {
  12931. "psr-4": {
  12932. "GraphQL\\": "src/"
  12933. }
  12934. },
  12935. "notification-url": "https://packagist.org/downloads/",
  12936. "license": [
  12937. "MIT"
  12938. ],
  12939. "description": "A PHP port of GraphQL reference implementation",
  12940. "homepage": "https://github.com/webonyx/graphql-php",
  12941. "keywords": [
  12942. "api",
  12943. "graphql"
  12944. ],
  12945. "funding": [
  12946. {
  12947. "url": "https://opencollective.com/webonyx-graphql-php",
  12948. "type": "open_collective"
  12949. }
  12950. ],
  12951. "time": "2021-02-05T10:51:56+00:00"
  12952. },
  12953. {
  12954. "name": "wikimedia/composer-merge-plugin",
  12955. "version": "v1.4.1",
  12956. "source": {
  12957. "type": "git",
  12958. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12959. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  12960. },
  12961. "dist": {
  12962. "type": "zip",
  12963. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12964. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  12965. "shasum": ""
  12966. },
  12967. "require": {
  12968. "composer-plugin-api": "^1.0",
  12969. "php": ">=5.3.2"
  12970. },
  12971. "require-dev": {
  12972. "composer/composer": "~1.0.0",
  12973. "jakub-onderka/php-parallel-lint": "~0.8",
  12974. "phpunit/phpunit": "~4.8|~5.0",
  12975. "squizlabs/php_codesniffer": "~2.1.0"
  12976. },
  12977. "type": "composer-plugin",
  12978. "extra": {
  12979. "branch-alias": {
  12980. "dev-master": "1.3.x-dev"
  12981. },
  12982. "class": "Wikimedia\\Composer\\MergePlugin"
  12983. },
  12984. "autoload": {
  12985. "psr-4": {
  12986. "Wikimedia\\Composer\\": "src/"
  12987. }
  12988. },
  12989. "notification-url": "https://packagist.org/downloads/",
  12990. "license": [
  12991. "MIT"
  12992. ],
  12993. "authors": [
  12994. {
  12995. "name": "Bryan Davis",
  12996. "email": "bd808@wikimedia.org"
  12997. }
  12998. ],
  12999. "description": "Composer plugin to merge multiple composer.json files",
  13000. "time": "2017-04-25T02:31:25+00:00"
  13001. }
  13002. ],
  13003. "packages-dev": [],
  13004. "aliases": [],
  13005. "minimum-stability": "stable",
  13006. "stability-flags": {
  13007. "drupal/auto_entitylabel": 20,
  13008. "drupal/insert": 20,
  13009. "drupal/typed_data": 20,
  13010. "drupal/autocomplete_deluxe": 5,
  13011. "drupal/better_exposed_filters": 10,
  13012. "drupal/bulkdelete": 20,
  13013. "drupal/cshs": 20,
  13014. "drupal/config_ignore": 5,
  13015. "drupal/config_devel": 20,
  13016. "drupal/context": 10,
  13017. "drupal/date_range_formatter": 20,
  13018. "drupal/domain": 20,
  13019. "drupal/domain_alias": 20,
  13020. "drupal/domain_config": 20,
  13021. "drupal/domain_site_settings": 20,
  13022. "drupal/email_registration": 5,
  13023. "drupal/entity_browser_enhanced": 5,
  13024. "drupal/entity_clone": 15,
  13025. "drupal/filefield_sources": 20,
  13026. "drupal/filter_perms": 20,
  13027. "drupal/inline_entity_form": 5,
  13028. "drupal/linkit": 10,
  13029. "drupal/login_destination": 20,
  13030. "drupal/maillog": 20,
  13031. "drupal/maxlength": 10,
  13032. "drupal/menu_block": 20,
  13033. "drupal/menu_position": 20,
  13034. "drupal/path_alias_xt": 20,
  13035. "drupal/pathologic": 15,
  13036. "drupal/profile": 5,
  13037. "drupal/smtp": 10,
  13038. "drupal/synonyms": 20,
  13039. "drupal/translation_views": 15,
  13040. "drupal/ultimate_cron": 15
  13041. },
  13042. "prefer-stable": true,
  13043. "prefer-lowest": false,
  13044. "platform": [],
  13045. "platform-dev": [],
  13046. "plugin-api-version": "1.1.0"
  13047. }